• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/dts-v1/;
2
3/ {
4	#address-cells = <0x01>;
5	#size-cells = <0x00>;
6
7	sub1: subnode@1 {
8		prop_label: compatible = value_label: "subnode1";
9		reg = <0x01>;
10		int-array = <0x00 0x01>, int_value_label: <0x02 0x03>;
11		int8 = [56];
12		int8-array = [00 12 34 56] label:;
13		int16 = /bits/ 16 <0x3210>;
14		int16-array = /bits/ 16 <0x1234 0x5678 0x90ab 0xcdef>;
15		int16-matrix = /bits/ 16 <0x1234 0x5678>, <0x90ab 0xcdef>;
16		int64 = /bits/ 64 <0x200000000>;
17		int64-array = /bits/ 64 <0x100000000 0x00> int64_array_label_end:;
18		a-string-with-nulls = "foo\0bar", "baz";
19		a-phandle = <&subsub1>;
20		a-phandle-with-args = <&subsub1 0x00 0x01>, <&subsub1 0x02 0x03>;
21
22		subsub1: subsubnode {
23			compatible = "subsubnode1", "subsubnode";
24			phandle = <0x01>;
25
26			subsubsub1: subsubsubnode {
27				compatible = "subsubsubnode1", <0x1234>, valuea: valueb: "subsubsubnode";
28			};
29		};
30	};
31};
32