wdt.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:12k
源码类别:

嵌入式Linux

开发平台:

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