Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #
  2. # PHY
  3. #
  4. menu "PHY Subsystem"
  5. config GENERIC_PHY
  6. tristate "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. help
  17. Support for MIPI CSI-2 and MIPI DSI DPHY found on Samsung S5P
  18. and EXYNOS SoCs.
  19. config OMAP_USB2
  20. tristate "OMAP USB2 PHY Driver"
  21. depends on ARCH_OMAP2PLUS
  22. select GENERIC_PHY
  23. select USB_PHY
  24. select OMAP_CONTROL_USB
  25. help
  26. Enable this to support the transceiver that is part of SOC. This
  27. driver takes care of all the PHY functionality apart from comparator.
  28. The USB OTG controller communicates with the comparator using this
  29. driver.
  30. config TWL4030_USB
  31. tristate "TWL4030 USB Transceiver Driver"
  32. depends on TWL4030_CORE && REGULATOR_TWL4030 && USB_MUSB_OMAP2PLUS
  33. select GENERIC_PHY
  34. select USB_PHY
  35. help
  36. Enable this to support the USB OTG transceiver on TWL4030
  37. family chips (including the TWL5030 and TPS659x0 devices).
  38. This transceiver supports high and full speed devices plus,
  39. in host mode, low speed.
  40. config PHY_EXYNOS_DP_VIDEO
  41. tristate "EXYNOS SoC series Display Port PHY driver"
  42. depends on OF
  43. select GENERIC_PHY
  44. help
  45. Support for Display Port PHY found on Samsung EXYNOS SoCs.
  46. endmenu