turbografx.c 8.0 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 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
/*
 * $Id: turbografx.c,v 1.14 2002/01/22 20:30:39 vojtech Exp $
 *
 *  Copyright (c) 1998-2001 Vojtech Pavlik
 *
 *  Based on the work of:
 *	Steffen Schwenke
 */

/*
 * TurboGraFX parallel port interface driver for Linux.
 */

/*
 * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * Should you need to contact me, the author, you can do so either by
 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
 */

#include <linux/kernel.h>
#include <linux/parport.h>
#include <linux/input.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
40
#include <linux/mutex.h>
L
Linus Torvalds 已提交
41 42 43 44 45

MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
MODULE_DESCRIPTION("TurboGraFX parallel port interface driver");
MODULE_LICENSE("GPL");

46 47
#define TGFX_MAX_PORTS		3
#define TGFX_MAX_DEVICES	7
L
Linus Torvalds 已提交
48

49 50
struct tgfx_config {
	int args[TGFX_MAX_DEVICES + 1];
51
	unsigned int nargs;
52 53
};

54
static struct tgfx_config tgfx_cfg[TGFX_MAX_PORTS] __initdata;
L
Linus Torvalds 已提交
55

56
module_param_array_named(map, tgfx_cfg[0].args, int, &tgfx_cfg[0].nargs, 0);
57
MODULE_PARM_DESC(map, "Describes first set of devices (<parport#>,<js1>,<js2>,..<js7>");
58
module_param_array_named(map2, tgfx_cfg[1].args, int, &tgfx_cfg[1].nargs, 0);
59
MODULE_PARM_DESC(map2, "Describes second set of devices");
60
module_param_array_named(map3, tgfx_cfg[2].args, int, &tgfx_cfg[2].nargs, 0);
L
Linus Torvalds 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
MODULE_PARM_DESC(map3, "Describes third set of devices");

#define TGFX_REFRESH_TIME	HZ/100	/* 10 ms */

#define TGFX_TRIGGER		0x08
#define TGFX_UP			0x10
#define TGFX_DOWN		0x20
#define TGFX_LEFT		0x40
#define TGFX_RIGHT		0x80

#define TGFX_THUMB		0x02
#define TGFX_THUMB2		0x04
#define TGFX_TOP		0x01
#define TGFX_TOP2		0x08

static int tgfx_buttons[] = { BTN_TRIGGER, BTN_THUMB, BTN_THUMB2, BTN_TOP, BTN_TOP2 };

static struct tgfx {
	struct pardevice *pd;
	struct timer_list timer;
81 82 83
	struct input_dev *dev[TGFX_MAX_DEVICES];
	char name[TGFX_MAX_DEVICES][64];
	char phys[TGFX_MAX_DEVICES][32];
L
Linus Torvalds 已提交
84 85
	int sticks;
	int used;
86
	struct mutex sem;
87
} *tgfx_base[TGFX_MAX_PORTS];
L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101

/*
 * tgfx_timer() reads and analyzes TurboGraFX joystick data.
 */

static void tgfx_timer(unsigned long private)
{
	struct tgfx *tgfx = (void *) private;
	struct input_dev *dev;
	int data1, data2, i;

	for (i = 0; i < 7; i++)
		if (tgfx->sticks & (1 << i)) {

102
			dev = tgfx->dev[i];
L
Linus Torvalds 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

			parport_write_data(tgfx->pd->port, ~(1 << i));
			data1 = parport_read_status(tgfx->pd->port) ^ 0x7f;
			data2 = parport_read_control(tgfx->pd->port) ^ 0x04;	/* CAVEAT parport */

			input_report_abs(dev, ABS_X, !!(data1 & TGFX_RIGHT) - !!(data1 & TGFX_LEFT));
			input_report_abs(dev, ABS_Y, !!(data1 & TGFX_DOWN ) - !!(data1 & TGFX_UP  ));

			input_report_key(dev, BTN_TRIGGER, (data1 & TGFX_TRIGGER));
			input_report_key(dev, BTN_THUMB,   (data2 & TGFX_THUMB  ));
			input_report_key(dev, BTN_THUMB2,  (data2 & TGFX_THUMB2 ));
			input_report_key(dev, BTN_TOP,     (data2 & TGFX_TOP    ));
			input_report_key(dev, BTN_TOP2,    (data2 & TGFX_TOP2   ));

			input_sync(dev);
		}

	mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
}

static int tgfx_open(struct input_dev *dev)
{
125
	struct tgfx *tgfx = input_get_drvdata(dev);
126 127
	int err;

128
	err = mutex_lock_interruptible(&tgfx->sem);
129 130 131
	if (err)
		return err;

132
	if (!tgfx->used++) {
L
Linus Torvalds 已提交
133 134
		parport_claim(tgfx->pd);
		parport_write_control(tgfx->pd->port, 0x04);
135
		mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
L
Linus Torvalds 已提交
136
	}
137

138
	mutex_unlock(&tgfx->sem);
139
	return 0;
L
Linus Torvalds 已提交
140 141 142 143
}

static void tgfx_close(struct input_dev *dev)
{
144
	struct tgfx *tgfx = input_get_drvdata(dev);
145

146
	mutex_lock(&tgfx->sem);
147
	if (!--tgfx->used) {
148
		del_timer_sync(&tgfx->timer);
L
Linus Torvalds 已提交
149
		parport_write_control(tgfx->pd->port, 0x00);
150
		parport_release(tgfx->pd);
L
Linus Torvalds 已提交
151
	}
152
	mutex_unlock(&tgfx->sem);
L
Linus Torvalds 已提交
153 154
}

155 156


L
Linus Torvalds 已提交
157 158 159 160
/*
 * tgfx_probe() probes for tg gamepads.
 */

161
static struct tgfx __init *tgfx_probe(int parport, int *n_buttons, int n_devs)
L
Linus Torvalds 已提交
162 163
{
	struct tgfx *tgfx;
164
	struct input_dev *input_dev;
L
Linus Torvalds 已提交
165
	struct parport *pp;
166
	struct pardevice *pd;
L
Linus Torvalds 已提交
167
	int i, j;
168
	int err;
L
Linus Torvalds 已提交
169

170
	pp = parport_find_number(parport);
L
Linus Torvalds 已提交
171 172
	if (!pp) {
		printk(KERN_ERR "turbografx.c: no such parport\n");
173 174
		err = -EINVAL;
		goto err_out;
L
Linus Torvalds 已提交
175 176
	}

177 178 179 180 181
	pd = parport_register_device(pp, "turbografx", NULL, NULL, NULL, PARPORT_DEV_EXCL, NULL);
	if (!pd) {
		printk(KERN_ERR "turbografx.c: parport busy already - lp.o loaded?\n");
		err = -EBUSY;
		goto err_put_pp;
L
Linus Torvalds 已提交
182
	}
183

184 185 186 187 188
	tgfx = kzalloc(sizeof(struct tgfx), GFP_KERNEL);
	if (!tgfx) {
		printk(KERN_ERR "turbografx.c: Not enough memory\n");
		err = -ENOMEM;
		goto err_unreg_pardev;
L
Linus Torvalds 已提交
189 190
	}

191
	mutex_init(&tgfx->sem);
192
	tgfx->pd = pd;
L
Linus Torvalds 已提交
193 194 195 196
	init_timer(&tgfx->timer);
	tgfx->timer.data = (long) tgfx;
	tgfx->timer.function = tgfx_timer;

197 198 199
	for (i = 0; i < n_devs; i++) {
		if (n_buttons[i] < 1)
			continue;
L
Linus Torvalds 已提交
200

201 202 203
		if (n_buttons[i] > 6) {
			printk(KERN_ERR "turbografx.c: Invalid number of buttons %d\n", n_buttons[i]);
			err = -EINVAL;
204
			goto err_unreg_devs;
205
		}
L
Linus Torvalds 已提交
206

207 208 209 210
		tgfx->dev[i] = input_dev = input_allocate_device();
		if (!input_dev) {
			printk(KERN_ERR "turbografx.c: Not enough memory for input device\n");
			err = -ENOMEM;
211
			goto err_unreg_devs;
212
		}
L
Linus Torvalds 已提交
213

214 215 216 217 218
		tgfx->sticks |= (1 << i);
		snprintf(tgfx->name[i], sizeof(tgfx->name[i]),
			 "TurboGraFX %d-button Multisystem joystick", n_buttons[i]);
		snprintf(tgfx->phys[i], sizeof(tgfx->phys[i]),
			 "%s/input%d", tgfx->pd->port->name, i);
L
Linus Torvalds 已提交
219

220 221 222 223 224 225
		input_dev->name = tgfx->name[i];
		input_dev->phys = tgfx->phys[i];
		input_dev->id.bustype = BUS_PARPORT;
		input_dev->id.vendor = 0x0003;
		input_dev->id.product = n_buttons[i];
		input_dev->id.version = 0x0100;
L
Linus Torvalds 已提交
226

227 228
		input_set_drvdata(input_dev, tgfx);

229 230
		input_dev->open = tgfx_open;
		input_dev->close = tgfx_close;
L
Linus Torvalds 已提交
231

232 233 234
		input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
		input_set_abs_params(input_dev, ABS_X, -1, 1, 0, 0);
		input_set_abs_params(input_dev, ABS_Y, -1, 1, 0, 0);
L
Linus Torvalds 已提交
235

236 237
		for (j = 0; j < n_buttons[i]; j++)
			set_bit(tgfx_buttons[j], input_dev->keybit);
L
Linus Torvalds 已提交
238

239 240 241
		err = input_register_device(tgfx->dev[i]);
		if (err)
			goto err_free_dev;
242
	}
L
Linus Torvalds 已提交
243 244

        if (!tgfx->sticks) {
245 246 247
		printk(KERN_ERR "turbografx.c: No valid devices specified\n");
		err = -EINVAL;
		goto err_free_tgfx;
L
Linus Torvalds 已提交
248 249 250
        }

	return tgfx;
251

252 253 254
 err_free_dev:
	input_free_device(tgfx->dev[i]);
 err_unreg_devs:
255
	while (--i >= 0)
256 257
		if (tgfx->dev[i])
			input_unregister_device(tgfx->dev[i]);
258 259 260 261 262 263 264 265 266 267
 err_free_tgfx:
	kfree(tgfx);
 err_unreg_pardev:
	parport_unregister_device(pd);
 err_put_pp:
	parport_put_port(pp);
 err_out:
	return ERR_PTR(err);
}

268
static void tgfx_remove(struct tgfx *tgfx)
269 270 271 272 273 274 275 276
{
	int i;

	for (i = 0; i < TGFX_MAX_DEVICES; i++)
		if (tgfx->dev[i])
			input_unregister_device(tgfx->dev[i]);
	parport_unregister_device(tgfx->pd);
	kfree(tgfx);
L
Linus Torvalds 已提交
277 278 279 280
}

static int __init tgfx_init(void)
{
281 282 283 284 285
	int i;
	int have_dev = 0;
	int err = 0;

	for (i = 0; i < TGFX_MAX_PORTS; i++) {
286
		if (tgfx_cfg[i].nargs == 0 || tgfx_cfg[i].args[0] < 0)
287 288
			continue;

289
		if (tgfx_cfg[i].nargs < 2) {
290 291 292 293 294
			printk(KERN_ERR "turbografx.c: at least one joystick must be specified\n");
			err = -EINVAL;
			break;
		}

295 296 297
		tgfx_base[i] = tgfx_probe(tgfx_cfg[i].args[0],
					  tgfx_cfg[i].args + 1,
					  tgfx_cfg[i].nargs - 1);
298 299 300 301 302 303 304
		if (IS_ERR(tgfx_base[i])) {
			err = PTR_ERR(tgfx_base[i]);
			break;
		}

		have_dev = 1;
	}
L
Linus Torvalds 已提交
305

306 307
	if (err) {
		while (--i >= 0)
308 309
			if (tgfx_base[i])
				tgfx_remove(tgfx_base[i]);
310 311
		return err;
	}
L
Linus Torvalds 已提交
312

313
	return have_dev ? 0 : -ENODEV;
L
Linus Torvalds 已提交
314 315 316 317
}

static void __exit tgfx_exit(void)
{
318
	int i;
L
Linus Torvalds 已提交
319

320 321 322
	for (i = 0; i < TGFX_MAX_PORTS; i++)
		if (tgfx_base[i])
			tgfx_remove(tgfx_base[i]);
L
Linus Torvalds 已提交
323 324 325 326
}

module_init(tgfx_init);
module_exit(tgfx_exit);