Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | /* * PC Watchdog Driver * by Ken Hollis (khollis@bitgate.com) * * Permission granted from Simon Machell (73244.1270@compuserve.com) * Written for the Linux Kernel, and GPLed by Ken Hollis * * 960107 Added request_region routines, modulized the whole thing. * 960108 Fixed end-of-file pointer (Thanks to Dan Hollis), added * WD_TIMEOUT define. * 960216 Added eof marker on the file, and changed verbose messages. * 960716 Made functional and cosmetic changes to the source for * inclusion in Linux 2.0.x kernels, thanks to Alan Cox. * 960717 Removed read/seek routines, replaced with ioctl. Also, added * check_region command due to Alan's suggestion. * 960821 Made changes to compile in newer 2.0.x kernels. Added * "cold reboot sense" entry. * 960825 Made a few changes to code, deleted some defines and made * typedefs to replace them. Made heartbeat reset only available * via ioctl, and removed the write routine. * 960828 Added new items for PC Watchdog Rev.C card. * 960829 Changed around all of the IOCTLs, added new features, * added watchdog disable/re-enable routines. Added firmware * version reporting. Added read routine for temperature. * Removed some extra defines, added an autodetect Revision * routine. * 961006 Revised some documentation, fixed some cosmetic bugs. Made * drivers to panic the system if it's overheating at bootup. * 961118 Changed some verbiage on some of the output, tidied up * code bits, and added compatibility to 2.1.x. * 970912 Enabled board on open and disable on close. * 971107 Took account of recent VFS changes (broke read). * 971210 Disable board on initialisation in case board already ticking. * 971222 Changed open/close for temperature handling * Michael Meskes <meskes@debian.org>. * 980112 Used minor numbers from include/linux/miscdevice.h */ #include <linux/module.h> #include <linux/types.h> #include <linux/errno.h> #include <linux/sched.h> #include <linux/tty.h> #include <linux/timer.h> #include <linux/config.h> #include <linux/kernel.h> #include <linux/wait.h> #include <linux/string.h> #include <linux/malloc.h> #include <linux/ioport.h> #include <linux/delay.h> #include <linux/miscdevice.h> #include <linux/fs.h> #include <linux/mm.h> #include <linux/watchdog.h> #include <linux/init.h> #include <asm/uaccess.h> #include <asm/io.h> /* * These are the auto-probe addresses available. * * Revision A only uses ports 0x270 and 0x370. Revision C introduced 0x350. * Revision A has an address range of 2 addresses, while Revision C has 3. */ static int pcwd_ioports[] = { 0x270, 0x350, 0x370, 0x000 }; #define WD_VER "1.0 (11/18/96)" /* * It should be noted that PCWD_REVISION_B was removed because A and B * are essentially the same types of card, with the exception that B * has temperature reporting. Since I didn't receive a Rev.B card, * the Rev.B card is not supported. (It's a good thing too, as they * are no longer in production.) */ #define PCWD_REVISION_A 1 #define PCWD_REVISION_C 2 #define WD_TIMEOUT 3 /* 1 1/2 seconds for a timeout */ /* * These are the defines for the PC Watchdog card, revision A. */ #define WD_WDRST 0x01 /* Previously reset state */ #define WD_T110 0x02 /* Temperature overheat sense */ #define WD_HRTBT 0x04 /* Heartbeat sense */ #define WD_RLY2 0x08 /* External relay triggered */ #define WD_SRLY2 0x80 /* Software external relay triggered */ static int current_readport, revision, temp_panic; static int is_open, initial_status, supports_temp, mode_debug; /* * PCWD_CHECKCARD * * This routine checks the "current_readport" to see if the card lies there. * If it does, it returns accordingly. */ __initfunc(static int pcwd_checkcard(void)) { int card_dat, prev_card_dat, found = 0, count = 0, done = 0; /* As suggested by Alan Cox - this is a safety measure. */ if (check_region(current_readport, 4)) { printk("pcwd: Port 0x%x unavailable.\n", current_readport); return 0; } card_dat = 0x00; prev_card_dat = 0x00; prev_card_dat = inb(current_readport); if (prev_card_dat == 0xFF) return 0; while(count < WD_TIMEOUT) { /* Read the raw card data from the port, and strip off the first 4 bits */ card_dat = inb_p(current_readport); card_dat &= 0x000F; /* Sleep 1/2 second (or 500000 microseconds :) */ mdelay(500); done = 0; /* If there's a heart beat in both instances, then this means we found our card. This also means that either the card was previously reset, or the computer was power-cycled. */ if ((card_dat & WD_HRTBT) && (prev_card_dat & WD_HRTBT) && (!done)) { found = 1; done = 1; break; } /* If the card data is exactly the same as the previous card data, it's safe to assume that we should check again. The manual says that the heart beat will change every second (or the bit will toggle), and this can be used to see if the card is there. If the card was powered up with a cold boot, then the card will not start blinking until 2.5 minutes after a reboot, so this bit will stay at 1. */ if ((card_dat == prev_card_dat) && (!done)) { count++; done = 1; } /* If the card data is toggling any bits, this means that the heart beat was detected, or something else about the card is set. */ if ((card_dat != prev_card_dat) && (!done)) { done = 1; found = 1; break; } /* Otherwise something else strange happened. */ if (!done) count++; } return((found) ? 1 : 0); } void pcwd_showprevstate(void) { int card_status = 0x0000; if (revision == PCWD_REVISION_A) initial_status = card_status = inb(current_readport); else initial_status = card_status = inb(current_readport + 1); if (revision == PCWD_REVISION_A) { if (card_status & WD_WDRST) printk("pcwd: Previous reboot was caused by the card.\n"); if (card_status & WD_T110) { printk("pcwd: Card senses a CPU Overheat. Panicking!\n"); panic("pcwd: CPU Overheat.\n"); } if ((!(card_status & WD_WDRST)) && (!(card_status & WD_T110))) printk("pcwd: Cold boot sense.\n"); } else { if (card_status & 0x01) printk("pcwd: Previous reboot was caused by the card.\n"); if (card_status & 0x04) { printk("pcwd: Card senses a CPU Overheat. Panicking!\n"); panic("pcwd: CPU Overheat.\n"); } if ((!(card_status & 0x01)) && (!(card_status & 0x04))) printk("pcwd: Cold boot sense.\n"); } } static void pcwd_send_heartbeat(void) { int wdrst_stat; wdrst_stat = inb_p(current_readport); wdrst_stat &= 0x0F; wdrst_stat |= WD_WDRST; if (revision == PCWD_REVISION_A) outb_p(wdrst_stat, current_readport + 1); else outb_p(wdrst_stat, current_readport); } static int pcwd_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg) { int i, cdat, rv; static struct watchdog_info ident= { /* FIXME: should set A/C here */ WDIOF_OVERHEAT|WDIOF_CARDRESET, 1, "PCWD." }; switch(cmd) { default: return -ENOIOCTLCMD; case WDIOC_GETSUPPORT: i = copy_to_user((void*)arg, &ident, sizeof(ident)); return i ? -EFAULT : 0; case WDIOC_GETSTATUS: cdat = inb(current_readport); rv = 0; if (revision == PCWD_REVISION_A) { if (cdat & WD_WDRST) rv |= WDIOF_CARDRESET; if (cdat & WD_T110) { rv |= WDIOF_OVERHEAT; if (temp_panic) panic("pcwd: Temperature overheat trip!\n"); } } else { if (cdat & 0x01) rv |= WDIOF_CARDRESET; if (cdat & 0x04) { rv |= WDIOF_OVERHEAT; if (temp_panic) panic("pcwd: Temperature overheat trip!\n"); } } if(put_user(rv, (int *) arg)) return -EFAULT; return 0; case WDIOC_GETBOOTSTATUS: rv = 0; if (revision == PCWD_REVISION_A) { if (initial_status & WD_WDRST) rv |= WDIOF_CARDRESET; if (initial_status & WD_T110) rv |= WDIOF_OVERHEAT; } else { if (initial_status & 0x01) rv |= WDIOF_CARDRESET; if (initial_status & 0x04) rv |= WDIOF_OVERHEAT; } if(put_user(rv, (int *) arg)) return -EFAULT; return 0; case WDIOC_GETTEMP: rv = 0; if ((supports_temp) && (mode_debug == 0)) { rv = inb(current_readport); if(put_user(rv, (int*) arg)) return -EFAULT; } else if(put_user(rv, (int*) arg)) return -EFAULT; return 0; case WDIOC_SETOPTIONS: if (revision == PCWD_REVISION_C) { if(copy_from_user(&rv, (int*) arg, sizeof(int))) return -EFAULT; if (rv & WDIOS_DISABLECARD) { outb_p(0xA5, current_readport + 3); outb_p(0xA5, current_readport + 3); cdat = inb_p(current_readport + 2); if ((cdat & 0x10) == 0) { printk("pcwd: Could not disable card.\n"); return -EIO; } return 0; } if (rv & WDIOS_ENABLECARD) { outb_p(0x00, current_readport + 3); cdat = inb_p(current_readport + 2); if (cdat & 0x10) { printk("pcwd: Could not enable card.\n"); return -EIO; } return 0; } if (rv & WDIOS_TEMPPANIC) { temp_panic = 1; } } return -EINVAL; case WDIOC_KEEPALIVE: pcwd_send_heartbeat(); return 0; } return 0; } static ssize_t pcwd_write(struct file *file, const char *buf, size_t len, loff_t *ppos) { /* Can't seek (pwrite) on this device */ if (ppos != &file->f_pos) return -ESPIPE; if (len) { pcwd_send_heartbeat(); return 1; } return 0; } static int pcwd_open(struct inode *ino, struct file *filep) { switch (MINOR(ino->i_rdev)) { case WATCHDOG_MINOR: if (is_open) return -EBUSY; MOD_INC_USE_COUNT; /* Enable the port */ if (revision == PCWD_REVISION_C) outb_p(0x00, current_readport + 3); is_open = 1; return(0); case TEMP_MINOR: MOD_INC_USE_COUNT; return(0); default: return (-ENODEV); } } static ssize_t pcwd_read(struct file *file, char *buf, size_t count, loff_t *ppos) { unsigned short c = inb(current_readport); unsigned char cp; /* Can't seek (pread) on this device */ if (ppos != &file->f_pos) return -ESPIPE; switch(MINOR(file->f_dentry->d_inode->i_rdev)) { case TEMP_MINOR: /* c is in celsius, we need fahrenheit */ cp = (c*9/5)+32; if(copy_to_user(buf, &cp, 1)) return -EFAULT; return 1; default: return -EINVAL; } } static int pcwd_close(struct inode *ino, struct file *filep) { MOD_DEC_USE_COUNT; if (MINOR(ino->i_rdev)==WATCHDOG_MINOR) { is_open = 0; #ifndef CONFIG_WATCHDOG_NOWAYOUT /* Disable the board */ if (revision == PCWD_REVISION_C) { outb_p(0xA5, current_readport + 3); outb_p(0xA5, current_readport + 3); } #endif } return 0; } static inline void get_support(void) { if (inb(current_readport) != 0xF0) supports_temp = 1; } static inline int get_revision(void) { if ((inb(current_readport + 2) == 0xFF) || (inb(current_readport + 3) == 0xFF)) return(PCWD_REVISION_A); return(PCWD_REVISION_C); } __initfunc(static int send_command(int cmd)) { int i; outb_p(cmd, current_readport + 2); mdelay(1); i = inb(current_readport); i = inb(current_readport); return(i); } static inline char *get_firmware(void) { int i, found = 0, count = 0, one, ten, hund, minor; char *ret; ret = kmalloc(6, GFP_KERNEL); while((count < 3) && (!found)) { outb_p(0x80, current_readport + 2); i = inb(current_readport); if (i == 0x00) found = 1; else if (i == 0xF3) outb_p(0x00, current_readport + 2); udelay(400L); count++; } if (found) { mode_debug = 1; one = send_command(0x81); ten = send_command(0x82); hund = send_command(0x83); minor = send_command(0x84); } if (found) sprintf(ret, "%c.%c%c%c", one, ten, hund, minor); else sprintf(ret, "ERROR"); return(ret); } static void debug_off(void) { outb_p(0x00, current_readport + 2); mode_debug = 0; } static struct file_operations pcwd_fops = { NULL, /* Seek */ pcwd_read, /* Read */ pcwd_write, /* Write */ NULL, /* Readdir */ NULL, /* Poll */ pcwd_ioctl, /* IOctl */ NULL, /* MMAP */ pcwd_open, /* Open */ NULL, /* flush */ pcwd_close, /* Release */ NULL, /* Fsync */ NULL, /* Fasync */ NULL, /* CheckMediaChange */ NULL, /* Revalidate */ NULL, /* Lock */ }; static struct miscdevice pcwd_miscdev = { WATCHDOG_MINOR, "watchdog", &pcwd_fops }; static struct miscdevice temp_miscdev = { TEMP_MINOR, "temperature", &pcwd_fops }; #ifdef MODULE int init_module(void) #else __initfunc(int pcwatchdog_init(void)) #endif { int i, found = 0; revision = PCWD_REVISION_A; printk("pcwd: v%s Ken Hollis (khollis@nurk.org)\n", WD_VER); /* Initial variables */ is_open = 0; supports_temp = 0; mode_debug = 0; temp_panic = 0; initial_status = 0x0000; #ifndef PCWD_BLIND for (i = 0; pcwd_ioports[i] != 0; i++) { current_readport = pcwd_ioports[i]; if (pcwd_checkcard()) { found = 1; break; } } if (!found) { printk("pcwd: No card detected, or port not available.\n"); return(-EIO); } #endif #ifdef PCWD_BLIND current_readport = PCWD_BLIND; #endif get_support(); revision = get_revision(); if (revision == PCWD_REVISION_A) printk("pcwd: PC Watchdog (REV.A) detected at port 0x%03x\n", current_readport); else if (revision == PCWD_REVISION_C) printk("pcwd: PC Watchdog (REV.C) detected at port 0x%03x (Firmware version: %s)\n", current_readport, get_firmware()); else { /* Should NEVER happen, unless get_revision() fails. */ printk("pcwd: Unable to get revision.\n"); return -1; } debug_off(); pcwd_showprevstate(); /* Disable the board */ if (revision == PCWD_REVISION_C) { outb_p(0xA5, current_readport + 3); outb_p(0xA5, current_readport + 3); } if (revision == PCWD_REVISION_A) request_region(current_readport, 2, "PCWD Rev.A (Berkshire)"); else request_region(current_readport, 4, "PCWD Rev.C (Berkshire)"); misc_register(&pcwd_miscdev); if (supports_temp) misc_register(&temp_miscdev); return 0; } #ifdef MODULE void cleanup_module(void) { /* Disable the board */ if (revision == PCWD_REVISION_C) { outb_p(0xA5, current_readport + 3); outb_p(0xA5, current_readport + 3); } misc_deregister(&pcwd_miscdev); if (supports_temp) misc_deregister(&temp_miscdev); release_region(current_readport, (revision == PCWD_REVISION_A) ? 2 : 4); } #endif |