Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 |
| 4 | * Benjamin Warren, biggerbadderben@gmail.com |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * netdev.h - definitions an prototypes for network devices |
| 9 | */ |
| 10 | |
| 11 | #ifndef _NETDEV_H_ |
| 12 | #define _NETDEV_H_ |
| 13 | |
| 14 | /* |
| 15 | * Board and CPU-specific initialization functions |
| 16 | * board_eth_init() has highest priority. cpu_eth_init() only |
| 17 | * gets called if board_eth_init() isn't instantiated or fails. |
| 18 | * Return values: |
| 19 | * 0: success |
| 20 | * -1: failure |
| 21 | */ |
| 22 | |
| 23 | int board_eth_init(bd_t *bis); |
| 24 | int cpu_eth_init(bd_t *bis); |
| 25 | |
| 26 | /* Driver initialization prototypes */ |
Jens Scharsig | c041e9d | 2010-01-23 12:03:45 +0100 | [diff] [blame] | 27 | int at91emac_register(bd_t *bis, unsigned long iobase); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 28 | int ax88180_initialize(bd_t *bis); |
Jiandong Zheng | 799e125 | 2014-08-01 20:37:16 -0700 | [diff] [blame] | 29 | int bcm_sf2_eth_register(bd_t *bis, u8 dev_num); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 30 | int bfin_EMAC_initialize(bd_t *bis); |
Rob Herring | efdd731 | 2011-12-15 11:15:49 +0000 | [diff] [blame] | 31 | int calxedaxgmac_initialize(u32 id, ulong base_addr); |
Ben Warren | b1c0eaa | 2009-08-25 13:09:37 -0700 | [diff] [blame] | 32 | int cs8900_initialize(u8 dev_num, int base_addr); |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 33 | int davinci_emac_initialize(void); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 34 | int dc21x4x_initialize(bd_t *bis); |
Alexey Brodkin | 92a190a | 2014-01-22 20:54:06 +0400 | [diff] [blame] | 35 | int designware_initialize(ulong base_addr, u32 interface); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 36 | int dm9000_initialize(bd_t *bis); |
Ilya Yanok | 62cbc40 | 2009-02-09 18:45:28 +0100 | [diff] [blame] | 37 | int dnet_eth_initialize(int id, void *regs, unsigned int phy_addr); |
Ben Warren | ad3381c | 2008-08-31 10:44:19 -0700 | [diff] [blame] | 38 | int e1000_initialize(bd_t *bis); |
Ben Warren | 10efa02 | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 39 | int eepro100_initialize(bd_t *bis); |
Matthias Kaehlcke | 594d57d | 2010-01-31 17:39:49 +0100 | [diff] [blame] | 40 | int ep93xx_eth_initialize(u8 dev_num, int base_addr); |
Ben Warren | 164846e | 2008-08-31 10:15:26 -0700 | [diff] [blame] | 41 | int eth_3com_initialize (bd_t * bis); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 42 | int ethoc_initialize(u8 dev_num, int base_addr); |
Ben Warren | 3456a14 | 2008-10-22 23:20:29 -0700 | [diff] [blame] | 43 | int fec_initialize (bd_t *bis); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 44 | int fecmxc_initialize(bd_t *bis); |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 45 | 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] | 46 | int ftgmac100_initialize(bd_t *bits); |
Po-Yu Chuang | 750326e | 2009-08-10 11:00:00 +0800 | [diff] [blame] | 47 | int ftmac100_initialize(bd_t *bits); |
Kuo-Jung Su | c477547 | 2013-05-07 14:33:31 +0800 | [diff] [blame] | 48 | int ftmac110_initialize(bd_t *bits); |
Ben Warren | 6aca145 | 2008-08-31 10:13:34 -0700 | [diff] [blame] | 49 | void gt6426x_eth_initialize(bd_t *bis); |
Roberto Cerati | 45a1693 | 2013-04-24 10:46:17 +0800 | [diff] [blame] | 50 | int ks8851_mll_initialize(u8 dev_num, int base_addr); |
Nishanth Menon | b7ad410 | 2009-10-16 00:06:35 -0500 | [diff] [blame] | 51 | int lan91c96_initialize(u8 dev_num, int base_addr); |
Albert ARIBAUD \(3ADEV\) | ac2916a | 2015-03-31 11:40:43 +0200 | [diff] [blame] | 52 | int lpc32xx_eth_initialize(bd_t *bis); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 53 | int macb_eth_initialize(int id, void *regs, unsigned int phy_addr); |
| 54 | int mcdmafec_initialize(bd_t *bis); |
| 55 | int mcffec_initialize(bd_t *bis); |
Albert Aribaud | d44265a | 2010-07-12 22:24:28 +0200 | [diff] [blame] | 56 | int mvgbe_initialize(bd_t *bis); |
Stefan Roese | 19fc2ea | 2014-10-22 12:13:14 +0200 | [diff] [blame] | 57 | 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] | 58 | int natsemi_initialize(bd_t *bis); |
Bernhard Kaindl | d020169 | 2011-10-20 10:56:59 +0000 | [diff] [blame] | 59 | int ne2k_register(void); |
Ben Warren | cc94074 | 2008-09-05 01:55:22 -0400 | [diff] [blame] | 60 | int npe_initialize(bd_t *bis); |
Ben Warren | 1940363 | 2008-08-31 10:03:22 -0700 | [diff] [blame] | 61 | int ns8382x_initialize(bd_t *bis); |
Ben Warren | e309053 | 2008-08-31 10:08:43 -0700 | [diff] [blame] | 62 | int pcnet_initialize(bd_t *bis); |
Ben Warren | 25a8590 | 2008-10-27 23:53:17 -0700 | [diff] [blame] | 63 | int ppc_4xx_eth_initialize (bd_t *bis); |
Ben Warren | 0b252f5 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 64 | int rtl8139_initialize(bd_t *bis); |
Ben Warren | 02d6989 | 2008-08-31 09:49:42 -0700 | [diff] [blame] | 65 | int rtl8169_initialize(bd_t *bis); |
Ben Warren | 9eb79bd | 2008-10-23 22:02:49 -0700 | [diff] [blame] | 66 | int scc_initialize(bd_t *bis); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 67 | int sh_eth_initialize(bd_t *bis); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 68 | int skge_initialize(bd_t *bis); |
Ben Warren | 7194ab8 | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 69 | int smc91111_initialize(u8 dev_num, int base_addr); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 70 | int smc911x_initialize(u8 dev_num, int base_addr); |
Wolfgang Denk | 2b5243f | 2009-07-18 16:13:18 +0200 | [diff] [blame] | 71 | int uec_standard_init(bd_t *bis); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 72 | int uli526x_initialize(bd_t *bis); |
Ajay Bhargav | 79788bb | 2011-09-13 22:21:58 +0530 | [diff] [blame] | 73 | int armada100_fec_register(unsigned long base_addr); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 74 | |
| 75 | /* Boards with PCI network controllers can call this from their board_eth_init() |
| 76 | * function to initialize whatever's on board. |
| 77 | * Return value is total # of devices found */ |
| 78 | |
| 79 | static inline int pci_eth_init(bd_t *bis) |
| 80 | { |
| 81 | int num = 0; |
Ben Warren | e309053 | 2008-08-31 10:08:43 -0700 | [diff] [blame] | 82 | |
Ben Warren | 10efa02 | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 83 | #ifdef CONFIG_PCI |
| 84 | |
| 85 | #ifdef CONFIG_EEPRO100 |
| 86 | num += eepro100_initialize(bis); |
| 87 | #endif |
Ben Warren | 8ca0b3f | 2008-08-31 10:45:44 -0700 | [diff] [blame] | 88 | #ifdef CONFIG_TULIP |
| 89 | num += dc21x4x_initialize(bis); |
| 90 | #endif |
Ben Warren | ad3381c | 2008-08-31 10:44:19 -0700 | [diff] [blame] | 91 | #ifdef CONFIG_E1000 |
| 92 | num += e1000_initialize(bis); |
| 93 | #endif |
Ben Warren | e309053 | 2008-08-31 10:08:43 -0700 | [diff] [blame] | 94 | #ifdef CONFIG_PCNET |
| 95 | num += pcnet_initialize(bis); |
| 96 | #endif |
Ben Warren | b902b8d | 2008-08-31 10:07:16 -0700 | [diff] [blame] | 97 | #ifdef CONFIG_NATSEMI |
| 98 | num += natsemi_initialize(bis); |
| 99 | #endif |
Ben Warren | 1940363 | 2008-08-31 10:03:22 -0700 | [diff] [blame] | 100 | #ifdef CONFIG_NS8382X |
| 101 | num += ns8382x_initialize(bis); |
| 102 | #endif |
Ben Warren | 0b252f5 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 103 | #if defined(CONFIG_RTL8139) |
| 104 | num += rtl8139_initialize(bis); |
| 105 | #endif |
Ben Warren | 02d6989 | 2008-08-31 09:49:42 -0700 | [diff] [blame] | 106 | #if defined(CONFIG_RTL8169) |
| 107 | num += rtl8169_initialize(bis); |
| 108 | #endif |
Timur Tabi | b11f664 | 2009-04-09 10:27:05 -0500 | [diff] [blame] | 109 | #if defined(CONFIG_ULI526X) |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 110 | num += uli526x_initialize(bis); |
| 111 | #endif |
Ben Warren | 10efa02 | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 112 | |
| 113 | #endif /* CONFIG_PCI */ |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 114 | return num; |
| 115 | } |
| 116 | |
Peng Fan | 1bcabd7 | 2018-03-28 20:54:12 +0800 | [diff] [blame] | 117 | struct mii_dev *fec_get_miibus(ulong base_addr, int dev_id); |
Lothar Waßmann | cb5761f | 2017-07-14 08:53:57 +0200 | [diff] [blame] | 118 | |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 119 | #ifdef CONFIG_PHYLIB |
| 120 | struct phy_device; |
| 121 | int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr, |
| 122 | struct mii_dev *bus, struct phy_device *phydev); |
| 123 | #else |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 124 | /* |
| 125 | * Allow FEC to fine-tune MII configuration on boards which require this. |
| 126 | */ |
| 127 | int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int)); |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 128 | #endif |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 129 | |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 130 | #endif /* _NETDEV_H_ */ |