1/dts-v1/;
2
3/memreserve/ 0x1000000000000000 0x0000000002000000;
4/memreserve/ 0x2000000000000000 0x0100000000000000;
5/memreserve/ 0x0000000000000000 0x0000000000000014;
6
7/ {
8	model = "MyBoardName";
9	compatible = "MyBoardName", "MyBoardFamilyName";
10	#address-cells = <2>;
11	#size-cells = <2>;
12
13	cpus {
14		linux,phandle = <0x1>;
15		#address-cells = <1>;
16		#size-cells = <0>;
17		PowerPC,970@0 {
18			name = "PowerPC,970";
19			device_type = "cpu";
20			reg = <0x00000000>;
21			clock-frequency = <1600000000>;
22			timebase-frequency = <33333333>;
23			linux,boot-cpu;
24			i-cache-size = <65536>;
25			d-cache-size = <32768>;
26		};
27
28		PowerPC,970@1 {
29			name = "PowerPC,970";
30			device_type = "cpu";
31			reg = <0x00000001>;
32			clock-frequency = <1600000000>;
33			timebase-frequency = <33333333>;
34			i-cache-size = <65536>;
35			d-cache-size = <32768>;
36		};
37
38	};
39
40	randomnode {
41		string = "\xff\0stuffstuff\t\t\t\n\n\n";
42		blob = [0a 0b 0c 0d de ea ad be ef];
43		ref = < &{/memory@0} >;
44		mixed = "abc", [1234], <0xa 0xb 0xc>;
45	};
46
47	memory@0 {
48		device_type = "memory";
49		memreg: reg = <0x00000000 0x00000000 0x00000000 0x20000000>;
50	};
51
52	chosen {
53		bootargs = "root=/dev/sda2";
54		linux,platform = <0x600>;
55	};
56
57};
58