Prabhakar Kushwaha | 9cc2c47 | 2015-03-20 19:28:22 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 Freescale Semiconductor |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #ifndef __LDPAA_WRIOP_H |
| 8 | #define __LDPAA_WRIOP_H |
| 9 | |
| 10 | #include <phy.h> |
| 11 | |
| 12 | enum wriop_port { |
| 13 | WRIOP1_DPMAC1 = 1, |
| 14 | WRIOP1_DPMAC2, |
| 15 | WRIOP1_DPMAC3, |
| 16 | WRIOP1_DPMAC4, |
| 17 | WRIOP1_DPMAC5, |
| 18 | WRIOP1_DPMAC6, |
| 19 | WRIOP1_DPMAC7, |
| 20 | WRIOP1_DPMAC8, |
| 21 | WRIOP1_DPMAC9, |
| 22 | WRIOP1_DPMAC10, |
| 23 | WRIOP1_DPMAC11, |
| 24 | WRIOP1_DPMAC12, |
| 25 | WRIOP1_DPMAC13, |
| 26 | WRIOP1_DPMAC14, |
| 27 | WRIOP1_DPMAC15, |
| 28 | WRIOP1_DPMAC16, |
| 29 | WRIOP1_DPMAC17, |
| 30 | WRIOP1_DPMAC18, |
| 31 | WRIOP1_DPMAC19, |
| 32 | WRIOP1_DPMAC20, |
| 33 | WRIOP1_DPMAC21, |
| 34 | WRIOP1_DPMAC22, |
| 35 | WRIOP1_DPMAC23, |
| 36 | WRIOP1_DPMAC24, |
| 37 | NUM_WRIOP_PORTS, |
| 38 | }; |
| 39 | |
| 40 | struct wriop_dpmac_info { |
| 41 | u8 enabled; |
| 42 | u8 id; |
| 43 | u8 phy_addr; |
| 44 | u8 board_mux; |
| 45 | void *phy_regs; |
| 46 | phy_interface_t enet_if; |
| 47 | struct phy_device *phydev; |
| 48 | struct mii_dev *bus; |
| 49 | }; |
| 50 | |
| 51 | extern struct wriop_dpmac_info dpmac_info[NUM_WRIOP_PORTS]; |
| 52 | |
| 53 | #define DEFAULT_WRIOP_MDIO1_NAME "FSL_MDIO0" |
| 54 | #define DEFAULT_WRIOP_MDIO2_NAME "FSL_MDIO1" |
| 55 | |
| 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); |
| 66 | |
| 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 */ |