blob: 2c5641618e4aef46cad9bc2b97f2240f467ff5b7 [file] [log] [blame]
David Gibsone3b32b72010-04-30 15:30:00 +10001/dts-v1/;
2
3/memreserve/ 0xdeadbeef00000000 0x100000;
4/memreserve/ 123456789 010000;
5
6/ {
7 compatible = "test_tree1";
8 prop-int = <0xdeadbeef>;
9 prop-str = "hello world";
Stephen Warrenb2904282013-09-19 22:15:13 +100010 #address-cells = <1>;
11 #size-cells = <0>;
David Gibsone3b32b72010-04-30 15:30:00 +100012
13 subnode@1 {
14 compatible = "subnode1";
Stephen Warrenb2904282013-09-19 22:15:13 +100015 reg = <1>;
David Gibsone3b32b72010-04-30 15:30:00 +100016 prop-int = [deadbeef];
17
18 subsubnode {
19 compatible = "subsubnode1", "subsubnode";
20 prop-int = <0xdeadbeef>;
21 };
22
23 ss1 {
24 };
25 };
26
27 subnode@2 {
Stephen Warrenb2904282013-09-19 22:15:13 +100028 reg = <2>;
David Gibsone3b32b72010-04-30 15:30:00 +100029 linux,phandle = <0x2000>;
30 prop-int = <123456789>;
Stephen Warrenb2904282013-09-19 22:15:13 +100031 #address-cells = <1>;
32 #size-cells = <0>;
David Gibsone3b32b72010-04-30 15:30:00 +100033
34 subsubnode@0 {
Stephen Warrenb2904282013-09-19 22:15:13 +100035 reg = <0>;
David Gibsone3b32b72010-04-30 15:30:00 +100036 phandle = <0x2001>;
37 compatible = "subsubnode2", "subsubnode";
38 prop-int = <0726746425>;
39 };
40 };
41};