Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. config USB_DWC3
  2. bool "DesignWare USB3 DRD Core Support"
  3. depends on (USB && USB_GADGET)
  4. select USB_GADGET_DUALSPEED
  5. help
  6. Say Y here if your system has a Dual Role SuperSpeed
  7. USB controller based on the DesignWare USB3 IP Core.
  8. if USB_DWC3
  9. choice
  10. bool "DWC3 Mode Selection"
  11. config USB_DWC3_HOST
  12. bool "Host only mode"
  13. depends on USB
  14. help
  15. Select this when you want to use DWC3 in host mode only,
  16. thereby the gadget feature will be regressed.
  17. config USB_DWC3_GADGET
  18. bool "Gadget only mode"
  19. depends on USB_GADGET
  20. help
  21. Select this when you want to use DWC3 in gadget mode only,
  22. thereby the host feature will be regressed.
  23. endchoice
  24. comment "Platform Glue Driver Support"
  25. config USB_DWC3_OMAP
  26. bool "Texas Instruments OMAP5 and similar Platforms"
  27. help
  28. Some platforms from Texas Instruments like OMAP5, DRA7xxx and
  29. AM437x use this IP for USB2/3 functionality.
  30. Say 'Y' here if you have one such device
  31. menu "PHY Subsystem"
  32. config USB_DWC3_PHY_OMAP
  33. bool "TI OMAP SoC series USB DRD PHY driver"
  34. help
  35. Enable single driver for both USB2 PHY programming and USB3 PHY
  36. programming for TI SoCs.
  37. config USB_DWC3_PHY_SAMSUNG
  38. bool "Exynos5 SoC series USB DRD PHY driver"
  39. help
  40. Enable USB DRD PHY support for Exynos 5 SoC series.
  41. This driver provides PHY interface for USB 3.0 DRD controller
  42. present on Exynos5 SoC series.
  43. endmenu
  44. endif