Kconfig 741 B

12345678910111213141516171819202122232425262728
  1. config USB_DWC3
  2. tristate "DesignWare USB3 DRD Core Support"
  3. depends on (USB && USB_GADGET)
  4. select USB_OTG_UTILS
  5. select USB_GADGET_DUALSPEED
  6. select USB_GADGET_SUPERSPEED
  7. select USB_XHCI_PLATFORM
  8. help
  9. Say Y or M here if your system has a Dual Role SuperSpeed
  10. USB controller based on the DesignWare USB3 IP Core.
  11. If you choose to build this driver is a dynamically linked
  12. module, the module will be called dwc3.ko.
  13. if USB_DWC3
  14. config USB_DWC3_DEBUG
  15. bool "Enable Debugging Messages"
  16. help
  17. Say Y here to enable debugging messages on DWC3 Driver.
  18. config USB_DWC3_VERBOSE
  19. bool "Enable Verbose Debugging Messages"
  20. depends on USB_DWC3_DEBUG
  21. help
  22. Say Y here to enable verbose debugging messages on DWC3 Driver.
  23. endif