diff options
author | Robert Marko <robert.marko@sartura.hr> | 2020-09-10 16:00:05 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-18 16:20:47 -0400 |
commit | 74a703a8aded58dac2ed3373447c6a4fc2d467c9 (patch) | |
tree | c2ee477ca164f13429201d2ad9546899d4d0089b /drivers/usb/dwc3 | |
parent | dec042028e8aff9a4f12d1b2ae48a373ab4c4ff9 (diff) | |
download | u-boot-74a703a8aded58dac2ed3373447c6a4fc2d467c9.tar.gz |
usb: dwc3: Add Qualcomm DWC3 compatible string
Lot of Qualcomm SoC-s use DWC3 controller for both USB2.0 and USB3.0
ports.
Qualcomm has some custom config registers on top of the generic ones,
but for host mode these are not needed.
So lets add the neccessary compatible string.
Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Cc: Luka Perkov <luka.perkov@sartura.hr>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r-- | drivers/usb/dwc3/dwc3-generic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/dwc3/dwc3-generic.c b/drivers/usb/dwc3/dwc3-generic.c index 551f682024..7fbf2502fa 100644 --- a/drivers/usb/dwc3/dwc3-generic.c +++ b/drivers/usb/dwc3/dwc3-generic.c @@ -449,6 +449,7 @@ static const struct udevice_id dwc3_glue_ids[] = { { .compatible = "ti,am654-dwc3" }, { .compatible = "rockchip,rk3328-dwc3" }, { .compatible = "rockchip,rk3399-dwc3" }, + { .compatible = "qcom,dwc3" }, { } }; |