Kconfig 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  1. source "drivers/net/phy/Kconfig"
  2. source "drivers/net/pfe_eth/Kconfig"
  3. source "drivers/net/fsl-mc/Kconfig"
  4. config DM_ETH
  5. bool "Enable Driver Model for Ethernet drivers"
  6. depends on DM
  7. help
  8. Enable driver model for Ethernet.
  9. The eth_*() interface will be implemented by the UCLASS_ETH class
  10. This is currently implemented in net/eth-uclass.c
  11. Look in include/net.h for details.
  12. config DM_MDIO
  13. bool "Enable Driver Model for MDIO devices"
  14. depends on DM_ETH && PHYLIB
  15. help
  16. Enable driver model for MDIO devices
  17. Adds UCLASS_MDIO DM class supporting MDIO buses that are probed as
  18. stand-alone devices. Useful in particular for systems that support
  19. DM_ETH and have a stand-alone MDIO hardware block shared by multiple
  20. Ethernet interfaces.
  21. This is currently implemented in net/mdio-uclass.c
  22. Look in include/miiphy.h for details.
  23. config DM_MDIO_MUX
  24. bool "Enable Driver Model for MDIO MUX devices"
  25. depends on DM_MDIO
  26. help
  27. Enable driver model for MDIO MUX devices
  28. Adds UCLASS_MDIO_MUX DM class supporting MDIO MUXes. Useful for
  29. systems that support DM_MDIO and integrate one or multiple muxes on
  30. the MDIO bus.
  31. This is currently implemented in net/mdio-mux-uclass.c
  32. Look in include/miiphy.h for details.
  33. config DM_DSA
  34. bool "Enable Driver Model for DSA switches"
  35. depends on DM_ETH && DM_MDIO
  36. depends on PHY_FIXED
  37. help
  38. Enable driver model for DSA switches
  39. Adds UCLASS_DSA class supporting switches that follow the Distributed
  40. Switch Architecture (DSA). These switches rely on the presence of a
  41. management switch port connected to an Ethernet controller capable of
  42. receiving frames from the switch. This host Ethernet controller is
  43. called the "master" Ethernet interface in DSA terminology.
  44. This is currently implemented in net/dsa-uclass.c, refer to
  45. include/net/dsa.h for API details.
  46. config MDIO_SANDBOX
  47. depends on DM_MDIO && SANDBOX
  48. default y
  49. bool "Sandbox: Mocked MDIO driver"
  50. help
  51. This driver implements dummy read/write/reset MDIO functions mimicking
  52. a bus with a single PHY.
  53. This driver is used in for testing in test/dm/mdio.c
  54. config MDIO_MUX_SANDBOX
  55. depends on DM_MDIO_MUX && MDIO_SANDBOX
  56. default y
  57. bool "Sandbox: Mocked MDIO-MUX driver"
  58. help
  59. This driver implements dummy select/deselect ops mimicking a MUX on
  60. the MDIO bux. It uses mdio_sandbox driver as parent MDIO.
  61. This driver is used for testing in test/dm/mdio.c
  62. config DM_ETH_PHY
  63. bool "Enable Driver Model for Ethernet Generic PHY drivers"
  64. depends on DM
  65. help
  66. Enable driver model for Ethernet Generic PHY .
  67. menuconfig NETDEVICES
  68. bool "Network device support"
  69. depends on NET
  70. default y if DM_ETH
  71. help
  72. You must select Y to enable any network device support
  73. Generally if you have any networking support this is a given
  74. If unsure, say Y
  75. if NETDEVICES
  76. config PHY_GIGE
  77. bool "Enable GbE PHY status parsing and configuration"
  78. help
  79. Enables support for parsing the status output and for
  80. configuring GbE PHYs (affects the inner workings of some
  81. commands and miiphyutil.c).
  82. config AG7XXX
  83. bool "Atheros AG7xxx Ethernet MAC support"
  84. depends on DM_ETH && ARCH_ATH79
  85. select PHYLIB
  86. help
  87. This driver supports the Atheros AG7xxx Ethernet MAC. This MAC is
  88. present in the Atheros AR7xxx, AR9xxx and QCA9xxx MIPS chips.
  89. config ALTERA_TSE
  90. bool "Altera Triple-Speed Ethernet MAC support"
  91. depends on DM_ETH
  92. select PHYLIB
  93. help
  94. This driver supports the Altera Triple-Speed (TSE) Ethernet MAC.
  95. Please find details on the "Triple-Speed Ethernet MegaCore Function
  96. Resource Center" of Altera.
  97. config BCM_SF2_ETH
  98. bool "Broadcom SF2 (Starfighter2) Ethernet support"
  99. select PHYLIB
  100. help
  101. This is an abstract framework which provides a generic interface
  102. to MAC and DMA management for multiple Broadcom SoCs such as
  103. Cygnus, NSP and bcm28155_ap platforms.
  104. config BCM_SF2_ETH_DEFAULT_PORT
  105. int "Broadcom SF2 (Starfighter2) Ethernet default port number"
  106. depends on BCM_SF2_ETH
  107. default 0
  108. help
  109. Default port number for the Starfighter2 ethernet driver.
  110. config BCM_SF2_ETH_GMAC
  111. bool "Broadcom SF2 (Starfighter2) GMAC Ethernet support"
  112. depends on BCM_SF2_ETH
  113. help
  114. This flag enables the ethernet support for Broadcom platforms with
  115. GMAC such as Cygnus. This driver is based on the framework provided
  116. by the BCM_SF2_ETH driver.
  117. Say Y to any bcmcygnus based platforms.
  118. config BCM6348_ETH
  119. bool "BCM6348 EMAC support"
  120. depends on DM_ETH && ARCH_BMIPS
  121. select DMA
  122. select DMA_CHANNELS
  123. select MII
  124. select PHYLIB
  125. help
  126. This driver supports the BCM6348 Ethernet MAC.
  127. config BCM6368_ETH
  128. bool "BCM6368 EMAC support"
  129. depends on DM_ETH && ARCH_BMIPS
  130. select DMA
  131. select MII
  132. help
  133. This driver supports the BCM6368 Ethernet MAC.
  134. config BCMGENET
  135. bool "BCMGENET V5 support"
  136. depends on DM_ETH
  137. select PHYLIB
  138. help
  139. This driver supports the BCMGENET Ethernet MAC.
  140. config CORTINA_NI_ENET
  141. bool "Cortina-Access Ethernet driver"
  142. depends on DM_ETH && CORTINA_PLATFORM
  143. help
  144. This driver supports the Cortina-Access Ethernet MAC for
  145. all supported CAxxxx SoCs.
  146. config DWC_ETH_QOS
  147. bool "Synopsys DWC Ethernet QOS device support"
  148. depends on DM_ETH
  149. select PHYLIB
  150. help
  151. This driver supports the Synopsys Designware Ethernet QOS (Quality
  152. Of Service) IP block. The IP supports many options for bus type,
  153. clocking/reset structure, and feature list.
  154. config DWC_ETH_QOS_IMX
  155. bool "Synopsys DWC Ethernet QOS device support for IMX"
  156. depends on DWC_ETH_QOS
  157. help
  158. The Synopsys Designware Ethernet QOS IP block with the specific
  159. configuration used in IMX soc.
  160. config DWC_ETH_QOS_STM32
  161. bool "Synopsys DWC Ethernet QOS device support for STM32"
  162. depends on DWC_ETH_QOS
  163. default y if ARCH_STM32MP
  164. help
  165. The Synopsys Designware Ethernet QOS IP block with the specific
  166. configuration used in STM32MP soc.
  167. config DWC_ETH_QOS_TEGRA186
  168. bool "Synopsys DWC Ethernet QOS device support for TEGRA186"
  169. depends on DWC_ETH_QOS
  170. default y if TEGRA186
  171. help
  172. The Synopsys Designware Ethernet QOS IP block with specific
  173. configuration used in NVIDIA's Tegra186 chip.
  174. config E1000
  175. bool "Intel PRO/1000 Gigabit Ethernet support"
  176. depends on (DM_ETH && DM_PCI) || !DM_ETH
  177. help
  178. This driver supports Intel(R) PRO/1000 gigabit ethernet family of
  179. adapters. For more information on how to identify your adapter, go
  180. to the Adapter & Driver ID Guide at:
  181. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  182. config E1000_SPI_GENERIC
  183. bool "Allow access to the Intel 8257x SPI bus"
  184. depends on E1000
  185. help
  186. Allow generic access to the SPI bus on the Intel 8257x, for
  187. example with the "sspi" command.
  188. config E1000_SPI
  189. bool "Enable SPI bus utility code"
  190. depends on E1000
  191. help
  192. Utility code for direct access to the SPI bus on Intel 8257x.
  193. This does not do anything useful unless you set at least one
  194. of CONFIG_CMD_E1000 or CONFIG_E1000_SPI_GENERIC.
  195. config CMD_E1000
  196. bool "Enable the e1000 command"
  197. depends on E1000
  198. help
  199. This enables the 'e1000' management command for E1000 devices. When
  200. used on devices with SPI support you can reprogram the EEPROM from
  201. U-Boot.
  202. config EEPRO100
  203. bool "Intel PRO/100 82557/82559/82559ER Fast Ethernet support"
  204. help
  205. This driver supports Intel(R) PRO/100 82557/82559/82559ER fast
  206. ethernet family of adapters.
  207. config ETH_SANDBOX
  208. depends on DM_ETH && SANDBOX
  209. default y
  210. bool "Sandbox: Mocked Ethernet driver"
  211. help
  212. This driver simply responds with fake ARP replies and ping
  213. replies that are used to verify network stack functionality
  214. This driver is particularly useful in the test/dm/eth.c tests
  215. config ETH_SANDBOX_RAW
  216. depends on DM_ETH && SANDBOX
  217. default y
  218. bool "Sandbox: Bridge to Linux Raw Sockets"
  219. help
  220. This driver is a bridge from the bottom of the network stack
  221. in U-Boot to the RAW AF_PACKET API in Linux. This allows real
  222. network traffic to be tested from within sandbox. See
  223. doc/arch/index.rst for more details.
  224. config ETH_DESIGNWARE
  225. bool "Synopsys Designware Ethernet MAC"
  226. select PHYLIB
  227. imply ETH_DESIGNWARE_SOCFPGA if ARCH_SOCFPGA
  228. help
  229. This MAC is present in SoCs from various vendors. It supports
  230. 100Mbit and 1 Gbit operation. You must enable CONFIG_PHYLIB to
  231. provide the PHY (physical media interface).
  232. config ETH_DESIGNWARE_SOCFPGA
  233. select REGMAP
  234. select SYSCON
  235. bool "Altera SoCFPGA extras for Synopsys Designware Ethernet MAC"
  236. depends on DM_ETH && ETH_DESIGNWARE
  237. help
  238. The Altera SoCFPGA requires additional configuration of the
  239. Altera system manager to correctly interface with the PHY.
  240. This code handles those SoC specifics.
  241. config ETH_DESIGNWARE_S700
  242. bool "Actins S700 glue driver for Synopsys Designware Ethernet MAC"
  243. depends on DM_ETH && ETH_DESIGNWARE
  244. help
  245. This provides glue layer to use Synopsys Designware Ethernet MAC
  246. present on Actions S700 SoC.
  247. config ETHOC
  248. bool "OpenCores 10/100 Mbps Ethernet MAC"
  249. help
  250. This MAC is present in OpenRISC and Xtensa XTFPGA boards.
  251. config FEC_MXC_SHARE_MDIO
  252. bool "Share the MDIO bus for FEC controller"
  253. depends on FEC_MXC
  254. config FEC_MXC_MDIO_BASE
  255. hex "MDIO base address for the FEC controller"
  256. depends on FEC_MXC_SHARE_MDIO
  257. help
  258. This specifies the MDIO registers base address. It is used when
  259. two FEC controllers share MDIO bus.
  260. config FEC_MXC
  261. bool "FEC Ethernet controller"
  262. depends on MX28 || MX5 || MX6 || MX7 || IMX8 || IMX8M || VF610
  263. help
  264. This driver supports the 10/100 Fast Ethernet controller for
  265. NXP i.MX processors.
  266. config FMAN_ENET
  267. bool "Freescale FMan ethernet support"
  268. depends on ARM || PPC
  269. help
  270. This driver support the Freescale FMan Ethernet controller
  271. config FTMAC100
  272. bool "Ftmac100 Ethernet Support"
  273. help
  274. This MAC is present in Andestech SoCs.
  275. config FTGMAC100
  276. bool "Ftgmac100 Ethernet Support"
  277. depends on DM_ETH
  278. select PHYLIB
  279. help
  280. This driver supports the Faraday's FTGMAC100 Gigabit SoC
  281. Ethernet controller that can be found on Aspeed SoCs (which
  282. include NCSI).
  283. It is fully compliant with IEEE 802.3 specification for
  284. 10/100 Mbps Ethernet and IEEE 802.3z specification for 1000
  285. Mbps Ethernet and includes Reduced Media Independent
  286. Interface (RMII) and Reduced Gigabit Media Independent
  287. Interface (RGMII) interfaces. It adopts an AHB bus interface
  288. and integrates a link list DMA engine with direct M-Bus
  289. accesses for transmitting and receiving packets. It has
  290. independent TX/RX fifos, supports half and full duplex (1000
  291. Mbps mode only supports full duplex), flow control for full
  292. duplex and backpressure for half duplex.
  293. The FTGMAC100 also implements IP, TCP, UDP checksum offloads
  294. and supports IEEE 802.1Q VLAN tag insertion and removal. It
  295. offers high-priority transmit queue for QoS and CoS
  296. applications.
  297. config MCFFEC
  298. bool "ColdFire Ethernet Support"
  299. depends on DM_ETH
  300. select PHYLIB
  301. help
  302. This driver supports the network interface units in the
  303. ColdFire family.
  304. config FSLDMAFEC
  305. bool "ColdFire DMA Ethernet Support"
  306. depends on DM_ETH
  307. select PHYLIB
  308. help
  309. This driver supports the network interface units in the
  310. ColdFire family.
  311. config KS8851_MLL
  312. bool "Microchip KS8851-MLL controller driver"
  313. help
  314. The Microchip KS8851 parallel bus external ethernet interface chip.
  315. if KS8851_MLL
  316. if !DM_ETH
  317. config KS8851_MLL_BASEADDR
  318. hex "Microchip KS8851-MLL Base Address"
  319. help
  320. Define this to hold the physical address of the device (I/O space)
  321. endif #DM_ETH
  322. endif #KS8851_MLL
  323. config MVGBE
  324. bool "Marvell Orion5x/Kirkwood network interface support"
  325. depends on ARCH_KIRKWOOD || ARCH_ORION5X
  326. select PHYLIB if DM_ETH
  327. help
  328. This driver supports the network interface units in the
  329. Marvell Orion5x and Kirkwood SoCs
  330. config MVNETA
  331. bool "Marvell Armada XP/385/3700 network interface support"
  332. depends on ARMADA_XP || ARMADA_38X || ARMADA_3700
  333. select PHYLIB
  334. help
  335. This driver supports the network interface units in the
  336. Marvell ARMADA XP, ARMADA 38X and ARMADA 3700 SoCs
  337. config MVPP2
  338. bool "Marvell Armada 375/7K/8K network interface support"
  339. depends on ARMADA_375 || ARMADA_8K
  340. select PHYLIB
  341. select MVMDIO
  342. select DM_MDIO
  343. help
  344. This driver supports the network interface units in the
  345. Marvell ARMADA 375, 7K and 8K SoCs.
  346. config MACB
  347. bool "Cadence MACB/GEM Ethernet Interface"
  348. depends on DM_ETH
  349. select PHYLIB
  350. help
  351. The Cadence MACB ethernet interface is found on many Atmel
  352. AT91 and SAMA5 parts. This driver also supports the Cadence
  353. GEM (Gigabit Ethernet MAC) found in some ARM SoC devices.
  354. Say Y to include support for the MACB/GEM chip.
  355. config MACB_ZYNQ
  356. bool "Cadence MACB/GEM Ethernet Interface for Xilinx Zynq"
  357. depends on MACB
  358. help
  359. The Cadence MACB ethernet interface was used on Zynq platform.
  360. Say Y to enable support for the MACB/GEM in Zynq chip.
  361. config MT7620_ETH
  362. bool "MediaTek MT7620 Ethernet Interface"
  363. depends on SOC_MT7620
  364. select PHYLIB
  365. select DM_RESET
  366. select DM_GPIO
  367. select CLK
  368. help
  369. The MediaTek MT7620 ethernet interface is used on MT7620 based
  370. boards. It has a built-in switch with two configurable ports which
  371. can connect to external PHY/MACs.
  372. config MT7628_ETH
  373. bool "MediaTek MT7628 Ethernet Interface"
  374. depends on SOC_MT7628
  375. select PHYLIB
  376. help
  377. The MediaTek MT7628 ethernet interface is used on MT7628 and
  378. MT7688 based boards.
  379. config NET_OCTEONTX
  380. bool "OcteonTX Ethernet support"
  381. depends on ARCH_OCTEONTX
  382. depends on PCI_SRIOV
  383. help
  384. You must select Y to enable network device support for
  385. OcteonTX SoCs. If unsure, say n
  386. config NET_OCTEONTX2
  387. bool "OcteonTX2 Ethernet support"
  388. depends on ARCH_OCTEONTX2
  389. select OCTEONTX2_CGX_INTF
  390. help
  391. You must select Y to enable network device support for
  392. OcteonTX2 SoCs. If unsure, say n
  393. config OCTEONTX_SMI
  394. bool "OcteonTX SMI Device support"
  395. depends on ARCH_OCTEONTX || ARCH_OCTEONTX2
  396. help
  397. You must select Y to enable SMI controller support for
  398. OcteonTX or OcteonTX2 SoCs. If unsure, say n
  399. config OCTEONTX2_CGX_INTF
  400. bool "OcteonTX2 CGX ATF interface support"
  401. depends on ARCH_OCTEONTX2
  402. default y if ARCH_OCTEONTX2
  403. help
  404. You must select Y to enable CGX ATF interface support for
  405. OcteonTX2 SoCs. If unsure, say n
  406. config PCH_GBE
  407. bool "Intel Platform Controller Hub EG20T GMAC driver"
  408. depends on DM_ETH && DM_PCI
  409. select PHYLIB
  410. help
  411. This MAC is present in Intel Platform Controller Hub EG20T. It
  412. supports 10/100/1000 Mbps operation.
  413. config RGMII
  414. bool "Enable RGMII"
  415. help
  416. Enable the support of the Reduced Gigabit Media-Independent
  417. Interface (RGMII).
  418. config MII
  419. bool "Enable MII"
  420. help
  421. Enable support of the Media-Independent Interface (MII)
  422. config PCNET
  423. bool "AMD PCnet series Ethernet controller driver"
  424. help
  425. This driver supports AMD PCnet series fast ethernet family of
  426. PCI chipsets/adapters.
  427. source "drivers/net/qe/Kconfig"
  428. config RTL8139
  429. bool "Realtek 8139 series Ethernet controller driver"
  430. help
  431. This driver supports Realtek 8139 series fast ethernet family of
  432. PCI chipsets/adapters.
  433. config RTL8169
  434. bool "Realtek 8169 series Ethernet controller driver"
  435. help
  436. This driver supports Realtek 8169 series gigabit ethernet family of
  437. PCI/PCIe chipsets/adapters.
  438. config SMC911X
  439. bool "SMSC LAN911x and LAN921x controller driver"
  440. if SMC911X
  441. if !DM_ETH
  442. config SMC911X_BASE
  443. hex "SMC911X Base Address"
  444. help
  445. Define this to hold the physical address
  446. of the device (I/O space)
  447. endif #DM_ETH
  448. choice
  449. prompt "SMC911X bus width"
  450. default SMC911X_16_BIT
  451. config SMC911X_32_BIT
  452. bool "Enable 32-bit interface"
  453. config SMC911X_16_BIT
  454. bool "Enable 16-bit interface"
  455. help
  456. Define this if data bus is 16 bits. If your processor
  457. automatically converts one 32 bit word to two 16 bit
  458. words you may also try CONFIG_SMC911X_32_BIT.
  459. endchoice
  460. endif #SMC911X
  461. config SUN7I_GMAC
  462. bool "Enable Allwinner GMAC Ethernet support"
  463. help
  464. Enable the support for Sun7i GMAC Ethernet controller
  465. config SUN7I_GMAC_FORCE_TXERR
  466. bool "Force PA17 as gmac function"
  467. depends on SUN7I_GMAC
  468. help
  469. Some ethernet phys needs TXERR control. Since the GMAC
  470. doesn't have such signal, setting PA17 as GMAC function
  471. makes the pin output low, which enables data transmission.
  472. config SUN4I_EMAC
  473. bool "Allwinner Sun4i Ethernet MAC support"
  474. depends on DM_ETH
  475. select PHYLIB
  476. help
  477. This driver supports the Allwinner based SUN4I Ethernet MAC.
  478. config SUN8I_EMAC
  479. bool "Allwinner Sun8i Ethernet MAC support"
  480. depends on DM_ETH
  481. select PHYLIB
  482. select PHY_GIGE
  483. help
  484. This driver supports the Allwinner based SUN8I/SUN50I Ethernet MAC.
  485. It can be found in H3/A64/A83T based SoCs and compatible with both
  486. External and Internal PHYs.
  487. config SH_ETHER
  488. bool "Renesas SH Ethernet MAC"
  489. select PHYLIB
  490. help
  491. This driver supports the Ethernet for Renesas SH and ARM SoCs.
  492. source "drivers/net/ti/Kconfig"
  493. config TULIP
  494. bool "DEC Tulip DC2114x Ethernet support"
  495. depends on (DM_ETH && DM_PCI) || !DM_ETH
  496. help
  497. This driver supports DEC DC2114x Fast ethernet chips.
  498. config XILINX_AXIEMAC
  499. depends on DM_ETH
  500. select PHYLIB
  501. select MII
  502. bool "Xilinx AXI Ethernet"
  503. help
  504. This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
  505. config XILINX_EMACLITE
  506. depends on DM_ETH
  507. select PHYLIB
  508. select MII
  509. bool "Xilinx Ethernetlite"
  510. help
  511. This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
  512. config ZYNQ_GEM
  513. depends on DM_ETH
  514. select PHYLIB
  515. bool "Xilinx Ethernet GEM"
  516. help
  517. This MAC is present in Xilinx Zynq and ZynqMP SoCs.
  518. config PIC32_ETH
  519. bool "Microchip PIC32 Ethernet Support"
  520. depends on DM_ETH && MACH_PIC32
  521. select PHYLIB
  522. help
  523. This driver implements 10/100 Mbps Ethernet and MAC layer for
  524. Microchip PIC32 microcontrollers.
  525. config GMAC_ROCKCHIP
  526. bool "Rockchip Synopsys Designware Ethernet MAC"
  527. depends on DM_ETH && ETH_DESIGNWARE
  528. help
  529. This driver provides Rockchip SoCs network support based on the
  530. Synopsys Designware driver.
  531. config RENESAS_RAVB
  532. bool "Renesas Ethernet AVB MAC"
  533. depends on DM_ETH && RCAR_GEN3
  534. select PHYLIB
  535. help
  536. This driver implements support for the Ethernet AVB block in
  537. Renesas M3 and H3 SoCs.
  538. config MPC8XX_FEC
  539. bool "Fast Ethernet Controller on MPC8XX"
  540. depends on MPC8xx
  541. select MII
  542. help
  543. This driver implements support for the Fast Ethernet Controller
  544. on MPC8XX
  545. config SNI_AVE
  546. bool "Socionext AVE Ethernet support"
  547. depends on DM_ETH && ARCH_UNIPHIER
  548. select PHYLIB
  549. select SYSCON
  550. select REGMAP
  551. help
  552. This driver implements support for the Socionext AVE Ethernet
  553. controller, as found on the Socionext UniPhier family.
  554. source "drivers/net/mscc_eswitch/Kconfig"
  555. config ETHER_ON_FEC1
  556. bool "FEC1"
  557. depends on MPC8XX_FEC
  558. default y
  559. config FEC1_PHY
  560. int "FEC1 PHY"
  561. depends on ETHER_ON_FEC1
  562. default -1
  563. help
  564. Define to the hardcoded PHY address which corresponds
  565. to the given FEC; i. e.
  566. #define CONFIG_FEC1_PHY 4
  567. means that the PHY with address 4 is connected to FEC1
  568. When set to -1, means to probe for first available.
  569. config PHY_NORXERR
  570. bool "PHY_NORXERR"
  571. depends on ETHER_ON_FEC1
  572. default n
  573. help
  574. The PHY does not have a RXERR line (RMII only).
  575. (so program the FEC to ignore it).
  576. config ETHER_ON_FEC2
  577. bool "FEC2"
  578. depends on MPC8XX_FEC && MPC885
  579. default y
  580. config FEC2_PHY
  581. int "FEC2 PHY"
  582. depends on ETHER_ON_FEC2
  583. default -1
  584. help
  585. Define to the hardcoded PHY address which corresponds
  586. to the given FEC; i. e.
  587. #define CONFIG_FEC1_PHY 4
  588. means that the PHY with address 4 is connected to FEC1
  589. When set to -1, means to probe for first available.
  590. config FEC2_PHY_NORXERR
  591. bool "PHY_NORXERR"
  592. depends on ETHER_ON_FEC2
  593. default n
  594. help
  595. The PHY does not have a RXERR line (RMII only).
  596. (so program the FEC to ignore it).
  597. config SYS_DPAA_QBMAN
  598. bool "Device tree fixup for QBMan on freescale SOCs"
  599. depends on (ARM || PPC) && !SPL_BUILD
  600. default y if ARCH_B4860 || \
  601. ARCH_B4420 || \
  602. ARCH_P1023 || \
  603. ARCH_P2041 || \
  604. ARCH_T1023 || \
  605. ARCH_T1024 || \
  606. ARCH_T1040 || \
  607. ARCH_T1042 || \
  608. ARCH_T2080 || \
  609. ARCH_T2081 || \
  610. ARCH_T4240 || \
  611. ARCH_T4160 || \
  612. ARCH_P4080 || \
  613. ARCH_P3041 || \
  614. ARCH_P5040 || \
  615. ARCH_P5020 || \
  616. ARCH_LS1043A || \
  617. ARCH_LS1046A
  618. help
  619. QBman fixups to allow deep sleep in DPAA 1 SOCs
  620. config TSEC_ENET
  621. select PHYLIB
  622. bool "Enable Three-Speed Ethernet Controller"
  623. help
  624. This driver implements support for the (Enhanced) Three-Speed
  625. Ethernet Controller found on Freescale SoCs.
  626. config MEDIATEK_ETH
  627. bool "MediaTek Ethernet GMAC Driver"
  628. depends on DM_ETH
  629. select PHYLIB
  630. select DM_GPIO
  631. select DM_RESET
  632. help
  633. This Driver support MediaTek Ethernet GMAC
  634. Say Y to enable support for the MediaTek Ethernet GMAC.
  635. config HIGMACV300_ETH
  636. bool "HiSilicon Gigabit Ethernet Controller"
  637. depends on DM_ETH
  638. select DM_RESET
  639. select PHYLIB
  640. help
  641. This driver supports HIGMACV300 Ethernet controller found on
  642. HiSilicon SoCs.
  643. config FSL_ENETC
  644. bool "NXP ENETC Ethernet controller"
  645. depends on DM_PCI && DM_ETH && DM_MDIO
  646. help
  647. This driver supports the NXP ENETC Ethernet controller found on some
  648. of the NXP SoCs.
  649. config MDIO_MUX_I2CREG
  650. bool "MDIO MUX accessed as a register over I2C"
  651. depends on DM_MDIO_MUX && DM_I2C
  652. help
  653. This driver is used for MDIO muxes driven by writing to a register of
  654. an I2C chip. The board it was developed for uses a mux controlled by
  655. on-board FPGA which in turn is accessed as a chip over I2C.
  656. config MDIO_IPQ4019
  657. bool "Qualcomm IPQ4019 MDIO interface support"
  658. depends on DM_MDIO
  659. help
  660. This driver supports the MDIO interface found in Qualcomm
  661. IPQ40xx series Soc-s.
  662. config MVMDIO
  663. bool "Marvell MDIO interface support"
  664. depends on DM_MDIO
  665. help
  666. This driver supports the MDIO interface found in the network
  667. interface units of the Marvell EBU SoCs (Kirkwood, Orion5x,
  668. Dove, Armada 370, Armada XP, Armada 37xx and Armada7K/8K/8KP).
  669. This driver is used by the MVPP2 and MVNETA drivers.
  670. config FSL_LS_MDIO
  671. bool "NXP Layerscape MDIO interface support"
  672. depends on DM_MDIO
  673. help
  674. This driver supports the MDIO bus found on the Fman 10G Ethernet MACs and
  675. on the mEMAC (which supports both Clauses 22 and 45).
  676. endif # NETDEVICES