1// SPDX-License-Identifier: GPL-2.0+ OR X11
2/*
3 * Copyright 2019 Collabora Ltd
4 * Copyright 2019 General Electric Company
5 */
6
7/ {
8	wdt-reboot {
9		compatible = "wdt-reboot";
10		wdt = <&wdog1>;
11	};
12
13	bootcount {
14		compatible = "u-boot,bootcount-i2c-eeprom";
15		i2c-eeprom = <&bootcount>;
16	};
17
18	panel-lvds0 {
19		compatible = "simple-panel";
20		backlight = <&pwm_bl>;
21	};
22};
23
24&eeprom {
25	partitions {
26		compatible = "fixed-partitions";
27		#address-cells = <1>;
28		#size-cells = <1>;
29
30		vpd@0 {
31			reg = <0 800>;
32		};
33
34		bootcount: bootcount@1022 {
35			reg = <1022 2>;
36		};
37	};
38};
39
40&gpio1 {
41	u-boot,dm-pre-reloc;
42};
43
44&gpio2 {
45	u-boot,dm-pre-reloc;
46};
47
48&gpio3 {
49	u-boot,dm-pre-reloc;
50};
51
52&gpio4 {
53	u-boot,dm-pre-reloc;
54};
55
56&gpio5 {
57	u-boot,dm-pre-reloc;
58};
59