Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. select USB_ULPI_BUS
  7. help
  8. Say Y here if your system has a dual role high speed USB
  9. controller based on ChipIdea silicon IP. It supports:
  10. Dual-role switch (ID, OTG FSM, sysfs), Host-only, and
  11. Peripheral-only.
  12. When compiled dynamically, the module will be called ci_hdrc.ko.
  13. if USB_CHIPIDEA
  14. config USB_CHIPIDEA_OF
  15. tristate
  16. depends on OF
  17. default USB_CHIPIDEA
  18. config USB_CHIPIDEA_PCI
  19. tristate
  20. depends on USB_PCI
  21. depends on NOP_USB_XCEIV
  22. default USB_CHIPIDEA
  23. config USB_CHIPIDEA_UDC
  24. bool "ChipIdea device controller"
  25. depends on USB_GADGET
  26. help
  27. Say Y here to enable device controller functionality of the
  28. ChipIdea driver.
  29. config USB_CHIPIDEA_HOST
  30. bool "ChipIdea host controller"
  31. depends on USB_EHCI_HCD
  32. select USB_EHCI_ROOT_HUB_TT
  33. help
  34. Say Y here to enable host controller functionality of the
  35. ChipIdea driver.
  36. endif