Commit 291f45dd authored by Emiliano Ingrassia's avatar Emiliano Ingrassia Committed by Kevin Hilman

ARM: dts: meson: fixing USB support on Meson6, Meson8 and Meson8b

This patch fixes the Meson6, Meson8 and Meson8b USB controllers dts nodes
which interrupts are level type instead of edge type.
This avoids errors like "usb 1-1-port1: cannot reset (err = -110)" and
similars on Odroid-C1+ board.

Fixes: e29b1cf8 ("ARM: dts: meson: add USB support on Meson8 and Meson8b")
Signed-off-by: default avatarEmiliano Ingrassia <ingrassia@epigenesys.com>
Tested-by: default avatarMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: default avatarMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Tested-by: default avatarLinus Lüssing <linus.luessing@c0d3.blue>
Signed-off-by: default avatarKevin Hilman <khilman@baylibre.com>
parent 2eb79a4d
...@@ -217,7 +217,7 @@ usb0: usb@c9040000 { ...@@ -217,7 +217,7 @@ usb0: usb@c9040000 {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
reg = <0xc9040000 0x40000>; reg = <0xc9040000 0x40000>;
interrupts = <GIC_SPI 30 IRQ_TYPE_EDGE_RISING>; interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
phys = <&usb0_phy>; phys = <&usb0_phy>;
phy-names = "usb2-phy"; phy-names = "usb2-phy";
dr_mode = "host"; dr_mode = "host";
...@@ -229,7 +229,7 @@ usb1: usb@c90c0000 { ...@@ -229,7 +229,7 @@ usb1: usb@c90c0000 {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
reg = <0xc90c0000 0x40000>; reg = <0xc90c0000 0x40000>;
interrupts = <GIC_SPI 31 IRQ_TYPE_EDGE_RISING>; interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
phys = <&usb1_phy>; phys = <&usb1_phy>;
phy-names = "usb2-phy"; phy-names = "usb2-phy";
dr_mode = "host"; dr_mode = "host";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment