Kconfig 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. #
  2. # PHY Layer Configuration
  3. #
  4. menuconfig PHYLIB
  5. tristate "PHY Device support and infrastructure"
  6. depends on NETDEVICES
  7. help
  8. Ethernet controllers are usually attached to PHY
  9. devices. This option provides infrastructure for
  10. managing PHY devices.
  11. if PHYLIB
  12. comment "MII PHY device drivers"
  13. config AT803X_PHY
  14. tristate "Drivers for Atheros AT803X PHYs"
  15. ---help---
  16. Currently supports the AT8030 and AT8035 model
  17. config AMD_PHY
  18. tristate "Drivers for the AMD PHYs"
  19. ---help---
  20. Currently supports the am79c874
  21. config MARVELL_PHY
  22. tristate "Drivers for Marvell PHYs"
  23. ---help---
  24. Currently has a driver for the 88E1011S
  25. config DAVICOM_PHY
  26. tristate "Drivers for Davicom PHYs"
  27. ---help---
  28. Currently supports dm9161e and dm9131
  29. config QSEMI_PHY
  30. tristate "Drivers for Quality Semiconductor PHYs"
  31. ---help---
  32. Currently supports the qs6612
  33. config LXT_PHY
  34. tristate "Drivers for the Intel LXT PHYs"
  35. ---help---
  36. Currently supports the lxt970, lxt971
  37. config CICADA_PHY
  38. tristate "Drivers for the Cicada PHYs"
  39. ---help---
  40. Currently supports the cis8204
  41. config VITESSE_PHY
  42. tristate "Drivers for the Vitesse PHYs"
  43. ---help---
  44. Currently supports the vsc8244
  45. config SMSC_PHY
  46. tristate "Drivers for SMSC PHYs"
  47. ---help---
  48. Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs
  49. config BROADCOM_PHY
  50. tristate "Drivers for Broadcom PHYs"
  51. ---help---
  52. Currently supports the BCM5411, BCM5421, BCM5461, BCM54616S, BCM5464,
  53. BCM5481 and BCM5482 PHYs.
  54. config BCM63XX_PHY
  55. tristate "Drivers for Broadcom 63xx SOCs internal PHY"
  56. depends on BCM63XX
  57. ---help---
  58. Currently supports the 6348 and 6358 PHYs.
  59. config BCM7XXX_PHY
  60. tristate "Drivers for Broadcom 7xxx SOCs internal PHYs"
  61. ---help---
  62. Currently supports the BCM7366, BCM7439, BCM7445, and
  63. 40nm and 65nm generation of BCM7xxx Set Top Box SoCs.
  64. config BCM87XX_PHY
  65. tristate "Driver for Broadcom BCM8706 and BCM8727 PHYs"
  66. help
  67. Currently supports the BCM8706 and BCM8727 10G Ethernet PHYs.
  68. config ICPLUS_PHY
  69. tristate "Drivers for ICPlus PHYs"
  70. ---help---
  71. Currently supports the IP175C and IP1001 PHYs.
  72. config REALTEK_PHY
  73. tristate "Drivers for Realtek PHYs"
  74. ---help---
  75. Supports the Realtek 821x PHY.
  76. config NATIONAL_PHY
  77. tristate "Drivers for National Semiconductor PHYs"
  78. ---help---
  79. Currently supports the DP83865 PHY.
  80. config STE10XP
  81. tristate "Driver for STMicroelectronics STe10Xp PHYs"
  82. ---help---
  83. This is the driver for the STe100p and STe101p PHYs.
  84. config LSI_ET1011C_PHY
  85. tristate "Driver for LSI ET1011C PHY"
  86. ---help---
  87. Supports the LSI ET1011C PHY.
  88. config MICREL_PHY
  89. tristate "Driver for Micrel PHYs"
  90. ---help---
  91. Supports the KSZ9021, VSC8201, KS8001 PHYs.
  92. config DP83867_PHY
  93. tristate "Drivers for Texas Instruments DP83867 Gigabit PHY"
  94. ---help---
  95. Currently supports the DP83867 PHY.
  96. config FIXED_PHY
  97. tristate "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs"
  98. depends on PHYLIB
  99. ---help---
  100. Adds the platform "fixed" MDIO Bus to cover the boards that use
  101. PHYs that are not connected to the real MDIO bus.
  102. Currently tested with mpc866ads and mpc8349e-mitx.
  103. config MDIO_BITBANG
  104. tristate "Support for bitbanged MDIO buses"
  105. help
  106. This module implements the MDIO bus protocol in software,
  107. for use by low level drivers that export the ability to
  108. drive the relevant pins.
  109. If in doubt, say N.
  110. config MDIO_GPIO
  111. tristate "Support for GPIO lib-based bitbanged MDIO buses"
  112. depends on MDIO_BITBANG && GPIOLIB
  113. ---help---
  114. Supports GPIO lib-based MDIO busses.
  115. To compile this driver as a module, choose M here: the module
  116. will be called mdio-gpio.
  117. config MDIO_OCTEON
  118. tristate "Support for MDIO buses on Octeon SOCs"
  119. depends on CAVIUM_OCTEON_SOC
  120. default y
  121. help
  122. This module provides a driver for the Octeon MDIO busses.
  123. It is required by the Octeon Ethernet device drivers.
  124. If in doubt, say Y.
  125. config MDIO_SUN4I
  126. tristate "Allwinner sun4i MDIO interface support"
  127. depends on ARCH_SUNXI
  128. help
  129. This driver supports the MDIO interface found in the network
  130. interface units of the Allwinner SoC that have an EMAC (A10,
  131. A12, A10s, etc.)
  132. config MDIO_MOXART
  133. tristate "MOXA ART MDIO interface support"
  134. depends on ARCH_MOXART
  135. help
  136. This driver supports the MDIO interface found in the network
  137. interface units of the MOXA ART SoC
  138. config MDIO_BUS_MUX
  139. tristate
  140. depends on OF_MDIO
  141. help
  142. This module provides a driver framework for MDIO bus
  143. multiplexers which connect one of several child MDIO busses
  144. to a parent bus. Switching between child busses is done by
  145. device specific drivers.
  146. config MDIO_BUS_MUX_GPIO
  147. tristate "Support for GPIO controlled MDIO bus multiplexers"
  148. depends on OF_GPIO && OF_MDIO
  149. select MDIO_BUS_MUX
  150. help
  151. This module provides a driver for MDIO bus multiplexers that
  152. are controlled via GPIO lines. The multiplexer connects one of
  153. several child MDIO busses to a parent bus. Child bus
  154. selection is under the control of GPIO lines.
  155. config MDIO_BUS_MUX_MMIOREG
  156. tristate "Support for MMIO device-controlled MDIO bus multiplexers"
  157. depends on OF_MDIO
  158. select MDIO_BUS_MUX
  159. help
  160. This module provides a driver for MDIO bus multiplexers that
  161. are controlled via a simple memory-mapped device, like an FPGA.
  162. The multiplexer connects one of several child MDIO busses to a
  163. parent bus. Child bus selection is under the control of one of
  164. the FPGA's registers.
  165. Currently, only 8-bit registers are supported.
  166. config MDIO_BCM_UNIMAC
  167. tristate "Broadcom UniMAC MDIO bus controller"
  168. depends on HAS_IOMEM
  169. help
  170. This module provides a driver for the Broadcom UniMAC MDIO busses.
  171. This hardware can be found in the Broadcom GENET Ethernet MAC
  172. controllers as well as some Broadcom Ethernet switches such as the
  173. Starfighter 2 switches.
  174. endif # PHYLIB
  175. config MICREL_KS8995MA
  176. tristate "Micrel KS8995MA 5-ports 10/100 managed Ethernet switch"
  177. depends on SPI