blob: 01321cab781b0816fca753d0f8f44522538992a7 [file] [log] [blame]
Robert Beckett18011532019-11-12 19:15:19 +00001// SPDX-License-Identifier: GPL-2.0+ OR X11
2/*
3 * Copyright 2019 Collabora Ltd
4 * Copyright 2019 General Electric Company
5 */
6
7/ {
Robert Beckettf8945bc2020-01-31 15:07:55 +02008 bootcount {
9 compatible = "u-boot,bootcount-i2c-eeprom";
10 i2c-eeprom = <&bootcount>;
11 };
12
Robert Beckett18011532019-11-12 19:15:19 +000013 wdt-reboot {
14 compatible = "wdt-reboot";
15 wdt = <&wdog1>;
16 };
Ian Ray0475db12020-01-31 15:07:58 +020017
18 panel-lvds0 {
19 compatible = "simple-panel";
20 };
Robert Beckett18011532019-11-12 19:15:19 +000021};
Robert Beckett7655c342020-01-31 15:07:53 +020022
23&eeprom {
24 partitions {
25 compatible = "fixed-partitions";
Michal Simek4f18f922020-05-28 11:48:55 +020026 #address-cells = <1>;
27 #size-cells = <1>;
Robert Beckett7655c342020-01-31 15:07:53 +020028
Michal Simek4f18f922020-05-28 11:48:55 +020029 vpd@0 {
30 reg = <0 1022>;
Robert Beckett7655c342020-01-31 15:07:53 +020031 };
32
Robert Beckettf8945bc2020-01-31 15:07:55 +020033 bootcount: bootcount {
Michal Simek4f18f922020-05-28 11:48:55 +020034 reg = <1022 2>;
Robert Beckett7655c342020-01-31 15:07:53 +020035 };
36 };
37};