hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * Test device tree file for dtoc
 *
 * Copyright 2017 Google, Inc
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
 /dts-v1/;
 
/ {
   #address-cells = <1>;
   #size-cells = <1>;
   spl-test {
       u-boot,dm-pre-reloc;
       compatible = "sandbox,spl-test";
       boolval;
       intval = <1>;
       intarray = <2 3 4>;
       byteval = [05];
       bytearray = [06];
       longbytearray = [09 0a 0b 0c 0d 0e 0f 10 11];
       stringval = "message";
       stringarray = "multi-word", "message";
   };
 
   spl-test2 {
       u-boot,dm-pre-reloc;
       compatible = "sandbox,spl-test";
       intval = <3>;
       intarray = <5>;
       byteval = [08];
       bytearray = [01 23 34];
       longbytearray = [09 0a 0b 0c];
       stringval = "message2";
       stringarray = "another", "multi-word", "message";
   };
 
   spl-test3 {
       u-boot,dm-pre-reloc;
       compatible = "sandbox,spl-test";
       stringarray = "one";
   };
 
   spl-test4 {
       u-boot,dm-pre-reloc;
       compatible = "sandbox,spl-test.2";
   };
 
   i2c@0 {
       compatible = "sandbox,i2c-test";
       u-boot,dm-pre-reloc;
       #address-cells = <1>;
       #size-cells = <0>;
       pmic@9 {
           compatible = "sandbox,pmic-test";
           u-boot,dm-pre-reloc;
           reg = <9>;
           low-power;
       };
   };
};