blob: 85e4f5fdaeb40a854196b8e1d22e6ee648035d2a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass1b1fe412017-08-29 14:15:50 -06002/*
3 * Test device tree file for dtoc
4 *
5 * Copyright 2017 Google, Inc
Simon Glass1b1fe412017-08-29 14:15:50 -06006 */
7
Simon Glass961c1ce2018-07-06 10:27:35 -06008/dts-v1/;
Simon Glass1b1fe412017-08-29 14:15:50 -06009
10/ {
11 #address-cells = <2>;
12 #size-cells = <1>;
13
14 test1 {
15 u-boot,dm-pre-reloc;
16 compatible = "test1";
17 reg = <0x1234 0x0 0x5678>;
18 };
19
20 test2 {
21 u-boot,dm-pre-reloc;
22 compatible = "test2";
23 reg = <0x12345678 0x90123456 0x98765432>;
24 };
25
26 test3 {
27 u-boot,dm-pre-reloc;
28 compatible = "test3";
29 reg = <0x12345678 0x90123456 0x98765432 0 2 3>;
30 };
31
32};