summaryrefslogtreecommitdiff
path: root/doc/device-tree-bindings/watchdog/gpio-wdt.txt
blob: c9a8559a3efa82edf1aa2bec369dbd2f551b6177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
GPIO watchdog timer

Describes a simple watchdog timer which is reset by toggling a gpio.

Required properties:

- compatible: Must be "linux,wdt-gpio".
- gpios: gpio to toggle when wdt driver reset method is called.
- always-running: Boolean property indicating that the watchdog cannot
  be disabled. At present, U-Boot only supports this kind of GPIO
  watchdog.

Example:

	gpio-wdt {
		gpios = <&gpio0 1 0>;
		compatible = "linux,wdt-gpio";
		always-running;
	};