Home | History | Annotate | Download | only in tests
      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 		prop-int = [deadbeef];
     17 
     18 		subsubnode {
     19 			compatible = "subsubnode1", "subsubnode";
     20 			prop-int = <0xdeadbeef>;
     21 		};
     22 
     23 		ss1 {
     24 			extra-prop;
     25 		};
     26 	};
     27 
     28 	subnode@2 {
     29 		reg = <2>;
     30 		linux,phandle = <0x2000>;
     31 		prop-int = <123456789>;
     32 		#address-cells = <1>;
     33 		#size-cells = <0>;
     34 
     35 		subsubnode@0 {
     36 			reg = <0>;
     37 			phandle = <0x2001>;
     38 			compatible = "subsubnode2", "subsubnode";
     39 			prop-int = <0726746425>;
     40 		};
     41 
     42 		ss2 {
     43 		};
     44 	};
     45 };
     46