From: Jean-Jacques Hiblot Date: Thu, 12 Apr 2018 08:41:11 +0000 (+0200) Subject: usb: dwc3-of-simple: Add support for DRA7/AM57 platforms. X-Git-Tag: v2018.05-rc3~46^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cc73ba97c008e96df5799dc37acbb04344fb3ac6;p=u-boot usb: dwc3-of-simple: Add support for DRA7/AM57 platforms. Add the compatibility with "ti,dwc3" and enable it by default if DM_USB is enabled. Signed-off-by: Jean-Jacques Hiblot --- diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 6ea962159e..3455e8113b 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig @@ -24,6 +24,7 @@ config USB_XHCI_DWC3 config USB_XHCI_DWC3_OF_SIMPLE bool "DesignWare USB3 DRD Generic OF Simple Glue Layer" depends on DM_USB + default y if DRA7XX help Support USB2/3 functionality in simple SoC integrations with USB controller based on the DesignWare USB3 IP Core. diff --git a/drivers/usb/host/dwc3-of-simple.c b/drivers/usb/host/dwc3-of-simple.c index 54a5f60b52..abc3928f8b 100644 --- a/drivers/usb/host/dwc3-of-simple.c +++ b/drivers/usb/host/dwc3-of-simple.c @@ -95,6 +95,7 @@ static int dwc3_of_simple_remove(struct udevice *dev) static const struct udevice_id dwc3_of_simple_ids[] = { { .compatible = "amlogic,meson-gxl-dwc3" }, + { .compatible = "ti,dwc3" }, { } };