Kconfig 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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_EXYNOS_MIPI_VIDEO
  15. tristate "S5P/EXYNOS SoC series MIPI CSI-2/DSI PHY driver"
  16. depends on HAS_IOMEM
  17. depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
  18. select GENERIC_PHY
  19. default y if ARCH_S5PV210 || ARCH_EXYNOS
  20. help
  21. Support for MIPI CSI-2 and MIPI DSI DPHY found on Samsung S5P
  22. and EXYNOS SoCs.
  23. config PHY_MVEBU_SATA
  24. def_bool y
  25. depends on ARCH_KIRKWOOD || ARCH_DOVE || MACH_DOVE
  26. depends on OF
  27. select GENERIC_PHY
  28. config OMAP_USB2
  29. tristate "OMAP USB2 PHY Driver"
  30. depends on ARCH_OMAP2PLUS
  31. depends on USB_PHY
  32. select GENERIC_PHY
  33. select OMAP_CONTROL_USB
  34. help
  35. Enable this to support the transceiver that is part of SOC. This
  36. driver takes care of all the PHY functionality apart from comparator.
  37. The USB OTG controller communicates with the comparator using this
  38. driver.
  39. config TI_PIPE3
  40. tristate "TI PIPE3 PHY Driver"
  41. depends on ARCH_OMAP2PLUS || COMPILE_TEST
  42. select GENERIC_PHY
  43. select OMAP_CONTROL_USB
  44. help
  45. Enable this to support the PIPE3 PHY that is part of TI SOCs. This
  46. driver takes care of all the PHY functionality apart from comparator.
  47. This driver interacts with the "OMAP Control PHY Driver" to power
  48. on/off the PHY.
  49. config TWL4030_USB
  50. tristate "TWL4030 USB Transceiver Driver"
  51. depends on TWL4030_CORE && REGULATOR_TWL4030 && USB_MUSB_OMAP2PLUS
  52. depends on USB_PHY
  53. select GENERIC_PHY
  54. help
  55. Enable this to support the USB OTG transceiver on TWL4030
  56. family chips (including the TWL5030 and TPS659x0 devices).
  57. This transceiver supports high and full speed devices plus,
  58. in host mode, low speed.
  59. config PHY_EXYNOS_DP_VIDEO
  60. tristate "EXYNOS SoC series Display Port PHY driver"
  61. depends on OF
  62. depends on ARCH_EXYNOS || COMPILE_TEST
  63. default ARCH_EXYNOS
  64. select GENERIC_PHY
  65. help
  66. Support for Display Port PHY found on Samsung EXYNOS SoCs.
  67. config BCM_KONA_USB2_PHY
  68. tristate "Broadcom Kona USB2 PHY Driver"
  69. depends on GENERIC_PHY
  70. depends on HAS_IOMEM
  71. help
  72. Enable this to support the Broadcom Kona USB 2.0 PHY.
  73. config PHY_EXYNOS5250_SATA
  74. tristate "Exynos5250 Sata SerDes/PHY driver"
  75. depends on SOC_EXYNOS5250
  76. depends on HAS_IOMEM
  77. depends on OF
  78. select GENERIC_PHY
  79. select I2C
  80. select I2C_S3C2410
  81. select MFD_SYSCON
  82. help
  83. Enable this to support SATA SerDes/Phy found on Samsung's
  84. Exynos5250 based SoCs.This SerDes/Phy supports SATA 1.5 Gb/s,
  85. SATA 3.0 Gb/s, SATA 6.0 Gb/s speeds. It supports one SATA host
  86. port to accept one SATA device.
  87. config PHY_SUN4I_USB
  88. tristate "Allwinner sunxi SoC USB PHY driver"
  89. depends on ARCH_SUNXI && HAS_IOMEM && OF
  90. select GENERIC_PHY
  91. help
  92. Enable this to support the transceiver that is part of Allwinner
  93. sunxi SoCs.
  94. This driver controls the entire USB PHY block, both the USB OTG
  95. parts, as well as the 2 regular USB 2 host PHYs.
  96. config PHY_SAMSUNG_USB2
  97. tristate "Samsung USB 2.0 PHY driver"
  98. select GENERIC_PHY
  99. select MFD_SYSCON
  100. help
  101. Enable this to support the Samsung USB 2.0 PHY driver for Samsung
  102. SoCs. This driver provides the interface for USB 2.0 PHY. Support for
  103. particular SoCs has to be enabled in addition to this driver. Number
  104. and type of supported phys depends on the SoC.
  105. config PHY_EXYNOS4210_USB2
  106. bool "Support for Exynos 4210"
  107. depends on PHY_SAMSUNG_USB2
  108. depends on CPU_EXYNOS4210
  109. help
  110. Enable USB PHY support for Exynos 4210. This option requires that
  111. Samsung USB 2.0 PHY driver is enabled and means that support for this
  112. particular SoC is compiled in the driver. In case of Exynos 4210 four
  113. phys are available - device, host, HSIC0 and HSIC1.
  114. config PHY_EXYNOS4X12_USB2
  115. bool "Support for Exynos 4x12"
  116. depends on PHY_SAMSUNG_USB2
  117. depends on (SOC_EXYNOS4212 || SOC_EXYNOS4412)
  118. help
  119. Enable USB PHY support for Exynos 4x12. This option requires that
  120. Samsung USB 2.0 PHY driver is enabled and means that support for this
  121. particular SoC is compiled in the driver. In case of Exynos 4x12 four
  122. phys are available - device, host, HSIC0 and HSIC1.
  123. config PHY_EXYNOS5250_USB2
  124. bool "Support for Exynos 5250"
  125. depends on PHY_SAMSUNG_USB2
  126. depends on SOC_EXYNOS5250
  127. help
  128. Enable USB PHY support for Exynos 5250. This option requires that
  129. Samsung USB 2.0 PHY driver is enabled and means that support for this
  130. particular SoC is compiled in the driver. In case of Exynos 5250 four
  131. phys are available - device, host, HSIC0 and HSIC.
  132. endmenu