2 * Driver for watchdog device controlled through GPIO-line
4 * Author: 2013, Alexander Shiyan <shc_work@mail.ru>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/err.h>
13 #include <linux/delay.h>
14 #include <linux/module.h>
15 #include <linux/of_gpio.h>
16 #include <linux/platform_device.h>
17 #include <linux/watchdog.h>
19 #define SOFT_TIMEOUT_MIN 1
20 #define SOFT_TIMEOUT_DEF 60
21 #define SOFT_TIMEOUT_MAX 0xffff
28 struct gpio_wdt_priv
{
35 unsigned int hw_margin
;
36 unsigned long last_jiffies
;
37 struct timer_list timer
;
38 struct watchdog_device wdd
;
41 static void gpio_wdt_disable(struct gpio_wdt_priv
*priv
)
43 gpio_set_value_cansleep(priv
->gpio
, !priv
->active_low
);
45 /* Put GPIO back to tristate */
46 if (priv
->hw_algo
== HW_ALGO_TOGGLE
)
47 gpio_direction_input(priv
->gpio
);
50 static void gpio_wdt_hwping(unsigned long data
)
52 struct watchdog_device
*wdd
= (struct watchdog_device
*)data
;
53 struct gpio_wdt_priv
*priv
= watchdog_get_drvdata(wdd
);
55 if (priv
->armed
&& time_after(jiffies
, priv
->last_jiffies
+
56 msecs_to_jiffies(wdd
->timeout
* 1000))) {
58 "Timer expired. System will reboot soon!\n");
63 mod_timer(&priv
->timer
, jiffies
+ priv
->hw_margin
);
65 switch (priv
->hw_algo
) {
67 /* Toggle output pin */
68 priv
->state
= !priv
->state
;
69 gpio_set_value_cansleep(priv
->gpio
, priv
->state
);
73 gpio_set_value_cansleep(priv
->gpio
, !priv
->active_low
);
75 gpio_set_value_cansleep(priv
->gpio
, priv
->active_low
);
80 static void gpio_wdt_start_impl(struct gpio_wdt_priv
*priv
)
82 priv
->state
= priv
->active_low
;
83 gpio_direction_output(priv
->gpio
, priv
->state
);
84 priv
->last_jiffies
= jiffies
;
85 gpio_wdt_hwping((unsigned long)&priv
->wdd
);
88 static int gpio_wdt_start(struct watchdog_device
*wdd
)
90 struct gpio_wdt_priv
*priv
= watchdog_get_drvdata(wdd
);
92 gpio_wdt_start_impl(priv
);
98 static int gpio_wdt_stop(struct watchdog_device
*wdd
)
100 struct gpio_wdt_priv
*priv
= watchdog_get_drvdata(wdd
);
103 if (!priv
->always_running
) {
104 mod_timer(&priv
->timer
, 0);
105 gpio_wdt_disable(priv
);
111 static int gpio_wdt_ping(struct watchdog_device
*wdd
)
113 struct gpio_wdt_priv
*priv
= watchdog_get_drvdata(wdd
);
115 priv
->last_jiffies
= jiffies
;
120 static int gpio_wdt_set_timeout(struct watchdog_device
*wdd
, unsigned int t
)
124 return gpio_wdt_ping(wdd
);
127 static const struct watchdog_info gpio_wdt_ident
= {
128 .options
= WDIOF_MAGICCLOSE
| WDIOF_KEEPALIVEPING
|
130 .identity
= "GPIO Watchdog",
133 static const struct watchdog_ops gpio_wdt_ops
= {
134 .owner
= THIS_MODULE
,
135 .start
= gpio_wdt_start
,
136 .stop
= gpio_wdt_stop
,
137 .ping
= gpio_wdt_ping
,
138 .set_timeout
= gpio_wdt_set_timeout
,
141 static int gpio_wdt_probe(struct platform_device
*pdev
)
143 struct gpio_wdt_priv
*priv
;
144 enum of_gpio_flags flags
;
145 unsigned int hw_margin
;
150 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
154 platform_set_drvdata(pdev
, priv
);
156 priv
->gpio
= of_get_gpio_flags(pdev
->dev
.of_node
, 0, &flags
);
157 if (!gpio_is_valid(priv
->gpio
))
160 priv
->active_low
= flags
& OF_GPIO_ACTIVE_LOW
;
162 ret
= of_property_read_string(pdev
->dev
.of_node
, "hw_algo", &algo
);
165 if (!strcmp(algo
, "toggle")) {
166 priv
->hw_algo
= HW_ALGO_TOGGLE
;
168 } else if (!strcmp(algo
, "level")) {
169 priv
->hw_algo
= HW_ALGO_LEVEL
;
170 f
= priv
->active_low
? GPIOF_OUT_INIT_HIGH
: GPIOF_OUT_INIT_LOW
;
175 ret
= devm_gpio_request_one(&pdev
->dev
, priv
->gpio
, f
,
176 dev_name(&pdev
->dev
));
180 ret
= of_property_read_u32(pdev
->dev
.of_node
,
181 "hw_margin_ms", &hw_margin
);
184 /* Disallow values lower than 2 and higher than 65535 ms */
185 if (hw_margin
< 2 || hw_margin
> 65535)
188 /* Use safe value (1/2 of real timeout) */
189 priv
->hw_margin
= msecs_to_jiffies(hw_margin
/ 2);
191 priv
->always_running
= of_property_read_bool(pdev
->dev
.of_node
,
194 watchdog_set_drvdata(&priv
->wdd
, priv
);
196 priv
->wdd
.info
= &gpio_wdt_ident
;
197 priv
->wdd
.ops
= &gpio_wdt_ops
;
198 priv
->wdd
.min_timeout
= SOFT_TIMEOUT_MIN
;
199 priv
->wdd
.max_timeout
= SOFT_TIMEOUT_MAX
;
200 priv
->wdd
.parent
= &pdev
->dev
;
202 if (watchdog_init_timeout(&priv
->wdd
, 0, &pdev
->dev
) < 0)
203 priv
->wdd
.timeout
= SOFT_TIMEOUT_DEF
;
205 setup_timer(&priv
->timer
, gpio_wdt_hwping
, (unsigned long)&priv
->wdd
);
207 watchdog_stop_on_reboot(&priv
->wdd
);
209 ret
= watchdog_register_device(&priv
->wdd
);
213 if (priv
->always_running
)
214 gpio_wdt_start_impl(priv
);
219 static int gpio_wdt_remove(struct platform_device
*pdev
)
221 struct gpio_wdt_priv
*priv
= platform_get_drvdata(pdev
);
223 del_timer_sync(&priv
->timer
);
224 watchdog_unregister_device(&priv
->wdd
);
229 static const struct of_device_id gpio_wdt_dt_ids
[] = {
230 { .compatible
= "linux,wdt-gpio", },
233 MODULE_DEVICE_TABLE(of
, gpio_wdt_dt_ids
);
235 static struct platform_driver gpio_wdt_driver
= {
238 .of_match_table
= gpio_wdt_dt_ids
,
240 .probe
= gpio_wdt_probe
,
241 .remove
= gpio_wdt_remove
,
244 #ifdef CONFIG_GPIO_WATCHDOG_ARCH_INITCALL
245 static int __init
gpio_wdt_init(void)
247 return platform_driver_register(&gpio_wdt_driver
);
249 arch_initcall(gpio_wdt_init
);
251 module_platform_driver(gpio_wdt_driver
);
254 MODULE_AUTHOR("Alexander Shiyan <shc_work@mail.ru>");
255 MODULE_DESCRIPTION("GPIO Watchdog");
256 MODULE_LICENSE("GPL");