]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arch: arm: dts: k3-am642-phyboard-electra: Add fixed partitions
authorNathan Morrisson <nmorrisson@phytec.com>
Mon, 10 Jun 2024 13:33:41 +0000 (15:33 +0200)
committerTom Rini <trini@konsulko.com>
Tue, 18 Jun 2024 16:28:59 +0000 (10:28 -0600)
Add a fixed partitions node to the AM64x device tree so that it can
be used to fixup the Linux device tree.

Signed-off-by: Nathan Morrisson <nmorrisson@phytec.com>
Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
Reviewed-by: Daniel Schultz <d.schultz@phytec.de>
arch/arm/dts/k3-am642-phyboard-electra-rdk-u-boot.dtsi

index 4677c35e2d97214e1b574ff8a71b672b91e0efa9..8f3c3a185aecbccb78d06cb9812906aabe304c30 100644 (file)
        bootph-all;
        flash@0 {
                bootph-all;
+               partitions {
+                       compatible = "fixed-partitions";
+                       #address-cells = <1>;
+                       #size-cells = <1>;
+
+                       partition@0 {
+                               label = "ospi.tiboot3";
+                               reg = <0x00000 0x80000>;
+                       };
+                       partition@80000 {
+                               label = "ospi.tispl";
+                               reg = <0x080000 0x200000>;
+                       };
+                       partition@280000 {
+                               label = "ospi.u-boot";
+                               reg = <0x280000 0x400000>;
+                       };
+                       partition@680000 {
+                               label = "ospi.env";
+                               reg = <0x680000 0x40000>;
+                       };
+                       partition@6c0000 {
+                               label = "ospi.env.backup";
+                               reg = <0x6c0000 0x40000>;
+                       };
+               };
        };
 };