Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+9 -8
+1 -1
arch/arm/boot/dts/stm32429i-eval.dts
··· 60 60 stdout-path = "serial0:115200n8"; 61 61 }; 62 62 63 - memory { 63 + memory@00000000 { 64 64 device_type = "memory"; 65 65 reg = <0x00000000 0x2000000>; 66 66 };
+1 -1
arch/arm/boot/dts/stm32746g-eval.dts
··· 55 55 stdout-path = "serial0:115200n8"; 56 56 }; 57 57 58 - memory { 58 + memory@c0000000 { 59 59 device_type = "memory"; 60 60 reg = <0xc0000000 0x2000000>; 61 61 };
+1 -1
arch/arm/boot/dts/stm32f429-disco.dts
··· 59 59 stdout-path = "serial0:115200n8"; 60 60 }; 61 61 62 - memory { 62 + memory@90000000 { 63 63 device_type = "memory"; 64 64 reg = <0x90000000 0x800000>; 65 65 };
+1 -1
arch/arm/boot/dts/stm32f469-disco.dts
··· 60 60 stdout-path = "serial0:115200n8"; 61 61 }; 62 62 63 - memory { 63 + memory@00000000 { 64 64 device_type = "memory"; 65 65 reg = <0x00000000 0x1000000>; 66 66 };
+1 -1
arch/arm/boot/dts/stm32f746-disco.dts
··· 55 55 stdout-path = "serial0:115200n8"; 56 56 }; 57 57 58 - memory { 58 + memory@c0000000 { 59 59 device_type = "memory"; 60 60 reg = <0xC0000000 0x800000>; 61 61 };
+1 -1
arch/arm/boot/dts/stm32f769-disco.dts
··· 55 55 stdout-path = "serial0:115200n8"; 56 56 }; 57 57 58 - memory { 58 + memory@c0000000 { 59 59 device_type = "memory"; 60 60 reg = <0xC0000000 0x1000000>; 61 61 };
+1 -1
arch/arm/boot/dts/stm32h743i-disco.dts
··· 53 53 stdout-path = "serial0:115200n8"; 54 54 }; 55 55 56 - memory { 56 + memory@d0000000 { 57 57 device_type = "memory"; 58 58 reg = <0xd0000000 0x2000000>; 59 59 };
+1 -1
arch/arm/boot/dts/stm32h743i-eval.dts
··· 53 53 stdout-path = "serial0:115200n8"; 54 54 }; 55 55 56 - memory { 56 + memory@d0000000 { 57 57 device_type = "memory"; 58 58 reg = <0xd0000000 0x2000000>; 59 59 };
+1
arch/arm/boot/dts/stm32mp157a-dk1.dts
··· 25 25 }; 26 26 27 27 memory@c0000000 { 28 + device_type = "memory"; 28 29 reg = <0xc0000000 0x20000000>; 29 30 }; 30 31