wdt.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:13k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Industrial Computer Source WDT500/501 driver for Linux 2.1.x
  3.  *
  4.  * (c) Copyright 1996-1997 Alan Cox <alan@redhat.com>, All Rights Reserved.
  5.  * http://www.redhat.com
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version
  10.  * 2 of the License, or (at your option) any later version.
  11.  *
  12.  * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide 
  13.  * warranty for any of this software. This material is provided 
  14.  * "AS-IS" and at no charge.
  15.  *
  16.  * (c) Copyright 1995    Alan Cox <alan@lxorguk.ukuu.org.uk>
  17.  *
  18.  * Release 0.08.
  19.  *
  20.  * Fixes
  21.  * Dave Gregorich : Modularisation and minor bugs
  22.  * Alan Cox : Added the watchdog ioctl() stuff
  23.  * Alan Cox : Fixed the reboot problem (as noted by
  24.  * Matt Crocker).
  25.  * Alan Cox : Added wdt= boot option
  26.  * Alan Cox : Cleaned up copy/user stuff
  27.  * Tim Hockin : Added insmod parameters, comment cleanup
  28.  * Parameterized timeout
  29.  * Tigran Aivazian : Restructured wdt_init() to handle failures
  30.  * Joel Becker : Added WDIOC_GET/SETTIMEOUT
  31.  * Matt Domsch : Added nowayout module option
  32.  */
  33. #include <linux/config.h>
  34. #include <linux/module.h>
  35. #include <linux/version.h>
  36. #include <linux/types.h>
  37. #include <linux/errno.h>
  38. #include <linux/kernel.h>
  39. #include <linux/sched.h>
  40. #include <linux/smp_lock.h>
  41. #include <linux/miscdevice.h>
  42. #include <linux/watchdog.h>
  43. #include "wd501p.h"
  44. #include <linux/slab.h>
  45. #include <linux/ioport.h>
  46. #include <linux/fcntl.h>
  47. #include <asm/io.h>
  48. #include <asm/uaccess.h>
  49. #include <asm/system.h>
  50. #include <linux/notifier.h>
  51. #include <linux/reboot.h>
  52. #include <linux/init.h>
  53. static unsigned long wdt_is_open;
  54. static int expect_close;
  55. /*
  56.  * You must set these - there is no sane way to probe for this board.
  57.  * You can use wdt=x,y to set these now.
  58.  */
  59.  
  60. static int io=0x240;
  61. static int irq=11;
  62. /* Default margin */
  63. #define WD_TIMO (100*60) /* 1 minute */
  64. static int wd_margin = WD_TIMO;
  65. #ifdef CONFIG_WATCHDOG_NOWAYOUT
  66. static int nowayout = 1;
  67. #else
  68. static int nowayout = 0;
  69. #endif
  70. MODULE_PARM(nowayout,"i");
  71. MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
  72. #ifndef MODULE
  73. /**
  74.  * wdt_setup:
  75.  * @str: command line string
  76.  *
  77.  * Setup options. The board isn't really probe-able so we have to
  78.  * get the user to tell us the configuration. Sane people build it 
  79.  * modular but the others come here.
  80.  */
  81.  
  82. static int __init wdt_setup(char *str)
  83. {
  84. int ints[4];
  85. str = get_options (str, ARRAY_SIZE(ints), ints);
  86. if (ints[0] > 0)
  87. {
  88. io = ints[1];
  89. if(ints[0] > 1)
  90. irq = ints[2];
  91. }
  92. return 1;
  93. }
  94. __setup("wdt=", wdt_setup);
  95. #endif /* !MODULE */
  96. MODULE_PARM(io, "i");
  97. MODULE_PARM_DESC(io, "WDT io port (default=0x240)");
  98. MODULE_PARM(irq, "i");
  99. MODULE_PARM_DESC(irq, "WDT irq (default=11)");
  100.  
  101. /*
  102.  * Programming support
  103.  */
  104.  
  105. static void wdt_ctr_mode(int ctr, int mode)
  106. {
  107. ctr<<=6;
  108. ctr|=0x30;
  109. ctr|=(mode<<1);
  110. outb_p(ctr, WDT_CR);
  111. }
  112. static void wdt_ctr_load(int ctr, int val)
  113. {
  114. outb_p(val&0xFF, WDT_COUNT0+ctr);
  115. outb_p(val>>8, WDT_COUNT0+ctr);
  116. }
  117. /*
  118.  * Kernel methods.
  119.  */
  120.  
  121.  
  122. /**
  123.  * wdt_status:
  124.  *
  125.  * Extract the status information from a WDT watchdog device. There are
  126.  * several board variants so we have to know which bits are valid. Some
  127.  * bits default to one and some to zero in order to be maximally painful.
  128.  *
  129.  * we then map the bits onto the status ioctl flags.
  130.  */
  131.  
  132. static int wdt_status(void)
  133. {
  134. /*
  135.  * Status register to bit flags
  136.  */
  137.  
  138. int flag=0;
  139. unsigned char status=inb_p(WDT_SR);
  140. status|=FEATUREMAP1;
  141. status&=~FEATUREMAP2;
  142. if(!(status&WDC_SR_TGOOD))
  143. flag|=WDIOF_OVERHEAT;
  144. if(!(status&WDC_SR_PSUOVER))
  145. flag|=WDIOF_POWEROVER;
  146. if(!(status&WDC_SR_PSUUNDR))
  147. flag|=WDIOF_POWERUNDER;
  148. if(!(status&WDC_SR_FANGOOD))
  149. flag|=WDIOF_FANFAULT;
  150. if(status&WDC_SR_ISOI0)
  151. flag|=WDIOF_EXTERN1;
  152. if(status&WDC_SR_ISII1)
  153. flag|=WDIOF_EXTERN2;
  154. return flag;
  155. }
  156. /**
  157.  * wdt_interrupt:
  158.  * @irq: Interrupt number
  159.  * @dev_id: Unused as we don't allow multiple devices.
  160.  * @regs: Unused.
  161.  *
  162.  * Handle an interrupt from the board. These are raised when the status
  163.  * map changes in what the board considers an interesting way. That means
  164.  * a failure condition occuring.
  165.  */
  166.  
  167. void wdt_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  168. {
  169. /*
  170.  * Read the status register see what is up and
  171.  * then printk it. 
  172.  */
  173.  
  174. unsigned char status=inb_p(WDT_SR);
  175. status|=FEATUREMAP1;
  176. status&=~FEATUREMAP2;
  177. printk(KERN_CRIT "WDT status %dn", status);
  178. if(!(status&WDC_SR_TGOOD))
  179. printk(KERN_CRIT "Overheat alarm.(%d)n",inb_p(WDT_RT));
  180. if(!(status&WDC_SR_PSUOVER))
  181. printk(KERN_CRIT "PSU over voltage.n");
  182. if(!(status&WDC_SR_PSUUNDR))
  183. printk(KERN_CRIT "PSU under voltage.n");
  184. if(!(status&WDC_SR_FANGOOD))
  185. printk(KERN_CRIT "Possible fan fault.n");
  186. if(!(status&WDC_SR_WCCR))
  187. #ifdef SOFTWARE_REBOOT
  188. #ifdef ONLY_TESTING
  189. printk(KERN_CRIT "Would Reboot.n");
  190. #else
  191. printk(KERN_CRIT "Initiating system reboot.n");
  192. machine_restart(NULL);
  193. #endif
  194. #else
  195. printk(KERN_CRIT "Reset in 5ms.n");
  196. #endif
  197. }
  198. /**
  199.  * wdt_ping:
  200.  *
  201.  * Reload counter one with the watchdog timeout. We don't bother reloading
  202.  * the cascade counter. 
  203.  */
  204.  
  205. static void wdt_ping(void)
  206. {
  207. /* Write a watchdog value */
  208. inb_p(WDT_DC);
  209. wdt_ctr_mode(1,2);
  210. wdt_ctr_load(1,wd_margin); /* Timeout */
  211. outb_p(0, WDT_DC);
  212. }
  213. /**
  214.  * wdt_write:
  215.  * @file: file handle to the watchdog
  216.  * @buf: buffer to write (unused as data does not matter here 
  217.  * @count: count of bytes
  218.  * @ppos: pointer to the position to write. No seeks allowed
  219.  *
  220.  * A write to a watchdog device is defined as a keepalive signal. Any
  221.  * write of data will do, as we we don't define content meaning.
  222.  */
  223.  
  224. static ssize_t wdt_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
  225. {
  226. /*  Can't seek (pwrite) on this device  */
  227. if (ppos != &file->f_pos)
  228. return -ESPIPE;
  229. if(count)
  230. {
  231. if (!nowayout) {
  232. size_t i;
  233. /* In case it was set long ago */
  234. expect_close = 0;
  235. for (i = 0; i != count; i++) {
  236. char c;
  237. if (get_user(c, buf + i))
  238. return -EFAULT;
  239. if (c == 'V')
  240. expect_close = 1;
  241. }
  242. }
  243. wdt_ping();
  244. return 1;
  245. }
  246. return 0;
  247. }
  248. /**
  249.  * wdt_read:
  250.  * @file: file handle to the watchdog board
  251.  * @buf: buffer to write 1 byte into
  252.  * @count: length of buffer
  253.  * @ptr: offset (no seek allowed)
  254.  *
  255.  * Read reports the temperature in degrees Fahrenheit. The API is in
  256.  * farenheit. It was designed by an imperial measurement luddite.
  257.  */
  258.  
  259. static ssize_t wdt_read(struct file *file, char *buf, size_t count, loff_t *ptr)
  260. {
  261. unsigned short c=inb_p(WDT_RT);
  262. unsigned char cp;
  263. /*  Can't seek (pread) on this device  */
  264. if (ptr != &file->f_pos)
  265. return -ESPIPE;
  266. switch(MINOR(file->f_dentry->d_inode->i_rdev))
  267. {
  268. case TEMP_MINOR:
  269. c*=11;
  270. c/=15;
  271. cp=c+7;
  272. if(copy_to_user(buf,&cp,1))
  273. return -EFAULT;
  274. return 1;
  275. default:
  276. return -EINVAL;
  277. }
  278. }
  279. /**
  280.  * wdt_ioctl:
  281.  * @inode: inode of the device
  282.  * @file: file handle to the device
  283.  * @cmd: watchdog command
  284.  * @arg: argument pointer
  285.  *
  286.  * The watchdog API defines a common set of functions for all watchdogs
  287.  * according to their available features. We only actually usefully support
  288.  * querying capabilities and current status. 
  289.  */
  290.  
  291. static int wdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  292. unsigned long arg)
  293. {
  294. int new_margin;
  295. static struct watchdog_info ident=
  296. {
  297. WDIOF_OVERHEAT|WDIOF_POWERUNDER|WDIOF_POWEROVER
  298. |WDIOF_EXTERN1|WDIOF_EXTERN2|WDIOF_FANFAULT
  299. |WDIOF_SETTIMEOUT|WDIOF_MAGICCLOSE,
  300. 1,
  301. "WDT500/501"
  302. };
  303. ident.options&=WDT_OPTION_MASK; /* Mask down to the card we have */
  304. switch(cmd)
  305. {
  306. default:
  307. return -ENOTTY;
  308. case WDIOC_GETSUPPORT:
  309. return copy_to_user((struct watchdog_info *)arg, &ident, sizeof(ident))?-EFAULT:0;
  310. case WDIOC_GETSTATUS:
  311. return put_user(wdt_status(),(int *)arg);
  312. case WDIOC_GETBOOTSTATUS:
  313. return put_user(0, (int *)arg);
  314. case WDIOC_KEEPALIVE:
  315. wdt_ping();
  316. return 0;
  317. case WDIOC_SETTIMEOUT:
  318. if (get_user(new_margin, (int *)arg))
  319. return -EFAULT;
  320. /* Arbitrary, can't find the card's limits */
  321. if ((new_margin < 0) || (new_margin > 60))
  322. return -EINVAL;
  323. wd_margin = new_margin * 100;
  324. wdt_ping();
  325. /* Fall */
  326. case WDIOC_GETTIMEOUT:
  327. return put_user(wd_margin / 100, (int *)arg);
  328. }
  329. }
  330. /**
  331.  * wdt_open:
  332.  * @inode: inode of device
  333.  * @file: file handle to device
  334.  *
  335.  * One of our two misc devices has been opened. The watchdog device is
  336.  * single open and on opening we load the counters. Counter zero is a 
  337.  * 100Hz cascade, into counter 1 which downcounts to reboot. When the
  338.  * counter triggers counter 2 downcounts the length of the reset pulse
  339.  * which set set to be as long as possible. 
  340.  */
  341.  
  342. static int wdt_open(struct inode *inode, struct file *file)
  343. {
  344. switch(MINOR(inode->i_rdev))
  345. {
  346. case WATCHDOG_MINOR:
  347. if(test_and_set_bit(0, &wdt_is_open))
  348. return -EBUSY;
  349. /*
  350.  * Activate 
  351.  */
  352.  
  353. wdt_is_open=1;
  354. inb_p(WDT_DC); /* Disable */
  355. wdt_ctr_mode(0,3);
  356. wdt_ctr_mode(1,2);
  357. wdt_ctr_mode(2,0);
  358. wdt_ctr_load(0, 8948); /* count at 100Hz */
  359. wdt_ctr_load(1,wd_margin); /* Timeout 120 seconds */
  360. wdt_ctr_load(2,65535);
  361. outb_p(0, WDT_DC); /* Enable */
  362. return 0;
  363. case TEMP_MINOR:
  364. return 0;
  365. default:
  366. return -ENODEV;
  367. }
  368. }
  369. /**
  370.  * wdt_close:
  371.  * @inode: inode to board
  372.  * @file: file handle to board
  373.  *
  374.  * The watchdog has a configurable API. There is a religious dispute 
  375.  * between people who want their watchdog to be able to shut down and 
  376.  * those who want to be sure if the watchdog manager dies the machine
  377.  * reboots. In the former case we disable the counters, in the latter
  378.  * case you have to open it again very soon.
  379.  */
  380.  
  381. static int wdt_release(struct inode *inode, struct file *file)
  382. {
  383. if(MINOR(inode->i_rdev)==WATCHDOG_MINOR)
  384. {
  385. if (expect_close) {
  386. inb_p(WDT_DC); /* Disable counters */
  387. wdt_ctr_load(2,0); /* 0 length reset pulses now */
  388. } else {
  389. printk(KERN_CRIT "wdt: WDT device closed unexpectedly.  WDT will not stop!n");
  390. }
  391. clear_bit(0, &wdt_is_open);
  392. }
  393. return 0;
  394. }
  395. /**
  396.  * notify_sys:
  397.  * @this: our notifier block
  398.  * @code: the event being reported
  399.  * @unused: unused
  400.  *
  401.  * Our notifier is called on system shutdowns. We want to turn the card
  402.  * off at reboot otherwise the machine will reboot again during memory
  403.  * test or worse yet during the following fsck. This would suck, in fact
  404.  * trust me - if it happens it does suck.
  405.  */
  406. static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
  407. void *unused)
  408. {
  409. if(code==SYS_DOWN || code==SYS_HALT)
  410. {
  411. /* Turn the card off */
  412. inb_p(WDT_DC);
  413. wdt_ctr_load(2,0);
  414. }
  415. return NOTIFY_DONE;
  416. }
  417.  
  418. /*
  419.  * Kernel Interfaces
  420.  */
  421.  
  422.  
  423. static struct file_operations wdt_fops = {
  424. owner: THIS_MODULE,
  425. llseek: no_llseek,
  426. read: wdt_read,
  427. write: wdt_write,
  428. ioctl: wdt_ioctl,
  429. open: wdt_open,
  430. release: wdt_release,
  431. };
  432. static struct miscdevice wdt_miscdev=
  433. {
  434. WATCHDOG_MINOR,
  435. "watchdog",
  436. &wdt_fops
  437. };
  438. #ifdef CONFIG_WDT_501
  439. static struct miscdevice temp_miscdev=
  440. {
  441. TEMP_MINOR,
  442. "temperature",
  443. &wdt_fops
  444. };
  445. #endif
  446. /*
  447.  * The WDT card needs to learn about soft shutdowns in order to
  448.  * turn the timebomb registers off. 
  449.  */
  450.  
  451. static struct notifier_block wdt_notifier=
  452. {
  453. wdt_notify_sys,
  454. NULL,
  455. 0
  456. };
  457. /**
  458.  * cleanup_module:
  459.  *
  460.  * Unload the watchdog. You cannot do this with any file handles open.
  461.  * If your watchdog is set to continue ticking on close and you unload
  462.  * it, well it keeps ticking. We won't get the interrupt but the board
  463.  * will not touch PC memory so all is fine. You just have to load a new
  464.  * module in 60 seconds or reboot.
  465.  */
  466.  
  467. static void __exit wdt_exit(void)
  468. {
  469. misc_deregister(&wdt_miscdev);
  470. #ifdef CONFIG_WDT_501
  471. misc_deregister(&temp_miscdev);
  472. #endif
  473. unregister_reboot_notifier(&wdt_notifier);
  474. release_region(io,8);
  475. free_irq(irq, NULL);
  476. }
  477. /**
  478.  *  wdt_init:
  479.  *
  480.  * Set up the WDT watchdog board. All we have to do is grab the
  481.  * resources we require and bitch if anyone beat us to them.
  482.  * The open() function will actually kick the board off.
  483.  */
  484.  
  485. static int __init wdt_init(void)
  486. {
  487. int ret;
  488. ret = misc_register(&wdt_miscdev);
  489. if (ret) {
  490. printk(KERN_ERR "wdt: can't misc_register on minor=%dn", WATCHDOG_MINOR);
  491. goto out;
  492. }
  493. ret = request_irq(irq, wdt_interrupt, SA_INTERRUPT, "wdt501p", NULL);
  494. if(ret) {
  495. printk(KERN_ERR "wdt: IRQ %d is not free.n", irq);
  496. goto outmisc;
  497. }
  498. if (!request_region(io, 8, "wdt501p")) {
  499. printk(KERN_ERR "wdt: IO %X is not free.n", io);
  500. ret = -EBUSY;
  501. goto outirq;
  502. }
  503. ret = register_reboot_notifier(&wdt_notifier);
  504. if(ret) {
  505. printk(KERN_ERR "wdt: can't register reboot notifier (err=%d)n", ret);
  506. goto outreg;
  507. }
  508. #ifdef CONFIG_WDT_501
  509. ret = misc_register(&temp_miscdev);
  510. if (ret) {
  511. printk(KERN_ERR "wdt: can't misc_register (temp) on minor=%dn", TEMP_MINOR);
  512. goto outrbt;
  513. }
  514. #endif
  515. ret = 0;
  516. printk(KERN_INFO "WDT500/501-P driver 0.07 at %X (Interrupt %d)n", io, irq);
  517. out:
  518. return ret;
  519. #ifdef CONFIG_WDT_501
  520. outrbt:
  521. unregister_reboot_notifier(&wdt_notifier);
  522. #endif
  523. outreg:
  524. release_region(io,8);
  525. outirq:
  526. free_irq(irq, NULL);
  527. outmisc:
  528. misc_deregister(&wdt_miscdev);
  529. goto out;
  530. }
  531. module_init(wdt_init);
  532. module_exit(wdt_exit);
  533. MODULE_AUTHOR("Alan Cox");
  534. MODULE_DESCRIPTION("Driver for ISA ICS watchdog cards (WDT500/501)");
  535. MODULE_LICENSE("GPL");
  536. EXPORT_NO_SYMBOLS;