blob: 5b52c834f7aaf98d2933bdf04dbfdb2aedc709e4 [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/device.h>
14#include <linux/cdev.h>
Damien Riegel2165bf52015-11-16 12:27:59 -050015#include <linux/notifier.h>
David Howells607ca462012-10-13 10:46:48 +010016#include <uapi/linux/watchdog.h>
Andrey Panin4bfdf372005-07-27 11:43:58 -070017
Wim Van Sebroeck43316042011-07-22 18:55:18 +000018struct watchdog_ops;
19struct watchdog_device;
20
21/** struct watchdog_ops - The watchdog-devices operations
22 *
23 * @owner: The module owner.
24 * @start: The routine for starting the watchdog device.
25 * @stop: The routine for stopping the watchdog device.
26 * @ping: The routine that sends a keepalive ping to the watchdog device.
Wim Van Sebroeck2fa03562011-07-22 18:56:38 +000027 * @status: The routine that shows the status of the watchdog device.
Wolfram Sang760d2802015-11-03 09:00:16 +010028 * @set_timeout:The routine for setting the watchdog devices timeout value (in seconds).
29 * @get_timeleft:The routine that gets the time left before a reset (in seconds).
Damien Riegel2165bf52015-11-16 12:27:59 -050030 * @restart: The routine for restarting the machine.
Hans de Goedee907df32012-05-22 11:40:26 +020031 * @ref: The ref operation for dyn. allocated watchdog_device structs
32 * @unref: The unref operation for dyn. allocated watchdog_device structs
Wim Van Sebroeck78d88fc2011-07-22 18:59:49 +000033 * @ioctl: The routines that handles extra ioctl calls.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000034 *
35 * The watchdog_ops structure contains a list of low-level operations
36 * that control a watchdog device. It also contains the module that owns
37 * these operations. The start and stop function are mandatory, all other
Wolfram Sang80220fa2015-11-03 09:00:15 +010038 * functions are optional.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000039 */
40struct watchdog_ops {
41 struct module *owner;
42 /* mandatory operations */
43 int (*start)(struct watchdog_device *);
44 int (*stop)(struct watchdog_device *);
45 /* optional operations */
46 int (*ping)(struct watchdog_device *);
Wim Van Sebroeck2fa03562011-07-22 18:56:38 +000047 unsigned int (*status)(struct watchdog_device *);
Wim Van Sebroeck014d6942011-07-22 18:58:21 +000048 int (*set_timeout)(struct watchdog_device *, unsigned int);
Viresh Kumarfd7b6732012-03-16 09:14:00 +010049 unsigned int (*get_timeleft)(struct watchdog_device *);
Damien Riegel2165bf52015-11-16 12:27:59 -050050 int (*restart)(struct watchdog_device *);
Hans de Goedee907df32012-05-22 11:40:26 +020051 void (*ref)(struct watchdog_device *);
52 void (*unref)(struct watchdog_device *);
Wim Van Sebroeck78d88fc2011-07-22 18:59:49 +000053 long (*ioctl)(struct watchdog_device *, unsigned int, unsigned long);
Wim Van Sebroeck43316042011-07-22 18:55:18 +000054};
55
56/** struct watchdog_device - The structure that defines a watchdog device
57 *
Alan Cox45f5fed2012-05-10 21:48:59 +020058 * @id: The watchdog's ID. (Allocated by watchdog_register_device)
59 * @cdev: The watchdog's Character device.
Alan Coxd6b469d2012-05-11 12:00:20 +020060 * @dev: The device for our watchdog
61 * @parent: The parent bus device
Wim Van Sebroeck43316042011-07-22 18:55:18 +000062 * @info: Pointer to a watchdog_info structure.
63 * @ops: Pointer to the list of watchdog operations.
Wim Van Sebroeck2fa03562011-07-22 18:56:38 +000064 * @bootstatus: Status of the watchdog device at boot.
Wolfram Sang760d2802015-11-03 09:00:16 +010065 * @timeout: The watchdog devices timeout value (in seconds).
66 * @min_timeout:The watchdog devices minimum timeout value (in seconds).
67 * @max_timeout:The watchdog devices maximum timeout value (in seconds).
Damien Riegel2165bf52015-11-16 12:27:59 -050068 * @restart_nb: The notifier block to register a restart function.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000069 * @driver-data:Pointer to the drivers private data.
Hans de Goedef4e9c822012-05-22 11:40:26 +020070 * @lock: Lock for watchdog core internal use only.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000071 * @status: Field that contains the devices internal status bits.
Jean-Baptiste Theouef901742015-06-09 09:55:02 -070072 * @deferred: entry in wtd_deferred_reg_list which is used to
73 * register early initialized watchdogs.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000074 *
75 * The watchdog_device structure contains all information about a
76 * watchdog timer device.
77 *
78 * The driver-data field may not be accessed directly. It must be accessed
79 * via the watchdog_set_drvdata and watchdog_get_drvdata helpers.
Hans de Goedef4e9c822012-05-22 11:40:26 +020080 *
81 * The lock field is for watchdog core internal use only and should not be
82 * touched.
Wim Van Sebroeck43316042011-07-22 18:55:18 +000083 */
84struct watchdog_device {
Alan Cox45f5fed2012-05-10 21:48:59 +020085 int id;
86 struct cdev cdev;
Alan Coxd6b469d2012-05-11 12:00:20 +020087 struct device *dev;
88 struct device *parent;
Wim Van Sebroeck43316042011-07-22 18:55:18 +000089 const struct watchdog_info *info;
90 const struct watchdog_ops *ops;
Wim Van Sebroeck2fa03562011-07-22 18:56:38 +000091 unsigned int bootstatus;
Wim Van Sebroeck014d6942011-07-22 18:58:21 +000092 unsigned int timeout;
Wim Van Sebroeck3f43f682011-07-22 19:00:16 +000093 unsigned int min_timeout;
94 unsigned int max_timeout;
Damien Riegel2165bf52015-11-16 12:27:59 -050095 struct notifier_block restart_nb;
Wim Van Sebroeck43316042011-07-22 18:55:18 +000096 void *driver_data;
Hans de Goedef4e9c822012-05-22 11:40:26 +020097 struct mutex lock;
Wim Van Sebroeck43316042011-07-22 18:55:18 +000098 unsigned long status;
99/* Bit numbers for status flags */
Wim Van Sebroeck234445b2011-07-22 18:57:55 +0000100#define WDOG_ACTIVE 0 /* Is the watchdog running/active */
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000101#define WDOG_DEV_OPEN 1 /* Opened via /dev/watchdog ? */
Wim Van Sebroeck017cf082011-07-22 18:58:54 +0000102#define WDOG_ALLOW_RELEASE 2 /* Did we receive the magic char ? */
Wim Van Sebroeck7e192b92011-07-22 18:59:17 +0000103#define WDOG_NO_WAY_OUT 3 /* Is 'nowayout' feature set ? */
Hans de Goedee907df32012-05-22 11:40:26 +0200104#define WDOG_UNREGISTERED 4 /* Has the device been unregistered */
Jean-Baptiste Theouef901742015-06-09 09:55:02 -0700105 struct list_head deferred;
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000106};
107
Uwe Kleine-König4846e372014-09-09 22:18:31 +0200108#define WATCHDOG_NOWAYOUT IS_BUILTIN(CONFIG_WATCHDOG_NOWAYOUT)
109#define WATCHDOG_NOWAYOUT_INIT_STATUS (WATCHDOG_NOWAYOUT << WDOG_NO_WAY_OUT)
Wim Van Sebroeckff0b3cd2011-11-29 16:24:16 +0100110
Adam Buchbinder48fc7f72012-09-19 21:48:00 -0400111/* Use the following function to check whether or not the watchdog is active */
Viresh Kumar257f8c4a2012-03-12 09:51:56 +0530112static inline bool watchdog_active(struct watchdog_device *wdd)
113{
114 return test_bit(WDOG_ACTIVE, &wdd->status);
115}
116
Wim Van Sebroeckff0b3cd2011-11-29 16:24:16 +0100117/* Use the following function to set the nowayout feature */
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100118static inline void watchdog_set_nowayout(struct watchdog_device *wdd, bool nowayout)
Wim Van Sebroeckff0b3cd2011-11-29 16:24:16 +0100119{
120 if (nowayout)
121 set_bit(WDOG_NO_WAY_OUT, &wdd->status);
122}
123
Fabio Porcedda30482532013-01-08 11:04:10 +0100124/* Use the following function to check if a timeout value is invalid */
125static inline bool watchdog_timeout_invalid(struct watchdog_device *wdd, unsigned int t)
126{
Guenter Roeck1e935942015-09-29 01:27:24 -0700127 /*
128 * The timeout is invalid if
129 * - the requested value is smaller than the configured minimum timeout,
130 * or
131 * - a maximum timeout is configured, and the requested value is larger
132 * than the maximum timeout.
133 */
134 return t < wdd->min_timeout ||
135 (wdd->max_timeout && t > wdd->max_timeout);
Fabio Porcedda30482532013-01-08 11:04:10 +0100136}
137
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000138/* Use the following functions to manipulate watchdog driver specific data */
139static inline void watchdog_set_drvdata(struct watchdog_device *wdd, void *data)
140{
141 wdd->driver_data = data;
142}
143
144static inline void *watchdog_get_drvdata(struct watchdog_device *wdd)
145{
146 return wdd->driver_data;
147}
148
Fabio Porceddacf13a842012-10-05 12:16:09 +0200149/* drivers/watchdog/watchdog_core.c */
Damien Riegel2165bf52015-11-16 12:27:59 -0500150void watchdog_set_restart_priority(struct watchdog_device *wdd, int priority);
Fabio Porcedda30482532013-01-08 11:04:10 +0100151extern int watchdog_init_timeout(struct watchdog_device *wdd,
152 unsigned int timeout_parm, struct device *dev);
Wim Van Sebroeck43316042011-07-22 18:55:18 +0000153extern int watchdog_register_device(struct watchdog_device *);
154extern void watchdog_unregister_device(struct watchdog_device *);
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#endif /* ifndef _LINUX_WATCHDOG_H */