Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 1 | /* |
| 2 | * watchdog_dev.c |
| 3 | * |
| 4 | * (c) Copyright 2008-2011 Alan Cox <alan@lxorguk.ukuu.org.uk>, |
| 5 | * All Rights Reserved. |
| 6 | * |
| 7 | * (c) Copyright 2008-2011 Wim Van Sebroeck <wim@iguana.be>. |
| 8 | * |
| 9 | * |
| 10 | * This source code is part of the generic code that can be used |
| 11 | * by all the watchdog timer drivers. |
| 12 | * |
| 13 | * This part of the generic code takes care of the following |
| 14 | * misc device: /dev/watchdog. |
| 15 | * |
| 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> |
| 22 | * |
| 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. |
| 27 | * |
| 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. |
| 31 | */ |
| 32 | |
| 33 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 34 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 35 | #include <linux/cdev.h> /* For character device */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 36 | #include <linux/errno.h> /* For the -ENODEV/... values */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 37 | #include <linux/fs.h> /* For file operations */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 38 | #include <linux/init.h> /* For __init/__exit/... */ |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 39 | #include <linux/jiffies.h> /* For timeout functions */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 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 */ |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 48 | #include <linux/workqueue.h> /* For workqueue */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 49 | #include <linux/uaccess.h> /* For copy_to_user/put_user/... */ |
| 50 | |
Wim Van Sebroeck | 6cfb5aa | 2012-05-21 15:31:06 +0200 | [diff] [blame] | 51 | #include "watchdog_core.h" |
H Hartley Sweeten | 09a46e7 | 2012-04-20 13:28:24 -0700 | [diff] [blame] | 52 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 53 | /* |
| 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. |
| 60 | */ |
| 61 | struct watchdog_core_data { |
| 62 | struct kref kref; |
| 63 | struct cdev cdev; |
| 64 | struct watchdog_device *wdd; |
| 65 | struct mutex lock; |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 66 | unsigned long last_keepalive; |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 67 | unsigned long last_hw_keepalive; |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 68 | struct delayed_work work; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 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 ? */ |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 72 | #define _WDOG_KEEPALIVE 2 /* Did we receive a keepalive ? */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 73 | }; |
| 74 | |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 75 | /* the dev_t structure to store the dynamically allocated watchdog devices */ |
| 76 | static dev_t watchdog_devt; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 77 | /* Reference to watchdog device behind /dev/watchdog */ |
| 78 | static struct watchdog_core_data *old_wd_data; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 79 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 80 | static struct workqueue_struct *watchdog_wq; |
| 81 | |
| 82 | static inline bool watchdog_need_worker(struct watchdog_device *wdd) |
| 83 | { |
| 84 | /* All variables in milli-seconds */ |
| 85 | unsigned int hm = wdd->max_hw_heartbeat_ms; |
| 86 | unsigned int t = wdd->timeout * 1000; |
| 87 | |
| 88 | /* |
| 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 |
| 94 | * requests. |
| 95 | * - Userspace requests a longer timeout than the hardware can handle. |
Rasmus Villemoes | 3fbfe92 | 2016-07-14 11:16:26 +0200 | [diff] [blame] | 96 | * |
| 97 | * Alternatively, if userspace has not opened the watchdog |
| 98 | * device, we take care of feeding the watchdog if it is |
| 99 | * running. |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 100 | */ |
Rasmus Villemoes | 3fbfe92 | 2016-07-14 11:16:26 +0200 | [diff] [blame] | 101 | return (hm && watchdog_active(wdd) && t > hm) || |
| 102 | (t && !watchdog_active(wdd) && watchdog_hw_running(wdd)); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | static long watchdog_next_keepalive(struct watchdog_device *wdd) |
| 106 | { |
| 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; |
| 113 | |
| 114 | virt_timeout = wd_data->last_keepalive + msecs_to_jiffies(timeout_ms); |
Rasmus Villemoes | 3fbfe92 | 2016-07-14 11:16:26 +0200 | [diff] [blame] | 115 | hw_heartbeat_ms = min_not_zero(timeout_ms, wdd->max_hw_heartbeat_ms); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 116 | keepalive_interval = msecs_to_jiffies(hw_heartbeat_ms / 2); |
| 117 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 118 | if (!watchdog_active(wdd)) |
| 119 | return keepalive_interval; |
| 120 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 121 | /* |
| 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. |
| 125 | */ |
| 126 | last_heartbeat = virt_timeout - msecs_to_jiffies(hw_heartbeat_ms); |
| 127 | return min_t(long, last_heartbeat - jiffies, keepalive_interval); |
| 128 | } |
| 129 | |
| 130 | static inline void watchdog_update_worker(struct watchdog_device *wdd) |
| 131 | { |
| 132 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 133 | |
| 134 | if (watchdog_need_worker(wdd)) { |
| 135 | long t = watchdog_next_keepalive(wdd); |
| 136 | |
| 137 | if (t > 0) |
| 138 | mod_delayed_work(watchdog_wq, &wd_data->work, t); |
| 139 | } else { |
| 140 | cancel_delayed_work(&wd_data->work); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | static int __watchdog_ping(struct watchdog_device *wdd) |
| 145 | { |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 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); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 149 | int err; |
| 150 | |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 151 | if (time_is_after_jiffies(earliest_keepalive)) { |
| 152 | mod_delayed_work(watchdog_wq, &wd_data->work, |
| 153 | earliest_keepalive - jiffies); |
| 154 | return 0; |
| 155 | } |
| 156 | |
| 157 | wd_data->last_hw_keepalive = jiffies; |
| 158 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 159 | if (wdd->ops->ping) |
| 160 | err = wdd->ops->ping(wdd); /* ping the watchdog */ |
| 161 | else |
| 162 | err = wdd->ops->start(wdd); /* restart watchdog */ |
| 163 | |
| 164 | watchdog_update_worker(wdd); |
| 165 | |
| 166 | return err; |
| 167 | } |
| 168 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 169 | /* |
| 170 | * watchdog_ping: ping the watchdog. |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 171 | * @wdd: the watchdog device to ping |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 172 | * |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 173 | * The caller must hold wd_data->lock. |
| 174 | * |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 175 | * If the watchdog has no own ping operation then it needs to be |
| 176 | * restarted via the start operation. This wrapper function does |
| 177 | * exactly that. |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 178 | * We only ping when the watchdog device is running. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 179 | */ |
| 180 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 181 | static int watchdog_ping(struct watchdog_device *wdd) |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 182 | { |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 183 | struct watchdog_core_data *wd_data = wdd->wd_data; |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 184 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 185 | if (!watchdog_active(wdd) && !watchdog_hw_running(wdd)) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 186 | return 0; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 187 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 188 | set_bit(_WDOG_KEEPALIVE, &wd_data->status); |
| 189 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 190 | wd_data->last_keepalive = jiffies; |
| 191 | return __watchdog_ping(wdd); |
| 192 | } |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 193 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 194 | static void watchdog_ping_work(struct work_struct *work) |
| 195 | { |
| 196 | struct watchdog_core_data *wd_data; |
| 197 | struct watchdog_device *wdd; |
| 198 | |
| 199 | wd_data = container_of(to_delayed_work(work), struct watchdog_core_data, |
| 200 | work); |
| 201 | |
| 202 | mutex_lock(&wd_data->lock); |
| 203 | wdd = wd_data->wdd; |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 204 | if (wdd && (watchdog_active(wdd) || watchdog_hw_running(wdd))) |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 205 | __watchdog_ping(wdd); |
| 206 | mutex_unlock(&wd_data->lock); |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | /* |
| 210 | * watchdog_start: wrapper to start the watchdog. |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 211 | * @wdd: the watchdog device to start |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 212 | * |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 213 | * The caller must hold wd_data->lock. |
| 214 | * |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 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 |
| 217 | * failure. |
| 218 | */ |
| 219 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 220 | static int watchdog_start(struct watchdog_device *wdd) |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 221 | { |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 222 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 223 | unsigned long started_at; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 224 | int err; |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 225 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 226 | if (watchdog_active(wdd)) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 227 | return 0; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 228 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 229 | set_bit(_WDOG_KEEPALIVE, &wd_data->status); |
| 230 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 231 | started_at = jiffies; |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 232 | if (watchdog_hw_running(wdd) && wdd->ops->ping) |
| 233 | err = wdd->ops->ping(wdd); |
| 234 | else |
| 235 | err = wdd->ops->start(wdd); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 236 | if (err == 0) { |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 237 | set_bit(WDOG_ACTIVE, &wdd->status); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 238 | wd_data->last_keepalive = started_at; |
| 239 | watchdog_update_worker(wdd); |
| 240 | } |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 241 | |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 242 | return err; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | /* |
| 246 | * watchdog_stop: wrapper to stop the watchdog. |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 247 | * @wdd: the watchdog device to stop |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 248 | * |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 249 | * The caller must hold wd_data->lock. |
| 250 | * |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 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 |
| 253 | * failure. |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 254 | * If the 'nowayout' feature was set, the watchdog cannot be stopped. |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 255 | */ |
| 256 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 257 | static int watchdog_stop(struct watchdog_device *wdd) |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 258 | { |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 259 | int err = 0; |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 260 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 261 | if (!watchdog_active(wdd)) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 262 | return 0; |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 263 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 264 | if (test_bit(WDOG_NO_WAY_OUT, &wdd->status)) { |
Guenter Roeck | 0254e95 | 2016-01-03 15:11:58 -0800 | [diff] [blame] | 265 | pr_info("watchdog%d: nowayout prevents watchdog being stopped!\n", |
| 266 | wdd->id); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 267 | return -EBUSY; |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 268 | } |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 269 | |
Guenter Roeck | 3c10bbd | 2016-07-21 14:21:56 -0700 | [diff] [blame] | 270 | if (wdd->ops->stop) { |
| 271 | clear_bit(WDOG_HW_RUNNING, &wdd->status); |
Guenter Roeck | d0684c8 | 2016-02-28 13:12:17 -0800 | [diff] [blame] | 272 | err = wdd->ops->stop(wdd); |
Guenter Roeck | 3c10bbd | 2016-07-21 14:21:56 -0700 | [diff] [blame] | 273 | } else { |
Guenter Roeck | d0684c8 | 2016-02-28 13:12:17 -0800 | [diff] [blame] | 274 | set_bit(WDOG_HW_RUNNING, &wdd->status); |
Guenter Roeck | 3c10bbd | 2016-07-21 14:21:56 -0700 | [diff] [blame] | 275 | } |
Guenter Roeck | d0684c8 | 2016-02-28 13:12:17 -0800 | [diff] [blame] | 276 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 277 | if (err == 0) { |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 278 | clear_bit(WDOG_ACTIVE, &wdd->status); |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 279 | watchdog_update_worker(wdd); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 280 | } |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 281 | |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 282 | return err; |
| 283 | } |
| 284 | |
| 285 | /* |
| 286 | * watchdog_get_status: wrapper to get the watchdog status |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 287 | * @wdd: the watchdog device to get the status from |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 288 | * |
| 289 | * The caller must hold wd_data->lock. |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 290 | * |
| 291 | * Get the watchdog's status flags. |
| 292 | */ |
| 293 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 294 | static unsigned int watchdog_get_status(struct watchdog_device *wdd) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 295 | { |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 296 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 297 | unsigned int status; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 298 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 299 | if (wdd->ops->status) |
| 300 | status = wdd->ops->status(wdd); |
| 301 | else |
| 302 | status = wdd->bootstatus & (WDIOF_CARDRESET | |
| 303 | WDIOF_OVERHEAT | |
| 304 | WDIOF_FANFAULT | |
| 305 | WDIOF_EXTERN1 | |
| 306 | WDIOF_EXTERN2 | |
| 307 | WDIOF_POWERUNDER | |
| 308 | WDIOF_POWEROVER); |
| 309 | |
| 310 | if (test_bit(_WDOG_ALLOW_RELEASE, &wd_data->status)) |
| 311 | status |= WDIOF_MAGICCLOSE; |
| 312 | |
| 313 | if (test_and_clear_bit(_WDOG_KEEPALIVE, &wd_data->status)) |
| 314 | status |= WDIOF_KEEPALIVEPING; |
| 315 | |
| 316 | return status; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /* |
| 320 | * watchdog_set_timeout: set the watchdog timer timeout |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 321 | * @wdd: the watchdog device to set the timeout for |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 322 | * @timeout: timeout to set in seconds |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 323 | * |
| 324 | * The caller must hold wd_data->lock. |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 325 | */ |
| 326 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 327 | static int watchdog_set_timeout(struct watchdog_device *wdd, |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 328 | unsigned int timeout) |
| 329 | { |
Guenter Roeck | fb32e9b | 2016-02-28 13:12:14 -0800 | [diff] [blame] | 330 | int err = 0; |
| 331 | |
| 332 | if (!(wdd->info->options & WDIOF_SETTIMEOUT)) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 333 | return -EOPNOTSUPP; |
| 334 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 335 | if (watchdog_timeout_invalid(wdd, timeout)) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 336 | return -EINVAL; |
| 337 | |
Guenter Roeck | fb32e9b | 2016-02-28 13:12:14 -0800 | [diff] [blame] | 338 | if (wdd->ops->set_timeout) |
| 339 | err = wdd->ops->set_timeout(wdd, timeout); |
| 340 | else |
| 341 | wdd->timeout = timeout; |
| 342 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 343 | watchdog_update_worker(wdd); |
| 344 | |
Guenter Roeck | fb32e9b | 2016-02-28 13:12:14 -0800 | [diff] [blame] | 345 | return err; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | /* |
| 349 | * watchdog_get_timeleft: wrapper to get the time left before a reboot |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 350 | * @wdd: the watchdog device to get the remaining time from |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 351 | * @timeleft: the time that's left |
| 352 | * |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 353 | * The caller must hold wd_data->lock. |
| 354 | * |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 355 | * Get the time before a watchdog will reboot (if not pinged). |
| 356 | */ |
| 357 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 358 | static int watchdog_get_timeleft(struct watchdog_device *wdd, |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 359 | unsigned int *timeleft) |
| 360 | { |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 361 | *timeleft = 0; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 362 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 363 | if (!wdd->ops->get_timeleft) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 364 | return -EOPNOTSUPP; |
| 365 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 366 | *timeleft = wdd->ops->get_timeleft(wdd); |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 367 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 368 | return 0; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 369 | } |
| 370 | |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 371 | #ifdef CONFIG_WATCHDOG_SYSFS |
| 372 | static ssize_t nowayout_show(struct device *dev, struct device_attribute *attr, |
| 373 | char *buf) |
| 374 | { |
| 375 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 376 | |
| 377 | return sprintf(buf, "%d\n", !!test_bit(WDOG_NO_WAY_OUT, &wdd->status)); |
| 378 | } |
| 379 | static DEVICE_ATTR_RO(nowayout); |
| 380 | |
| 381 | static ssize_t status_show(struct device *dev, struct device_attribute *attr, |
| 382 | char *buf) |
| 383 | { |
| 384 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 385 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 386 | unsigned int status; |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 387 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 388 | mutex_lock(&wd_data->lock); |
| 389 | status = watchdog_get_status(wdd); |
| 390 | mutex_unlock(&wd_data->lock); |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 391 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 392 | return sprintf(buf, "0x%x\n", status); |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 393 | } |
| 394 | static DEVICE_ATTR_RO(status); |
| 395 | |
| 396 | static ssize_t bootstatus_show(struct device *dev, |
| 397 | struct device_attribute *attr, char *buf) |
| 398 | { |
| 399 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 400 | |
| 401 | return sprintf(buf, "%u\n", wdd->bootstatus); |
| 402 | } |
| 403 | static DEVICE_ATTR_RO(bootstatus); |
| 404 | |
| 405 | static ssize_t timeleft_show(struct device *dev, struct device_attribute *attr, |
| 406 | char *buf) |
| 407 | { |
| 408 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 409 | struct watchdog_core_data *wd_data = wdd->wd_data; |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 410 | ssize_t status; |
| 411 | unsigned int val; |
| 412 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 413 | mutex_lock(&wd_data->lock); |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 414 | status = watchdog_get_timeleft(wdd, &val); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 415 | mutex_unlock(&wd_data->lock); |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 416 | if (!status) |
| 417 | status = sprintf(buf, "%u\n", val); |
| 418 | |
| 419 | return status; |
| 420 | } |
| 421 | static DEVICE_ATTR_RO(timeleft); |
| 422 | |
| 423 | static ssize_t timeout_show(struct device *dev, struct device_attribute *attr, |
| 424 | char *buf) |
| 425 | { |
| 426 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 427 | |
| 428 | return sprintf(buf, "%u\n", wdd->timeout); |
| 429 | } |
| 430 | static DEVICE_ATTR_RO(timeout); |
| 431 | |
| 432 | static ssize_t identity_show(struct device *dev, struct device_attribute *attr, |
| 433 | char *buf) |
| 434 | { |
| 435 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 436 | |
| 437 | return sprintf(buf, "%s\n", wdd->info->identity); |
| 438 | } |
| 439 | static DEVICE_ATTR_RO(identity); |
| 440 | |
| 441 | static ssize_t state_show(struct device *dev, struct device_attribute *attr, |
| 442 | char *buf) |
| 443 | { |
| 444 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 445 | |
| 446 | if (watchdog_active(wdd)) |
| 447 | return sprintf(buf, "active\n"); |
| 448 | |
| 449 | return sprintf(buf, "inactive\n"); |
| 450 | } |
| 451 | static DEVICE_ATTR_RO(state); |
| 452 | |
| 453 | static umode_t wdt_is_visible(struct kobject *kobj, struct attribute *attr, |
| 454 | int n) |
| 455 | { |
| 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; |
| 459 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 460 | if (attr == &dev_attr_timeleft.attr && !wdd->ops->get_timeleft) |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 461 | mode = 0; |
| 462 | |
| 463 | return mode; |
| 464 | } |
| 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, |
| 473 | NULL, |
| 474 | }; |
| 475 | |
| 476 | static const struct attribute_group wdt_group = { |
| 477 | .attrs = wdt_attrs, |
| 478 | .is_visible = wdt_is_visible, |
| 479 | }; |
| 480 | __ATTRIBUTE_GROUPS(wdt); |
| 481 | #else |
| 482 | #define wdt_groups NULL |
| 483 | #endif |
| 484 | |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 485 | /* |
| 486 | * watchdog_ioctl_op: call the watchdog drivers ioctl op if defined |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 487 | * @wdd: the watchdog device to do the ioctl on |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 488 | * @cmd: watchdog command |
| 489 | * @arg: argument pointer |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 490 | * |
| 491 | * The caller must hold wd_data->lock. |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 492 | */ |
| 493 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 494 | static int watchdog_ioctl_op(struct watchdog_device *wdd, unsigned int cmd, |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 495 | unsigned long arg) |
| 496 | { |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 497 | if (!wdd->ops->ioctl) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 498 | return -ENOIOCTLCMD; |
| 499 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 500 | return wdd->ops->ioctl(wdd, cmd, arg); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | /* |
| 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 |
| 509 | * |
| 510 | * A write to a watchdog device is defined as a keepalive ping. |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 511 | * Writing the magic 'V' sequence allows the next close to turn |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 512 | * off the watchdog (if 'nowayout' is not set). |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 513 | */ |
| 514 | |
| 515 | static ssize_t watchdog_write(struct file *file, const char __user *data, |
| 516 | size_t len, loff_t *ppos) |
| 517 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 518 | struct watchdog_core_data *wd_data = file->private_data; |
| 519 | struct watchdog_device *wdd; |
| 520 | int err; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 521 | size_t i; |
| 522 | char c; |
| 523 | |
| 524 | if (len == 0) |
| 525 | return 0; |
| 526 | |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 527 | /* |
| 528 | * Note: just in case someone wrote the magic character |
| 529 | * five months ago... |
| 530 | */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 531 | clear_bit(_WDOG_ALLOW_RELEASE, &wd_data->status); |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 532 | |
| 533 | /* scan to see whether or not we got the magic character */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 534 | for (i = 0; i != len; i++) { |
| 535 | if (get_user(c, data + i)) |
| 536 | return -EFAULT; |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 537 | if (c == 'V') |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 538 | set_bit(_WDOG_ALLOW_RELEASE, &wd_data->status); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | /* someone wrote to us, so we send the watchdog a keepalive ping */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 542 | |
| 543 | err = -ENODEV; |
| 544 | mutex_lock(&wd_data->lock); |
| 545 | wdd = wd_data->wdd; |
| 546 | if (wdd) |
| 547 | err = watchdog_ping(wdd); |
| 548 | mutex_unlock(&wd_data->lock); |
| 549 | |
Alexander Usyskin | 5ef7966 | 2015-10-26 14:07:58 +0200 | [diff] [blame] | 550 | if (err < 0) |
| 551 | return err; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 552 | |
| 553 | return len; |
| 554 | } |
| 555 | |
| 556 | /* |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 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 |
| 561 | * |
| 562 | * The watchdog API defines a common set of functions for all watchdogs |
| 563 | * according to their available features. |
| 564 | */ |
| 565 | |
| 566 | static long watchdog_ioctl(struct file *file, unsigned int cmd, |
| 567 | unsigned long arg) |
| 568 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 569 | struct watchdog_core_data *wd_data = file->private_data; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 570 | void __user *argp = (void __user *)arg; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 571 | struct watchdog_device *wdd; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 572 | int __user *p = argp; |
| 573 | unsigned int val; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 574 | int err; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 575 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 576 | mutex_lock(&wd_data->lock); |
| 577 | |
| 578 | wdd = wd_data->wdd; |
| 579 | if (!wdd) { |
| 580 | err = -ENODEV; |
| 581 | goto out_ioctl; |
| 582 | } |
| 583 | |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 584 | err = watchdog_ioctl_op(wdd, cmd, arg); |
| 585 | if (err != -ENOIOCTLCMD) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 586 | goto out_ioctl; |
Wim Van Sebroeck | 78d88fc | 2011-07-22 18:59:49 +0000 | [diff] [blame] | 587 | |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 588 | switch (cmd) { |
| 589 | case WDIOC_GETSUPPORT: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 590 | err = copy_to_user(argp, wdd->info, |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 591 | sizeof(struct watchdog_info)) ? -EFAULT : 0; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 592 | break; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 593 | case WDIOC_GETSTATUS: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 594 | val = watchdog_get_status(wdd); |
| 595 | err = put_user(val, p); |
| 596 | break; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 597 | case WDIOC_GETBOOTSTATUS: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 598 | err = put_user(wdd->bootstatus, p); |
| 599 | break; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 600 | case WDIOC_SETOPTIONS: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 601 | if (get_user(val, p)) { |
| 602 | err = -EFAULT; |
| 603 | break; |
| 604 | } |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 605 | if (val & WDIOS_DISABLECARD) { |
| 606 | err = watchdog_stop(wdd); |
| 607 | if (err < 0) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 608 | break; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 609 | } |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 610 | if (val & WDIOS_ENABLECARD) |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 611 | err = watchdog_start(wdd); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 612 | break; |
Wim Van Sebroeck | c2dc00e | 2011-07-22 18:57:23 +0000 | [diff] [blame] | 613 | case WDIOC_KEEPALIVE: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 614 | if (!(wdd->info->options & WDIOF_KEEPALIVEPING)) { |
| 615 | err = -EOPNOTSUPP; |
| 616 | break; |
| 617 | } |
| 618 | err = watchdog_ping(wdd); |
| 619 | break; |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 620 | case WDIOC_SETTIMEOUT: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 621 | if (get_user(val, p)) { |
| 622 | err = -EFAULT; |
| 623 | break; |
| 624 | } |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 625 | err = watchdog_set_timeout(wdd, val); |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 626 | if (err < 0) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 627 | break; |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 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) */ |
Alexander Usyskin | 5ef7966 | 2015-10-26 14:07:58 +0200 | [diff] [blame] | 631 | err = watchdog_ping(wdd); |
| 632 | if (err < 0) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 633 | break; |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 634 | /* Fall */ |
| 635 | case WDIOC_GETTIMEOUT: |
| 636 | /* timeout == 0 means that we don't know the timeout */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 637 | if (wdd->timeout == 0) { |
| 638 | err = -EOPNOTSUPP; |
| 639 | break; |
| 640 | } |
| 641 | err = put_user(wdd->timeout, p); |
| 642 | break; |
Viresh Kumar | fd7b673 | 2012-03-16 09:14:00 +0100 | [diff] [blame] | 643 | case WDIOC_GETTIMELEFT: |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 644 | err = watchdog_get_timeleft(wdd, &val); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 645 | if (err < 0) |
| 646 | break; |
| 647 | err = put_user(val, p); |
| 648 | break; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 649 | default: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 650 | err = -ENOTTY; |
| 651 | break; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 652 | } |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 653 | |
| 654 | out_ioctl: |
| 655 | mutex_unlock(&wd_data->lock); |
| 656 | return err; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | /* |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 660 | * watchdog_open: open the /dev/watchdog* devices. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 661 | * @inode: inode of device |
| 662 | * @file: file handle to device |
| 663 | * |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 664 | * When the /dev/watchdog* device gets opened, we start the watchdog. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 665 | * Watch out: the /dev/watchdog device is single open, so we make sure |
| 666 | * it can only be opened once. |
| 667 | */ |
| 668 | |
| 669 | static int watchdog_open(struct inode *inode, struct file *file) |
| 670 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 671 | struct watchdog_core_data *wd_data; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 672 | struct watchdog_device *wdd; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 673 | int err; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 674 | |
| 675 | /* Get the corresponding watchdog device */ |
| 676 | if (imajor(inode) == MISC_MAJOR) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 677 | wd_data = old_wd_data; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 678 | else |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 679 | wd_data = container_of(inode->i_cdev, struct watchdog_core_data, |
| 680 | cdev); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 681 | |
| 682 | /* the watchdog is single open! */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 683 | if (test_and_set_bit(_WDOG_DEV_OPEN, &wd_data->status)) |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 684 | return -EBUSY; |
| 685 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 686 | wdd = wd_data->wdd; |
| 687 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 688 | /* |
| 689 | * If the /dev/watchdog device is open, we don't want the module |
| 690 | * to be unloaded. |
| 691 | */ |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 692 | if (!watchdog_hw_running(wdd) && !try_module_get(wdd->ops->owner)) { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 693 | err = -EBUSY; |
| 694 | goto out_clear; |
| 695 | } |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 696 | |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 697 | err = watchdog_start(wdd); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 698 | if (err < 0) |
| 699 | goto out_mod; |
| 700 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 701 | file->private_data = wd_data; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 702 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 703 | if (!watchdog_hw_running(wdd)) |
| 704 | kref_get(&wd_data->kref); |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 705 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 706 | /* dev/watchdog is a virtual (and thus non-seekable) filesystem */ |
| 707 | return nonseekable_open(inode, file); |
| 708 | |
| 709 | out_mod: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 710 | module_put(wd_data->wdd->ops->owner); |
| 711 | out_clear: |
| 712 | clear_bit(_WDOG_DEV_OPEN, &wd_data->status); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 713 | return err; |
| 714 | } |
| 715 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 716 | static void watchdog_core_data_release(struct kref *kref) |
| 717 | { |
| 718 | struct watchdog_core_data *wd_data; |
| 719 | |
| 720 | wd_data = container_of(kref, struct watchdog_core_data, kref); |
| 721 | |
| 722 | kfree(wd_data); |
| 723 | } |
| 724 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 725 | /* |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 726 | * watchdog_release: release the watchdog device. |
| 727 | * @inode: inode of device |
| 728 | * @file: file handle to device |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 729 | * |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 730 | * This is the code for when /dev/watchdog gets closed. We will only |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 731 | * stop the watchdog when we have received the magic char (and nowayout |
| 732 | * was not set), else the watchdog will keep running. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 733 | */ |
| 734 | |
| 735 | static int watchdog_release(struct inode *inode, struct file *file) |
| 736 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 737 | struct watchdog_core_data *wd_data = file->private_data; |
| 738 | struct watchdog_device *wdd; |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 739 | int err = -EBUSY; |
Guenter Roeck | d1ed3ba | 2016-03-08 18:46:13 -0800 | [diff] [blame] | 740 | bool running; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 741 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 742 | mutex_lock(&wd_data->lock); |
| 743 | |
| 744 | wdd = wd_data->wdd; |
| 745 | if (!wdd) |
| 746 | goto done; |
| 747 | |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 748 | /* |
| 749 | * We only stop the watchdog if we received the magic character |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 750 | * or if WDIOF_MAGICCLOSE is not set. If nowayout was set then |
| 751 | * watchdog_stop will fail. |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 752 | */ |
Hector Palacios | fcf9567 | 2013-04-08 17:06:32 +0200 | [diff] [blame] | 753 | if (!test_bit(WDOG_ACTIVE, &wdd->status)) |
| 754 | err = 0; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 755 | else if (test_and_clear_bit(_WDOG_ALLOW_RELEASE, &wd_data->status) || |
Hector Palacios | fcf9567 | 2013-04-08 17:06:32 +0200 | [diff] [blame] | 756 | !(wdd->info->options & WDIOF_MAGICCLOSE)) |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 757 | err = watchdog_stop(wdd); |
| 758 | |
| 759 | /* If the watchdog was not stopped, send a keepalive ping */ |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 760 | if (err < 0) { |
Guenter Roeck | 0254e95 | 2016-01-03 15:11:58 -0800 | [diff] [blame] | 761 | pr_crit("watchdog%d: watchdog did not stop!\n", wdd->id); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 762 | watchdog_ping(wdd); |
| 763 | } |
| 764 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 765 | watchdog_update_worker(wdd); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 766 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 767 | /* make sure that /dev/watchdog can be re-opened */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 768 | clear_bit(_WDOG_DEV_OPEN, &wd_data->status); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 769 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 770 | done: |
Guenter Roeck | d1ed3ba | 2016-03-08 18:46:13 -0800 | [diff] [blame] | 771 | running = wdd && watchdog_hw_running(wdd); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 772 | mutex_unlock(&wd_data->lock); |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 773 | /* |
| 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. |
| 777 | */ |
Guenter Roeck | d1ed3ba | 2016-03-08 18:46:13 -0800 | [diff] [blame] | 778 | if (!running) { |
| 779 | module_put(wd_data->cdev.owner); |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 780 | kref_put(&wd_data->kref, watchdog_core_data_release); |
| 781 | } |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 782 | return 0; |
| 783 | } |
| 784 | |
| 785 | static const struct file_operations watchdog_fops = { |
| 786 | .owner = THIS_MODULE, |
| 787 | .write = watchdog_write, |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 788 | .unlocked_ioctl = watchdog_ioctl, |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 789 | .open = watchdog_open, |
| 790 | .release = watchdog_release, |
| 791 | }; |
| 792 | |
| 793 | static struct miscdevice watchdog_miscdev = { |
| 794 | .minor = WATCHDOG_MINOR, |
| 795 | .name = "watchdog", |
| 796 | .fops = &watchdog_fops, |
| 797 | }; |
| 798 | |
| 799 | /* |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 800 | * watchdog_cdev_register: register watchdog character device |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 801 | * @wdd: watchdog device |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 802 | * @devno: character device number |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 803 | * |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 804 | * Register a watchdog character device including handling the legacy |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 805 | * /dev/watchdog node. /dev/watchdog is actually a miscdevice and |
| 806 | * thus we set it up like that. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 807 | */ |
| 808 | |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 809 | static int watchdog_cdev_register(struct watchdog_device *wdd, dev_t devno) |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 810 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 811 | struct watchdog_core_data *wd_data; |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 812 | int err; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 813 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 814 | wd_data = kzalloc(sizeof(struct watchdog_core_data), GFP_KERNEL); |
| 815 | if (!wd_data) |
| 816 | return -ENOMEM; |
| 817 | kref_init(&wd_data->kref); |
| 818 | mutex_init(&wd_data->lock); |
| 819 | |
| 820 | wd_data->wdd = wdd; |
| 821 | wdd->wd_data = wd_data; |
| 822 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 823 | if (!watchdog_wq) |
| 824 | return -ENODEV; |
| 825 | |
| 826 | INIT_DELAYED_WORK(&wd_data->work, watchdog_ping_work); |
| 827 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 828 | if (wdd->id == 0) { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 829 | old_wd_data = wd_data; |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 830 | watchdog_miscdev.parent = wdd->parent; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 831 | err = misc_register(&watchdog_miscdev); |
| 832 | if (err != 0) { |
| 833 | pr_err("%s: cannot register miscdev on minor=%d (err=%d).\n", |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 834 | wdd->info->identity, WATCHDOG_MINOR, err); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 835 | if (err == -EBUSY) |
| 836 | pr_err("%s: a legacy watchdog module is probably present.\n", |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 837 | wdd->info->identity); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 838 | old_wd_data = NULL; |
| 839 | kfree(wd_data); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 840 | return err; |
| 841 | } |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 842 | } |
| 843 | |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 844 | /* Fill in the data structures */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 845 | cdev_init(&wd_data->cdev, &watchdog_fops); |
| 846 | wd_data->cdev.owner = wdd->ops->owner; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 847 | |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 848 | /* Add the device */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 849 | err = cdev_add(&wd_data->cdev, devno, 1); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 850 | if (err) { |
| 851 | pr_err("watchdog%d unable to add device %d:%d\n", |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 852 | wdd->id, MAJOR(watchdog_devt), wdd->id); |
| 853 | if (wdd->id == 0) { |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 854 | misc_deregister(&watchdog_miscdev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 855 | old_wd_data = NULL; |
| 856 | kref_put(&wd_data->kref, watchdog_core_data_release); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 857 | } |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 858 | return err; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 859 | } |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 860 | |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 861 | /* Record time of most recent heartbeat as 'just before now'. */ |
| 862 | wd_data->last_hw_keepalive = jiffies - 1; |
| 863 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 864 | /* |
| 865 | * If the watchdog is running, prevent its driver from being unloaded, |
| 866 | * and schedule an immediate ping. |
| 867 | */ |
| 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); |
| 872 | } |
| 873 | |
| 874 | return 0; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 875 | } |
| 876 | |
| 877 | /* |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 878 | * watchdog_cdev_unregister: unregister watchdog character device |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 879 | * @watchdog: watchdog device |
| 880 | * |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 881 | * Unregister watchdog character device and if needed the legacy |
| 882 | * /dev/watchdog device. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 883 | */ |
| 884 | |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 885 | static void watchdog_cdev_unregister(struct watchdog_device *wdd) |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 886 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 887 | struct watchdog_core_data *wd_data = wdd->wd_data; |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 888 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 889 | cdev_del(&wd_data->cdev); |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 890 | if (wdd->id == 0) { |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 891 | misc_deregister(&watchdog_miscdev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 892 | old_wd_data = NULL; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 893 | } |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 894 | |
| 895 | mutex_lock(&wd_data->lock); |
| 896 | wd_data->wdd = NULL; |
| 897 | wdd->wd_data = NULL; |
| 898 | mutex_unlock(&wd_data->lock); |
| 899 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 900 | cancel_delayed_work_sync(&wd_data->work); |
| 901 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 902 | kref_put(&wd_data->kref, watchdog_core_data_release); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 903 | } |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 904 | |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 905 | static struct class watchdog_class = { |
| 906 | .name = "watchdog", |
| 907 | .owner = THIS_MODULE, |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 908 | .dev_groups = wdt_groups, |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 909 | }; |
| 910 | |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 911 | /* |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 912 | * watchdog_dev_register: register a watchdog device |
| 913 | * @wdd: watchdog device |
| 914 | * |
| 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. |
| 918 | */ |
| 919 | |
| 920 | int watchdog_dev_register(struct watchdog_device *wdd) |
| 921 | { |
| 922 | struct device *dev; |
| 923 | dev_t devno; |
| 924 | int ret; |
| 925 | |
| 926 | devno = MKDEV(MAJOR(watchdog_devt), wdd->id); |
| 927 | |
| 928 | ret = watchdog_cdev_register(wdd, devno); |
| 929 | if (ret) |
| 930 | return ret; |
| 931 | |
Guenter Roeck | faa5847 | 2016-01-03 15:11:56 -0800 | [diff] [blame] | 932 | dev = device_create_with_groups(&watchdog_class, wdd->parent, |
| 933 | devno, wdd, wdd->groups, |
| 934 | "watchdog%d", wdd->id); |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 935 | if (IS_ERR(dev)) { |
| 936 | watchdog_cdev_unregister(wdd); |
| 937 | return PTR_ERR(dev); |
| 938 | } |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 939 | |
| 940 | return ret; |
| 941 | } |
| 942 | |
| 943 | /* |
| 944 | * watchdog_dev_unregister: unregister a watchdog device |
| 945 | * @watchdog: watchdog device |
| 946 | * |
| 947 | * Unregister watchdog device and if needed the legacy |
| 948 | * /dev/watchdog device. |
| 949 | */ |
| 950 | |
| 951 | void watchdog_dev_unregister(struct watchdog_device *wdd) |
| 952 | { |
Guenter Roeck | 0254e95 | 2016-01-03 15:11:58 -0800 | [diff] [blame] | 953 | device_destroy(&watchdog_class, wdd->wd_data->cdev.dev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 954 | watchdog_cdev_unregister(wdd); |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 955 | } |
| 956 | |
| 957 | /* |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 958 | * watchdog_dev_init: init dev part of watchdog core |
| 959 | * |
| 960 | * Allocate a range of chardev nodes to use for watchdog devices |
| 961 | */ |
| 962 | |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 963 | int __init watchdog_dev_init(void) |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 964 | { |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 965 | int err; |
| 966 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 967 | watchdog_wq = alloc_workqueue("watchdogd", |
| 968 | WQ_HIGHPRI | WQ_MEM_RECLAIM, 0); |
| 969 | if (!watchdog_wq) { |
| 970 | pr_err("Failed to create watchdog workqueue\n"); |
| 971 | return -ENOMEM; |
| 972 | } |
| 973 | |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 974 | err = class_register(&watchdog_class); |
| 975 | if (err < 0) { |
| 976 | pr_err("couldn't register class\n"); |
Wei Yongjun | 138913c | 2016-07-19 11:22:34 +0000 | [diff] [blame] | 977 | goto err_register; |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | err = alloc_chrdev_region(&watchdog_devt, 0, MAX_DOGS, "watchdog"); |
| 981 | if (err < 0) { |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 982 | pr_err("watchdog: unable to allocate char dev region\n"); |
Wei Yongjun | 138913c | 2016-07-19 11:22:34 +0000 | [diff] [blame] | 983 | goto err_alloc; |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 984 | } |
| 985 | |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 986 | return 0; |
Wei Yongjun | 138913c | 2016-07-19 11:22:34 +0000 | [diff] [blame] | 987 | |
| 988 | err_alloc: |
| 989 | class_unregister(&watchdog_class); |
| 990 | err_register: |
| 991 | destroy_workqueue(watchdog_wq); |
| 992 | return err; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | /* |
| 996 | * watchdog_dev_exit: exit dev part of watchdog core |
| 997 | * |
| 998 | * Release the range of chardev nodes used for watchdog devices |
| 999 | */ |
| 1000 | |
| 1001 | void __exit watchdog_dev_exit(void) |
| 1002 | { |
| 1003 | unregister_chrdev_region(watchdog_devt, MAX_DOGS); |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 1004 | class_unregister(&watchdog_class); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 1005 | destroy_workqueue(watchdog_wq); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 1006 | } |