Pull out string hash to <linux/stringhash.h>
[linux-2.6-block.git] / include / linux / watchdog.h
CommitLineData
1da177e4
LT
1/*
2 * Generic watchdog defines. Derived from..
3 *
4 * Berkshire PC Watchdog Defines
5 * by Ken Hollis <khollis@bitgate.com>
6 *
7 */
1da177e4
LT
8#ifndef _LINUX_WATCHDOG_H
9#define _LINUX_WATCHDOG_H
10
4bfdf378 11
ff0b3cd4 12#include <linux/bitops.h>
45f5fed3 13#include <linux/cdev.h>
664a3923
GR
14#include <linux/device.h>
15#include <linux/kernel.h>
2165bf52 16#include <linux/notifier.h>
607ca46e 17#include <uapi/linux/watchdog.h>
4bfdf378 18
43316044
WVS
19struct watchdog_ops;
20struct watchdog_device;
b4ffb190 21struct watchdog_core_data;
43316044
WVS
22
23/** struct watchdog_ops - The watchdog-devices operations
24 *
25 * @owner: The module owner.
26 * @start: The routine for starting the watchdog device.
27 * @stop: The routine for stopping the watchdog device.
28 * @ping: The routine that sends a keepalive ping to the watchdog device.
2fa03560 29 * @status: The routine that shows the status of the watchdog device.
760d2800
WS
30 * @set_timeout:The routine for setting the watchdog devices timeout value (in seconds).
31 * @get_timeleft:The routine that gets the time left before a reset (in seconds).
2165bf52 32 * @restart: The routine for restarting the machine.
78d88fc0 33 * @ioctl: The routines that handles extra ioctl calls.
43316044
WVS
34 *
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
80220fa7 38 * functions are optional.
43316044
WVS
39 */
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 *);
2fa03560 47 unsigned int (*status)(struct watchdog_device *);
014d694e 48 int (*set_timeout)(struct watchdog_device *, unsigned int);
fd7b673c 49 unsigned int (*get_timeleft)(struct watchdog_device *);
4d8b229d 50 int (*restart)(struct watchdog_device *, unsigned long, void *);
78d88fc0 51 long (*ioctl)(struct watchdog_device *, unsigned int, unsigned long);
43316044
WVS
52};
53
54/** struct watchdog_device - The structure that defines a watchdog device
55 *
45f5fed3 56 * @id: The watchdog's ID. (Allocated by watchdog_register_device)
d6b469d9 57 * @parent: The parent bus device
faa58475
GR
58 * @groups: List of sysfs attribute groups to create when creating the
59 * watchdog device.
43316044
WVS
60 * @info: Pointer to a watchdog_info structure.
61 * @ops: Pointer to the list of watchdog operations.
2fa03560 62 * @bootstatus: Status of the watchdog device at boot.
760d2800
WS
63 * @timeout: The watchdog devices timeout value (in seconds).
64 * @min_timeout:The watchdog devices minimum timeout value (in seconds).
664a3923
GR
65 * @max_timeout:The watchdog devices maximum timeout value (in seconds)
66 * as configurable from user space. Only relevant if
67 * max_hw_heartbeat_ms is not provided.
15013ad8
GR
68 * @min_hw_heartbeat_ms:
69 * Minimum time between heartbeats, in milli-seconds.
664a3923
GR
70 * @max_hw_heartbeat_ms:
71 * Hardware limit for maximum timeout, in milli-seconds.
72 * Replaces max_timeout if specified.
e1313196 73 * @reboot_nb: The notifier block to stop watchdog on reboot.
2165bf52 74 * @restart_nb: The notifier block to register a restart function.
b4ffb190
GR
75 * @driver_data:Pointer to the drivers private data.
76 * @wd_data: Pointer to watchdog core internal data.
43316044 77 * @status: Field that contains the devices internal status bits.
664a3923
GR
78 * @deferred: Entry in wtd_deferred_reg_list which is used to
79 * register early initialized watchdogs.
43316044
WVS
80 *
81 * The watchdog_device structure contains all information about a
82 * watchdog timer device.
83 *
84 * The driver-data field may not be accessed directly. It must be accessed
85 * via the watchdog_set_drvdata and watchdog_get_drvdata helpers.
f4e9c82f
HG
86 *
87 * The lock field is for watchdog core internal use only and should not be
88 * touched.
43316044
WVS
89 */
90struct watchdog_device {
45f5fed3 91 int id;
d6b469d9 92 struct device *parent;
faa58475 93 const struct attribute_group **groups;
43316044
WVS
94 const struct watchdog_info *info;
95 const struct watchdog_ops *ops;
2fa03560 96 unsigned int bootstatus;
014d694e 97 unsigned int timeout;
3f43f68e
WVS
98 unsigned int min_timeout;
99 unsigned int max_timeout;
15013ad8 100 unsigned int min_hw_heartbeat_ms;
664a3923 101 unsigned int max_hw_heartbeat_ms;
e1313196 102 struct notifier_block reboot_nb;
2165bf52 103 struct notifier_block restart_nb;
43316044 104 void *driver_data;
b4ffb190 105 struct watchdog_core_data *wd_data;
43316044
WVS
106 unsigned long status;
107/* Bit numbers for status flags */
234445b4 108#define WDOG_ACTIVE 0 /* Is the watchdog running/active */
b4ffb190
GR
109#define WDOG_NO_WAY_OUT 1 /* Is 'nowayout' feature set ? */
110#define WDOG_STOP_ON_REBOOT 2 /* Should be stopped on reboot */
ee142889 111#define WDOG_HW_RUNNING 3 /* True if HW watchdog running */
ef90174f 112 struct list_head deferred;
43316044
WVS
113};
114
4846e378
UKK
115#define WATCHDOG_NOWAYOUT IS_BUILTIN(CONFIG_WATCHDOG_NOWAYOUT)
116#define WATCHDOG_NOWAYOUT_INIT_STATUS (WATCHDOG_NOWAYOUT << WDOG_NO_WAY_OUT)
ff0b3cd4 117
48fc7f7e 118/* Use the following function to check whether or not the watchdog is active */
257f8c4a
VK
119static inline bool watchdog_active(struct watchdog_device *wdd)
120{
121 return test_bit(WDOG_ACTIVE, &wdd->status);
122}
123
ee142889
GR
124/*
125 * Use the following function to check whether or not the hardware watchdog
126 * is running
127 */
128static inline bool watchdog_hw_running(struct watchdog_device *wdd)
129{
130 return test_bit(WDOG_HW_RUNNING, &wdd->status);
131}
132
ff0b3cd4 133/* Use the following function to set the nowayout feature */
86a1e189 134static inline void watchdog_set_nowayout(struct watchdog_device *wdd, bool nowayout)
ff0b3cd4
WVS
135{
136 if (nowayout)
137 set_bit(WDOG_NO_WAY_OUT, &wdd->status);
138}
139
e1313196
DR
140/* Use the following function to stop the watchdog on reboot */
141static inline void watchdog_stop_on_reboot(struct watchdog_device *wdd)
142{
143 set_bit(WDOG_STOP_ON_REBOOT, &wdd->status);
144}
145
3048253e
FP
146/* Use the following function to check if a timeout value is invalid */
147static inline bool watchdog_timeout_invalid(struct watchdog_device *wdd, unsigned int t)
148{
1e935949
GR
149 /*
150 * The timeout is invalid if
664a3923
GR
151 * - the requested value is larger than UINT_MAX / 1000
152 * (since internal calculations are done in milli-seconds),
153 * or
1e935949
GR
154 * - the requested value is smaller than the configured minimum timeout,
155 * or
664a3923
GR
156 * - a maximum hardware timeout is not configured, a maximum timeout
157 * is configured, and the requested value is larger than the
158 * configured maximum timeout.
1e935949 159 */
664a3923
GR
160 return t > UINT_MAX / 1000 || t < wdd->min_timeout ||
161 (!wdd->max_hw_heartbeat_ms && wdd->max_timeout &&
162 t > wdd->max_timeout);
3048253e
FP
163}
164
43316044
WVS
165/* Use the following functions to manipulate watchdog driver specific data */
166static inline void watchdog_set_drvdata(struct watchdog_device *wdd, void *data)
167{
168 wdd->driver_data = data;
169}
170
171static inline void *watchdog_get_drvdata(struct watchdog_device *wdd)
172{
173 return wdd->driver_data;
174}
175
cf13a84d 176/* drivers/watchdog/watchdog_core.c */
2165bf52 177void watchdog_set_restart_priority(struct watchdog_device *wdd, int priority);
3048253e
FP
178extern int watchdog_init_timeout(struct watchdog_device *wdd,
179 unsigned int timeout_parm, struct device *dev);
43316044
WVS
180extern int watchdog_register_device(struct watchdog_device *);
181extern void watchdog_unregister_device(struct watchdog_device *);
182
1da177e4 183#endif /* ifndef _LINUX_WATCHDOG_H */