1 /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"; 10 #address-cells = <1>; 11 #size-cells = <0>; 12 13 subnode@1 { 14 compatible = "subnode1"; 15 reg = <1>; 16 17 subsubnode { 18 compatible = "subsubnode1", "subsubnode"; 19 prop-int = <0xdeadbeef>; 20 }; 21 22 ss1 { 23 }; 24 }; 25 26 subnode@2 { 27 reg = <2>; 28 linux,phandle = <0x2000>; 29 prop-int = <123456789>; 30 #address-cells = <1>; 31 #size-cells = <0>; 32 33 subsubnode@0 { 34 reg = <0>; 35 phandle = <0x2001>; 36 compatible = "subsubnode2", "subsubnode"; 37 prop-int = <0726746425>; 38 }; 39 40 ss2 { 41 }; 42 }; 43 }; 44