Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 PHY
  42. config BROADCOM_PHY
  43. tristate "Drivers for Broadcom PHYs"
  44. ---help---
  45. Currently supports the BCM5411, BCM5421 and BCM5461 PHYs.
  46. config FIXED_PHY
  47. tristate "Drivers for PHY emulation on fixed speed/link"
  48. ---help---
  49. Adds the driver to PHY layer to cover the boards that do not have any PHY bound,
  50. but with the ability to manipulate the speed/link in software. The relevant MII
  51. speed/duplex parameters could be effectively handled in a user-specified function.
  52. Currently tested with mpc866ads.
  53. config FIXED_MII_10_FDX
  54. bool "Emulation for 10M Fdx fixed PHY behavior"
  55. depends on FIXED_PHY
  56. config FIXED_MII_100_FDX
  57. bool "Emulation for 100M Fdx fixed PHY behavior"
  58. depends on FIXED_PHY
  59. endif # PHYLIB