Blame view

drivers/watchdog/indydog.c 4.86 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  /*
   *	IndyDog	0.3	A Hardware Watchdog Device for SGI IP22
   *
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
4
5
   *	(c) Copyright 2002 Guido Guenther <agx@sigxcpu.org>,
   *						All Rights Reserved.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
11
   *
   *	This program is free software; you can redistribute it and/or
   *	modify it under the terms of the GNU General Public License
   *	as published by the Free Software Foundation; either version
   *	2 of the License, or (at your option) any later version.
   *
29fa0586d   Alan Cox   [PATCH] Switch al...
12
   *	based on softdog.c by Alan Cox <alan@lxorguk.ukuu.org.uk>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
14
15
16
   */
  
  #include <linux/module.h>
  #include <linux/moduleparam.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
18
19
20
21
22
23
24
25
  #include <linux/types.h>
  #include <linux/kernel.h>
  #include <linux/fs.h>
  #include <linux/mm.h>
  #include <linux/miscdevice.h>
  #include <linux/watchdog.h>
  #include <linux/notifier.h>
  #include <linux/reboot.h>
  #include <linux/init.h>
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
26
  #include <linux/uaccess.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
29
  #include <asm/sgi/mc.h>
  
  #define PFX "indydog: "
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
30
  static unsigned long indydog_alive;
1334f3293   Axel Lin   watchdog: Use DEF...
31
  static DEFINE_SPINLOCK(indydog_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
  #define WATCHDOG_TIMEOUT 30		/* 30 sec default timeout */
4bfdf3783   Andrey Panin   [PATCH] consolida...
34
  static int nowayout = WATCHDOG_NOWAYOUT;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
  module_param(nowayout, int, 0);
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
36
37
38
  MODULE_PARM_DESC(nowayout,
  		"Watchdog cannot be stopped once started (default="
  				__MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39
40
41
  
  static void indydog_start(void)
  {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
42
  	u32 mc_ctrl0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
43

9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
44
45
  	spin_lock(&indydog_lock);
  	mc_ctrl0 = sgimc->cpuctrl0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
47
  	mc_ctrl0 = sgimc->cpuctrl0 | SGIMC_CCTRL0_WDOG;
  	sgimc->cpuctrl0 = mc_ctrl0;
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
48
  	spin_unlock(&indydog_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
51
52
  }
  
  static void indydog_stop(void)
  {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
53
  	u32 mc_ctrl0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54

9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
55
56
57
  	spin_lock(&indydog_lock);
  
  	mc_ctrl0 = sgimc->cpuctrl0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
58
59
  	mc_ctrl0 &= ~SGIMC_CCTRL0_WDOG;
  	sgimc->cpuctrl0 = mc_ctrl0;
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
60
  	spin_unlock(&indydog_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  
  	printk(KERN_INFO PFX "Stopped watchdog timer.
  ");
  }
  
  static void indydog_ping(void)
  {
  	sgimc->watchdogt = 0;
  }
  
  /*
   *	Allow only one person to hold it open
   */
  static int indydog_open(struct inode *inode, struct file *file)
  {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
76
  	if (test_and_set_bit(0, &indydog_alive))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
77
78
79
80
81
82
83
84
  		return -EBUSY;
  
  	if (nowayout)
  		__module_get(THIS_MODULE);
  
  	/* Activate timer */
  	indydog_start();
  	indydog_ping();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
86
87
88
89
90
91
92
93
94
95
96
  	printk(KERN_INFO "Started watchdog timer.
  ");
  
  	return nonseekable_open(inode, file);
  }
  
  static int indydog_release(struct inode *inode, struct file *file)
  {
  	/* Shut off the timer.
  	 * Lock it in if it's a module and we defined ...NOWAYOUT */
  	if (!nowayout)
  		indydog_stop();		/* Turn the WDT off */
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
97
  	clear_bit(0, &indydog_alive);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
98
99
  	return 0;
  }
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
100
101
  static ssize_t indydog_write(struct file *file, const char *data,
  						size_t len, loff_t *ppos)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102
103
  {
  	/* Refresh the timer. */
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
104
  	if (len)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105
  		indydog_ping();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
106
107
  	return len;
  }
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
108
109
  static long indydog_ioctl(struct file *file, unsigned int cmd,
  							unsigned long arg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
110
111
  {
  	int options, retval = -EINVAL;
42747d712   Wim Van Sebroeck   [WATCHDOG] watchd...
112
  	static const struct watchdog_info ident = {
e73a78027   Wim Van Sebroeck   [WATCHDOG] Correc...
113
  		.options		= WDIOF_KEEPALIVEPING,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
114
115
116
117
118
  		.firmware_version	= 0,
  		.identity		= "Hardware Watchdog for SGI IP22",
  	};
  
  	switch (cmd) {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
119
120
121
122
123
124
125
126
  	case WDIOC_GETSUPPORT:
  		if (copy_to_user((struct watchdog_info *)arg,
  				 &ident, sizeof(ident)))
  			return -EFAULT;
  		return 0;
  	case WDIOC_GETSTATUS:
  	case WDIOC_GETBOOTSTATUS:
  		return put_user(0, (int *)arg);
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
127
128
129
130
131
132
133
134
135
136
137
  	case WDIOC_SETOPTIONS:
  	{
  		if (get_user(options, (int *)arg))
  			return -EFAULT;
  		if (options & WDIOS_DISABLECARD) {
  			indydog_stop();
  			retval = 0;
  		}
  		if (options & WDIOS_ENABLECARD) {
  			indydog_start();
  			retval = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
138
  		}
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
139
140
  		return retval;
  	}
0c06090c9   Wim Van Sebroeck   [WATCHDOG] Coding...
141
142
143
144
145
  	case WDIOC_KEEPALIVE:
  		indydog_ping();
  		return 0;
  	case WDIOC_GETTIMEOUT:
  		return put_user(WATCHDOG_TIMEOUT, (int *)arg);
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
146
147
  	default:
  		return -ENOTTY;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
149
  	}
  }
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
150
151
  static int indydog_notify_sys(struct notifier_block *this,
  					unsigned long code, void *unused)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
152
153
154
155
156
157
  {
  	if (code == SYS_DOWN || code == SYS_HALT)
  		indydog_stop();		/* Turn the WDT off */
  
  	return NOTIFY_DONE;
  }
62322d255   Arjan van de Ven   [PATCH] make more...
158
  static const struct file_operations indydog_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
159
160
161
  	.owner		= THIS_MODULE,
  	.llseek		= no_llseek,
  	.write		= indydog_write,
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
162
  	.unlocked_ioctl	= indydog_ioctl,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
  	.open		= indydog_open,
  	.release	= indydog_release,
  };
  
  static struct miscdevice indydog_miscdev = {
  	.minor		= WATCHDOG_MINOR,
  	.name		= "watchdog",
  	.fops		= &indydog_fops,
  };
  
  static struct notifier_block indydog_notifier = {
  	.notifier_call = indydog_notify_sys,
  };
  
  static char banner[] __initdata =
  	KERN_INFO PFX "Hardware Watchdog Timer for SGI IP22: 0.3
  ";
  
  static int __init watchdog_init(void)
  {
  	int ret;
  
  	ret = register_reboot_notifier(&indydog_notifier);
  	if (ret) {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
187
188
189
  		printk(KERN_ERR PFX
  			"cannot register reboot notifier (err=%d)
  ", ret);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
190
191
192
193
194
  		return ret;
  	}
  
  	ret = misc_register(&indydog_miscdev);
  	if (ret) {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
195
196
197
198
  		printk(KERN_ERR PFX
  			"cannot register miscdev on minor=%d (err=%d)
  ",
  							WATCHDOG_MINOR, ret);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
  		unregister_reboot_notifier(&indydog_notifier);
  		return ret;
  	}
  
  	printk(banner);
  
  	return 0;
  }
  
  static void __exit watchdog_exit(void)
  {
  	misc_deregister(&indydog_miscdev);
  	unregister_reboot_notifier(&indydog_notifier);
  }
  
  module_init(watchdog_init);
  module_exit(watchdog_exit);
  
  MODULE_AUTHOR("Guido Guenther <agx@sigxcpu.org>");
  MODULE_DESCRIPTION("Hardware Watchdog Device for SGI IP22");
  MODULE_LICENSE("GPL");
  MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);