blob: 0549b2e8996680bd890aabedc38b08c976557a86 [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 Sebroecka2be8782006-01-09 21:53:33 +010076#define WD_VER "1.16 (03/01/2006)"
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define PFX "pcwd: "
78
79/*
80 * It should be noted that PCWD_REVISION_B was removed because A and B
81 * are essentially the same types of card, with the exception that B
82 * has temperature reporting. Since I didn't receive a Rev.B card,
83 * the Rev.B card is not supported. (It's a good thing too, as they
84 * are no longer in production.)
85 */
86#define PCWD_REVISION_A 1
87#define PCWD_REVISION_C 2
88
89/*
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +010090 * These are the defines that describe the control status bits for the
91 * PCI-PC Watchdog card.
92*/
93/* Port 1 : Control Status #1 for the PC Watchdog card, revision A. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define WD_WDRST 0x01 /* Previously reset state */
95#define WD_T110 0x02 /* Temperature overheat sense */
96#define WD_HRTBT 0x04 /* Heartbeat sense */
97#define WD_RLY2 0x08 /* External relay triggered */
98#define WD_SRLY2 0x80 /* Software external relay triggered */
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +010099/* Port 1 : Control Status #1 for the PC Watchdog card, revision C. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#define WD_REVC_WTRP 0x01 /* Watchdog Trip status */
101#define WD_REVC_HRBT 0x02 /* Watchdog Heartbeat */
102#define WD_REVC_TTRP 0x04 /* Temperature Trip status */
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +0100103/* Port 2 : Control Status #2 */
104#define WD_WDIS 0x10 /* Watchdog Disabled */
105#define WD_ENTP 0x20 /* Watchdog Enable Temperature Trip */
106#define WD_SSEL 0x40 /* Watchdog Switch Select (1:SW1 <-> 0:SW2) */
107#define WD_WCMD 0x80 /* Watchdog Command Mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109/* max. time we give an ISA watchdog card to process a command */
110/* 500ms for each 4 bit response (according to spec.) */
111#define ISA_COMMAND_TIMEOUT 1000
112
113/* Watchdog's internal commands */
Wim Van Sebroeckfd41fa62005-12-10 14:22:37 +0100114#define CMD_ISA_IDLE 0x00
115#define CMD_ISA_VERSION_INTEGER 0x01
116#define CMD_ISA_VERSION_TENTH 0x02
117#define CMD_ISA_VERSION_HUNDRETH 0x03
118#define CMD_ISA_VERSION_MINOR 0x04
119#define CMD_ISA_SWITCH_SETTINGS 0x05
120#define CMD_ISA_DELAY_TIME_2SECS 0x0A
121#define CMD_ISA_DELAY_TIME_4SECS 0x0B
122#define CMD_ISA_DELAY_TIME_8SECS 0x0C
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124/*
125 * We are using an kernel timer to do the pinging of the watchdog
126 * every ~500ms. We try to set the internal heartbeat of the
127 * watchdog to 2 ms.
128 */
129
130#define WDT_INTERVAL (HZ/2+1)
131
132/* We can only use 1 card due to the /dev/watchdog restriction */
133static int cards_found;
134
135/* internal variables */
136static atomic_t open_allowed = ATOMIC_INIT(1);
137static char expect_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138static int temp_panic;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100139static struct { /* this is private data for each ISA-PC watchdog card */
140 int revision; /* The card's revision */
141 int supports_temp; /* Wether or not the card has a temperature device */
142 int command_mode; /* Wether or not the card is in command mode */
143 int boot_status; /* The card's boot status */
144 int io_addr; /* The cards I/O address */
145 spinlock_t io_lock; /* the lock for io operations */
146 struct timer_list timer; /* The timer that pings the watchdog */
147 unsigned long next_heartbeat; /* the next_heartbeat for the timer */
148} pcwd_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150/* module parameters */
151#define WATCHDOG_HEARTBEAT 60 /* 60 sec default heartbeat */
152static int heartbeat = WATCHDOG_HEARTBEAT;
153module_param(heartbeat, int, 0);
154MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds. (2<=heartbeat<=7200, default=" __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
155
Andrey Panin4bfdf372005-07-27 11:43:58 -0700156static int nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157module_param(nowayout, int, 0);
158MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
159
160/*
161 * Internal functions
162 */
163
164static int send_isa_command(int cmd)
165{
166 int i;
167 int control_status;
168 int port0, last_port0; /* Double read for stabilising */
169
170 /* The WCMD bit must be 1 and the command is only 4 bits in size */
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +0100171 control_status = (cmd & 0x0F) | WD_WCMD;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100172 outb_p(control_status, pcwd_private.io_addr + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 udelay(ISA_COMMAND_TIMEOUT);
174
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100175 port0 = inb_p(pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 for (i = 0; i < 25; ++i) {
177 last_port0 = port0;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100178 port0 = inb_p(pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 if (port0 == last_port0)
181 break; /* Data is stable */
182
183 udelay (250);
184 }
185
186 return port0;
187}
188
189static int set_command_mode(void)
190{
191 int i, found=0, count=0;
192
193 /* Set the card into command mode */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100194 spin_lock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 while ((!found) && (count < 3)) {
196 i = send_isa_command(CMD_ISA_IDLE);
197
198 if (i == 0x00)
199 found = 1;
200 else if (i == 0xF3) {
201 /* Card does not like what we've done to it */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100202 outb_p(0x00, pcwd_private.io_addr + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 udelay(1200); /* Spec says wait 1ms */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100204 outb_p(0x00, pcwd_private.io_addr + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 udelay(ISA_COMMAND_TIMEOUT);
206 }
207 count++;
208 }
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100209 spin_unlock(&pcwd_private.io_lock);
210 pcwd_private.command_mode = found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 return(found);
213}
214
215static void unset_command_mode(void)
216{
217 /* Set the card into normal mode */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100218 spin_lock(&pcwd_private.io_lock);
219 outb_p(0x00, pcwd_private.io_addr + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 udelay(ISA_COMMAND_TIMEOUT);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100221 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100223 pcwd_private.command_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Wim Van Sebroeck85875212006-01-09 21:59:39 +0100226static inline void pcwd_check_temperature_support(void)
227{
228 if (inb(pcwd_private.io_addr) != 0xF0)
229 pcwd_private.supports_temp = 1;
230}
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232static void pcwd_timer_ping(unsigned long data)
233{
234 int wdrst_stat;
235
236 /* If we got a heartbeat pulse within the WDT_INTERVAL
237 * we agree to ping the WDT */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100238 if(time_before(jiffies, pcwd_private.next_heartbeat)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /* Ping the watchdog */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100240 spin_lock(&pcwd_private.io_lock);
241 if (pcwd_private.revision == PCWD_REVISION_A) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* Rev A cards are reset by setting the WD_WDRST bit in register 1 */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100243 wdrst_stat = inb_p(pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 wdrst_stat &= 0x0F;
245 wdrst_stat |= WD_WDRST;
246
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100247 outb_p(wdrst_stat, pcwd_private.io_addr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 } else {
249 /* Re-trigger watchdog by writing to port 0 */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100250 outb_p(0x00, pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
253 /* Re-set the timer interval */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100254 mod_timer(&pcwd_private.timer, jiffies + WDT_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100256 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 } else {
258 printk(KERN_WARNING PFX "Heartbeat lost! Will not ping the watchdog\n");
259 }
260}
261
262static int pcwd_start(void)
263{
264 int stat_reg;
265
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100266 pcwd_private.next_heartbeat = jiffies + (heartbeat * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 /* Start the timer */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100269 mod_timer(&pcwd_private.timer, jiffies + WDT_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /* Enable the port */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100272 if (pcwd_private.revision == PCWD_REVISION_C) {
273 spin_lock(&pcwd_private.io_lock);
274 outb_p(0x00, pcwd_private.io_addr + 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 udelay(ISA_COMMAND_TIMEOUT);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100276 stat_reg = inb_p(pcwd_private.io_addr + 2);
277 spin_unlock(&pcwd_private.io_lock);
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +0100278 if (stat_reg & WD_WDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 printk(KERN_INFO PFX "Could not start watchdog\n");
280 return -EIO;
281 }
282 }
283 return 0;
284}
285
286static int pcwd_stop(void)
287{
288 int stat_reg;
289
290 /* Stop the timer */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100291 del_timer(&pcwd_private.timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 /* Disable the board */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100294 if (pcwd_private.revision == PCWD_REVISION_C) {
295 spin_lock(&pcwd_private.io_lock);
296 outb_p(0xA5, pcwd_private.io_addr + 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 udelay(ISA_COMMAND_TIMEOUT);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100298 outb_p(0xA5, pcwd_private.io_addr + 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 udelay(ISA_COMMAND_TIMEOUT);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100300 stat_reg = inb_p(pcwd_private.io_addr + 2);
301 spin_unlock(&pcwd_private.io_lock);
Wim Van Sebroeck8f0235d2006-01-09 21:56:09 +0100302 if ((stat_reg & WD_WDIS) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 printk(KERN_INFO PFX "Could not stop watchdog\n");
304 return -EIO;
305 }
306 }
307 return 0;
308}
309
310static int pcwd_keepalive(void)
311{
312 /* user land ping */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100313 pcwd_private.next_heartbeat = jiffies + (heartbeat * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return 0;
315}
316
317static int pcwd_set_heartbeat(int t)
318{
319 if ((t < 2) || (t > 7200)) /* arbitrary upper limit */
320 return -EINVAL;
321
322 heartbeat = t;
323 return 0;
324}
325
326static int pcwd_get_status(int *status)
327{
328 int card_status;
329
330 *status=0;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100331 spin_lock(&pcwd_private.io_lock);
332 if (pcwd_private.revision == PCWD_REVISION_A)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /* Rev A cards return status information from
334 * the base register, which is used for the
335 * temperature in other cards. */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100336 card_status = inb(pcwd_private.io_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 else {
338 /* Rev C cards return card status in the base
339 * address + 1 register. And use different bits
340 * to indicate a card initiated reset, and an
341 * over-temperature condition. And the reboot
342 * status can be reset. */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100343 card_status = inb(pcwd_private.io_addr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100345 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100347 if (pcwd_private.revision == PCWD_REVISION_A) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (card_status & WD_WDRST)
349 *status |= WDIOF_CARDRESET;
350
351 if (card_status & WD_T110) {
352 *status |= WDIOF_OVERHEAT;
353 if (temp_panic) {
354 printk (KERN_INFO PFX "Temperature overheat trip!\n");
Eric W. Biederman68acc052005-07-26 12:03:08 -0600355 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357 }
358 } else {
359 if (card_status & WD_REVC_WTRP)
360 *status |= WDIOF_CARDRESET;
361
362 if (card_status & WD_REVC_TTRP) {
363 *status |= WDIOF_OVERHEAT;
364 if (temp_panic) {
365 printk (KERN_INFO PFX "Temperature overheat trip!\n");
Eric W. Biederman68acc052005-07-26 12:03:08 -0600366 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368 }
369 }
370
371 return 0;
372}
373
374static int pcwd_clear_status(void)
375{
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(0x00, pcwd_private.io_addr + 1); /* clear reset status */
379 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381 return 0;
382}
383
384static int pcwd_get_temperature(int *temperature)
385{
386 /* check that port 0 gives temperature info and no command results */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100387 if (pcwd_private.command_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -1;
389
390 *temperature = 0;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100391 if (!pcwd_private.supports_temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return -ENODEV;
393
394 /*
395 * Convert celsius to fahrenheit, since this was
396 * the decided 'standard' for this return value.
397 */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100398 spin_lock(&pcwd_private.io_lock);
399 *temperature = ((inb(pcwd_private.io_addr)) * 9 / 5) + 32;
400 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 return 0;
403}
404
405/*
406 * /dev/watchdog handling
407 */
408
409static int pcwd_ioctl(struct inode *inode, struct file *file,
410 unsigned int cmd, unsigned long arg)
411{
412 int rv;
413 int status;
414 int temperature;
415 int new_heartbeat;
416 int __user *argp = (int __user *)arg;
417 static struct watchdog_info ident = {
418 .options = WDIOF_OVERHEAT |
419 WDIOF_CARDRESET |
420 WDIOF_KEEPALIVEPING |
421 WDIOF_SETTIMEOUT |
422 WDIOF_MAGICCLOSE,
423 .firmware_version = 1,
424 .identity = "PCWD",
425 };
426
427 switch(cmd) {
428 default:
429 return -ENOIOCTLCMD;
430
431 case WDIOC_GETSUPPORT:
432 if(copy_to_user(argp, &ident, sizeof(ident)))
433 return -EFAULT;
434 return 0;
435
436 case WDIOC_GETSTATUS:
437 pcwd_get_status(&status);
438 return put_user(status, argp);
439
440 case WDIOC_GETBOOTSTATUS:
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100441 return put_user(pcwd_private.boot_status, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 case WDIOC_GETTEMP:
444 if (pcwd_get_temperature(&temperature))
445 return -EFAULT;
446
447 return put_user(temperature, argp);
448
449 case WDIOC_SETOPTIONS:
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100450 if (pcwd_private.revision == PCWD_REVISION_C)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 {
452 if(copy_from_user(&rv, argp, sizeof(int)))
453 return -EFAULT;
454
455 if (rv & WDIOS_DISABLECARD)
456 {
457 return pcwd_stop();
458 }
459
460 if (rv & WDIOS_ENABLECARD)
461 {
462 return pcwd_start();
463 }
464
465 if (rv & WDIOS_TEMPPANIC)
466 {
467 temp_panic = 1;
468 }
469 }
470 return -EINVAL;
471
472 case WDIOC_KEEPALIVE:
473 pcwd_keepalive();
474 return 0;
475
476 case WDIOC_SETTIMEOUT:
477 if (get_user(new_heartbeat, argp))
478 return -EFAULT;
479
480 if (pcwd_set_heartbeat(new_heartbeat))
481 return -EINVAL;
482
483 pcwd_keepalive();
484 /* Fall */
485
486 case WDIOC_GETTIMEOUT:
487 return put_user(heartbeat, argp);
488 }
489
490 return 0;
491}
492
493static ssize_t pcwd_write(struct file *file, const char __user *buf, size_t len,
494 loff_t *ppos)
495{
496 if (len) {
497 if (!nowayout) {
498 size_t i;
499
500 /* In case it was set long ago */
501 expect_close = 0;
502
503 for (i = 0; i != len; i++) {
504 char c;
505
506 if (get_user(c, buf + i))
507 return -EFAULT;
508 if (c == 'V')
509 expect_close = 42;
510 }
511 }
512 pcwd_keepalive();
513 }
514 return len;
515}
516
517static int pcwd_open(struct inode *inode, struct file *file)
518{
519 if (!atomic_dec_and_test(&open_allowed) ) {
520 atomic_inc( &open_allowed );
521 return -EBUSY;
522 }
523
524 if (nowayout)
525 __module_get(THIS_MODULE);
526
527 /* Activate */
528 pcwd_start();
529 pcwd_keepalive();
530 return nonseekable_open(inode, file);
531}
532
533static int pcwd_close(struct inode *inode, struct file *file)
534{
535 if (expect_close == 42) {
536 pcwd_stop();
537 } else {
538 printk(KERN_CRIT PFX "Unexpected close, not stopping watchdog!\n");
539 pcwd_keepalive();
540 }
541 expect_close = 0;
542 atomic_inc( &open_allowed );
543 return 0;
544}
545
546/*
547 * /dev/temperature handling
548 */
549
550static ssize_t pcwd_temp_read(struct file *file, char __user *buf, size_t count,
551 loff_t *ppos)
552{
553 int temperature;
554
555 if (pcwd_get_temperature(&temperature))
556 return -EFAULT;
557
558 if (copy_to_user(buf, &temperature, 1))
559 return -EFAULT;
560
561 return 1;
562}
563
564static int pcwd_temp_open(struct inode *inode, struct file *file)
565{
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100566 if (!pcwd_private.supports_temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return -ENODEV;
568
569 return nonseekable_open(inode, file);
570}
571
572static int pcwd_temp_close(struct inode *inode, struct file *file)
573{
574 return 0;
575}
576
577/*
578 * Notify system
579 */
580
581static int pcwd_notify_sys(struct notifier_block *this, unsigned long code, void *unused)
582{
583 if (code==SYS_DOWN || code==SYS_HALT) {
584 /* Turn the WDT off */
585 pcwd_stop();
586 }
587
588 return NOTIFY_DONE;
589}
590
591/*
592 * Kernel Interfaces
593 */
594
595static struct file_operations pcwd_fops = {
596 .owner = THIS_MODULE,
597 .llseek = no_llseek,
598 .write = pcwd_write,
599 .ioctl = pcwd_ioctl,
600 .open = pcwd_open,
601 .release = pcwd_close,
602};
603
604static struct miscdevice pcwd_miscdev = {
605 .minor = WATCHDOG_MINOR,
606 .name = "watchdog",
607 .fops = &pcwd_fops,
608};
609
610static struct file_operations pcwd_temp_fops = {
611 .owner = THIS_MODULE,
612 .llseek = no_llseek,
613 .read = pcwd_temp_read,
614 .open = pcwd_temp_open,
615 .release = pcwd_temp_close,
616};
617
618static struct miscdevice temp_miscdev = {
619 .minor = TEMP_MINOR,
620 .name = "temperature",
621 .fops = &pcwd_temp_fops,
622};
623
624static struct notifier_block pcwd_notifier = {
625 .notifier_call = pcwd_notify_sys,
626};
627
628/*
629 * Init & exit routines
630 */
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632static inline int get_revision(void)
633{
634 int r = PCWD_REVISION_C;
635
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100636 spin_lock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* REV A cards use only 2 io ports; test
638 * presumes a floating bus reads as 0xff. */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100639 if ((inb(pcwd_private.io_addr + 2) == 0xFF) ||
640 (inb(pcwd_private.io_addr + 3) == 0xFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 r=PCWD_REVISION_A;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100642 spin_unlock(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 return r;
645}
646
647static inline char *get_firmware(void)
648{
649 int one, ten, hund, minor;
650 char *ret;
651
652 ret = kmalloc(6, GFP_KERNEL);
653 if(ret == NULL)
654 return NULL;
655
656 if (set_command_mode()) {
657 one = send_isa_command(CMD_ISA_VERSION_INTEGER);
658 ten = send_isa_command(CMD_ISA_VERSION_TENTH);
659 hund = send_isa_command(CMD_ISA_VERSION_HUNDRETH);
660 minor = send_isa_command(CMD_ISA_VERSION_MINOR);
661 sprintf(ret, "%c.%c%c%c", one, ten, hund, minor);
662 }
663 else
664 sprintf(ret, "ERROR");
665
666 unset_command_mode();
667 return(ret);
668}
669
670static inline int get_option_switches(void)
671{
672 int rv=0;
673
674 if (set_command_mode()) {
675 /* Get switch settings */
676 rv = send_isa_command(CMD_ISA_SWITCH_SETTINGS);
677 }
678
679 unset_command_mode();
680 return(rv);
681}
682
683static int __devinit pcwatchdog_init(int base_addr)
684{
685 int ret;
686 char *firmware;
687 int option_switches;
688
689 cards_found++;
690 if (cards_found == 1)
691 printk(KERN_INFO PFX "v%s Ken Hollis (kenji@bitgate.com)\n", WD_VER);
692
693 if (cards_found > 1) {
694 printk(KERN_ERR PFX "This driver only supports 1 device\n");
695 return -ENODEV;
696 }
697
698 if (base_addr == 0x0000) {
699 printk(KERN_ERR PFX "No I/O-Address for card detected\n");
700 return -ENODEV;
701 }
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100702 pcwd_private.io_addr = base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 /* Check card's revision */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100705 pcwd_private.revision = get_revision();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100707 if (!request_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4, "PCWD")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 printk(KERN_ERR PFX "I/O address 0x%04x already in use\n",
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100709 pcwd_private.io_addr);
710 pcwd_private.io_addr = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return -EIO;
712 }
713
714 /* Initial variables */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100715 pcwd_private.supports_temp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 temp_panic = 0;
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100717 pcwd_private.boot_status = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 /* get the boot_status */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100720 pcwd_get_status(&pcwd_private.boot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 /* clear the "card caused reboot" flag */
723 pcwd_clear_status();
724
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100725 init_timer(&pcwd_private.timer);
726 pcwd_private.timer.function = pcwd_timer_ping;
727 pcwd_private.timer.data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 /* Disable the board */
730 pcwd_stop();
731
732 /* Check whether or not the card supports the temperature device */
Wim Van Sebroeck85875212006-01-09 21:59:39 +0100733 pcwd_check_temperature_support();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /* Get some extra info from the hardware (in command/debug/diag mode) */
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100736 if (pcwd_private.revision == PCWD_REVISION_A)
737 printk(KERN_INFO PFX "ISA-PC Watchdog (REV.A) detected at port 0x%04x\n", pcwd_private.io_addr);
738 else if (pcwd_private.revision == PCWD_REVISION_C) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 firmware = get_firmware();
740 printk(KERN_INFO PFX "ISA-PC Watchdog (REV.C) detected at port 0x%04x (Firmware version: %s)\n",
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100741 pcwd_private.io_addr, firmware);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 kfree(firmware);
743 option_switches = get_option_switches();
744 printk(KERN_INFO PFX "Option switches (0x%02x): Temperature Reset Enable=%s, Power On Delay=%s\n",
745 option_switches,
746 ((option_switches & 0x10) ? "ON" : "OFF"),
747 ((option_switches & 0x08) ? "ON" : "OFF"));
748
749 /* Reprogram internal heartbeat to 2 seconds */
750 if (set_command_mode()) {
751 send_isa_command(CMD_ISA_DELAY_TIME_2SECS);
752 unset_command_mode();
753 }
754 } else {
755 /* Should NEVER happen, unless get_revision() fails. */
756 printk(KERN_INFO PFX "Unable to get revision\n");
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100757 release_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4);
758 pcwd_private.io_addr = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return -1;
760 }
761
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100762 if (pcwd_private.supports_temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 printk(KERN_INFO PFX "Temperature Option Detected\n");
764
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100765 if (pcwd_private.boot_status & WDIOF_CARDRESET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 printk(KERN_INFO PFX "Previous reboot was caused by the card\n");
767
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100768 if (pcwd_private.boot_status & WDIOF_OVERHEAT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 printk(KERN_EMERG PFX "Card senses a CPU Overheat. Panicking!\n");
770 printk(KERN_EMERG PFX "CPU Overheat\n");
771 }
772
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100773 if (pcwd_private.boot_status == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 printk(KERN_INFO PFX "No previous trip detected - Cold boot or reset\n");
775
776 /* Check that the heartbeat value is within it's range ; if not reset to the default */
Wim Van Sebroeckfd41fa62005-12-10 14:22:37 +0100777 if (pcwd_set_heartbeat(heartbeat)) {
778 pcwd_set_heartbeat(WATCHDOG_HEARTBEAT);
779 printk(KERN_INFO PFX "heartbeat value must be 2<=heartbeat<=7200, using %d\n",
780 WATCHDOG_HEARTBEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
783 ret = register_reboot_notifier(&pcwd_notifier);
784 if (ret) {
785 printk(KERN_ERR PFX "cannot register reboot notifier (err=%d)\n",
786 ret);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100787 release_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4);
788 pcwd_private.io_addr = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return ret;
790 }
791
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100792 if (pcwd_private.supports_temp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 ret = misc_register(&temp_miscdev);
794 if (ret) {
795 printk(KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
796 TEMP_MINOR, ret);
797 unregister_reboot_notifier(&pcwd_notifier);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100798 release_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4);
799 pcwd_private.io_addr = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return ret;
801 }
802 }
803
804 ret = misc_register(&pcwd_miscdev);
805 if (ret) {
806 printk(KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
807 WATCHDOG_MINOR, ret);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100808 if (pcwd_private.supports_temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 misc_deregister(&temp_miscdev);
810 unregister_reboot_notifier(&pcwd_notifier);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100811 release_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4);
812 pcwd_private.io_addr = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return ret;
814 }
815
816 printk(KERN_INFO PFX "initialized. heartbeat=%d sec (nowayout=%d)\n",
817 heartbeat, nowayout);
818
819 return 0;
820}
821
822static void __devexit pcwatchdog_exit(void)
823{
824 /* Disable the board */
825 if (!nowayout)
826 pcwd_stop();
827
828 /* Deregister */
829 misc_deregister(&pcwd_miscdev);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100830 if (pcwd_private.supports_temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 misc_deregister(&temp_miscdev);
832 unregister_reboot_notifier(&pcwd_notifier);
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100833 release_region(pcwd_private.io_addr, (pcwd_private.revision == PCWD_REVISION_A) ? 2 : 4);
834 pcwd_private.io_addr = 0x0000;
Wim Van Sebroeckf1c3a052005-12-10 14:36:24 +0100835 cards_found--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
838/*
839 * The ISA cards have a heartbeat bit in one of the registers, which
840 * register is card dependent. The heartbeat bit is monitored, and if
841 * found, is considered proof that a Berkshire card has been found.
842 * The initial rate is once per second at board start up, then twice
843 * per second for normal operation.
844 */
845static int __init pcwd_checkcard(int base_addr)
846{
847 int port0, last_port0; /* Reg 0, in case it's REV A */
848 int port1, last_port1; /* Register 1 for REV C cards */
849 int i;
850 int retval;
851
852 if (!request_region (base_addr, 4, "PCWD")) {
853 printk (KERN_INFO PFX "Port 0x%04x unavailable\n", base_addr);
854 return 0;
855 }
856
857 retval = 0;
858
859 port0 = inb_p(base_addr); /* For REV A boards */
860 port1 = inb_p(base_addr + 1); /* For REV C boards */
861 if (port0 != 0xff || port1 != 0xff) {
862 /* Not an 'ff' from a floating bus, so must be a card! */
863 for (i = 0; i < 4; ++i) {
864
865 msleep(500);
866
867 last_port0 = port0;
868 last_port1 = port1;
869
870 port0 = inb_p(base_addr);
871 port1 = inb_p(base_addr + 1);
872
873 /* Has either hearbeat bit changed? */
874 if ((port0 ^ last_port0) & WD_HRTBT ||
875 (port1 ^ last_port1) & WD_REVC_HRBT) {
876 retval = 1;
877 break;
878 }
879 }
880 }
881 release_region (base_addr, 4);
882
883 return retval;
884}
885
886/*
887 * These are the auto-probe addresses available.
888 *
889 * Revision A only uses ports 0x270 and 0x370. Revision C introduced 0x350.
890 * Revision A has an address range of 2 addresses, while Revision C has 4.
891 */
892static int pcwd_ioports[] = { 0x270, 0x350, 0x370, 0x000 };
893
894static int __init pcwd_init_module(void)
895{
896 int i, found = 0;
897
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100898 spin_lock_init(&pcwd_private.io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 for (i = 0; pcwd_ioports[i] != 0; i++) {
901 if (pcwd_checkcard(pcwd_ioports[i])) {
902 if (!(pcwatchdog_init(pcwd_ioports[i])))
903 found++;
904 }
905 }
906
907 if (!found) {
908 printk (KERN_INFO PFX "No card detected, or port not available\n");
909 return -ENODEV;
910 }
911
912 return 0;
913}
914
915static void __exit pcwd_cleanup_module(void)
916{
Wim Van Sebroecka2be8782006-01-09 21:53:33 +0100917 if (pcwd_private.io_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 pcwatchdog_exit();
919 return;
920}
921
922module_init(pcwd_init_module);
923module_exit(pcwd_cleanup_module);
924
925MODULE_AUTHOR("Ken Hollis <kenji@bitgate.com>");
926MODULE_DESCRIPTION("Berkshire ISA-PC Watchdog driver");
927MODULE_LICENSE("GPL");
928MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
929MODULE_ALIAS_MISCDEV(TEMP_MINOR);