Kconfig 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. config DM_ETH
  2. bool "Enable Driver Model for Ethernet drivers"
  3. depends on DM
  4. help
  5. Enable driver model for Ethernet.
  6. The eth_*() interface will be implemented by the UC_ETH class
  7. This is currently implemented in net/eth.c
  8. Look in include/net.h for details.
  9. config PHYLIB
  10. bool "Ethernet PHY (physical media interface) support"
  11. help
  12. Enable Ethernet PHY (physical media interface) support.
  13. config RTL8211X_PHY_FORCE_MASTER
  14. bool "Ethernet PHY RTL8211x: force 1000BASE-T master mode"
  15. depends on PHYLIB
  16. help
  17. Force master mode for 1000BASE-T on RTl8211x PHYs (except for RTL8211F).
  18. This can work around link stability and data corruption issues on gigabit
  19. links which can occur in slave mode on certain PHYs, e.g. on the
  20. RTL8211C(L).
  21. Please note that two directly connected devices (i.e. via crossover cable)
  22. will not be able to establish a link between each other if they both force
  23. master mode. Multiple devices forcing master mode when connected by a
  24. network switch do not pose a problem as the switch configures its affected
  25. ports into slave mode.
  26. This option only affects gigabit links. If you must establish a direct
  27. connection between two devices which both force master mode, try forcing
  28. the link speed to 100MBit/s.
  29. If unsure, say N.
  30. menuconfig NETDEVICES
  31. bool "Network device support"
  32. depends on NET
  33. default y if DM_ETH
  34. help
  35. You must select Y to enable any network device support
  36. Generally if you have any networking support this is a given
  37. If unsure, say Y
  38. if NETDEVICES
  39. config AG7XXX
  40. bool "Atheros AG7xxx Ethernet MAC support"
  41. depends on DM_ETH && ARCH_ATH79
  42. select PHYLIB
  43. help
  44. This driver supports the Atheros AG7xxx Ethernet MAC. This MAC is
  45. present in the Atheros AR7xxx, AR9xxx and QCA9xxx MIPS chips.
  46. config ALTERA_TSE
  47. bool "Altera Triple-Speed Ethernet MAC support"
  48. depends on DM_ETH
  49. select PHYLIB
  50. help
  51. This driver supports the Altera Triple-Speed (TSE) Ethernet MAC.
  52. Please find details on the "Triple-Speed Ethernet MegaCore Function
  53. Resource Center" of Altera.
  54. config E1000
  55. bool "Intel PRO/1000 Gigabit Ethernet support"
  56. help
  57. This driver supports Intel(R) PRO/1000 gigabit ethernet family of
  58. adapters. For more information on how to identify your adapter, go
  59. to the Adapter & Driver ID Guide at:
  60. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  61. config E1000_SPI_GENERIC
  62. bool "Allow access to the Intel 8257x SPI bus"
  63. depends on E1000
  64. help
  65. Allow generic access to the SPI bus on the Intel 8257x, for
  66. example with the "sspi" command.
  67. config E1000_SPI
  68. bool "Enable SPI bus utility code"
  69. depends on E1000
  70. help
  71. Utility code for direct access to the SPI bus on Intel 8257x.
  72. This does not do anything useful unless you set at least one
  73. of CONFIG_CMD_E1000 or CONFIG_E1000_SPI_GENERIC.
  74. config CMD_E1000
  75. bool "Enable the e1000 command"
  76. depends on E1000
  77. help
  78. This enables the 'e1000' management command for E1000 devices. When
  79. used on devices with SPI support you can reprogram the EEPROM from
  80. U-Boot.
  81. config ETH_SANDBOX
  82. depends on DM_ETH && SANDBOX
  83. default y
  84. bool "Sandbox: Mocked Ethernet driver"
  85. help
  86. This driver simply responds with fake ARP replies and ping
  87. replies that are used to verify network stack functionality
  88. This driver is particularly useful in the test/dm/eth.c tests
  89. config ETH_SANDBOX_RAW
  90. depends on DM_ETH && SANDBOX
  91. default y
  92. bool "Sandbox: Bridge to Linux Raw Sockets"
  93. help
  94. This driver is a bridge from the bottom of the network stack
  95. in U-Boot to the RAW AF_PACKET API in Linux. This allows real
  96. network traffic to be tested from within sandbox. See
  97. board/sandbox/README.sandbox for more details.
  98. config ETH_DESIGNWARE
  99. bool "Synopsys Designware Ethernet MAC"
  100. select PHYLIB
  101. help
  102. This MAC is present in SoCs from various vendors. It supports
  103. 100Mbit and 1 Gbit operation. You must enable CONFIG_PHYLIB to
  104. provide the PHY (physical media interface).
  105. config ETHOC
  106. bool "OpenCores 10/100 Mbps Ethernet MAC"
  107. help
  108. This MAC is present in OpenRISC and Xtensa XTFPGA boards.
  109. config MVPP2
  110. bool "Marvell Armada 375 network interface support"
  111. depends on ARMADA_375
  112. select PHYLIB
  113. help
  114. This driver supports the network interface units in the
  115. Marvell ARMADA 375 SoC.
  116. config PCH_GBE
  117. bool "Intel Platform Controller Hub EG20T GMAC driver"
  118. depends on DM_ETH && DM_PCI
  119. select PHYLIB
  120. help
  121. This MAC is present in Intel Platform Controller Hub EG20T. It
  122. supports 10/100/1000 Mbps operation.
  123. config RTL8139
  124. bool "Realtek 8139 series Ethernet controller driver"
  125. help
  126. This driver supports Realtek 8139 series fast ethernet family of
  127. PCI chipsets/adapters.
  128. config RTL8169
  129. bool "Realtek 8169 series Ethernet controller driver"
  130. help
  131. This driver supports Realtek 8169 series gigabit ethernet family of
  132. PCI/PCIe chipsets/adapters.
  133. config SUN8I_EMAC
  134. bool "Allwinner Sun8i Ethernet MAC support"
  135. depends on DM_ETH
  136. select PHYLIB
  137. help
  138. This driver supports the Allwinner based SUN8I/SUN50I Ethernet MAC.
  139. It can be found in H3/A64/A83T based SoCs and compatible with both
  140. External and Internal PHY's.
  141. config XILINX_AXIEMAC
  142. depends on DM_ETH && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP)
  143. select PHYLIB
  144. select MII
  145. bool "Xilinx AXI Ethernet"
  146. help
  147. This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
  148. config XILINX_EMACLITE
  149. depends on DM_ETH && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP || MIPS)
  150. select PHYLIB
  151. select MII
  152. bool "Xilinx Ethernetlite"
  153. help
  154. This MAC is present in Xilinx Microblaze, Zynq and ZynqMP SoCs.
  155. config ZYNQ_GEM
  156. depends on DM_ETH && (ARCH_ZYNQ || ARCH_ZYNQMP)
  157. select PHYLIB
  158. bool "Xilinx Ethernet GEM"
  159. help
  160. This MAC is present in Xilinx Zynq and ZynqMP SoCs.
  161. config PIC32_ETH
  162. bool "Microchip PIC32 Ethernet Support"
  163. depends on DM_ETH && MACH_PIC32
  164. select PHYLIB
  165. help
  166. This driver implements 10/100 Mbps Ethernet and MAC layer for
  167. Microchip PIC32 microcontrollers.
  168. endif # NETDEVICES