Kconfig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. config USB_DWC3
  2. bool "DesignWare USB3 DRD Core Support"
  3. depends on USB_HOST || USB_GADGET
  4. help
  5. Say Y here if your system has a Dual Role SuperSpeed
  6. USB controller based on the DesignWare USB3 IP Core.
  7. if USB_DWC3
  8. config USB_DWC3_GADGET
  9. bool "USB Gadget support for DWC3"
  10. default y
  11. depends on USB_GADGET
  12. select USB_GADGET_DUALSPEED
  13. comment "Platform Glue Driver Support"
  14. config USB_DWC3_OMAP
  15. bool "Texas Instruments OMAP5 and similar Platforms"
  16. help
  17. Some platforms from Texas Instruments like OMAP5, DRA7xxx and
  18. AM437x use this IP for USB2/3 functionality.
  19. Say 'Y' here if you have one such device
  20. config USB_DWC3_GENERIC
  21. bool "Generic implementation of a DWC3 wrapper (aka dwc3 glue)"
  22. depends on DM_USB && USB_DWC3 && MISC
  23. help
  24. Select this for Xilinx ZynqMP and similar Platforms.
  25. This wrapper supports Host and Peripheral operation modes.
  26. config USB_DWC3_MESON_G12A
  27. bool "Amlogic Meson G12A USB wrapper"
  28. depends on DM_USB && USB_DWC3 && ARCH_MESON
  29. imply PHY
  30. help
  31. Select this for Amlogic Meson G12A Platforms.
  32. This wrapper supports Host and Peripheral operation modes.
  33. config USB_DWC3_MESON_GXL
  34. bool "Amlogic Meson GXL USB wrapper"
  35. depends on DM_USB && USB_DWC3 && ARCH_MESON
  36. imply PHY
  37. help
  38. Select this for Amlogic Meson GXL and GXM Platforms.
  39. This wrapper supports Host and Peripheral operation modes.
  40. config USB_DWC3_UNIPHIER
  41. bool "DesignWare USB3 Host Support on UniPhier Platforms"
  42. depends on ARCH_UNIPHIER && USB_XHCI_DWC3
  43. help
  44. Support of USB2/3 functionality in Socionext UniPhier platforms.
  45. Say 'Y' here if you have one such device.
  46. menu "PHY Subsystem"
  47. config USB_DWC3_PHY_OMAP
  48. bool "TI OMAP SoC series USB DRD PHY driver"
  49. help
  50. Enable single driver for both USB2 PHY programming and USB3 PHY
  51. programming for TI SoCs.
  52. config USB_DWC3_PHY_SAMSUNG
  53. bool "Exynos5 SoC series USB DRD PHY driver"
  54. help
  55. Enable USB DRD PHY support for Exynos 5 SoC series.
  56. This driver provides PHY interface for USB 3.0 DRD controller
  57. present on Exynos5 SoC series.
  58. endmenu
  59. endif