blob: 035937cfbfaef4fcc9116b82976c199af4a73a3a [file] [log] [blame]
Simon Glass4415dc12021-03-26 16:17:27 +13001// 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
14 i2c@0 {
15 compatible = "sandbox,i2c";
Simon Glass9dbf90e2023-02-13 08:56:37 -070016 bootph-all;
Simon Glass4415dc12021-03-26 16:17:27 +130017 #address-cells = <1>;
18 #size-cells = <0>;
19 pmic@9 {
20 compatible = "sandbox,pmic";
Simon Glass9dbf90e2023-02-13 08:56:37 -070021 bootph-all;
Simon Glass4415dc12021-03-26 16:17:27 +130022 reg = <9>;
23 low-power;
24
25 gpio {
26 compatible = "sandbox,gpio";
27 };
28 };
29 };
30};