blob: 1d31e238b601f621270eed093fc397a6dfbb466b [file] [log] [blame]
Joe Hershberger05c3e682015-03-22 17:09:10 -05001config DM_ETH
2 bool "Enable Driver Model for Ethernet drivers"
3 depends on DM
4 help
5 Enable driver model for Ethernet.
6
7 The eth_*() interface will be implemented by the UC_ETH class
8 This is currently implemented in net/eth.c
9 Look in include/net.h for details.
Joe Hershberger3ea143a2015-03-22 17:09:13 -050010
Bin Mengb68fe152015-08-27 22:25:58 -070011config PHYLIB
12 bool "Ethernet PHY (physical media interface) support"
13 help
14 Enable Ethernet PHY (physical media interface) support.
15
Michael Haas525d1872016-03-25 18:22:50 +010016config RTL8211X_PHY_FORCE_MASTER
17 bool "Ethernet PHY RTL8211x: force 1000BASE-T master mode"
18 depends on PHYLIB
19 help
20 Force master mode for 1000BASE-T on RTl8211x PHYs (except for RTL8211F).
21 This can work around link stability and data corruption issues on gigabit
22 links which can occur in slave mode on certain PHYs, e.g. on the
23 RTL8211C(L).
24
25 Please note that two directly connected devices (i.e. via crossover cable)
26 will not be able to establish a link between each other if they both force
27 master mode. Multiple devices forcing master mode when connected by a
28 network switch do not pose a problem as the switch configures its affected
29 ports into slave mode.
30
31 This option only affects gigabit links. If you must establish a direct
32 connection between two devices which both force master mode, try forcing
33 the link speed to 100MBit/s.
34
35 If unsure, say N.
36
Joe Hershberger3ea143a2015-03-22 17:09:13 -050037menuconfig NETDEVICES
38 bool "Network device support"
39 depends on NET
Joe Hershbergeref0f2f52015-06-22 16:15:30 -050040 default y if DM_ETH
Joe Hershberger3ea143a2015-03-22 17:09:13 -050041 help
42 You must select Y to enable any network device support
43 Generally if you have any networking support this is a given
44
45 If unsure, say Y
46
47if NETDEVICES
48
Marek Vasute40095f2016-05-24 23:29:09 +020049config AG7XXX
50 bool "Atheros AG7xxx Ethernet MAC support"
51 depends on DM_ETH && ARCH_ATH79
52 select PHYLIB
53 help
54 This driver supports the Atheros AG7xxx Ethernet MAC. This MAC is
55 present in the Atheros AR7xxx, AR9xxx and QCA9xxx MIPS chips.
56
57
Thomas Chou96fa1e42015-10-22 15:29:11 +080058config ALTERA_TSE
59 bool "Altera Triple-Speed Ethernet MAC support"
60 depends on DM_ETH
61 select PHYLIB
62 help
63 This driver supports the Altera Triple-Speed (TSE) Ethernet MAC.
64 Please find details on the "Triple-Speed Ethernet MegaCore Function
65 Resource Center" of Altera.
66
Stephen Warrenba4dfef2016-10-21 14:46:47 -060067config DWC_ETH_QOS
68 bool "Synopsys DWC Ethernet QOS device support"
69 depends on DM_ETH
70 select PHYLIB
71 help
72 This driver supports the Synopsys Designware Ethernet QOS (Quality
73 Of Service) IP block. The IP supports many options for bus type,
74 clocking/reset structure, and feature list. This driver currently
75 supports the specific configuration used in NVIDIA's Tegra186 chip,
76 but should be extensible to other combinations quite easily.
77
Simon Glassc294ac52015-08-19 09:33:41 -060078config E1000
79 bool "Intel PRO/1000 Gigabit Ethernet support"
80 help
81 This driver supports Intel(R) PRO/1000 gigabit ethernet family of
82 adapters. For more information on how to identify your adapter, go
83 to the Adapter & Driver ID Guide at:
84
85 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
86
87config E1000_SPI_GENERIC
88 bool "Allow access to the Intel 8257x SPI bus"
89 depends on E1000
90 help
91 Allow generic access to the SPI bus on the Intel 8257x, for
92 example with the "sspi" command.
93
94config E1000_SPI
95 bool "Enable SPI bus utility code"
96 depends on E1000
97 help
98 Utility code for direct access to the SPI bus on Intel 8257x.
99 This does not do anything useful unless you set at least one
100 of CONFIG_CMD_E1000 or CONFIG_E1000_SPI_GENERIC.
101
102config CMD_E1000
103 bool "Enable the e1000 command"
104 depends on E1000
105 help
106 This enables the 'e1000' management command for E1000 devices. When
107 used on devices with SPI support you can reprogram the EEPROM from
108 U-Boot.
109
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500110config ETH_SANDBOX
111 depends on DM_ETH && SANDBOX
112 default y
113 bool "Sandbox: Mocked Ethernet driver"
114 help
115 This driver simply responds with fake ARP replies and ping
116 replies that are used to verify network stack functionality
117
118 This driver is particularly useful in the test/dm/eth.c tests
119
Joe Hershbergera346ca72015-03-22 17:09:21 -0500120config ETH_SANDBOX_RAW
121 depends on DM_ETH && SANDBOX
122 default y
123 bool "Sandbox: Bridge to Linux Raw Sockets"
124 help
125 This driver is a bridge from the bottom of the network stack
126 in U-Boot to the RAW AF_PACKET API in Linux. This allows real
127 network traffic to be tested from within sandbox. See
128 board/sandbox/README.sandbox for more details.
129
Simon Glassef48f6d2015-04-05 16:07:34 -0600130config ETH_DESIGNWARE
131 bool "Synopsys Designware Ethernet MAC"
Thomas Chou25af71c2015-12-07 20:53:29 +0800132 select PHYLIB
Simon Glassef48f6d2015-04-05 16:07:34 -0600133 help
134 This MAC is present in SoCs from various vendors. It supports
135 100Mbit and 1 Gbit operation. You must enable CONFIG_PHYLIB to
136 provide the PHY (physical media interface).
137
Max Filippovf0727122016-08-05 18:26:15 +0300138config ETHOC
139 bool "OpenCores 10/100 Mbps Ethernet MAC"
140 help
141 This MAC is present in OpenRISC and Xtensa XTFPGA boards.
142
Jagan Teki97d29ca2016-10-08 18:00:12 +0530143config FEC_MXC
144 bool "FEC Ethernet controller"
Patrick Bruenn98d62e62016-11-04 11:57:02 +0100145 depends on MX5 || MX6
Jagan Teki97d29ca2016-10-08 18:00:12 +0530146 help
147 This driver supports the 10/100 Fast Ethernet controller for
148 NXP i.MX processors.
149
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100150config MVPP2
151 bool "Marvell Armada 375 network interface support"
152 depends on ARMADA_375
153 select PHYLIB
154 help
155 This driver supports the network interface units in the
156 Marvell ARMADA 375 SoC.
157
Wenyou Yangebcb40a2016-11-02 10:06:55 +0800158config MACB
159 bool "Cadence MACB/GEM Ethernet Interface"
160 depends on DM_ETH
161 select PHYLIB
162 help
163 The Cadence MACB ethernet interface is found on many Atmel
164 AT91 and SAMA5 parts. This driver also supports the Cadence
165 GEM (Gigabit Ethernet MAC) found in some ARM SoC devices.
166 Say Y to include support for the MACB/GEM chip.
167
Bin Mengb68fe152015-08-27 22:25:58 -0700168config PCH_GBE
169 bool "Intel Platform Controller Hub EG20T GMAC driver"
170 depends on DM_ETH && DM_PCI
171 select PHYLIB
172 help
173 This MAC is present in Intel Platform Controller Hub EG20T. It
174 supports 10/100/1000 Mbps operation.
175
Bin Meng86e9dc82016-03-21 06:47:41 -0700176config RTL8139
177 bool "Realtek 8139 series Ethernet controller driver"
178 help
179 This driver supports Realtek 8139 series fast ethernet family of
180 PCI chipsets/adapters.
181
Bin Meng0764f242016-03-21 06:47:42 -0700182config RTL8169
183 bool "Realtek 8169 series Ethernet controller driver"
184 help
185 This driver supports Realtek 8169 series gigabit ethernet family of
186 PCI/PCIe chipsets/adapters.
187
Amit Singh Tomara29710c2016-07-06 17:59:44 +0530188config SUN8I_EMAC
189 bool "Allwinner Sun8i Ethernet MAC support"
190 depends on DM_ETH
191 select PHYLIB
192 help
193 This driver supports the Allwinner based SUN8I/SUN50I Ethernet MAC.
194 It can be found in H3/A64/A83T based SoCs and compatible with both
195 External and Internal PHY's.
196
Michal Simek338a5f22015-12-09 16:54:42 +0100197config XILINX_AXIEMAC
198 depends on DM_ETH && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP)
199 select PHYLIB
200 select MII
201 bool "Xilinx AXI Ethernet"
202 help
203 This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
204
Michal Simek3229c862015-12-11 09:41:49 +0100205config XILINX_EMACLITE
Zubair Lutfullah Kakakhel2f1f05f2016-07-27 12:25:09 +0100206 depends on DM_ETH && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP || MIPS)
Michal Simek3229c862015-12-11 09:41:49 +0100207 select PHYLIB
208 select MII
209 bool "Xilinx Ethernetlite"
210 help
211 This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
212
Michal Simek596e5782015-11-30 14:34:52 +0100213config ZYNQ_GEM
214 depends on DM_ETH && (ARCH_ZYNQ || ARCH_ZYNQMP)
Michal Simek7bccc752015-12-11 09:14:31 +0100215 select PHYLIB
Michal Simek596e5782015-11-30 14:34:52 +0100216 bool "Xilinx Ethernet GEM"
217 help
Michal Simekc9428102015-12-09 16:53:52 +0100218 This MAC is present in Xilinx Zynq and ZynqMP SoCs.
Michal Simek596e5782015-11-30 14:34:52 +0100219
Purna Chandra Mandal23e75782016-01-28 15:30:21 +0530220config PIC32_ETH
221 bool "Microchip PIC32 Ethernet Support"
222 depends on DM_ETH && MACH_PIC32
223 select PHYLIB
224 help
225 This driver implements 10/100 Mbps Ethernet and MAC layer for
226 Microchip PIC32 microcontrollers.
227
Sjoerd Simons0125bcf2017-01-11 11:46:11 +0100228config GMAC_ROCKCHIP
229 bool "Rockchip Synopsys Designware Ethernet MAC"
230 depends on DM_ETH && ETH_DESIGNWARE
231 help
232 This driver provides Rockchip SoCs network support based on the
233 Synopsys Designware driver.
234
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500235endif # NETDEVICES