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

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