Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008 |
| 3 | * Benjamin Warren, biggerbadderben@gmail.com |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * netdev.h - definitions an prototypes for network devices |
| 10 | */ |
| 11 | |
| 12 | #ifndef _NETDEV_H_ |
| 13 | #define _NETDEV_H_ |
| 14 | |
| 15 | /* |
| 16 | * Board and CPU-specific initialization functions |
| 17 | * board_eth_init() has highest priority. cpu_eth_init() only |
| 18 | * gets called if board_eth_init() isn't instantiated or fails. |
| 19 | * Return values: |
| 20 | * 0: success |
| 21 | * -1: failure |
| 22 | */ |
| 23 | |
| 24 | int board_eth_init(bd_t *bis); |
| 25 | int cpu_eth_init(bd_t *bis); |
| 26 | |
| 27 | /* Driver initialization prototypes */ |
Thomas Chou | c960b13 | 2010-04-20 12:49:52 +0800 | [diff] [blame] | 28 | int altera_tse_initialize(u8 dev_num, int mac_base, |
Joachim Foerster | b962ac7 | 2011-10-17 05:24:44 +0000 | [diff] [blame] | 29 | int sgdma_rx_base, int sgdma_tx_base, |
| 30 | u32 sgdma_desc_base, u32 sgdma_desc_size); |
Jens Scharsig | c041e9d | 2010-01-23 12:03:45 +0100 | [diff] [blame] | 31 | int at91emac_register(bd_t *bis, unsigned long iobase); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 32 | int au1x00_enet_initialize(bd_t*); |
| 33 | int ax88180_initialize(bd_t *bis); |
Jiandong Zheng | 799e125 | 2014-08-01 20:37:16 -0700 | [diff] [blame] | 34 | int bcm_sf2_eth_register(bd_t *bis, u8 dev_num); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 35 | int bfin_EMAC_initialize(bd_t *bis); |
Rob Herring | efdd731 | 2011-12-15 11:15:49 +0000 | [diff] [blame] | 36 | int calxedaxgmac_initialize(u32 id, ulong base_addr); |
Ben Warren | b1c0eaa | 2009-08-25 13:09:37 -0700 | [diff] [blame] | 37 | int cs8900_initialize(u8 dev_num, int base_addr); |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 38 | int davinci_emac_initialize(void); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 39 | int dc21x4x_initialize(bd_t *bis); |
Alexey Brodkin | 92a190a | 2014-01-22 20:54:06 +0400 | [diff] [blame] | 40 | int designware_initialize(ulong base_addr, u32 interface); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 41 | int dm9000_initialize(bd_t *bis); |
Ilya Yanok | 62cbc40 | 2009-02-09 18:45:28 +0100 | [diff] [blame] | 42 | int dnet_eth_initialize(int id, void *regs, unsigned int phy_addr); |
Ben Warren | ad3381c | 2008-08-31 10:44:19 -0700 | [diff] [blame] | 43 | int e1000_initialize(bd_t *bis); |
Ben Warren | 10efa02 | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 44 | int eepro100_initialize(bd_t *bis); |
Reinhard Meyer | a61a819 | 2010-09-12 16:23:49 +0200 | [diff] [blame] | 45 | int enc28j60_initialize(unsigned int bus, unsigned int cs, |
| 46 | unsigned int max_hz, unsigned int mode); |
Matthias Kaehlcke | 594d57d | 2010-01-31 17:39:49 +0100 | [diff] [blame] | 47 | int ep93xx_eth_initialize(u8 dev_num, int base_addr); |
Ben Warren | 164846e | 2008-08-31 10:15:26 -0700 | [diff] [blame] | 48 | int eth_3com_initialize (bd_t * bis); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 49 | int ethoc_initialize(u8 dev_num, int base_addr); |
Ben Warren | 3456a14 | 2008-10-22 23:20:29 -0700 | [diff] [blame] | 50 | int fec_initialize (bd_t *bis); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 51 | int fecmxc_initialize(bd_t *bis); |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 52 | int fecmxc_initialize_multi(bd_t *bis, int dev_id, int phy_id, uint32_t addr); |
Macpaul Lin | b3dbf4a5 | 2010-12-21 16:59:46 +0800 | [diff] [blame] | 53 | int ftgmac100_initialize(bd_t *bits); |
Po-Yu Chuang | 750326e | 2009-08-10 11:00:00 +0800 | [diff] [blame] | 54 | int ftmac100_initialize(bd_t *bits); |
Kuo-Jung Su | c477547 | 2013-05-07 14:33:31 +0800 | [diff] [blame] | 55 | int ftmac110_initialize(bd_t *bits); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 56 | int greth_initialize(bd_t *bis); |
Ben Warren | 6aca145 | 2008-08-31 10:13:34 -0700 | [diff] [blame] | 57 | void gt6426x_eth_initialize(bd_t *bis); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 58 | int ks8695_eth_initialize(void); |
Roberto Cerati | 45a1693 | 2013-04-24 10:46:17 +0800 | [diff] [blame] | 59 | int ks8851_mll_initialize(u8 dev_num, int base_addr); |
Nishanth Menon | b7ad410 | 2009-10-16 00:06:35 -0500 | [diff] [blame] | 60 | int lan91c96_initialize(u8 dev_num, int base_addr); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 61 | int macb_eth_initialize(int id, void *regs, unsigned int phy_addr); |
| 62 | int mcdmafec_initialize(bd_t *bis); |
| 63 | int mcffec_initialize(bd_t *bis); |
Ben Warren | a0aad08 | 2008-08-31 10:36:38 -0700 | [diff] [blame] | 64 | int mpc512x_fec_initialize(bd_t *bis); |
Ben Warren | e1d7480 | 2008-08-31 10:39:12 -0700 | [diff] [blame] | 65 | int mpc5xxx_fec_initialize(bd_t *bis); |
Gary Jennejohn | ba705b5 | 2008-11-20 12:28:38 +0100 | [diff] [blame] | 66 | int mpc82xx_scc_enet_initialize(bd_t *bis); |
Albert Aribaud | d44265a | 2010-07-12 22:24:28 +0200 | [diff] [blame] | 67 | int mvgbe_initialize(bd_t *bis); |
Stefan Roese | 19fc2ea | 2014-10-22 12:13:14 +0200 | [diff] [blame] | 68 | int mvneta_initialize(bd_t *bis, int base_addr, int devnum, int phy_addr); |
Ben Warren | b902b8d | 2008-08-31 10:07:16 -0700 | [diff] [blame] | 69 | int natsemi_initialize(bd_t *bis); |
Bernhard Kaindl | d020169 | 2011-10-20 10:56:59 +0000 | [diff] [blame] | 70 | int ne2k_register(void); |
Ben Warren | cc94074 | 2008-09-05 01:55:22 -0400 | [diff] [blame] | 71 | int npe_initialize(bd_t *bis); |
Ben Warren | 1940363 | 2008-08-31 10:03:22 -0700 | [diff] [blame] | 72 | int ns8382x_initialize(bd_t *bis); |
Ben Warren | e309053 | 2008-08-31 10:08:43 -0700 | [diff] [blame] | 73 | int pcnet_initialize(bd_t *bis); |
Ben Warren | 25a8590 | 2008-10-27 23:53:17 -0700 | [diff] [blame] | 74 | int ppc_4xx_eth_initialize (bd_t *bis); |
Ben Warren | 0b252f5 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 75 | int rtl8139_initialize(bd_t *bis); |
Ben Warren | 02d6989 | 2008-08-31 09:49:42 -0700 | [diff] [blame] | 76 | int rtl8169_initialize(bd_t *bis); |
Ben Warren | 9eb79bd | 2008-10-23 22:02:49 -0700 | [diff] [blame] | 77 | int scc_initialize(bd_t *bis); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 78 | int sh_eth_initialize(bd_t *bis); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 79 | int skge_initialize(bd_t *bis); |
Ben Warren | 7194ab8 | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 80 | int smc91111_initialize(u8 dev_num, int base_addr); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 81 | int smc911x_initialize(u8 dev_num, int base_addr); |
Stefan Roese | b70ed30 | 2014-06-09 11:36:59 +0200 | [diff] [blame] | 82 | int sunxi_emac_initialize(bd_t *bis); |
Ian Campbell | 5835823 | 2014-05-05 11:52:28 +0100 | [diff] [blame] | 83 | int sunxi_gmac_initialize(bd_t *bis); |
Ben Warren | ccdd12f | 2008-08-31 09:59:33 -0700 | [diff] [blame] | 84 | int tsi108_eth_initialize(bd_t *bis); |
Wolfgang Denk | 2b5243f | 2009-07-18 16:13:18 +0200 | [diff] [blame] | 85 | int uec_standard_init(bd_t *bis); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 86 | int uli526x_initialize(bd_t *bis); |
Ajay Bhargav | 79788bb | 2011-09-13 22:21:58 +0530 | [diff] [blame] | 87 | int armada100_fec_register(unsigned long base_addr); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 88 | int xilinx_axiemac_initialize(bd_t *bis, unsigned long base_addr, |
| 89 | unsigned long dma_addr); |
Michal Simek | 0c9c99a | 2014-02-24 11:16:28 +0100 | [diff] [blame] | 90 | int xilinx_emaclite_of_init(const void *blob); |
Michal Simek | c1044a1 | 2011-10-12 23:23:22 +0000 | [diff] [blame] | 91 | int xilinx_emaclite_initialize(bd_t *bis, unsigned long base_addr, |
| 92 | int txpp, int rxpp); |
Stephan Linz | df48265 | 2012-02-25 00:48:31 +0000 | [diff] [blame] | 93 | int xilinx_ll_temac_eth_init(bd_t *bis, unsigned long base_addr, int flags, |
| 94 | unsigned long ctrl_addr); |
Michal Simek | f88a686 | 2014-02-24 11:16:30 +0100 | [diff] [blame] | 95 | int zynq_gem_of_init(const void *blob); |
Michal Simek | 5840537 | 2015-01-14 15:44:21 +0100 | [diff] [blame] | 96 | int zynq_gem_initialize(bd_t *bis, phys_addr_t base_addr, |
| 97 | int phy_addr, u32 emio); |
Stephan Linz | df48265 | 2012-02-25 00:48:31 +0000 | [diff] [blame] | 98 | /* |
| 99 | * As long as the Xilinx xps_ll_temac ethernet driver has not its own interface |
| 100 | * exported by a public hader file, we need a global definition at this point. |
| 101 | */ |
| 102 | #if defined(CONFIG_XILINX_LL_TEMAC) |
| 103 | #define XILINX_LL_TEMAC_M_FIFO 0 /* use FIFO Ctrl */ |
| 104 | #define XILINX_LL_TEMAC_M_SDMA_PLB (1 << 0)/* use SDMA Ctrl via PLB */ |
| 105 | #define XILINX_LL_TEMAC_M_SDMA_DCR (1 << 1)/* use SDMA Ctrl via DCR */ |
| 106 | #endif |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 107 | |
| 108 | /* Boards with PCI network controllers can call this from their board_eth_init() |
| 109 | * function to initialize whatever's on board. |
| 110 | * Return value is total # of devices found */ |
| 111 | |
| 112 | static inline int pci_eth_init(bd_t *bis) |
| 113 | { |
| 114 | int num = 0; |
Ben Warren | e309053 | 2008-08-31 10:08:43 -0700 | [diff] [blame] | 115 | |
Ben Warren | 10efa02 | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 116 | #ifdef CONFIG_PCI |
| 117 | |
| 118 | #ifdef CONFIG_EEPRO100 |
| 119 | num += eepro100_initialize(bis); |
| 120 | #endif |
Ben Warren | 8ca0b3f | 2008-08-31 10:45:44 -0700 | [diff] [blame] | 121 | #ifdef CONFIG_TULIP |
| 122 | num += dc21x4x_initialize(bis); |
| 123 | #endif |
Ben Warren | ad3381c | 2008-08-31 10:44:19 -0700 | [diff] [blame] | 124 | #ifdef CONFIG_E1000 |
| 125 | num += e1000_initialize(bis); |
| 126 | #endif |
Ben Warren | e309053 | 2008-08-31 10:08:43 -0700 | [diff] [blame] | 127 | #ifdef CONFIG_PCNET |
| 128 | num += pcnet_initialize(bis); |
| 129 | #endif |
Ben Warren | b902b8d | 2008-08-31 10:07:16 -0700 | [diff] [blame] | 130 | #ifdef CONFIG_NATSEMI |
| 131 | num += natsemi_initialize(bis); |
| 132 | #endif |
Ben Warren | 1940363 | 2008-08-31 10:03:22 -0700 | [diff] [blame] | 133 | #ifdef CONFIG_NS8382X |
| 134 | num += ns8382x_initialize(bis); |
| 135 | #endif |
Ben Warren | 0b252f5 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 136 | #if defined(CONFIG_RTL8139) |
| 137 | num += rtl8139_initialize(bis); |
| 138 | #endif |
Ben Warren | 02d6989 | 2008-08-31 09:49:42 -0700 | [diff] [blame] | 139 | #if defined(CONFIG_RTL8169) |
| 140 | num += rtl8169_initialize(bis); |
| 141 | #endif |
Timur Tabi | b11f664 | 2009-04-09 10:27:05 -0500 | [diff] [blame] | 142 | #if defined(CONFIG_ULI526X) |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 143 | num += uli526x_initialize(bis); |
| 144 | #endif |
Ben Warren | 10efa02 | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 145 | |
| 146 | #endif /* CONFIG_PCI */ |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 147 | return num; |
| 148 | } |
| 149 | |
Prafulla Wadaskar | 6f51deb | 2009-05-19 01:40:16 +0530 | [diff] [blame] | 150 | /* |
| 151 | * Boards with mv88e61xx switch can use this by defining |
| 152 | * CONFIG_MV88E61XX_SWITCH in respective board configheader file |
| 153 | * the stuct and enums here are used to specify switch configuration params |
| 154 | */ |
| 155 | #if defined(CONFIG_MV88E61XX_SWITCH) |
Albert ARIBAUD | 0a16ea5 | 2012-11-26 11:27:35 +0000 | [diff] [blame] | 156 | |
| 157 | /* constants for any 88E61xx switch */ |
| 158 | #define MV88E61XX_MAX_PORTS_NUM 6 |
Prafulla Wadaskar | 6f51deb | 2009-05-19 01:40:16 +0530 | [diff] [blame] | 159 | |
| 160 | enum mv88e61xx_cfg_mdip { |
| 161 | MV88E61XX_MDIP_NOCHANGE, |
| 162 | MV88E61XX_MDIP_REVERSE |
| 163 | }; |
| 164 | |
| 165 | enum mv88e61xx_cfg_ledinit { |
| 166 | MV88E61XX_LED_INIT_DIS, |
| 167 | MV88E61XX_LED_INIT_EN |
| 168 | }; |
| 169 | |
| 170 | enum mv88e61xx_cfg_rgmiid { |
| 171 | MV88E61XX_RGMII_DELAY_DIS, |
| 172 | MV88E61XX_RGMII_DELAY_EN |
| 173 | }; |
| 174 | |
| 175 | enum mv88e61xx_cfg_prtstt { |
| 176 | MV88E61XX_PORTSTT_DISABLED, |
| 177 | MV88E61XX_PORTSTT_BLOCKING, |
| 178 | MV88E61XX_PORTSTT_LEARNING, |
| 179 | MV88E61XX_PORTSTT_FORWARDING |
| 180 | }; |
| 181 | |
| 182 | struct mv88e61xx_config { |
| 183 | char *name; |
Albert ARIBAUD | 0a16ea5 | 2012-11-26 11:27:35 +0000 | [diff] [blame] | 184 | u8 vlancfg[MV88E61XX_MAX_PORTS_NUM]; |
Prafulla Wadaskar | 6f51deb | 2009-05-19 01:40:16 +0530 | [diff] [blame] | 185 | enum mv88e61xx_cfg_rgmiid rgmii_delay; |
| 186 | enum mv88e61xx_cfg_prtstt portstate; |
| 187 | enum mv88e61xx_cfg_ledinit led_init; |
| 188 | enum mv88e61xx_cfg_mdip mdip; |
| 189 | u32 ports_enabled; |
| 190 | u8 cpuport; |
| 191 | }; |
| 192 | |
Albert ARIBAUD | 0a16ea5 | 2012-11-26 11:27:35 +0000 | [diff] [blame] | 193 | /* |
| 194 | * Common mappings for Internal VLANs |
| 195 | * These mappings consider that all ports are useable; the driver |
| 196 | * will mask inexistent/unused ports. |
| 197 | */ |
| 198 | |
| 199 | /* Switch mode : routes any port to any port */ |
| 200 | #define MV88E61XX_VLANCFG_SWITCH { 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F } |
| 201 | |
| 202 | /* Router mode: routes only CPU port 5 to/from non-CPU ports 0-4 */ |
| 203 | #define MV88E61XX_VLANCFG_ROUTER { 0x20, 0x20, 0x20, 0x20, 0x20, 0x1F } |
| 204 | |
Prafulla Wadaskar | 6f51deb | 2009-05-19 01:40:16 +0530 | [diff] [blame] | 205 | int mv88e61xx_switch_initialize(struct mv88e61xx_config *swconfig); |
| 206 | #endif /* CONFIG_MV88E61XX_SWITCH */ |
| 207 | |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 208 | struct mii_dev *fec_get_miibus(uint32_t base_addr, int dev_id); |
| 209 | #ifdef CONFIG_PHYLIB |
| 210 | struct phy_device; |
| 211 | int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr, |
| 212 | struct mii_dev *bus, struct phy_device *phydev); |
| 213 | #else |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 214 | /* |
| 215 | * Allow FEC to fine-tune MII configuration on boards which require this. |
| 216 | */ |
| 217 | int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int)); |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 218 | #endif |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 219 | |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 220 | #endif /* _NETDEV_H_ */ |