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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * i810-tco 0.02: TCO timer driver for i810 chipsets
  3.  *
  4.  * (c) Copyright 2000 kernel concepts <nils@kernelconcepts.de>, All Rights Reserved.
  5.  * http://www.kernelconcepts.de
  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 kernel concepts nor Nils Faerber 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 2000 kernel concepts <nils@kernelconcepts.de>
  17.  * developed for
  18.  *                              Jentro AG, Haar/Munich (Germany)
  19.  *
  20.  * TCO timer driver for i810/i815 chipsets
  21.  * based on softdog.c by Alan Cox <alan@redhat.com>
  22.  *
  23.  * The TCO timer is implemented in the 82801AA (82801AB) chip,
  24.  * see intel documentation from http://developer.intel.com,
  25.  * order number 290655-003
  26.  *
  27.  *  20000710 Nils Faerber
  28.  * Initial Version 0.01
  29.  *  20000728 Nils Faerber
  30.  *      0.02 Fix for SMI_EN->TCO_EN bit, some cleanups
  31.  */
  32.  
  33. #include <linux/module.h>
  34. #include <linux/types.h>
  35. #include <linux/kernel.h>
  36. #include <linux/fs.h>
  37. #include <linux/mm.h>
  38. #include <linux/miscdevice.h>
  39. #include <linux/watchdog.h>
  40. #include <linux/reboot.h>
  41. #include <linux/init.h>
  42. #include <linux/pci.h>
  43. #include <linux/ioport.h>
  44. #include <asm/uaccess.h>
  45. #include <asm/io.h>
  46. #include "i810-tco.h"
  47. /* Just in case that the PCI vendor and device IDs are not yet defined */
  48. #ifndef PCI_DEVICE_ID_INTEL_82801AA_0
  49. #define PCI_DEVICE_ID_INTEL_82801AA_0 0x2410
  50. #endif
  51. /* Default expire timeout */
  52. #define TIMER_MARGIN 50 /* steps of 0.6sec, 2<n<64. Default is 30 seconds */
  53. static unsigned int ACPIBASE;
  54. static spinlock_t tco_lock; /* Guards the hardware */
  55. static int i810_margin = TIMER_MARGIN; /* steps of 0.6sec */
  56. MODULE_PARM (i810_margin, "i");
  57. /*
  58.  * Timer active flag
  59.  */
  60. static int timer_alive;
  61. static int boot_status;
  62. /*
  63.  * Some i810 specific functions
  64.  */
  65. /*
  66.  * Start the timer countdown
  67.  */
  68. static int tco_timer_start (void)
  69. {
  70. unsigned char val;
  71. spin_lock(&tco_lock);
  72. val = inb (TCO1_CNT + 1);
  73. val &= 0xf7;
  74. outb (val, TCO1_CNT + 1);
  75. val = inb (TCO1_CNT + 1);
  76. spin_unlock(&tco_lock);
  77. if (val & 0x08)
  78. return -1;
  79. return 0;
  80. }
  81. /*
  82.  * Stop the timer countdown
  83.  */
  84. static int tco_timer_stop (void)
  85. {
  86. unsigned char val;
  87. spin_lock(&tco_lock);
  88. val = inb (TCO1_CNT + 1);
  89. val |= 0x08;
  90. outb (val, TCO1_CNT + 1);
  91. val = inb (TCO1_CNT + 1);
  92. spin_unlock(&tco_lock);
  93. if ((val & 0x08) == 0)
  94. return -1;
  95. return 0;
  96. }
  97. /*
  98.  * Set the timer reload value
  99.  */
  100. static int tco_timer_settimer (unsigned char tmrval)
  101. {
  102. unsigned char val;
  103. /* from the specs: */
  104. /* "Values of 0h-3h are ignored and should not be attempted" */
  105. if (tmrval > 0x3f || tmrval < 0x03)
  106. return -1;
  107. spin_lock(&tco_lock);
  108. val = inb (TCO1_TMR);
  109. val &= 0xc0;
  110. val |= tmrval;
  111. outb (val, TCO1_TMR);
  112. val = inb (TCO1_TMR);
  113. spin_unlock(&tco_lock);
  114. if ((val & 0x3f) != tmrval)
  115. return -1;
  116. return 0;
  117. }
  118. /*
  119.  * Reload (trigger) the timer. Lock is needed so we dont reload it during
  120.  * a reprogramming event
  121.  */
  122.  
  123. static void tco_timer_reload (void)
  124. {
  125. spin_lock(&tco_lock);
  126. outb (0x01, TCO1_RLD);
  127. spin_unlock(&tco_lock);
  128. }
  129. /*
  130.  * Read the current timer value
  131.  */
  132. static unsigned char tco_timer_read (void)
  133. {
  134. return (inb (TCO1_RLD));
  135. }
  136. /*
  137.  * Allow only one person to hold it open
  138.  */
  139. static int i810tco_open (struct inode *inode, struct file *file)
  140. {
  141. if (timer_alive)
  142. return -EBUSY;
  143. /*
  144.  *      Reload and activate timer
  145.  */
  146. tco_timer_reload ();
  147. tco_timer_start ();
  148. timer_alive = 1;
  149. return 0;
  150. }
  151. static int i810tco_release (struct inode *inode, struct file *file)
  152. {
  153. /*
  154.  *      Shut off the timer.
  155.  */
  156. #ifndef CONFIG_WATCHDOG_NOWAYOUT
  157. tco_timer_stop ();
  158. timer_alive = 0;
  159. #endif
  160. return 0;
  161. }
  162. static ssize_t i810tco_write (struct file *file, const char *data,
  163.       size_t len, loff_t * ppos)
  164. {
  165. /*  Can't seek (pwrite) on this device  */
  166. if (ppos != &file->f_pos)
  167. return -ESPIPE;
  168. /*
  169.  *      Refresh the timer.
  170.  */
  171. if (len) {
  172. tco_timer_reload ();
  173. return 1;
  174. }
  175. return 0;
  176. }
  177. static int i810tco_ioctl (struct inode *inode, struct file *file,
  178.   unsigned int cmd, unsigned long arg)
  179. {
  180. int new_margin, u_margin;
  181. static struct watchdog_info ident = {
  182. WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
  183. 0,
  184. "i810 TCO timer"
  185. };
  186. switch (cmd) {
  187. default:
  188. return -ENOTTY;
  189. case WDIOC_GETSUPPORT:
  190. if (copy_to_user
  191.     ((struct watchdog_info *) arg, &ident, sizeof (ident)))
  192. return -EFAULT;
  193. return 0;
  194. case WDIOC_GETSTATUS:
  195. return put_user (tco_timer_read (),
  196.  (unsigned int *) (int) arg);
  197. case WDIOC_GETBOOTSTATUS:
  198. return put_user (boot_status, (int *) arg);
  199. case WDIOC_KEEPALIVE:
  200. tco_timer_reload ();
  201. return 0;
  202. case WDIOC_SETTIMEOUT:
  203. if (get_user(u_margin, (int *) arg))
  204. return -EFAULT;
  205. new_margin = (u_margin * 10 + 5) / 6;
  206. if ((new_margin < 3) || (new_margin > 63))
  207. return -EINVAL;
  208. if (tco_timer_settimer((unsigned char)new_margin))
  209.     return -EINVAL;
  210. i810_margin = new_margin;
  211. tco_timer_reload();
  212. /* Fall */
  213. case WDIOC_GETTIMEOUT:
  214. return put_user((int)(i810_margin * 6 / 10), (int *) arg);
  215. }
  216. }
  217. /*
  218.  * Data for PCI driver interface
  219.  *
  220.  * This data only exists for exporting the supported
  221.  * PCI ids via MODULE_DEVICE_TABLE.  We do not actually
  222.  * register a pci_driver, because someone else might one day
  223.  * want to register another driver on the same PCI id.
  224.  */
  225. static struct pci_device_id i810tco_pci_tbl[] __initdata = {
  226. { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_0, PCI_ANY_ID, PCI_ANY_ID, },
  227. { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_0, PCI_ANY_ID, PCI_ANY_ID, },
  228. { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_0, PCI_ANY_ID, PCI_ANY_ID, },
  229. { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_10, PCI_ANY_ID, PCI_ANY_ID, },
  230. { 0, },
  231. };
  232. MODULE_DEVICE_TABLE (pci, i810tco_pci_tbl);
  233. static struct pci_dev *i810tco_pci;
  234. static unsigned char i810tco_getdevice (void)
  235. {
  236. struct pci_dev *dev;
  237. u8 val1, val2;
  238. u16 badr;
  239. /*
  240.  *      Find the PCI device
  241.  */
  242. pci_for_each_dev(dev) {
  243. if (pci_match_device(i810tco_pci_tbl, dev)) {
  244. i810tco_pci = dev;
  245. break;
  246. }
  247. }
  248. if (i810tco_pci) {
  249. /*
  250.  *      Find the ACPI base I/O address which is the base
  251.  *      for the TCO registers (TCOBASE=ACPIBASE + 0x60)
  252.  *      ACPIBASE is bits [15:7] from 0x40-0x43
  253.  */
  254. pci_read_config_byte (i810tco_pci, 0x40, &val1);
  255. pci_read_config_byte (i810tco_pci, 0x41, &val2);
  256. badr = ((val2 << 1) | (val1 >> 7)) << 7;
  257. ACPIBASE = badr;
  258. /* Something's wrong here, ACPIBASE has to be set */
  259. if (badr == 0x0001 || badr == 0x0000) {
  260. printk (KERN_ERR "i810tco init: failed to get TCOBASE addressn");
  261. return 0;
  262. }
  263. /*
  264.  * Check chipset's NO_REBOOT bit
  265.  */
  266. pci_read_config_byte (i810tco_pci, 0xd4, &val1);
  267. if (val1 & 0x02) {
  268. val1 &= 0xfd;
  269. pci_write_config_byte (i810tco_pci, 0xd4, val1);
  270. pci_read_config_byte (i810tco_pci, 0xd4, &val1);
  271. if (val1 & 0x02) {
  272. printk (KERN_ERR "i810tco init: failed to reset NO_REBOOT flag, reboot disabled by hardwaren");
  273. return 0; /* Cannot reset NO_REBOOT bit */
  274. }
  275. }
  276. /* Set the TCO_EN bit in SMI_EN register */
  277. val1 = inb (SMI_EN + 1);
  278. val1 &= 0xdf;
  279. outb (val1, SMI_EN + 1);
  280. /* Clear out the (probably old) status */
  281. outb (0, TCO1_STS);
  282. boot_status = (int) inb (TCO2_STS);
  283. outb (3, TCO2_STS);
  284. return 1;
  285. }
  286. return 0;
  287. }
  288. static struct file_operations i810tco_fops = {
  289. owner: THIS_MODULE,
  290. write: i810tco_write,
  291. ioctl: i810tco_ioctl,
  292. open: i810tco_open,
  293. release: i810tco_release,
  294. };
  295. static struct miscdevice i810tco_miscdev = {
  296. WATCHDOG_MINOR,
  297. "watchdog",
  298. &i810tco_fops
  299. };
  300. static int __init watchdog_init (void)
  301. {
  302. spin_lock_init(&tco_lock);
  303. if (!i810tco_getdevice () || i810tco_pci == NULL)
  304. return -ENODEV;
  305. if (!request_region (TCOBASE, 0x10, "i810 TCO")) {
  306. printk (KERN_ERR
  307. "i810 TCO timer: I/O address 0x%04x already in usen",
  308. TCOBASE);
  309. return -EIO;
  310. }
  311. if (misc_register (&i810tco_miscdev) != 0) {
  312. release_region (TCOBASE, 0x10);
  313. printk (KERN_ERR "i810 TCO timer: cannot register miscdevn");
  314. return -EIO;
  315. }
  316. tco_timer_settimer ((unsigned char) i810_margin);
  317. tco_timer_reload ();
  318. printk (KERN_INFO
  319. "i810 TCO timer: V0.02, timer margin: %d sec (0x%04x)n",
  320. (int) (i810_margin * 6 / 10), TCOBASE);
  321. return 0;
  322. }
  323. static void __exit watchdog_cleanup (void)
  324. {
  325. u8 val;
  326. /* Reset the timer before we leave */
  327. tco_timer_reload ();
  328. /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
  329. pci_read_config_byte (i810tco_pci, 0xd4, &val);
  330. val |= 0x02;
  331. pci_write_config_byte (i810tco_pci, 0xd4, val);
  332. release_region (TCOBASE, 0x10);
  333. misc_deregister (&i810tco_miscdev);
  334. }
  335. module_init(watchdog_init);
  336. module_exit(watchdog_cleanup);
  337. MODULE_LICENSE("GPL");