blob: 7ddfa94e518d396dbd7102041ef0d6030627d44a [file] [log] [blame]
Sam Protsenkob4a0bf72016-04-13 14:20:25 +03001config USB_DWC3
2 bool "DesignWare USB3 DRD Core Support"
Tom Rini5b9e6162021-07-09 10:11:56 -04003 depends on USB_XHCI_HCD || USB_GADGET
Sam Protsenkob4a0bf72016-04-13 14:20:25 +03004 help
5 Say Y here if your system has a Dual Role SuperSpeed
6 USB controller based on the DesignWare USB3 IP Core.
Sam Protsenko8073f472016-04-13 14:20:27 +03007
8if USB_DWC3
9
Sam Protsenko8073f472016-04-13 14:20:27 +030010config USB_DWC3_GADGET
Jean-Jacques Hiblot731a2a32019-09-11 11:33:53 +020011 bool "USB Gadget support for DWC3"
12 default y
Sam Protsenko8073f472016-04-13 14:20:27 +030013 depends on USB_GADGET
Masahiro Yamada66038de2017-08-25 01:30:20 +090014 select USB_GADGET_DUALSPEED
Sam Protsenko8073f472016-04-13 14:20:27 +030015
Sam Protsenko70ad2002016-04-13 14:20:28 +030016comment "Platform Glue Driver Support"
17
18config USB_DWC3_OMAP
19 bool "Texas Instruments OMAP5 and similar Platforms"
20 help
21 Some platforms from Texas Instruments like OMAP5, DRA7xxx and
22 AM437x use this IP for USB2/3 functionality.
23
24 Say 'Y' here if you have one such device
25
Michal Simek9d8cbbf2018-05-18 13:15:06 +020026config USB_DWC3_GENERIC
Jean-Jacques Hiblotaa866a02018-11-29 10:52:48 +010027 bool "Generic implementation of a DWC3 wrapper (aka dwc3 glue)"
28 depends on DM_USB && USB_DWC3 && MISC
Michal Simek9d8cbbf2018-05-18 13:15:06 +020029 help
Jean-Jacques Hiblotaa866a02018-11-29 10:52:48 +010030 Select this for Xilinx ZynqMP and similar Platforms.
31 This wrapper supports Host and Peripheral operation modes.
Michal Simek9d8cbbf2018-05-18 13:15:06 +020032
Angus Ainslie426b2ae2022-07-14 08:11:11 -070033config SPL_USB_DWC3_GENERIC
34 bool "Generic implementation of a DWC3 wrapper (aka dwc3 glue) for the SPL"
35 depends on SPL_DM_USB && USB_DWC3 && SPL_MISC
36 help
37 Select this for Xilinx ZynqMP and similar Platforms.
38 This wrapper supports Host and Peripheral operation modes.
39
Neil Armstrong1f708892019-02-19 13:42:01 +010040config USB_DWC3_MESON_G12A
41 bool "Amlogic Meson G12A USB wrapper"
42 depends on DM_USB && USB_DWC3 && ARCH_MESON
43 imply PHY
44 help
45 Select this for Amlogic Meson G12A Platforms.
46 This wrapper supports Host and Peripheral operation modes.
47
Neil Armstrongc1a7e72c2020-09-10 10:48:13 +020048config USB_DWC3_MESON_GXL
49 bool "Amlogic Meson GXL USB wrapper"
50 depends on DM_USB && USB_DWC3 && ARCH_MESON
51 imply PHY
52 help
53 Select this for Amlogic Meson GXL and GXM Platforms.
54 This wrapper supports Host and Peripheral operation modes.
55
Masahiro Yamadaa50bab32017-09-28 22:01:00 +090056config USB_DWC3_UNIPHIER
57 bool "DesignWare USB3 Host Support on UniPhier Platforms"
Kunihiko Hayashic891a462023-02-20 14:50:33 +090058 depends on ARCH_UNIPHIER && USB_DWC3
59 select USB_DWC3_GENERIC
60 select PHY_UNIPHIER_USB3
Masahiro Yamadaa50bab32017-09-28 22:01:00 +090061 help
62 Support of USB2/3 functionality in Socionext UniPhier platforms.
63 Say 'Y' here if you have one such device.
64
Michael Walle16d97852021-10-15 15:15:23 +020065config USB_DWC3_LAYERSCAPE
66 bool "Freescale Layerscape platform support"
67 depends on DM_USB && USB_DWC3
68 depends on !USB_XHCI_FSL
69 help
70 Select this for Freescale Layerscape Platforms.
71
72 Host and Peripheral operation modes are supported. OTG is not
73 supported.
74
Sam Protsenko38db33a2016-04-13 14:20:29 +030075menu "PHY Subsystem"
76
77config USB_DWC3_PHY_OMAP
78 bool "TI OMAP SoC series USB DRD PHY driver"
79 help
80 Enable single driver for both USB2 PHY programming and USB3 PHY
81 programming for TI SoCs.
82
83config USB_DWC3_PHY_SAMSUNG
84 bool "Exynos5 SoC series USB DRD PHY driver"
85 help
86 Enable USB DRD PHY support for Exynos 5 SoC series.
87 This driver provides PHY interface for USB 3.0 DRD controller
88 present on Exynos5 SoC series.
89
90endmenu
91
Sam Protsenko8073f472016-04-13 14:20:27 +030092endif