blob: 77ea3256947be25258c09d65a34f51c78ef38d15 [file] [log] [blame]
David Gibson9138db52007-11-07 11:17:17 +11001/dts-v1/;
2
David Gibsonc4cb12e2014-06-02 15:23:40 +10003/memreserve/ 0xdeadbeef00000000 0x100000;
4/memreserve/ 123456789 010000;
5
6/ {
7 compatible = "test_tree1";
8 prop-int = <0xdeadbeef>;
9 prop-int64 = /bits/ 64 <0xdeadbeef01abcdef>;
10 prop-str = "hello world";
11 #address-cells = <1>;
12 #size-cells = <0>;
13
14 subnode@1 {
15 compatible = "subnode1";
16 reg = <1>;
17 prop-int = [deadbeef];
18
19 subsubnode {
20 compatible = "subsubnode1", "subsubnode";
Simon Glass580a9f62017-04-01 09:31:41 -060021 placeholder = "this is a placeholder string", "string2";
David Gibsonc4cb12e2014-06-02 15:23:40 +100022 prop-int = <0xdeadbeef>;
23 };
24
25 ss1 {
26 };
27 };
28
29 subnode@2 {
30 reg = <2>;
31 linux,phandle = <0x2000>;
32 prop-int = <123456789>;
33 #address-cells = <1>;
34 #size-cells = <0>;
35
36 ssn0: subsubnode@0 {
37 reg = <0>;
38 phandle = <0x2001>;
39 compatible = "subsubnode2", "subsubnode";
40 prop-int = <0726746425>;
41 };
42
43 ss2 {
44 };
45 };
46};