Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. #
  2. # PHY Layer Configuration
  3. #
  4. menuconfig PHYLIB
  5. tristate "PHY Device support and infrastructure"
  6. depends on !S390
  7. depends on NET_ETHERNET
  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 ICPLUS_PHY
  48. tristate "Drivers for ICPlus PHYs"
  49. ---help---
  50. Currently supports the IP175C PHY.
  51. config REALTEK_PHY
  52. tristate "Drivers for Realtek PHYs"
  53. ---help---
  54. Supports the Realtek 821x PHY.
  55. config NATIONAL_PHY
  56. tristate "Drivers for National Semiconductor PHYs"
  57. ---help---
  58. Currently supports the DP83865 PHY.
  59. config STE10XP
  60. depends on PHYLIB
  61. tristate "Driver for STMicroelectronics STe10Xp PHYs"
  62. ---help---
  63. This is the driver for the STe100p and STe101p PHYs.
  64. config LSI_ET1011C_PHY
  65. tristate "Driver for LSI ET1011C PHY"
  66. ---help---
  67. Supports the LSI ET1011C PHY.
  68. config FIXED_PHY
  69. bool "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs"
  70. depends on PHYLIB=y
  71. ---help---
  72. Adds the platform "fixed" MDIO Bus to cover the boards that use
  73. PHYs that are not connected to the real MDIO bus.
  74. Currently tested with mpc866ads and mpc8349e-mitx.
  75. config MDIO_BITBANG
  76. tristate "Support for bitbanged MDIO buses"
  77. help
  78. This module implements the MDIO bus protocol in software,
  79. for use by low level drivers that export the ability to
  80. drive the relevant pins.
  81. If in doubt, say N.
  82. config MDIO_GPIO
  83. tristate "Support for GPIO lib-based bitbanged MDIO buses"
  84. depends on MDIO_BITBANG && GENERIC_GPIO
  85. ---help---
  86. Supports GPIO lib-based MDIO busses.
  87. To compile this driver as a module, choose M here: the module
  88. will be called mdio-gpio.
  89. endif # PHYLIB