blob: 5f8c23f04b8caccebf60d6588c6ba21b5048c8e9 [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
8 /dts-v1/;
9
10/ {
11 #address-cells = <2>;
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 = /bits/ 64 <0x1234 0x5678>;
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 = /bits/ 64 <0x1234567890123456 0x9876543210987654>;
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 = /bits/ 64 <0x1234567890123456 0x9876543210987654 2 3>;
30 };
31
32};