2 * drivers/watchdog/ar7_wdt.c
4 * Copyright (C) 2007 Nicolas Thill <nico@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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/errno.h>
31 #include <linux/miscdevice.h>
32 #include <linux/platform_device.h>
33 #include <linux/watchdog.h>
35 #include <linux/ioport.h>
37 #include <linux/uaccess.h>
38 #include <linux/clk.h>
40 #include <asm/addrspace.h>
41 #include <asm/mach-ar7/ar7.h>
43 #define LONGNAME "TI AR7 Watchdog Timer"
45 MODULE_AUTHOR("Nicolas Thill <nico@openwrt.org>");
46 MODULE_DESCRIPTION(LONGNAME
);
47 MODULE_LICENSE("GPL");
49 static int margin
= 60;
50 module_param(margin
, int, 0);
51 MODULE_PARM_DESC(margin
, "Watchdog margin in seconds");
53 static bool nowayout
= WATCHDOG_NOWAYOUT
;
54 module_param(nowayout
, bool, 0);
55 MODULE_PARM_DESC(nowayout
, "Disable watchdog shutdown on close");
57 #define READ_REG(x) readl((void __iomem *)&(x))
58 #define WRITE_REG(x, v) writel((v), (void __iomem *)&(x))
71 static unsigned long wdt_is_open
;
72 static unsigned expect_close
;
73 static DEFINE_SPINLOCK(wdt_lock
);
75 /* XXX currently fixed, allows max margin ~68.72 secs */
76 #define prescale_value 0xffff
78 /* Resource of the WDT registers */
79 static struct resource
*ar7_regs_wdt
;
80 /* Pointer to the remapped WDT IO space */
81 static struct ar7_wdt
*ar7_wdt
;
83 static struct clk
*vbus_clk
;
85 static void ar7_wdt_kick(u32 value
)
87 WRITE_REG(ar7_wdt
->kick_lock
, 0x5555);
88 if ((READ_REG(ar7_wdt
->kick_lock
) & 3) == 1) {
89 WRITE_REG(ar7_wdt
->kick_lock
, 0xaaaa);
90 if ((READ_REG(ar7_wdt
->kick_lock
) & 3) == 3) {
91 WRITE_REG(ar7_wdt
->kick
, value
);
95 pr_err("failed to unlock WDT kick reg\n");
98 static void ar7_wdt_prescale(u32 value
)
100 WRITE_REG(ar7_wdt
->prescale_lock
, 0x5a5a);
101 if ((READ_REG(ar7_wdt
->prescale_lock
) & 3) == 1) {
102 WRITE_REG(ar7_wdt
->prescale_lock
, 0xa5a5);
103 if ((READ_REG(ar7_wdt
->prescale_lock
) & 3) == 3) {
104 WRITE_REG(ar7_wdt
->prescale
, value
);
108 pr_err("failed to unlock WDT prescale reg\n");
111 static void ar7_wdt_change(u32 value
)
113 WRITE_REG(ar7_wdt
->change_lock
, 0x6666);
114 if ((READ_REG(ar7_wdt
->change_lock
) & 3) == 1) {
115 WRITE_REG(ar7_wdt
->change_lock
, 0xbbbb);
116 if ((READ_REG(ar7_wdt
->change_lock
) & 3) == 3) {
117 WRITE_REG(ar7_wdt
->change
, value
);
121 pr_err("failed to unlock WDT change reg\n");
124 static void ar7_wdt_disable(u32 value
)
126 WRITE_REG(ar7_wdt
->disable_lock
, 0x7777);
127 if ((READ_REG(ar7_wdt
->disable_lock
) & 3) == 1) {
128 WRITE_REG(ar7_wdt
->disable_lock
, 0xcccc);
129 if ((READ_REG(ar7_wdt
->disable_lock
) & 3) == 2) {
130 WRITE_REG(ar7_wdt
->disable_lock
, 0xdddd);
131 if ((READ_REG(ar7_wdt
->disable_lock
) & 3) == 3) {
132 WRITE_REG(ar7_wdt
->disable
, value
);
137 pr_err("failed to unlock WDT disable reg\n");
140 static void ar7_wdt_update_margin(int new_margin
)
145 vbus_rate
= clk_get_rate(vbus_clk
);
146 change
= new_margin
* (vbus_rate
/ prescale_value
);
151 ar7_wdt_change(change
);
152 margin
= change
* prescale_value
/ vbus_rate
;
153 pr_info("timer margin %d seconds (prescale %d, change %d, freq %d)\n",
154 margin
, prescale_value
, change
, vbus_rate
);
157 static void ar7_wdt_enable_wdt(void)
159 pr_debug("enabling watchdog timer\n");
164 static void ar7_wdt_disable_wdt(void)
166 pr_debug("disabling watchdog timer\n");
170 static int ar7_wdt_open(struct inode
*inode
, struct file
*file
)
172 /* only allow one at a time */
173 if (test_and_set_bit(0, &wdt_is_open
))
175 ar7_wdt_enable_wdt();
178 return nonseekable_open(inode
, file
);
181 static int ar7_wdt_release(struct inode
*inode
, struct file
*file
)
184 pr_warn("watchdog device closed unexpectedly, will not disable the watchdog timer\n");
186 ar7_wdt_disable_wdt();
187 clear_bit(0, &wdt_is_open
);
191 static ssize_t
ar7_wdt_write(struct file
*file
, const char *data
,
192 size_t len
, loff_t
*ppos
)
194 /* check for a magic close character */
198 spin_lock(&wdt_lock
);
200 spin_unlock(&wdt_lock
);
203 for (i
= 0; i
< len
; ++i
) {
205 if (get_user(c
, data
+ i
))
215 static long ar7_wdt_ioctl(struct file
*file
,
216 unsigned int cmd
, unsigned long arg
)
218 static const struct watchdog_info ident
= {
219 .identity
= LONGNAME
,
220 .firmware_version
= 1,
221 .options
= (WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
|
227 case WDIOC_GETSUPPORT
:
228 if (copy_to_user((struct watchdog_info
*)arg
, &ident
,
232 case WDIOC_GETSTATUS
:
233 case WDIOC_GETBOOTSTATUS
:
234 if (put_user(0, (int *)arg
))
237 case WDIOC_KEEPALIVE
:
240 case WDIOC_SETTIMEOUT
:
241 if (get_user(new_margin
, (int *)arg
))
246 spin_lock(&wdt_lock
);
247 ar7_wdt_update_margin(new_margin
);
249 spin_unlock(&wdt_lock
);
251 case WDIOC_GETTIMEOUT
:
252 if (put_user(margin
, (int *)arg
))
260 static const struct file_operations ar7_wdt_fops
= {
261 .owner
= THIS_MODULE
,
262 .write
= ar7_wdt_write
,
263 .unlocked_ioctl
= ar7_wdt_ioctl
,
264 .open
= ar7_wdt_open
,
265 .release
= ar7_wdt_release
,
269 static struct miscdevice ar7_wdt_miscdev
= {
270 .minor
= WATCHDOG_MINOR
,
272 .fops
= &ar7_wdt_fops
,
275 static int ar7_wdt_probe(struct platform_device
*pdev
)
280 platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "regs");
281 ar7_wdt
= devm_ioremap_resource(&pdev
->dev
, ar7_regs_wdt
);
283 return PTR_ERR(ar7_wdt
);
285 vbus_clk
= clk_get(NULL
, "vbus");
286 if (IS_ERR(vbus_clk
)) {
287 pr_err("could not get vbus clock\n");
288 return PTR_ERR(vbus_clk
);
291 ar7_wdt_disable_wdt();
292 ar7_wdt_prescale(prescale_value
);
293 ar7_wdt_update_margin(margin
);
295 rc
= misc_register(&ar7_wdt_miscdev
);
297 pr_err("unable to register misc device\n");
308 static int ar7_wdt_remove(struct platform_device
*pdev
)
310 misc_deregister(&ar7_wdt_miscdev
);
316 static void ar7_wdt_shutdown(struct platform_device
*pdev
)
319 ar7_wdt_disable_wdt();
322 static struct platform_driver ar7_wdt_driver
= {
323 .probe
= ar7_wdt_probe
,
324 .remove
= ar7_wdt_remove
,
325 .shutdown
= ar7_wdt_shutdown
,
331 module_platform_driver(ar7_wdt_driver
);