cpu5wdt.c 6.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * sma cpu5 watchdog driver
 *
 * Copyright (C) 2003 Heiko Ronsdorf <hero@ihg.uni-duisburg.de>
 *
 * 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.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

22 23
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/miscdevice.h>
#include <linux/fs.h>
#include <linux/ioport.h>
#include <linux/timer.h>
32
#include <linux/completion.h>
T
Tim Schmielau 已提交
33
#include <linux/jiffies.h>
34 35
#include <linux/io.h>
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
36 37 38 39
#include <linux/watchdog.h>

/* adjustable parameters */

40
static int verbose;
L
Linus Torvalds 已提交
41 42
static int port = 0x91;
static int ticks = 10000;
43
static DEFINE_SPINLOCK(cpu5wdt_lock);
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61

#define PFX			"cpu5wdt: "

#define CPU5WDT_EXTENT          0x0A

#define CPU5WDT_STATUS_REG      0x00
#define CPU5WDT_TIME_A_REG      0x02
#define CPU5WDT_TIME_B_REG      0x03
#define CPU5WDT_MODE_REG        0x04
#define CPU5WDT_TRIGGER_REG     0x07
#define CPU5WDT_ENABLE_REG      0x08
#define CPU5WDT_RESET_REG       0x09

#define CPU5WDT_INTERVAL	(HZ/10+1)

/* some device data */

static struct {
62
	struct completion stop;
63
	int running;
L
Linus Torvalds 已提交
64
	struct timer_list timer;
65
	int queue;
L
Linus Torvalds 已提交
66 67 68 69 70 71 72 73
	int default_ticks;
	unsigned long inuse;
} cpu5wdt_device;

/* generic helper functions */

static void cpu5wdt_trigger(unsigned long unused)
{
74
	if (verbose > 2)
75
		pr_debug("trigger at %i ticks\n", ticks);
L
Linus Torvalds 已提交
76

77
	if (cpu5wdt_device.running)
L
Linus Torvalds 已提交
78 79
		ticks--;

80
	spin_lock(&cpu5wdt_lock);
L
Linus Torvalds 已提交
81 82 83 84
	/* keep watchdog alive */
	outb(1, port + CPU5WDT_TRIGGER_REG);

	/* requeue?? */
J
Jiri Slaby 已提交
85 86
	if (cpu5wdt_device.queue && ticks)
		mod_timer(&cpu5wdt_device.timer, jiffies + CPU5WDT_INTERVAL);
L
Linus Torvalds 已提交
87 88
	else {
		/* ticks doesn't matter anyway */
89
		complete(&cpu5wdt_device.stop);
L
Linus Torvalds 已提交
90
	}
91
	spin_unlock(&cpu5wdt_lock);
L
Linus Torvalds 已提交
92 93 94 95 96 97 98

}

static void cpu5wdt_reset(void)
{
	ticks = cpu5wdt_device.default_ticks;

99
	if (verbose)
100
		pr_debug("reset (%i ticks)\n", (int) ticks);
L
Linus Torvalds 已提交
101 102 103 104 105

}

static void cpu5wdt_start(void)
{
106 107 108 109
	unsigned long flags;

	spin_lock_irqsave(&cpu5wdt_lock, flags);
	if (!cpu5wdt_device.queue) {
L
Linus Torvalds 已提交
110 111 112 113 114 115
		cpu5wdt_device.queue = 1;
		outb(0, port + CPU5WDT_TIME_A_REG);
		outb(0, port + CPU5WDT_TIME_B_REG);
		outb(1, port + CPU5WDT_MODE_REG);
		outb(0, port + CPU5WDT_RESET_REG);
		outb(0, port + CPU5WDT_ENABLE_REG);
J
Jiri Slaby 已提交
116
		mod_timer(&cpu5wdt_device.timer, jiffies + CPU5WDT_INTERVAL);
L
Linus Torvalds 已提交
117 118 119
	}
	/* if process dies, counter is not decremented */
	cpu5wdt_device.running++;
120
	spin_unlock_irqrestore(&cpu5wdt_lock, flags);
L
Linus Torvalds 已提交
121 122 123 124
}

static int cpu5wdt_stop(void)
{
125
	unsigned long flags;
L
Linus Torvalds 已提交
126

127 128 129
	spin_lock_irqsave(&cpu5wdt_lock, flags);
	if (cpu5wdt_device.running)
		cpu5wdt_device.running = 0;
L
Linus Torvalds 已提交
130
	ticks = cpu5wdt_device.default_ticks;
131 132
	spin_unlock_irqrestore(&cpu5wdt_lock, flags);
	if (verbose)
133
		pr_crit("stop not possible\n");
L
Linus Torvalds 已提交
134 135 136 137 138 139 140
	return -EIO;
}

/* filesystem operations */

static int cpu5wdt_open(struct inode *inode, struct file *file)
{
141
	if (test_and_set_bit(0, &cpu5wdt_device.inuse))
L
Linus Torvalds 已提交
142 143 144 145 146 147 148 149 150 151
		return -EBUSY;
	return nonseekable_open(inode, file);
}

static int cpu5wdt_release(struct inode *inode, struct file *file)
{
	clear_bit(0, &cpu5wdt_device.inuse);
	return 0;
}

152 153
static long cpu5wdt_ioctl(struct file *file, unsigned int cmd,
						unsigned long arg)
L
Linus Torvalds 已提交
154 155
{
	void __user *argp = (void __user *)arg;
156
	int __user *p = argp;
L
Linus Torvalds 已提交
157
	unsigned int value;
158
	static const struct watchdog_info ident = {
L
Linus Torvalds 已提交
159 160 161 162
		.options = WDIOF_CARDRESET,
		.identity = "CPU5 WDT",
	};

163
	switch (cmd) {
164 165 166
	case WDIOC_GETSUPPORT:
		if (copy_to_user(argp, &ident, sizeof(ident)))
			return -EFAULT;
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
		break;
	case WDIOC_GETSTATUS:
		value = inb(port + CPU5WDT_STATUS_REG);
		value = (value >> 2) & 1;
		return put_user(value, p);
	case WDIOC_GETBOOTSTATUS:
		return put_user(0, p);
	case WDIOC_SETOPTIONS:
		if (get_user(value, p))
			return -EFAULT;
		if (value & WDIOS_ENABLECARD)
			cpu5wdt_start();
		if (value & WDIOS_DISABLECARD)
			cpu5wdt_stop();
		break;
182 183 184
	case WDIOC_KEEPALIVE:
		cpu5wdt_reset();
		break;
185 186
	default:
		return -ENOTTY;
L
Linus Torvalds 已提交
187 188 189 190
	}
	return 0;
}

191 192
static ssize_t cpu5wdt_write(struct file *file, const char __user *buf,
						size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
193
{
194
	if (!count)
L
Linus Torvalds 已提交
195 196 197 198 199
		return -EIO;
	cpu5wdt_reset();
	return count;
}

200
static const struct file_operations cpu5wdt_fops = {
L
Linus Torvalds 已提交
201 202
	.owner		= THIS_MODULE,
	.llseek		= no_llseek,
203
	.unlocked_ioctl	= cpu5wdt_ioctl,
L
Linus Torvalds 已提交
204 205 206 207 208 209 210 211 212 213 214 215 216
	.open		= cpu5wdt_open,
	.write		= cpu5wdt_write,
	.release	= cpu5wdt_release,
};

static struct miscdevice cpu5wdt_misc = {
	.minor	= WATCHDOG_MINOR,
	.name	= "watchdog",
	.fops	= &cpu5wdt_fops,
};

/* init/exit function */

B
Bill Pemberton 已提交
217
static int cpu5wdt_init(void)
L
Linus Torvalds 已提交
218 219 220 221
{
	unsigned int val;
	int err;

222
	if (verbose)
223
		pr_debug("port=0x%x, verbose=%i\n", port, verbose);
L
Linus Torvalds 已提交
224

225 226 227 228 229 230
	init_completion(&cpu5wdt_device.stop);
	cpu5wdt_device.queue = 0;
	setup_timer(&cpu5wdt_device.timer, cpu5wdt_trigger, 0);
	cpu5wdt_device.default_ticks = ticks;

	if (!request_region(port, CPU5WDT_EXTENT, PFX)) {
231
		pr_err("request_region failed\n");
L
Linus Torvalds 已提交
232 233 234 235 236 237 238
		err = -EBUSY;
		goto no_port;
	}

	/* watchdog reboot? */
	val = inb(port + CPU5WDT_STATUS_REG);
	val = (val >> 2) & 1;
239
	if (!val)
240
		pr_info("sorry, was my fault\n");
L
Linus Torvalds 已提交
241

242 243
	err = misc_register(&cpu5wdt_misc);
	if (err < 0) {
244
		pr_err("misc_register failed\n");
245 246
		goto no_misc;
	}
L
Linus Torvalds 已提交
247 248


249
	pr_info("init success\n");
L
Linus Torvalds 已提交
250 251 252
	return 0;

no_misc:
253 254
	release_region(port, CPU5WDT_EXTENT);
no_port:
L
Linus Torvalds 已提交
255 256 257
	return err;
}

B
Bill Pemberton 已提交
258
static int cpu5wdt_init_module(void)
L
Linus Torvalds 已提交
259 260 261 262
{
	return cpu5wdt_init();
}

B
Bill Pemberton 已提交
263
static void cpu5wdt_exit(void)
L
Linus Torvalds 已提交
264
{
265
	if (cpu5wdt_device.queue) {
L
Linus Torvalds 已提交
266
		cpu5wdt_device.queue = 0;
267
		wait_for_completion(&cpu5wdt_device.stop);
268
		del_timer(&cpu5wdt_device.timer);
L
Linus Torvalds 已提交
269 270 271 272 273 274 275 276
	}

	misc_deregister(&cpu5wdt_misc);

	release_region(port, CPU5WDT_EXTENT);

}

B
Bill Pemberton 已提交
277
static void cpu5wdt_exit_module(void)
L
Linus Torvalds 已提交
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
{
	cpu5wdt_exit();
}

/* module entry points */

module_init(cpu5wdt_init_module);
module_exit(cpu5wdt_exit_module);

MODULE_AUTHOR("Heiko Ronsdorf <hero@ihg.uni-duisburg.de>");
MODULE_DESCRIPTION("sma cpu5 watchdog driver");
MODULE_SUPPORTED_DEVICE("sma cpu5 watchdog");
MODULE_LICENSE("GPL");

module_param(port, int, 0);
MODULE_PARM_DESC(port, "base address of watchdog card, default is 0x91");

module_param(verbose, int, 0);
MODULE_PARM_DESC(verbose, "be verbose, default is 0 (no)");

module_param(ticks, int, 0);
MODULE_PARM_DESC(ticks, "count down ticks, default is 10000");