2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-06-19 04:09:06 +00:00
|
|
|
/*
|
|
|
|
* Test device tree file for dtoc
|
|
|
|
*
|
|
|
|
* Copyright 2017 Google, Inc
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
|
|
|
/ {
|
2017-08-29 20:15:51 +00:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
2017-06-19 04:09:06 +00:00
|
|
|
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";
|
2018-07-06 16:27:28 +00:00
|
|
|
notstring = [20 21 22 10 00];
|
2017-06-19 04:09:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
2020-07-08 03:32:06 +00:00
|
|
|
acpi-name = "\\_SB.GPO0";
|
2017-06-19 04:09:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
spl-test3 {
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
compatible = "sandbox,spl-test";
|
|
|
|
stringarray = "one";
|
2020-10-03 17:31:27 +00:00
|
|
|
longbytearray = [09 0a 0b 0c 0d 0e 0f 10];
|
2017-06-19 04:09:06 +00:00
|
|
|
};
|
|
|
|
|
2017-08-29 20:15:51 +00:00
|
|
|
i2c@0 {
|
2021-02-03 13:00:57 +00:00
|
|
|
compatible = "sandbox,i2c";
|
2017-08-29 20:15:51 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
pmic@9 {
|
2021-02-03 13:00:57 +00:00
|
|
|
compatible = "sandbox,pmic";
|
2017-08-29 20:15:51 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
reg = <9>;
|
|
|
|
low-power;
|
|
|
|
};
|
|
|
|
};
|
2017-06-19 04:09:06 +00:00
|
|
|
};
|