2 * linux/drivers/char/ar7_wdt.c
4 * Copyright (C) 2007 OpenWrt.org
5 * Copyright (c) 2005 Enrik Berkhan <Enrik.Berkhan@akk.org>
7 * Some code taken from:
8 * National Semiconductor SCx200 Watchdog support
9 * Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <linux/errno.h>
29 #include <linux/init.h>
30 #include <linux/miscdevice.h>
31 #include <linux/watchdog.h>
32 #include <linux/notifier.h>
33 #include <linux/reboot.h>
35 #include <linux/ioport.h>
37 #include <asm/addrspace.h>
39 #include <asm/uaccess.h>
41 #include <asm/ar7/ar7.h>
43 #define DRVNAME "ar7_wdt"
44 #define LONGNAME "TI AR7 Watchdog Timer"
46 MODULE_AUTHOR("Nicolas Thill <nico@openwrt.org>");
47 MODULE_DESCRIPTION(LONGNAME
);
48 MODULE_LICENSE("GPL");
49 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
51 static int margin
= 60;
52 module_param(margin
, int, 0);
53 MODULE_PARM_DESC(margin
, "Watchdog margin in seconds");
55 static int nowayout
= WATCHDOG_NOWAYOUT
;
56 module_param(nowayout
, int, 0);
57 MODULE_PARM_DESC(nowayout
, "Disable watchdog shutdown on close");
70 static struct semaphore open_semaphore
;
71 static unsigned expect_close
;
73 /* XXX correct? assumed to be sysfreq/2. get this dynamically ... */
74 #define vbus_freq (ar7_bus_freq() / 2)
76 /* XXX currently fixed, allows max margin ~68.72 secs */
77 #define prescale_value 0xFFFF
79 static void ar7_wdt_kick(u32 value
)
81 volatile ar7_wdt_t
*ar7_wdt
= (ar7_wdt_t
*)ioremap(AR7_REGS_WDT
, sizeof(ar7_wdt_t
));
83 ar7_wdt
->kick_lock
= 0x5555;
84 if ((ar7_wdt
->kick_lock
& 3) == 1) {
85 ar7_wdt
->kick_lock
= 0xAAAA;
86 if ((ar7_wdt
->kick_lock
& 3) == 3) {
87 ar7_wdt
->kick
= value
;
91 printk(KERN_ERR DRVNAME
": failed to unlock WDT kick reg\n");
94 static void ar7_wdt_prescale(u32 value
)
96 volatile ar7_wdt_t
*ar7_wdt
= (ar7_wdt_t
*)ioremap(AR7_REGS_WDT
, sizeof(ar7_wdt_t
));
98 ar7_wdt
->prescale_lock
= 0x5A5A;
99 if ((ar7_wdt
->prescale_lock
& 3) == 1) {
100 ar7_wdt
->prescale_lock
= 0xA5A5;
101 if ((ar7_wdt
->prescale_lock
& 3) == 3) {
102 ar7_wdt
->prescale
= value
;
106 printk(KERN_ERR DRVNAME
": failed to unlock WDT prescale reg\n");
109 static void ar7_wdt_change(u32 value
)
111 volatile ar7_wdt_t
*ar7_wdt
= (ar7_wdt_t
*)ioremap(AR7_REGS_WDT
, sizeof(ar7_wdt_t
));
113 ar7_wdt
->change_lock
= 0x6666;
114 if ((ar7_wdt
->change_lock
& 3) == 1) {
115 ar7_wdt
->change_lock
= 0xBBBB;
116 if ((ar7_wdt
->change_lock
& 3) == 3) {
117 ar7_wdt
->change
= value
;
121 printk(KERN_ERR DRVNAME
": failed to unlock WDT change reg\n");
124 static void ar7_wdt_disable(u32 value
)
126 volatile ar7_wdt_t
*ar7_wdt
= (ar7_wdt_t
*)ioremap(AR7_REGS_WDT
, sizeof(ar7_wdt_t
));
128 ar7_wdt
->disable_lock
= 0x7777;
129 if ((ar7_wdt
->disable_lock
& 3) == 1) {
130 ar7_wdt
->disable_lock
= 0xCCCC;
131 if ((ar7_wdt
->disable_lock
& 3) == 2) {
132 ar7_wdt
->disable_lock
= 0xDDDD;
133 if ((ar7_wdt
->disable_lock
& 3) == 3) {
134 ar7_wdt
->disable
= value
;
139 printk(KERN_ERR DRVNAME
": failed to unlock WDT disable reg\n");
142 static void ar7_wdt_update_margin(int new_margin
)
146 change
= new_margin
* (vbus_freq
/ prescale_value
);
147 if (change
< 1) change
= 1;
148 if (change
> 0xFFFF) change
= 0xFFFF;
149 ar7_wdt_change(change
);
150 margin
= change
* prescale_value
/ vbus_freq
;
151 printk(KERN_INFO DRVNAME
152 ": timer margin %d seconds (prescale %d, change %d, freq %d)\n",
153 margin
, prescale_value
, change
, vbus_freq
);
156 static void ar7_wdt_enable_wdt(void)
158 printk(KERN_DEBUG DRVNAME
": enabling watchdog timer\n");
163 static void ar7_wdt_disable_wdt(void)
165 printk(KERN_DEBUG DRVNAME
": disabling watchdog timer\n");
169 static int ar7_wdt_open(struct inode
*inode
, struct file
*file
)
171 /* only allow one at a time */
172 if (down_trylock(&open_semaphore
))
174 ar7_wdt_enable_wdt();
180 static int ar7_wdt_release(struct inode
*inode
, struct file
*file
)
183 printk(KERN_WARNING DRVNAME
": watchdog device closed unexpectedly, will not disable the watchdog timer\n");
184 } else if (!nowayout
) {
185 ar7_wdt_disable_wdt();
192 static int ar7_wdt_notify_sys(struct notifier_block
*this,
193 unsigned long code
, void *unused
)
195 if (code
== SYS_HALT
|| code
== SYS_POWER_OFF
)
197 ar7_wdt_disable_wdt();
202 static struct notifier_block ar7_wdt_notifier
=
204 .notifier_call
= ar7_wdt_notify_sys
207 static ssize_t
ar7_wdt_write(struct file
*file
, const char *data
,
208 size_t len
, loff_t
*ppos
)
210 if (ppos
!= &file
->f_pos
)
213 /* check for a magic close character */
220 for (i
= 0; i
< len
; ++i
) {
222 if (get_user(c
, data
+i
))
232 static int ar7_wdt_ioctl(struct inode
*inode
, struct file
*file
,
233 unsigned int cmd
, unsigned long arg
)
235 static struct watchdog_info ident
= {
236 .identity
= LONGNAME
,
237 .firmware_version
= 1,
238 .options
= (WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
),
245 case WDIOC_GETSUPPORT
:
246 if(copy_to_user((struct watchdog_info
*)arg
, &ident
,
250 case WDIOC_GETSTATUS
:
251 case WDIOC_GETBOOTSTATUS
:
252 if (put_user(0, (int *)arg
))
255 case WDIOC_KEEPALIVE
:
258 case WDIOC_SETTIMEOUT
:
259 if (get_user(new_margin
, (int *)arg
))
264 ar7_wdt_update_margin(new_margin
);
267 case WDIOC_GETTIMEOUT
:
268 if (put_user(margin
, (int *)arg
))
274 static struct file_operations ar7_wdt_fops
= {
275 .owner
= THIS_MODULE
,
276 .write
= ar7_wdt_write
,
277 .ioctl
= ar7_wdt_ioctl
,
278 .open
= ar7_wdt_open
,
279 .release
= ar7_wdt_release
,
282 static struct miscdevice ar7_wdt_miscdev
= {
283 .minor
= WATCHDOG_MINOR
,
285 .fops
= &ar7_wdt_fops
,
288 static int __init
ar7_wdt_init(void)
292 if (!request_mem_region(AR7_REGS_WDT
, sizeof(ar7_wdt_t
), LONGNAME
)) {
293 printk(KERN_WARNING DRVNAME
": watchdog I/O region busy\n");
297 ar7_wdt_disable_wdt();
298 ar7_wdt_prescale(prescale_value
);
299 ar7_wdt_update_margin(margin
);
301 sema_init(&open_semaphore
, 1);
303 rc
= misc_register(&ar7_wdt_miscdev
);
305 printk(KERN_ERR DRVNAME
": unable to register misc device\n");
309 rc
= register_reboot_notifier(&ar7_wdt_notifier
);
311 printk(KERN_ERR DRVNAME
": unable to register reboot notifier\n");
317 misc_deregister(&ar7_wdt_miscdev
);
319 release_mem_region(AR7_REGS_WDT
, sizeof(ar7_wdt_t
));
324 static void __exit
ar7_wdt_cleanup(void)
326 unregister_reboot_notifier(&ar7_wdt_notifier
);
327 misc_deregister(&ar7_wdt_miscdev
);
328 release_mem_region(AR7_REGS_WDT
, sizeof(ar7_wdt_t
));
331 module_init(ar7_wdt_init
);
332 module_exit(ar7_wdt_cleanup
);