diff options
author | Tim Harvey <tharvey@gateworks.com> | 2021-09-29 15:04:22 -0700 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2021-10-07 16:53:50 +0200 |
commit | 073b105e794d7aae9b62cac68109a6aa8caa3483 (patch) | |
tree | 0d601649dfe0bbfefb6c94938c0ebbfe3a5f0940 /arch/arm/dts/imx6qdl-gw5904.dtsi | |
parent | 397d697fd4707043511fdad34f2f75274a4a54d0 (diff) | |
download | u-boot-073b105e794d7aae9b62cac68109a6aa8caa3483.tar.gz u-boot-073b105e794d7aae9b62cac68109a6aa8caa3483.tar.bz2 u-boot-073b105e794d7aae9b62cac68109a6aa8caa3483.zip |
imx: ventana: fix USB hub reset
Remove board_ehci_hcd_init function that is not used with DM_USB
and replace its functionality with device-tree configuraton that treats
USB HUB RST# as a gpio enable for the usbh1 vbus regulator.
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'arch/arm/dts/imx6qdl-gw5904.dtsi')
-rw-r--r-- | arch/arm/dts/imx6qdl-gw5904.dtsi | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/arch/arm/dts/imx6qdl-gw5904.dtsi b/arch/arm/dts/imx6qdl-gw5904.dtsi index b5ed2d83c1..286c7a9924 100644 --- a/arch/arm/dts/imx6qdl-gw5904.dtsi +++ b/arch/arm/dts/imx6qdl-gw5904.dtsi @@ -176,7 +176,8 @@ regulator-name = "usb_h1_vbus"; regulator-min-microvolt = <5000000>; regulator-max-microvolt = <5000000>; - regulator-always-on; + gpio = <&gpio1 9 GPIO_ACTIVE_HIGH>; + enable-active-high; }; reg_usb_otg_vbus: regulator-usb-otg-vbus { @@ -593,6 +594,8 @@ &usbh1 { vbus-supply = <®_usb_h1_vbus>; + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_usbotg>; status = "okay"; }; @@ -753,6 +756,12 @@ >; }; + pinctrl_usbh1: usbh1grp { + fsl,pins = < + MX6QDL_PAD_GPIO_9__GPIO1_IO09 0x1b0b0 + >; + }; + pinctrl_usbotg: usbotggrp { fsl,pins = < MX6QDL_PAD_GPIO_1__USB_OTG_ID 0x17059 |