blob: 239045497c6e343f2a9a36f55cd3206738c6f401 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc20ee0e2017-08-29 14:15:50 -06002/*
3 * Test device tree file for dtoc
4 *
5 * Copyright 2017 Google, Inc
Simon Glassc20ee0e2017-08-29 14:15:50 -06006 */
7
8 /dts-v1/;
9
10/ {
11 #address-cells = <1>;
12 #size-cells = <1>;
13
14 test1 {
15 u-boot,dm-pre-reloc;
16 compatible = "test1";
17 reg = <0x1234 0x5678>;
18 };
19
20 test2 {
21 u-boot,dm-pre-reloc;
22 compatible = "test2";
23 reg = <0x12345678 0x98765432 2 3>;
24 };
25
26};