ARM: dts: stm32: fix memory nodes to match with DT validation tool

DT validation ("make dtbs_check") has shown that some memory nodes were not
correctly written. This commit fixes this kind of issue:

"stm32f746-disco.dt.yaml: /: memory: False schema does not allow
{'device_type': ['memory'], 'reg': [[3221225472, 8388608]]}"

Signed-off-by: Alexandre Torgue <alexandre.torgue@st.com>
This commit is contained in:
Alexandre Torgue 2019-10-07 16:33:59 +02:00
parent 7e6c337f68
commit 8fcdbdccce
9 changed files with 9 additions and 8 deletions

View file

@ -60,7 +60,7 @@
stdout-path = "serial0:115200n8";
};
memory {
memory@00000000 {
device_type = "memory";
reg = <0x00000000 0x2000000>;
};

View file

@ -55,7 +55,7 @@
stdout-path = "serial0:115200n8";
};
memory {
memory@c0000000 {
device_type = "memory";
reg = <0xc0000000 0x2000000>;
};

View file

@ -59,7 +59,7 @@
stdout-path = "serial0:115200n8";
};
memory {
memory@90000000 {
device_type = "memory";
reg = <0x90000000 0x800000>;
};

View file

@ -60,7 +60,7 @@
stdout-path = "serial0:115200n8";
};
memory {
memory@00000000 {
device_type = "memory";
reg = <0x00000000 0x1000000>;
};

View file

@ -55,7 +55,7 @@
stdout-path = "serial0:115200n8";
};
memory {
memory@c0000000 {
device_type = "memory";
reg = <0xC0000000 0x800000>;
};

View file

@ -55,7 +55,7 @@
stdout-path = "serial0:115200n8";
};
memory {
memory@c0000000 {
device_type = "memory";
reg = <0xC0000000 0x1000000>;
};

View file

@ -53,7 +53,7 @@
stdout-path = "serial0:115200n8";
};
memory {
memory@d0000000 {
device_type = "memory";
reg = <0xd0000000 0x2000000>;
};

View file

@ -53,7 +53,7 @@
stdout-path = "serial0:115200n8";
};
memory {
memory@d0000000 {
device_type = "memory";
reg = <0xd0000000 0x2000000>;
};

View file

@ -25,6 +25,7 @@
};
memory@c0000000 {
device_type = "memory";
reg = <0xc0000000 0x20000000>;
};