Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. config USB_CHIPIDEA
  2. tristate "ChipIdea Highspeed Dual Role Controller"
  3. depends on ((USB_EHCI_HCD && USB_GADGET) || (USB_EHCI_HCD && !USB_GADGET) || (!USB_EHCI_HCD && USB_GADGET)) && HAS_DMA
  4. select EXTCON
  5. select RESET_CONTROLLER
  6. help
  7. Say Y here if your system has a dual role high speed USB
  8. controller based on ChipIdea silicon IP. It supports:
  9. Dual-role switch (ID, OTG FSM, sysfs), Host-only, and
  10. Peripheral-only.
  11. When compiled dynamically, the module will be called ci-hdrc.ko.
  12. if USB_CHIPIDEA
  13. config USB_CHIPIDEA_OF
  14. tristate
  15. depends on OF
  16. default USB_CHIPIDEA
  17. config USB_CHIPIDEA_PCI
  18. tristate
  19. depends on USB_PCI
  20. depends on NOP_USB_XCEIV
  21. default USB_CHIPIDEA
  22. config USB_CHIPIDEA_UDC
  23. bool "ChipIdea device controller"
  24. depends on USB_GADGET
  25. help
  26. Say Y here to enable device controller functionality of the
  27. ChipIdea driver.
  28. config USB_CHIPIDEA_HOST
  29. bool "ChipIdea host controller"
  30. depends on USB_EHCI_HCD
  31. select USB_EHCI_ROOT_HUB_TT
  32. help
  33. Say Y here to enable host controller functionality of the
  34. ChipIdea driver.
  35. config USB_CHIPIDEA_ULPI
  36. bool "ChipIdea ULPI PHY support"
  37. depends on USB_ULPI_BUS=y || USB_ULPI_BUS=USB_CHIPIDEA
  38. help
  39. Say Y here if you have a ULPI PHY attached to your ChipIdea
  40. controller.
  41. endif