ipq806x: fix USB bug in 5.10 dtsi additions
authorRodrigo Balerdi <lanchon@gmail.com>
Sat, 9 Apr 2022 21:26:17 +0000 (18:26 -0300)
committerHauke Mehrtens <hauke@hauke-m.de>
Sun, 17 Apr 2022 19:31:01 +0000 (21:31 +0200)
The existing device tree has incorrect definitions for usb3_0 and usb3_1
and the blocks they depend upon: their addresses and interrupts are
swapped. However, their clocks and resets are not. The result is that
the USB blocks are non-functional if only one of them is enabled.

This fix backports the definitions from mainline Linux 5.15 to
OpenWrt's 5.10 dtsi additions. See the relevant mainline code here:
https://github.com/torvalds/linux/blob/v5.17/arch/arm/boot/dts/qcom-ipq8064.dtsi#L1062-L1148

This fix does not break existing ports. But some ports may have enabled
both USB blocks even thought their board only implements one, because
enabling a single USB block would not have worked before this fix.
This means that revisiting all ports of ipq806x devices that implement
a single USB port is advised. This work must be done by maintainers that
can determine which USB block corresponds to the implemented port on
their hardware.

Note that this fix swaps the names of the hardware ports. This is
unfortunate, but will happen anyway when switching to kernel 5.15. Thus,
it is best to do this ASAP, before users get to depend on port names.

It is strongly recommended that this fix is backported to 22.03 before
its release. This will minimize the number of users affected by the port
name swap.

Signed-off-by: Rodrigo Balerdi <lanchon@gmail.com>
(cherry picked from commit 284f2c2ae0e569660effa61c9f8d0f6459a2ae19)

target/linux/ipq806x/patches-5.10/083-ipq8064-dtsi-additions.patch

index 2667bd636ea95ee9cf710bc4691a0d81f780262e..b37ad50f148b7f67c78d2484d2b89b58445caaa7 100644 (file)
 +
 +              hs_phy_0: hs_phy_0 {
 +                      compatible = "qcom,ipq806x-usb-phy-hs";
-+                      reg = <0x110f8800 0x30>;
++                      reg = <0x100f8800 0x30>;
 +                      clocks = <&gcc USB30_0_UTMI_CLK>;
 +                      clock-names = "ref";
 +                      #phy-cells = <0>;
 +
 +              ss_phy_0: ss_phy_0 {
 +                      compatible = "qcom,ipq806x-usb-phy-ss";
-+                      reg = <0x110f8830 0x30>;
++                      reg = <0x100f8830 0x30>;
 +                      clocks = <&gcc USB30_0_MASTER_CLK>;
 +                      clock-names = "ref";
 +                      #phy-cells = <0>;
 +              };
 +
-+              usb3_0: usb3@110f8800 {
++              usb3_0: usb3@100f8800 {
 +                      compatible = "qcom,dwc3", "syscon";
 +                      #address-cells = <1>;
 +                      #size-cells = <1>;
-+                      reg = <0x110f8800 0x8000>;
++                      reg = <0x100f8800 0x8000>;
 +                      clocks = <&gcc USB30_0_MASTER_CLK>;
 +                      clock-names = "core";
 +
 +
 +                      status = "disabled";
 +
-+                      dwc3_0: dwc3@11000000 {
++                      dwc3_0: dwc3@10000000 {
 +                              compatible = "snps,dwc3";
-+                              reg = <0x11000000 0xcd00>;
-+                              interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
++                              reg = <0x10000000 0xcd00>;
++                              interrupts = <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>;
 +                              phys = <&hs_phy_0>, <&ss_phy_0>;
 +                              phy-names = "usb2-phy", "usb3-phy";
 +                              dr_mode = "host";
 +
 +              hs_phy_1: hs_phy_1 {
 +                      compatible = "qcom,ipq806x-usb-phy-hs";
-+                      reg = <0x100f8800 0x30>;
++                      reg = <0x110f8800 0x30>;
 +                      clocks = <&gcc USB30_1_UTMI_CLK>;
 +                      clock-names = "ref";
 +                      #phy-cells = <0>;
 +
 +              ss_phy_1: ss_phy_1 {
 +                      compatible = "qcom,ipq806x-usb-phy-ss";
-+                      reg = <0x100f8830 0x30>;
++                      reg = <0x110f8830 0x30>;
 +                      clocks = <&gcc USB30_1_MASTER_CLK>;
 +                      clock-names = "ref";
 +                      #phy-cells = <0>;
 +              };
 +
-+              usb3_1: usb3@100f8800 {
++              usb3_1: usb3@110f8800 {
 +                      compatible = "qcom,dwc3", "syscon";
 +                      #address-cells = <1>;
 +                      #size-cells = <1>;
-+                      reg = <0x100f8800 0x8000>;
++                      reg = <0x110f8800 0x8000>;
 +                      clocks = <&gcc USB30_1_MASTER_CLK>;
 +                      clock-names = "core";
 +
 +
 +                      status = "disabled";
 +
-+                      dwc3_1: dwc3@10000000 {
++                      dwc3_1: dwc3@11000000 {
 +                              compatible = "snps,dwc3";
-+                              reg = <0x10000000 0xcd00>;
-+                              interrupts = <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>;
++                              reg = <0x11000000 0xcd00>;
++                              interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
 +                              phys = <&hs_phy_1>, <&ss_phy_1>;
 +                              phy-names = "usb2-phy", "usb3-phy";
 +                              dr_mode = "host";