Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. config USB_CDNS3
  2. tristate "Cadence USB3 Dual-Role Controller"
  3. depends on USB_SUPPORT && (USB || USB_GADGET) && HAS_DMA
  4. select USB_XHCI_PLATFORM if USB_XHCI_HCD
  5. select USB_ROLE_SWITCH
  6. help
  7. Say Y here if your system has a Cadence USB3 dual-role controller.
  8. It supports: dual-role switch, Host-only, and Peripheral-only.
  9. If you choose to build this driver is a dynamically linked
  10. as module, the module will be called cdns3.ko.
  11. if USB_CDNS3
  12. config USB_CDNS3_GADGET
  13. bool "Cadence USB3 device controller"
  14. depends on USB_GADGET=y || USB_GADGET=USB_CDNS3
  15. help
  16. Say Y here to enable device controller functionality of the
  17. Cadence USBSS-DEV driver.
  18. This controller supports FF, HS and SS mode. It doesn't support
  19. LS and SSP mode.
  20. config USB_CDNS3_HOST
  21. bool "Cadence USB3 host controller"
  22. depends on USB=y || USB=USB_CDNS3
  23. help
  24. Say Y here to enable host controller functionality of the
  25. Cadence driver.
  26. Host controller is compliant with XHCI so it will use
  27. standard XHCI driver.
  28. config USB_CDNS3_PCI_WRAP
  29. tristate "Cadence USB3 support on PCIe-based platforms"
  30. depends on USB_PCI && ACPI
  31. default USB_CDNS3
  32. help
  33. If you're using the USBSS Core IP with a PCIe, please say
  34. 'Y' or 'M' here.
  35. If you choose to build this driver as module it will
  36. be dynamically linked and module will be called cdns3-pci.ko
  37. config USB_CDNS3_TI
  38. tristate "Cadence USB3 support on TI platforms"
  39. depends on ARCH_K3 || COMPILE_TEST
  40. default USB_CDNS3
  41. help
  42. Say 'Y' or 'M' here if you are building for Texas Instruments
  43. platforms that contain Cadence USB3 controller core.
  44. e.g. J721e.
  45. endif