blob: c9a8559a3efa82edf1aa2bec369dbd2f551b6177 [file] [log] [blame]
Rasmus Villemoes08667602021-08-19 11:57:04 +02001GPIO watchdog timer
2
3Describes a simple watchdog timer which is reset by toggling a gpio.
4
5Required properties:
6
7- compatible: Must be "linux,wdt-gpio".
8- gpios: gpio to toggle when wdt driver reset method is called.
9- always-running: Boolean property indicating that the watchdog cannot
10 be disabled. At present, U-Boot only supports this kind of GPIO
11 watchdog.
12
13Example:
14
15 gpio-wdt {
16 gpios = <&gpio0 1 0>;
17 compatible = "linux,wdt-gpio";
18 always-running;
19 };