OSDN Git Service

ARM: dts: imx: Pass empty memory size on board dts
authorMarco Franchi <marcofrk@gmail.com>
Wed, 24 Jan 2018 13:22:12 +0000 (11:22 -0200)
committerShawn Guo <shawnguo@kernel.org>
Mon, 12 Feb 2018 13:13:13 +0000 (21:13 +0800)
In preparation for removing 'reg = <0 0>;' from the dtsi SoC files, pass
'reg = <0 0 >;' to the dts/dtsi board files that do not pass the memory
size.

Signed-off-by: Marco Franchi <marco.franchi@nxp.com>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
17 files changed:
arch/arm/boot/dts/imx51-zii-rdu1.dts
arch/arm/boot/dts/imx53-tx53.dtsi
arch/arm/boot/dts/imx6dl-colibri-eval-v3.dts
arch/arm/boot/dts/imx6dl-dfi-fs700-m60.dts
arch/arm/boot/dts/imx6dl-ts4900.dts
arch/arm/boot/dts/imx6dl-ts7970.dts
arch/arm/boot/dts/imx6q-dfi-fs700-m60.dts
arch/arm/boot/dts/imx6q-h100.dts
arch/arm/boot/dts/imx6q-novena.dts
arch/arm/boot/dts/imx6q-ts4900.dts
arch/arm/boot/dts/imx6q-ts7970.dts
arch/arm/boot/dts/imx6q-zii-rdu2.dts
arch/arm/boot/dts/imx6qdl-apalis.dtsi
arch/arm/boot/dts/imx6qdl-cubox-i.dtsi
arch/arm/boot/dts/imx6qdl-hummingboard.dtsi
arch/arm/boot/dts/imx6qdl-hummingboard2.dtsi
arch/arm/boot/dts/imx6qp-zii-rdu2.dts

index 5306b78..aa36204 100644 (file)
                stdout-path = &uart1;
        };
 
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
+
        aliases {
                mdio-gpio0 = &mdio_gpio;
                rtc0 = &ds1341;
index a22e461..e77dd0a 100644 (file)
        model = "Ka-Ro electronics TX53 module";
        compatible = "karo,tx53", "fsl,imx53";
 
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
+
        aliases {
                can0 = &can2; /* Make the can interface indices consistent with TX28/TX48 modules */
                can1 = &can1;
index dcf9206..700e129 100644 (file)
        compatible = "toradex,colibri_imx6dl-eval-v3", "toradex,colibri_imx6dl",
                     "fsl,imx6dl";
 
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
+
        aliases {
                i2c0 = &i2c2;
                i2c1 = &i2c3;
index 994f96a..c195ad6 100644 (file)
@@ -20,4 +20,9 @@
 / {
        model = "DFI FS700-M60-6DL i.MX6dl Q7 Board";
        compatible = "dfi,fs700-m60-6dl", "dfi,fs700e-m60", "fsl,imx6dl";
+
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
 };
index 6ea0b78..e23f789 100644 (file)
@@ -46,4 +46,9 @@
 / {
        model = "Technologic Systems i.MX6 Solo/DualLite TS-4900 (Default Device Tree)";
        compatible = "technologic,imx6dl-ts4900", "fsl,imx6dl";
+
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
 };
index d104daf..cae3313 100644 (file)
@@ -47,4 +47,9 @@
 / {
        model = "Technologic Systems i.MX6 Solo/DualLite TS-7970 (Default Device Tree)";
        compatible = "technologic,imx6dl-ts7970", "fsl,imx6dl";
+
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
 };
index fd0ad9a..a266fe6 100644 (file)
@@ -20,4 +20,9 @@
 / {
        model = "DFI FS700-M60-6QD i.MX6qd Q7 Board";
        compatible = "dfi,fs700-m60-6qd", "dfi,fs700e-m60", "fsl,imx6q";
+
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
 };
index 8a2ea6c..db0e738 100644 (file)
        model = "Auvidea H100";
        compatible = "auvidea,h100", "fsl,imx6q";
 
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
+
        aliases {
                rtc0 = &rtc;
                rtc1 = &snvs_rtc;
index 7d7dc59..43a0c32 100644 (file)
        model = "Kosagi Novena Dual/Quad";
        compatible = "kosagi,imx6q-novena", "fsl,imx6q";
 
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
+
        chosen {
                stdout-path = &uart2;
        };
index fab76f8..9cf7b37 100644 (file)
 / {
        model = "Technologic Systems i.MX6 Quad TS-4900 (Default Device Tree)";
        compatible = "technologic,imx6q-ts4900", "fsl,imx6q";
+
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
 };
 
 &sata {
index f19e189..fd84fc5 100644 (file)
 / {
        model = "Technologic Systems i.MX6 Quad TS-7970 (Default Device Tree)";
        compatible = "technologic,imx6q-ts7970", "fsl,imx6q";
+
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
 };
 
 &sata {
index 6be8a1e..fe8b12f 100644 (file)
@@ -47,4 +47,9 @@
 / {
        model = "ZII RDU2 Board";
        compatible = "zii,imx6q-zii-rdu2", "fsl,imx6q";
+
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
 };
index 4e776e0..bd658db 100644 (file)
        model = "Toradex Apalis iMX6Q/D Module";
        compatible = "toradex,apalis_imx6q", "fsl,imx6q";
 
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
+
        backlight: backlight {
                compatible = "pwm-backlight";
                pinctrl-names = "default";
index d1cfdc2..4c5f513 100644 (file)
 #include <dt-bindings/gpio/gpio.h>
 
 / {
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
+
        ir_recv: ir-receiver {
                compatible = "gpio-ir-receiver";
                gpios = <&gpio3 9 1>;
index 9258323..52eeeed 100644 (file)
  */
 
 / {
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
+
        chosen {
                stdout-path = &uart1;
        };
index dffbc92..e68e7db 100644 (file)
  */
 
 / {
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
+
        chosen {
                stdout-path = &uart1;
        };
index 547a766..96ab983 100644 (file)
@@ -47,4 +47,9 @@
 / {
        model = "ZII RDU2+ Board";
        compatible = "zii,imx6qp-zii-rdu2", "fsl,imx6qp";
+
+       /* Will be filled by the bootloader */
+       memory {
+               reg = <0 0>;
+       };
 };