diff options
author | Lior Amsalem <alior@marvell.com> | 2013-04-09 00:52:13 +0200 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2013-04-11 18:09:15 +0000 |
commit | 7c14f6c719de092d69c81877786e83ce7ae1a860 (patch) | |
tree | 4a9d6e7ef44584df218d41e6ad28f2a511277de4 /arch/arm/boot/dts/skeleton64.dtsi | |
parent | 6885d5acc645f7f5f660d55f74850ea81738bb07 (diff) | |
download | blackbird-op-linux-7c14f6c719de092d69c81877786e83ce7ae1a860.tar.gz blackbird-op-linux-7c14f6c719de092d69c81877786e83ce7ae1a860.zip |
ARM: dts: Add a 64 bits version of the skeleton device tree
In order to be able to use more than 4GB address-cells and size-cells
have to be set to 2
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Lior Amsalem <alior@marvell.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/boot/dts/skeleton64.dtsi')
-rw-r--r-- | arch/arm/boot/dts/skeleton64.dtsi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/skeleton64.dtsi b/arch/arm/boot/dts/skeleton64.dtsi new file mode 100644 index 000000000000..15994158a998 --- /dev/null +++ b/arch/arm/boot/dts/skeleton64.dtsi @@ -0,0 +1,13 @@ +/* + * Skeleton device tree in the 64 bits version; the bare minimum + * needed to boot; just include and add a compatible value. The + * bootloader will typically populate the memory node. + */ + +/ { + #address-cells = <2>; + #size-cells = <2>; + chosen { }; + aliases { }; + memory { device_type = "memory"; reg = <0 0>; }; +}; |