blob: bb79f649dc7ed9ecd70abe2759cfa5a3bac8d21c [file] [log] [blame]
Andrew Victor853807f2006-03-14 11:11:04 +02001/*
2 * Watchdog driver for Atmel AT91RM9200 (Thunder)
3 *
4 * Copyright (C) 2003 SAN People (Pty) Ltd
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Jiri Slaby1977f032007-10-18 23:40:25 -070012#include <linux/bitops.h>
Andrew Victor853807f2006-03-14 11:11:04 +020013#include <linux/errno.h>
14#include <linux/fs.h>
15#include <linux/init.h>
16#include <linux/kernel.h>
17#include <linux/miscdevice.h>
18#include <linux/module.h>
19#include <linux/moduleparam.h>
Andrew Victordfc7bd92006-05-21 15:32:59 +020020#include <linux/platform_device.h>
Andrew Victor853807f2006-03-14 11:11:04 +020021#include <linux/types.h>
22#include <linux/watchdog.h>
Alan Cox27606002008-05-19 14:05:19 +010023#include <linux/uaccess.h>
Andrew Victor55d8bae2006-11-30 17:16:43 +010024#include <asm/arch/at91_st.h>
Andrew Victor853807f2006-03-14 11:11:04 +020025
26
Andrew Victordfc7bd92006-05-21 15:32:59 +020027#define WDT_DEFAULT_TIME 5 /* seconds */
28#define WDT_MAX_TIME 256 /* seconds */
Andrew Victor853807f2006-03-14 11:11:04 +020029
30static int wdt_time = WDT_DEFAULT_TIME;
31static int nowayout = WATCHDOG_NOWAYOUT;
32
33module_param(wdt_time, int, 0);
Alan Cox27606002008-05-19 14:05:19 +010034MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default="
35 __MODULE_STRING(WDT_DEFAULT_TIME) ")");
Andrew Victor853807f2006-03-14 11:11:04 +020036
Andrew Victordfc7bd92006-05-21 15:32:59 +020037#ifdef CONFIG_WATCHDOG_NOWAYOUT
Andrew Victor853807f2006-03-14 11:11:04 +020038module_param(nowayout, int, 0);
Alan Cox27606002008-05-19 14:05:19 +010039MODULE_PARM_DESC(nowayout,
40 "Watchdog cannot be stopped once started (default="
41 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Andrew Victordfc7bd92006-05-21 15:32:59 +020042#endif
Andrew Victor853807f2006-03-14 11:11:04 +020043
44
45static unsigned long at91wdt_busy;
46
47/* ......................................................................... */
48
49/*
50 * Disable the watchdog.
51 */
Alan Cox27606002008-05-19 14:05:19 +010052static inline void at91_wdt_stop(void)
Andrew Victor853807f2006-03-14 11:11:04 +020053{
54 at91_sys_write(AT91_ST_WDMR, AT91_ST_EXTEN);
55}
56
57/*
58 * Enable and reset the watchdog.
59 */
Alan Cox27606002008-05-19 14:05:19 +010060static inline void at91_wdt_start(void)
Andrew Victor853807f2006-03-14 11:11:04 +020061{
Alan Cox27606002008-05-19 14:05:19 +010062 at91_sys_write(AT91_ST_WDMR, AT91_ST_EXTEN | AT91_ST_RSTEN |
63 (((65536 * wdt_time) >> 8) & AT91_ST_WDV));
Andrew Victor853807f2006-03-14 11:11:04 +020064 at91_sys_write(AT91_ST_CR, AT91_ST_WDRST);
65}
66
67/*
68 * Reload the watchdog timer. (ie, pat the watchdog)
69 */
Alan Cox27606002008-05-19 14:05:19 +010070static inline void at91_wdt_reload(void)
Andrew Victor853807f2006-03-14 11:11:04 +020071{
72 at91_sys_write(AT91_ST_CR, AT91_ST_WDRST);
73}
74
75/* ......................................................................... */
76
77/*
78 * Watchdog device is opened, and watchdog starts running.
79 */
80static int at91_wdt_open(struct inode *inode, struct file *file)
81{
82 if (test_and_set_bit(0, &at91wdt_busy))
83 return -EBUSY;
84
85 at91_wdt_start();
86 return nonseekable_open(inode, file);
87}
88
89/*
90 * Close the watchdog device.
91 * If CONFIG_WATCHDOG_NOWAYOUT is NOT defined then the watchdog is also
92 * disabled.
93 */
94static int at91_wdt_close(struct inode *inode, struct file *file)
95{
Alan Cox27606002008-05-19 14:05:19 +010096 /* Disable the watchdog when file is closed */
Andrew Victor853807f2006-03-14 11:11:04 +020097 if (!nowayout)
Alan Cox27606002008-05-19 14:05:19 +010098 at91_wdt_stop();
Andrew Victor853807f2006-03-14 11:11:04 +020099
100 clear_bit(0, &at91wdt_busy);
101 return 0;
102}
103
104/*
105 * Change the watchdog time interval.
106 */
107static int at91_wdt_settimeout(int new_time)
108{
109 /*
110 * All counting occurs at SLOW_CLOCK / 128 = 0.256 Hz
111 *
112 * Since WDV is a 16-bit counter, the maximum period is
113 * 65536 / 0.256 = 256 seconds.
114 */
115 if ((new_time <= 0) || (new_time > WDT_MAX_TIME))
116 return -EINVAL;
117
Alan Cox27606002008-05-19 14:05:19 +0100118 /* Set new watchdog time. It will be used when
119 at91_wdt_start() is called. */
Andrew Victor853807f2006-03-14 11:11:04 +0200120 wdt_time = new_time;
121 return 0;
122}
123
124static struct watchdog_info at91_wdt_info = {
125 .identity = "at91 watchdog",
126 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
127};
128
129/*
130 * Handle commands from user-space.
131 */
Alan Cox27606002008-05-19 14:05:19 +0100132static long at91_wdt_ioct(struct file *file,
133 unsigned int cmd, unsigned long arg)
Andrew Victor853807f2006-03-14 11:11:04 +0200134{
135 void __user *argp = (void __user *)arg;
136 int __user *p = argp;
137 int new_value;
138
Alan Cox27606002008-05-19 14:05:19 +0100139 switch (cmd) {
140 case WDIOC_KEEPALIVE:
141 at91_wdt_reload(); /* pat the watchdog */
142 return 0;
143 case WDIOC_GETSUPPORT:
144 return copy_to_user(argp, &at91_wdt_info,
145 sizeof(at91_wdt_info)) ? -EFAULT : 0;
146 case WDIOC_SETTIMEOUT:
147 if (get_user(new_value, p))
148 return -EFAULT;
149 if (at91_wdt_settimeout(new_value))
150 return -EINVAL;
151 /* Enable new time value */
152 at91_wdt_start();
153 /* Return current value */
154 return put_user(wdt_time, p);
155 case WDIOC_GETTIMEOUT:
156 return put_user(wdt_time, p);
157 case WDIOC_GETSTATUS:
158 case WDIOC_GETBOOTSTATUS:
159 return put_user(0, p);
160 case WDIOC_SETOPTIONS:
161 if (get_user(new_value, p))
162 return -EFAULT;
163 if (new_value & WDIOS_DISABLECARD)
164 at91_wdt_stop();
165 if (new_value & WDIOS_ENABLECARD)
Andrew Victor853807f2006-03-14 11:11:04 +0200166 at91_wdt_start();
Alan Cox27606002008-05-19 14:05:19 +0100167 return 0;
168 default:
169 return -ENOTTY;
Andrew Victor853807f2006-03-14 11:11:04 +0200170 }
171}
172
173/*
174 * Pat the watchdog whenever device is written to.
175 */
Alan Cox27606002008-05-19 14:05:19 +0100176static ssize_t at91_wdt_write(struct file *file, const char *data,
177 size_t len, loff_t *ppos)
Andrew Victor853807f2006-03-14 11:11:04 +0200178{
179 at91_wdt_reload(); /* pat the watchdog */
180 return len;
181}
182
183/* ......................................................................... */
184
Arjan van de Ven62322d22006-07-03 00:24:21 -0700185static const struct file_operations at91wdt_fops = {
Andrew Victor853807f2006-03-14 11:11:04 +0200186 .owner = THIS_MODULE,
187 .llseek = no_llseek,
Alan Cox27606002008-05-19 14:05:19 +0100188 .unlocked_ioctl = at91_wdt_ioctl,
Andrew Victor853807f2006-03-14 11:11:04 +0200189 .open = at91_wdt_open,
190 .release = at91_wdt_close,
191 .write = at91_wdt_write,
192};
193
194static struct miscdevice at91wdt_miscdev = {
195 .minor = WATCHDOG_MINOR,
196 .name = "watchdog",
197 .fops = &at91wdt_fops,
198};
199
Andrew Victordfc7bd92006-05-21 15:32:59 +0200200static int __init at91wdt_probe(struct platform_device *pdev)
Andrew Victor853807f2006-03-14 11:11:04 +0200201{
202 int res;
203
Andrew Victore0b79e02006-12-04 15:56:18 +0200204 if (at91wdt_miscdev.parent)
Andrew Victordfc7bd92006-05-21 15:32:59 +0200205 return -EBUSY;
Andrew Victore0b79e02006-12-04 15:56:18 +0200206 at91wdt_miscdev.parent = &pdev->dev;
Andrew Victor853807f2006-03-14 11:11:04 +0200207
208 res = misc_register(&at91wdt_miscdev);
209 if (res)
210 return res;
211
Alan Cox27606002008-05-19 14:05:19 +0100212 printk(KERN_INFO "AT91 Watchdog Timer enabled (%d seconds%s)\n",
213 wdt_time, nowayout ? ", nowayout" : "");
Andrew Victor853807f2006-03-14 11:11:04 +0200214 return 0;
215}
216
Andrew Victordfc7bd92006-05-21 15:32:59 +0200217static int __exit at91wdt_remove(struct platform_device *pdev)
218{
219 int res;
220
221 res = misc_deregister(&at91wdt_miscdev);
222 if (!res)
Andrew Victore0b79e02006-12-04 15:56:18 +0200223 at91wdt_miscdev.parent = NULL;
Andrew Victordfc7bd92006-05-21 15:32:59 +0200224
225 return res;
226}
227
228static void at91wdt_shutdown(struct platform_device *pdev)
229{
230 at91_wdt_stop();
231}
232
233#ifdef CONFIG_PM
234
235static int at91wdt_suspend(struct platform_device *pdev, pm_message_t message)
236{
237 at91_wdt_stop();
238 return 0;
239}
240
241static int at91wdt_resume(struct platform_device *pdev)
242{
243 if (at91wdt_busy)
244 at91_wdt_start();
245 return 0;
246}
247
248#else
249#define at91wdt_suspend NULL
250#define at91wdt_resume NULL
251#endif
252
253static struct platform_driver at91wdt_driver = {
254 .probe = at91wdt_probe,
255 .remove = __exit_p(at91wdt_remove),
256 .shutdown = at91wdt_shutdown,
257 .suspend = at91wdt_suspend,
258 .resume = at91wdt_resume,
259 .driver = {
260 .name = "at91_wdt",
261 .owner = THIS_MODULE,
262 },
263};
264
265static int __init at91_wdt_init(void)
266{
Alan Cox27606002008-05-19 14:05:19 +0100267 /* Check that the heartbeat value is within range;
268 if not reset to the default */
Andrew Victordfc7bd92006-05-21 15:32:59 +0200269 if (at91_wdt_settimeout(wdt_time)) {
270 at91_wdt_settimeout(WDT_DEFAULT_TIME);
271 pr_info("at91_wdt: wdt_time value must be 1 <= wdt_time <= 256, using %d\n", wdt_time);
272 }
273
274 return platform_driver_register(&at91wdt_driver);
275}
276
Andrew Victor853807f2006-03-14 11:11:04 +0200277static void __exit at91_wdt_exit(void)
278{
Andrew Victordfc7bd92006-05-21 15:32:59 +0200279 platform_driver_unregister(&at91wdt_driver);
Andrew Victor853807f2006-03-14 11:11:04 +0200280}
281
282module_init(at91_wdt_init);
283module_exit(at91_wdt_exit);
284
285MODULE_AUTHOR("Andrew Victor");
286MODULE_DESCRIPTION("Watchdog driver for Atmel AT91RM9200");
287MODULE_LICENSE("GPL");
288MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Kay Sieversf37d1932008-04-10 21:29:23 -0700289MODULE_ALIAS("platform:at91_wdt");