mixcomwd.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. /*
  2. * MixCom Watchdog: A Simple Hardware Watchdog Device
  3. * Based on Softdog driver by Alan Cox and PC Watchdog driver by Ken Hollis
  4. *
  5. * Author: Gergely Madarasz <gorgo@itc.hu>
  6. *
  7. * Copyright (c) 1999 ITConsult-Pro Co. <info@itc.hu>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version
  12. * 2 of the License, or (at your option) any later version.
  13. *
  14. * Version 0.1 (99/04/15):
  15. * - first version
  16. *
  17. * Version 0.2 (99/06/16):
  18. * - added kernel timer watchdog ping after close
  19. * since the hardware does not support watchdog shutdown
  20. *
  21. * Version 0.3 (99/06/21):
  22. * - added WDIOC_GETSTATUS and WDIOC_GETSUPPORT ioctl calls
  23. *
  24. * Version 0.3.1 (99/06/22):
  25. * - allow module removal while internal timer is active,
  26. * print warning about probable reset
  27. *
  28. * Version 0.4 (99/11/15):
  29. * - support for one more type board
  30. *
  31. * Version 0.5 (2001/12/14) Matt Domsch <Matt_Domsch@dell.com>
  32. * - added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
  33. *
  34. * Version 0.6 (2002/04/12): Rob Radez <rob@osinvestor.com>
  35. * - make mixcomwd_opened unsigned,
  36. * removed lock_kernel/unlock_kernel from mixcomwd_release,
  37. * modified ioctl a bit to conform to API
  38. *
  39. */
  40. #define VERSION "0.6"
  41. #define WATCHDOG_NAME "mixcomwd"
  42. #define PFX WATCHDOG_NAME ": "
  43. #include <linux/module.h>
  44. #include <linux/moduleparam.h>
  45. #include <linux/types.h>
  46. #include <linux/miscdevice.h>
  47. #include <linux/ioport.h>
  48. #include <linux/watchdog.h>
  49. #include <linux/fs.h>
  50. #include <linux/reboot.h>
  51. #include <linux/init.h>
  52. #include <linux/jiffies.h>
  53. #include <linux/timer.h>
  54. #include <asm/uaccess.h>
  55. #include <asm/io.h>
  56. /*
  57. * We have two types of cards that can be probed:
  58. * 1) The Mixcom cards: these cards can be found at addresses
  59. * 0x180, 0x280, 0x380 with an additional offset of 0xc10.
  60. * (Or 0xd90, 0xe90, 0xf90).
  61. * 2) The FlashCOM cards: these cards can be set up at
  62. * 0x300 -> 0x378, in 0x8 jumps with an offset of 0x04.
  63. * (Or 0x304 -> 0x37c in 0x8 jumps).
  64. * Each card has it's own ID.
  65. */
  66. #define MIXCOM_ID 0x11
  67. #define FLASHCOM_ID 0x18
  68. static struct {
  69. int ioport;
  70. int id;
  71. } mixcomwd_io_info[] __devinitdata = {
  72. /* The Mixcom cards */
  73. {0x0d90, MIXCOM_ID},
  74. {0x0e90, MIXCOM_ID},
  75. {0x0f90, MIXCOM_ID},
  76. /* The FlashCOM cards */
  77. {0x0304, FLASHCOM_ID},
  78. {0x030c, FLASHCOM_ID},
  79. {0x0314, FLASHCOM_ID},
  80. {0x031c, FLASHCOM_ID},
  81. {0x0324, FLASHCOM_ID},
  82. {0x032c, FLASHCOM_ID},
  83. {0x0334, FLASHCOM_ID},
  84. {0x033c, FLASHCOM_ID},
  85. {0x0344, FLASHCOM_ID},
  86. {0x034c, FLASHCOM_ID},
  87. {0x0354, FLASHCOM_ID},
  88. {0x035c, FLASHCOM_ID},
  89. {0x0364, FLASHCOM_ID},
  90. {0x036c, FLASHCOM_ID},
  91. {0x0374, FLASHCOM_ID},
  92. {0x037c, FLASHCOM_ID},
  93. /* The end of the list */
  94. {0x0000, 0},
  95. };
  96. static void mixcomwd_timerfun(unsigned long d);
  97. static unsigned long mixcomwd_opened; /* long req'd for setbit --RR */
  98. static int watchdog_port;
  99. static int mixcomwd_timer_alive;
  100. static DEFINE_TIMER(mixcomwd_timer, mixcomwd_timerfun, 0, 0);
  101. static char expect_close;
  102. static int nowayout = WATCHDOG_NOWAYOUT;
  103. module_param(nowayout, int, 0);
  104. MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
  105. static void mixcomwd_ping(void)
  106. {
  107. outb_p(55,watchdog_port);
  108. return;
  109. }
  110. static void mixcomwd_timerfun(unsigned long d)
  111. {
  112. mixcomwd_ping();
  113. mod_timer(&mixcomwd_timer, jiffies + 5 * HZ);
  114. }
  115. /*
  116. * Allow only one person to hold it open
  117. */
  118. static int mixcomwd_open(struct inode *inode, struct file *file)
  119. {
  120. if(test_and_set_bit(0,&mixcomwd_opened)) {
  121. return -EBUSY;
  122. }
  123. mixcomwd_ping();
  124. if (nowayout) {
  125. /*
  126. * fops_get() code via open() has already done
  127. * a try_module_get() so it is safe to do the
  128. * __module_get().
  129. */
  130. __module_get(THIS_MODULE);
  131. } else {
  132. if(mixcomwd_timer_alive) {
  133. del_timer(&mixcomwd_timer);
  134. mixcomwd_timer_alive=0;
  135. }
  136. }
  137. return nonseekable_open(inode, file);
  138. }
  139. static int mixcomwd_release(struct inode *inode, struct file *file)
  140. {
  141. if (expect_close == 42) {
  142. if(mixcomwd_timer_alive) {
  143. printk(KERN_ERR PFX "release called while internal timer alive");
  144. return -EBUSY;
  145. }
  146. mixcomwd_timer_alive=1;
  147. mod_timer(&mixcomwd_timer, jiffies + 5 * HZ);
  148. } else {
  149. printk(KERN_CRIT PFX "WDT device closed unexpectedly. WDT will not stop!\n");
  150. }
  151. clear_bit(0,&mixcomwd_opened);
  152. expect_close=0;
  153. return 0;
  154. }
  155. static ssize_t mixcomwd_write(struct file *file, const char __user *data, size_t len, loff_t *ppos)
  156. {
  157. if(len)
  158. {
  159. if (!nowayout) {
  160. size_t i;
  161. /* In case it was set long ago */
  162. expect_close = 0;
  163. for (i = 0; i != len; i++) {
  164. char c;
  165. if (get_user(c, data + i))
  166. return -EFAULT;
  167. if (c == 'V')
  168. expect_close = 42;
  169. }
  170. }
  171. mixcomwd_ping();
  172. }
  173. return len;
  174. }
  175. static int mixcomwd_ioctl(struct inode *inode, struct file *file,
  176. unsigned int cmd, unsigned long arg)
  177. {
  178. void __user *argp = (void __user *)arg;
  179. int __user *p = argp;
  180. int status;
  181. static struct watchdog_info ident = {
  182. .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
  183. .firmware_version = 1,
  184. .identity = "MixCOM watchdog",
  185. };
  186. switch(cmd)
  187. {
  188. case WDIOC_GETSTATUS:
  189. status=mixcomwd_opened;
  190. if (!nowayout) {
  191. status|=mixcomwd_timer_alive;
  192. }
  193. if (copy_to_user(p, &status, sizeof(int))) {
  194. return -EFAULT;
  195. }
  196. break;
  197. case WDIOC_GETBOOTSTATUS:
  198. if (copy_to_user(p, &status, sizeof(int))) {
  199. return -EFAULT;
  200. }
  201. break;
  202. case WDIOC_GETSUPPORT:
  203. if (copy_to_user(argp, &ident, sizeof(ident))) {
  204. return -EFAULT;
  205. }
  206. break;
  207. case WDIOC_KEEPALIVE:
  208. mixcomwd_ping();
  209. break;
  210. default:
  211. return -ENOTTY;
  212. }
  213. return 0;
  214. }
  215. static const struct file_operations mixcomwd_fops = {
  216. .owner = THIS_MODULE,
  217. .llseek = no_llseek,
  218. .write = mixcomwd_write,
  219. .ioctl = mixcomwd_ioctl,
  220. .open = mixcomwd_open,
  221. .release = mixcomwd_release,
  222. };
  223. static struct miscdevice mixcomwd_miscdev = {
  224. .minor = WATCHDOG_MINOR,
  225. .name = "watchdog",
  226. .fops = &mixcomwd_fops,
  227. };
  228. static int __init checkcard(int port, int card_id)
  229. {
  230. int id;
  231. if (!request_region(port, 1, "MixCOM watchdog")) {
  232. return 0;
  233. }
  234. id=inb_p(port);
  235. if (card_id==MIXCOM_ID)
  236. id &= 0x3f;
  237. if (id!=card_id) {
  238. release_region(port, 1);
  239. return 0;
  240. }
  241. return 1;
  242. }
  243. static int __init mixcomwd_init(void)
  244. {
  245. int i;
  246. int ret;
  247. int found=0;
  248. for (i = 0; !found && mixcomwd_io_info[i].ioport != 0; i++) {
  249. if (checkcard(mixcomwd_io_info[i].ioport,
  250. mixcomwd_io_info[i].id)) {
  251. found = 1;
  252. watchdog_port = mixcomwd_io_info[i].ioport;
  253. }
  254. }
  255. if (!found) {
  256. printk(KERN_ERR PFX "No card detected, or port not available.\n");
  257. return -ENODEV;
  258. }
  259. ret = misc_register(&mixcomwd_miscdev);
  260. if (ret)
  261. {
  262. printk(KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
  263. WATCHDOG_MINOR, ret);
  264. goto error_misc_register_watchdog;
  265. }
  266. printk(KERN_INFO "MixCOM watchdog driver v%s, watchdog port at 0x%3x\n",
  267. VERSION, watchdog_port);
  268. return 0;
  269. error_misc_register_watchdog:
  270. release_region(watchdog_port, 1);
  271. watchdog_port = 0x0000;
  272. return ret;
  273. }
  274. static void __exit mixcomwd_exit(void)
  275. {
  276. if (!nowayout) {
  277. if(mixcomwd_timer_alive) {
  278. printk(KERN_WARNING PFX "I quit now, hardware will"
  279. " probably reboot!\n");
  280. del_timer_sync(&mixcomwd_timer);
  281. mixcomwd_timer_alive=0;
  282. }
  283. }
  284. misc_deregister(&mixcomwd_miscdev);
  285. release_region(watchdog_port,1);
  286. }
  287. module_init(mixcomwd_init);
  288. module_exit(mixcomwd_exit);
  289. MODULE_AUTHOR("Gergely Madarasz <gorgo@itc.hu>");
  290. MODULE_DESCRIPTION("MixCom Watchdog driver");
  291. MODULE_VERSION(VERSION);
  292. MODULE_LICENSE("GPL");
  293. MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);