4 * (c) Copyright 2008-2011 Alan Cox <alan@lxorguk.ukuu.org.uk>,
7 * (c) Copyright 2008-2011 Wim Van Sebroeck <wim@iguana.be>.
10 * This source code is part of the generic code that can be used
11 * by all the watchdog timer drivers.
13 * This part of the generic code takes care of the following
14 * misc device: /dev/watchdog.
16 * Based on source code of the following authors:
17 * Matt Domsch <Matt_Domsch@dell.com>,
18 * Rob Radez <rob@osinvestor.com>,
19 * Rusty Lynch <rusty@linux.co.intel.com>
20 * Satyam Sharma <satyam@infradead.org>
21 * Randy Dunlap <randy.dunlap@oracle.com>
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public License
25 * as published by the Free Software Foundation; either version
26 * 2 of the License, or (at your option) any later version.
28 * Neither Alan Cox, CymruNet Ltd., Wim Van Sebroeck nor Iguana vzw.
29 * admit liability nor provide warranty for any of this software.
30 * This material is provided "AS-IS" and at no charge.
33 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35 #include <linux/cdev.h> /* For character device */
36 #include <linux/errno.h> /* For the -ENODEV/... values */
37 #include <linux/fs.h> /* For file operations */
38 #include <linux/init.h> /* For __init/__exit/... */
39 #include <linux/jiffies.h> /* For timeout functions */
40 #include <linux/kernel.h> /* For printk/panic/... */
41 #include <linux/kref.h> /* For data references */
42 #include <linux/miscdevice.h> /* For handling misc devices */
43 #include <linux/module.h> /* For module stuff/... */
44 #include <linux/mutex.h> /* For mutexes */
45 #include <linux/slab.h> /* For memory functions */
46 #include <linux/types.h> /* For standard types (like size_t) */
47 #include <linux/watchdog.h> /* For watchdog specific items */
48 #include <linux/workqueue.h> /* For workqueue */
49 #include <linux/uaccess.h> /* For copy_to_user/put_user/... */
51 #include "watchdog_core.h"
54 * struct watchdog_core_data - watchdog core internal data
55 * @kref: Reference count.
56 * @cdev: The watchdog's Character device.
57 * @wdd: Pointer to watchdog device.
58 * @lock: Lock for watchdog core.
59 * @status: Watchdog core internal status bits.
61 struct watchdog_core_data
{
64 struct watchdog_device
*wdd
;
66 unsigned long last_keepalive
;
67 unsigned long last_hw_keepalive
;
68 struct delayed_work work
;
69 unsigned long status
; /* Internal status bits */
70 #define _WDOG_DEV_OPEN 0 /* Opened ? */
71 #define _WDOG_ALLOW_RELEASE 1 /* Did we receive the magic char ? */
72 #define _WDOG_KEEPALIVE 2 /* Did we receive a keepalive ? */
75 /* the dev_t structure to store the dynamically allocated watchdog devices */
76 static dev_t watchdog_devt
;
77 /* Reference to watchdog device behind /dev/watchdog */
78 static struct watchdog_core_data
*old_wd_data
;
80 static struct workqueue_struct
*watchdog_wq
;
82 static inline bool watchdog_need_worker(struct watchdog_device
*wdd
)
84 /* All variables in milli-seconds */
85 unsigned int hm
= wdd
->max_hw_heartbeat_ms
;
86 unsigned int t
= wdd
->timeout
* 1000;
89 * A worker to generate heartbeat requests is needed if all of the
90 * following conditions are true.
91 * - Userspace activated the watchdog.
92 * - The driver provided a value for the maximum hardware timeout, and
93 * thus is aware that the framework supports generating heartbeat
95 * - Userspace requests a longer timeout than the hardware can handle.
97 * Alternatively, if userspace has not opened the watchdog
98 * device, we take care of feeding the watchdog if it is
101 return (hm
&& watchdog_active(wdd
) && t
> hm
) ||
102 (t
&& !watchdog_active(wdd
) && watchdog_hw_running(wdd
));
105 static long watchdog_next_keepalive(struct watchdog_device
*wdd
)
107 struct watchdog_core_data
*wd_data
= wdd
->wd_data
;
108 unsigned int timeout_ms
= wdd
->timeout
* 1000;
109 unsigned long keepalive_interval
;
110 unsigned long last_heartbeat
;
111 unsigned long virt_timeout
;
112 unsigned int hw_heartbeat_ms
;
114 virt_timeout
= wd_data
->last_keepalive
+ msecs_to_jiffies(timeout_ms
);
115 hw_heartbeat_ms
= min_not_zero(timeout_ms
, wdd
->max_hw_heartbeat_ms
);
116 keepalive_interval
= msecs_to_jiffies(hw_heartbeat_ms
/ 2);
118 if (!watchdog_active(wdd
))
119 return keepalive_interval
;
122 * To ensure that the watchdog times out wdd->timeout seconds
123 * after the most recent ping from userspace, the last
124 * worker ping has to come in hw_heartbeat_ms before this timeout.
126 last_heartbeat
= virt_timeout
- msecs_to_jiffies(hw_heartbeat_ms
);
127 return min_t(long, last_heartbeat
- jiffies
, keepalive_interval
);
130 static inline void watchdog_update_worker(struct watchdog_device
*wdd
)
132 struct watchdog_core_data
*wd_data
= wdd
->wd_data
;
134 if (watchdog_need_worker(wdd
)) {
135 long t
= watchdog_next_keepalive(wdd
);
138 mod_delayed_work(watchdog_wq
, &wd_data
->work
, t
);
140 cancel_delayed_work(&wd_data
->work
);
144 static int __watchdog_ping(struct watchdog_device
*wdd
)
146 struct watchdog_core_data
*wd_data
= wdd
->wd_data
;
147 unsigned long earliest_keepalive
= wd_data
->last_hw_keepalive
+
148 msecs_to_jiffies(wdd
->min_hw_heartbeat_ms
);
151 if (time_is_after_jiffies(earliest_keepalive
)) {
152 mod_delayed_work(watchdog_wq
, &wd_data
->work
,
153 earliest_keepalive
- jiffies
);
157 wd_data
->last_hw_keepalive
= jiffies
;
160 err
= wdd
->ops
->ping(wdd
); /* ping the watchdog */
162 err
= wdd
->ops
->start(wdd
); /* restart watchdog */
164 watchdog_update_worker(wdd
);
170 * watchdog_ping: ping the watchdog.
171 * @wdd: the watchdog device to ping
173 * The caller must hold wd_data->lock.
175 * If the watchdog has no own ping operation then it needs to be
176 * restarted via the start operation. This wrapper function does
178 * We only ping when the watchdog device is running.
181 static int watchdog_ping(struct watchdog_device
*wdd
)
183 struct watchdog_core_data
*wd_data
= wdd
->wd_data
;
185 if (!watchdog_active(wdd
) && !watchdog_hw_running(wdd
))
188 set_bit(_WDOG_KEEPALIVE
, &wd_data
->status
);
190 wd_data
->last_keepalive
= jiffies
;
191 return __watchdog_ping(wdd
);
194 static void watchdog_ping_work(struct work_struct
*work
)
196 struct watchdog_core_data
*wd_data
;
197 struct watchdog_device
*wdd
;
199 wd_data
= container_of(to_delayed_work(work
), struct watchdog_core_data
,
202 mutex_lock(&wd_data
->lock
);
204 if (wdd
&& (watchdog_active(wdd
) || watchdog_hw_running(wdd
)))
205 __watchdog_ping(wdd
);
206 mutex_unlock(&wd_data
->lock
);
210 * watchdog_start: wrapper to start the watchdog.
211 * @wdd: the watchdog device to start
213 * The caller must hold wd_data->lock.
215 * Start the watchdog if it is not active and mark it active.
216 * This function returns zero on success or a negative errno code for
220 static int watchdog_start(struct watchdog_device
*wdd
)
222 struct watchdog_core_data
*wd_data
= wdd
->wd_data
;
223 unsigned long started_at
;
226 if (watchdog_active(wdd
))
229 set_bit(_WDOG_KEEPALIVE
, &wd_data
->status
);
231 started_at
= jiffies
;
232 if (watchdog_hw_running(wdd
) && wdd
->ops
->ping
)
233 err
= wdd
->ops
->ping(wdd
);
235 err
= wdd
->ops
->start(wdd
);
237 set_bit(WDOG_ACTIVE
, &wdd
->status
);
238 wd_data
->last_keepalive
= started_at
;
239 watchdog_update_worker(wdd
);
246 * watchdog_stop: wrapper to stop the watchdog.
247 * @wdd: the watchdog device to stop
249 * The caller must hold wd_data->lock.
251 * Stop the watchdog if it is still active and unmark it active.
252 * This function returns zero on success or a negative errno code for
254 * If the 'nowayout' feature was set, the watchdog cannot be stopped.
257 static int watchdog_stop(struct watchdog_device
*wdd
)
261 if (!watchdog_active(wdd
))
264 if (test_bit(WDOG_NO_WAY_OUT
, &wdd
->status
)) {
265 pr_info("watchdog%d: nowayout prevents watchdog being stopped!\n",
270 if (wdd
->ops
->stop
) {
271 clear_bit(WDOG_HW_RUNNING
, &wdd
->status
);
272 err
= wdd
->ops
->stop(wdd
);
274 set_bit(WDOG_HW_RUNNING
, &wdd
->status
);
278 clear_bit(WDOG_ACTIVE
, &wdd
->status
);
279 watchdog_update_worker(wdd
);
286 * watchdog_get_status: wrapper to get the watchdog status
287 * @wdd: the watchdog device to get the status from
289 * The caller must hold wd_data->lock.
291 * Get the watchdog's status flags.
294 static unsigned int watchdog_get_status(struct watchdog_device
*wdd
)
296 struct watchdog_core_data
*wd_data
= wdd
->wd_data
;
299 if (wdd
->ops
->status
)
300 status
= wdd
->ops
->status(wdd
);
302 status
= wdd
->bootstatus
& (WDIOF_CARDRESET
|
310 if (test_bit(_WDOG_ALLOW_RELEASE
, &wd_data
->status
))
311 status
|= WDIOF_MAGICCLOSE
;
313 if (test_and_clear_bit(_WDOG_KEEPALIVE
, &wd_data
->status
))
314 status
|= WDIOF_KEEPALIVEPING
;
320 * watchdog_set_timeout: set the watchdog timer timeout
321 * @wdd: the watchdog device to set the timeout for
322 * @timeout: timeout to set in seconds
324 * The caller must hold wd_data->lock.
327 static int watchdog_set_timeout(struct watchdog_device
*wdd
,
328 unsigned int timeout
)
332 if (!(wdd
->info
->options
& WDIOF_SETTIMEOUT
))
335 if (watchdog_timeout_invalid(wdd
, timeout
))
338 if (wdd
->ops
->set_timeout
)
339 err
= wdd
->ops
->set_timeout(wdd
, timeout
);
341 wdd
->timeout
= timeout
;
343 watchdog_update_worker(wdd
);
349 * watchdog_get_timeleft: wrapper to get the time left before a reboot
350 * @wdd: the watchdog device to get the remaining time from
351 * @timeleft: the time that's left
353 * The caller must hold wd_data->lock.
355 * Get the time before a watchdog will reboot (if not pinged).
358 static int watchdog_get_timeleft(struct watchdog_device
*wdd
,
359 unsigned int *timeleft
)
363 if (!wdd
->ops
->get_timeleft
)
366 *timeleft
= wdd
->ops
->get_timeleft(wdd
);
371 #ifdef CONFIG_WATCHDOG_SYSFS
372 static ssize_t
nowayout_show(struct device
*dev
, struct device_attribute
*attr
,
375 struct watchdog_device
*wdd
= dev_get_drvdata(dev
);
377 return sprintf(buf
, "%d\n", !!test_bit(WDOG_NO_WAY_OUT
, &wdd
->status
));
379 static DEVICE_ATTR_RO(nowayout
);
381 static ssize_t
status_show(struct device
*dev
, struct device_attribute
*attr
,
384 struct watchdog_device
*wdd
= dev_get_drvdata(dev
);
385 struct watchdog_core_data
*wd_data
= wdd
->wd_data
;
388 mutex_lock(&wd_data
->lock
);
389 status
= watchdog_get_status(wdd
);
390 mutex_unlock(&wd_data
->lock
);
392 return sprintf(buf
, "0x%x\n", status
);
394 static DEVICE_ATTR_RO(status
);
396 static ssize_t
bootstatus_show(struct device
*dev
,
397 struct device_attribute
*attr
, char *buf
)
399 struct watchdog_device
*wdd
= dev_get_drvdata(dev
);
401 return sprintf(buf
, "%u\n", wdd
->bootstatus
);
403 static DEVICE_ATTR_RO(bootstatus
);
405 static ssize_t
timeleft_show(struct device
*dev
, struct device_attribute
*attr
,
408 struct watchdog_device
*wdd
= dev_get_drvdata(dev
);
409 struct watchdog_core_data
*wd_data
= wdd
->wd_data
;
413 mutex_lock(&wd_data
->lock
);
414 status
= watchdog_get_timeleft(wdd
, &val
);
415 mutex_unlock(&wd_data
->lock
);
417 status
= sprintf(buf
, "%u\n", val
);
421 static DEVICE_ATTR_RO(timeleft
);
423 static ssize_t
timeout_show(struct device
*dev
, struct device_attribute
*attr
,
426 struct watchdog_device
*wdd
= dev_get_drvdata(dev
);
428 return sprintf(buf
, "%u\n", wdd
->timeout
);
430 static DEVICE_ATTR_RO(timeout
);
432 static ssize_t
identity_show(struct device
*dev
, struct device_attribute
*attr
,
435 struct watchdog_device
*wdd
= dev_get_drvdata(dev
);
437 return sprintf(buf
, "%s\n", wdd
->info
->identity
);
439 static DEVICE_ATTR_RO(identity
);
441 static ssize_t
state_show(struct device
*dev
, struct device_attribute
*attr
,
444 struct watchdog_device
*wdd
= dev_get_drvdata(dev
);
446 if (watchdog_active(wdd
))
447 return sprintf(buf
, "active\n");
449 return sprintf(buf
, "inactive\n");
451 static DEVICE_ATTR_RO(state
);
453 static umode_t
wdt_is_visible(struct kobject
*kobj
, struct attribute
*attr
,
456 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
457 struct watchdog_device
*wdd
= dev_get_drvdata(dev
);
458 umode_t mode
= attr
->mode
;
460 if (attr
== &dev_attr_timeleft
.attr
&& !wdd
->ops
->get_timeleft
)
465 static struct attribute
*wdt_attrs
[] = {
466 &dev_attr_state
.attr
,
467 &dev_attr_identity
.attr
,
468 &dev_attr_timeout
.attr
,
469 &dev_attr_timeleft
.attr
,
470 &dev_attr_bootstatus
.attr
,
471 &dev_attr_status
.attr
,
472 &dev_attr_nowayout
.attr
,
476 static const struct attribute_group wdt_group
= {
478 .is_visible
= wdt_is_visible
,
480 __ATTRIBUTE_GROUPS(wdt
);
482 #define wdt_groups NULL
486 * watchdog_ioctl_op: call the watchdog drivers ioctl op if defined
487 * @wdd: the watchdog device to do the ioctl on
488 * @cmd: watchdog command
489 * @arg: argument pointer
491 * The caller must hold wd_data->lock.
494 static int watchdog_ioctl_op(struct watchdog_device
*wdd
, unsigned int cmd
,
497 if (!wdd
->ops
->ioctl
)
500 return wdd
->ops
->ioctl(wdd
, cmd
, arg
);
504 * watchdog_write: writes to the watchdog.
505 * @file: file from VFS
506 * @data: user address of data
507 * @len: length of data
508 * @ppos: pointer to the file offset
510 * A write to a watchdog device is defined as a keepalive ping.
511 * Writing the magic 'V' sequence allows the next close to turn
512 * off the watchdog (if 'nowayout' is not set).
515 static ssize_t
watchdog_write(struct file
*file
, const char __user
*data
,
516 size_t len
, loff_t
*ppos
)
518 struct watchdog_core_data
*wd_data
= file
->private_data
;
519 struct watchdog_device
*wdd
;
528 * Note: just in case someone wrote the magic character
531 clear_bit(_WDOG_ALLOW_RELEASE
, &wd_data
->status
);
533 /* scan to see whether or not we got the magic character */
534 for (i
= 0; i
!= len
; i
++) {
535 if (get_user(c
, data
+ i
))
538 set_bit(_WDOG_ALLOW_RELEASE
, &wd_data
->status
);
541 /* someone wrote to us, so we send the watchdog a keepalive ping */
544 mutex_lock(&wd_data
->lock
);
547 err
= watchdog_ping(wdd
);
548 mutex_unlock(&wd_data
->lock
);
557 * watchdog_ioctl: handle the different ioctl's for the watchdog device.
558 * @file: file handle to the device
559 * @cmd: watchdog command
560 * @arg: argument pointer
562 * The watchdog API defines a common set of functions for all watchdogs
563 * according to their available features.
566 static long watchdog_ioctl(struct file
*file
, unsigned int cmd
,
569 struct watchdog_core_data
*wd_data
= file
->private_data
;
570 void __user
*argp
= (void __user
*)arg
;
571 struct watchdog_device
*wdd
;
572 int __user
*p
= argp
;
576 mutex_lock(&wd_data
->lock
);
584 err
= watchdog_ioctl_op(wdd
, cmd
, arg
);
585 if (err
!= -ENOIOCTLCMD
)
589 case WDIOC_GETSUPPORT
:
590 err
= copy_to_user(argp
, wdd
->info
,
591 sizeof(struct watchdog_info
)) ? -EFAULT
: 0;
593 case WDIOC_GETSTATUS
:
594 val
= watchdog_get_status(wdd
);
595 err
= put_user(val
, p
);
597 case WDIOC_GETBOOTSTATUS
:
598 err
= put_user(wdd
->bootstatus
, p
);
600 case WDIOC_SETOPTIONS
:
601 if (get_user(val
, p
)) {
605 if (val
& WDIOS_DISABLECARD
) {
606 err
= watchdog_stop(wdd
);
610 if (val
& WDIOS_ENABLECARD
)
611 err
= watchdog_start(wdd
);
613 case WDIOC_KEEPALIVE
:
614 if (!(wdd
->info
->options
& WDIOF_KEEPALIVEPING
)) {
618 err
= watchdog_ping(wdd
);
620 case WDIOC_SETTIMEOUT
:
621 if (get_user(val
, p
)) {
625 err
= watchdog_set_timeout(wdd
, val
);
628 /* If the watchdog is active then we send a keepalive ping
629 * to make sure that the watchdog keep's running (and if
630 * possible that it takes the new timeout) */
631 err
= watchdog_ping(wdd
);
635 case WDIOC_GETTIMEOUT
:
636 /* timeout == 0 means that we don't know the timeout */
637 if (wdd
->timeout
== 0) {
641 err
= put_user(wdd
->timeout
, p
);
643 case WDIOC_GETTIMELEFT
:
644 err
= watchdog_get_timeleft(wdd
, &val
);
647 err
= put_user(val
, p
);
655 mutex_unlock(&wd_data
->lock
);
660 * watchdog_open: open the /dev/watchdog* devices.
661 * @inode: inode of device
662 * @file: file handle to device
664 * When the /dev/watchdog* device gets opened, we start the watchdog.
665 * Watch out: the /dev/watchdog device is single open, so we make sure
666 * it can only be opened once.
669 static int watchdog_open(struct inode
*inode
, struct file
*file
)
671 struct watchdog_core_data
*wd_data
;
672 struct watchdog_device
*wdd
;
675 /* Get the corresponding watchdog device */
676 if (imajor(inode
) == MISC_MAJOR
)
677 wd_data
= old_wd_data
;
679 wd_data
= container_of(inode
->i_cdev
, struct watchdog_core_data
,
682 /* the watchdog is single open! */
683 if (test_and_set_bit(_WDOG_DEV_OPEN
, &wd_data
->status
))
689 * If the /dev/watchdog device is open, we don't want the module
692 if (!watchdog_hw_running(wdd
) && !try_module_get(wdd
->ops
->owner
)) {
697 err
= watchdog_start(wdd
);
701 file
->private_data
= wd_data
;
703 if (!watchdog_hw_running(wdd
))
704 kref_get(&wd_data
->kref
);
706 /* dev/watchdog is a virtual (and thus non-seekable) filesystem */
707 return nonseekable_open(inode
, file
);
710 module_put(wd_data
->wdd
->ops
->owner
);
712 clear_bit(_WDOG_DEV_OPEN
, &wd_data
->status
);
716 static void watchdog_core_data_release(struct kref
*kref
)
718 struct watchdog_core_data
*wd_data
;
720 wd_data
= container_of(kref
, struct watchdog_core_data
, kref
);
726 * watchdog_release: release the watchdog device.
727 * @inode: inode of device
728 * @file: file handle to device
730 * This is the code for when /dev/watchdog gets closed. We will only
731 * stop the watchdog when we have received the magic char (and nowayout
732 * was not set), else the watchdog will keep running.
735 static int watchdog_release(struct inode
*inode
, struct file
*file
)
737 struct watchdog_core_data
*wd_data
= file
->private_data
;
738 struct watchdog_device
*wdd
;
742 mutex_lock(&wd_data
->lock
);
749 * We only stop the watchdog if we received the magic character
750 * or if WDIOF_MAGICCLOSE is not set. If nowayout was set then
751 * watchdog_stop will fail.
753 if (!test_bit(WDOG_ACTIVE
, &wdd
->status
))
755 else if (test_and_clear_bit(_WDOG_ALLOW_RELEASE
, &wd_data
->status
) ||
756 !(wdd
->info
->options
& WDIOF_MAGICCLOSE
))
757 err
= watchdog_stop(wdd
);
759 /* If the watchdog was not stopped, send a keepalive ping */
761 pr_crit("watchdog%d: watchdog did not stop!\n", wdd
->id
);
765 watchdog_update_worker(wdd
);
767 /* make sure that /dev/watchdog can be re-opened */
768 clear_bit(_WDOG_DEV_OPEN
, &wd_data
->status
);
771 running
= wdd
&& watchdog_hw_running(wdd
);
772 mutex_unlock(&wd_data
->lock
);
774 * Allow the owner module to be unloaded again unless the watchdog
775 * is still running. If the watchdog is still running, it can not
776 * be stopped, and its driver must not be unloaded.
779 module_put(wd_data
->cdev
.owner
);
780 kref_put(&wd_data
->kref
, watchdog_core_data_release
);
785 static const struct file_operations watchdog_fops
= {
786 .owner
= THIS_MODULE
,
787 .write
= watchdog_write
,
788 .unlocked_ioctl
= watchdog_ioctl
,
789 .open
= watchdog_open
,
790 .release
= watchdog_release
,
793 static struct miscdevice watchdog_miscdev
= {
794 .minor
= WATCHDOG_MINOR
,
796 .fops
= &watchdog_fops
,
800 * watchdog_cdev_register: register watchdog character device
801 * @wdd: watchdog device
802 * @devno: character device number
804 * Register a watchdog character device including handling the legacy
805 * /dev/watchdog node. /dev/watchdog is actually a miscdevice and
806 * thus we set it up like that.
809 static int watchdog_cdev_register(struct watchdog_device
*wdd
, dev_t devno
)
811 struct watchdog_core_data
*wd_data
;
814 wd_data
= kzalloc(sizeof(struct watchdog_core_data
), GFP_KERNEL
);
817 kref_init(&wd_data
->kref
);
818 mutex_init(&wd_data
->lock
);
821 wdd
->wd_data
= wd_data
;
826 INIT_DELAYED_WORK(&wd_data
->work
, watchdog_ping_work
);
829 old_wd_data
= wd_data
;
830 watchdog_miscdev
.parent
= wdd
->parent
;
831 err
= misc_register(&watchdog_miscdev
);
833 pr_err("%s: cannot register miscdev on minor=%d (err=%d).\n",
834 wdd
->info
->identity
, WATCHDOG_MINOR
, err
);
836 pr_err("%s: a legacy watchdog module is probably present.\n",
837 wdd
->info
->identity
);
844 /* Fill in the data structures */
845 cdev_init(&wd_data
->cdev
, &watchdog_fops
);
846 wd_data
->cdev
.owner
= wdd
->ops
->owner
;
849 err
= cdev_add(&wd_data
->cdev
, devno
, 1);
851 pr_err("watchdog%d unable to add device %d:%d\n",
852 wdd
->id
, MAJOR(watchdog_devt
), wdd
->id
);
854 misc_deregister(&watchdog_miscdev
);
856 kref_put(&wd_data
->kref
, watchdog_core_data_release
);
861 /* Record time of most recent heartbeat as 'just before now'. */
862 wd_data
->last_hw_keepalive
= jiffies
- 1;
865 * If the watchdog is running, prevent its driver from being unloaded,
866 * and schedule an immediate ping.
868 if (watchdog_hw_running(wdd
)) {
869 __module_get(wdd
->ops
->owner
);
870 kref_get(&wd_data
->kref
);
871 queue_delayed_work(watchdog_wq
, &wd_data
->work
, 0);
878 * watchdog_cdev_unregister: unregister watchdog character device
879 * @watchdog: watchdog device
881 * Unregister watchdog character device and if needed the legacy
882 * /dev/watchdog device.
885 static void watchdog_cdev_unregister(struct watchdog_device
*wdd
)
887 struct watchdog_core_data
*wd_data
= wdd
->wd_data
;
889 cdev_del(&wd_data
->cdev
);
891 misc_deregister(&watchdog_miscdev
);
895 mutex_lock(&wd_data
->lock
);
898 mutex_unlock(&wd_data
->lock
);
900 cancel_delayed_work_sync(&wd_data
->work
);
902 kref_put(&wd_data
->kref
, watchdog_core_data_release
);
905 static struct class watchdog_class
= {
907 .owner
= THIS_MODULE
,
908 .dev_groups
= wdt_groups
,
912 * watchdog_dev_register: register a watchdog device
913 * @wdd: watchdog device
915 * Register a watchdog device including handling the legacy
916 * /dev/watchdog node. /dev/watchdog is actually a miscdevice and
917 * thus we set it up like that.
920 int watchdog_dev_register(struct watchdog_device
*wdd
)
926 devno
= MKDEV(MAJOR(watchdog_devt
), wdd
->id
);
928 ret
= watchdog_cdev_register(wdd
, devno
);
932 dev
= device_create_with_groups(&watchdog_class
, wdd
->parent
,
933 devno
, wdd
, wdd
->groups
,
934 "watchdog%d", wdd
->id
);
936 watchdog_cdev_unregister(wdd
);
944 * watchdog_dev_unregister: unregister a watchdog device
945 * @watchdog: watchdog device
947 * Unregister watchdog device and if needed the legacy
948 * /dev/watchdog device.
951 void watchdog_dev_unregister(struct watchdog_device
*wdd
)
953 device_destroy(&watchdog_class
, wdd
->wd_data
->cdev
.dev
);
954 watchdog_cdev_unregister(wdd
);
958 * watchdog_dev_init: init dev part of watchdog core
960 * Allocate a range of chardev nodes to use for watchdog devices
963 int __init
watchdog_dev_init(void)
967 watchdog_wq
= alloc_workqueue("watchdogd",
968 WQ_HIGHPRI
| WQ_MEM_RECLAIM
, 0);
970 pr_err("Failed to create watchdog workqueue\n");
974 err
= class_register(&watchdog_class
);
976 pr_err("couldn't register class\n");
980 err
= alloc_chrdev_region(&watchdog_devt
, 0, MAX_DOGS
, "watchdog");
982 pr_err("watchdog: unable to allocate char dev region\n");
989 class_unregister(&watchdog_class
);
991 destroy_workqueue(watchdog_wq
);
996 * watchdog_dev_exit: exit dev part of watchdog core
998 * Release the range of chardev nodes used for watchdog devices
1001 void __exit
watchdog_dev_exit(void)
1003 unregister_chrdev_region(watchdog_devt
, MAX_DOGS
);
1004 class_unregister(&watchdog_class
);
1005 destroy_workqueue(watchdog_wq
);