blob: 91b7690972c9fab7eaa97102d20128a4513b1385 [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
Thomas Chou96fa1e42015-10-22 15:29:11 +080049config ALTERA_TSE
50 bool "Altera Triple-Speed Ethernet MAC support"
51 depends on DM_ETH
52 select PHYLIB
53 help
54 This driver supports the Altera Triple-Speed (TSE) Ethernet MAC.
55 Please find details on the "Triple-Speed Ethernet MegaCore Function
56 Resource Center" of Altera.
57
Simon Glassc294ac52015-08-19 09:33:41 -060058config E1000
59 bool "Intel PRO/1000 Gigabit Ethernet support"
60 help
61 This driver supports Intel(R) PRO/1000 gigabit ethernet family of
62 adapters. For more information on how to identify your adapter, go
63 to the Adapter & Driver ID Guide at:
64
65 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
66
67config E1000_SPI_GENERIC
68 bool "Allow access to the Intel 8257x SPI bus"
69 depends on E1000
70 help
71 Allow generic access to the SPI bus on the Intel 8257x, for
72 example with the "sspi" command.
73
74config E1000_SPI
75 bool "Enable SPI bus utility code"
76 depends on E1000
77 help
78 Utility code for direct access to the SPI bus on Intel 8257x.
79 This does not do anything useful unless you set at least one
80 of CONFIG_CMD_E1000 or CONFIG_E1000_SPI_GENERIC.
81
82config CMD_E1000
83 bool "Enable the e1000 command"
84 depends on E1000
85 help
86 This enables the 'e1000' management command for E1000 devices. When
87 used on devices with SPI support you can reprogram the EEPROM from
88 U-Boot.
89
Joe Hershberger3ea143a2015-03-22 17:09:13 -050090config ETH_SANDBOX
91 depends on DM_ETH && SANDBOX
92 default y
93 bool "Sandbox: Mocked Ethernet driver"
94 help
95 This driver simply responds with fake ARP replies and ping
96 replies that are used to verify network stack functionality
97
98 This driver is particularly useful in the test/dm/eth.c tests
99
Joe Hershbergera346ca72015-03-22 17:09:21 -0500100config ETH_SANDBOX_RAW
101 depends on DM_ETH && SANDBOX
102 default y
103 bool "Sandbox: Bridge to Linux Raw Sockets"
104 help
105 This driver is a bridge from the bottom of the network stack
106 in U-Boot to the RAW AF_PACKET API in Linux. This allows real
107 network traffic to be tested from within sandbox. See
108 board/sandbox/README.sandbox for more details.
109
Simon Glassef48f6d2015-04-05 16:07:34 -0600110config ETH_DESIGNWARE
111 bool "Synopsys Designware Ethernet MAC"
Thomas Chou25af71c2015-12-07 20:53:29 +0800112 select PHYLIB
Simon Glassef48f6d2015-04-05 16:07:34 -0600113 help
114 This MAC is present in SoCs from various vendors. It supports
115 100Mbit and 1 Gbit operation. You must enable CONFIG_PHYLIB to
116 provide the PHY (physical media interface).
117
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100118config MVPP2
119 bool "Marvell Armada 375 network interface support"
120 depends on ARMADA_375
121 select PHYLIB
122 help
123 This driver supports the network interface units in the
124 Marvell ARMADA 375 SoC.
125
Bin Mengb68fe152015-08-27 22:25:58 -0700126config PCH_GBE
127 bool "Intel Platform Controller Hub EG20T GMAC driver"
128 depends on DM_ETH && DM_PCI
129 select PHYLIB
130 help
131 This MAC is present in Intel Platform Controller Hub EG20T. It
132 supports 10/100/1000 Mbps operation.
133
Bin Meng86e9dc82016-03-21 06:47:41 -0700134config RTL8139
135 bool "Realtek 8139 series Ethernet controller driver"
136 help
137 This driver supports Realtek 8139 series fast ethernet family of
138 PCI chipsets/adapters.
139
Bin Meng0764f242016-03-21 06:47:42 -0700140config RTL8169
141 bool "Realtek 8169 series Ethernet controller driver"
142 help
143 This driver supports Realtek 8169 series gigabit ethernet family of
144 PCI/PCIe chipsets/adapters.
145
Michal Simek338a5f22015-12-09 16:54:42 +0100146config XILINX_AXIEMAC
147 depends on DM_ETH && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP)
148 select PHYLIB
149 select MII
150 bool "Xilinx AXI Ethernet"
151 help
152 This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
153
Michal Simek3229c862015-12-11 09:41:49 +0100154config XILINX_EMACLITE
155 depends on DM_ETH && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP)
156 select PHYLIB
157 select MII
158 bool "Xilinx Ethernetlite"
159 help
160 This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
161
Michal Simek596e5782015-11-30 14:34:52 +0100162config ZYNQ_GEM
163 depends on DM_ETH && (ARCH_ZYNQ || ARCH_ZYNQMP)
Michal Simek7bccc752015-12-11 09:14:31 +0100164 select PHYLIB
Michal Simek596e5782015-11-30 14:34:52 +0100165 bool "Xilinx Ethernet GEM"
166 help
Michal Simekc9428102015-12-09 16:53:52 +0100167 This MAC is present in Xilinx Zynq and ZynqMP SoCs.
Michal Simek596e5782015-11-30 14:34:52 +0100168
Purna Chandra Mandal23e75782016-01-28 15:30:21 +0530169config PIC32_ETH
170 bool "Microchip PIC32 Ethernet Support"
171 depends on DM_ETH && MACH_PIC32
172 select PHYLIB
173 help
174 This driver implements 10/100 Mbps Ethernet and MAC layer for
175 Microchip PIC32 microcontrollers.
176
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500177endif # NETDEVICES