Kconfig 882 B

123456789101112131415161718192021222324252627282930313233
  1. comment "ULPI drivers"
  2. choice
  3. prompt "ULPI Viewport type"
  4. optional
  5. default n
  6. help
  7. Select ULPI viewport (SoC-side interface to ULPI) implementation
  8. appropriate for the device if you want to communicate with
  9. UTMI (USB PHY) via ULPI interface.
  10. config USB_ULPI_VIEWPORT
  11. bool "Generic ULPI Viewport"
  12. help
  13. Support generic ULPI Viewport implementation that is used on
  14. some Tegra and Snapdragon devices.
  15. config USB_ULPI_VIEWPORT_OMAP
  16. bool "OMAP ULPI Viewport"
  17. help
  18. Support ULPI Viewport implementation that is used on OMAP devices.
  19. endchoice
  20. config USB_ULPI
  21. bool "ULPI support"
  22. depends on (USB_ULPI_VIEWPORT || USB_ULPI_VIEWPORT_OMAP)
  23. help
  24. Select to commnicate with USB PHY via ULPI interface.
  25. ULPI is wrapper on UTMI+ core that is used as
  26. PHY Transreceiver for USB controllers.
  27. This driver uses ULPI viewports that are specific for each SoC.