Add qemu 2.4.0
[kvmfornfv.git] / qemu / dtc / tests / test_tree1_merge_path.dts
1 /dts-v1/;
2
3 /memreserve/ 0xdeadbeef00000000 0x100000;
4 /memreserve/ 123456789 010000;
5
6 / {
7         compatible = "test_tree1";
8         prop-int = <0xdeadbeef>;
9         prop-int64 = /bits/ 64 <0xdeadbeef01abcdef>;
10         prop-str = "hello world";
11
12         subnode@1 {
13                 compatible = "subnode1";
14                 prop-int = [deadbeef];
15
16                 subsubnode {
17                         compatible = "subsubnode1", "subsubnode";
18                         prop-int = <0xdeadbeef>;
19                 };
20
21                 ss1 {
22                 };
23         };
24
25         subnode@2 {
26                 linux,phandle = <0x2000>;
27                 prop-int = <123456789>;
28
29                 ssn0: subsubnode@0 {
30                         phandle = <0x2001>;
31                         prop-int = <0xbad>;
32                 };
33
34                 ss2 {
35                 };
36         };
37 };
38
39 &{/subnode@2/subsubnode@0} {
40         compatible = "subsubnode2", "subsubnode";
41         prop-int = <0726746425>;
42 };