2 * Copyright (C) 2015 Freescale Semiconductor
4 * SPDX-License-Identifier: GPL-2.0+
7 #ifndef __LDPAA_WRIOP_H
8 #define __LDPAA_WRIOP_H
40 struct wriop_dpmac_info {
46 phy_interface_t enet_if;
47 struct phy_device *phydev;
51 extern struct wriop_dpmac_info dpmac_info[NUM_WRIOP_PORTS];
53 #define DEFAULT_WRIOP_MDIO1_NAME "FSL_MDIO0"
54 #define DEFAULT_WRIOP_MDIO2_NAME "FSL_MDIO1"
56 void wriop_init_dpmac(int, int, int);
57 void wriop_disable_dpmac(int);
58 void wriop_enable_dpmac(int);
59 void wriop_set_mdio(int, struct mii_dev *);
60 struct mii_dev *wriop_get_mdio(int);
61 void wriop_set_phy_address(int, int);
62 int wriop_get_phy_address(int);
63 void wriop_set_phy_dev(int, struct phy_device *);
64 struct phy_device *wriop_get_phy_dev(int);
65 phy_interface_t wriop_get_enet_if(int);
67 void wriop_dpmac_disable(int);
68 void wriop_dpmac_enable(int);
69 phy_interface_t wriop_dpmac_enet_if(int, int);
70 #endif /* __LDPAA_WRIOP_H */