diff options
| author | Alexander Shiyan <shc_work@mail.ru> | 2013-11-30 02:54:32 -0500 |
|---|---|---|
| committer | Wim Van Sebroeck <wim@iguana.be> | 2014-01-28 15:21:02 -0500 |
| commit | 25134eafb05eef6dd4b6caee3a711b63ee0c3737 (patch) | |
| tree | 17cd804d9904ad9c561b7efcbd9341c8578b7094 /Documentation | |
| parent | 8832b20093434514fda5e8a0c885270eda4fbf40 (diff) | |
watchdog: GPIO-controlled watchdog
This patch adds a watchdog driver for devices controlled through GPIO,
(Analog Devices ADM706, Maxim MAX823, National NE555 etc).
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'Documentation')
| -rw-r--r-- | Documentation/devicetree/bindings/watchdog/gpio-wdt.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/watchdog/gpio-wdt.txt b/Documentation/devicetree/bindings/watchdog/gpio-wdt.txt new file mode 100644 index 000000000000..37afec194949 --- /dev/null +++ b/Documentation/devicetree/bindings/watchdog/gpio-wdt.txt | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | * GPIO-controlled Watchdog | ||
| 2 | |||
| 3 | Required Properties: | ||
| 4 | - compatible: Should contain "linux,wdt-gpio". | ||
| 5 | - gpios: From common gpio binding; gpio connection to WDT reset pin. | ||
| 6 | - hw_algo: The algorithm used by the driver. Should be one of the | ||
| 7 | following values: | ||
| 8 | - toggle: Either a high-to-low or a low-to-high transition clears | ||
| 9 | the WDT counter. The watchdog timer is disabled when GPIO is | ||
| 10 | left floating or connected to a three-state buffer. | ||
| 11 | - level: Low or high level starts counting WDT timeout, | ||
| 12 | the opposite level disables the WDT. Active level is determined | ||
| 13 | by the GPIO flags. | ||
| 14 | - hw_margin_ms: Maximum time to reset watchdog circuit (milliseconds). | ||
| 15 | |||
| 16 | Example: | ||
| 17 | watchdog: watchdog { | ||
| 18 | /* ADM706 */ | ||
| 19 | compatible = "linux,wdt-gpio"; | ||
| 20 | gpios = <&gpio3 9 GPIO_ACTIVE_LOW>; | ||
| 21 | hw_algo = "toggle"; | ||
| 22 | hw_margin_ms = <1600>; | ||
| 23 | }; | ||
