1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
31#include <linux/module.h>
32#include <linux/types.h>
33#include <linux/errno.h>
34#include <linux/kernel.h>
35#include <linux/reboot.h>
36#include <linux/watchdog.h>
37#include <linux/init.h>
38#include <linux/idr.h>
39#include <linux/err.h>
40#include <linux/of.h>
41
42#include "watchdog_core.h"
43
44static DEFINE_IDA(watchdog_ida);
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59static DEFINE_MUTEX(wtd_deferred_reg_mutex);
60static LIST_HEAD(wtd_deferred_reg_list);
61static bool wtd_deferred_reg_done;
62
63static int watchdog_deferred_registration_add(struct watchdog_device *wdd)
64{
65 list_add_tail(&wdd->deferred,
66 &wtd_deferred_reg_list);
67 return 0;
68}
69
70static void watchdog_deferred_registration_del(struct watchdog_device *wdd)
71{
72 struct list_head *p, *n;
73 struct watchdog_device *wdd_tmp;
74
75 list_for_each_safe(p, n, &wtd_deferred_reg_list) {
76 wdd_tmp = list_entry(p, struct watchdog_device,
77 deferred);
78 if (wdd_tmp == wdd) {
79 list_del(&wdd_tmp->deferred);
80 break;
81 }
82 }
83}
84
85static void watchdog_check_min_max_timeout(struct watchdog_device *wdd)
86{
87
88
89
90
91 if (!wdd->max_hw_heartbeat_ms && wdd->min_timeout > wdd->max_timeout) {
92 pr_info("Invalid min and max timeout values, resetting to 0!\n");
93 wdd->min_timeout = 0;
94 wdd->max_timeout = 0;
95 }
96}
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112int watchdog_init_timeout(struct watchdog_device *wdd,
113 unsigned int timeout_parm, struct device *dev)
114{
115 unsigned int t = 0;
116 int ret = 0;
117
118 watchdog_check_min_max_timeout(wdd);
119
120
121 if (!watchdog_timeout_invalid(wdd, timeout_parm) && timeout_parm) {
122 wdd->timeout = timeout_parm;
123 return ret;
124 }
125 if (timeout_parm)
126 ret = -EINVAL;
127
128
129 if (dev == NULL || dev->of_node == NULL)
130 return ret;
131 of_property_read_u32(dev->of_node, "timeout-sec", &t);
132 if (!watchdog_timeout_invalid(wdd, t) && t)
133 wdd->timeout = t;
134 else
135 ret = -EINVAL;
136
137 return ret;
138}
139EXPORT_SYMBOL_GPL(watchdog_init_timeout);
140
141static int watchdog_reboot_notifier(struct notifier_block *nb,
142 unsigned long code, void *data)
143{
144 struct watchdog_device *wdd = container_of(nb, struct watchdog_device,
145 reboot_nb);
146
147 if (code == SYS_DOWN || code == SYS_HALT) {
148 if (watchdog_active(wdd)) {
149 int ret;
150
151 ret = wdd->ops->stop(wdd);
152 if (ret)
153 return NOTIFY_BAD;
154 }
155 }
156
157 return NOTIFY_DONE;
158}
159
160static int __watchdog_register_device(struct watchdog_device *wdd)
161{
162 int ret, id = -1;
163
164 if (wdd == NULL || wdd->info == NULL || wdd->ops == NULL)
165 return -EINVAL;
166
167
168 if (!wdd->ops->start || (!wdd->ops->stop && !wdd->max_hw_heartbeat_ms))
169 return -EINVAL;
170
171 watchdog_check_min_max_timeout(wdd);
172
173
174
175
176
177
178
179
180 if (wdd->parent) {
181 ret = of_alias_get_id(wdd->parent->of_node, "watchdog");
182 if (ret >= 0)
183 id = ida_simple_get(&watchdog_ida, ret,
184 ret + 1, GFP_KERNEL);
185 }
186
187 if (id < 0)
188 id = ida_simple_get(&watchdog_ida, 0, MAX_DOGS, GFP_KERNEL);
189
190 if (id < 0)
191 return id;
192 wdd->id = id;
193
194 ret = watchdog_dev_register(wdd);
195 if (ret) {
196 ida_simple_remove(&watchdog_ida, id);
197 if (!(id == 0 && ret == -EBUSY))
198 return ret;
199
200
201 id = ida_simple_get(&watchdog_ida, 1, MAX_DOGS, GFP_KERNEL);
202 if (id < 0)
203 return id;
204 wdd->id = id;
205
206 ret = watchdog_dev_register(wdd);
207 if (ret) {
208 ida_simple_remove(&watchdog_ida, id);
209 return ret;
210 }
211 }
212
213 if (test_bit(WDOG_STOP_ON_REBOOT, &wdd->status)) {
214 wdd->reboot_nb.notifier_call = watchdog_reboot_notifier;
215
216 ret = register_reboot_notifier(&wdd->reboot_nb);
217 if (ret) {
218 pr_err("watchdog%d: Cannot register reboot notifier (%d)\n",
219 wdd->id, ret);
220 watchdog_dev_unregister(wdd);
221 ida_simple_remove(&watchdog_ida, wdd->id);
222 return ret;
223 }
224 }
225
226 return 0;
227}
228
229
230
231
232
233
234
235
236
237
238
239
240int watchdog_register_device(struct watchdog_device *wdd)
241{
242 int ret;
243
244 mutex_lock(&wtd_deferred_reg_mutex);
245 if (wtd_deferred_reg_done)
246 ret = __watchdog_register_device(wdd);
247 else
248 ret = watchdog_deferred_registration_add(wdd);
249 mutex_unlock(&wtd_deferred_reg_mutex);
250 return ret;
251}
252EXPORT_SYMBOL_GPL(watchdog_register_device);
253
254static void __watchdog_unregister_device(struct watchdog_device *wdd)
255{
256 if (wdd == NULL)
257 return;
258
259 if (test_bit(WDOG_STOP_ON_REBOOT, &wdd->status))
260 unregister_reboot_notifier(&wdd->reboot_nb);
261
262 watchdog_dev_unregister(wdd);
263 ida_simple_remove(&watchdog_ida, wdd->id);
264}
265
266
267
268
269
270
271
272
273
274void watchdog_unregister_device(struct watchdog_device *wdd)
275{
276 mutex_lock(&wtd_deferred_reg_mutex);
277 if (wtd_deferred_reg_done)
278 __watchdog_unregister_device(wdd);
279 else
280 watchdog_deferred_registration_del(wdd);
281 mutex_unlock(&wtd_deferred_reg_mutex);
282}
283
284EXPORT_SYMBOL_GPL(watchdog_unregister_device);
285
286static void devm_watchdog_unregister_device(struct device *dev, void *res)
287{
288 watchdog_unregister_device(*(struct watchdog_device **)res);
289}
290
291
292
293
294
295
296
297
298
299
300int devm_watchdog_register_device(struct device *dev,
301 struct watchdog_device *wdd)
302{
303 struct watchdog_device **rcwdd;
304 int ret;
305
306 rcwdd = devres_alloc(devm_watchdog_unregister_device, sizeof(*rcwdd),
307 GFP_KERNEL);
308 if (!rcwdd)
309 return -ENOMEM;
310
311 ret = watchdog_register_device(wdd);
312 if (!ret) {
313 *rcwdd = wdd;
314 devres_add(dev, rcwdd);
315 } else {
316 devres_free(rcwdd);
317 }
318
319 return ret;
320}
321EXPORT_SYMBOL_GPL(devm_watchdog_register_device);
322
323static int __init watchdog_deferred_registration(void)
324{
325 mutex_lock(&wtd_deferred_reg_mutex);
326 wtd_deferred_reg_done = true;
327 while (!list_empty(&wtd_deferred_reg_list)) {
328 struct watchdog_device *wdd;
329
330 wdd = list_first_entry(&wtd_deferred_reg_list,
331 struct watchdog_device, deferred);
332 list_del(&wdd->deferred);
333 __watchdog_register_device(wdd);
334 }
335 mutex_unlock(&wtd_deferred_reg_mutex);
336 return 0;
337}
338
339static int __init watchdog_init(void)
340{
341 int err;
342
343 err = watchdog_dev_init();
344 if (err < 0)
345 return err;
346
347 watchdog_deferred_registration();
348 return 0;
349}
350
351static void __exit watchdog_exit(void)
352{
353 watchdog_dev_exit();
354 ida_destroy(&watchdog_ida);
355}
356
357subsys_initcall_sync(watchdog_init);
358module_exit(watchdog_exit);
359
360MODULE_AUTHOR("Alan Cox <alan@lxorguk.ukuu.org.uk>");
361MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>");
362MODULE_DESCRIPTION("WatchDog Timer Driver Core");
363MODULE_LICENSE("GPL");
364