Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. menu "PHY Subsystem"
  2. config PHY
  3. bool "PHY Core"
  4. depends on DM
  5. help
  6. PHY support.
  7. This framework is designed to provide a generic interface for PHY
  8. devices. PHY devices are dedicated hardware that handle the physical
  9. layer of the protocols in the OSI model.
  10. PHYs are commonly used for high speed interfaces such as Serial-ATA
  11. or PCI express.
  12. The API provides functions to initialize/deinitialize the
  13. PHY, power on/off the PHY, and reset the PHY. It's meant to be as
  14. compatible as possible with the equivalent framework found in the
  15. linux kernel.
  16. config SPL_PHY
  17. bool "PHY Core in SPL"
  18. depends on DM
  19. help
  20. PHY support in SPL.
  21. This framework is designed to provide a generic interface for PHY
  22. devices. PHY devices are dedicated hardware that handle the physical
  23. layer of the protocols (https://en.wikipedia.org/wiki/OSI_model).
  24. PHYs are commonly used for high speed interfaces such as Serial-ATA
  25. or PCI express.
  26. The API provides functions to initialize/deinitialize the
  27. PHY, power on/off the PHY, and reset the PHY. It's meant to be as
  28. compatible as possible with the equivalent framework found in the
  29. linux kernel.
  30. config PHY_SANDBOX
  31. bool "Sandbox PHY support"
  32. depends on SANDBOX
  33. depends on PHY
  34. help
  35. This select a dummy sandbox PHY driver. It used only to implement
  36. the unit tests for the phy framework
  37. config NOP_PHY
  38. bool "NOP PHY driver"
  39. depends on PHY
  40. help
  41. Support for a no-op PHY driver (stubbed PHY driver).
  42. This is useful when a driver uses the PHY framework but no real PHY
  43. hardware exists.
  44. config SPL_NOP_PHY
  45. bool "NOP PHY driver in SPL"
  46. depends on SPL_PHY
  47. help
  48. Support for a no-op PHY driver (stubbed PHY driver) in the SPL.
  49. This is useful when a driver uses the PHY framework but no real PHY
  50. hardware exists.
  51. config BCM6318_USBH_PHY
  52. bool "BCM6318 USBH PHY support"
  53. depends on PHY && ARCH_BMIPS
  54. select POWER_DOMAIN
  55. help
  56. Support for the Broadcom MIPS BCM6318 USBH PHY.
  57. config BCM6348_USBH_PHY
  58. bool "BCM6348 USBH PHY support"
  59. depends on PHY && ARCH_BMIPS
  60. help
  61. Support for the Broadcom MIPS BCM6348 USBH PHY.
  62. config BCM6358_USBH_PHY
  63. bool "BCM6358 USBH PHY support"
  64. depends on PHY && ARCH_BMIPS
  65. help
  66. Support for the Broadcom MIPS BCM6358 USBH PHY.
  67. config BCM6368_USBH_PHY
  68. bool "BCM6368 USBH PHY support"
  69. depends on PHY && ARCH_BMIPS
  70. help
  71. Support for the Broadcom MIPS BCM6368 USBH PHY.
  72. config PIPE3_PHY
  73. bool "Support omap's PIPE3 PHY"
  74. depends on PHY && ARCH_OMAP2PLUS
  75. help
  76. Support for the omap PIPE3 phy for sata
  77. This PHY is found on omap devices supporting SATA such as dra7, am57x
  78. and omap5
  79. config SPL_PIPE3_PHY
  80. bool "Support omap's PIPE3 PHY in SPL"
  81. depends on SPL_PHY && ARCH_OMAP2PLUS
  82. help
  83. Support for the omap PIPE3 phy for sata in SPL
  84. This PHY is found on omap devices supporting SATA such as dra7, am57x
  85. and omap5
  86. config STI_USB_PHY
  87. bool "STMicroelectronics USB2 picoPHY driver for STiH407 family"
  88. depends on PHY && ARCH_STI
  89. help
  90. This is the generic phy driver for the picoPHY ports
  91. used by USB2 and USB3 Host controllers available on
  92. STiH407 SoC families.
  93. config PHY_STM32_USBPHYC
  94. tristate "STMicroelectronics STM32 SoC USB HS PHY driver"
  95. depends on PHY && ARCH_STM32MP
  96. help
  97. Enable this to support the High-Speed USB transceiver that is part of
  98. STMicroelectronics STM32 SoCs.
  99. This driver controls the entire USB PHY block: the USB PHY controller
  100. (USBPHYC) and the two 8-bit wide UTMI+ interface. First interface is
  101. used by an HS USB Host controller, and the second one is shared
  102. between an HS USB OTG controller and an HS USB Host controller,
  103. selected by an USB switch.
  104. config MESON_GXL_USB_PHY
  105. bool "Amlogic Meson GXL USB PHYs"
  106. depends on PHY && ARCH_MESON && MESON_GXL
  107. imply REGMAP
  108. help
  109. This is the generic phy driver for the Amlogic Meson GXL
  110. USB2 and USB3 PHYS.
  111. endmenu