diff options
author | Tim Harvey <tharvey@gateworks.com> | 2022-04-05 22:35:09 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2022-04-11 04:13:33 +0300 |
commit | 4c79865f3e8a2db93ec1e844509edfebe5a6ae56 (patch) | |
tree | 90ba7960a991a16f4a5bb4cbfcc2d2fef41ac31c /arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx.dtsi | |
parent | 574518b7ccbaef74cb89eb1a1a0da88afa1e0113 (diff) | |
download | linux-4c79865f3e8a2db93ec1e844509edfebe5a6ae56.tar.xz |
ARM: dts: imx8mm-venice-gw{71xx,72xx,73xx}: fix OTG controller OC mode
The GW71xx, GW72xx and GW73xx boards have USB1 routed to a USB OTG
connectors and USB2 routed to a USB hub.
The OTG connector has a over-currently protection with an active-low
pin and the USB1 to HUB connection has no over-current protection (as
the HUB itself implements this for its downstream ports).
Add proper dt nodes to specify the over-current pin polarity for USB1
and disable over-current protection for USB2.
Fixes: 6f30b27c5ef5 ("arm64: dts: imx8mm: Add Gateworks i.MX 8M Mini Development Kits")
Cc: stable@vger.kernel.org
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx.dtsi')
-rw-r--r-- | arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx.dtsi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx.dtsi b/arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx.dtsi index 353c3dc19d2a..f61e4847fa49 100644 --- a/arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx.dtsi @@ -211,12 +211,14 @@ &usbotg1 { dr_mode = "otg"; + over-current-active-low; vbus-supply = <®_usb_otg1_vbus>; status = "okay"; }; &usbotg2 { dr_mode = "host"; + disable-over-current; vbus-supply = <®_usb_otg2_vbus>; status = "okay"; }; |