~funderscore blog cgit wiki get in touch
aboutsummaryrefslogtreecommitdiff
blob: 8e50c756592833e31a3c3e2b931a3d9f7c0c40a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// SPDX-License-Identifier: GPL-2.0+
/*
 * Test device tree file for dtoc
 *
 * Copyright 2017 Google, Inc
 */

/dts-v1/;

/ {
	#address-cells = <1>;
	#size-cells = <1>;
	reference = <&over>;	/* nake sure that the 'over' phandle exists */
	copy-list = <&another &base>;

	dest {
		bootph-all;
		compatible = "sandbox,spl-test";
		stringarray = "one";
		longbytearray = [09 0a 0b 0c 0d 0e 0f 10];
		maybe-empty-int = <1>;

		first@0 {
			a-prop = <456>;
			b-prop = <1>;
		};

		existing {
		};

		base {
			second {
				second3 {
				};

				second2 {
					new-prop;
				};

				second1: second1 {
					new-prop;
				};

				second4 {
					use_second1 = <&second1>;
				};
			};
		};
	};

	base: base {
		compatible = "sandbox,i2c";
		bootph-all;
		#address-cells = <1>;
		#size-cells = <0>;
		over: over {
			compatible = "sandbox,pmic";
			bootph-all;
			reg = <9>;
			low-power;
		};

		first@0 {
			reg = <0>;
			a-prop = <123>;
		};

		second: second {
			second_1_bad: second1 {
				some-prop;
			};

			second2 {
				some-prop;
				use_second1_bad = <&second_1_bad>;
			};
		};
	};

	another: another {
		new-prop = "hello";
		earlier {
			wibble = <2>;
		};

		later {
			fibble = <3>;
		};
	};
};