Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Generic watchdog defines. Derived from.. |
| 4 | * |
| 5 | * Berkshire PC Watchdog Defines |
| 6 | * by Ken Hollis <khollis@bitgate.com> |
| 7 | * |
| 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #ifndef _LINUX_WATCHDOG_H |
| 10 | #define _LINUX_WATCHDOG_H |
| 11 | |
Andrey Panin | 4bfdf37 | 2005-07-27 11:43:58 -0700 | [diff] [blame] | 12 | |
Wim Van Sebroeck | ff0b3cd | 2011-11-29 16:24:16 +0100 | [diff] [blame] | 13 | #include <linux/bitops.h> |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 14 | #include <linux/cdev.h> |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 15 | #include <linux/device.h> |
| 16 | #include <linux/kernel.h> |
Damien Riegel | 2165bf5 | 2015-11-16 12:27:59 -0500 | [diff] [blame] | 17 | #include <linux/notifier.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 18 | #include <uapi/linux/watchdog.h> |
Andrey Panin | 4bfdf37 | 2005-07-27 11:43:58 -0700 | [diff] [blame] | 19 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 20 | struct watchdog_ops; |
| 21 | struct watchdog_device; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 22 | struct watchdog_core_data; |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 23 | struct watchdog_governor; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 24 | |
| 25 | /** struct watchdog_ops - The watchdog-devices operations |
| 26 | * |
| 27 | * @owner: The module owner. |
| 28 | * @start: The routine for starting the watchdog device. |
| 29 | * @stop: The routine for stopping the watchdog device. |
| 30 | * @ping: The routine that sends a keepalive ping to the watchdog device. |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 31 | * @status: The routine that shows the status of the watchdog device. |
Wolfram Sang | 760d280 | 2015-11-03 09:00:16 +0100 | [diff] [blame] | 32 | * @set_timeout:The routine for setting the watchdog devices timeout value (in seconds). |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 33 | * @set_pretimeout:The routine for setting the watchdog devices pretimeout. |
Wolfram Sang | 760d280 | 2015-11-03 09:00:16 +0100 | [diff] [blame] | 34 | * @get_timeleft:The routine that gets the time left before a reset (in seconds). |
Damien Riegel | 2165bf5 | 2015-11-16 12:27:59 -0500 | [diff] [blame] | 35 | * @restart: The routine for restarting the machine. |
Wim Van Sebroeck | 78d88fc | 2011-07-22 18:59:49 +0000 | [diff] [blame] | 36 | * @ioctl: The routines that handles extra ioctl calls. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 37 | * |
| 38 | * The watchdog_ops structure contains a list of low-level operations |
| 39 | * that control a watchdog device. It also contains the module that owns |
| 40 | * these operations. The start and stop function are mandatory, all other |
Wolfram Sang | 80220fa | 2015-11-03 09:00:15 +0100 | [diff] [blame] | 41 | * functions are optional. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 42 | */ |
| 43 | struct watchdog_ops { |
| 44 | struct module *owner; |
| 45 | /* mandatory operations */ |
| 46 | int (*start)(struct watchdog_device *); |
| 47 | int (*stop)(struct watchdog_device *); |
| 48 | /* optional operations */ |
| 49 | int (*ping)(struct watchdog_device *); |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 50 | unsigned int (*status)(struct watchdog_device *); |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 51 | int (*set_timeout)(struct watchdog_device *, unsigned int); |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 52 | int (*set_pretimeout)(struct watchdog_device *, unsigned int); |
Viresh Kumar | fd7b673 | 2012-03-16 09:14:00 +0100 | [diff] [blame] | 53 | unsigned int (*get_timeleft)(struct watchdog_device *); |
Guenter Roeck | 4d8b229 | 2016-02-26 17:32:49 -0800 | [diff] [blame] | 54 | int (*restart)(struct watchdog_device *, unsigned long, void *); |
Wim Van Sebroeck | 78d88fc | 2011-07-22 18:59:49 +0000 | [diff] [blame] | 55 | long (*ioctl)(struct watchdog_device *, unsigned int, unsigned long); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | /** struct watchdog_device - The structure that defines a watchdog device |
| 59 | * |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 60 | * @id: The watchdog's ID. (Allocated by watchdog_register_device) |
Alan Cox | d6b469d | 2012-05-11 12:00:20 +0200 | [diff] [blame] | 61 | * @parent: The parent bus device |
Guenter Roeck | faa5847 | 2016-01-03 15:11:56 -0800 | [diff] [blame] | 62 | * @groups: List of sysfs attribute groups to create when creating the |
| 63 | * watchdog device. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 64 | * @info: Pointer to a watchdog_info structure. |
| 65 | * @ops: Pointer to the list of watchdog operations. |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 66 | * @gov: Pointer to watchdog pretimeout governor. |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 67 | * @bootstatus: Status of the watchdog device at boot. |
Wolfram Sang | 760d280 | 2015-11-03 09:00:16 +0100 | [diff] [blame] | 68 | * @timeout: The watchdog devices timeout value (in seconds). |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 69 | * @pretimeout: The watchdog devices pre_timeout value. |
Wolfram Sang | 760d280 | 2015-11-03 09:00:16 +0100 | [diff] [blame] | 70 | * @min_timeout:The watchdog devices minimum timeout value (in seconds). |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 71 | * @max_timeout:The watchdog devices maximum timeout value (in seconds) |
| 72 | * as configurable from user space. Only relevant if |
| 73 | * max_hw_heartbeat_ms is not provided. |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 74 | * @min_hw_heartbeat_ms: |
Guenter Roeck | f9f535c | 2016-05-27 14:19:06 -0700 | [diff] [blame] | 75 | * Hardware limit for minimum time between heartbeats, |
| 76 | * in milli-seconds. |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 77 | * @max_hw_heartbeat_ms: |
| 78 | * Hardware limit for maximum timeout, in milli-seconds. |
| 79 | * Replaces max_timeout if specified. |
Damien Riegel | e131319 | 2015-11-20 16:54:51 -0500 | [diff] [blame] | 80 | * @reboot_nb: The notifier block to stop watchdog on reboot. |
Damien Riegel | 2165bf5 | 2015-11-16 12:27:59 -0500 | [diff] [blame] | 81 | * @restart_nb: The notifier block to register a restart function. |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 82 | * @driver_data:Pointer to the drivers private data. |
| 83 | * @wd_data: Pointer to watchdog core internal data. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 84 | * @status: Field that contains the devices internal status bits. |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 85 | * @deferred: Entry in wtd_deferred_reg_list which is used to |
| 86 | * register early initialized watchdogs. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 87 | * |
| 88 | * The watchdog_device structure contains all information about a |
| 89 | * watchdog timer device. |
| 90 | * |
| 91 | * The driver-data field may not be accessed directly. It must be accessed |
| 92 | * via the watchdog_set_drvdata and watchdog_get_drvdata helpers. |
| 93 | */ |
| 94 | struct watchdog_device { |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 95 | int id; |
Alan Cox | d6b469d | 2012-05-11 12:00:20 +0200 | [diff] [blame] | 96 | struct device *parent; |
Guenter Roeck | faa5847 | 2016-01-03 15:11:56 -0800 | [diff] [blame] | 97 | const struct attribute_group **groups; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 98 | const struct watchdog_info *info; |
| 99 | const struct watchdog_ops *ops; |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 100 | const struct watchdog_governor *gov; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 101 | unsigned int bootstatus; |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 102 | unsigned int timeout; |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 103 | unsigned int pretimeout; |
Wim Van Sebroeck | 3f43f68 | 2011-07-22 19:00:16 +0000 | [diff] [blame] | 104 | unsigned int min_timeout; |
| 105 | unsigned int max_timeout; |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 106 | unsigned int min_hw_heartbeat_ms; |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 107 | unsigned int max_hw_heartbeat_ms; |
Damien Riegel | e131319 | 2015-11-20 16:54:51 -0500 | [diff] [blame] | 108 | struct notifier_block reboot_nb; |
Damien Riegel | 2165bf5 | 2015-11-16 12:27:59 -0500 | [diff] [blame] | 109 | struct notifier_block restart_nb; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 110 | void *driver_data; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 111 | struct watchdog_core_data *wd_data; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 112 | unsigned long status; |
| 113 | /* Bit numbers for status flags */ |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 114 | #define WDOG_ACTIVE 0 /* Is the watchdog running/active */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 115 | #define WDOG_NO_WAY_OUT 1 /* Is 'nowayout' feature set ? */ |
| 116 | #define WDOG_STOP_ON_REBOOT 2 /* Should be stopped on reboot */ |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 117 | #define WDOG_HW_RUNNING 3 /* True if HW watchdog running */ |
Guenter Roeck | bb292ac | 2017-01-25 14:21:10 -0800 | [diff] [blame] | 118 | #define WDOG_STOP_ON_UNREGISTER 4 /* Should be stopped on unregister */ |
Jean-Baptiste Theou | ef90174 | 2015-06-09 09:55:02 -0700 | [diff] [blame] | 119 | struct list_head deferred; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 120 | }; |
| 121 | |
Uwe Kleine-König | 4846e37 | 2014-09-09 22:18:31 +0200 | [diff] [blame] | 122 | #define WATCHDOG_NOWAYOUT IS_BUILTIN(CONFIG_WATCHDOG_NOWAYOUT) |
| 123 | #define WATCHDOG_NOWAYOUT_INIT_STATUS (WATCHDOG_NOWAYOUT << WDOG_NO_WAY_OUT) |
Wim Van Sebroeck | ff0b3cd | 2011-11-29 16:24:16 +0100 | [diff] [blame] | 124 | |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 125 | /* Use the following function to check whether or not the watchdog is active */ |
Viresh Kumar | 257f8c4a | 2012-03-12 09:51:56 +0530 | [diff] [blame] | 126 | static inline bool watchdog_active(struct watchdog_device *wdd) |
| 127 | { |
| 128 | return test_bit(WDOG_ACTIVE, &wdd->status); |
| 129 | } |
| 130 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 131 | /* |
| 132 | * Use the following function to check whether or not the hardware watchdog |
| 133 | * is running |
| 134 | */ |
| 135 | static inline bool watchdog_hw_running(struct watchdog_device *wdd) |
| 136 | { |
| 137 | return test_bit(WDOG_HW_RUNNING, &wdd->status); |
| 138 | } |
| 139 | |
Wim Van Sebroeck | ff0b3cd | 2011-11-29 16:24:16 +0100 | [diff] [blame] | 140 | /* Use the following function to set the nowayout feature */ |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 141 | static inline void watchdog_set_nowayout(struct watchdog_device *wdd, bool nowayout) |
Wim Van Sebroeck | ff0b3cd | 2011-11-29 16:24:16 +0100 | [diff] [blame] | 142 | { |
| 143 | if (nowayout) |
| 144 | set_bit(WDOG_NO_WAY_OUT, &wdd->status); |
| 145 | } |
| 146 | |
Damien Riegel | e131319 | 2015-11-20 16:54:51 -0500 | [diff] [blame] | 147 | /* Use the following function to stop the watchdog on reboot */ |
| 148 | static inline void watchdog_stop_on_reboot(struct watchdog_device *wdd) |
| 149 | { |
| 150 | set_bit(WDOG_STOP_ON_REBOOT, &wdd->status); |
| 151 | } |
| 152 | |
Guenter Roeck | bb292ac | 2017-01-25 14:21:10 -0800 | [diff] [blame] | 153 | /* Use the following function to stop the watchdog when unregistering it */ |
| 154 | static inline void watchdog_stop_on_unregister(struct watchdog_device *wdd) |
| 155 | { |
| 156 | set_bit(WDOG_STOP_ON_UNREGISTER, &wdd->status); |
| 157 | } |
| 158 | |
Fabio Porcedda | 3048253 | 2013-01-08 11:04:10 +0100 | [diff] [blame] | 159 | /* Use the following function to check if a timeout value is invalid */ |
| 160 | static inline bool watchdog_timeout_invalid(struct watchdog_device *wdd, unsigned int t) |
| 161 | { |
Guenter Roeck | 1e93594 | 2015-09-29 01:27:24 -0700 | [diff] [blame] | 162 | /* |
| 163 | * The timeout is invalid if |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 164 | * - the requested value is larger than UINT_MAX / 1000 |
| 165 | * (since internal calculations are done in milli-seconds), |
| 166 | * or |
Guenter Roeck | 1e93594 | 2015-09-29 01:27:24 -0700 | [diff] [blame] | 167 | * - the requested value is smaller than the configured minimum timeout, |
| 168 | * or |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 169 | * - a maximum hardware timeout is not configured, a maximum timeout |
| 170 | * is configured, and the requested value is larger than the |
| 171 | * configured maximum timeout. |
Guenter Roeck | 1e93594 | 2015-09-29 01:27:24 -0700 | [diff] [blame] | 172 | */ |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 173 | return t > UINT_MAX / 1000 || t < wdd->min_timeout || |
| 174 | (!wdd->max_hw_heartbeat_ms && wdd->max_timeout && |
| 175 | t > wdd->max_timeout); |
Fabio Porcedda | 3048253 | 2013-01-08 11:04:10 +0100 | [diff] [blame] | 176 | } |
| 177 | |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 178 | /* Use the following function to check if a pretimeout value is invalid */ |
| 179 | static inline bool watchdog_pretimeout_invalid(struct watchdog_device *wdd, |
| 180 | unsigned int t) |
| 181 | { |
| 182 | return t && wdd->timeout && t >= wdd->timeout; |
| 183 | } |
| 184 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 185 | /* Use the following functions to manipulate watchdog driver specific data */ |
| 186 | static inline void watchdog_set_drvdata(struct watchdog_device *wdd, void *data) |
| 187 | { |
| 188 | wdd->driver_data = data; |
| 189 | } |
| 190 | |
| 191 | static inline void *watchdog_get_drvdata(struct watchdog_device *wdd) |
| 192 | { |
| 193 | return wdd->driver_data; |
| 194 | } |
| 195 | |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 196 | /* Use the following functions to report watchdog pretimeout event */ |
| 197 | #if IS_ENABLED(CONFIG_WATCHDOG_PRETIMEOUT_GOV) |
| 198 | void watchdog_notify_pretimeout(struct watchdog_device *wdd); |
| 199 | #else |
| 200 | static inline void watchdog_notify_pretimeout(struct watchdog_device *wdd) |
| 201 | { |
| 202 | pr_alert("watchdog%d: pretimeout event\n", wdd->id); |
| 203 | } |
| 204 | #endif |
| 205 | |
Fabio Porcedda | cf13a84 | 2012-10-05 12:16:09 +0200 | [diff] [blame] | 206 | /* drivers/watchdog/watchdog_core.c */ |
Damien Riegel | 2165bf5 | 2015-11-16 12:27:59 -0500 | [diff] [blame] | 207 | void watchdog_set_restart_priority(struct watchdog_device *wdd, int priority); |
Fabio Porcedda | 3048253 | 2013-01-08 11:04:10 +0100 | [diff] [blame] | 208 | extern int watchdog_init_timeout(struct watchdog_device *wdd, |
| 209 | unsigned int timeout_parm, struct device *dev); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 210 | extern int watchdog_register_device(struct watchdog_device *); |
| 211 | extern void watchdog_unregister_device(struct watchdog_device *); |
| 212 | |
Neil Armstrong | 83fbae5 | 2016-05-27 17:33:54 +0200 | [diff] [blame] | 213 | /* devres register variant */ |
| 214 | int devm_watchdog_register_device(struct device *dev, struct watchdog_device *); |
| 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | #endif /* ifndef _LINUX_WATCHDOG_H */ |