diff options
author | Michal Simek <michal.simek@xilinx.com> | 2022-02-23 16:17:42 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2022-03-07 16:33:47 +0100 |
commit | 2f6e1dde380d566dd81cc410bdc2ea010bbcac78 (patch) | |
tree | 7830a5cbe1e84b68d32dd2d3a3c7567ef1ff0c0f /arch | |
parent | 8b82a3a7feb06e25b4b731dc5485a1da315d2a93 (diff) | |
download | u-boot-2f6e1dde380d566dd81cc410bdc2ea010bbcac78.zip u-boot-2f6e1dde380d566dd81cc410bdc2ea010bbcac78.tar.gz u-boot-2f6e1dde380d566dd81cc410bdc2ea010bbcac78.tar.bz2 |
arm64: zynqmp: Fix level of gpio reset for usb on kv260 boards
Active level is low that's why it should be fixed.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Link: https://lore.kernel.org/r/86b3a96ce990b0ee0adab221146b5a5c751bd4a9.1645629459.git.michal.simek@xilinx.com
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/zynqmp-sck-kv-g-revA.dts | 2 | ||||
-rw-r--r-- | arch/arm/dts/zynqmp-sck-kv-g-revB.dts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/dts/zynqmp-sck-kv-g-revA.dts b/arch/arm/dts/zynqmp-sck-kv-g-revA.dts index 9445dac..85994be 100644 --- a/arch/arm/dts/zynqmp-sck-kv-g-revA.dts +++ b/arch/arm/dts/zynqmp-sck-kv-g-revA.dts @@ -131,7 +131,7 @@ phys = <&psgtr 2 PHY_TYPE_USB3 0 1>; usbhub: usb5744 { /* u43 */ compatible = "microchip,usb5744"; - reset-gpios = <&gpio 44 GPIO_ACTIVE_HIGH>; + reset-gpios = <&gpio 44 GPIO_ACTIVE_LOW>; }; }; diff --git a/arch/arm/dts/zynqmp-sck-kv-g-revB.dts b/arch/arm/dts/zynqmp-sck-kv-g-revB.dts index 28a3f3c..b81c2e6 100644 --- a/arch/arm/dts/zynqmp-sck-kv-g-revB.dts +++ b/arch/arm/dts/zynqmp-sck-kv-g-revB.dts @@ -115,7 +115,7 @@ status = "okay"; compatible = "microchip,usb5744"; i2c-bus = <&i2c1>; - reset-gpios = <&gpio 44 GPIO_ACTIVE_HIGH>; + reset-gpios = <&gpio 44 GPIO_ACTIVE_LOW>; }; }; |