2 * Blackfin On-Chip Watchdog Driver
3 * Supports BF53[123]/BF53[467]/BF54[2489]/BF561
5 * Originally based on softdog.c
6 * Copyright 2006-2007 Analog Devices Inc.
7 * Copyright 2006-2007 Michele d'Amico
8 * Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>
10 * Enter bugs at http://blackfin.uclinux.org/
12 * Licensed under the GPL-2 or later.
15 #include <linux/platform_device.h>
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/types.h>
19 #include <linux/timer.h>
20 #include <linux/miscdevice.h>
21 #include <linux/watchdog.h>
23 #include <linux/notifier.h>
24 #include <linux/reboot.h>
25 #include <linux/init.h>
26 #include <linux/interrupt.h>
27 #include <linux/uaccess.h>
28 #include <asm/blackfin.h>
30 #define stamp(fmt, args...) pr_debug("%s:%i: " fmt "\n", __func__, __LINE__, ## args)
31 #define stampit() stamp("here i am")
32 #define pr_devinit(fmt, args...) ({ static const __devinitconst char __fmt[] = fmt; printk(__fmt, ## args); })
33 #define pr_init(fmt, args...) ({ static const __initconst char __fmt[] = fmt; printk(__fmt, ## args); })
35 #define WATCHDOG_NAME "bfin-wdt"
36 #define PFX WATCHDOG_NAME ": "
38 /* The BF561 has two watchdogs (one per core), but since Linux
39 * only runs on core A, we'll just work with that one.
42 # define bfin_read_WDOG_CTL() bfin_read_WDOGA_CTL()
43 # define bfin_read_WDOG_CNT() bfin_read_WDOGA_CNT()
44 # define bfin_read_WDOG_STAT() bfin_read_WDOGA_STAT()
45 # define bfin_write_WDOG_CTL(x) bfin_write_WDOGA_CTL(x)
46 # define bfin_write_WDOG_CNT(x) bfin_write_WDOGA_CNT(x)
47 # define bfin_write_WDOG_STAT(x) bfin_write_WDOGA_STAT(x)
50 /* Bit in SWRST that indicates boot caused by watchdog */
51 #define SWRST_RESET_WDOG 0x4000
53 /* Bit in WDOG_CTL that indicates watchdog has expired (WDR0) */
54 #define WDOG_EXPIRED 0x8000
56 /* Masks for WDEV field in WDOG_CTL register */
57 #define ICTL_RESET 0x0
63 /* Masks for WDEN field in WDOG_CTL register */
64 #define WDEN_MASK 0x0FF0
65 #define WDEN_ENABLE 0x0000
66 #define WDEN_DISABLE 0x0AD0
69 #define WATCHDOG_TIMEOUT 20
71 static unsigned int timeout
= WATCHDOG_TIMEOUT
;
72 static int nowayout
= WATCHDOG_NOWAYOUT
;
73 static struct watchdog_info bfin_wdt_info
;
74 static unsigned long open_check
;
75 static char expect_close
;
76 static DEFINE_SPINLOCK(bfin_wdt_spinlock
);
79 * bfin_wdt_keepalive - Keep the Userspace Watchdog Alive
81 * The Userspace watchdog got a KeepAlive: schedule the next timeout.
83 static int bfin_wdt_keepalive(void)
86 bfin_write_WDOG_STAT(0);
91 * bfin_wdt_stop - Stop the Watchdog
93 * Stops the on-chip watchdog.
95 static int bfin_wdt_stop(void)
98 bfin_write_WDOG_CTL(WDEN_DISABLE
);
103 * bfin_wdt_start - Start the Watchdog
105 * Starts the on-chip watchdog. Automatically loads WDOG_CNT
106 * into WDOG_STAT for us.
108 static int bfin_wdt_start(void)
111 bfin_write_WDOG_CTL(WDEN_ENABLE
| ICTL_RESET
);
116 * bfin_wdt_running - Check Watchdog status
118 * See if the watchdog is running.
120 static int bfin_wdt_running(void)
123 return ((bfin_read_WDOG_CTL() & WDEN_MASK
) != WDEN_DISABLE
);
127 * bfin_wdt_set_timeout - Set the Userspace Watchdog timeout
128 * @t: new timeout value (in seconds)
130 * Translate the specified timeout in seconds into System Clock
131 * terms which is what the on-chip Watchdog requires.
133 static int bfin_wdt_set_timeout(unsigned long t
)
140 cnt
= t
* get_sclk();
141 if (cnt
< get_sclk()) {
142 printk(KERN_WARNING PFX
"timeout value is too large\n");
146 spin_lock_irqsave(&bfin_wdt_spinlock
, flags
);
148 int run
= bfin_wdt_running();
150 bfin_write_WDOG_CNT(cnt
);
154 spin_unlock_irqrestore(&bfin_wdt_spinlock
, flags
);
162 * bfin_wdt_open - Open the Device
163 * @inode: inode of device
164 * @file: file handle of device
166 * Watchdog device is opened and started.
168 static int bfin_wdt_open(struct inode
*inode
, struct file
*file
)
172 if (test_and_set_bit(0, &open_check
))
176 __module_get(THIS_MODULE
);
178 bfin_wdt_keepalive();
181 return nonseekable_open(inode
, file
);
185 * bfin_wdt_close - Close the Device
186 * @inode: inode of device
187 * @file: file handle of device
189 * Watchdog device is closed and stopped.
191 static int bfin_wdt_release(struct inode
*inode
, struct file
*file
)
195 if (expect_close
== 42)
199 "Unexpected close, not stopping watchdog!\n");
200 bfin_wdt_keepalive();
203 clear_bit(0, &open_check
);
208 * bfin_wdt_write - Write to Device
209 * @file: file handle of device
210 * @buf: buffer to write
211 * @count: length of buffer
214 * Pings the watchdog on write.
216 static ssize_t
bfin_wdt_write(struct file
*file
, const char __user
*data
,
217 size_t len
, loff_t
*ppos
)
225 /* In case it was set long ago */
228 for (i
= 0; i
!= len
; i
++) {
230 if (get_user(c
, data
+ i
))
236 bfin_wdt_keepalive();
243 * bfin_wdt_ioctl - Query Device
244 * @file: file handle of device
245 * @cmd: watchdog command
248 * Query basic information from the device or ping it, as outlined by the
251 static long bfin_wdt_ioctl(struct file
*file
,
252 unsigned int cmd
, unsigned long arg
)
254 void __user
*argp
= (void __user
*)arg
;
255 int __user
*p
= argp
;
260 case WDIOC_GETSUPPORT
:
261 if (copy_to_user(argp
, &bfin_wdt_info
, sizeof(bfin_wdt_info
)))
265 case WDIOC_GETSTATUS
:
266 case WDIOC_GETBOOTSTATUS
:
267 return put_user(!!(_bfin_swrst
& SWRST_RESET_WDOG
), p
);
268 case WDIOC_SETOPTIONS
: {
270 int options
, ret
= -EINVAL
;
272 if (get_user(options
, p
))
275 spin_lock_irqsave(&bfin_wdt_spinlock
, flags
);
276 if (options
& WDIOS_DISABLECARD
) {
280 if (options
& WDIOS_ENABLECARD
) {
284 spin_unlock_irqrestore(&bfin_wdt_spinlock
, flags
);
287 case WDIOC_KEEPALIVE
:
288 bfin_wdt_keepalive();
290 case WDIOC_SETTIMEOUT
: {
293 if (get_user(new_timeout
, p
))
295 if (bfin_wdt_set_timeout(new_timeout
))
299 case WDIOC_GETTIMEOUT
:
300 return put_user(timeout
, p
);
307 * bfin_wdt_notify_sys - Notifier Handler
308 * @this: notifier block
309 * @code: notifier event
312 * Handles specific events, such as turning off the watchdog during a
315 static int bfin_wdt_notify_sys(struct notifier_block
*this,
316 unsigned long code
, void *unused
)
320 if (code
== SYS_DOWN
|| code
== SYS_HALT
)
327 static int state_before_suspend
;
330 * bfin_wdt_suspend - suspend the watchdog
331 * @pdev: device being suspended
332 * @state: requested suspend state
334 * Remember if the watchdog was running and stop it.
335 * TODO: is this even right? Doesn't seem to be any
336 * standard in the watchdog world ...
338 static int bfin_wdt_suspend(struct platform_device
*pdev
, pm_message_t state
)
342 state_before_suspend
= bfin_wdt_running();
349 * bfin_wdt_resume - resume the watchdog
350 * @pdev: device being resumed
352 * If the watchdog was running, turn it back on.
354 static int bfin_wdt_resume(struct platform_device
*pdev
)
358 if (state_before_suspend
) {
359 bfin_wdt_set_timeout(timeout
);
366 # define bfin_wdt_suspend NULL
367 # define bfin_wdt_resume NULL
370 static const struct file_operations bfin_wdt_fops
= {
371 .owner
= THIS_MODULE
,
373 .write
= bfin_wdt_write
,
374 .unlocked_ioctl
= bfin_wdt_ioctl
,
375 .open
= bfin_wdt_open
,
376 .release
= bfin_wdt_release
,
379 static struct miscdevice bfin_wdt_miscdev
= {
380 .minor
= WATCHDOG_MINOR
,
382 .fops
= &bfin_wdt_fops
,
385 static struct watchdog_info bfin_wdt_info
= {
386 .identity
= "Blackfin Watchdog",
387 .options
= WDIOF_SETTIMEOUT
|
388 WDIOF_KEEPALIVEPING
|
392 static struct notifier_block bfin_wdt_notifier
= {
393 .notifier_call
= bfin_wdt_notify_sys
,
397 * bfin_wdt_probe - Initialize module
399 * Registers the misc device and notifier handler. Actual device
400 * initialization is handled by bfin_wdt_open().
402 static int __devinit
bfin_wdt_probe(struct platform_device
*pdev
)
406 ret
= register_reboot_notifier(&bfin_wdt_notifier
);
408 pr_devinit(KERN_ERR PFX
409 "cannot register reboot notifier (err=%d)\n", ret
);
413 ret
= misc_register(&bfin_wdt_miscdev
);
415 pr_devinit(KERN_ERR PFX
416 "cannot register miscdev on minor=%d (err=%d)\n",
417 WATCHDOG_MINOR
, ret
);
418 unregister_reboot_notifier(&bfin_wdt_notifier
);
422 pr_devinit(KERN_INFO PFX
"initialized: timeout=%d sec (nowayout=%d)\n",
429 * bfin_wdt_remove - Initialize module
431 * Unregisters the misc device and notifier handler. Actual device
432 * deinitialization is handled by bfin_wdt_close().
434 static int __devexit
bfin_wdt_remove(struct platform_device
*pdev
)
436 misc_deregister(&bfin_wdt_miscdev
);
437 unregister_reboot_notifier(&bfin_wdt_notifier
);
441 static struct platform_device
*bfin_wdt_device
;
443 static struct platform_driver bfin_wdt_driver
= {
444 .probe
= bfin_wdt_probe
,
445 .remove
= __devexit_p(bfin_wdt_remove
),
446 .suspend
= bfin_wdt_suspend
,
447 .resume
= bfin_wdt_resume
,
449 .name
= WATCHDOG_NAME
,
450 .owner
= THIS_MODULE
,
455 * bfin_wdt_init - Initialize module
457 * Checks the module params and registers the platform device & driver.
458 * Real work is in the platform probe function.
460 static int __init
bfin_wdt_init(void)
466 /* Check that the timeout value is within range */
467 if (bfin_wdt_set_timeout(timeout
))
470 /* Since this is an on-chip device and needs no board-specific
471 * resources, we'll handle all the platform device stuff here.
473 ret
= platform_driver_register(&bfin_wdt_driver
);
475 pr_init(KERN_ERR PFX
"unable to register driver\n");
479 bfin_wdt_device
= platform_device_register_simple(WATCHDOG_NAME
, -1, NULL
, 0);
480 if (IS_ERR(bfin_wdt_device
)) {
481 pr_init(KERN_ERR PFX
"unable to register device\n");
482 platform_driver_unregister(&bfin_wdt_driver
);
483 return PTR_ERR(bfin_wdt_device
);
490 * bfin_wdt_exit - Deinitialize module
492 * Back out the platform device & driver steps. Real work is in the
493 * platform remove function.
495 static void __exit
bfin_wdt_exit(void)
497 platform_device_unregister(bfin_wdt_device
);
498 platform_driver_unregister(&bfin_wdt_driver
);
501 module_init(bfin_wdt_init
);
502 module_exit(bfin_wdt_exit
);
504 MODULE_AUTHOR("Michele d'Amico, Mike Frysinger <vapier@gentoo.org>");
505 MODULE_DESCRIPTION("Blackfin Watchdog Device Driver");
506 MODULE_LICENSE("GPL");
507 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
509 module_param(timeout
, uint
, 0);
510 MODULE_PARM_DESC(timeout
,
511 "Watchdog timeout in seconds. (1<=timeout<=((2^32)/SCLK), default="
512 __MODULE_STRING(WATCHDOG_TIMEOUT
) ")");
514 module_param(nowayout
, int, 0);
515 MODULE_PARM_DESC(nowayout
,
516 "Watchdog cannot be stopped once started (default="
517 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");