1/dts-v1/; 2 3/memreserve/ 123456789 010000; 4 5/ { 6 compatible = "test_tree1"; 7 prop-int = <0xdeadbeef>; 8 prop-str = "hello world"; 9 #address-cells = <1>; 10 #size-cells = <0>; 11 12 subnode@1 { 13 compatible = "subnode1"; 14 reg = <1>; 15 prop-int = [deadbeef]; 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