blob: 7ce16feef1a176aef131d3dfaa48b266ba5ebb2e [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 = <1>;
12 #size-cells = <2>;
13
14 test1 {
Simon Glass9dbf90e2023-02-13 08:56:37 -070015 bootph-all;
Simon Glass1b1fe412017-08-29 14:15:50 -060016 compatible = "test1";
17 reg = <0x1234 0x5678 0x0>;
18 };
19
20 test2 {
Simon Glass9dbf90e2023-02-13 08:56:37 -070021 bootph-all;
Simon Glass1b1fe412017-08-29 14:15:50 -060022 compatible = "test2";
23 reg = <0x12345678 0x98765432 0x10987654>;
24 };
25
26 test3 {
Simon Glass9dbf90e2023-02-13 08:56:37 -070027 bootph-all;
Simon Glass1b1fe412017-08-29 14:15:50 -060028 compatible = "test3";
29 reg = <0x12345678 0x98765432 0x10987654 2 0 3>;
30 };
31
32};