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 		};
     25 	};
     26 
     27 	subnode@2 {
     28 		reg = <2>;
     29 		linux,phandle = <0x2000>;
     30 		prop-int = <123456789>;
     31 		#address-cells = <1>;
     32 		#size-cells = <0>;
     33 
     34 		subsubnode@0 {
     35 			reg = <0>;
     36 			phandle = <0x2001>;
     37 			compatible = "subsubnode2", "subsubnode";
     38 			prop-int = <0726746425>;
     39 		};
     40 
     41 		ss2 {
     42 			extranode {
     43 			};
     44 		};
     45 	};
     46 };
     47