blob: e976dd2b8af4d5bbbf61afc8d854e77fc982669b [file] [log] [blame]
Simon Glass9ebd5512021-06-27 17:51:10 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Test device tree file for dtoc
4 *
5 * Copyright 2017 Google, Inc
6 */
7
8/dts-v1/;
9
10/ {
11 #address-cells = <1>;
12 #size-cells = <1>;
13 i2c@0 {
14 compatible = "sandbox,i2c";
15 u-boot,dm-tpl;
16 #address-cells = <1>;
17 #size-cells = <0>;
18 spl-test {
19 u-boot,dm-pre-reloc;
20 compatible = "sandbox,spl-test";
21 #address-cells = <1>;
22 #size-cells = <0>;
23 status = "disabled";
24 pmic@9 {
25 compatible = "sandbox,pmic";
26 u-boot,dm-pre-reloc;
27 reg = <9>;
28 low-power;
29 };
30 };
31 };
32};