Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. #
  2. # PHY Layer Configuration
  3. #
  4. menuconfig PHYLIB
  5. tristate "PHY Device support and infrastructure"
  6. depends on !S390
  7. depends on NETDEVICES
  8. help
  9. Ethernet controllers are usually attached to PHY
  10. devices. This option provides infrastructure for
  11. managing PHY devices.
  12. if PHYLIB
  13. comment "MII PHY device drivers"
  14. config MARVELL_PHY
  15. tristate "Drivers for Marvell PHYs"
  16. ---help---
  17. Currently has a driver for the 88E1011S
  18. config DAVICOM_PHY
  19. tristate "Drivers for Davicom PHYs"
  20. ---help---
  21. Currently supports dm9161e and dm9131
  22. config QSEMI_PHY
  23. tristate "Drivers for Quality Semiconductor PHYs"
  24. ---help---
  25. Currently supports the qs6612
  26. config LXT_PHY
  27. tristate "Drivers for the Intel LXT PHYs"
  28. ---help---
  29. Currently supports the lxt970, lxt971
  30. config CICADA_PHY
  31. tristate "Drivers for the Cicada PHYs"
  32. ---help---
  33. Currently supports the cis8204
  34. config VITESSE_PHY
  35. tristate "Drivers for the Vitesse PHYs"
  36. ---help---
  37. Currently supports the vsc8244
  38. config SMSC_PHY
  39. tristate "Drivers for SMSC PHYs"
  40. ---help---
  41. Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs
  42. config BROADCOM_PHY
  43. tristate "Drivers for Broadcom PHYs"
  44. ---help---
  45. Currently supports the BCM5411, BCM5421, BCM5461, BCM5464, BCM5481
  46. and BCM5482 PHYs.
  47. config BCM63XX_PHY
  48. tristate "Drivers for Broadcom 63xx SOCs internal PHY"
  49. ---help---
  50. Currently supports the 6348 and 6358 PHYs.
  51. config ICPLUS_PHY
  52. tristate "Drivers for ICPlus PHYs"
  53. ---help---
  54. Currently supports the IP175C and IP1001 PHYs.
  55. config REALTEK_PHY
  56. tristate "Drivers for Realtek PHYs"
  57. ---help---
  58. Supports the Realtek 821x PHY.
  59. config NATIONAL_PHY
  60. tristate "Drivers for National Semiconductor PHYs"
  61. ---help---
  62. Currently supports the DP83865 PHY.
  63. config STE10XP
  64. tristate "Driver for STMicroelectronics STe10Xp PHYs"
  65. ---help---
  66. This is the driver for the STe100p and STe101p PHYs.
  67. config LSI_ET1011C_PHY
  68. tristate "Driver for LSI ET1011C PHY"
  69. ---help---
  70. Supports the LSI ET1011C PHY.
  71. config MICREL_PHY
  72. tristate "Driver for Micrel PHYs"
  73. ---help---
  74. Supports the KSZ9021, VSC8201, KS8001 PHYs.
  75. config FIXED_PHY
  76. bool "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs"
  77. depends on PHYLIB=y
  78. ---help---
  79. Adds the platform "fixed" MDIO Bus to cover the boards that use
  80. PHYs that are not connected to the real MDIO bus.
  81. Currently tested with mpc866ads and mpc8349e-mitx.
  82. config MDIO_BITBANG
  83. tristate "Support for bitbanged MDIO buses"
  84. help
  85. This module implements the MDIO bus protocol in software,
  86. for use by low level drivers that export the ability to
  87. drive the relevant pins.
  88. If in doubt, say N.
  89. config MDIO_GPIO
  90. tristate "Support for GPIO lib-based bitbanged MDIO buses"
  91. depends on MDIO_BITBANG && GENERIC_GPIO
  92. ---help---
  93. Supports GPIO lib-based MDIO busses.
  94. To compile this driver as a module, choose M here: the module
  95. will be called mdio-gpio.
  96. config MDIO_OCTEON
  97. tristate "Support for MDIO buses on Octeon SOCs"
  98. depends on CPU_CAVIUM_OCTEON
  99. default y
  100. help
  101. This module provides a driver for the Octeon MDIO busses.
  102. It is required by the Octeon Ethernet device drivers.
  103. If in doubt, say Y.
  104. endif # PHYLIB