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