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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * IndyDog 0.2 A Hardware Watchdog Device for SGI IP22
  3.  *
  4.  * (c) Copyright 2002 Guido Guenther <agx@sigxcpu.org>, All Rights Reserved.
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version
  9.  * 2 of the License, or (at your option) any later version.
  10.  *
  11.  * based on softdog.c by Alan Cox <alan@redhat.com>
  12.  */
  13.  
  14. #include <linux/module.h>
  15. #include <linux/config.h>
  16. #include <linux/types.h>
  17. #include <linux/kernel.h>
  18. #include <linux/fs.h>
  19. #include <linux/mm.h>
  20. #include <linux/miscdevice.h>
  21. #include <linux/watchdog.h>
  22. #include <linux/smp_lock.h>
  23. #include <linux/init.h>
  24. #include <asm/uaccess.h>
  25. #include <asm/sgi/sgimc.h>
  26. static unsigned long indydog_alive;
  27. static struct sgimc_misc_ctrl *mcmisc_regs; 
  28. static int expect_close = 0;
  29. #ifdef CONFIG_WATCHDOG_NOWAYOUT
  30. static int nowayout = 1;
  31. #else
  32. static int nowayout = 0;
  33. #endif
  34. MODULE_PARM(nowayout,"i");
  35. MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
  36. static void indydog_ping()
  37. {
  38. mcmisc_regs->watchdogt = 0;
  39. }
  40. /*
  41.  * Allow only one person to hold it open
  42.  */
  43. static int indydog_open(struct inode *inode, struct file *file)
  44. {
  45. u32 mc_ctrl0;
  46. if( test_and_set_bit(0,&indydog_alive) )
  47. return -EBUSY;
  48. if (nowayout) {
  49. MOD_INC_USE_COUNT;
  50. }
  51. /*
  52.  * Activate timer
  53.  */
  54. mcmisc_regs = (struct sgimc_misc_ctrl *)(KSEG1+0x1fa00000);
  55. mc_ctrl0 = mcmisc_regs->cpuctrl0 | SGIMC_CCTRL0_WDOG;
  56. mcmisc_regs->cpuctrl0 = mc_ctrl0;
  57. indydog_ping();
  58. printk("Started watchdog timer.n");
  59. return 0;
  60. }
  61. static int indydog_release(struct inode *inode, struct file *file)
  62. {
  63. /*
  64.  * Shut off the timer.
  65.  *  Lock it in if it's a module and we set nowayout.
  66.  */
  67. if (expect_close)
  68. {
  69. u32 mc_ctrl0 = mcmisc_regs->cpuctrl0; 
  70. mc_ctrl0 &= ~SGIMC_CCTRL0_WDOG;
  71. mcmisc_regs->cpuctrl0 = mc_ctrl0;
  72. printk("Stopped watchdog timer.n");
  73. }
  74. else
  75. {
  76. printk(KERN_CRIT "WDT device closed unexpectedly.  WDT will not stop!n");
  77. }
  78. clear_bit(0,&indydog_alive);
  79. return 0;
  80. }
  81. static ssize_t indydog_write(struct file *file, const char *data, size_t len, loff_t *ppos)
  82. {
  83. /*  Can't seek (pwrite) on this device  */
  84. if (ppos != &file->f_pos)
  85. return -ESPIPE;
  86. /*
  87.  * Refresh the timer.
  88.  */
  89. if(len) {
  90. if (!nowayout) {
  91. size_t i;
  92. /* In case it was set long ago */
  93. expect_close = 0;
  94. for (i = 0; i != len; i++) {
  95. char c;
  96. if (get_user(c, data + i))
  97. return -EFAULT;
  98. if (c == 'V')
  99. expect_close = 1;
  100. }
  101. }
  102. indydog_ping();
  103. return 1;
  104. }
  105. return 0;
  106. }
  107. static int indydog_ioctl(struct inode *inode, struct file *file,
  108. unsigned int cmd, unsigned long arg)
  109. {
  110. static struct watchdog_info ident = {
  111. options: WDIOF_MAGICCLOSE,
  112. identity: "Hardware Watchdog for SGI IP22",
  113. };
  114. switch (cmd) {
  115. default:
  116. return -ENOIOCTLCMD;
  117. case WDIOC_GETSUPPORT:
  118. if(copy_to_user((struct watchdog_info *)arg, &ident, sizeof(ident)))
  119. return -EFAULT;
  120. return 0;
  121. case WDIOC_GETSTATUS:
  122. case WDIOC_GETBOOTSTATUS:
  123. return put_user(0,(int *)arg);
  124. case WDIOC_KEEPALIVE:
  125. indydog_ping();
  126. return 0;
  127. }
  128. }
  129. static struct file_operations indydog_fops = {
  130. owner: THIS_MODULE,
  131. write: indydog_write,
  132. ioctl: indydog_ioctl,
  133. open: indydog_open,
  134. release: indydog_release,
  135. };
  136. static struct miscdevice indydog_miscdev = {
  137. minor: WATCHDOG_MINOR,
  138. name: "watchdog",
  139. fops: &indydog_fops,
  140. };
  141. static const char banner[] __initdata = KERN_INFO "Hardware Watchdog Timer for SGI IP22: 0.2n";
  142. static int __init watchdog_init(void)
  143. {
  144. int ret;
  145. ret = misc_register(&indydog_miscdev);
  146. if (ret)
  147. return ret;
  148. printk(banner);
  149. return 0;
  150. }
  151. static void __exit watchdog_exit(void)
  152. {
  153. misc_deregister(&indydog_miscdev);
  154. }
  155. module_init(watchdog_init);
  156. module_exit(watchdog_exit);
  157. MODULE_LICENSE("GPL");