Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 && (BROKEN || !S390)
  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 and BCM5461 PHYs.
  46. config ICPLUS_PHY
  47. tristate "Drivers for ICPlus PHYs"
  48. ---help---
  49. Currently supports the IP175C PHY.
  50. config REALTEK_PHY
  51. tristate "Drivers for Realtek PHYs"
  52. ---help---
  53. Supports the Realtek 821x PHY.
  54. config FIXED_PHY
  55. bool "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs"
  56. depends on PHYLIB=y
  57. ---help---
  58. Adds the platform "fixed" MDIO Bus to cover the boards that use
  59. PHYs that are not connected to the real MDIO bus.
  60. Currently tested with mpc866ads and mpc8349e-mitx.
  61. config MDIO_BITBANG
  62. tristate "Support for bitbanged MDIO buses"
  63. help
  64. This module implements the MDIO bus protocol in software,
  65. for use by low level drivers that export the ability to
  66. drive the relevant pins.
  67. If in doubt, say N.
  68. endif # PHYLIB