3 * by Ken Hollis (khollis@bitgate.com)
5 * Permission granted from Simon Machell (73244.1270@compuserve.com)
6 * Written for the Linux Kernel, and GPLed by Ken Hollis
8 * 960107 Added request_region routines, modulized the whole thing.
9 * 960108 Fixed end-of-file pointer (Thanks to Dan Hollis), added
11 * 960216 Added eof marker on the file, and changed verbose messages.
12 * 960716 Made functional and cosmetic changes to the source for
13 * inclusion in Linux 2.0.x kernels, thanks to Alan Cox.
14 * 960717 Removed read/seek routines, replaced with ioctl. Also, added
15 * check_region command due to Alan's suggestion.
16 * 960821 Made changes to compile in newer 2.0.x kernels. Added
17 * "cold reboot sense" entry.
18 * 960825 Made a few changes to code, deleted some defines and made
19 * typedefs to replace them. Made heartbeat reset only available
20 * via ioctl, and removed the write routine.
21 * 960828 Added new items for PC Watchdog Rev.C card.
22 * 960829 Changed around all of the IOCTLs, added new features,
23 * added watchdog disable/re-enable routines. Added firmware
24 * version reporting. Added read routine for temperature.
25 * Removed some extra defines, added an autodetect Revision
27 * 961006 Revised some documentation, fixed some cosmetic bugs. Made
28 * drivers to panic the system if it's overheating at bootup.
29 * 961118 Changed some verbiage on some of the output, tidied up
30 * code bits, and added compatibility to 2.1.x.
31 * 970912 Enabled board on open and disable on close.
32 * 971107 Took account of recent VFS changes (broke read).
33 * 971210 Disable board on initialisation in case board already ticking.
34 * 971222 Changed open/close for temperature handling
35 * Michael Meskes <meskes@debian.org>.
36 * 980112 Used minor numbers from include/linux/miscdevice.h
37 * 990403 Clear reset status after reading control status register in
38 * pcwd_showprevstate(). [Marc Boucher <marc@mbsi.ca>]
39 * 990605 Made changes to code to support Firmware 1.22a, added
40 * fairly useless proc entry.
41 * 990610 removed said useless proc code for the merge <alan>
42 * 000403 Removed last traces of proc code. <davej>
43 * 011214 Added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT <Matt_Domsch@dell.com>
44 * Added timeout module option to override default
48 * A bells and whistles driver is available from http://www.pcwd.de/
49 * More info available at http://www.berkprod.com/ or http://www.pcwatchdog.com/
52 #include <linux/module.h> /* For module specific items */
53 #include <linux/moduleparam.h> /* For new moduleparam's */
54 #include <linux/types.h> /* For standard types (like size_t) */
55 #include <linux/errno.h> /* For the -ENODEV/... values */
56 #include <linux/kernel.h> /* For printk/panic/... */
57 #include <linux/delay.h> /* For mdelay function */
58 #include <linux/timer.h> /* For timer related operations */
59 #include <linux/jiffies.h> /* For jiffies stuff */
60 #include <linux/miscdevice.h> /* For MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR) */
61 #include <linux/watchdog.h> /* For the watchdog specific items */
62 #include <linux/notifier.h> /* For notifier support */
63 #include <linux/reboot.h> /* For reboot_notifier stuff */
64 #include <linux/init.h> /* For __init/__exit/... */
65 #include <linux/fs.h> /* For file operations */
66 #include <linux/ioport.h> /* For io-port access */
67 #include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */
69 #include <asm/uaccess.h> /* For copy_to_user/put_user/... */
70 #include <asm/io.h> /* For inb/outb/... */
72 /* Module and version information */
73 #define WATCHDOG_VERSION "1.17"
74 #define WATCHDOG_DATE "12 Feb 2006"
75 #define WATCHDOG_DRIVER_NAME "ISA-PC Watchdog"
76 #define WATCHDOG_NAME "pcwd"
77 #define PFX WATCHDOG_NAME ": "
78 #define DRIVER_VERSION WATCHDOG_DRIVER_NAME " driver, v" WATCHDOG_VERSION " (" WATCHDOG_DATE ")\n"
79 #define WD_VER WATCHDOG_VERSION " (" WATCHDOG_DATE ")"
82 * It should be noted that PCWD_REVISION_B was removed because A and B
83 * are essentially the same types of card, with the exception that B
84 * has temperature reporting. Since I didn't receive a Rev.B card,
85 * the Rev.B card is not supported. (It's a good thing too, as they
86 * are no longer in production.)
88 #define PCWD_REVISION_A 1
89 #define PCWD_REVISION_C 2
92 * These are the defines that describe the control status bits for the
93 * PCI-PC Watchdog card.
95 /* Port 1 : Control Status #1 for the PC Watchdog card, revision A. */
96 #define WD_WDRST 0x01 /* Previously reset state */
97 #define WD_T110 0x02 /* Temperature overheat sense */
98 #define WD_HRTBT 0x04 /* Heartbeat sense */
99 #define WD_RLY2 0x08 /* External relay triggered */
100 #define WD_SRLY2 0x80 /* Software external relay triggered */
101 /* Port 1 : Control Status #1 for the PC Watchdog card, revision C. */
102 #define WD_REVC_WTRP 0x01 /* Watchdog Trip status */
103 #define WD_REVC_HRBT 0x02 /* Watchdog Heartbeat */
104 #define WD_REVC_TTRP 0x04 /* Temperature Trip status */
105 #define WD_REVC_RL2A 0x08 /* Relay 2 activated by on-board processor */
106 #define WD_REVC_RL1A 0x10 /* Relay 1 active */
107 #define WD_REVC_R2DS 0x40 /* Relay 2 disable */
108 #define WD_REVC_RLY2 0x80 /* Relay 2 activated? */
109 /* Port 2 : Control Status #2 */
110 #define WD_WDIS 0x10 /* Watchdog Disabled */
111 #define WD_ENTP 0x20 /* Watchdog Enable Temperature Trip */
112 #define WD_SSEL 0x40 /* Watchdog Switch Select (1:SW1 <-> 0:SW2) */
113 #define WD_WCMD 0x80 /* Watchdog Command Mode */
115 /* max. time we give an ISA watchdog card to process a command */
116 /* 500ms for each 4 bit response (according to spec.) */
117 #define ISA_COMMAND_TIMEOUT 1000
119 /* Watchdog's internal commands */
120 #define CMD_ISA_IDLE 0x00
121 #define CMD_ISA_VERSION_INTEGER 0x01
122 #define CMD_ISA_VERSION_TENTH 0x02
123 #define CMD_ISA_VERSION_HUNDRETH 0x03
124 #define CMD_ISA_VERSION_MINOR 0x04
125 #define CMD_ISA_SWITCH_SETTINGS 0x05
126 #define CMD_ISA_RESET_PC 0x06
127 #define CMD_ISA_ARM_0 0x07
128 #define CMD_ISA_ARM_30 0x08
129 #define CMD_ISA_ARM_60 0x09
130 #define CMD_ISA_DELAY_TIME_2SECS 0x0A
131 #define CMD_ISA_DELAY_TIME_4SECS 0x0B
132 #define CMD_ISA_DELAY_TIME_8SECS 0x0C
133 #define CMD_ISA_RESET_RELAYS 0x0D
136 * We are using an kernel timer to do the pinging of the watchdog
137 * every ~500ms. We try to set the internal heartbeat of the
141 #define WDT_INTERVAL (HZ/2+1)
143 /* We can only use 1 card due to the /dev/watchdog restriction */
144 static int cards_found
;
146 /* internal variables */
147 static atomic_t open_allowed
= ATOMIC_INIT(1);
148 static char expect_close
;
149 static int temp_panic
;
150 static struct { /* this is private data for each ISA-PC watchdog card */
151 char fw_ver_str
[6]; /* The cards firmware version */
152 int revision
; /* The card's revision */
153 int supports_temp
; /* Wether or not the card has a temperature device */
154 int command_mode
; /* Wether or not the card is in command mode */
155 int boot_status
; /* The card's boot status */
156 int io_addr
; /* The cards I/O address */
157 spinlock_t io_lock
; /* the lock for io operations */
158 struct timer_list timer
; /* The timer that pings the watchdog */
159 unsigned long next_heartbeat
; /* the next_heartbeat for the timer */
162 /* module parameters */
163 #define QUIET 0 /* Default */
164 #define VERBOSE 1 /* Verbose */
165 #define DEBUG 2 /* print fancy stuff too */
166 static int debug
= QUIET
;
167 module_param(debug
, int, 0);
168 MODULE_PARM_DESC(debug
, "Debug level: 0=Quiet, 1=Verbose, 2=Debug (default=0)");
170 #define WATCHDOG_HEARTBEAT 60 /* 60 sec default heartbeat */
171 static int heartbeat
= WATCHDOG_HEARTBEAT
;
172 module_param(heartbeat
, int, 0);
173 MODULE_PARM_DESC(heartbeat
, "Watchdog heartbeat in seconds. (2<=heartbeat<=7200, default=" __MODULE_STRING(WATCHDOG_HEARTBEAT
) ")");
175 static int nowayout
= WATCHDOG_NOWAYOUT
;
176 module_param(nowayout
, int, 0);
177 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
183 static int send_isa_command(int cmd
)
187 int port0
, last_port0
; /* Double read for stabilising */
190 printk(KERN_DEBUG PFX
"sending following data cmd=0x%02x\n",
193 /* The WCMD bit must be 1 and the command is only 4 bits in size */
194 control_status
= (cmd
& 0x0F) | WD_WCMD
;
195 outb_p(control_status
, pcwd_private
.io_addr
+ 2);
196 udelay(ISA_COMMAND_TIMEOUT
);
198 port0
= inb_p(pcwd_private
.io_addr
);
199 for (i
= 0; i
< 25; ++i
) {
201 port0
= inb_p(pcwd_private
.io_addr
);
203 if (port0
== last_port0
)
204 break; /* Data is stable */
210 printk(KERN_DEBUG PFX
"received following data for cmd=0x%02x: port0=0x%02x last_port0=0x%02x\n",
211 cmd
, port0
, last_port0
);
216 static int set_command_mode(void)
218 int i
, found
=0, count
=0;
220 /* Set the card into command mode */
221 spin_lock(&pcwd_private
.io_lock
);
222 while ((!found
) && (count
< 3)) {
223 i
= send_isa_command(CMD_ISA_IDLE
);
227 else if (i
== 0xF3) {
228 /* Card does not like what we've done to it */
229 outb_p(0x00, pcwd_private
.io_addr
+ 2);
230 udelay(1200); /* Spec says wait 1ms */
231 outb_p(0x00, pcwd_private
.io_addr
+ 2);
232 udelay(ISA_COMMAND_TIMEOUT
);
236 spin_unlock(&pcwd_private
.io_lock
);
237 pcwd_private
.command_mode
= found
;
240 printk(KERN_DEBUG PFX
"command_mode=%d\n",
241 pcwd_private
.command_mode
);
246 static void unset_command_mode(void)
248 /* Set the card into normal mode */
249 spin_lock(&pcwd_private
.io_lock
);
250 outb_p(0x00, pcwd_private
.io_addr
+ 2);
251 udelay(ISA_COMMAND_TIMEOUT
);
252 spin_unlock(&pcwd_private
.io_lock
);
254 pcwd_private
.command_mode
= 0;
257 printk(KERN_DEBUG PFX
"command_mode=%d\n",
258 pcwd_private
.command_mode
);
261 static inline void pcwd_check_temperature_support(void)
263 if (inb(pcwd_private
.io_addr
) != 0xF0)
264 pcwd_private
.supports_temp
= 1;
267 static inline void pcwd_get_firmware(void)
269 int one
, ten
, hund
, minor
;
271 strcpy(pcwd_private
.fw_ver_str
, "ERROR");
273 if (set_command_mode()) {
274 one
= send_isa_command(CMD_ISA_VERSION_INTEGER
);
275 ten
= send_isa_command(CMD_ISA_VERSION_TENTH
);
276 hund
= send_isa_command(CMD_ISA_VERSION_HUNDRETH
);
277 minor
= send_isa_command(CMD_ISA_VERSION_MINOR
);
278 sprintf(pcwd_private
.fw_ver_str
, "%c.%c%c%c", one
, ten
, hund
, minor
);
280 unset_command_mode();
285 static inline int pcwd_get_option_switches(void)
287 int option_switches
=0;
289 if (set_command_mode()) {
290 /* Get switch settings */
291 option_switches
= send_isa_command(CMD_ISA_SWITCH_SETTINGS
);
294 unset_command_mode();
295 return(option_switches
);
298 static void pcwd_show_card_info(void)
302 /* Get some extra info from the hardware (in command/debug/diag mode) */
303 if (pcwd_private
.revision
== PCWD_REVISION_A
)
304 printk(KERN_INFO PFX
"ISA-PC Watchdog (REV.A) detected at port 0x%04x\n", pcwd_private
.io_addr
);
305 else if (pcwd_private
.revision
== PCWD_REVISION_C
) {
307 printk(KERN_INFO PFX
"ISA-PC Watchdog (REV.C) detected at port 0x%04x (Firmware version: %s)\n",
308 pcwd_private
.io_addr
, pcwd_private
.fw_ver_str
);
309 option_switches
= pcwd_get_option_switches();
310 printk(KERN_INFO PFX
"Option switches (0x%02x): Temperature Reset Enable=%s, Power On Delay=%s\n",
312 ((option_switches
& 0x10) ? "ON" : "OFF"),
313 ((option_switches
& 0x08) ? "ON" : "OFF"));
315 /* Reprogram internal heartbeat to 2 seconds */
316 if (set_command_mode()) {
317 send_isa_command(CMD_ISA_DELAY_TIME_2SECS
);
318 unset_command_mode();
322 if (pcwd_private
.supports_temp
)
323 printk(KERN_INFO PFX
"Temperature Option Detected\n");
325 if (pcwd_private
.boot_status
& WDIOF_CARDRESET
)
326 printk(KERN_INFO PFX
"Previous reboot was caused by the card\n");
328 if (pcwd_private
.boot_status
& WDIOF_OVERHEAT
) {
329 printk(KERN_EMERG PFX
"Card senses a CPU Overheat. Panicking!\n");
330 printk(KERN_EMERG PFX
"CPU Overheat\n");
333 if (pcwd_private
.boot_status
== 0)
334 printk(KERN_INFO PFX
"No previous trip detected - Cold boot or reset\n");
337 static void pcwd_timer_ping(unsigned long data
)
341 /* If we got a heartbeat pulse within the WDT_INTERVAL
342 * we agree to ping the WDT */
343 if(time_before(jiffies
, pcwd_private
.next_heartbeat
)) {
344 /* Ping the watchdog */
345 spin_lock(&pcwd_private
.io_lock
);
346 if (pcwd_private
.revision
== PCWD_REVISION_A
) {
347 /* Rev A cards are reset by setting the WD_WDRST bit in register 1 */
348 wdrst_stat
= inb_p(pcwd_private
.io_addr
);
350 wdrst_stat
|= WD_WDRST
;
352 outb_p(wdrst_stat
, pcwd_private
.io_addr
+ 1);
354 /* Re-trigger watchdog by writing to port 0 */
355 outb_p(0x00, pcwd_private
.io_addr
);
358 /* Re-set the timer interval */
359 mod_timer(&pcwd_private
.timer
, jiffies
+ WDT_INTERVAL
);
361 spin_unlock(&pcwd_private
.io_lock
);
363 printk(KERN_WARNING PFX
"Heartbeat lost! Will not ping the watchdog\n");
367 static int pcwd_start(void)
371 pcwd_private
.next_heartbeat
= jiffies
+ (heartbeat
* HZ
);
373 /* Start the timer */
374 mod_timer(&pcwd_private
.timer
, jiffies
+ WDT_INTERVAL
);
376 /* Enable the port */
377 if (pcwd_private
.revision
== PCWD_REVISION_C
) {
378 spin_lock(&pcwd_private
.io_lock
);
379 outb_p(0x00, pcwd_private
.io_addr
+ 3);
380 udelay(ISA_COMMAND_TIMEOUT
);
381 stat_reg
= inb_p(pcwd_private
.io_addr
+ 2);
382 spin_unlock(&pcwd_private
.io_lock
);
383 if (stat_reg
& WD_WDIS
) {
384 printk(KERN_INFO PFX
"Could not start watchdog\n");
389 if (debug
>= VERBOSE
)
390 printk(KERN_DEBUG PFX
"Watchdog started\n");
395 static int pcwd_stop(void)
400 del_timer(&pcwd_private
.timer
);
402 /* Disable the board */
403 if (pcwd_private
.revision
== PCWD_REVISION_C
) {
404 spin_lock(&pcwd_private
.io_lock
);
405 outb_p(0xA5, pcwd_private
.io_addr
+ 3);
406 udelay(ISA_COMMAND_TIMEOUT
);
407 outb_p(0xA5, pcwd_private
.io_addr
+ 3);
408 udelay(ISA_COMMAND_TIMEOUT
);
409 stat_reg
= inb_p(pcwd_private
.io_addr
+ 2);
410 spin_unlock(&pcwd_private
.io_lock
);
411 if ((stat_reg
& WD_WDIS
) == 0) {
412 printk(KERN_INFO PFX
"Could not stop watchdog\n");
417 if (debug
>= VERBOSE
)
418 printk(KERN_DEBUG PFX
"Watchdog stopped\n");
423 static int pcwd_keepalive(void)
426 pcwd_private
.next_heartbeat
= jiffies
+ (heartbeat
* HZ
);
429 printk(KERN_DEBUG PFX
"Watchdog keepalive signal send\n");
434 static int pcwd_set_heartbeat(int t
)
436 if ((t
< 2) || (t
> 7200)) /* arbitrary upper limit */
441 if (debug
>= VERBOSE
)
442 printk(KERN_DEBUG PFX
"New heartbeat: %d\n",
448 static int pcwd_get_status(int *status
)
453 spin_lock(&pcwd_private
.io_lock
);
454 if (pcwd_private
.revision
== PCWD_REVISION_A
)
455 /* Rev A cards return status information from
456 * the base register, which is used for the
457 * temperature in other cards. */
458 control_status
= inb(pcwd_private
.io_addr
);
460 /* Rev C cards return card status in the base
461 * address + 1 register. And use different bits
462 * to indicate a card initiated reset, and an
463 * over-temperature condition. And the reboot
464 * status can be reset. */
465 control_status
= inb(pcwd_private
.io_addr
+ 1);
467 spin_unlock(&pcwd_private
.io_lock
);
469 if (pcwd_private
.revision
== PCWD_REVISION_A
) {
470 if (control_status
& WD_WDRST
)
471 *status
|= WDIOF_CARDRESET
;
473 if (control_status
& WD_T110
) {
474 *status
|= WDIOF_OVERHEAT
;
476 printk (KERN_INFO PFX
"Temperature overheat trip!\n");
478 /* or should we just do a: panic(PFX "Temperature overheat trip!\n"); */
482 if (control_status
& WD_REVC_WTRP
)
483 *status
|= WDIOF_CARDRESET
;
485 if (control_status
& WD_REVC_TTRP
) {
486 *status
|= WDIOF_OVERHEAT
;
488 printk (KERN_INFO PFX
"Temperature overheat trip!\n");
490 /* or should we just do a: panic(PFX "Temperature overheat trip!\n"); */
498 static int pcwd_clear_status(void)
502 if (pcwd_private
.revision
== PCWD_REVISION_C
) {
503 spin_lock(&pcwd_private
.io_lock
);
505 if (debug
>= VERBOSE
)
506 printk(KERN_INFO PFX
"clearing watchdog trip status\n");
508 control_status
= inb_p(pcwd_private
.io_addr
+ 1);
510 if (debug
>= DEBUG
) {
511 printk(KERN_DEBUG PFX
"status was: 0x%02x\n", control_status
);
512 printk(KERN_DEBUG PFX
"sending: 0x%02x\n",
513 (control_status
& WD_REVC_R2DS
));
516 /* clear reset status & Keep Relay 2 disable state as it is */
517 outb_p((control_status
& WD_REVC_R2DS
), pcwd_private
.io_addr
+ 1);
519 spin_unlock(&pcwd_private
.io_lock
);
524 static int pcwd_get_temperature(int *temperature
)
526 /* check that port 0 gives temperature info and no command results */
527 if (pcwd_private
.command_mode
)
531 if (!pcwd_private
.supports_temp
)
535 * Convert celsius to fahrenheit, since this was
536 * the decided 'standard' for this return value.
538 spin_lock(&pcwd_private
.io_lock
);
539 *temperature
= ((inb(pcwd_private
.io_addr
)) * 9 / 5) + 32;
540 spin_unlock(&pcwd_private
.io_lock
);
542 if (debug
>= DEBUG
) {
543 printk(KERN_DEBUG PFX
"temperature is: %d F\n",
551 * /dev/watchdog handling
554 static int pcwd_ioctl(struct inode
*inode
, struct file
*file
,
555 unsigned int cmd
, unsigned long arg
)
561 int __user
*argp
= (int __user
*)arg
;
562 static struct watchdog_info ident
= {
563 .options
= WDIOF_OVERHEAT
|
565 WDIOF_KEEPALIVEPING
|
568 .firmware_version
= 1,
576 case WDIOC_GETSUPPORT
:
577 if(copy_to_user(argp
, &ident
, sizeof(ident
)))
581 case WDIOC_GETSTATUS
:
582 pcwd_get_status(&status
);
583 return put_user(status
, argp
);
585 case WDIOC_GETBOOTSTATUS
:
586 return put_user(pcwd_private
.boot_status
, argp
);
589 if (pcwd_get_temperature(&temperature
))
592 return put_user(temperature
, argp
);
594 case WDIOC_SETOPTIONS
:
595 if (pcwd_private
.revision
== PCWD_REVISION_C
)
597 if(copy_from_user(&rv
, argp
, sizeof(int)))
600 if (rv
& WDIOS_DISABLECARD
)
605 if (rv
& WDIOS_ENABLECARD
)
610 if (rv
& WDIOS_TEMPPANIC
)
617 case WDIOC_KEEPALIVE
:
621 case WDIOC_SETTIMEOUT
:
622 if (get_user(new_heartbeat
, argp
))
625 if (pcwd_set_heartbeat(new_heartbeat
))
631 case WDIOC_GETTIMEOUT
:
632 return put_user(heartbeat
, argp
);
638 static ssize_t
pcwd_write(struct file
*file
, const char __user
*buf
, size_t len
,
645 /* In case it was set long ago */
648 for (i
= 0; i
!= len
; i
++) {
651 if (get_user(c
, buf
+ i
))
662 static int pcwd_open(struct inode
*inode
, struct file
*file
)
664 if (!atomic_dec_and_test(&open_allowed
) ) {
665 if (debug
>= VERBOSE
)
666 printk(KERN_ERR PFX
"Attempt to open already opened device.\n");
667 atomic_inc( &open_allowed
);
672 __module_get(THIS_MODULE
);
677 return nonseekable_open(inode
, file
);
680 static int pcwd_close(struct inode
*inode
, struct file
*file
)
682 if (expect_close
== 42) {
685 printk(KERN_CRIT PFX
"Unexpected close, not stopping watchdog!\n");
689 atomic_inc( &open_allowed
);
694 * /dev/temperature handling
697 static ssize_t
pcwd_temp_read(struct file
*file
, char __user
*buf
, size_t count
,
702 if (pcwd_get_temperature(&temperature
))
705 if (copy_to_user(buf
, &temperature
, 1))
711 static int pcwd_temp_open(struct inode
*inode
, struct file
*file
)
713 if (!pcwd_private
.supports_temp
)
716 return nonseekable_open(inode
, file
);
719 static int pcwd_temp_close(struct inode
*inode
, struct file
*file
)
728 static int pcwd_notify_sys(struct notifier_block
*this, unsigned long code
, void *unused
)
730 if (code
==SYS_DOWN
|| code
==SYS_HALT
) {
731 /* Turn the WDT off */
742 static const struct file_operations pcwd_fops
= {
743 .owner
= THIS_MODULE
,
748 .release
= pcwd_close
,
751 static struct miscdevice pcwd_miscdev
= {
752 .minor
= WATCHDOG_MINOR
,
757 static const struct file_operations pcwd_temp_fops
= {
758 .owner
= THIS_MODULE
,
760 .read
= pcwd_temp_read
,
761 .open
= pcwd_temp_open
,
762 .release
= pcwd_temp_close
,
765 static struct miscdevice temp_miscdev
= {
767 .name
= "temperature",
768 .fops
= &pcwd_temp_fops
,
771 static struct notifier_block pcwd_notifier
= {
772 .notifier_call
= pcwd_notify_sys
,
776 * Init & exit routines
779 static inline int get_revision(void)
781 int r
= PCWD_REVISION_C
;
783 spin_lock(&pcwd_private
.io_lock
);
784 /* REV A cards use only 2 io ports; test
785 * presumes a floating bus reads as 0xff. */
786 if ((inb(pcwd_private
.io_addr
+ 2) == 0xFF) ||
787 (inb(pcwd_private
.io_addr
+ 3) == 0xFF))
789 spin_unlock(&pcwd_private
.io_lock
);
794 static int __devinit
pcwatchdog_init(int base_addr
)
799 if (cards_found
== 1)
800 printk(KERN_INFO PFX
"v%s Ken Hollis (kenji@bitgate.com)\n", WD_VER
);
802 if (cards_found
> 1) {
803 printk(KERN_ERR PFX
"This driver only supports 1 device\n");
807 if (base_addr
== 0x0000) {
808 printk(KERN_ERR PFX
"No I/O-Address for card detected\n");
811 pcwd_private
.io_addr
= base_addr
;
813 /* Check card's revision */
814 pcwd_private
.revision
= get_revision();
816 if (!request_region(pcwd_private
.io_addr
, (pcwd_private
.revision
== PCWD_REVISION_A
) ? 2 : 4, "PCWD")) {
817 printk(KERN_ERR PFX
"I/O address 0x%04x already in use\n",
818 pcwd_private
.io_addr
);
819 pcwd_private
.io_addr
= 0x0000;
823 /* Initial variables */
824 pcwd_private
.supports_temp
= 0;
826 pcwd_private
.boot_status
= 0x0000;
828 /* get the boot_status */
829 pcwd_get_status(&pcwd_private
.boot_status
);
831 /* clear the "card caused reboot" flag */
834 init_timer(&pcwd_private
.timer
);
835 pcwd_private
.timer
.function
= pcwd_timer_ping
;
836 pcwd_private
.timer
.data
= 0;
838 /* Disable the board */
841 /* Check whether or not the card supports the temperature device */
842 pcwd_check_temperature_support();
844 /* Show info about the card itself */
845 pcwd_show_card_info();
847 /* Check that the heartbeat value is within it's range ; if not reset to the default */
848 if (pcwd_set_heartbeat(heartbeat
)) {
849 pcwd_set_heartbeat(WATCHDOG_HEARTBEAT
);
850 printk(KERN_INFO PFX
"heartbeat value must be 2<=heartbeat<=7200, using %d\n",
854 ret
= register_reboot_notifier(&pcwd_notifier
);
856 printk(KERN_ERR PFX
"cannot register reboot notifier (err=%d)\n",
858 release_region(pcwd_private
.io_addr
, (pcwd_private
.revision
== PCWD_REVISION_A
) ? 2 : 4);
859 pcwd_private
.io_addr
= 0x0000;
863 if (pcwd_private
.supports_temp
) {
864 ret
= misc_register(&temp_miscdev
);
866 printk(KERN_ERR PFX
"cannot register miscdev on minor=%d (err=%d)\n",
868 unregister_reboot_notifier(&pcwd_notifier
);
869 release_region(pcwd_private
.io_addr
, (pcwd_private
.revision
== PCWD_REVISION_A
) ? 2 : 4);
870 pcwd_private
.io_addr
= 0x0000;
875 ret
= misc_register(&pcwd_miscdev
);
877 printk(KERN_ERR PFX
"cannot register miscdev on minor=%d (err=%d)\n",
878 WATCHDOG_MINOR
, ret
);
879 if (pcwd_private
.supports_temp
)
880 misc_deregister(&temp_miscdev
);
881 unregister_reboot_notifier(&pcwd_notifier
);
882 release_region(pcwd_private
.io_addr
, (pcwd_private
.revision
== PCWD_REVISION_A
) ? 2 : 4);
883 pcwd_private
.io_addr
= 0x0000;
887 printk(KERN_INFO PFX
"initialized. heartbeat=%d sec (nowayout=%d)\n",
888 heartbeat
, nowayout
);
893 static void __devexit
pcwatchdog_exit(void)
895 /* Disable the board */
900 misc_deregister(&pcwd_miscdev
);
901 if (pcwd_private
.supports_temp
)
902 misc_deregister(&temp_miscdev
);
903 unregister_reboot_notifier(&pcwd_notifier
);
904 release_region(pcwd_private
.io_addr
, (pcwd_private
.revision
== PCWD_REVISION_A
) ? 2 : 4);
905 pcwd_private
.io_addr
= 0x0000;
910 * The ISA cards have a heartbeat bit in one of the registers, which
911 * register is card dependent. The heartbeat bit is monitored, and if
912 * found, is considered proof that a Berkshire card has been found.
913 * The initial rate is once per second at board start up, then twice
914 * per second for normal operation.
916 static int __init
pcwd_checkcard(int base_addr
)
918 int port0
, last_port0
; /* Reg 0, in case it's REV A */
919 int port1
, last_port1
; /* Register 1 for REV C cards */
923 if (!request_region (base_addr
, 4, "PCWD")) {
924 printk (KERN_INFO PFX
"Port 0x%04x unavailable\n", base_addr
);
930 port0
= inb_p(base_addr
); /* For REV A boards */
931 port1
= inb_p(base_addr
+ 1); /* For REV C boards */
932 if (port0
!= 0xff || port1
!= 0xff) {
933 /* Not an 'ff' from a floating bus, so must be a card! */
934 for (i
= 0; i
< 4; ++i
) {
941 port0
= inb_p(base_addr
);
942 port1
= inb_p(base_addr
+ 1);
944 /* Has either hearbeat bit changed? */
945 if ((port0
^ last_port0
) & WD_HRTBT
||
946 (port1
^ last_port1
) & WD_REVC_HRBT
) {
952 release_region (base_addr
, 4);
958 * These are the auto-probe addresses available.
960 * Revision A only uses ports 0x270 and 0x370. Revision C introduced 0x350.
961 * Revision A has an address range of 2 addresses, while Revision C has 4.
963 static int pcwd_ioports
[] = { 0x270, 0x350, 0x370, 0x000 };
965 static int __init
pcwd_init_module(void)
969 spin_lock_init(&pcwd_private
.io_lock
);
971 for (i
= 0; pcwd_ioports
[i
] != 0; i
++) {
972 if (pcwd_checkcard(pcwd_ioports
[i
])) {
973 if (!(pcwatchdog_init(pcwd_ioports
[i
])))
979 printk (KERN_INFO PFX
"No card detected, or port not available\n");
986 static void __exit
pcwd_cleanup_module(void)
988 if (pcwd_private
.io_addr
)
991 printk(KERN_INFO PFX
"Watchdog Module Unloaded.\n");
994 module_init(pcwd_init_module
);
995 module_exit(pcwd_cleanup_module
);
997 MODULE_AUTHOR("Ken Hollis <kenji@bitgate.com>");
998 MODULE_DESCRIPTION("Berkshire ISA-PC Watchdog driver");
999 MODULE_LICENSE("GPL");
1000 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
1001 MODULE_ALIAS_MISCDEV(TEMP_MINOR
);