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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * National Semiconductor PC87307/PC97307 (ala SC1200) WDT driver
  3.  * (c) Copyright 2002 Zwane Mwaikambo <zwane@commfireservices.com>,
  4.  * All Rights Reserved.
  5.  * Based on wdt.c and wdt977.c by Alan Cox and Woody Suwalski respectively.
  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.  * The author(s) of this software shall not be held liable for damages
  13.  * of any nature resulting due to the use of this software. This
  14.  * software is provided AS-IS with no warranties.
  15.  *
  16.  * Changelog:
  17.  * 20020220 Zwane Mwaikambo Code based on datasheet, no hardware.
  18.  * 20020221 Zwane Mwaikambo Cleanups as suggested by Jeff Garzik and Alan Cox.
  19.  * 20020222 Zwane Mwaikambo Added probing.
  20.  * 20020225 Zwane Mwaikambo Added ISAPNP support.
  21.  * 20020412 Rob Radez Broke out start/stop functions
  22.  *  <rob@osinvestor.com> Return proper status instead of temperature warning
  23.  * Add WDIOC_GETBOOTSTATUS and WDIOC_SETOPTIONS ioctls
  24.  * Fix CONFIG_WATCHDOG_NOWAYOUT
  25.  * 20020530 Joel Becker Add Matt Domsch's nowayout
  26.  * module option
  27.  */
  28. #include <linux/config.h>
  29. #include <linux/module.h>
  30. #include <linux/kernel.h>
  31. #include <linux/miscdevice.h>
  32. #include <linux/watchdog.h>
  33. #include <linux/ioport.h>
  34. #include <linux/spinlock.h>
  35. #include <linux/ioport.h>
  36. #include <asm/semaphore.h>
  37. #include <asm/io.h>
  38. #include <asm/uaccess.h>
  39. #include <linux/notifier.h>
  40. #include <linux/reboot.h>
  41. #include <linux/init.h>
  42. #include <linux/isapnp.h>
  43. #define SC1200_MODULE_VER "build 20020303"
  44. #define SC1200_MODULE_NAME "sc1200wdt"
  45. #define PFX SC1200_MODULE_NAME ": "
  46. #define MAX_TIMEOUT 255 /* 255 minutes */
  47. #define PMIR (io) /* Power Management Index Register */
  48. #define PMDR (io+1) /* Power Management Data Register */
  49. /* Data Register indexes */
  50. #define FER1 0x00 /* Function enable register 1 */
  51. #define FER2 0x01 /* Function enable register 2 */
  52. #define PMC1 0x02 /* Power Management Ctrl 1 */
  53. #define PMC2 0x03 /* Power Management Ctrl 2 */
  54. #define PMC3 0x04 /* Power Management Ctrl 3 */
  55. #define WDTO 0x05 /* Watchdog timeout register */
  56. #define WDCF 0x06 /* Watchdog config register */
  57. #define WDST 0x07 /* Watchdog status register */
  58. /* WDCF bitfields - which devices assert WDO */
  59. #define KBC_IRQ 0x01 /* Keyboard Controller */
  60. #define MSE_IRQ 0x02 /* Mouse */
  61. #define UART1_IRQ 0x03 /* Serial0 */
  62. #define UART2_IRQ 0x04 /* Serial1 */
  63. /* 5 -7 are reserved */
  64. static char banner[] __initdata = KERN_INFO PFX SC1200_MODULE_VER;
  65. static int timeout = 1;
  66. static int io = -1;
  67. static int io_len = 2; /* for non plug and play */
  68. struct semaphore open_sem;
  69. static char expect_close;
  70. spinlock_t sc1200wdt_lock; /* io port access serialisation */
  71. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  72. static int isapnp = 1;
  73. static struct pci_dev *wdt_dev;
  74. MODULE_PARM(isapnp, "i");
  75. MODULE_PARM_DESC(isapnp, "When set to 0 driver ISA PnP support will be disabled");
  76. #endif
  77. MODULE_PARM(io, "i");
  78. MODULE_PARM_DESC(io, "io port");
  79. MODULE_PARM(timeout, "i");
  80. MODULE_PARM_DESC(timeout, "range is 0-255 minutes, default is 1");
  81. #ifdef CONFIG_WATCHDOG_NOWAYOUT
  82. static int nowayout = 1;
  83. #else
  84. static int nowayout = 0;
  85. #endif
  86. MODULE_PARM(nowayout,"i");
  87. MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
  88. /* Read from Data Register */
  89. static inline void sc1200wdt_read_data(unsigned char index, unsigned char *data)
  90. {
  91. spin_lock(&sc1200wdt_lock);
  92. outb_p(index, PMIR);
  93. *data = inb(PMDR);
  94. spin_unlock(&sc1200wdt_lock);
  95. }
  96. /* Write to Data Register */
  97. static inline void sc1200wdt_write_data(unsigned char index, unsigned char data)
  98. {
  99. spin_lock(&sc1200wdt_lock);
  100. outb_p(index, PMIR);
  101. outb(data, PMDR);
  102. spin_unlock(&sc1200wdt_lock);
  103. }
  104. static void sc1200wdt_start(void)
  105. {
  106. unsigned char reg;
  107. sc1200wdt_read_data(WDCF, &reg);
  108. /* assert WDO when any of the following interrupts are triggered too */
  109. reg |= (KBC_IRQ | MSE_IRQ | UART1_IRQ | UART2_IRQ);
  110. sc1200wdt_write_data(WDCF, reg);
  111. /* set the timeout and get the ball rolling */
  112. sc1200wdt_write_data(WDTO, timeout);
  113. }
  114. static void sc1200wdt_stop(void)
  115. {
  116. sc1200wdt_write_data(WDTO, 0);
  117. }
  118. /* This returns the status of the WDO signal, inactive high. */
  119. static inline int sc1200wdt_status(void)
  120. {
  121. unsigned char ret;
  122. sc1200wdt_read_data(WDST, &ret);
  123. /* If the bit is inactive, the watchdog is enabled, so return
  124.  * KEEPALIVEPING which is a bit of a kludge because there's nothing
  125.  * else for enabled/disabled status
  126.  */
  127. return (ret & 0x01) ? 0 : WDIOF_KEEPALIVEPING; /* bits 1 - 7 are undefined */
  128. }
  129. static int sc1200wdt_open(struct inode *inode, struct file *file)
  130. {
  131. /* allow one at a time */
  132. if (down_trylock(&open_sem))
  133. return -EBUSY;
  134. if (timeout > MAX_TIMEOUT)
  135. timeout = MAX_TIMEOUT;
  136. sc1200wdt_start();
  137. printk(KERN_INFO PFX "Watchdog enabled, timeout = %d min(s)", timeout);
  138. return 0;
  139. }
  140. static int sc1200wdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  141. {
  142. int new_timeout;
  143. static struct watchdog_info ident = {
  144. options: WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE,
  145. firmware_version: 0,
  146. identity: "PC87307/PC97307"
  147. };
  148. switch (cmd) {
  149. default:
  150. return -ENOTTY; /* Keep Pavel Machek amused ;) */
  151. case WDIOC_GETSUPPORT:
  152. if (copy_to_user((struct watchdog_info *)arg, &ident, sizeof ident))
  153. return -EFAULT;
  154. return 0;
  155. case WDIOC_GETSTATUS:
  156. return put_user(sc1200wdt_status(), (int *)arg);
  157. case WDIOC_GETBOOTSTATUS:
  158. return put_user(0, (int *)arg);
  159. case WDIOC_KEEPALIVE:
  160. sc1200wdt_write_data(WDTO, timeout);
  161. return 0;
  162. case WDIOC_SETTIMEOUT:
  163. if (get_user(new_timeout, (int *)arg))
  164. return -EFAULT;
  165. /* the API states this is given in secs */
  166. new_timeout /= 60;
  167. if (new_timeout < 0 || new_timeout > MAX_TIMEOUT)
  168. return -EINVAL;
  169. timeout = new_timeout;
  170. sc1200wdt_write_data(WDTO, timeout);
  171. /* fall through and return the new timeout */
  172. case WDIOC_GETTIMEOUT:
  173. return put_user(timeout * 60, (int *)arg);
  174. case WDIOC_SETOPTIONS:
  175. {
  176. int options, retval = -EINVAL;
  177. if (get_user(options, (int *)arg))
  178. return -EFAULT;
  179. if (options & WDIOS_DISABLECARD) {
  180. sc1200wdt_stop();
  181. retval = 0;
  182. }
  183. if (options & WDIOS_ENABLECARD) {
  184. sc1200wdt_start();
  185. retval = 0;
  186. }
  187. return retval;
  188. }
  189. }
  190. }
  191. static int sc1200wdt_release(struct inode *inode, struct file *file)
  192. {
  193. if (expect_close == 42) {
  194. sc1200wdt_stop();
  195. printk(KERN_INFO PFX "Watchdog disabledn");
  196. } else {
  197. sc1200wdt_write_data(WDTO, timeout);
  198. printk(KERN_CRIT PFX "Unexpected close!, timeout = %d min(s)n", timeout);
  199. }
  200. up(&open_sem);
  201. expect_close = 0;
  202. return 0;
  203. }
  204. static ssize_t sc1200wdt_write(struct file *file, const char *data, size_t len, loff_t *ppos)
  205. {
  206. if (ppos != &file->f_pos)
  207. return -ESPIPE;
  208. if (len) {
  209. if (!nowayout) {
  210. size_t i;
  211. expect_close = 0;
  212. for (i = 0; i != len; i++)
  213. {
  214. char c;
  215. if(get_user(c, data+i))
  216. return -EFAULT;
  217. if (c == 'V')
  218. expect_close = 42;
  219. }
  220. }
  221. sc1200wdt_write_data(WDTO, timeout);
  222. return len;
  223. }
  224. return 0;
  225. }
  226. static int sc1200wdt_notify_sys(struct notifier_block *this, unsigned long code, void *unused)
  227. {
  228. if (code == SYS_DOWN || code == SYS_HALT)
  229. sc1200wdt_stop();
  230. return NOTIFY_DONE;
  231. }
  232. static struct notifier_block sc1200wdt_notifier =
  233. {
  234. notifier_call: sc1200wdt_notify_sys
  235. };
  236. static struct file_operations sc1200wdt_fops =
  237. {
  238. owner: THIS_MODULE,
  239. write: sc1200wdt_write,
  240. ioctl: sc1200wdt_ioctl,
  241. open: sc1200wdt_open,
  242. release: sc1200wdt_release
  243. };
  244. static struct miscdevice sc1200wdt_miscdev =
  245. {
  246. minor: WATCHDOG_MINOR,
  247. name: "watchdog",
  248. fops: &sc1200wdt_fops,
  249. };
  250. static int __init sc1200wdt_probe(void)
  251. {
  252. /* The probe works by reading the PMC3 register's default value of 0x0e
  253.  * there is one caveat, if the device disables the parallel port or any
  254.  * of the UARTs we won't be able to detect it.
  255.  * Nb. This could be done with accuracy by reading the SID registers, but
  256.  * we don't have access to those io regions.
  257.  */
  258. unsigned char reg;
  259. sc1200wdt_read_data(PMC3, &reg);
  260. reg &= 0x0f; /* we don't want the UART busy bits */
  261. return (reg == 0x0e) ? 0 : -ENODEV;
  262. }
  263. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  264. static int __init sc1200wdt_isapnp_probe(void)
  265. {
  266. int ret;
  267. /* The WDT is logical device 8 on the main device */
  268. wdt_dev = isapnp_find_dev(NULL, ISAPNP_VENDOR('N','S','C'), ISAPNP_FUNCTION(0x08), NULL);
  269. if (!wdt_dev)
  270. return -ENODEV;
  271. if (wdt_dev->prepare(wdt_dev) < 0) {
  272. printk(KERN_ERR PFX "ISA PnP found device that could not be autoconfiguredn");
  273. return -EAGAIN;
  274. }
  275. if (!(pci_resource_flags(wdt_dev, 0) & IORESOURCE_IO)) {
  276. printk(KERN_ERR PFX "ISA PnP could not find io portsn");
  277. return -ENODEV;
  278. }
  279. ret = wdt_dev->activate(wdt_dev);
  280. if (ret && (ret != -EBUSY))
  281. return -ENOMEM;
  282. /* io port resource overriding support? */
  283. io = pci_resource_start(wdt_dev, 0);
  284. io_len = pci_resource_len(wdt_dev, 0);
  285. printk(KERN_DEBUG PFX "ISA PnP found device at io port %#x/%dn", io, io_len);
  286. return 0;
  287. }
  288. #endif /* CONFIG_ISAPNP */
  289. static int __init sc1200wdt_init(void)
  290. {
  291. int ret;
  292. printk(banner);
  293. spin_lock_init(&sc1200wdt_lock);
  294. sema_init(&open_sem, 1);
  295. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  296. if (isapnp) {
  297. ret = sc1200wdt_isapnp_probe();
  298. if (ret)
  299. goto out_clean;
  300. }
  301. #endif
  302. if (io == -1) {
  303. printk(KERN_ERR PFX "io parameter must be specifiedn");
  304. ret = -EINVAL;
  305. goto out_clean;
  306. }
  307. if (!request_region(io, io_len, SC1200_MODULE_NAME)) {
  308. printk(KERN_ERR PFX "Unable to register IO port %#xn", io);
  309. ret = -EBUSY;
  310. goto out_pnp;
  311. }
  312. ret = sc1200wdt_probe();
  313. if (ret)
  314. goto out_io;
  315. ret = register_reboot_notifier(&sc1200wdt_notifier);
  316. if (ret) {
  317. printk(KERN_ERR PFX "Unable to register reboot notifier err = %dn", ret);
  318. goto out_io;
  319. }
  320. ret = misc_register(&sc1200wdt_miscdev);
  321. if (ret) {
  322. printk(KERN_ERR PFX "Unable to register miscdev on minor %dn", WATCHDOG_MINOR);
  323. goto out_rbt;
  324. }
  325. /* ret = 0 */
  326. out_clean:
  327. return ret;
  328. out_rbt:
  329. unregister_reboot_notifier(&sc1200wdt_notifier);
  330. out_io:
  331. release_region(io, io_len);
  332. out_pnp:
  333. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  334. if (isapnp && wdt_dev)
  335. wdt_dev->deactivate(wdt_dev);
  336. #endif
  337. goto out_clean;
  338. }
  339. static void __exit sc1200wdt_exit(void)
  340. {
  341. misc_deregister(&sc1200wdt_miscdev);
  342. unregister_reboot_notifier(&sc1200wdt_notifier);
  343. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  344. if(isapnp && wdt_dev)
  345. wdt_dev->deactivate(wdt_dev);
  346. #endif
  347. release_region(io, io_len);
  348. }
  349. #ifndef MODULE
  350. static int __init sc1200wdt_setup(char *str)
  351. {
  352. int ints[4];
  353. str = get_options (str, ARRAY_SIZE(ints), ints);
  354. if (ints[0] > 0) {
  355. io = ints[1];
  356. if (ints[0] > 1)
  357. timeout = ints[2];
  358. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  359. if (ints[0] > 2)
  360. isapnp = ints[3];
  361. #endif
  362. }
  363. return 1;
  364. }
  365. __setup("sc1200wdt=", sc1200wdt_setup);
  366. #endif /* MODULE */
  367. module_init(sc1200wdt_init);
  368. module_exit(sc1200wdt_exit);
  369. MODULE_AUTHOR("Zwane Mwaikambo <zwane@commfireservices.com>");
  370. MODULE_DESCRIPTION("Driver for National Semiconductor PC87307/PC97307 watchdog component");
  371. MODULE_LICENSE("GPL");
  372. EXPORT_NO_SYMBOLS;