Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #
  2. # PHY
  3. #
  4. menu "PHY Subsystem"
  5. config GENERIC_PHY
  6. bool "PHY Core"
  7. help
  8. Generic PHY support.
  9. This framework is designed to provide a generic interface for PHY
  10. devices present in the kernel. This layer will have the generic
  11. API by which phy drivers can create PHY using the phy framework and
  12. phy users can obtain reference to the PHY. All the users of this
  13. framework should select this config.
  14. config PHY_LPC18XX_USB_OTG
  15. tristate "NXP LPC18xx/43xx SoC USB OTG PHY driver"
  16. depends on OF && (ARCH_LPC18XX || COMPILE_TEST)
  17. depends on MFD_SYSCON
  18. select GENERIC_PHY
  19. help
  20. Enable this to support NXP LPC18xx/43xx internal USB OTG PHY.
  21. This driver is need for USB0 support on LPC18xx/43xx and takes
  22. care of enabling and clock setup.
  23. config PHY_PISTACHIO_USB
  24. tristate "IMG Pistachio USB2.0 PHY driver"
  25. depends on MACH_PISTACHIO
  26. select GENERIC_PHY
  27. help
  28. Enable this to support the USB2.0 PHY on the IMG Pistachio SoC.
  29. config PHY_XGENE
  30. tristate "APM X-Gene 15Gbps PHY support"
  31. depends on HAS_IOMEM && OF && (ARM64 || COMPILE_TEST)
  32. select GENERIC_PHY
  33. help
  34. This option enables support for APM X-Gene SoC multi-purpose PHY.
  35. source "drivers/phy/allwinner/Kconfig"
  36. source "drivers/phy/amlogic/Kconfig"
  37. source "drivers/phy/broadcom/Kconfig"
  38. source "drivers/phy/hisilicon/Kconfig"
  39. source "drivers/phy/lantiq/Kconfig"
  40. source "drivers/phy/marvell/Kconfig"
  41. source "drivers/phy/mediatek/Kconfig"
  42. source "drivers/phy/motorola/Kconfig"
  43. source "drivers/phy/qualcomm/Kconfig"
  44. source "drivers/phy/ralink/Kconfig"
  45. source "drivers/phy/renesas/Kconfig"
  46. source "drivers/phy/rockchip/Kconfig"
  47. source "drivers/phy/samsung/Kconfig"
  48. source "drivers/phy/st/Kconfig"
  49. source "drivers/phy/tegra/Kconfig"
  50. source "drivers/phy/ti/Kconfig"
  51. endmenu