Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 ICPLUS_PHY
  47. tristate "Drivers for ICPlus PHYs"
  48. ---help---
  49. Currently supports the IP175C PHY.
  50. config FIXED_PHY
  51. tristate "Drivers for PHY emulation on fixed speed/link"
  52. ---help---
  53. Adds the driver to PHY layer to cover the boards that do not have any PHY bound,
  54. but with the ability to manipulate the speed/link in software. The relevant MII
  55. speed/duplex parameters could be effectively handled in a user-specified function.
  56. Currently tested with mpc866ads.
  57. config FIXED_MII_10_FDX
  58. bool "Emulation for 10M Fdx fixed PHY behavior"
  59. depends on FIXED_PHY
  60. config FIXED_MII_100_FDX
  61. bool "Emulation for 100M Fdx fixed PHY behavior"
  62. depends on FIXED_PHY
  63. config FIXED_MII_1000_FDX
  64. bool "Emulation for 1000M Fdx fixed PHY behavior"
  65. depends on FIXED_PHY
  66. config FIXED_MII_AMNT
  67. int "Number of emulated PHYs to allocate "
  68. depends on FIXED_PHY
  69. default "1"
  70. ---help---
  71. Sometimes it is required to have several independent emulated
  72. PHYs on the bus (in case of multi-eth but phy-less HW for instance).
  73. This control will have specified number allocated for each fixed
  74. PHY type enabled.
  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. endif # PHYLIB