1/*
2 * Test device tree file for dtoc
3 *
4 * Copyright 2017 Google, Inc
5 *
6 * SPDX-License-Identifier:	GPL-2.0+
7 */
8
9 /dts-v1/;
10
11/ {
12	#address-cells = <1>;
13	#size-cells = <2>;
14
15	test1 {
16		u-boot,dm-pre-reloc;
17		compatible = "test1";
18		reg = <0x1234 0x5678 0x0>;
19	};
20
21	test2 {
22		u-boot,dm-pre-reloc;
23		compatible = "test2";
24		reg = <0x12345678 0x98765432 0x10987654>;
25	};
26
27	test3 {
28		u-boot,dm-pre-reloc;
29		compatible = "test3";
30		reg = <0x12345678 0x98765432 0x10987654 2 0 3>;
31	};
32
33};
34