1 /dts-v1/; 2 /memreserve/ 0xdeadbeef00000000 0x100000; 3 /memreserve/ 123456789 010000; 4 5 / { 6 compatible = "test_tree1"; 7 prop-int = "wrong!"; 8 prop-str = "hello world"; 9 #address-cells = <1>; 10 #size-cells = <0>; 11 12 subnode@1 { 13 compatible = "subnode1"; 14 reg = <1>; 15 16 subsubnode { 17 compatible = "subsubnode1", "subsubnode"; 18 prop-int = <0xdeadbeef>; 19 }; 20 21 ss1 { 22 }; 23 }; 24 25 subnode@2 { 26 reg = <2>; 27 linux,phandle = <0x2000>; 28 prop-int = <123456789>; 29 #address-cells = <1>; 30 #size-cells = <0>; 31 32 ss2 { 33 }; 34 }; 35 }; 36 37 / { 38 prop-int = <0xdeadbeef>; 39 prop-int64 = /bits/ 64 <0xdeadbeef01abcdef>; 40 subnode@1 { 41 prop-int = [deadbeef]; 42 }; 43 subnode@2 { 44 ssn0: subsubnode@0 { 45 reg = <0>; 46 phandle = <0x2001>; 47 compatible = "subsubnode2", "subsubnode"; 48 prop-int = <0726746425>; 49 }; 50 }; 51 }; 52