blob: 77115a7a9acd516d0bfde8e46def1c2b35f3d91a [file] [log] [blame]
Robert Beckettd494aec2019-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 Beckett41613a72020-01-31 15:07:55 +02008 bootcount {
9 compatible = "u-boot,bootcount-i2c-eeprom";
10 i2c-eeprom = <&bootcount>;
11 };
12
Robert Beckettd494aec2019-11-12 19:15:19 +000013 wdt-reboot {
14 compatible = "wdt-reboot";
15 wdt = <&wdog1>;
16 };
17};
Robert Beckettb64088c2020-01-31 15:07:53 +020018
19&eeprom {
20 partitions {
21 compatible = "fixed-partitions";
22
23 vpd {
24 offset = <0>;
25 size = <1022>;
26 };
27
Robert Beckett41613a72020-01-31 15:07:55 +020028 bootcount: bootcount {
Robert Beckettb64088c2020-01-31 15:07:53 +020029 offset = <1022>;
30 size = <2>;
31 };
32 };
33};