blob: 35a4d8185b51cd83492743c043aea3ffa1eca9f9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic watchdog defines. Derived from..
3 *
4 * Berkshire PC Watchdog Defines
5 * by Ken Hollis <khollis@bitgate.com>
6 *
7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#ifndef _LINUX_WATCHDOG_H
9#define _LINUX_WATCHDOG_H
10
Andrey Panin4bfdf372005-07-27 11:43:58 -070011
Wim Van Sebroeckff0b3cd2011-11-29 16:24:16 +010012#include <linux/bitops.h>
Alan Cox45f5fed2012-05-10 21:48:59 +020013#include <linux/cdev.h>
Guenter Roeck664a3922016-02-28 13:12:15 -080014#include <linux/device.h>
15#include <linux/kernel.h>
Damien Riegel2165bf52015-11-16 12:27:59 -050016#include <linux/notifier.h>
David Howells607ca462012-10-13 10:46:48 +010017#include <uapi/linux/watchdog.h>
Andrey Panin4bfdf372005-07-27 11:43:58 -070018
Wim Van Sebroeck43316042011-07-22 18:55:18 +000019struct watchdog_ops;
20struct watchdog_device;
Guenter Roeckb4ffb192015-12-25 16:01:42 -080021struct watchdog_core_data;
Vladimir Zapolskiyff841362016-10-07 15:39:54 +030022struct watchdog_governor;
Wim Van Sebroeck43316042011-07-22 18:55:18 +000023
24/** struct watchdog_ops - The watchdog-devices operations
25 *
26 * @owner: The module owner.
27 * @start: The routine for starting the watchdog device.
28 * @stop: The routine for stopping the watchdog device.
29 * @ping: The routine that sends a keepalive ping to the watchdog device.
Wim Van Sebroeck2fa03562011-07-22 18:56:38 +000030 * @status: The routine that shows the status of the watchdog device.
Wolfram Sang760d2802015-11-03 09:00:16 +010031 * @set_timeout:The routine for setting the watchdog devices timeout value (in seconds).
Wolfram Sangdf044e02016-08-31 14:52:41 +030032 * @set_pretimeout:The routine for setting the watchdog devices pretimeout.
Wolfram Sang760d2802015-11-03 09:00:16 +010033 * @get_timeleft:The routine that gets the time left before a reset (in seconds).
Damien Riegel2165bf52015-11-16 12:27:59 -050034 * @restart: The routine for restarting the machine.
Wim Van Sebroeck78d88fc2011-07-22 18:59:49 +000035 * @ioctl: The routines that handles extra ioctl calls.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000036 *
37 * The watchdog_ops structure contains a list of low-level operations
38 * that control a watchdog device. It also contains the module that owns
39 * these operations. The start and stop function are mandatory, all other
Wolfram Sang80220fa2015-11-03 09:00:15 +010040 * functions are optional.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000041 */
42struct watchdog_ops {
43 struct module *owner;
44 /* mandatory operations */
45 int (*start)(struct watchdog_device *);
46 int (*stop)(struct watchdog_device *);
47 /* optional operations */
48 int (*ping)(struct watchdog_device *);
Wim Van Sebroeck2fa03562011-07-22 18:56:38 +000049 unsigned int (*status)(struct watchdog_device *);
Wim Van Sebroeck014d6942011-07-22 18:58:21 +000050 int (*set_timeout)(struct watchdog_device *, unsigned int);
Wolfram Sangdf044e02016-08-31 14:52:41 +030051 int (*set_pretimeout)(struct watchdog_device *, unsigned int);
Viresh Kumarfd7b6732012-03-16 09:14:00 +010052 unsigned int (*get_timeleft)(struct watchdog_device *);
Guenter Roeck4d8b2292016-02-26 17:32:49 -080053 int (*restart)(struct watchdog_device *, unsigned long, void *);
Wim Van Sebroeck78d88fc2011-07-22 18:59:49 +000054 long (*ioctl)(struct watchdog_device *, unsigned int, unsigned long);
Wim Van Sebroeck43316042011-07-22 18:55:18 +000055};
56
57/** struct watchdog_device - The structure that defines a watchdog device
58 *
Alan Cox45f5fed2012-05-10 21:48:59 +020059 * @id: The watchdog's ID. (Allocated by watchdog_register_device)
Alan Coxd6b469d2012-05-11 12:00:20 +020060 * @parent: The parent bus device
Guenter Roeckfaa58472016-01-03 15:11:56 -080061 * @groups: List of sysfs attribute groups to create when creating the
62 * watchdog device.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000063 * @info: Pointer to a watchdog_info structure.
64 * @ops: Pointer to the list of watchdog operations.
Vladimir Zapolskiyff841362016-10-07 15:39:54 +030065 * @gov: Pointer to watchdog pretimeout governor.
Wim Van Sebroeck2fa03562011-07-22 18:56:38 +000066 * @bootstatus: Status of the watchdog device at boot.
Wolfram Sang760d2802015-11-03 09:00:16 +010067 * @timeout: The watchdog devices timeout value (in seconds).
Wolfram Sangdf044e02016-08-31 14:52:41 +030068 * @pretimeout: The watchdog devices pre_timeout value.
Wolfram Sang760d2802015-11-03 09:00:16 +010069 * @min_timeout:The watchdog devices minimum timeout value (in seconds).
Guenter Roeck664a3922016-02-28 13:12:15 -080070 * @max_timeout:The watchdog devices maximum timeout value (in seconds)
71 * as configurable from user space. Only relevant if
72 * max_hw_heartbeat_ms is not provided.
Guenter Roeck15013ad2016-02-28 13:12:18 -080073 * @min_hw_heartbeat_ms:
Guenter Roeckf9f535c2016-05-27 14:19:06 -070074 * Hardware limit for minimum time between heartbeats,
75 * in milli-seconds.
Guenter Roeck664a3922016-02-28 13:12:15 -080076 * @max_hw_heartbeat_ms:
77 * Hardware limit for maximum timeout, in milli-seconds.
78 * Replaces max_timeout if specified.
Damien Riegele1313192015-11-20 16:54:51 -050079 * @reboot_nb: The notifier block to stop watchdog on reboot.
Damien Riegel2165bf52015-11-16 12:27:59 -050080 * @restart_nb: The notifier block to register a restart function.
Guenter Roeckb4ffb192015-12-25 16:01:42 -080081 * @driver_data:Pointer to the drivers private data.
82 * @wd_data: Pointer to watchdog core internal data.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000083 * @status: Field that contains the devices internal status bits.
Guenter Roeck664a3922016-02-28 13:12:15 -080084 * @deferred: Entry in wtd_deferred_reg_list which is used to
85 * register early initialized watchdogs.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000086 *
87 * The watchdog_device structure contains all information about a
88 * watchdog timer device.
89 *
90 * The driver-data field may not be accessed directly. It must be accessed
91 * via the watchdog_set_drvdata and watchdog_get_drvdata helpers.
Hans de Goedef4e9c822012-05-22 11:40:26 +020092 *
93 * The lock field is for watchdog core internal use only and should not be
94 * touched.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000095 */
96struct watchdog_device {
Alan Cox45f5fed2012-05-10 21:48:59 +020097 int id;
Alan Coxd6b469d2012-05-11 12:00:20 +020098 struct device *parent;
Guenter Roeckfaa58472016-01-03 15:11:56 -080099 const struct attribute_group **groups;
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000100 const struct watchdog_info *info;
101 const struct watchdog_ops *ops;
Vladimir Zapolskiyff841362016-10-07 15:39:54 +0300102 const struct watchdog_governor *gov;
Wim Van Sebroeck2fa03562011-07-22 18:56:38 +0000103 unsigned int bootstatus;
Wim Van Sebroeck014d6942011-07-22 18:58:21 +0000104 unsigned int timeout;
Wolfram Sangdf044e02016-08-31 14:52:41 +0300105 unsigned int pretimeout;
Wim Van Sebroeck3f43f682011-07-22 19:00:16 +0000106 unsigned int min_timeout;
107 unsigned int max_timeout;
Guenter Roeck15013ad2016-02-28 13:12:18 -0800108 unsigned int min_hw_heartbeat_ms;
Guenter Roeck664a3922016-02-28 13:12:15 -0800109 unsigned int max_hw_heartbeat_ms;
Damien Riegele1313192015-11-20 16:54:51 -0500110 struct notifier_block reboot_nb;
Damien Riegel2165bf52015-11-16 12:27:59 -0500111 struct notifier_block restart_nb;
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000112 void *driver_data;
Guenter Roeckb4ffb192015-12-25 16:01:42 -0800113 struct watchdog_core_data *wd_data;
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000114 unsigned long status;
115/* Bit numbers for status flags */
Wim Van Sebroeck234445b2011-07-22 18:57:55 +0000116#define WDOG_ACTIVE 0 /* Is the watchdog running/active */
Guenter Roeckb4ffb192015-12-25 16:01:42 -0800117#define WDOG_NO_WAY_OUT 1 /* Is 'nowayout' feature set ? */
118#define WDOG_STOP_ON_REBOOT 2 /* Should be stopped on reboot */
Guenter Roeckee142882016-02-28 13:12:16 -0800119#define WDOG_HW_RUNNING 3 /* True if HW watchdog running */
Jean-Baptiste Theouef901742015-06-09 09:55:02 -0700120 struct list_head deferred;
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000121};
122
Uwe Kleine-König4846e372014-09-09 22:18:31 +0200123#define WATCHDOG_NOWAYOUT IS_BUILTIN(CONFIG_WATCHDOG_NOWAYOUT)
124#define WATCHDOG_NOWAYOUT_INIT_STATUS (WATCHDOG_NOWAYOUT << WDOG_NO_WAY_OUT)
Wim Van Sebroeckff0b3cd2011-11-29 16:24:16 +0100125
Adam Buchbinder48fc7f72012-09-19 21:48:00 -0400126/* Use the following function to check whether or not the watchdog is active */
Viresh Kumar257f8c42012-03-12 09:51:56 +0530127static inline bool watchdog_active(struct watchdog_device *wdd)
128{
129 return test_bit(WDOG_ACTIVE, &wdd->status);
130}
131
Guenter Roeckee142882016-02-28 13:12:16 -0800132/*
133 * Use the following function to check whether or not the hardware watchdog
134 * is running
135 */
136static inline bool watchdog_hw_running(struct watchdog_device *wdd)
137{
138 return test_bit(WDOG_HW_RUNNING, &wdd->status);
139}
140
Wim Van Sebroeckff0b3cd2011-11-29 16:24:16 +0100141/* Use the following function to set the nowayout feature */
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100142static inline void watchdog_set_nowayout(struct watchdog_device *wdd, bool nowayout)
Wim Van Sebroeckff0b3cd2011-11-29 16:24:16 +0100143{
144 if (nowayout)
145 set_bit(WDOG_NO_WAY_OUT, &wdd->status);
146}
147
Damien Riegele1313192015-11-20 16:54:51 -0500148/* Use the following function to stop the watchdog on reboot */
149static inline void watchdog_stop_on_reboot(struct watchdog_device *wdd)
150{
151 set_bit(WDOG_STOP_ON_REBOOT, &wdd->status);
152}
153
Fabio Porcedda30482532013-01-08 11:04:10 +0100154/* Use the following function to check if a timeout value is invalid */
155static inline bool watchdog_timeout_invalid(struct watchdog_device *wdd, unsigned int t)
156{
Guenter Roeck1e935942015-09-29 01:27:24 -0700157 /*
158 * The timeout is invalid if
Guenter Roeck664a3922016-02-28 13:12:15 -0800159 * - the requested value is larger than UINT_MAX / 1000
160 * (since internal calculations are done in milli-seconds),
161 * or
Guenter Roeck1e935942015-09-29 01:27:24 -0700162 * - the requested value is smaller than the configured minimum timeout,
163 * or
Guenter Roeck664a3922016-02-28 13:12:15 -0800164 * - a maximum hardware timeout is not configured, a maximum timeout
165 * is configured, and the requested value is larger than the
166 * configured maximum timeout.
Guenter Roeck1e935942015-09-29 01:27:24 -0700167 */
Guenter Roeck664a3922016-02-28 13:12:15 -0800168 return t > UINT_MAX / 1000 || t < wdd->min_timeout ||
169 (!wdd->max_hw_heartbeat_ms && wdd->max_timeout &&
170 t > wdd->max_timeout);
Fabio Porcedda30482532013-01-08 11:04:10 +0100171}
172
Wolfram Sangdf044e02016-08-31 14:52:41 +0300173/* Use the following function to check if a pretimeout value is invalid */
174static inline bool watchdog_pretimeout_invalid(struct watchdog_device *wdd,
175 unsigned int t)
176{
177 return t && wdd->timeout && t >= wdd->timeout;
178}
179
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000180/* Use the following functions to manipulate watchdog driver specific data */
181static inline void watchdog_set_drvdata(struct watchdog_device *wdd, void *data)
182{
183 wdd->driver_data = data;
184}
185
186static inline void *watchdog_get_drvdata(struct watchdog_device *wdd)
187{
188 return wdd->driver_data;
189}
190
Vladimir Zapolskiyff841362016-10-07 15:39:54 +0300191/* Use the following functions to report watchdog pretimeout event */
192#if IS_ENABLED(CONFIG_WATCHDOG_PRETIMEOUT_GOV)
193void watchdog_notify_pretimeout(struct watchdog_device *wdd);
194#else
195static inline void watchdog_notify_pretimeout(struct watchdog_device *wdd)
196{
197 pr_alert("watchdog%d: pretimeout event\n", wdd->id);
198}
199#endif
200
Fabio Porceddacf13a842012-10-05 12:16:09 +0200201/* drivers/watchdog/watchdog_core.c */
Damien Riegel2165bf52015-11-16 12:27:59 -0500202void watchdog_set_restart_priority(struct watchdog_device *wdd, int priority);
Fabio Porcedda30482532013-01-08 11:04:10 +0100203extern int watchdog_init_timeout(struct watchdog_device *wdd,
204 unsigned int timeout_parm, struct device *dev);
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000205extern int watchdog_register_device(struct watchdog_device *);
206extern void watchdog_unregister_device(struct watchdog_device *);
207
Neil Armstrong83fbae52016-05-27 17:33:54 +0200208/* devres register variant */
209int devm_watchdog_register_device(struct device *dev, struct watchdog_device *);
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#endif /* ifndef _LINUX_WATCHDOG_H */