Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # PHY
  4. #
  5. menu "PHY Subsystem"
  6. config GENERIC_PHY
  7. bool "PHY Core"
  8. help
  9. Generic PHY support.
  10. This framework is designed to provide a generic interface for PHY
  11. devices present in the kernel. This layer will have the generic
  12. API by which phy drivers can create PHY using the phy framework and
  13. phy users can obtain reference to the PHY. All the users of this
  14. framework should select this config.
  15. config GENERIC_PHY_MIPI_DPHY
  16. bool
  17. select GENERIC_PHY
  18. help
  19. Generic MIPI D-PHY support.
  20. Provides a number of helpers a core functions for MIPI D-PHY
  21. drivers to us.
  22. config PHY_LPC18XX_USB_OTG
  23. tristate "NXP LPC18xx/43xx SoC USB OTG PHY driver"
  24. depends on OF && (ARCH_LPC18XX || COMPILE_TEST)
  25. depends on MFD_SYSCON
  26. select GENERIC_PHY
  27. help
  28. Enable this to support NXP LPC18xx/43xx internal USB OTG PHY.
  29. This driver is need for USB0 support on LPC18xx/43xx and takes
  30. care of enabling and clock setup.
  31. config PHY_PISTACHIO_USB
  32. tristate "IMG Pistachio USB2.0 PHY driver"
  33. depends on MIPS || COMPILE_TEST
  34. select GENERIC_PHY
  35. help
  36. Enable this to support the USB2.0 PHY on the IMG Pistachio SoC.
  37. config PHY_XGENE
  38. tristate "APM X-Gene 15Gbps PHY support"
  39. depends on HAS_IOMEM && OF && (ARCH_XGENE || COMPILE_TEST)
  40. select GENERIC_PHY
  41. help
  42. This option enables support for APM X-Gene SoC multi-purpose PHY.
  43. config USB_LGM_PHY
  44. tristate "INTEL Lightning Mountain USB PHY Driver"
  45. depends on USB_SUPPORT
  46. depends on X86 || COMPILE_TEST
  47. select USB_PHY
  48. select REGULATOR
  49. select REGULATOR_FIXED_VOLTAGE
  50. help
  51. Enable this to support Intel DWC3 PHY USB phy. This driver provides
  52. interface to interact with USB GEN-II and USB 3.x PHY that is part
  53. of the Intel network SOC.
  54. config PHY_CAN_TRANSCEIVER
  55. tristate "CAN transceiver PHY"
  56. select GENERIC_PHY
  57. select MULTIPLEXER
  58. help
  59. This option enables support for CAN transceivers as a PHY. This
  60. driver provides function for putting the transceivers in various
  61. functional modes using gpios and sets the attribute max link
  62. rate, for CAN drivers.
  63. config PHY_AIROHA_PCIE
  64. tristate "Airoha PCIe-PHY Driver"
  65. depends on ARCH_AIROHA || COMPILE_TEST
  66. depends on OF
  67. select GENERIC_PHY
  68. help
  69. Say Y here to add support for Airoha PCIe PHY driver.
  70. This driver create the basic PHY instance and provides initialize
  71. callback for PCIe GEN3 port.
  72. source "drivers/phy/allwinner/Kconfig"
  73. source "drivers/phy/amlogic/Kconfig"
  74. source "drivers/phy/broadcom/Kconfig"
  75. source "drivers/phy/cadence/Kconfig"
  76. source "drivers/phy/freescale/Kconfig"
  77. source "drivers/phy/hisilicon/Kconfig"
  78. source "drivers/phy/ingenic/Kconfig"
  79. source "drivers/phy/lantiq/Kconfig"
  80. source "drivers/phy/marvell/Kconfig"
  81. source "drivers/phy/mediatek/Kconfig"
  82. source "drivers/phy/microchip/Kconfig"
  83. source "drivers/phy/motorola/Kconfig"
  84. source "drivers/phy/mscc/Kconfig"
  85. source "drivers/phy/nuvoton/Kconfig"
  86. source "drivers/phy/qualcomm/Kconfig"
  87. source "drivers/phy/ralink/Kconfig"
  88. source "drivers/phy/realtek/Kconfig"
  89. source "drivers/phy/renesas/Kconfig"
  90. source "drivers/phy/rockchip/Kconfig"
  91. source "drivers/phy/samsung/Kconfig"
  92. source "drivers/phy/socionext/Kconfig"
  93. source "drivers/phy/st/Kconfig"
  94. source "drivers/phy/starfive/Kconfig"
  95. source "drivers/phy/sunplus/Kconfig"
  96. source "drivers/phy/tegra/Kconfig"
  97. source "drivers/phy/ti/Kconfig"
  98. source "drivers/phy/intel/Kconfig"
  99. source "drivers/phy/xilinx/Kconfig"
  100. endmenu