blob: cb66c2f99ff15d2d27e5f5542efcbfe53a993b48 [file] [log] [blame]
Alexander Shiyan25134ea2013-11-30 11:54:32 +04001/*
2 * Driver for watchdog device controlled through GPIO-line
3 *
4 * Author: 2013, Alexander Shiyan <shc_work@mail.ru>
5 *
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.
10 */
11
12#include <linux/err.h>
13#include <linux/delay.h>
14#include <linux/module.h>
Alexander Shiyan25134ea2013-11-30 11:54:32 +040015#include <linux/of_gpio.h>
16#include <linux/platform_device.h>
Alexander Shiyan25134ea2013-11-30 11:54:32 +040017#include <linux/watchdog.h>
18
19#define SOFT_TIMEOUT_MIN 1
20#define SOFT_TIMEOUT_DEF 60
Alexander Shiyan25134ea2013-11-30 11:54:32 +040021
22enum {
23 HW_ALGO_TOGGLE,
24 HW_ALGO_LEVEL,
25};
26
27struct gpio_wdt_priv {
28 int gpio;
29 bool active_low;
30 bool state;
Mike Looijmansba804a92015-01-14 07:28:29 +010031 bool always_running;
Alexander Shiyan25134ea2013-11-30 11:54:32 +040032 unsigned int hw_algo;
Alexander Shiyan25134ea2013-11-30 11:54:32 +040033 struct watchdog_device wdd;
34};
35
36static void gpio_wdt_disable(struct gpio_wdt_priv *priv)
37{
38 gpio_set_value_cansleep(priv->gpio, !priv->active_low);
39
40 /* Put GPIO back to tristate */
41 if (priv->hw_algo == HW_ALGO_TOGGLE)
42 gpio_direction_input(priv->gpio);
43}
44
Guenter Roeck03bca152016-02-28 13:12:23 -080045static int gpio_wdt_ping(struct watchdog_device *wdd)
Uwe Kleine-König4f2d0b22015-07-31 09:21:36 +020046{
Uwe Kleine-König4f2d0b22015-07-31 09:21:36 +020047 struct gpio_wdt_priv *priv = watchdog_get_drvdata(wdd);
48
Uwe Kleine-König4f2d0b22015-07-31 09:21:36 +020049 switch (priv->hw_algo) {
50 case HW_ALGO_TOGGLE:
51 /* Toggle output pin */
52 priv->state = !priv->state;
53 gpio_set_value_cansleep(priv->gpio, priv->state);
54 break;
55 case HW_ALGO_LEVEL:
56 /* Pulse */
57 gpio_set_value_cansleep(priv->gpio, !priv->active_low);
58 udelay(1);
59 gpio_set_value_cansleep(priv->gpio, priv->active_low);
60 break;
61 }
Guenter Roeck03bca152016-02-28 13:12:23 -080062 return 0;
Mike Looijmansba804a92015-01-14 07:28:29 +010063}
64
65static int gpio_wdt_start(struct watchdog_device *wdd)
66{
67 struct gpio_wdt_priv *priv = watchdog_get_drvdata(wdd);
68
Guenter Roeck03bca152016-02-28 13:12:23 -080069 priv->state = priv->active_low;
70 gpio_direction_output(priv->gpio, priv->state);
Alexander Shiyan25134ea2013-11-30 11:54:32 +040071
Guenter Roeck03bca152016-02-28 13:12:23 -080072 set_bit(WDOG_HW_RUNNING, &wdd->status);
73
74 return gpio_wdt_ping(wdd);
Alexander Shiyan25134ea2013-11-30 11:54:32 +040075}
76
77static int gpio_wdt_stop(struct watchdog_device *wdd)
78{
79 struct gpio_wdt_priv *priv = watchdog_get_drvdata(wdd);
80
Mike Looijmansba804a92015-01-14 07:28:29 +010081 if (!priv->always_running) {
Mike Looijmansba804a92015-01-14 07:28:29 +010082 gpio_wdt_disable(priv);
Guenter Roeck03bca152016-02-28 13:12:23 -080083 clear_bit(WDOG_HW_RUNNING, &wdd->status);
Mike Looijmansba804a92015-01-14 07:28:29 +010084 }
Alexander Shiyan25134ea2013-11-30 11:54:32 +040085
86 return 0;
87}
88
Alexander Shiyan25134ea2013-11-30 11:54:32 +040089static const struct watchdog_info gpio_wdt_ident = {
90 .options = WDIOF_MAGICCLOSE | WDIOF_KEEPALIVEPING |
91 WDIOF_SETTIMEOUT,
92 .identity = "GPIO Watchdog",
93};
94
95static const struct watchdog_ops gpio_wdt_ops = {
96 .owner = THIS_MODULE,
97 .start = gpio_wdt_start,
98 .stop = gpio_wdt_stop,
99 .ping = gpio_wdt_ping,
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400100};
101
102static int gpio_wdt_probe(struct platform_device *pdev)
103{
104 struct gpio_wdt_priv *priv;
105 enum of_gpio_flags flags;
106 unsigned int hw_margin;
107 unsigned long f = 0;
108 const char *algo;
109 int ret;
110
111 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
112 if (!priv)
113 return -ENOMEM;
114
Wei Yongjun1ac06562016-07-26 14:50:14 +0000115 platform_set_drvdata(pdev, priv);
116
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400117 priv->gpio = of_get_gpio_flags(pdev->dev.of_node, 0, &flags);
118 if (!gpio_is_valid(priv->gpio))
119 return priv->gpio;
120
121 priv->active_low = flags & OF_GPIO_ACTIVE_LOW;
122
123 ret = of_property_read_string(pdev->dev.of_node, "hw_algo", &algo);
124 if (ret)
125 return ret;
Uwe Kleine-König0a0a5422015-07-30 11:32:23 +0200126 if (!strcmp(algo, "toggle")) {
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400127 priv->hw_algo = HW_ALGO_TOGGLE;
128 f = GPIOF_IN;
Uwe Kleine-König0a0a5422015-07-30 11:32:23 +0200129 } else if (!strcmp(algo, "level")) {
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400130 priv->hw_algo = HW_ALGO_LEVEL;
131 f = priv->active_low ? GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW;
132 } else {
133 return -EINVAL;
134 }
135
136 ret = devm_gpio_request_one(&pdev->dev, priv->gpio, f,
137 dev_name(&pdev->dev));
138 if (ret)
139 return ret;
140
141 ret = of_property_read_u32(pdev->dev.of_node,
142 "hw_margin_ms", &hw_margin);
143 if (ret)
144 return ret;
145 /* Disallow values lower than 2 and higher than 65535 ms */
146 if (hw_margin < 2 || hw_margin > 65535)
147 return -EINVAL;
148
Mike Looijmansba804a92015-01-14 07:28:29 +0100149 priv->always_running = of_property_read_bool(pdev->dev.of_node,
150 "always-running");
151
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400152 watchdog_set_drvdata(&priv->wdd, priv);
153
154 priv->wdd.info = &gpio_wdt_ident;
155 priv->wdd.ops = &gpio_wdt_ops;
156 priv->wdd.min_timeout = SOFT_TIMEOUT_MIN;
Guenter Roeck03bca152016-02-28 13:12:23 -0800157 priv->wdd.max_hw_heartbeat_ms = hw_margin;
Pratyush Anand65518812015-08-20 14:05:01 +0530158 priv->wdd.parent = &pdev->dev;
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400159
160 if (watchdog_init_timeout(&priv->wdd, 0, &pdev->dev) < 0)
161 priv->wdd.timeout = SOFT_TIMEOUT_DEF;
162
Damien Riegel28e805b2015-11-20 16:54:54 -0500163 watchdog_stop_on_reboot(&priv->wdd);
164
Mike Looijmansba804a92015-01-14 07:28:29 +0100165 if (priv->always_running)
Guenter Roeck03bca152016-02-28 13:12:23 -0800166 gpio_wdt_start(&priv->wdd);
Mike Looijmansba804a92015-01-14 07:28:29 +0100167
Guenter Roeck03bca152016-02-28 13:12:23 -0800168 ret = watchdog_register_device(&priv->wdd);
169
170 return ret;
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400171}
172
173static int gpio_wdt_remove(struct platform_device *pdev)
174{
175 struct gpio_wdt_priv *priv = platform_get_drvdata(pdev);
176
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400177 watchdog_unregister_device(&priv->wdd);
178
179 return 0;
180}
181
182static const struct of_device_id gpio_wdt_dt_ids[] = {
183 { .compatible = "linux,wdt-gpio", },
184 { }
185};
186MODULE_DEVICE_TABLE(of, gpio_wdt_dt_ids);
187
188static struct platform_driver gpio_wdt_driver = {
189 .driver = {
190 .name = "gpio-wdt",
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400191 .of_match_table = gpio_wdt_dt_ids,
192 },
193 .probe = gpio_wdt_probe,
194 .remove = gpio_wdt_remove,
195};
Jean-Baptiste Theou5e53c8e2015-06-09 09:55:03 -0700196
197#ifdef CONFIG_GPIO_WATCHDOG_ARCH_INITCALL
198static int __init gpio_wdt_init(void)
199{
200 return platform_driver_register(&gpio_wdt_driver);
201}
202arch_initcall(gpio_wdt_init);
203#else
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400204module_platform_driver(gpio_wdt_driver);
Jean-Baptiste Theou5e53c8e2015-06-09 09:55:03 -0700205#endif
Alexander Shiyan25134ea2013-11-30 11:54:32 +0400206
207MODULE_AUTHOR("Alexander Shiyan <shc_work@mail.ru>");
208MODULE_DESCRIPTION("GPIO Watchdog");
209MODULE_LICENSE("GPL");