watchdog: nowayout is bool
[deliverable/linux.git] / drivers / watchdog / ks8695_wdt.c
CommitLineData
ccb8f430
AV
1/*
2 * Watchdog driver for Kendin/Micrel KS8695.
3 *
4 * (C) 2007 Andrew Victor
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
27c766aa
JP
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
1977f032 13#include <linux/bitops.h>
ccb8f430
AV
14#include <linux/errno.h>
15#include <linux/fs.h>
16#include <linux/init.h>
17#include <linux/kernel.h>
18#include <linux/miscdevice.h>
19#include <linux/module.h>
20#include <linux/moduleparam.h>
21#include <linux/platform_device.h>
22#include <linux/types.h>
23#include <linux/watchdog.h>
f4fabce1
AC
24#include <linux/io.h>
25#include <linux/uaccess.h>
568dba66 26#include <mach/hardware.h>
a09e64fb 27#include <mach/regs-timer.h>
ccb8f430 28
ccb8f430
AV
29#define WDT_DEFAULT_TIME 5 /* seconds */
30#define WDT_MAX_TIME 171 /* seconds */
31
32static int wdt_time = WDT_DEFAULT_TIME;
86a1e189 33static bool nowayout = WATCHDOG_NOWAYOUT;
ccb8f430
AV
34
35module_param(wdt_time, int, 0);
f4fabce1
AC
36MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default="
37 __MODULE_STRING(WDT_DEFAULT_TIME) ")");
ccb8f430
AV
38
39#ifdef CONFIG_WATCHDOG_NOWAYOUT
86a1e189 40module_param(nowayout, bool, 0);
f4fabce1
AC
41MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
42 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
ccb8f430
AV
43#endif
44
45
46static unsigned long ks8695wdt_busy;
1334f329 47static DEFINE_SPINLOCK(ks8695_lock);
ccb8f430
AV
48
49/* ......................................................................... */
50
51/*
52 * Disable the watchdog.
53 */
f4fabce1 54static inline void ks8695_wdt_stop(void)
ccb8f430
AV
55{
56 unsigned long tmcon;
57
f4fabce1 58 spin_lock(&ks8695_lock);
ccb8f430
AV
59 /* disable timer0 */
60 tmcon = __raw_readl(KS8695_TMR_VA + KS8695_TMCON);
61 __raw_writel(tmcon & ~TMCON_T0EN, KS8695_TMR_VA + KS8695_TMCON);
f4fabce1 62 spin_unlock(&ks8695_lock);
ccb8f430
AV
63}
64
65/*
66 * Enable and reset the watchdog.
67 */
f4fabce1 68static inline void ks8695_wdt_start(void)
ccb8f430
AV
69{
70 unsigned long tmcon;
0a51810a 71 unsigned long tval = wdt_time * KS8695_CLOCK_RATE;
ccb8f430 72
f4fabce1 73 spin_lock(&ks8695_lock);
ccb8f430
AV
74 /* disable timer0 */
75 tmcon = __raw_readl(KS8695_TMR_VA + KS8695_TMCON);
76 __raw_writel(tmcon & ~TMCON_T0EN, KS8695_TMR_VA + KS8695_TMCON);
77
78 /* program timer0 */
79 __raw_writel(tval | T0TC_WATCHDOG, KS8695_TMR_VA + KS8695_T0TC);
80
81 /* re-enable timer0 */
82 tmcon = __raw_readl(KS8695_TMR_VA + KS8695_TMCON);
83 __raw_writel(tmcon | TMCON_T0EN, KS8695_TMR_VA + KS8695_TMCON);
f4fabce1 84 spin_unlock(&ks8695_lock);
ccb8f430
AV
85}
86
87/*
88 * Reload the watchdog timer. (ie, pat the watchdog)
89 */
f4fabce1 90static inline void ks8695_wdt_reload(void)
ccb8f430
AV
91{
92 unsigned long tmcon;
93
f4fabce1 94 spin_lock(&ks8695_lock);
ccb8f430
AV
95 /* disable, then re-enable timer0 */
96 tmcon = __raw_readl(KS8695_TMR_VA + KS8695_TMCON);
97 __raw_writel(tmcon & ~TMCON_T0EN, KS8695_TMR_VA + KS8695_TMCON);
98 __raw_writel(tmcon | TMCON_T0EN, KS8695_TMR_VA + KS8695_TMCON);
f4fabce1 99 spin_unlock(&ks8695_lock);
ccb8f430
AV
100}
101
102/*
103 * Change the watchdog time interval.
104 */
105static int ks8695_wdt_settimeout(int new_time)
106{
107 /*
0a51810a 108 * All counting occurs at KS8695_CLOCK_RATE / 128 = 0.256 Hz
ccb8f430
AV
109 *
110 * Since WDV is a 16-bit counter, the maximum period is
111 * 65536 / 0.256 = 256 seconds.
112 */
113 if ((new_time <= 0) || (new_time > WDT_MAX_TIME))
114 return -EINVAL;
115
f4fabce1
AC
116 /* Set new watchdog time. It will be used when
117 ks8695_wdt_start() is called. */
ccb8f430
AV
118 wdt_time = new_time;
119 return 0;
120}
121
122/* ......................................................................... */
123
124/*
125 * Watchdog device is opened, and watchdog starts running.
126 */
127static int ks8695_wdt_open(struct inode *inode, struct file *file)
128{
129 if (test_and_set_bit(0, &ks8695wdt_busy))
130 return -EBUSY;
131
132 ks8695_wdt_start();
133 return nonseekable_open(inode, file);
134}
135
136/*
137 * Close the watchdog device.
138 * If CONFIG_WATCHDOG_NOWAYOUT is NOT defined then the watchdog is also
139 * disabled.
140 */
141static int ks8695_wdt_close(struct inode *inode, struct file *file)
142{
f4fabce1 143 /* Disable the watchdog when file is closed */
ccb8f430 144 if (!nowayout)
f4fabce1 145 ks8695_wdt_stop();
ccb8f430
AV
146 clear_bit(0, &ks8695wdt_busy);
147 return 0;
148}
149
42747d71 150static const struct watchdog_info ks8695_wdt_info = {
ccb8f430
AV
151 .identity = "ks8695 watchdog",
152 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
153};
154
155/*
156 * Handle commands from user-space.
157 */
f4fabce1
AC
158static long ks8695_wdt_ioctl(struct file *file, unsigned int cmd,
159 unsigned long arg)
ccb8f430
AV
160{
161 void __user *argp = (void __user *)arg;
162 int __user *p = argp;
163 int new_value;
164
f4fabce1 165 switch (cmd) {
f4fabce1
AC
166 case WDIOC_GETSUPPORT:
167 return copy_to_user(argp, &ks8695_wdt_info,
168 sizeof(ks8695_wdt_info)) ? -EFAULT : 0;
f4fabce1
AC
169 case WDIOC_GETSTATUS:
170 case WDIOC_GETBOOTSTATUS:
171 return put_user(0, p);
172 case WDIOC_SETOPTIONS:
173 if (get_user(new_value, p))
174 return -EFAULT;
175 if (new_value & WDIOS_DISABLECARD)
176 ks8695_wdt_stop();
177 if (new_value & WDIOS_ENABLECARD)
ccb8f430 178 ks8695_wdt_start();
f4fabce1 179 return 0;
0c06090c
WVS
180 case WDIOC_KEEPALIVE:
181 ks8695_wdt_reload(); /* pat the watchdog */
182 return 0;
183 case WDIOC_SETTIMEOUT:
184 if (get_user(new_value, p))
185 return -EFAULT;
186 if (ks8695_wdt_settimeout(new_value))
187 return -EINVAL;
188 /* Enable new time value */
189 ks8695_wdt_start();
190 /* Return current value */
191 return put_user(wdt_time, p);
192 case WDIOC_GETTIMEOUT:
193 return put_user(wdt_time, p);
f4fabce1
AC
194 default:
195 return -ENOTTY;
ccb8f430
AV
196 }
197}
198
199/*
200 * Pat the watchdog whenever device is written to.
201 */
f4fabce1
AC
202static ssize_t ks8695_wdt_write(struct file *file, const char *data,
203 size_t len, loff_t *ppos)
ccb8f430
AV
204{
205 ks8695_wdt_reload(); /* pat the watchdog */
206 return len;
207}
208
209/* ......................................................................... */
210
211static const struct file_operations ks8695wdt_fops = {
212 .owner = THIS_MODULE,
213 .llseek = no_llseek,
f4fabce1 214 .unlocked_ioctl = ks8695_wdt_ioctl,
ccb8f430
AV
215 .open = ks8695_wdt_open,
216 .release = ks8695_wdt_close,
217 .write = ks8695_wdt_write,
218};
219
220static struct miscdevice ks8695wdt_miscdev = {
221 .minor = WATCHDOG_MINOR,
222 .name = "watchdog",
223 .fops = &ks8695wdt_fops,
224};
225
c98d58e0 226static int __devinit ks8695wdt_probe(struct platform_device *pdev)
ccb8f430
AV
227{
228 int res;
229
230 if (ks8695wdt_miscdev.parent)
231 return -EBUSY;
232 ks8695wdt_miscdev.parent = &pdev->dev;
233
234 res = misc_register(&ks8695wdt_miscdev);
235 if (res)
236 return res;
237
27c766aa
JP
238 pr_info("KS8695 Watchdog Timer enabled (%d seconds%s)\n",
239 wdt_time, nowayout ? ", nowayout" : "");
ccb8f430
AV
240 return 0;
241}
242
c98d58e0 243static int __devexit ks8695wdt_remove(struct platform_device *pdev)
ccb8f430
AV
244{
245 int res;
246
247 res = misc_deregister(&ks8695wdt_miscdev);
248 if (!res)
249 ks8695wdt_miscdev.parent = NULL;
250
251 return res;
252}
253
254static void ks8695wdt_shutdown(struct platform_device *pdev)
255{
256 ks8695_wdt_stop();
257}
258
259#ifdef CONFIG_PM
260
261static int ks8695wdt_suspend(struct platform_device *pdev, pm_message_t message)
262{
263 ks8695_wdt_stop();
264 return 0;
265}
266
267static int ks8695wdt_resume(struct platform_device *pdev)
268{
269 if (ks8695wdt_busy)
270 ks8695_wdt_start();
271 return 0;
272}
273
274#else
275#define ks8695wdt_suspend NULL
276#define ks8695wdt_resume NULL
277#endif
278
279static struct platform_driver ks8695wdt_driver = {
280 .probe = ks8695wdt_probe,
c98d58e0 281 .remove = __devexit_p(ks8695wdt_remove),
ccb8f430
AV
282 .shutdown = ks8695wdt_shutdown,
283 .suspend = ks8695wdt_suspend,
284 .resume = ks8695wdt_resume,
285 .driver = {
286 .name = "ks8695_wdt",
287 .owner = THIS_MODULE,
288 },
289};
290
291static int __init ks8695_wdt_init(void)
292{
f4fabce1
AC
293 /* Check that the heartbeat value is within range;
294 if not reset to the default */
ccb8f430
AV
295 if (ks8695_wdt_settimeout(wdt_time)) {
296 ks8695_wdt_settimeout(WDT_DEFAULT_TIME);
a77dba7e
WVS
297 pr_info("ks8695_wdt: wdt_time value must be 1 <= wdt_time <= %i"
298 ", using %d\n", wdt_time, WDT_MAX_TIME);
ccb8f430 299 }
ccb8f430
AV
300 return platform_driver_register(&ks8695wdt_driver);
301}
302
303static void __exit ks8695_wdt_exit(void)
304{
305 platform_driver_unregister(&ks8695wdt_driver);
306}
307
308module_init(ks8695_wdt_init);
309module_exit(ks8695_wdt_exit);
310
311MODULE_AUTHOR("Andrew Victor");
312MODULE_DESCRIPTION("Watchdog driver for KS8695");
313MODULE_LICENSE("GPL");
314MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
f37d193c 315MODULE_ALIAS("platform:ks8695_wdt");
This page took 0.43835 seconds and 5 git commands to generate.