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_ |
Patrick Delaunay | 53e3d52 | 2019-08-01 11:29:03 +0200 | [diff] [blame] | 13 | #include <phy_interface.h> |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 14 | |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 15 | struct udevice; |
| 16 | |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 17 | /* |
| 18 | * Board and CPU-specific initialization functions |
| 19 | * board_eth_init() has highest priority. cpu_eth_init() only |
| 20 | * gets called if board_eth_init() isn't instantiated or fails. |
| 21 | * Return values: |
| 22 | * 0: success |
| 23 | * -1: failure |
| 24 | */ |
| 25 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 26 | int board_eth_init(struct bd_info *bis); |
Patrick Delaunay | 53e3d52 | 2019-08-01 11:29:03 +0200 | [diff] [blame] | 27 | int board_interface_eth_init(struct udevice *dev, |
| 28 | phy_interface_t interface_type); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 29 | int cpu_eth_init(struct bd_info *bis); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 30 | |
| 31 | /* Driver initialization prototypes */ |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 32 | int at91emac_register(struct bd_info *bis, unsigned long iobase); |
| 33 | int ax88180_initialize(struct bd_info *bis); |
| 34 | int bcm_sf2_eth_register(struct bd_info *bis, u8 dev_num); |
| 35 | int bfin_EMAC_initialize(struct bd_info *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); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 38 | int dc21x4x_initialize(struct bd_info *bis); |
Alexey Brodkin | 92a190a | 2014-01-22 20:54:06 +0400 | [diff] [blame] | 39 | int designware_initialize(ulong base_addr, u32 interface); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 40 | int dm9000_initialize(struct bd_info *bis); |
Ilya Yanok | 62cbc40 | 2009-02-09 18:45:28 +0100 | [diff] [blame] | 41 | int dnet_eth_initialize(int id, void *regs, unsigned int phy_addr); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 42 | int e1000_initialize(struct bd_info *bis); |
| 43 | int eepro100_initialize(struct bd_info *bis); |
Matthias Kaehlcke | 594d57d | 2010-01-31 17:39:49 +0100 | [diff] [blame] | 44 | int ep93xx_eth_initialize(u8 dev_num, int base_addr); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 45 | int eth_3com_initialize (struct bd_info * bis); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 46 | int ethoc_initialize(u8 dev_num, int base_addr); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 47 | int fec_initialize (struct bd_info *bis); |
| 48 | int fecmxc_initialize(struct bd_info *bis); |
| 49 | int fecmxc_initialize_multi(struct bd_info *bis, int dev_id, int phy_id, |
| 50 | uint32_t addr); |
| 51 | int ftmac100_initialize(struct bd_info *bits); |
| 52 | int ftmac110_initialize(struct bd_info *bits); |
| 53 | void gt6426x_eth_initialize(struct bd_info *bis); |
Roberto Cerati | 45a1693 | 2013-04-24 10:46:17 +0800 | [diff] [blame] | 54 | int ks8851_mll_initialize(u8 dev_num, int base_addr); |
Nishanth Menon | b7ad410 | 2009-10-16 00:06:35 -0500 | [diff] [blame] | 55 | int lan91c96_initialize(u8 dev_num, int base_addr); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 56 | int lpc32xx_eth_initialize(struct bd_info *bis); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 57 | int macb_eth_initialize(int id, void *regs, unsigned int phy_addr); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 58 | int mcdmafec_initialize(struct bd_info *bis); |
| 59 | int mcffec_initialize(struct bd_info *bis); |
| 60 | int mvgbe_initialize(struct bd_info *bis); |
| 61 | int mvneta_initialize(struct bd_info *bis, int base_addr, int devnum, |
| 62 | int phy_addr); |
| 63 | int natsemi_initialize(struct bd_info *bis); |
Bernhard Kaindl | d020169 | 2011-10-20 10:56:59 +0000 | [diff] [blame] | 64 | int ne2k_register(void); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 65 | int npe_initialize(struct bd_info *bis); |
| 66 | int ns8382x_initialize(struct bd_info *bis); |
| 67 | int pcnet_initialize(struct bd_info *bis); |
| 68 | int ppc_4xx_eth_initialize (struct bd_info *bis); |
| 69 | int rtl8139_initialize(struct bd_info *bis); |
| 70 | int rtl8169_initialize(struct bd_info *bis); |
| 71 | int scc_initialize(struct bd_info *bis); |
| 72 | int sh_eth_initialize(struct bd_info *bis); |
| 73 | int skge_initialize(struct bd_info *bis); |
Ben Warren | 7194ab8 | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 74 | int smc91111_initialize(u8 dev_num, int base_addr); |
Wolfgang Denk | bd6ce9d | 2011-09-10 16:59:02 +0200 | [diff] [blame] | 75 | int smc911x_initialize(u8 dev_num, int base_addr); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 76 | int uec_standard_init(struct bd_info *bis); |
| 77 | int uli526x_initialize(struct bd_info *bis); |
Ajay Bhargav | 79788bb | 2011-09-13 22:21:58 +0530 | [diff] [blame] | 78 | int armada100_fec_register(unsigned long base_addr); |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 79 | |
| 80 | /* Boards with PCI network controllers can call this from their board_eth_init() |
| 81 | * function to initialize whatever's on board. |
| 82 | * Return value is total # of devices found */ |
| 83 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 84 | static inline int pci_eth_init(struct bd_info *bis) |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 85 | { |
| 86 | int num = 0; |
Ben Warren | e309053 | 2008-08-31 10:08:43 -0700 | [diff] [blame] | 87 | |
Ben Warren | 10efa02 | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 88 | #ifdef CONFIG_PCI |
| 89 | |
| 90 | #ifdef CONFIG_EEPRO100 |
| 91 | num += eepro100_initialize(bis); |
| 92 | #endif |
Ben Warren | 8ca0b3f | 2008-08-31 10:45:44 -0700 | [diff] [blame] | 93 | #ifdef CONFIG_TULIP |
| 94 | num += dc21x4x_initialize(bis); |
| 95 | #endif |
Ben Warren | ad3381c | 2008-08-31 10:44:19 -0700 | [diff] [blame] | 96 | #ifdef CONFIG_E1000 |
| 97 | num += e1000_initialize(bis); |
| 98 | #endif |
Ben Warren | e309053 | 2008-08-31 10:08:43 -0700 | [diff] [blame] | 99 | #ifdef CONFIG_PCNET |
| 100 | num += pcnet_initialize(bis); |
| 101 | #endif |
Ben Warren | b902b8d | 2008-08-31 10:07:16 -0700 | [diff] [blame] | 102 | #ifdef CONFIG_NATSEMI |
| 103 | num += natsemi_initialize(bis); |
| 104 | #endif |
Ben Warren | 1940363 | 2008-08-31 10:03:22 -0700 | [diff] [blame] | 105 | #ifdef CONFIG_NS8382X |
| 106 | num += ns8382x_initialize(bis); |
| 107 | #endif |
Ben Warren | 0b252f5 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 108 | #if defined(CONFIG_RTL8139) |
| 109 | num += rtl8139_initialize(bis); |
| 110 | #endif |
Ben Warren | 02d6989 | 2008-08-31 09:49:42 -0700 | [diff] [blame] | 111 | #if defined(CONFIG_RTL8169) |
| 112 | num += rtl8169_initialize(bis); |
| 113 | #endif |
Timur Tabi | b11f664 | 2009-04-09 10:27:05 -0500 | [diff] [blame] | 114 | #if defined(CONFIG_ULI526X) |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 115 | num += uli526x_initialize(bis); |
| 116 | #endif |
Ben Warren | 10efa02 | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 117 | |
| 118 | #endif /* CONFIG_PCI */ |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 119 | return num; |
| 120 | } |
| 121 | |
Peng Fan | 1bcabd7 | 2018-03-28 20:54:12 +0800 | [diff] [blame] | 122 | 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] | 123 | |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 124 | #ifdef CONFIG_PHYLIB |
| 125 | struct phy_device; |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 126 | int fec_probe(struct bd_info *bd, int dev_id, uint32_t base_addr, |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 127 | struct mii_dev *bus, struct phy_device *phydev); |
| 128 | #else |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 129 | /* |
| 130 | * Allow FEC to fine-tune MII configuration on boards which require this. |
| 131 | */ |
Marek Vasut | f2c5564 | 2020-04-04 12:21:57 +0200 | [diff] [blame] | 132 | struct eth_device; |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 133 | int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int)); |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 134 | #endif |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 135 | |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 136 | #endif /* _NETDEV_H_ */ |