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

嵌入式Linux

开发平台:

Unix_Linux

  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.  */
  32. #define VERSION "0.4" 
  33.   
  34. #include <linux/module.h>
  35. #include <linux/config.h>
  36. #include <linux/types.h>
  37. #include <linux/kernel.h>
  38. #include <linux/fs.h>
  39. #include <linux/mm.h>
  40. #include <linux/miscdevice.h>
  41. #include <linux/ioport.h>
  42. #include <linux/watchdog.h>
  43. #include <linux/reboot.h>
  44. #include <linux/init.h>
  45. #include <linux/smp_lock.h>
  46. #include <asm/uaccess.h>
  47. #include <asm/io.h>
  48. static int mixcomwd_ioports[] = { 0x180, 0x280, 0x380, 0x000 };
  49. #define MIXCOM_WATCHDOG_OFFSET 0xc10
  50. #define MIXCOM_ID 0x11
  51. #define FLASHCOM_WATCHDOG_OFFSET 0x4
  52. #define FLASHCOM_ID 0x18
  53. static long mixcomwd_opened; /* long req'd for setbit --RR */
  54. static int watchdog_port;
  55. #ifndef CONFIG_WATCHDOG_NOWAYOUT
  56. static int mixcomwd_timer_alive;
  57. static struct timer_list mixcomwd_timer;
  58. #endif
  59. static void mixcomwd_ping(void)
  60. {
  61. outb_p(55,watchdog_port);
  62. return;
  63. }
  64. #ifndef CONFIG_WATCHDOG_NOWAYOUT
  65. static void mixcomwd_timerfun(unsigned long d)
  66. {
  67. mixcomwd_ping();
  68. mod_timer(&mixcomwd_timer,jiffies+ 5*HZ);
  69. }
  70. #endif
  71. /*
  72.  * Allow only one person to hold it open
  73.  */
  74.  
  75. static int mixcomwd_open(struct inode *inode, struct file *file)
  76. {
  77. if(test_and_set_bit(0,&mixcomwd_opened)) {
  78. return -EBUSY;
  79. }
  80. mixcomwd_ping();
  81. #ifndef CONFIG_WATCHDOG_NOWAYOUT
  82. if(mixcomwd_timer_alive) {
  83. del_timer(&mixcomwd_timer);
  84. mixcomwd_timer_alive=0;
  85. #endif
  86. return 0;
  87. }
  88. static int mixcomwd_release(struct inode *inode, struct file *file)
  89. {
  90. lock_kernel();
  91. #ifndef CONFIG_WATCHDOG_NOWAYOUT
  92. if(mixcomwd_timer_alive) {
  93. printk(KERN_ERR "mixcomwd: release called while internal timer alive");
  94. unlock_kernel();
  95. return -EBUSY;
  96. }
  97. init_timer(&mixcomwd_timer);
  98. mixcomwd_timer.expires=jiffies + 5 * HZ;
  99. mixcomwd_timer.function=mixcomwd_timerfun;
  100. mixcomwd_timer.data=0;
  101. mixcomwd_timer_alive=1;
  102. add_timer(&mixcomwd_timer);
  103. #endif
  104. clear_bit(0,&mixcomwd_opened);
  105. unlock_kernel();
  106. return 0;
  107. }
  108. static ssize_t mixcomwd_write(struct file *file, const char *data, size_t len, loff_t *ppos)
  109. {
  110. if (ppos != &file->f_pos) {
  111. return -ESPIPE;
  112. }
  113. if(len)
  114. {
  115. mixcomwd_ping();
  116. return 1;
  117. }
  118. return 0;
  119. }
  120. static int mixcomwd_ioctl(struct inode *inode, struct file *file,
  121. unsigned int cmd, unsigned long arg)
  122. {
  123. int status;
  124.         static struct watchdog_info ident = {
  125. WDIOF_KEEPALIVEPING, 1, "MixCOM watchdog"
  126. };
  127.                                         
  128. switch(cmd)
  129. {
  130. case WDIOC_GETSTATUS:
  131. status=mixcomwd_opened;
  132. #ifndef CONFIG_WATCHDOG_NOWAYOUT
  133. status|=mixcomwd_timer_alive;
  134. #endif
  135. if (copy_to_user((int *)arg, &status, sizeof(int))) {
  136. return -EFAULT;
  137. }
  138. break;
  139. case WDIOC_GETSUPPORT:
  140. if (copy_to_user((struct watchdog_info *)arg, &ident, 
  141.     sizeof(ident))) {
  142. return -EFAULT;
  143. }
  144. break;
  145. case WDIOC_KEEPALIVE:
  146. mixcomwd_ping();
  147. break;
  148. default:
  149. return -ENOTTY;
  150. }
  151. return 0;
  152. }
  153. static struct file_operations mixcomwd_fops=
  154. {
  155. owner: THIS_MODULE,
  156. write: mixcomwd_write,
  157. ioctl: mixcomwd_ioctl,
  158. open: mixcomwd_open,
  159. release: mixcomwd_release,
  160. };
  161. static struct miscdevice mixcomwd_miscdev=
  162. {
  163. WATCHDOG_MINOR,
  164. "watchdog",
  165. &mixcomwd_fops
  166. };
  167. static int __init mixcomwd_checkcard(int port)
  168. {
  169. int id;
  170. if(check_region(port+MIXCOM_WATCHDOG_OFFSET,1)) {
  171. return 0;
  172. }
  173. id=inb_p(port + MIXCOM_WATCHDOG_OFFSET) & 0x3f;
  174. if(id!=MIXCOM_ID) {
  175. return 0;
  176. }
  177. return 1;
  178. }
  179. static int __init flashcom_checkcard(int port)
  180. {
  181. int id;
  182. if(check_region(port + FLASHCOM_WATCHDOG_OFFSET,1)) {
  183. return 0;
  184. }
  185. id=inb_p(port + FLASHCOM_WATCHDOG_OFFSET);
  186.   if(id!=FLASHCOM_ID) {
  187. return 0;
  188. }
  189.   return 1;
  190.  }
  191.  
  192. static int __init mixcomwd_init(void)
  193. {
  194. int i;
  195. int ret;
  196. int found=0;
  197. for (i = 0; !found && mixcomwd_ioports[i] != 0; i++) {
  198. if (mixcomwd_checkcard(mixcomwd_ioports[i])) {
  199. found = 1;
  200. watchdog_port = mixcomwd_ioports[i] + MIXCOM_WATCHDOG_OFFSET;
  201. }
  202. }
  203. /* The FlashCOM card can be set up at 0x300 -> 0x378, in 0x8 jumps */
  204. for (i = 0x300; !found && i < 0x380; i+=0x8) {
  205. if (flashcom_checkcard(i)) {
  206. found = 1;
  207. watchdog_port = i + FLASHCOM_WATCHDOG_OFFSET;
  208. }
  209. }
  210. if (!found) {
  211. printk("mixcomwd: No card detected, or port not available.n");
  212. return -ENODEV;
  213. }
  214. request_region(watchdog_port,1,"MixCOM watchdog");
  215. ret = misc_register(&mixcomwd_miscdev);
  216. if (ret)
  217. return ret;
  218. printk(KERN_INFO "MixCOM watchdog driver v%s, watchdog port at 0x%3xn",VERSION,watchdog_port);
  219. return 0;
  220. }
  221. static void __exit mixcomwd_exit(void)
  222. {
  223. #ifndef CONFIG_WATCHDOG_NOWAYOUT
  224. if(mixcomwd_timer_alive) {
  225. printk(KERN_WARNING "mixcomwd: I quit now, hardware will"
  226. " probably reboot!n");
  227. del_timer(&mixcomwd_timer);
  228. mixcomwd_timer_alive=0;
  229. }
  230. #endif
  231. release_region(watchdog_port,1);
  232. misc_deregister(&mixcomwd_miscdev);
  233. }
  234. module_init(mixcomwd_init);
  235. module_exit(mixcomwd_exit);
  236. MODULE_LICENSE("GPL");
  237. EXPORT_NO_SYMBOLS;