Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. config USB_DWC2
  2. tristate "DesignWare USB2 DRD Core Support"
  3. depends on USB
  4. help
  5. Say Y or M here if your system has a Dual Role HighSpeed
  6. USB controller based on the DesignWare HSOTG IP Core.
  7. If you choose to build this driver as dynamically linked
  8. modules, the core module will be called dwc2.ko, the
  9. PCI bus interface module (if you have a PCI bus system)
  10. will be called dwc2_pci.ko and the platform interface module
  11. (for controllers directly connected to the CPU) will be called
  12. dwc2_platform.ko.
  13. NOTE: This driver at present only implements the Host mode
  14. of the controller. The existing s3c-hsotg driver supports
  15. Peripheral mode, but only for the Samsung S3C platforms.
  16. There are plans to merge the s3c-hsotg driver with this
  17. driver in the near future to create a dual-role driver.
  18. if USB_DWC2
  19. config USB_DWC2_DEBUG
  20. bool "Enable Debugging Messages"
  21. help
  22. Say Y here to enable debugging messages in the DWC2 Driver.
  23. config USB_DWC2_VERBOSE
  24. bool "Enable Verbose Debugging Messages"
  25. depends on USB_DWC2_DEBUG
  26. help
  27. Say Y here to enable verbose debugging messages in the DWC2 Driver.
  28. WARNING: Enabling this will quickly fill your message log.
  29. If in doubt, say N.
  30. config USB_DWC2_TRACK_MISSED_SOFS
  31. bool "Enable Missed SOF Tracking"
  32. help
  33. Say Y here to enable logging of missed SOF events to the dmesg log.
  34. WARNING: This feature is still experimental.
  35. If in doubt, say N.
  36. config USB_DWC2_DEBUG_PERIODIC
  37. bool "Enable Debugging Messages For Periodic Transfers"
  38. depends on USB_DWC2_DEBUG || USB_DWC2_VERBOSE
  39. default y
  40. help
  41. Say N here to disable (verbose) debugging messages to be
  42. logged for periodic transfers. This allows better debugging of
  43. non-periodic transfers, but of course the debug logs will be
  44. incomplete. Note that this also disables some debug messages
  45. for which the transfer type cannot be deduced.
  46. endif