ARM: am335x: Add missing memory node in sl50 board
authorJavier Martinez Canillas <javier@osg.samsung.com>
Wed, 31 Aug 2016 10:35:15 +0000 (12:35 +0200)
committerTony Lindgren <tony@atomide.com>
Wed, 31 Aug 2016 14:40:17 +0000 (07:40 -0700)
The skeleton.dtsi file was removed in ARM64 for different reasons as
explained in commit ("3ebee5a2e141 arm64: dts: kill skeleton.dtsi").

These also applies to ARM and it will also allow to get rid of the
following DTC warnings in the future:

"Node /memory has a reg or ranges property, but no unit name"

But the sl50 board doesn't have a, so removing the  skeleton.dtsi
inclusion from am33xx.dtsi will cause a change in the compiled DTB.

The board has 512 MiB of RAM and its starting address is 0x80000000,
so add a proper memory device node in the DTS.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/boot/dts/am335x-sl50.dts

index f802adb23ff97ac17aa0ec2344f8f3d68aa1864e..e3be7a6bf8f16db52ec3bf4bcdd0dd8c8a36caa9 100644 (file)
                };
        };
 
+       memory {
+               device_type = "memory";
+               reg = <0x80000000 0x20000000>; /* 512 MB */
+       };
+
        chosen {
                stdout-path = &uart0;
        };