Commit 0df01764 authored by Wim Van Sebroeck's avatar Wim Van Sebroeck

[WATCHDOG] sc520_wdt.c patch

cleanup comments and trailing spaces
add KERN_* tags to printks
added extra printk's to report what problem occured
parent d2473081
/* /*
* AMD Elan SC520 processor Watchdog Timer driver for Linux 2.4.x * AMD Elan SC520 processor Watchdog Timer driver
* *
* Based on acquirewdt.c by Alan Cox, * Based on acquirewdt.c by Alan Cox,
* and sbc60xxwdt.c by Jakob Oestergaard <jakob@ostenfeld.dk> * and sbc60xxwdt.c by Jakob Oestergaard <jakob@unthought.net>
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
...@@ -24,20 +24,15 @@ ...@@ -24,20 +24,15 @@
* - Used ioremap/writew/readw * - Used ioremap/writew/readw
* - Added NOWAYOUT support * - Added NOWAYOUT support
* *
* Theory of operation: * 4/12 - 2002 Changes by Rob Radez <rob@osinvestor.com>
* A Watchdog Timer (WDT) is a hardware circuit that can * - Change comments
* reset the computer system in case of a software fault. * - Eliminate fop_llseek
* You probably knew that already. * - Change CONFIG_WATCHDOG_NOWAYOUT semantics
* * - Add KERN_* tags to printks
* Usually a userspace daemon will notify the kernel WDT driver * 09/8 - 2003 Changes by Wim Van Sebroeck <wim@iguana.be>
* via the /proc/watchdog special device file that userspace is * - cleanup of trailing spaces
* still alive, at regular intervals. When such a notification * - added extra printk's for startup problems
* occurs, the driver will usually tell the hardware watchdog * - use module_param
* that everything is in order, and that the watchdog should wait
* for yet another little while to reset the system.
* If userspace fails (RAM error, kernel bug, whatever), the
* notifications cease to occur, and the hardware watchdog will
* reset the system (causing a reboot) after the timeout occurs.
* *
* This WDT driver is different from most other Linux WDT * This WDT driver is different from most other Linux WDT
* drivers in that the driver will ping the watchdog by itself, * drivers in that the driver will ping the watchdog by itself,
...@@ -95,6 +90,7 @@ ...@@ -95,6 +90,7 @@
#define WDT_WRST_ENB 0x4000 /* [14] Watchdog Timer Reset Enable */ #define WDT_WRST_ENB 0x4000 /* [14] Watchdog Timer Reset Enable */
#define OUR_NAME "sc520_wdt" #define OUR_NAME "sc520_wdt"
#define PFX OUR_NAME ": "
#define WRT_DOG(data) *wdtmrctl=data #define WRT_DOG(data) *wdtmrctl=data
...@@ -137,7 +133,7 @@ static void wdt_timer_ping(unsigned long data) ...@@ -137,7 +133,7 @@ static void wdt_timer_ping(unsigned long data)
timer.expires = jiffies + WDT_INTERVAL; timer.expires = jiffies + WDT_INTERVAL;
add_timer(&timer); add_timer(&timer);
} else { } else {
printk(OUR_NAME ": Heartbeat lost! Will not ping the watchdog\n"); printk(KERN_WARNING PFX "Heartbeat lost! Will not ping the watchdog\n");
} }
} }
...@@ -172,7 +168,7 @@ static void wdt_startup(void) ...@@ -172,7 +168,7 @@ static void wdt_startup(void)
add_timer(&timer); add_timer(&timer);
wdt_config(WDT_ENB | WDT_WRST_ENB | TIMEOUT_EXPONENT); wdt_config(WDT_ENB | WDT_WRST_ENB | TIMEOUT_EXPONENT);
printk(OUR_NAME ": Watchdog timer is now enabled.\n"); printk(KERN_INFO PFX "Watchdog timer is now enabled.\n");
} }
static void wdt_turnoff(void) static void wdt_turnoff(void)
...@@ -181,7 +177,7 @@ static void wdt_turnoff(void) ...@@ -181,7 +177,7 @@ static void wdt_turnoff(void)
/* Stop the timer */ /* Stop the timer */
del_timer(&timer); del_timer(&timer);
wdt_config(0); wdt_config(0);
printk(OUR_NAME ": Watchdog timer is now disabled...\n"); printk(KERN_INFO PFX "Watchdog timer is now disabled...\n");
} }
} }
...@@ -248,7 +244,7 @@ static int fop_close(struct inode * inode, struct file * file) ...@@ -248,7 +244,7 @@ static int fop_close(struct inode * inode, struct file * file)
wdt_turnoff(); wdt_turnoff();
else { else {
del_timer(&timer); del_timer(&timer);
printk(OUR_NAME ": device file closed unexpectedly. Will not stop the WDT!\n"); printk(KERN_CRIT PFX "device file closed unexpectedly. Will not stop the WDT!\n");
} }
} }
clear_bit(0, &wdt_is_open); clear_bit(0, &wdt_is_open);
...@@ -262,7 +258,7 @@ static int fop_ioctl(struct inode *inode, struct file *file, unsigned int cmd, ...@@ -262,7 +258,7 @@ static int fop_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
{ {
.options = WDIOF_MAGICCLOSE, .options = WDIOF_MAGICCLOSE,
.firmware_version = 1, .firmware_version = 1,
.identity = "SC520" .identity = "SC520",
}; };
switch(cmd) switch(cmd)
...@@ -283,13 +279,13 @@ static struct file_operations wdt_fops = { ...@@ -283,13 +279,13 @@ static struct file_operations wdt_fops = {
.write = fop_write, .write = fop_write,
.open = fop_open, .open = fop_open,
.release = fop_close, .release = fop_close,
.ioctl = fop_ioctl .ioctl = fop_ioctl,
}; };
static struct miscdevice wdt_miscdev = { static struct miscdevice wdt_miscdev = {
.minor = WATCHDOG_MINOR, .minor = WATCHDOG_MINOR,
.name = "watchdog", .name = "watchdog",
.fops = &wdt_fops .fops = &wdt_fops,
}; };
/* /*
...@@ -313,7 +309,7 @@ static struct notifier_block wdt_notifier= ...@@ -313,7 +309,7 @@ static struct notifier_block wdt_notifier=
{ {
.notifier_call = wdt_notify_sys, .notifier_call = wdt_notify_sys,
.next = NULL, .next = NULL,
.priority = 0 .priority = 0,
}; };
static void __exit sc520_wdt_unload(void) static void __exit sc520_wdt_unload(void)
...@@ -339,21 +335,29 @@ static int __init sc520_wdt_init(void) ...@@ -339,21 +335,29 @@ static int __init sc520_wdt_init(void)
rc = misc_register(&wdt_miscdev); rc = misc_register(&wdt_miscdev);
if (rc) if (rc)
{
printk(KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
wdt_miscdev.minor, rc);
goto err_out_region2; goto err_out_region2;
}
rc = register_reboot_notifier(&wdt_notifier); rc = register_reboot_notifier(&wdt_notifier);
if (rc) if (rc)
{
printk(KERN_ERR PFX "cannot register reboot notifier (err=%d)\n",
rc);
goto err_out_miscdev; goto err_out_miscdev;
}
/* get the Base Address Register */ /* get the Base Address Register */
cbar = inl_p(0xfffc); cbar = inl_p(0xfffc);
printk(OUR_NAME ": CBAR: 0x%08lx\n", cbar); printk(KERN_INFO PFX "CBAR: 0x%08lx\n", cbar);
/* check if MMCR aliasing bit is set */ /* check if MMCR aliasing bit is set */
if (cbar & 0x80000000) { if (cbar & 0x80000000) {
printk(OUR_NAME ": MMCR Aliasing enabled.\n"); printk(KERN_INFO PFX "MMCR Aliasing enabled.\n");
wdtmrctl = (__u16 *)(cbar & 0x3fffffff); wdtmrctl = (__u16 *)(cbar & 0x3fffffff);
} else { } else {
printk(OUR_NAME "!!! WARNING !!!\n" printk(KERN_INFO PFX "!!! WARNING !!!\n"
"\t MMCR Aliasing found NOT enabled!\n" "\t MMCR Aliasing found NOT enabled!\n"
"\t Using default value of: %p\n" "\t Using default value of: %p\n"
"\t This has not been tested!\n" "\t This has not been tested!\n"
...@@ -366,7 +370,7 @@ static int __init sc520_wdt_init(void) ...@@ -366,7 +370,7 @@ static int __init sc520_wdt_init(void)
wdtmrctl = (__u16 *)((char *)wdtmrctl + OFFS_WDTMRCTL); wdtmrctl = (__u16 *)((char *)wdtmrctl + OFFS_WDTMRCTL);
wdtmrctl = ioremap((unsigned long)wdtmrctl, 2); wdtmrctl = ioremap((unsigned long)wdtmrctl, 2);
printk(KERN_INFO OUR_NAME ": WDT driver for SC520 initialised.\n"); printk(KERN_INFO PFX "WDT driver for SC520 initialised.\n");
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment