blob: 8d6b249ad66b8f44c12a4c5f21f421ba17db3f2f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PC Watchdog Driver
3 * by Ken Hollis (khollis@bitgate.com)
4 *
5 * Permission granted from Simon Machell (73244.1270@compuserve.com)
6 * Written for the Linux Kernel, and GPLed by Ken Hollis
7 *
8 * 960107 Added request_region routines, modulized the whole thing.
9 * 960108 Fixed end-of-file pointer (Thanks to Dan Hollis), added
10 * WD_TIMEOUT define.
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
26 * routine.
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
45 */
46
47/*
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/
50 */
51
Wim Van Sebroeckfd41fa62005-12-10 14:22:37 +010052#include <linux/config.h> /* For CONFIG_WATCHDOG_NOWAYOUT/... */
53#include <linux/module.h> /* For module specific items */
54#include <linux/moduleparam.h> /* For new moduleparam's */
55#include <linux/types.h> /* For standard types (like size_t) */
56#include <linux/errno.h> /* For the -ENODEV/... values */
57#include <linux/kernel.h> /* For printk/panic/... */
58#include <linux/delay.h> /* For mdelay function */
59#include <linux/timer.h> /* For timer related operations */
60#include <linux/jiffies.h> /* For jiffies stuff */
61#include <linux/miscdevice.h> /* For MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR) */
62#include <linux/watchdog.h> /* For the watchdog specific items */
63#include <linux/notifier.h> /* For notifier support */
64#include <linux/reboot.h> /* For reboot_notifier stuff */
65#include <linux/init.h> /* For __init/__exit/... */
66#include <linux/fs.h> /* For file operations */
67#include <linux/ioport.h> /* For io-port access */
68#include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */
Tim Schmielau4e57b682005-10-30 15:03:48 -080069#include <linux/sched.h> /* TASK_INTERRUPTIBLE, set_current_state() and friends */
Wim Van Sebroeckfd41fa62005-12-10 14:22:37 +010070#include <linux/slab.h> /* For kmalloc */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Wim Van Sebroeckfd41fa62005-12-10 14:22:37 +010072#include <asm/uaccess.h> /* For copy_to_user/put_user/... */
73#include <asm/io.h> /* For inb/outb/... */
74
75/* Module and version information */
Wim Van Sebroecka7122f92006-01-09 22:07:22 +010076#define WATCHDOG_VERSION "1.16"
77#define WATCHDOG_DATE "03 Jan 2006"
78#define WATCHDOG_DRIVER_NAME "ISA-PC Watchdog"
79#define WATCHDOG_NAME "pcwd"
80#define PFX WATCHDOG_NAME ": "
81#define DRIVER_VERSION WATCHDOG_DRIVER_NAME " driver, v" WATCHDOG_VERSION " (" WATCHDOG_DATE ")\n"
82#define WD_VER WATCHDOG_VERSION " (" WATCHDOG_DATE ")"
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/*
85 * It should be noted that PCWD_REVISION_B was removed because A and B
86 * are essentially the same types of card, with the exception that B
87 * has temperature reporting. Since I didn't receive a Rev.B card,
88 * the Rev.B card is not supported. (It's a good thing too, as they
89 * are no longer in production.)
90 */
91#define PCWD_REVISION_A 1
92#define PCWD_REVISION_C 2
93
94/*
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +010095 * These are the defines that describe the control status bits for the
96 * PCI-PC Watchdog card.
97*/
98/* Port 1 : Control Status #1 for the PC Watchdog card, revision A. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#define WD_WDRST 0x01 /* Previously reset state */
100#define WD_T110 0x02 /* Temperature overheat sense */
101#define WD_HRTBT 0x04 /* Heartbeat sense */
102#define WD_RLY2 0x08 /* External relay triggered */
103#define WD_SRLY2 0x80 /* Software external relay triggered */
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +0100104/* Port 1 : Control Status #1 for the PC Watchdog card, revision C. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#define WD_REVC_WTRP 0x01 /* Watchdog Trip status */
106#define WD_REVC_HRBT 0x02 /* Watchdog Heartbeat */
107#define WD_REVC_TTRP 0x04 /* Temperature Trip status */
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +0100108/* Port 2 : Control Status #2 */
109#define WD_WDIS 0x10 /* Watchdog Disabled */
110#define WD_ENTP 0x20 /* Watchdog Enable Temperature Trip */
111#define WD_SSEL 0x40 /* Watchdog Switch Select (1:SW1 <-> 0:SW2) */
112#define WD_WCMD 0x80 /* Watchdog Command Mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/* max. time we give an ISA watchdog card to process a command */
115/* 500ms for each 4 bit response (according to spec.) */
116#define ISA_COMMAND_TIMEOUT 1000
117
118/* Watchdog's internal commands */
Wim Van Sebroeckfd41fa62005-12-10 14:22:37 +0100119#define CMD_ISA_IDLE 0x00
120#define CMD_ISA_VERSION_INTEGER 0x01
121#define CMD_ISA_VERSION_TENTH 0x02
122#define CMD_ISA_VERSION_HUNDRETH 0x03
123#define CMD_ISA_VERSION_MINOR 0x04
124#define CMD_ISA_SWITCH_SETTINGS 0x05
125#define CMD_ISA_DELAY_TIME_2SECS 0x0A
126#define CMD_ISA_DELAY_TIME_4SECS 0x0B
127#define CMD_ISA_DELAY_TIME_8SECS 0x0C
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/*
130 * We are using an kernel timer to do the pinging of the watchdog
131 * every ~500ms. We try to set the internal heartbeat of the
132 * watchdog to 2 ms.
133 */
134
135#define WDT_INTERVAL (HZ/2+1)
136
137/* We can only use 1 card due to the /dev/watchdog restriction */
138static int cards_found;
139
140/* internal variables */
141static atomic_t open_allowed = ATOMIC_INIT(1);
142static char expect_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static int temp_panic;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100144static struct { /* this is private data for each ISA-PC watchdog card */
145 int revision; /* The card's revision */
146 int supports_temp; /* Wether or not the card has a temperature device */
147 int command_mode; /* Wether or not the card is in command mode */
148 int boot_status; /* The card's boot status */
149 int io_addr; /* The cards I/O address */
150 spinlock_t io_lock; /* the lock for io operations */
151 struct timer_list timer; /* The timer that pings the watchdog */
152 unsigned long next_heartbeat; /* the next_heartbeat for the timer */
153} pcwd_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155/* module parameters */
156#define WATCHDOG_HEARTBEAT 60 /* 60 sec default heartbeat */
157static int heartbeat = WATCHDOG_HEARTBEAT;
158module_param(heartbeat, int, 0);
159MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds. (2<=heartbeat<=7200, default=" __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
160
Andrey Panin4bfdf372005-07-27 11:43:58 -0700161static int nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162module_param(nowayout, int, 0);
163MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
164
165/*
166 * Internal functions
167 */
168
169static int send_isa_command(int cmd)
170{
171 int i;
172 int control_status;
173 int port0, last_port0; /* Double read for stabilising */
174
175 /* The WCMD bit must be 1 and the command is only 4 bits in size */
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +0100176 control_status = (cmd & 0x0F) | WD_WCMD;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100177 outb_p(control_status, pcwd_private.io_addr + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 udelay(ISA_COMMAND_TIMEOUT);
179
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100180 port0 = inb_p(pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 for (i = 0; i < 25; ++i) {
182 last_port0 = port0;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100183 port0 = inb_p(pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 if (port0 == last_port0)
186 break; /* Data is stable */
187
188 udelay (250);
189 }
190
191 return port0;
192}
193
194static int set_command_mode(void)
195{
196 int i, found=0, count=0;
197
198 /* Set the card into command mode */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100199 spin_lock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 while ((!found) && (count < 3)) {
201 i = send_isa_command(CMD_ISA_IDLE);
202
203 if (i == 0x00)
204 found = 1;
205 else if (i == 0xF3) {
206 /* Card does not like what we've done to it */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100207 outb_p(0x00, pcwd_private.io_addr + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 udelay(1200); /* Spec says wait 1ms */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100209 outb_p(0x00, pcwd_private.io_addr + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 udelay(ISA_COMMAND_TIMEOUT);
211 }
212 count++;
213 }
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100214 spin_unlock(&pcwd_private.io_lock);
215 pcwd_private.command_mode = found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 return(found);
218}
219
220static void unset_command_mode(void)
221{
222 /* Set the card into normal mode */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100223 spin_lock(&pcwd_private.io_lock);
224 outb_p(0x00, pcwd_private.io_addr + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 udelay(ISA_COMMAND_TIMEOUT);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100226 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100228 pcwd_private.command_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Wim Van Sebroeck85875212006-01-09 21:59:39 +0100231static inline void pcwd_check_temperature_support(void)
232{
233 if (inb(pcwd_private.io_addr) != 0xF0)
234 pcwd_private.supports_temp = 1;
235}
236
Wim Van Sebroeckaf3b38d2006-01-09 22:03:41 +0100237static inline char *get_firmware(void)
238{
239 int one, ten, hund, minor;
240 char *ret;
241
242 ret = kmalloc(6, GFP_KERNEL);
243 if(ret == NULL)
244 return NULL;
245
246 if (set_command_mode()) {
247 one = send_isa_command(CMD_ISA_VERSION_INTEGER);
248 ten = send_isa_command(CMD_ISA_VERSION_TENTH);
249 hund = send_isa_command(CMD_ISA_VERSION_HUNDRETH);
250 minor = send_isa_command(CMD_ISA_VERSION_MINOR);
251 sprintf(ret, "%c.%c%c%c", one, ten, hund, minor);
252 }
253 else
254 sprintf(ret, "ERROR");
255
256 unset_command_mode();
257 return(ret);
258}
259
260static inline int pcwd_get_option_switches(void)
261{
262 int option_switches=0;
263
264 if (set_command_mode()) {
265 /* Get switch settings */
266 option_switches = send_isa_command(CMD_ISA_SWITCH_SETTINGS);
267 }
268
269 unset_command_mode();
270 return(option_switches);
271}
272
273static void pcwd_show_card_info(void)
274{
275 char *firmware;
276 int option_switches;
277
278 /* Get some extra info from the hardware (in command/debug/diag mode) */
279 if (pcwd_private.revision == PCWD_REVISION_A)
280 printk(KERN_INFO PFX "ISA-PC Watchdog (REV.A) detected at port 0x%04x\n", pcwd_private.io_addr);
281 else if (pcwd_private.revision == PCWD_REVISION_C) {
282 firmware = get_firmware();
283 printk(KERN_INFO PFX "ISA-PC Watchdog (REV.C) detected at port 0x%04x (Firmware version: %s)\n",
284 pcwd_private.io_addr, firmware);
285 kfree(firmware);
286 option_switches = pcwd_get_option_switches();
287 printk(KERN_INFO PFX "Option switches (0x%02x): Temperature Reset Enable=%s, Power On Delay=%s\n",
288 option_switches,
289 ((option_switches & 0x10) ? "ON" : "OFF"),
290 ((option_switches & 0x08) ? "ON" : "OFF"));
291
292 /* Reprogram internal heartbeat to 2 seconds */
293 if (set_command_mode()) {
294 send_isa_command(CMD_ISA_DELAY_TIME_2SECS);
295 unset_command_mode();
296 }
297 }
298
299 if (pcwd_private.supports_temp)
300 printk(KERN_INFO PFX "Temperature Option Detected\n");
301
302 if (pcwd_private.boot_status & WDIOF_CARDRESET)
303 printk(KERN_INFO PFX "Previous reboot was caused by the card\n");
304
305 if (pcwd_private.boot_status & WDIOF_OVERHEAT) {
306 printk(KERN_EMERG PFX "Card senses a CPU Overheat. Panicking!\n");
307 printk(KERN_EMERG PFX "CPU Overheat\n");
308 }
309
310 if (pcwd_private.boot_status == 0)
311 printk(KERN_INFO PFX "No previous trip detected - Cold boot or reset\n");
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314static void pcwd_timer_ping(unsigned long data)
315{
316 int wdrst_stat;
317
318 /* If we got a heartbeat pulse within the WDT_INTERVAL
319 * we agree to ping the WDT */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100320 if(time_before(jiffies, pcwd_private.next_heartbeat)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /* Ping the watchdog */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100322 spin_lock(&pcwd_private.io_lock);
323 if (pcwd_private.revision == PCWD_REVISION_A) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /* Rev A cards are reset by setting the WD_WDRST bit in register 1 */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100325 wdrst_stat = inb_p(pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 wdrst_stat &= 0x0F;
327 wdrst_stat |= WD_WDRST;
328
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100329 outb_p(wdrst_stat, pcwd_private.io_addr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 } else {
331 /* Re-trigger watchdog by writing to port 0 */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100332 outb_p(0x00, pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334
335 /* Re-set the timer interval */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100336 mod_timer(&pcwd_private.timer, jiffies + WDT_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100338 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 } else {
340 printk(KERN_WARNING PFX "Heartbeat lost! Will not ping the watchdog\n");
341 }
342}
343
344static int pcwd_start(void)
345{
346 int stat_reg;
347
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100348 pcwd_private.next_heartbeat = jiffies + (heartbeat * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 /* Start the timer */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100351 mod_timer(&pcwd_private.timer, jiffies + WDT_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /* Enable the port */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100354 if (pcwd_private.revision == PCWD_REVISION_C) {
355 spin_lock(&pcwd_private.io_lock);
356 outb_p(0x00, pcwd_private.io_addr + 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 udelay(ISA_COMMAND_TIMEOUT);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100358 stat_reg = inb_p(pcwd_private.io_addr + 2);
359 spin_unlock(&pcwd_private.io_lock);
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +0100360 if (stat_reg & WD_WDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 printk(KERN_INFO PFX "Could not start watchdog\n");
362 return -EIO;
363 }
364 }
365 return 0;
366}
367
368static int pcwd_stop(void)
369{
370 int stat_reg;
371
372 /* Stop the timer */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100373 del_timer(&pcwd_private.timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /* Disable the board */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100376 if (pcwd_private.revision == PCWD_REVISION_C) {
377 spin_lock(&pcwd_private.io_lock);
378 outb_p(0xA5, pcwd_private.io_addr + 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 udelay(ISA_COMMAND_TIMEOUT);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100380 outb_p(0xA5, pcwd_private.io_addr + 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 udelay(ISA_COMMAND_TIMEOUT);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100382 stat_reg = inb_p(pcwd_private.io_addr + 2);
383 spin_unlock(&pcwd_private.io_lock);
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +0100384 if ((stat_reg & WD_WDIS) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 printk(KERN_INFO PFX "Could not stop watchdog\n");
386 return -EIO;
387 }
388 }
389 return 0;
390}
391
392static int pcwd_keepalive(void)
393{
394 /* user land ping */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100395 pcwd_private.next_heartbeat = jiffies + (heartbeat * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return 0;
397}
398
399static int pcwd_set_heartbeat(int t)
400{
401 if ((t < 2) || (t > 7200)) /* arbitrary upper limit */
402 return -EINVAL;
403
404 heartbeat = t;
405 return 0;
406}
407
408static int pcwd_get_status(int *status)
409{
410 int card_status;
411
412 *status=0;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100413 spin_lock(&pcwd_private.io_lock);
414 if (pcwd_private.revision == PCWD_REVISION_A)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* Rev A cards return status information from
416 * the base register, which is used for the
417 * temperature in other cards. */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100418 card_status = inb(pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 else {
420 /* Rev C cards return card status in the base
421 * address + 1 register. And use different bits
422 * to indicate a card initiated reset, and an
423 * over-temperature condition. And the reboot
424 * status can be reset. */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100425 card_status = inb(pcwd_private.io_addr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100427 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100429 if (pcwd_private.revision == PCWD_REVISION_A) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (card_status & WD_WDRST)
431 *status |= WDIOF_CARDRESET;
432
433 if (card_status & WD_T110) {
434 *status |= WDIOF_OVERHEAT;
435 if (temp_panic) {
436 printk (KERN_INFO PFX "Temperature overheat trip!\n");
Eric W. Biederman68acc052005-07-26 12:03:08 -0600437 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439 }
440 } else {
441 if (card_status & WD_REVC_WTRP)
442 *status |= WDIOF_CARDRESET;
443
444 if (card_status & WD_REVC_TTRP) {
445 *status |= WDIOF_OVERHEAT;
446 if (temp_panic) {
447 printk (KERN_INFO PFX "Temperature overheat trip!\n");
Eric W. Biederman68acc052005-07-26 12:03:08 -0600448 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450 }
451 }
452
453 return 0;
454}
455
456static int pcwd_clear_status(void)
457{
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100458 if (pcwd_private.revision == PCWD_REVISION_C) {
459 spin_lock(&pcwd_private.io_lock);
460 outb_p(0x00, pcwd_private.io_addr + 1); /* clear reset status */
461 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463 return 0;
464}
465
466static int pcwd_get_temperature(int *temperature)
467{
468 /* check that port 0 gives temperature info and no command results */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100469 if (pcwd_private.command_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return -1;
471
472 *temperature = 0;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100473 if (!pcwd_private.supports_temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return -ENODEV;
475
476 /*
477 * Convert celsius to fahrenheit, since this was
478 * the decided 'standard' for this return value.
479 */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100480 spin_lock(&pcwd_private.io_lock);
481 *temperature = ((inb(pcwd_private.io_addr)) * 9 / 5) + 32;
482 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 return 0;
485}
486
487/*
488 * /dev/watchdog handling
489 */
490
491static int pcwd_ioctl(struct inode *inode, struct file *file,
492 unsigned int cmd, unsigned long arg)
493{
494 int rv;
495 int status;
496 int temperature;
497 int new_heartbeat;
498 int __user *argp = (int __user *)arg;
499 static struct watchdog_info ident = {
500 .options = WDIOF_OVERHEAT |
501 WDIOF_CARDRESET |
502 WDIOF_KEEPALIVEPING |
503 WDIOF_SETTIMEOUT |
504 WDIOF_MAGICCLOSE,
505 .firmware_version = 1,
506 .identity = "PCWD",
507 };
508
509 switch(cmd) {
510 default:
511 return -ENOIOCTLCMD;
512
513 case WDIOC_GETSUPPORT:
514 if(copy_to_user(argp, &ident, sizeof(ident)))
515 return -EFAULT;
516 return 0;
517
518 case WDIOC_GETSTATUS:
519 pcwd_get_status(&status);
520 return put_user(status, argp);
521
522 case WDIOC_GETBOOTSTATUS:
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100523 return put_user(pcwd_private.boot_status, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 case WDIOC_GETTEMP:
526 if (pcwd_get_temperature(&temperature))
527 return -EFAULT;
528
529 return put_user(temperature, argp);
530
531 case WDIOC_SETOPTIONS:
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100532 if (pcwd_private.revision == PCWD_REVISION_C)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 {
534 if(copy_from_user(&rv, argp, sizeof(int)))
535 return -EFAULT;
536
537 if (rv & WDIOS_DISABLECARD)
538 {
539 return pcwd_stop();
540 }
541
542 if (rv & WDIOS_ENABLECARD)
543 {
544 return pcwd_start();
545 }
546
547 if (rv & WDIOS_TEMPPANIC)
548 {
549 temp_panic = 1;
550 }
551 }
552 return -EINVAL;
553
554 case WDIOC_KEEPALIVE:
555 pcwd_keepalive();
556 return 0;
557
558 case WDIOC_SETTIMEOUT:
559 if (get_user(new_heartbeat, argp))
560 return -EFAULT;
561
562 if (pcwd_set_heartbeat(new_heartbeat))
563 return -EINVAL;
564
565 pcwd_keepalive();
566 /* Fall */
567
568 case WDIOC_GETTIMEOUT:
569 return put_user(heartbeat, argp);
570 }
571
572 return 0;
573}
574
575static ssize_t pcwd_write(struct file *file, const char __user *buf, size_t len,
576 loff_t *ppos)
577{
578 if (len) {
579 if (!nowayout) {
580 size_t i;
581
582 /* In case it was set long ago */
583 expect_close = 0;
584
585 for (i = 0; i != len; i++) {
586 char c;
587
588 if (get_user(c, buf + i))
589 return -EFAULT;
590 if (c == 'V')
591 expect_close = 42;
592 }
593 }
594 pcwd_keepalive();
595 }
596 return len;
597}
598
599static int pcwd_open(struct inode *inode, struct file *file)
600{
601 if (!atomic_dec_and_test(&open_allowed) ) {
602 atomic_inc( &open_allowed );
603 return -EBUSY;
604 }
605
606 if (nowayout)
607 __module_get(THIS_MODULE);
608
609 /* Activate */
610 pcwd_start();
611 pcwd_keepalive();
612 return nonseekable_open(inode, file);
613}
614
615static int pcwd_close(struct inode *inode, struct file *file)
616{
617 if (expect_close == 42) {
618 pcwd_stop();
619 } else {
620 printk(KERN_CRIT PFX "Unexpected close, not stopping watchdog!\n");
621 pcwd_keepalive();
622 }
623 expect_close = 0;
624 atomic_inc( &open_allowed );
625 return 0;
626}
627
628/*
629 * /dev/temperature handling
630 */
631
632static ssize_t pcwd_temp_read(struct file *file, char __user *buf, size_t count,
633 loff_t *ppos)
634{
635 int temperature;
636
637 if (pcwd_get_temperature(&temperature))
638 return -EFAULT;
639
640 if (copy_to_user(buf, &temperature, 1))
641 return -EFAULT;
642
643 return 1;
644}
645
646static int pcwd_temp_open(struct inode *inode, struct file *file)
647{
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100648 if (!pcwd_private.supports_temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return -ENODEV;
650
651 return nonseekable_open(inode, file);
652}
653
654static int pcwd_temp_close(struct inode *inode, struct file *file)
655{
656 return 0;
657}
658
659/*
660 * Notify system
661 */
662
663static int pcwd_notify_sys(struct notifier_block *this, unsigned long code, void *unused)
664{
665 if (code==SYS_DOWN || code==SYS_HALT) {
666 /* Turn the WDT off */
667 pcwd_stop();
668 }
669
670 return NOTIFY_DONE;
671}
672
673/*
674 * Kernel Interfaces
675 */
676
677static struct file_operations pcwd_fops = {
678 .owner = THIS_MODULE,
679 .llseek = no_llseek,
680 .write = pcwd_write,
681 .ioctl = pcwd_ioctl,
682 .open = pcwd_open,
683 .release = pcwd_close,
684};
685
686static struct miscdevice pcwd_miscdev = {
687 .minor = WATCHDOG_MINOR,
688 .name = "watchdog",
689 .fops = &pcwd_fops,
690};
691
692static struct file_operations pcwd_temp_fops = {
693 .owner = THIS_MODULE,
694 .llseek = no_llseek,
695 .read = pcwd_temp_read,
696 .open = pcwd_temp_open,
697 .release = pcwd_temp_close,
698};
699
700static struct miscdevice temp_miscdev = {
701 .minor = TEMP_MINOR,
702 .name = "temperature",
703 .fops = &pcwd_temp_fops,
704};
705
706static struct notifier_block pcwd_notifier = {
707 .notifier_call = pcwd_notify_sys,
708};
709
710/*
711 * Init & exit routines
712 */
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714static inline int get_revision(void)
715{
716 int r = PCWD_REVISION_C;
717
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100718 spin_lock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* REV A cards use only 2 io ports; test
720 * presumes a floating bus reads as 0xff. */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100721 if ((inb(pcwd_private.io_addr + 2) == 0xFF) ||
722 (inb(pcwd_private.io_addr + 3) == 0xFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 r=PCWD_REVISION_A;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100724 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 return r;
727}
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729static int __devinit pcwatchdog_init(int base_addr)
730{
731 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 cards_found++;
734 if (cards_found == 1)
735 printk(KERN_INFO PFX "v%s Ken Hollis (kenji@bitgate.com)\n", WD_VER);
736
737 if (cards_found > 1) {
738 printk(KERN_ERR PFX "This driver only supports 1 device\n");
739 return -ENODEV;
740 }
741
742 if (base_addr == 0x0000) {
743 printk(KERN_ERR PFX "No I/O-Address for card detected\n");
744 return -ENODEV;
745 }
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100746 pcwd_private.io_addr = base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 /* Check card's revision */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100749 pcwd_private.revision = get_revision();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100751 if (!request_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4, "PCWD")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 printk(KERN_ERR PFX "I/O address 0x%04x already in use\n",
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100753 pcwd_private.io_addr);
754 pcwd_private.io_addr = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return -EIO;
756 }
757
758 /* Initial variables */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100759 pcwd_private.supports_temp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 temp_panic = 0;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100761 pcwd_private.boot_status = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 /* get the boot_status */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100764 pcwd_get_status(&pcwd_private.boot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /* clear the "card caused reboot" flag */
767 pcwd_clear_status();
768
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100769 init_timer(&pcwd_private.timer);
770 pcwd_private.timer.function = pcwd_timer_ping;
771 pcwd_private.timer.data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 /* Disable the board */
774 pcwd_stop();
775
776 /* Check whether or not the card supports the temperature device */
Wim Van Sebroeck85875212006-01-09 21:59:39 +0100777 pcwd_check_temperature_support();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Wim Van Sebroeckaf3b38d2006-01-09 22:03:41 +0100779 /* Show info about the card itself */
780 pcwd_show_card_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 /* Check that the heartbeat value is within it's range ; if not reset to the default */
Wim Van Sebroeckfd41fa62005-12-10 14:22:37 +0100783 if (pcwd_set_heartbeat(heartbeat)) {
784 pcwd_set_heartbeat(WATCHDOG_HEARTBEAT);
785 printk(KERN_INFO PFX "heartbeat value must be 2<=heartbeat<=7200, using %d\n",
786 WATCHDOG_HEARTBEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788
789 ret = register_reboot_notifier(&pcwd_notifier);
790 if (ret) {
791 printk(KERN_ERR PFX "cannot register reboot notifier (err=%d)\n",
792 ret);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100793 release_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4);
794 pcwd_private.io_addr = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return ret;
796 }
797
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100798 if (pcwd_private.supports_temp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 ret = misc_register(&temp_miscdev);
800 if (ret) {
801 printk(KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
802 TEMP_MINOR, ret);
803 unregister_reboot_notifier(&pcwd_notifier);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100804 release_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4);
805 pcwd_private.io_addr = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return ret;
807 }
808 }
809
810 ret = misc_register(&pcwd_miscdev);
811 if (ret) {
812 printk(KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
813 WATCHDOG_MINOR, ret);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100814 if (pcwd_private.supports_temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 misc_deregister(&temp_miscdev);
816 unregister_reboot_notifier(&pcwd_notifier);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100817 release_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4);
818 pcwd_private.io_addr = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return ret;
820 }
821
822 printk(KERN_INFO PFX "initialized. heartbeat=%d sec (nowayout=%d)\n",
823 heartbeat, nowayout);
824
825 return 0;
826}
827
828static void __devexit pcwatchdog_exit(void)
829{
830 /* Disable the board */
831 if (!nowayout)
832 pcwd_stop();
833
834 /* Deregister */
835 misc_deregister(&pcwd_miscdev);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100836 if (pcwd_private.supports_temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 misc_deregister(&temp_miscdev);
838 unregister_reboot_notifier(&pcwd_notifier);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100839 release_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4);
840 pcwd_private.io_addr = 0x0000;
Wim Van Sebroeckf1c3a052005-12-10 14:36:24 +0100841 cards_found--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844/*
845 * The ISA cards have a heartbeat bit in one of the registers, which
846 * register is card dependent. The heartbeat bit is monitored, and if
847 * found, is considered proof that a Berkshire card has been found.
848 * The initial rate is once per second at board start up, then twice
849 * per second for normal operation.
850 */
851static int __init pcwd_checkcard(int base_addr)
852{
853 int port0, last_port0; /* Reg 0, in case it's REV A */
854 int port1, last_port1; /* Register 1 for REV C cards */
855 int i;
856 int retval;
857
858 if (!request_region (base_addr, 4, "PCWD")) {
859 printk (KERN_INFO PFX "Port 0x%04x unavailable\n", base_addr);
860 return 0;
861 }
862
863 retval = 0;
864
865 port0 = inb_p(base_addr); /* For REV A boards */
866 port1 = inb_p(base_addr + 1); /* For REV C boards */
867 if (port0 != 0xff || port1 != 0xff) {
868 /* Not an 'ff' from a floating bus, so must be a card! */
869 for (i = 0; i < 4; ++i) {
870
871 msleep(500);
872
873 last_port0 = port0;
874 last_port1 = port1;
875
876 port0 = inb_p(base_addr);
877 port1 = inb_p(base_addr + 1);
878
879 /* Has either hearbeat bit changed? */
880 if ((port0 ^ last_port0) & WD_HRTBT ||
881 (port1 ^ last_port1) & WD_REVC_HRBT) {
882 retval = 1;
883 break;
884 }
885 }
886 }
887 release_region (base_addr, 4);
888
889 return retval;
890}
891
892/*
893 * These are the auto-probe addresses available.
894 *
895 * Revision A only uses ports 0x270 and 0x370. Revision C introduced 0x350.
896 * Revision A has an address range of 2 addresses, while Revision C has 4.
897 */
898static int pcwd_ioports[] = { 0x270, 0x350, 0x370, 0x000 };
899
900static int __init pcwd_init_module(void)
901{
902 int i, found = 0;
903
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100904 spin_lock_init(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 for (i = 0; pcwd_ioports[i] != 0; i++) {
907 if (pcwd_checkcard(pcwd_ioports[i])) {
908 if (!(pcwatchdog_init(pcwd_ioports[i])))
909 found++;
910 }
911 }
912
913 if (!found) {
914 printk (KERN_INFO PFX "No card detected, or port not available\n");
915 return -ENODEV;
916 }
917
918 return 0;
919}
920
921static void __exit pcwd_cleanup_module(void)
922{
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100923 if (pcwd_private.io_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 pcwatchdog_exit();
925 return;
926}
927
928module_init(pcwd_init_module);
929module_exit(pcwd_cleanup_module);
930
931MODULE_AUTHOR("Ken Hollis <kenji@bitgate.com>");
932MODULE_DESCRIPTION("Berkshire ISA-PC Watchdog driver");
933MODULE_LICENSE("GPL");
934MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
935MODULE_ALIAS_MISCDEV(TEMP_MINOR);