diff options
author | Kunihiko Hayashi <hayashi.kunihiko@socionext.com> | 2023-02-20 14:50:33 +0900 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2023-02-22 19:40:11 +0100 |
commit | ec01e0ba2c7fc5b49245eb80ea4611778eb235d7 (patch) | |
tree | 60a6e04a5886cececabb1610b2e2dbbcd3229791 /drivers/usb/dwc3/Kconfig | |
parent | 7a888de4b51803657f448139d9fbe457f4678c4f (diff) | |
download | u-boot-ec01e0ba2c7fc5b49245eb80ea4611778eb235d7.tar.gz u-boot-ec01e0ba2c7fc5b49245eb80ea4611778eb235d7.tar.bz2 u-boot-ec01e0ba2c7fc5b49245eb80ea4611778eb235d7.zip |
usb: dwc3-uniphier: Use dwc3-generic instead of xhci-dwc3
dwc3-uniphier depends on xhci-dwc3 framework, however, it is preferable
to use dwc3-generic.
This driver calls the exported dwc3-generic functions and redefine
the SoC-dependent operations to fit dwc3-generic.
Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers/usb/dwc3/Kconfig')
-rw-r--r-- | drivers/usb/dwc3/Kconfig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig index f010291d02..7ddfa94e51 100644 --- a/drivers/usb/dwc3/Kconfig +++ b/drivers/usb/dwc3/Kconfig @@ -55,7 +55,9 @@ config USB_DWC3_MESON_GXL config USB_DWC3_UNIPHIER bool "DesignWare USB3 Host Support on UniPhier Platforms" - depends on ARCH_UNIPHIER && USB_XHCI_DWC3 + depends on ARCH_UNIPHIER && USB_DWC3 + select USB_DWC3_GENERIC + select PHY_UNIPHIER_USB3 help Support of USB2/3 functionality in Socionext UniPhier platforms. Say 'Y' here if you have one such device. |