blob: 89f7411bdf336d64f8cddadc3f8c077f48481455 [file] [log] [blame]
Alexaf2cbfd2017-02-06 19:17:34 -08001source "drivers/net/phy/Kconfig"
Calvin Johnsona802d1e2018-03-08 15:30:35 +05302source "drivers/net/pfe_eth/Kconfig"
Florinel Iordache1bad9912019-05-15 09:09:21 +00003source "drivers/net/fsl-mc/Kconfig"
Alexaf2cbfd2017-02-06 19:17:34 -08004
Simon Glass9f664922021-08-08 12:20:31 -06005config ETH
6 def_bool y
7
Joe Hershberger05c3e682015-03-22 17:09:10 -05008config DM_ETH
Tom Rini94633c32022-08-02 07:33:47 -04009 bool
Joe Hershberger05c3e682015-03-22 17:09:10 -050010 depends on DM
11 help
12 Enable driver model for Ethernet.
13
Joe Hershbergerc25f4062018-07-02 14:47:48 -050014 The eth_*() interface will be implemented by the UCLASS_ETH class
15 This is currently implemented in net/eth-uclass.c
Joe Hershberger05c3e682015-03-22 17:09:10 -050016 Look in include/net.h for details.
Joe Hershberger3ea143a2015-03-22 17:09:13 -050017
Tom Rinie524f3a2022-11-27 10:25:36 -050018config SPL_DM_ETH
19 depends on SPL_NET
20 def_bool y
21
Alex Margineanc3452b52019-06-03 19:10:30 +030022config DM_MDIO
23 bool "Enable Driver Model for MDIO devices"
Tom Rini94633c32022-08-02 07:33:47 -040024 depends on PHYLIB
Alex Margineanc3452b52019-06-03 19:10:30 +030025 help
26 Enable driver model for MDIO devices
27
28 Adds UCLASS_MDIO DM class supporting MDIO buses that are probed as
29 stand-alone devices. Useful in particular for systems that support
30 DM_ETH and have a stand-alone MDIO hardware block shared by multiple
31 Ethernet interfaces.
32 This is currently implemented in net/mdio-uclass.c
33 Look in include/miiphy.h for details.
34
Alex Marginean8880edb2019-07-12 10:13:50 +030035config DM_MDIO_MUX
36 bool "Enable Driver Model for MDIO MUX devices"
37 depends on DM_MDIO
38 help
39 Enable driver model for MDIO MUX devices
40
41 Adds UCLASS_MDIO_MUX DM class supporting MDIO MUXes. Useful for
42 systems that support DM_MDIO and integrate one or multiple muxes on
43 the MDIO bus.
44 This is currently implemented in net/mdio-mux-uclass.c
45 Look in include/miiphy.h for details.
46
Claudiu Manoilfc054d52021-01-25 14:23:53 +020047config DM_DSA
48 bool "Enable Driver Model for DSA switches"
Tom Rini94633c32022-08-02 07:33:47 -040049 depends on DM_MDIO
Claudiu Manoilfc054d52021-01-25 14:23:53 +020050 depends on PHY_FIXED
Jerome Forissier8cb33032024-10-16 12:03:59 +020051 depends on !NET_LWIP
Claudiu Manoilfc054d52021-01-25 14:23:53 +020052 help
53 Enable driver model for DSA switches
54
55 Adds UCLASS_DSA class supporting switches that follow the Distributed
56 Switch Architecture (DSA). These switches rely on the presence of a
57 management switch port connected to an Ethernet controller capable of
58 receiving frames from the switch. This host Ethernet controller is
59 called the "master" Ethernet interface in DSA terminology.
60 This is currently implemented in net/dsa-uclass.c, refer to
61 include/net/dsa.h for API details.
62
Alex Margineanec9594a2019-06-03 19:12:28 +030063config MDIO_SANDBOX
64 depends on DM_MDIO && SANDBOX
65 default y
66 bool "Sandbox: Mocked MDIO driver"
67 help
68 This driver implements dummy read/write/reset MDIO functions mimicking
69 a bus with a single PHY.
70
71 This driver is used in for testing in test/dm/mdio.c
72
Alex Margineanc3d9f3f2019-07-12 10:13:53 +030073config MDIO_MUX_SANDBOX
74 depends on DM_MDIO_MUX && MDIO_SANDBOX
75 default y
76 bool "Sandbox: Mocked MDIO-MUX driver"
77 help
78 This driver implements dummy select/deselect ops mimicking a MUX on
79 the MDIO bux. It uses mdio_sandbox driver as parent MDIO.
80
81 This driver is used for testing in test/dm/mdio.c
82
Ye Li5fe419e2020-05-03 22:41:14 +080083config DM_ETH_PHY
84 bool "Enable Driver Model for Ethernet Generic PHY drivers"
85 depends on DM
86 help
87 Enable driver model for Ethernet Generic PHY .
88
Claudiu Manoilff98da02021-03-14 20:14:57 +080089config DSA_SANDBOX
90 depends on DM_DSA && SANDBOX
91 default y
92 bool "Sandbox: Mocked DSA driver"
93 help
94 This driver implements a dummy DSA switch connected to a dummy sandbox
95 Ethernet device used as DSA master, to test DSA class code, including
96 exported DSA API and datapath processing of Ethernet traffic.
97
Joe Hershberger3ea143a2015-03-22 17:09:13 -050098menuconfig NETDEVICES
99 bool "Network device support"
Jerome Forissier98ad1452024-10-16 12:04:03 +0200100 depends on NET || NET_LWIP
Tom Rini94633c32022-08-02 07:33:47 -0400101 select DM_ETH
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500102 help
103 You must select Y to enable any network device support
104 Generally if you have any networking support this is a given
105
106 If unsure, say Y
107
108if NETDEVICES
109
Philipp Tomsich449ea2c2017-03-26 18:50:23 +0200110config PHY_GIGE
111 bool "Enable GbE PHY status parsing and configuration"
112 help
113 Enables support for parsing the status output and for
114 configuring GbE PHYs (affects the inner workings of some
115 commands and miiphyutil.c).
116
Marek Vasute40095f2016-05-24 23:29:09 +0200117config AG7XXX
118 bool "Atheros AG7xxx Ethernet MAC support"
Tom Rini94633c32022-08-02 07:33:47 -0400119 depends on ARCH_ATH79
Marek Vasute40095f2016-05-24 23:29:09 +0200120 select PHYLIB
121 help
122 This driver supports the Atheros AG7xxx Ethernet MAC. This MAC is
123 present in the Atheros AR7xxx, AR9xxx and QCA9xxx MIPS chips.
124
125
Thomas Chou96fa1e42015-10-22 15:29:11 +0800126config ALTERA_TSE
127 bool "Altera Triple-Speed Ethernet MAC support"
Thomas Chou96fa1e42015-10-22 15:29:11 +0800128 select PHYLIB
129 help
130 This driver supports the Altera Triple-Speed (TSE) Ethernet MAC.
131 Please find details on the "Triple-Speed Ethernet MegaCore Function
132 Resource Center" of Altera.
133
Suji Velupillaic89782d2017-07-10 14:05:41 -0700134config BCM_SF2_ETH
135 bool "Broadcom SF2 (Starfighter2) Ethernet support"
136 select PHYLIB
137 help
138 This is an abstract framework which provides a generic interface
139 to MAC and DMA management for multiple Broadcom SoCs such as
140 Cygnus, NSP and bcm28155_ap platforms.
141
142config BCM_SF2_ETH_DEFAULT_PORT
143 int "Broadcom SF2 (Starfighter2) Ethernet default port number"
144 depends on BCM_SF2_ETH
145 default 0
146 help
147 Default port number for the Starfighter2 ethernet driver.
148
149config BCM_SF2_ETH_GMAC
150 bool "Broadcom SF2 (Starfighter2) GMAC Ethernet support"
151 depends on BCM_SF2_ETH
152 help
153 This flag enables the ethernet support for Broadcom platforms with
154 GMAC such as Cygnus. This driver is based on the framework provided
155 by the BCM_SF2_ETH driver.
156 Say Y to any bcmcygnus based platforms.
157
Álvaro Fernández Rojas55e55fe2018-12-01 19:00:24 +0100158config BCM6348_ETH
159 bool "BCM6348 EMAC support"
Tom Rini94633c32022-08-02 07:33:47 -0400160 depends on ARCH_BMIPS
Álvaro Fernández Rojas55e55fe2018-12-01 19:00:24 +0100161 select DMA
162 select DMA_CHANNELS
163 select MII
164 select PHYLIB
165 help
166 This driver supports the BCM6348 Ethernet MAC.
167
Álvaro Fernández Rojas96229722018-12-01 19:00:32 +0100168config BCM6368_ETH
169 bool "BCM6368 EMAC support"
Tom Rini94633c32022-08-02 07:33:47 -0400170 depends on ARCH_BMIPS
Álvaro Fernández Rojas96229722018-12-01 19:00:32 +0100171 select DMA
172 select MII
173 help
174 This driver supports the BCM6368 Ethernet MAC.
175
Amit Singh Tomard53e3fa2020-01-27 01:14:42 +0000176config BCMGENET
177 bool "BCMGENET V5 support"
Amit Singh Tomard53e3fa2020-01-27 01:14:42 +0000178 select PHYLIB
179 help
180 This driver supports the BCMGENET Ethernet MAC.
181
Tom Rinif6301702022-11-27 10:25:02 -0500182source "drivers/net/bnxt/Kconfig"
183
Aaron Tsengfebe13b2021-01-14 13:34:11 -0800184config CORTINA_NI_ENET
185 bool "Cortina-Access Ethernet driver"
Tom Rini94633c32022-08-02 07:33:47 -0400186 depends on CORTINA_PLATFORM
Aaron Tsengfebe13b2021-01-14 13:34:11 -0800187 help
188 This driver supports the Cortina-Access Ethernet MAC for
189 all supported CAxxxx SoCs.
190
Andre Przywaradebb07b2021-04-12 01:04:52 +0100191config CALXEDA_XGMAC
192 bool "Calxeda XGMAC support"
Andre Przywaradebb07b2021-04-12 01:04:52 +0100193 help
194 This driver supports the XGMAC in Calxeda Highbank and Midway
195 machines.
196
Tom Rini03de3052024-05-20 13:35:03 -0600197config DWC_ETH_XGMAC
198 bool "Synopsys DWC Ethernet XGMAC device support"
199 select PHYLIB
200 help
201 This driver supports the Synopsys Designware Ethernet XGMAC (10G
202 Ethernet MAC) IP block. The IP supports many options for bus type,
203 clocking/reset structure, and feature list.
204
205config DWC_ETH_XGMAC_SOCFPGA
206 bool "Synopsys DWC Ethernet XGMAC device support for SOCFPGA"
207 select REGMAP
208 select SYSCON
209 depends on DWC_ETH_XGMAC
210 default y if TARGET_SOCFPGA_AGILEX5
211 help
212 The Synopsys Designware Ethernet XGMAC IP block with specific
213 configuration used in Intel SoC FPGA chip.
214
Marek Vasutf478da92022-04-13 04:15:38 +0200215config DRIVER_DM9000
216 bool "Davicom DM9000 controller driver"
217 help
218 The Davicom DM9000 parallel bus external ethernet interface chip.
219
Tom Rini9b0240f2022-12-02 16:42:18 -0500220config DM9000_BYTE_SWAPPED
221 bool "Byte swapped access for DM9000"
222 depends on DRIVER_DM9000
223
224config DM9000_NO_SROM
225 bool "No SROM on DM9000"
226 depends on DRIVER_DM9000
227
228config DM9000_USE_16BIT
229 bool "Use 16bit access in DM9000"
230 depends on DRIVER_DM9000
231
Stephen Warrenba4dfef2016-10-21 14:46:47 -0600232config DWC_ETH_QOS
233 bool "Synopsys DWC Ethernet QOS device support"
Stephen Warrenba4dfef2016-10-21 14:46:47 -0600234 select PHYLIB
235 help
236 This driver supports the Synopsys Designware Ethernet QOS (Quality
237 Of Service) IP block. The IP supports many options for bus type,
Patrick Delaunaya08f2f72020-06-08 11:27:19 +0200238 clocking/reset structure, and feature list.
239
240config DWC_ETH_QOS_IMX
241 bool "Synopsys DWC Ethernet QOS device support for IMX"
242 depends on DWC_ETH_QOS
243 help
244 The Synopsys Designware Ethernet QOS IP block with the specific
245 configuration used in IMX soc.
246
Philip Oberfichtner49d8fe02024-08-02 11:25:39 +0200247config DWC_ETH_QOS_INTEL
248 bool "Synopsys DWC Ethernet QOS device support for Intel"
249 depends on DWC_ETH_QOS
250 help
251 The Synopsys Designware Ethernet QOS IP block with the specific
252 configuration used in the Intel Elkhart-Lake soc.
253
Jonas Karlman8e76ff62023-10-01 19:17:19 +0000254config DWC_ETH_QOS_ROCKCHIP
255 bool "Synopsys DWC Ethernet QOS device support for Rockchip SoCs"
256 depends on DWC_ETH_QOS
257 select DM_ETH_PHY
258 help
259 The Synopsys Designware Ethernet QOS IP block with specific
260 configuration used in Rockchip SoCs.
261
Patrick Delaunaya08f2f72020-06-08 11:27:19 +0200262config DWC_ETH_QOS_STM32
263 bool "Synopsys DWC Ethernet QOS device support for STM32"
264 depends on DWC_ETH_QOS
Patrick Delaunay9dbdc232021-07-20 20:09:55 +0200265 select DM_ETH_PHY
Patrick Delaunaya08f2f72020-06-08 11:27:19 +0200266 default y if ARCH_STM32MP
267 help
268 The Synopsys Designware Ethernet QOS IP block with the specific
269 configuration used in STM32MP soc.
270
271config DWC_ETH_QOS_TEGRA186
272 bool "Synopsys DWC Ethernet QOS device support for TEGRA186"
273 depends on DWC_ETH_QOS
274 default y if TEGRA186
275 help
276 The Synopsys Designware Ethernet QOS IP block with specific
277 configuration used in NVIDIA's Tegra186 chip.
Stephen Warrenba4dfef2016-10-21 14:46:47 -0600278
Sumit Gargd3820252023-02-01 19:28:55 +0530279config DWC_ETH_QOS_QCOM
280 bool "Synopsys DWC Ethernet QOS device support for Qcom SoCs"
281 depends on DWC_ETH_QOS
282 help
283 The Synopsys Designware Ethernet QOS IP block with specific
284 configuration used in Qcom QCS404 SoC.
285
Yanhong Wang736733b2023-06-15 17:36:43 +0800286config DWC_ETH_QOS_STARFIVE
287 bool "Synopsys DWC Ethernet QOS device support for STARFIVE"
288 depends on DWC_ETH_QOS
289 help
290 The Synopsys Designware Ethernet QOS IP block with specific
291 configuration used in STARFIVE JH7110 soc.
292
Simon Glassc294ac52015-08-19 09:33:41 -0600293config E1000
294 bool "Intel PRO/1000 Gigabit Ethernet support"
Sean Andersond64ac852022-04-26 14:35:33 -0400295 depends on PCI
Simon Glassc294ac52015-08-19 09:33:41 -0600296 help
297 This driver supports Intel(R) PRO/1000 gigabit ethernet family of
298 adapters. For more information on how to identify your adapter, go
299 to the Adapter & Driver ID Guide at:
300
301 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
302
Tom Rini5c511ea2022-06-08 08:24:23 -0400303config E1000_NO_NVM
304 bool "Intel PRO/1000 has no NVMEM / EEPROM"
305 depends on E1000
306
Simon Glassc294ac52015-08-19 09:33:41 -0600307config E1000_SPI_GENERIC
308 bool "Allow access to the Intel 8257x SPI bus"
309 depends on E1000
310 help
311 Allow generic access to the SPI bus on the Intel 8257x, for
312 example with the "sspi" command.
313
314config E1000_SPI
315 bool "Enable SPI bus utility code"
316 depends on E1000
317 help
318 Utility code for direct access to the SPI bus on Intel 8257x.
319 This does not do anything useful unless you set at least one
320 of CONFIG_CMD_E1000 or CONFIG_E1000_SPI_GENERIC.
321
322config CMD_E1000
323 bool "Enable the e1000 command"
324 depends on E1000
325 help
326 This enables the 'e1000' management command for E1000 devices. When
327 used on devices with SPI support you can reprogram the EEPROM from
328 U-Boot.
329
Marek Vasut6463b732020-05-23 18:07:53 +0200330config EEPRO100
331 bool "Intel PRO/100 82557/82559/82559ER Fast Ethernet support"
332 help
333 This driver supports Intel(R) PRO/100 82557/82559/82559ER fast
334 ethernet family of adapters.
335
Robert Markoc4360952024-06-03 14:06:15 +0200336config ESSEDMA
337 bool "Qualcomm ESS Edma support"
338 depends on DM_ETH && ARCH_IPQ40XX
339 select PHYLIB
340 help
341 This driver supports ethernet DMA adapter found in
342 Qualcomm IPQ40xx series SoC-s.
343
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500344config ETH_SANDBOX
Tom Rini94633c32022-08-02 07:33:47 -0400345 depends on SANDBOX
Jerome Forissier8cb33032024-10-16 12:03:59 +0200346 depends on NET
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500347 default y
348 bool "Sandbox: Mocked Ethernet driver"
349 help
350 This driver simply responds with fake ARP replies and ping
351 replies that are used to verify network stack functionality
352
353 This driver is particularly useful in the test/dm/eth.c tests
354
Jerome Forissierce700562024-10-16 11:56:24 +0200355config ETH_SANDBOX_LWIP
356 depends on SANDBOX
357 depends on NET_LWIP
358 default y
359 bool "Sandbox: Mocked Ethernet driver (for NET_LWIP)"
360 help
361 This driver is meant as a replacement for ETH_SANDBOX when
362 the network stack is NET_LWIP rather than NET. It currently
363 does nothing, i.e. it drops the sent packets and never receives
364 data.
365
Joe Hershbergera346ca72015-03-22 17:09:21 -0500366config ETH_SANDBOX_RAW
Tom Rini94633c32022-08-02 07:33:47 -0400367 depends on SANDBOX
Jerome Forissier8cb33032024-10-16 12:03:59 +0200368 depends on NET
Joe Hershbergera346ca72015-03-22 17:09:21 -0500369 default y
370 bool "Sandbox: Bridge to Linux Raw Sockets"
371 help
372 This driver is a bridge from the bottom of the network stack
373 in U-Boot to the RAW AF_PACKET API in Linux. This allows real
374 network traffic to be tested from within sandbox. See
Keerthy5917d0b2019-07-29 13:52:04 +0530375 doc/arch/index.rst for more details.
Joe Hershbergera346ca72015-03-22 17:09:21 -0500376
Simon Glassef48f6d2015-04-05 16:07:34 -0600377config ETH_DESIGNWARE
378 bool "Synopsys Designware Ethernet MAC"
Thomas Chou25af71c2015-12-07 20:53:29 +0800379 select PHYLIB
Simon Goldschmidt6fb1eb12019-01-13 19:58:41 +0100380 imply ETH_DESIGNWARE_SOCFPGA if ARCH_SOCFPGA
Simon Glassef48f6d2015-04-05 16:07:34 -0600381 help
382 This MAC is present in SoCs from various vendors. It supports
383 100Mbit and 1 Gbit operation. You must enable CONFIG_PHYLIB to
384 provide the PHY (physical media interface).
385
Neil Armstrong798424e2021-02-24 20:33:56 +0100386config ETH_DESIGNWARE_MESON8B
387 bool "Amlogic Meson8b and later glue driver for Synopsys Designware Ethernet MAC"
Neil Armstrong798424e2021-02-24 20:33:56 +0100388 select ETH_DESIGNWARE
389 help
390 This provides glue layer to use Synopsys Designware Ethernet MAC
391 present on the Amlogic Meson8b, GX, AXG & G12A SoCs.
392
Marek Vasut215a0652018-08-13 19:32:14 +0200393config ETH_DESIGNWARE_SOCFPGA
Simon Goldschmidt4f1267c2019-01-13 19:58:40 +0100394 select REGMAP
395 select SYSCON
Tom Rini89d888e2022-06-15 12:03:43 -0400396 select DW_ALTDESCRIPTOR
Marek Vasut215a0652018-08-13 19:32:14 +0200397 bool "Altera SoCFPGA extras for Synopsys Designware Ethernet MAC"
Tom Rini94633c32022-08-02 07:33:47 -0400398 depends on ETH_DESIGNWARE
Marek Vasut215a0652018-08-13 19:32:14 +0200399 help
400 The Altera SoCFPGA requires additional configuration of the
401 Altera system manager to correctly interface with the PHY.
402 This code handles those SoC specifics.
403
Amit Singh Tomar3c5c4ee2020-05-09 19:55:12 +0530404config ETH_DESIGNWARE_S700
405 bool "Actins S700 glue driver for Synopsys Designware Ethernet MAC"
Tom Rini94633c32022-08-02 07:33:47 -0400406 depends on ETH_DESIGNWARE
Amit Singh Tomar3c5c4ee2020-05-09 19:55:12 +0530407 help
408 This provides glue layer to use Synopsys Designware Ethernet MAC
409 present on Actions S700 SoC.
410
Tom Rini89d888e2022-06-15 12:03:43 -0400411config DW_ALTDESCRIPTOR
412 bool "Designware Ethernet MAC uses alternate (enhanced) descriptors"
413 depends on ETH_DESIGNWARE
414
Max Filippovf0727122016-08-05 18:26:15 +0300415config ETHOC
416 bool "OpenCores 10/100 Mbps Ethernet MAC"
417 help
418 This MAC is present in OpenRISC and Xtensa XTFPGA boards.
419
Peng Fanfbada482018-03-28 20:54:14 +0800420config FEC_MXC_SHARE_MDIO
421 bool "Share the MDIO bus for FEC controller"
422 depends on FEC_MXC
423
424config FEC_MXC_MDIO_BASE
425 hex "MDIO base address for the FEC controller"
426 depends on FEC_MXC_SHARE_MDIO
427 help
428 This specifies the MDIO registers base address. It is used when
429 two FEC controllers share MDIO bus.
430
Jagan Teki97d29ca2016-10-08 18:00:12 +0530431config FEC_MXC
432 bool "FEC Ethernet controller"
Peng Fan09de5652022-07-26 16:41:12 +0800433 depends on MX28 || MX5 || MX6 || MX7 || IMX8 || IMX8M || IMX8ULP || IMX93 || VF610
Jagan Teki97d29ca2016-10-08 18:00:12 +0530434 help
435 This driver supports the 10/100 Fast Ethernet controller for
436 NXP i.MX processors.
437
Tom Rinicc1e98b2019-05-12 07:59:12 -0400438config FMAN_ENET
439 bool "Freescale FMan ethernet support"
440 depends on ARM || PPC
Tom Rini2d752b02022-07-23 13:05:06 -0400441 select SYS_FMAN_V3 if ARCH_B4420 || ARCH_B4860 || ARCH_LS1043A || \
442 ARCH_LS1046A || ARCH_T1024 || ARCH_T1040 || ARCH_T1042 || \
443 ARCH_T2080 || ARCH_T4240
Tom Rini3a581af2022-12-02 16:42:21 -0500444 select FSL_FM_10GEC_REGULAR_NOTATION if ARCH_T1024
Tom Rinicc1e98b2019-05-12 07:59:12 -0400445 help
446 This driver support the Freescale FMan Ethernet controller
447
Rajesh Bhagata97a0712021-11-09 16:30:38 +0530448config SYS_FMAN_FW_ADDR
449 hex "FMAN Firmware Address"
450 depends on FMAN_ENET
451 default 0x0
452
453config SYS_QE_FMAN_FW_LENGTH
454 hex "FMAN QE Firmware length"
455 depends on FMAN_ENET || QE || U_QE
456 default 0x10000
457
Tom Rini2d752b02022-07-23 13:05:06 -0400458config SYS_FMAN_V3
459 bool
Tom Rini612f7a62022-07-23 13:05:10 -0400460 select FSL_MEMAC
Tom Rini2d752b02022-07-23 13:05:06 -0400461 help
462 SoC has FMan v3 with mEMAC
463
Tom Rini3a581af2022-12-02 16:42:21 -0500464config FSL_FM_10GEC_REGULAR_NOTATION
465 bool
466 help
467 On SoCs T4240, T2080, LS1043A, etc, the notation between 10GEC and
468 MAC as below:
469 10GEC1->MAC9, 10GEC2->MAC10, 10GEC3->MAC1, 10GEC4->MAC2
470 While on SoCs T1024, etc, the notation between 10GEC and MAC as below:
471 10GEC1->MAC1, 10GEC2->MAC2
472 so we introduce CONFIG_FSL_FM_10GEC_REGULAR_NOTATION to identify the
473 new SoCs on which 10GEC enumeration is consistent with MAC
474 enumeration.
475
Tom Rini8dc1b172017-05-26 11:18:53 -0400476config FTMAC100
477 bool "Ftmac100 Ethernet Support"
Sergei Antonovadd396d2023-02-03 22:09:04 +0300478 select MII
Tom Rini8dc1b172017-05-26 11:18:53 -0400479 help
480 This MAC is present in Andestech SoCs.
481
Cédric Le Goaterf95de0b2018-10-29 07:06:31 +0100482config FTGMAC100
483 bool "Ftgmac100 Ethernet Support"
Cédric Le Goaterf95de0b2018-10-29 07:06:31 +0100484 select PHYLIB
Jerome Forissier620c02e2024-09-11 11:58:21 +0200485 depends on NET
Cédric Le Goaterf95de0b2018-10-29 07:06:31 +0100486 help
487 This driver supports the Faraday's FTGMAC100 Gigabit SoC
488 Ethernet controller that can be found on Aspeed SoCs (which
489 include NCSI).
490
491 It is fully compliant with IEEE 802.3 specification for
492 10/100 Mbps Ethernet and IEEE 802.3z specification for 1000
493 Mbps Ethernet and includes Reduced Media Independent
494 Interface (RMII) and Reduced Gigabit Media Independent
495 Interface (RGMII) interfaces. It adopts an AHB bus interface
496 and integrates a link list DMA engine with direct M-Bus
497 accesses for transmitting and receiving packets. It has
498 independent TX/RX fifos, supports half and full duplex (1000
499 Mbps mode only supports full duplex), flow control for full
500 duplex and backpressure for half duplex.
501
502 The FTGMAC100 also implements IP, TCP, UDP checksum offloads
503 and supports IEEE 802.1Q VLAN tag insertion and removal. It
504 offers high-priority transmit queue for QoS and CoS
505 applications.
506
Tom Rini0d121ad2022-06-25 11:02:36 -0400507config SYS_DISCOVER_PHY
508 bool
Cédric Le Goaterf95de0b2018-10-29 07:06:31 +0100509
Angelo Durgehello080bcc52019-11-15 23:54:17 +0100510config MCFFEC
511 bool "ColdFire Ethernet Support"
Angelo Durgehello080bcc52019-11-15 23:54:17 +0100512 select PHYLIB
Tom Rini0d121ad2022-06-25 11:02:36 -0400513 select SYS_DISCOVER_PHY
Angelo Durgehello080bcc52019-11-15 23:54:17 +0100514 help
515 This driver supports the network interface units in the
516 ColdFire family.
517
Tom Rini7675a522022-06-25 11:02:35 -0400518config SYS_UNIFY_CACHE
519 depends on MCFFEC
520 bool "Invalidate icache during ethernet operations"
521
Marek Vasutdf4c4832020-03-25 19:08:59 +0100522config KS8851_MLL
523 bool "Microchip KS8851-MLL controller driver"
524 help
525 The Microchip KS8851 parallel bus external ethernet interface chip.
526
Tim Harvey668e2052021-06-30 16:50:08 -0700527config KSZ9477
528 bool "Microchip KSZ9477 I2C controller driver"
529 depends on DM_DSA && DM_I2C
530 help
531 This driver implements a DSA switch driver for the KSZ9477 family
532 of GbE switches using the I2C interface.
533
Joel Stanley3167b4d2022-09-26 15:35:58 +0930534config LITEETH
535 bool "LiteX LiteEth Ethernet MAC"
536 help
537 Driver for the LiteEth Ethernet MAC from LiteX.
538
Tim Harvey01e7dd02022-11-30 09:42:50 -0800539config MV88E6XXX
540 bool "Marvell MV88E6xxx Ethernet switch DSA driver"
541 depends on DM_DSA && DM_MDIO
542 help
543 This driver implements a DSA switch driver for the MV88E6xxx family
544 of Ethernet switches using the MDIO interface
545
Chris Packhamed52ea52018-05-03 23:00:35 +1200546config MVGBE
547 bool "Marvell Orion5x/Kirkwood network interface support"
Trevor Woernerbb0fb4c2020-05-06 08:02:40 -0400548 depends on ARCH_KIRKWOOD || ARCH_ORION5X
Tom Rini94633c32022-08-02 07:33:47 -0400549 select PHYLIB
Chris Packhamed52ea52018-05-03 23:00:35 +1200550 help
551 This driver supports the network interface units in the
552 Marvell Orion5x and Kirkwood SoCs
553
Chris Packham7654f622017-08-21 20:17:03 +1200554config MVNETA
Miquel Raynale7ab2cc2017-12-28 15:43:09 +0100555 bool "Marvell Armada XP/385/3700 network interface support"
Chris Packhamaaee5722022-11-05 17:23:56 +1300556 depends on ARMADA_XP || ARMADA_38X || ARMADA_3700 || ALLEYCAT_5
Chris Packham7654f622017-08-21 20:17:03 +1200557 select PHYLIB
Marek Behúnda84e402022-04-27 12:41:46 +0200558 select DM_MDIO
Chris Packham7654f622017-08-21 20:17:03 +1200559 help
560 This driver supports the network interface units in the
Miquel Raynale7ab2cc2017-12-28 15:43:09 +0100561 Marvell ARMADA XP, ARMADA 38X and ARMADA 3700 SoCs
Chris Packham7654f622017-08-21 20:17:03 +1200562
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100563config MVPP2
Stefan Roesee7935c42017-02-15 11:42:59 +0100564 bool "Marvell Armada 375/7K/8K network interface support"
565 depends on ARMADA_375 || ARMADA_8K
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100566 select PHYLIB
Nevo Hed17caaf82019-08-15 18:08:45 -0400567 select MVMDIO
568 select DM_MDIO
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100569 help
570 This driver supports the network interface units in the
Stefan Roesee7935c42017-02-15 11:42:59 +0100571 Marvell ARMADA 375, 7K and 8K SoCs.
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100572
Wenyou Yangebcb40a2016-11-02 10:06:55 +0800573config MACB
574 bool "Cadence MACB/GEM Ethernet Interface"
Wenyou Yangebcb40a2016-11-02 10:06:55 +0800575 select PHYLIB
576 help
577 The Cadence MACB ethernet interface is found on many Atmel
578 AT91 and SAMA5 parts. This driver also supports the Cadence
579 GEM (Gigabit Ethernet MAC) found in some ARM SoC devices.
580 Say Y to include support for the MACB/GEM chip.
581
Wilson Lee4bf56912017-08-22 20:25:07 -0700582config MACB_ZYNQ
583 bool "Cadence MACB/GEM Ethernet Interface for Xilinx Zynq"
584 depends on MACB
585 help
586 The Cadence MACB ethernet interface was used on Zynq platform.
587 Say Y to enable support for the MACB/GEM in Zynq chip.
588
Weijie Gao17ade702020-11-12 16:36:53 +0800589config MT7620_ETH
590 bool "MediaTek MT7620 Ethernet Interface"
591 depends on SOC_MT7620
592 select PHYLIB
593 select DM_RESET
594 select DM_GPIO
595 select CLK
596 help
597 The MediaTek MT7620 ethernet interface is used on MT7620 based
598 boards. It has a built-in switch with two configurable ports which
599 can connect to external PHY/MACs.
600
Stefan Roesec895ef42018-10-26 14:53:27 +0200601config MT7628_ETH
602 bool "MediaTek MT7628 Ethernet Interface"
Weijie Gao16b94902019-04-30 11:13:58 +0800603 depends on SOC_MT7628
Weijie Gaof0793212019-09-25 17:45:33 +0800604 select PHYLIB
Stefan Roesec895ef42018-10-26 14:53:27 +0200605 help
606 The MediaTek MT7628 ethernet interface is used on MT7628 and
607 MT7688 based boards.
608
Jim Liu52503d82022-05-17 16:28:11 +0800609config NET_NPCM750
610 bool "Nuvoton NPCM750 Ethernet MAC"
611 help
612 support NPCM750 EMAC
613
Stefan Roese8e0f8ef2022-04-07 09:11:52 +0200614config NET_OCTEON
615 bool "MIPS Octeon ethernet support"
616 depends on ARCH_OCTEON
617 help
618 You must select Y to enable network device support for
619 MIPS Octeon SoCs. If unsure, say n
620
Suneel Garapati0008e9a2020-08-26 14:37:33 +0200621config NET_OCTEONTX
622 bool "OcteonTX Ethernet support"
623 depends on ARCH_OCTEONTX
624 depends on PCI_SRIOV
625 help
626 You must select Y to enable network device support for
627 OcteonTX SoCs. If unsure, say n
Suneel Garapati4684a7a2020-08-26 14:37:42 +0200628
629config NET_OCTEONTX2
630 bool "OcteonTX2 Ethernet support"
631 depends on ARCH_OCTEONTX2
632 select OCTEONTX2_CGX_INTF
633 help
634 You must select Y to enable network device support for
635 OcteonTX2 SoCs. If unsure, say n
636
Suneel Garapati0008e9a2020-08-26 14:37:33 +0200637config OCTEONTX_SMI
638 bool "OcteonTX SMI Device support"
639 depends on ARCH_OCTEONTX || ARCH_OCTEONTX2
640 help
641 You must select Y to enable SMI controller support for
642 OcteonTX or OcteonTX2 SoCs. If unsure, say n
643
Suneel Garapati4684a7a2020-08-26 14:37:42 +0200644config OCTEONTX2_CGX_INTF
645 bool "OcteonTX2 CGX ATF interface support"
646 depends on ARCH_OCTEONTX2
647 default y if ARCH_OCTEONTX2
648 help
649 You must select Y to enable CGX ATF interface support for
650 OcteonTX2 SoCs. If unsure, say n
651
Bin Mengb68fe152015-08-27 22:25:58 -0700652config PCH_GBE
653 bool "Intel Platform Controller Hub EG20T GMAC driver"
Bin Mengb68fe152015-08-27 22:25:58 -0700654 select PHYLIB
655 help
656 This MAC is present in Intel Platform Controller Hub EG20T. It
657 supports 10/100/1000 Mbps operation.
658
Mylène Josserand751b0be2017-04-02 12:59:08 +0200659config RGMII
660 bool "Enable RGMII"
661 help
662 Enable the support of the Reduced Gigabit Media-Independent
663 Interface (RGMII).
664
Adam Fordd7869b212018-07-20 23:03:57 -0500665config MII
666 bool "Enable MII"
667 help
668 Enable support of the Media-Independent Interface (MII)
669
Tom Rini03d14cc2022-03-18 08:38:22 -0400670config RMII
671 bool "Enable RMII"
672 help
673 Enable support of the Reduced Media-Independent Interface (MII)
674
Marek Vasutd789a822020-05-17 18:14:17 +0200675config PCNET
676 bool "AMD PCnet series Ethernet controller driver"
677 help
678 This driver supports AMD PCnet series fast ethernet family of
679 PCI chipsets/adapters.
680
Heiko Schocher6e31c622020-02-06 09:48:16 +0100681source "drivers/net/qe/Kconfig"
682
Bin Meng86e9dc82016-03-21 06:47:41 -0700683config RTL8139
684 bool "Realtek 8139 series Ethernet controller driver"
685 help
686 This driver supports Realtek 8139 series fast ethernet family of
687 PCI chipsets/adapters.
688
Bin Meng0764f242016-03-21 06:47:42 -0700689config RTL8169
690 bool "Realtek 8169 series Ethernet controller driver"
Eugen Hristev89d8c562023-05-17 13:41:24 +0300691 depends on PCI
Bin Meng0764f242016-03-21 06:47:42 -0700692 help
693 This driver supports Realtek 8169 series gigabit ethernet family of
694 PCI/PCIe chipsets/adapters.
695
Vladimir Olteanf24b6662021-09-29 18:04:41 +0300696config SJA1105
697 bool "NXP SJA1105 Ethernet switch family driver"
698 depends on DM_DSA && DM_SPI
699 select BITREVERSE
700 help
701 This is the driver for the NXP SJA1105 automotive Ethernet switch
702 family. These are 5-port devices and are managed over an SPI
703 interface. Probing is handled based on OF bindings. The driver
704 supports the following revisions:
705 - SJA1105E (Gen. 1, No TT-Ethernet)
706 - SJA1105T (Gen. 1, TT-Ethernet)
707 - SJA1105P (Gen. 2, No SGMII, No TT-Ethernet)
708 - SJA1105Q (Gen. 2, No SGMII, TT-Ethernet)
709 - SJA1105R (Gen. 2, SGMII, No TT-Ethernet)
710 - SJA1105S (Gen. 2, SGMII, TT-Ethernet)
711
Adam Ford8daec2d2017-09-05 15:20:44 -0500712config SMC911X
713 bool "SMSC LAN911x and LAN921x controller driver"
714
Adam Ford8daec2d2017-09-05 15:20:44 -0500715config SMC911X_32_BIT
Andre Przywaraf26c9d72021-06-28 14:30:30 +0100716 bool "Enable SMC911X 32-bit interface"
Tom Rini94633c32022-08-02 07:33:47 -0400717 depends on SMC911X
Adam Ford8daec2d2017-09-05 15:20:44 -0500718 help
Andre Przywaraf26c9d72021-06-28 14:30:30 +0100719 Define this if data bus is 32 bits. If your processor use a
720 narrower 16 bit bus or cannot convert one 32 bit word to two 16 bit
721 words, leave this to "n".
Adam Ford8daec2d2017-09-05 15:20:44 -0500722
Mylène Josserand4d43d062017-04-02 12:59:03 +0200723config SUN7I_GMAC
724 bool "Enable Allwinner GMAC Ethernet support"
725 help
726 Enable the support for Sun7i GMAC Ethernet controller
727
Stefan Mavrodievaba39242017-11-03 08:56:51 +0200728config SUN7I_GMAC_FORCE_TXERR
729 bool "Force PA17 as gmac function"
730 depends on SUN7I_GMAC
731 help
732 Some ethernet phys needs TXERR control. Since the GMAC
733 doesn't have such signal, setting PA17 as GMAC function
734 makes the pin output low, which enables data transmission.
735
Mylène Josserandabc3e4d2017-04-02 12:59:07 +0200736config SUN4I_EMAC
737 bool "Allwinner Sun4i Ethernet MAC support"
Artturi Alm6270a3f2017-11-08 05:08:58 +0200738 select PHYLIB
Mylène Josserandabc3e4d2017-04-02 12:59:07 +0200739 help
740 This driver supports the Allwinner based SUN4I Ethernet MAC.
741
Amit Singh Tomara29710c2016-07-06 17:59:44 +0530742config SUN8I_EMAC
743 bool "Allwinner Sun8i Ethernet MAC support"
Amit Singh Tomara29710c2016-07-06 17:59:44 +0530744 select PHYLIB
Philipp Tomsich449ea2c2017-03-26 18:50:23 +0200745 select PHY_GIGE
Amit Singh Tomara29710c2016-07-06 17:59:44 +0530746 help
747 This driver supports the Allwinner based SUN8I/SUN50I Ethernet MAC.
748 It can be found in H3/A64/A83T based SoCs and compatible with both
Tom Rini7131d2d2017-02-20 09:38:03 -0500749 External and Internal PHYs.
Amit Singh Tomara29710c2016-07-06 17:59:44 +0530750
Nobuhiro Iwamatsudcd18ea2017-12-01 16:08:03 +0900751config SH_ETHER
752 bool "Renesas SH Ethernet MAC"
753 select PHYLIB
Marek Vasut92c312c2023-05-31 00:51:29 +0200754 select PHY_ETHERNET_ID
Nobuhiro Iwamatsudcd18ea2017-12-01 16:08:03 +0900755 help
756 This driver supports the Ethernet for Renesas SH and ARM SoCs.
757
Grygorii Strashkoffad5fa2018-10-31 16:21:39 -0500758source "drivers/net/ti/Kconfig"
Adam Fordd7869b212018-07-20 23:03:57 -0500759
Marek Vasuta410f132020-06-20 17:43:29 +0200760config TULIP
761 bool "DEC Tulip DC2114x Ethernet support"
Marek Vasuta410f132020-06-20 17:43:29 +0200762 help
763 This driver supports DEC DC2114x Fast ethernet chips.
764
Michal Simek338a5f22015-12-09 16:54:42 +0100765config XILINX_AXIEMAC
Michal Simek338a5f22015-12-09 16:54:42 +0100766 select PHYLIB
767 select MII
768 bool "Xilinx AXI Ethernet"
769 help
770 This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
771
Ashok Reddy Soma258ce792021-07-02 04:40:34 -0600772config XILINX_AXIMRMAC
Tom Rini94633c32022-08-02 07:33:47 -0400773 depends on ARCH_VERSAL
Ashok Reddy Soma258ce792021-07-02 04:40:34 -0600774 bool "Xilinx AXI MRMAC"
775 help
776 MRMAC is a high performance, low latency, adaptable Ethernet
777 integrated hard IP. This can be configured up to four ports with MAC
778 rates from 10GE to 100GE. This could be present in some of the Xilinx
779 Versal designs.
780
Tom Rinibe3bea22022-11-19 18:45:39 -0500781config VSC7385_ENET
782 bool "Vitesse 7385 Switch Firmware Upload driver"
783
Michal Simek3229c862015-12-11 09:41:49 +0100784config XILINX_EMACLITE
Michal Simek3229c862015-12-11 09:41:49 +0100785 select PHYLIB
786 select MII
787 bool "Xilinx Ethernetlite"
788 help
789 This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
790
Michal Simek596e5782015-11-30 14:34:52 +0100791config ZYNQ_GEM
Michal Simek7bccc752015-12-11 09:14:31 +0100792 select PHYLIB
Michal Simek596e5782015-11-30 14:34:52 +0100793 bool "Xilinx Ethernet GEM"
794 help
Michal Simekc9428102015-12-09 16:53:52 +0100795 This MAC is present in Xilinx Zynq and ZynqMP SoCs.
Michal Simek596e5782015-11-30 14:34:52 +0100796
Purna Chandra Mandal23e75782016-01-28 15:30:21 +0530797config PIC32_ETH
798 bool "Microchip PIC32 Ethernet Support"
Tom Rini94633c32022-08-02 07:33:47 -0400799 depends on MACH_PIC32
Purna Chandra Mandal23e75782016-01-28 15:30:21 +0530800 select PHYLIB
801 help
802 This driver implements 10/100 Mbps Ethernet and MAC layer for
803 Microchip PIC32 microcontrollers.
804
Sjoerd Simons0125bcf2017-01-11 11:46:11 +0100805config GMAC_ROCKCHIP
806 bool "Rockchip Synopsys Designware Ethernet MAC"
Tom Rini94633c32022-08-02 07:33:47 -0400807 depends on ETH_DESIGNWARE
Sjoerd Simons0125bcf2017-01-11 11:46:11 +0100808 help
809 This driver provides Rockchip SoCs network support based on the
810 Synopsys Designware driver.
811
Phong Hoang07679b12023-03-20 21:05:04 +0100812config RENESAS_ETHER_SWITCH
813 bool "Renesas Ethernet Switch support"
814 depends on DM_ETH && R8A779F0
815 select PHYLIB
816 help
817 This driver implements support for the Renesas Ethernet Switch
818 which is available on R-Car S4 SoC (r8a779f0).
819
Marek Vasut8ae51b62017-05-13 15:54:28 +0200820config RENESAS_RAVB
821 bool "Renesas Ethernet AVB MAC"
Hai Phamc2fbaaf2023-04-07 17:12:17 +0200822 depends on RCAR_64
Marek Vasut8ae51b62017-05-13 15:54:28 +0200823 select PHYLIB
Marek Vasut5c80edb2023-05-31 00:51:28 +0200824 select PHY_ETHERNET_ID
Marek Vasut8ae51b62017-05-13 15:54:28 +0200825 help
826 This driver implements support for the Ethernet AVB block in
827 Renesas M3 and H3 SoCs.
828
Christophe Leroyfad51ac2017-07-06 10:33:23 +0200829config MPC8XX_FEC
830 bool "Fast Ethernet Controller on MPC8XX"
Christophe Leroyee1e6002018-03-16 17:20:41 +0100831 depends on MPC8xx
Christophe Leroyfad51ac2017-07-06 10:33:23 +0200832 select MII
Tom Rini0d121ad2022-06-25 11:02:36 -0400833 select SYS_DISCOVER_PHY
Christophe Leroyfad51ac2017-07-06 10:33:23 +0200834 help
835 This driver implements support for the Fast Ethernet Controller
836 on MPC8XX
837
Kunihiko Hayashia8927792018-05-24 19:24:37 +0900838config SNI_AVE
839 bool "Socionext AVE Ethernet support"
Tom Rini94633c32022-08-02 07:33:47 -0400840 depends on ARCH_UNIPHIER
Kunihiko Hayashia8927792018-05-24 19:24:37 +0900841 select PHYLIB
842 select SYSCON
843 select REGMAP
844 help
845 This driver implements support for the Socionext AVE Ethernet
846 controller, as found on the Socionext UniPhier family.
847
Jassi Brareab447b2021-06-04 18:44:38 +0900848config SNI_NETSEC
849 bool "Socionext NETSEC Ethernet support"
Tom Rini94633c32022-08-02 07:33:47 -0400850 depends on SYNQUACER_SPI
Jassi Brareab447b2021-06-04 18:44:38 +0900851 select PHYLIB
852 help
853 This driver implements support for the Socionext SynQuacer NETSEC
854 ethernet controller, as found on the Socionext SynQuacer family.
855
Horatiu Vultur4c661572019-01-31 15:30:33 +0100856source "drivers/net/mscc_eswitch/Kconfig"
Gregory CLEMENTc8546162019-01-17 17:07:13 +0100857
Christophe Leroyfad51ac2017-07-06 10:33:23 +0200858config ETHER_ON_FEC1
859 bool "FEC1"
860 depends on MPC8XX_FEC
861 default y
862
863config FEC1_PHY
864 int "FEC1 PHY"
865 depends on ETHER_ON_FEC1
866 default -1
867 help
868 Define to the hardcoded PHY address which corresponds
869 to the given FEC; i. e.
870 #define CONFIG_FEC1_PHY 4
871 means that the PHY with address 4 is connected to FEC1
872
873 When set to -1, means to probe for first available.
874
875config PHY_NORXERR
876 bool "PHY_NORXERR"
877 depends on ETHER_ON_FEC1
Christophe Leroyfad51ac2017-07-06 10:33:23 +0200878 help
879 The PHY does not have a RXERR line (RMII only).
880 (so program the FEC to ignore it).
881
882config ETHER_ON_FEC2
883 bool "FEC2"
884 depends on MPC8XX_FEC && MPC885
885 default y
886
887config FEC2_PHY
888 int "FEC2 PHY"
889 depends on ETHER_ON_FEC2
890 default -1
891 help
892 Define to the hardcoded PHY address which corresponds
893 to the given FEC; i. e.
894 #define CONFIG_FEC1_PHY 4
895 means that the PHY with address 4 is connected to FEC1
896
897 When set to -1, means to probe for first available.
898
899config FEC2_PHY_NORXERR
900 bool "PHY_NORXERR"
901 depends on ETHER_ON_FEC2
Christophe Leroyfad51ac2017-07-06 10:33:23 +0200902 help
903 The PHY does not have a RXERR line (RMII only).
904 (so program the FEC to ignore it).
905
Ahmed Mansour541d5762017-12-15 16:01:01 -0500906config SYS_DPAA_QBMAN
907 bool "Device tree fixup for QBMan on freescale SOCs"
Simon Glass09eaa402024-09-29 19:49:27 -0600908 depends on ARM || PPC
Ahmed Mansour541d5762017-12-15 16:01:01 -0500909 default y if ARCH_B4860 || \
910 ARCH_B4420 || \
911 ARCH_P1023 || \
912 ARCH_P2041 || \
Ahmed Mansour541d5762017-12-15 16:01:01 -0500913 ARCH_T1024 || \
914 ARCH_T1040 || \
915 ARCH_T1042 || \
916 ARCH_T2080 || \
Ahmed Mansour541d5762017-12-15 16:01:01 -0500917 ARCH_T4240 || \
Ahmed Mansour541d5762017-12-15 16:01:01 -0500918 ARCH_P4080 || \
919 ARCH_P3041 || \
920 ARCH_P5040 || \
Ahmed Mansour541d5762017-12-15 16:01:01 -0500921 ARCH_LS1043A || \
922 ARCH_LS1046A
923 help
924 QBman fixups to allow deep sleep in DPAA 1 SOCs
925
Tom Riniff4e87c2022-07-31 21:08:29 -0400926config SYS_FSL_QMAN_V3
927 bool # QMAN version 3
928 depends on SYS_DPAA_QBMAN
929
Mario Six17151052018-03-28 14:38:18 +0200930config TSEC_ENET
931 select PHYLIB
932 bool "Enable Three-Speed Ethernet Controller"
933 help
934 This driver implements support for the (Enhanced) Three-Speed
935 Ethernet Controller found on Freescale SoCs.
936
Weijie Gao23f17162018-12-20 16:12:53 +0800937config MEDIATEK_ETH
938 bool "MediaTek Ethernet GMAC Driver"
Weijie Gao23f17162018-12-20 16:12:53 +0800939 select PHYLIB
940 select DM_GPIO
941 select DM_RESET
942 help
943 This Driver support MediaTek Ethernet GMAC
944 Say Y to enable support for the MediaTek Ethernet GMAC.
945
Yang Xiwen9d8f78a2023-08-23 01:03:42 +0800946config HIFEMAC_ETH
947 bool "HiSilicon Fast Ethernet Controller"
948 select DM_CLK
949 select DM_RESET
950 select PHYLIB
951 help
952 This driver supports HIFEMAC Ethernet controller found on
953 HiSilicon SoCs.
954
Yang Xiwen6b5c8d92023-08-23 01:03:43 +0800955config HIFEMAC_MDIO
956 bool "HiSilicon Fast Ethernet Controller MDIO interface"
957 depends on DM_MDIO
958 select DM_CLK
959 help
960 This driver supports the internal MDIO interface of HIFEMAC
961 Ethernet controller.
962
Shawn Guo1d5b5d22019-03-20 15:32:40 +0800963config HIGMACV300_ETH
964 bool "HiSilicon Gigabit Ethernet Controller"
Shawn Guo1d5b5d22019-03-20 15:32:40 +0800965 select DM_RESET
966 select PHYLIB
967 help
968 This driver supports HIGMACV300 Ethernet controller found on
969 HiSilicon SoCs.
970
Alex Marginean120b5ef2019-07-03 12:11:40 +0300971config FSL_ENETC
972 bool "NXP ENETC Ethernet controller"
Tom Rini94633c32022-08-02 07:33:47 -0400973 depends on DM_MDIO
Alex Marginean120b5ef2019-07-03 12:11:40 +0300974 help
975 This driver supports the NXP ENETC Ethernet controller found on some
976 of the NXP SoCs.
977
Alex Marginean74dd3832019-07-16 11:21:17 +0300978config MDIO_MUX_I2CREG
979 bool "MDIO MUX accessed as a register over I2C"
980 depends on DM_MDIO_MUX && DM_I2C
981 help
982 This driver is used for MDIO muxes driven by writing to a register of
983 an I2C chip. The board it was developed for uses a mux controlled by
984 on-board FPGA which in turn is accessed as a chip over I2C.
985
Robert Marko975151d2020-10-08 22:05:11 +0200986config MDIO_IPQ4019
987 bool "Qualcomm IPQ4019 MDIO interface support"
988 depends on DM_MDIO
989 help
990 This driver supports the MDIO interface found in Qualcomm
991 IPQ40xx series Soc-s.
992
Alex Marginean8bd37ce2019-07-25 12:33:19 +0300993config MVMDIO
994 bool "Marvell MDIO interface support"
995 depends on DM_MDIO
996 help
997 This driver supports the MDIO interface found in the network
998 interface units of the Marvell EBU SoCs (Kirkwood, Orion5x,
999 Dove, Armada 370, Armada XP, Armada 37xx and Armada7K/8K/8KP).
1000
1001 This driver is used by the MVPP2 and MVNETA drivers.
1002
Ioana Ciornei52e16ec2020-03-18 16:47:36 +02001003config FSL_LS_MDIO
1004 bool "NXP Layerscape MDIO interface support"
1005 depends on DM_MDIO
1006 help
1007 This driver supports the MDIO bus found on the Fman 10G Ethernet MACs and
1008 on the mEMAC (which supports both Clauses 22 and 45).
1009
Dylan Hung8b41ded2021-11-02 13:41:54 +08001010config ASPEED_MDIO
1011 bool "Aspeed MDIO interface support"
1012 depends on DM_MDIO
1013 help
1014 This driver supports the MDIO bus of Aspeed AST2600 SOC. The driver
1015 currently supports Clause 22.
1016
Neil Armstrong6c7bc9f2021-02-24 15:02:23 +01001017config MDIO_MUX_MMIOREG
1018 bool "MDIO MUX accessed as a MMIO register access"
1019 depends on DM_MDIO_MUX
1020 help
1021 This driver is used for MDIO muxes driven by writing to a register in
1022 the MMIO physical memory.
1023
Neil Armstrong8120ce12021-02-24 17:31:53 +01001024config MDIO_MUX_MESON_G12A
1025 bool "MDIO MUX for Amlogic Meson G12A SoCs"
1026 depends on DM_MDIO_MUX
1027 help
1028 This driver is used for the MDIO mux found on the Amlogic G12A & compatible
1029 SoCs.
1030
Neil Armstrongb4534dd2023-12-13 10:30:12 +01001031config MDIO_MUX_MESON_GXL
1032 bool "MDIO MUX for Amlogic Meson GXL SoCs"
1033 depends on DM_MDIO_MUX
1034 help
1035 This driver is used for the MDIO mux found on the Amlogic GXL & compatible
1036 SoCs.
1037
Joe Hershberger3ea143a2015-03-22 17:09:13 -05001038endif # NETDEVICES