]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: dts: ls1028a: move SATA and USB controller nodes into /soc
authorMichael Walle <michael@walle.cc>
Wed, 13 Oct 2021 16:14:11 +0000 (18:14 +0200)
committerPriyanka Jain <priyanka.jain@nxp.com>
Tue, 9 Nov 2021 11:48:23 +0000 (17:18 +0530)
While inserting them into the new location, keep them sorted by the
register base offset just like in the linux kernel device tree.

Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
arch/arm/dts/fsl-ls1028a.dtsi

index 9f466554e9a658bdeb4f782c0ebe86e5250addb2..7d18085615a1448ba78ba4b0f6ca412e6652301d 100644 (file)
                };
        };
 
-       usb1: usb3@3100000 {
-               compatible = "fsl,layerscape-dwc3";
-               reg = <0x0 0x3100000 0x0 0x10000>;
-               interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
-               dr_mode = "host";
-               status = "disabled";
-       };
-
-       usb2: usb3@3110000 {
-               compatible = "fsl,layerscape-dwc3";
-               reg = <0x0 0x3110000 0x0 0x10000>;
-               interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
-               dr_mode = "host";
-               status = "disabled";
-       };
-
-       sata: sata@3200000 {
-               compatible = "fsl,ls1028a-ahci";
-               reg = <0x0 0x3200000 0x0 0x10000        /* ccsr sata base */
-                      0x7 0x100520  0x0 0x4>;          /* ecc sata addr*/
-               reg-names = "sata-base", "ecc-addr";
-               interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
-               status = "disabled";
-       };
-
        cluster1_core0_watchdog: wdt@c000000 {
                compatible = "arm,sp805-wdt";
                reg = <0x0 0xc000000 0x0 0x1000>;
                        #interrupt-cells = <2>;
                        little-endian;
                };
+
+               usb1: usb3@3100000 {
+                       compatible = "fsl,layerscape-dwc3";
+                       reg = <0x0 0x3100000 0x0 0x10000>;
+                       interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
+                       dr_mode = "host";
+                       status = "disabled";
+               };
+
+               usb2: usb3@3110000 {
+                       compatible = "fsl,layerscape-dwc3";
+                       reg = <0x0 0x3110000 0x0 0x10000>;
+                       interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
+                       dr_mode = "host";
+                       status = "disabled";
+               };
+
+               sata: sata@3200000 {
+                       compatible = "fsl,ls1028a-ahci";
+                       reg = <0x0 0x3200000 0x0 0x10000        /* ccsr sata base */
+                              0x7 0x100520  0x0 0x4>;          /* ecc sata addr*/
+                       reg-names = "sata-base", "ecc-addr";
+                       interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
+                       status = "disabled";
+               };
        };
 };