Blame view

drivers/watchdog/watchdog_core.c 11.1 KB
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
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
30
31
32
33
34
  /*
   *	watchdog_core.c
   *
   *	(c) Copyright 2008-2011 Alan Cox <alan@lxorguk.ukuu.org.uk>,
   *						All Rights Reserved.
   *
   *	(c) Copyright 2008-2011 Wim Van Sebroeck <wim@iguana.be>.
   *
   *	This source code is part of the generic code that can be used
   *	by all the watchdog timer drivers.
   *
   *	Based on source code of the following authors:
   *	  Matt Domsch <Matt_Domsch@dell.com>,
   *	  Rob Radez <rob@osinvestor.com>,
   *	  Rusty Lynch <rusty@linux.co.intel.com>
   *	  Satyam Sharma <satyam@infradead.org>
   *	  Randy Dunlap <randy.dunlap@oracle.com>
   *
   *	This program is free software; you can redistribute it and/or
   *	modify it under the terms of the GNU General Public License
   *	as published by the Free Software Foundation; either version
   *	2 of the License, or (at your option) any later version.
   *
   *	Neither Alan Cox, CymruNet Ltd., Wim Van Sebroeck nor Iguana vzw.
   *	admit liability nor provide warranty for any of this software.
   *	This material is provided "AS-IS" and at no charge.
   */
  
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  
  #include <linux/module.h>	/* For EXPORT_SYMBOL/module stuff/... */
  #include <linux/types.h>	/* For standard types */
  #include <linux/errno.h>	/* For the -ENODEV/... values */
  #include <linux/kernel.h>	/* For printk/panic/... */
2165bf524   Damien Riegel   watchdog: core: a...
35
  #include <linux/reboot.h>	/* For restart handler */
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
36
37
  #include <linux/watchdog.h>	/* For watchdog specific items */
  #include <linux/init.h>		/* For __init/__exit/... */
45f5fed30   Alan Cox   watchdog: Add mul...
38
  #include <linux/idr.h>		/* For ida_* macros */
d6b469d91   Alan Cox   watchdog: create ...
39
  #include <linux/err.h>		/* For IS_ERR macros */
3048253ed   Fabio Porcedda   watchdog: core: d...
40
  #include <linux/of.h>		/* For of_get_timeout_sec */
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
41

6cfb5aa83   Wim Van Sebroeck   watchdog: correct...
42
  #include "watchdog_core.h"	/* For watchdog_dev_register/... */
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
43

45f5fed30   Alan Cox   watchdog: Add mul...
44
  static DEFINE_IDA(watchdog_ida);
ef90174f8   Jean-Baptiste Theou   watchdog: watchdo...
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
  /*
   * Deferred Registration infrastructure.
   *
   * Sometimes watchdog drivers needs to be loaded as soon as possible,
   * for example when it's impossible to disable it. To do so,
   * raising the initcall level of the watchdog driver is a solution.
   * But in such case, the miscdev is maybe not ready (subsys_initcall), and
   * watchdog_core need miscdev to register the watchdog as a char device.
   *
   * The deferred registration infrastructure offer a way for the watchdog
   * subsystem to register a watchdog properly, even before miscdev is ready.
   */
  
  static DEFINE_MUTEX(wtd_deferred_reg_mutex);
  static LIST_HEAD(wtd_deferred_reg_list);
  static bool wtd_deferred_reg_done;
  
  static int watchdog_deferred_registration_add(struct watchdog_device *wdd)
  {
  	list_add_tail(&wdd->deferred,
  		      &wtd_deferred_reg_list);
  	return 0;
  }
  
  static void watchdog_deferred_registration_del(struct watchdog_device *wdd)
  {
  	struct list_head *p, *n;
  	struct watchdog_device *wdd_tmp;
  
  	list_for_each_safe(p, n, &wtd_deferred_reg_list) {
  		wdd_tmp = list_entry(p, struct watchdog_device,
  				     deferred);
  		if (wdd_tmp == wdd) {
  			list_del(&wdd_tmp->deferred);
  			break;
  		}
  	}
  }
3048253ed   Fabio Porcedda   watchdog: core: d...
83
84
85
86
87
88
  static void watchdog_check_min_max_timeout(struct watchdog_device *wdd)
  {
  	/*
  	 * Check that we have valid min and max timeout values, if
  	 * not reset them both to 0 (=not used or unknown)
  	 */
1894cad9b   Pratyush Anand   watchdog: skip mi...
89
  	if (!wdd->max_hw_heartbeat_ms && wdd->min_timeout > wdd->max_timeout) {
3048253ed   Fabio Porcedda   watchdog: core: d...
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
  		pr_info("Invalid min and max timeout values, resetting to 0!
  ");
  		wdd->min_timeout = 0;
  		wdd->max_timeout = 0;
  	}
  }
  
  /**
   * watchdog_init_timeout() - initialize the timeout field
   * @timeout_parm: timeout module parameter
   * @dev: Device that stores the timeout-sec property
   *
   * Initialize the timeout field of the watchdog_device struct with either the
   * timeout module parameter (if it is valid value) or the timeout-sec property
   * (only if it is a valid value and the timeout_parm is out of bounds).
   * If none of them are valid then we keep the old value (which should normally
358d5a565   Wolfram Sang   watchdog: core: f...
106
   * be the default timeout value).
3048253ed   Fabio Porcedda   watchdog: core: d...
107
108
109
110
111
112
113
114
115
116
   *
   * A zero is returned on success and -EINVAL for failure.
   */
  int watchdog_init_timeout(struct watchdog_device *wdd,
  				unsigned int timeout_parm, struct device *dev)
  {
  	unsigned int t = 0;
  	int ret = 0;
  
  	watchdog_check_min_max_timeout(wdd);
6ffcff931   Sachin Kamat   watchdog: watchdo...
117
  	/* try to get the timeout module parameter first */
2c34d5991   Doug Anderson   watchdog: core: M...
118
  	if (!watchdog_timeout_invalid(wdd, timeout_parm) && timeout_parm) {
3048253ed   Fabio Porcedda   watchdog: core: d...
119
120
121
122
123
124
125
126
127
128
  		wdd->timeout = timeout_parm;
  		return ret;
  	}
  	if (timeout_parm)
  		ret = -EINVAL;
  
  	/* try to get the timeout_sec property */
  	if (dev == NULL || dev->of_node == NULL)
  		return ret;
  	of_property_read_u32(dev->of_node, "timeout-sec", &t);
2c34d5991   Doug Anderson   watchdog: core: M...
129
  	if (!watchdog_timeout_invalid(wdd, t) && t)
3048253ed   Fabio Porcedda   watchdog: core: d...
130
131
132
133
134
135
136
  		wdd->timeout = t;
  	else
  		ret = -EINVAL;
  
  	return ret;
  }
  EXPORT_SYMBOL_GPL(watchdog_init_timeout);
e13131966   Damien Riegel   watchdog: core: a...
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
  static int watchdog_reboot_notifier(struct notifier_block *nb,
  				    unsigned long code, void *data)
  {
  	struct watchdog_device *wdd = container_of(nb, struct watchdog_device,
  						   reboot_nb);
  
  	if (code == SYS_DOWN || code == SYS_HALT) {
  		if (watchdog_active(wdd)) {
  			int ret;
  
  			ret = wdd->ops->stop(wdd);
  			if (ret)
  				return NOTIFY_BAD;
  		}
  	}
  
  	return NOTIFY_DONE;
  }
2165bf524   Damien Riegel   watchdog: core: a...
155
156
157
158
159
160
161
  static int watchdog_restart_notifier(struct notifier_block *nb,
  				     unsigned long action, void *data)
  {
  	struct watchdog_device *wdd = container_of(nb, struct watchdog_device,
  						   restart_nb);
  
  	int ret;
4d8b229d5   Guenter Roeck   watchdog: Add 'ac...
162
  	ret = wdd->ops->restart(wdd, action, data);
2165bf524   Damien Riegel   watchdog: core: a...
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
  	if (ret)
  		return NOTIFY_BAD;
  
  	return NOTIFY_DONE;
  }
  
  /**
   * watchdog_set_restart_priority - Change priority of restart handler
   * @wdd: watchdog device
   * @priority: priority of the restart handler, should follow these guidelines:
   *   0:   use watchdog's restart function as last resort, has limited restart
   *        capabilies
   *   128: default restart handler, use if no other handler is expected to be
   *        available and/or if restart is sufficient to restart the entire system
   *   255: preempt all other handlers
   *
   * If a wdd->ops->restart function is provided when watchdog_register_device is
   * called, it will be registered as a restart handler with the priority given
   * here.
   */
  void watchdog_set_restart_priority(struct watchdog_device *wdd, int priority)
  {
  	wdd->restart_nb.priority = priority;
  }
  EXPORT_SYMBOL_GPL(watchdog_set_restart_priority);
ef90174f8   Jean-Baptiste Theou   watchdog: watchdo...
188
  static int __watchdog_register_device(struct watchdog_device *wdd)
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
189
  {
32ecc6392   Guenter Roeck   watchdog: Create ...
190
  	int ret, id = -1;
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
191
192
193
194
195
  
  	if (wdd == NULL || wdd->info == NULL || wdd->ops == NULL)
  		return -EINVAL;
  
  	/* Mandatory operations need to be supported */
d0684c8a9   Guenter Roeck   watchdog: Make st...
196
  	if (!wdd->ops->start || (!wdd->ops->stop && !wdd->max_hw_heartbeat_ms))
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
197
  		return -EINVAL;
3048253ed   Fabio Porcedda   watchdog: core: d...
198
  	watchdog_check_min_max_timeout(wdd);
3f43f68e2   Wim Van Sebroeck   watchdog: WatchDo...
199
200
  
  	/*
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
201
202
203
204
  	 * Note: now that all watchdog_device data has been verified, we
  	 * will not check this anymore in other functions. If data gets
  	 * corrupted in a later stage then we expect a kernel panic!
  	 */
9dd4e173f   Justin Chen   watchdog: watchdo...
205
206
207
208
209
210
211
212
213
214
  	/* Use alias for watchdog id if possible */
  	if (wdd->parent) {
  		ret = of_alias_get_id(wdd->parent->of_node, "watchdog");
  		if (ret >= 0)
  			id = ida_simple_get(&watchdog_ida, ret,
  					    ret + 1, GFP_KERNEL);
  	}
  
  	if (id < 0)
  		id = ida_simple_get(&watchdog_ida, 0, MAX_DOGS, GFP_KERNEL);
45f5fed30   Alan Cox   watchdog: Add mul...
215
216
217
  	if (id < 0)
  		return id;
  	wdd->id = id;
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
218
219
  	ret = watchdog_dev_register(wdd);
  	if (ret) {
45f5fed30   Alan Cox   watchdog: Add mul...
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
  		ida_simple_remove(&watchdog_ida, id);
  		if (!(id == 0 && ret == -EBUSY))
  			return ret;
  
  		/* Retry in case a legacy watchdog module exists */
  		id = ida_simple_get(&watchdog_ida, 1, MAX_DOGS, GFP_KERNEL);
  		if (id < 0)
  			return id;
  		wdd->id = id;
  
  		ret = watchdog_dev_register(wdd);
  		if (ret) {
  			ida_simple_remove(&watchdog_ida, id);
  			return ret;
  		}
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
235
  	}
e13131966   Damien Riegel   watchdog: core: a...
236
237
238
239
240
  	if (test_bit(WDOG_STOP_ON_REBOOT, &wdd->status)) {
  		wdd->reboot_nb.notifier_call = watchdog_reboot_notifier;
  
  		ret = register_reboot_notifier(&wdd->reboot_nb);
  		if (ret) {
0254e9535   Guenter Roeck   watchdog: Drop po...
241
242
243
  			pr_err("watchdog%d: Cannot register reboot notifier (%d)
  ",
  			       wdd->id, ret);
e13131966   Damien Riegel   watchdog: core: a...
244
  			watchdog_dev_unregister(wdd);
e13131966   Damien Riegel   watchdog: core: a...
245
  			ida_simple_remove(&watchdog_ida, wdd->id);
e13131966   Damien Riegel   watchdog: core: a...
246
247
248
  			return ret;
  		}
  	}
2165bf524   Damien Riegel   watchdog: core: a...
249
250
251
252
253
  	if (wdd->ops->restart) {
  		wdd->restart_nb.notifier_call = watchdog_restart_notifier;
  
  		ret = register_restart_handler(&wdd->restart_nb);
  		if (ret)
c01e01597   Masanari Iida   treewide: Fix typ...
254
255
  			pr_warn("watchdog%d: Cannot register restart handler (%d)
  ",
0254e9535   Guenter Roeck   watchdog: Drop po...
256
  				wdd->id, ret);
2165bf524   Damien Riegel   watchdog: core: a...
257
  	}
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
258
259
  	return 0;
  }
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
260
261
  
  /**
ef90174f8   Jean-Baptiste Theou   watchdog: watchdo...
262
263
   * watchdog_register_device() - register a watchdog device
   * @wdd: watchdog device
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
264
   *
ef90174f8   Jean-Baptiste Theou   watchdog: watchdo...
265
266
267
268
269
   * Register a watchdog device with the kernel so that the
   * watchdog timer can be accessed from userspace.
   *
   * A zero is returned on success and a negative errno code for
   * failure.
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
270
   */
ef90174f8   Jean-Baptiste Theou   watchdog: watchdo...
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
  
  int watchdog_register_device(struct watchdog_device *wdd)
  {
  	int ret;
  
  	mutex_lock(&wtd_deferred_reg_mutex);
  	if (wtd_deferred_reg_done)
  		ret = __watchdog_register_device(wdd);
  	else
  		ret = watchdog_deferred_registration_add(wdd);
  	mutex_unlock(&wtd_deferred_reg_mutex);
  	return ret;
  }
  EXPORT_SYMBOL_GPL(watchdog_register_device);
  
  static void __watchdog_unregister_device(struct watchdog_device *wdd)
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
287
  {
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
288
289
  	if (wdd == NULL)
  		return;
2165bf524   Damien Riegel   watchdog: core: a...
290
291
  	if (wdd->ops->restart)
  		unregister_restart_handler(&wdd->restart_nb);
e13131966   Damien Riegel   watchdog: core: a...
292
293
  	if (test_bit(WDOG_STOP_ON_REBOOT, &wdd->status))
  		unregister_reboot_notifier(&wdd->reboot_nb);
32ecc6392   Guenter Roeck   watchdog: Create ...
294
  	watchdog_dev_unregister(wdd);
45f5fed30   Alan Cox   watchdog: Add mul...
295
  	ida_simple_remove(&watchdog_ida, wdd->id);
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
296
  }
ef90174f8   Jean-Baptiste Theou   watchdog: watchdo...
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
  
  /**
   * watchdog_unregister_device() - unregister a watchdog device
   * @wdd: watchdog device to unregister
   *
   * Unregister a watchdog device that was previously successfully
   * registered with watchdog_register_device().
   */
  
  void watchdog_unregister_device(struct watchdog_device *wdd)
  {
  	mutex_lock(&wtd_deferred_reg_mutex);
  	if (wtd_deferred_reg_done)
  		__watchdog_unregister_device(wdd);
  	else
  		watchdog_deferred_registration_del(wdd);
  	mutex_unlock(&wtd_deferred_reg_mutex);
  }
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
315
  EXPORT_SYMBOL_GPL(watchdog_unregister_device);
83fbae5a1   Neil Armstrong   watchdog: Add a d...
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
  static void devm_watchdog_unregister_device(struct device *dev, void *res)
  {
  	watchdog_unregister_device(*(struct watchdog_device **)res);
  }
  
  /**
   * devm_watchdog_register_device() - resource managed watchdog_register_device()
   * @dev: device that is registering this watchdog device
   * @wdd: watchdog device
   *
   * Managed watchdog_register_device(). For watchdog device registered by this
   * function,  watchdog_unregister_device() is automatically called on driver
   * detach. See watchdog_register_device() for more information.
   */
  int devm_watchdog_register_device(struct device *dev,
  				struct watchdog_device *wdd)
  {
  	struct watchdog_device **rcwdd;
  	int ret;
2e91838bf   Guenter Roeck   watchdog: core: F...
335
  	rcwdd = devres_alloc(devm_watchdog_unregister_device, sizeof(*rcwdd),
83fbae5a1   Neil Armstrong   watchdog: Add a d...
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
  			     GFP_KERNEL);
  	if (!rcwdd)
  		return -ENOMEM;
  
  	ret = watchdog_register_device(wdd);
  	if (!ret) {
  		*rcwdd = wdd;
  		devres_add(dev, rcwdd);
  	} else {
  		devres_free(rcwdd);
  	}
  
  	return ret;
  }
  EXPORT_SYMBOL_GPL(devm_watchdog_register_device);
ef90174f8   Jean-Baptiste Theou   watchdog: watchdo...
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
  static int __init watchdog_deferred_registration(void)
  {
  	mutex_lock(&wtd_deferred_reg_mutex);
  	wtd_deferred_reg_done = true;
  	while (!list_empty(&wtd_deferred_reg_list)) {
  		struct watchdog_device *wdd;
  
  		wdd = list_first_entry(&wtd_deferred_reg_list,
  				       struct watchdog_device, deferred);
  		list_del(&wdd->deferred);
  		__watchdog_register_device(wdd);
  	}
  	mutex_unlock(&wtd_deferred_reg_mutex);
  	return 0;
  }
45f5fed30   Alan Cox   watchdog: Add mul...
366
367
  static int __init watchdog_init(void)
  {
32ecc6392   Guenter Roeck   watchdog: Create ...
368
369
370
371
372
  	int err;
  
  	err = watchdog_dev_init();
  	if (err < 0)
  		return err;
d6b469d91   Alan Cox   watchdog: create ...
373

ef90174f8   Jean-Baptiste Theou   watchdog: watchdo...
374
  	watchdog_deferred_registration();
d6b469d91   Alan Cox   watchdog: create ...
375
  	return 0;
45f5fed30   Alan Cox   watchdog: Add mul...
376
377
378
379
380
381
382
  }
  
  static void __exit watchdog_exit(void)
  {
  	watchdog_dev_exit();
  	ida_destroy(&watchdog_ida);
  }
ef90174f8   Jean-Baptiste Theou   watchdog: watchdo...
383
  subsys_initcall_sync(watchdog_init);
45f5fed30   Alan Cox   watchdog: Add mul...
384
  module_exit(watchdog_exit);
43316044d   Wim Van Sebroeck   watchdog: WatchDo...
385
386
387
388
  MODULE_AUTHOR("Alan Cox <alan@lxorguk.ukuu.org.uk>");
  MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>");
  MODULE_DESCRIPTION("WatchDog Timer Driver Core");
  MODULE_LICENSE("GPL");