2019-11-12 19:15:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+ OR X11
|
|
|
|
/*
|
|
|
|
* Copyright 2019 Collabora Ltd
|
|
|
|
* Copyright 2019 General Electric Company
|
|
|
|
*/
|
|
|
|
|
|
|
|
/ {
|
2020-01-31 13:07:55 +00:00
|
|
|
bootcount {
|
|
|
|
compatible = "u-boot,bootcount-i2c-eeprom";
|
|
|
|
i2c-eeprom = <&bootcount>;
|
|
|
|
};
|
|
|
|
|
2019-11-12 19:15:19 +00:00
|
|
|
wdt-reboot {
|
|
|
|
compatible = "wdt-reboot";
|
|
|
|
wdt = <&wdog1>;
|
|
|
|
};
|
2020-01-31 13:07:58 +00:00
|
|
|
|
|
|
|
panel-lvds0 {
|
|
|
|
compatible = "simple-panel";
|
|
|
|
};
|
2019-11-12 19:15:19 +00:00
|
|
|
};
|
2020-01-31 13:07:53 +00:00
|
|
|
|
|
|
|
&eeprom {
|
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
2020-05-28 09:48:55 +00:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
2020-01-31 13:07:53 +00:00
|
|
|
|
2020-05-28 09:48:55 +00:00
|
|
|
vpd@0 {
|
|
|
|
reg = <0 1022>;
|
2020-01-31 13:07:53 +00:00
|
|
|
};
|
|
|
|
|
2020-01-31 13:07:55 +00:00
|
|
|
bootcount: bootcount {
|
2020-05-28 09:48:55 +00:00
|
|
|
reg = <1022 2>;
|
2020-01-31 13:07:53 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|