aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim Van Sebroeck <wim@iguana.be>2011-07-22 15:00:16 -0400
committerWim Van Sebroeck <wim@iguana.be>2011-07-28 04:01:18 -0400
commit3f43f68e29f1dcb853d70280c7412fc0ef9a0da6 (patch)
tree7954a552341a37163d0ebe2c975bfe002e2abbd3
parent78d88fc01202b088573c962e2885556a5e99bf74 (diff)
watchdog: WatchDog Timer Driver Core - Add minimum and max timeout
Add min_timeout (minimum timeout) and max_timeout values so that the framework can check if the new timeout value is between the minimum and maximum timeout values. If both values are 0, then the framework will leave the check for the watchdog device driver itself. Signed-off-by: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Wim Van Sebroeck <wim@iguana.be> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Wolfram Sang <w.sang@pengutronix.de>
-rw-r--r--Documentation/watchdog/watchdog-kernel-api.txt4
-rw-r--r--drivers/watchdog/watchdog_core.c10
-rw-r--r--drivers/watchdog/watchdog_dev.c3
-rw-r--r--include/linux/watchdog.h4
4 files changed, 21 insertions, 0 deletions
diff --git a/Documentation/watchdog/watchdog-kernel-api.txt b/Documentation/watchdog/watchdog-kernel-api.txt
index 829955bd245e..4f7c894244d2 100644
--- a/Documentation/watchdog/watchdog-kernel-api.txt
+++ b/Documentation/watchdog/watchdog-kernel-api.txt
@@ -43,6 +43,8 @@ struct watchdog_device {
43 const struct watchdog_ops *ops; 43 const struct watchdog_ops *ops;
44 unsigned int bootstatus; 44 unsigned int bootstatus;
45 unsigned int timeout; 45 unsigned int timeout;
46 unsigned int min_timeout;
47 unsigned int max_timeout;
46 void *driver_data; 48 void *driver_data;
47 unsigned long status; 49 unsigned long status;
48}; 50};
@@ -52,6 +54,8 @@ It contains following fields:
52 additional information about the watchdog timer itself. (Like it's unique name) 54 additional information about the watchdog timer itself. (Like it's unique name)
53* ops: a pointer to the list of watchdog operations that the watchdog supports. 55* ops: a pointer to the list of watchdog operations that the watchdog supports.
54* timeout: the watchdog timer's timeout value (in seconds). 56* timeout: the watchdog timer's timeout value (in seconds).
57* min_timeout: the watchdog timer's minimum timeout value (in seconds).
58* max_timeout: the watchdog timer's maximum timeout value (in seconds).
55* bootstatus: status of the device after booting (reported with watchdog 59* bootstatus: status of the device after booting (reported with watchdog
56 WDIOF_* status bits). 60 WDIOF_* status bits).
57* driver_data: a pointer to the drivers private data of a watchdog device. 61* driver_data: a pointer to the drivers private data of a watchdog device.
diff --git a/drivers/watchdog/watchdog_core.c b/drivers/watchdog/watchdog_core.c
index 47fc1267ad4e..cfa1a1518aad 100644
--- a/drivers/watchdog/watchdog_core.c
+++ b/drivers/watchdog/watchdog_core.c
@@ -59,6 +59,16 @@ int watchdog_register_device(struct watchdog_device *wdd)
59 return -EINVAL; 59 return -EINVAL;
60 60
61 /* 61 /*
62 * Check that we have valid min and max timeout values, if
63 * not reset them both to 0 (=not used or unknown)
64 */
65 if (wdd->min_timeout > wdd->max_timeout) {
66 pr_info("Invalid min and max timeout values, resetting to 0!\n");
67 wdd->min_timeout = 0;
68 wdd->max_timeout = 0;
69 }
70
71 /*
62 * Note: now that all watchdog_device data has been verified, we 72 * Note: now that all watchdog_device data has been verified, we
63 * will not check this anymore in other functions. If data gets 73 * will not check this anymore in other functions. If data gets
64 * corrupted in a later stage then we expect a kernel panic! 74 * corrupted in a later stage then we expect a kernel panic!
diff --git a/drivers/watchdog/watchdog_dev.c b/drivers/watchdog/watchdog_dev.c
index e7134a5979c6..d33520d0b4c9 100644
--- a/drivers/watchdog/watchdog_dev.c
+++ b/drivers/watchdog/watchdog_dev.c
@@ -220,6 +220,9 @@ static long watchdog_ioctl(struct file *file, unsigned int cmd,
220 return -EOPNOTSUPP; 220 return -EOPNOTSUPP;
221 if (get_user(val, p)) 221 if (get_user(val, p))
222 return -EFAULT; 222 return -EFAULT;
223 if ((wdd->max_timeout != 0) &&
224 (val < wdd->min_timeout || val > wdd->max_timeout))
225 return -EINVAL;
223 err = wdd->ops->set_timeout(wdd, val); 226 err = wdd->ops->set_timeout(wdd, val);
224 if (err < 0) 227 if (err < 0)
225 return err; 228 return err;
diff --git a/include/linux/watchdog.h b/include/linux/watchdog.h
index 325d90b6641b..111843f88b2a 100644
--- a/include/linux/watchdog.h
+++ b/include/linux/watchdog.h
@@ -95,6 +95,8 @@ struct watchdog_ops {
95 * @ops: Pointer to the list of watchdog operations. 95 * @ops: Pointer to the list of watchdog operations.
96 * @bootstatus: Status of the watchdog device at boot. 96 * @bootstatus: Status of the watchdog device at boot.
97 * @timeout: The watchdog devices timeout value. 97 * @timeout: The watchdog devices timeout value.
98 * @min_timeout:The watchdog devices minimum timeout value.
99 * @max_timeout:The watchdog devices maximum timeout value.
98 * @driver-data:Pointer to the drivers private data. 100 * @driver-data:Pointer to the drivers private data.
99 * @status: Field that contains the devices internal status bits. 101 * @status: Field that contains the devices internal status bits.
100 * 102 *
@@ -109,6 +111,8 @@ struct watchdog_device {
109 const struct watchdog_ops *ops; 111 const struct watchdog_ops *ops;
110 unsigned int bootstatus; 112 unsigned int bootstatus;
111 unsigned int timeout; 113 unsigned int timeout;
114 unsigned int min_timeout;
115 unsigned int max_timeout;
112 void *driver_data; 116 void *driver_data;
113 unsigned long status; 117 unsigned long status;
114/* Bit numbers for status flags */ 118/* Bit numbers for status flags */