1// 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 spl-test { 14 u-boot,dm-pre-reloc; 15 compatible = "sandbox,spl-test"; 16 boolval; 17 intval = <1>; 18 intarray = <2 3 4>; 19 byteval = [05]; 20 bytearray = [06]; 21 longbytearray = [09 0a 0b 0c 0d 0e 0f 10 11]; 22 stringval = "message"; 23 stringarray = "multi-word", "message"; 24 notstring = [20 21 22 10 00]; 25 }; 26 27 spl-test2 { 28 u-boot,dm-pre-reloc; 29 compatible = "sandbox,spl-test"; 30 intval = <3>; 31 intarray = <5>; 32 byteval = [08]; 33 bytearray = [01 23 34]; 34 longbytearray = [09 0a 0b 0c]; 35 stringval = "message2"; 36 stringarray = "another", "multi-word", "message"; 37 acpi-name = "\\_SB.GPO0"; 38 }; 39 40 spl-test3 { 41 u-boot,dm-pre-reloc; 42 compatible = "sandbox,spl-test"; 43 stringarray = "one"; 44 longbytearray = [09 0a 0b 0c 0d 0e 0f 10]; 45 }; 46 47 i2c@0 { 48 compatible = "sandbox,i2c-test"; 49 u-boot,dm-pre-reloc; 50 #address-cells = <1>; 51 #size-cells = <0>; 52 pmic@9 { 53 compatible = "sandbox,pmic-test"; 54 u-boot,dm-pre-reloc; 55 reg = <9>; 56 low-power; 57 }; 58 }; 59}; 60