blob: 5570fd5487c730bc973b29736033942c00c1c560 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * $Id: turbografx.c,v 1.14 2002/01/22 20:30:39 vojtech Exp $
3 *
4 * Copyright (c) 1998-2001 Vojtech Pavlik
5 *
6 * Based on the work of:
7 * Steffen Schwenke
8 */
9
10/*
11 * TurboGraFX parallel port interface driver for Linux.
12 */
13
14/*
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 *
29 * Should you need to contact me, the author, you can do so either by
30 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
31 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
32 */
33
34#include <linux/kernel.h>
35#include <linux/parport.h>
36#include <linux/input.h>
37#include <linux/module.h>
38#include <linux/moduleparam.h>
39#include <linux/init.h>
Ingo Molnar72ba9f02006-02-19 00:22:30 -050040#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
43MODULE_DESCRIPTION("TurboGraFX parallel port interface driver");
44MODULE_LICENSE("GPL");
45
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050046#define TGFX_MAX_PORTS 3
47#define TGFX_MAX_DEVICES 7
48
49struct tgfx_config {
50 int args[TGFX_MAX_DEVICES + 1];
51 int nargs;
52};
53
54static struct tgfx_config tgfx[TGFX_MAX_PORTS] __initdata;
55
56module_param_array_named(map, tgfx[0].args, int, &tgfx[0].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057MODULE_PARM_DESC(map, "Describes first set of devices (<parport#>,<js1>,<js2>,..<js7>");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050058module_param_array_named(map2, tgfx[1].args, int, &tgfx[1].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059MODULE_PARM_DESC(map2, "Describes second set of devices");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050060module_param_array_named(map3, tgfx[2].args, int, &tgfx[2].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061MODULE_PARM_DESC(map3, "Describes third set of devices");
62
63__obsolete_setup("tgfx=");
64__obsolete_setup("tgfx_2=");
65__obsolete_setup("tgfx_3=");
66
67#define TGFX_REFRESH_TIME HZ/100 /* 10 ms */
68
69#define TGFX_TRIGGER 0x08
70#define TGFX_UP 0x10
71#define TGFX_DOWN 0x20
72#define TGFX_LEFT 0x40
73#define TGFX_RIGHT 0x80
74
75#define TGFX_THUMB 0x02
76#define TGFX_THUMB2 0x04
77#define TGFX_TOP 0x01
78#define TGFX_TOP2 0x08
79
80static int tgfx_buttons[] = { BTN_TRIGGER, BTN_THUMB, BTN_THUMB2, BTN_TOP, BTN_TOP2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82static struct tgfx {
83 struct pardevice *pd;
84 struct timer_list timer;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050085 struct input_dev *dev[TGFX_MAX_DEVICES];
86 char name[TGFX_MAX_DEVICES][64];
87 char phys[TGFX_MAX_DEVICES][32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 int sticks;
89 int used;
Ingo Molnar72ba9f02006-02-19 00:22:30 -050090 struct mutex sem;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050091} *tgfx_base[TGFX_MAX_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/*
94 * tgfx_timer() reads and analyzes TurboGraFX joystick data.
95 */
96
97static void tgfx_timer(unsigned long private)
98{
99 struct tgfx *tgfx = (void *) private;
100 struct input_dev *dev;
101 int data1, data2, i;
102
103 for (i = 0; i < 7; i++)
104 if (tgfx->sticks & (1 << i)) {
105
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500106 dev = tgfx->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 parport_write_data(tgfx->pd->port, ~(1 << i));
109 data1 = parport_read_status(tgfx->pd->port) ^ 0x7f;
110 data2 = parport_read_control(tgfx->pd->port) ^ 0x04; /* CAVEAT parport */
111
112 input_report_abs(dev, ABS_X, !!(data1 & TGFX_RIGHT) - !!(data1 & TGFX_LEFT));
113 input_report_abs(dev, ABS_Y, !!(data1 & TGFX_DOWN ) - !!(data1 & TGFX_UP ));
114
115 input_report_key(dev, BTN_TRIGGER, (data1 & TGFX_TRIGGER));
116 input_report_key(dev, BTN_THUMB, (data2 & TGFX_THUMB ));
117 input_report_key(dev, BTN_THUMB2, (data2 & TGFX_THUMB2 ));
118 input_report_key(dev, BTN_TOP, (data2 & TGFX_TOP ));
119 input_report_key(dev, BTN_TOP2, (data2 & TGFX_TOP2 ));
120
121 input_sync(dev);
122 }
123
124 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
125}
126
127static int tgfx_open(struct input_dev *dev)
128{
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500129 struct tgfx *tgfx = dev->private;
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500130 int err;
131
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500132 err = mutex_lock_interruptible(&tgfx->sem);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500133 if (err)
134 return err;
135
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500136 if (!tgfx->used++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 parport_claim(tgfx->pd);
138 parport_write_control(tgfx->pd->port, 0x04);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500139 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500141
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500142 mutex_unlock(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146static void tgfx_close(struct input_dev *dev)
147{
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500148 struct tgfx *tgfx = dev->private;
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500149
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500150 mutex_lock(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500151 if (!--tgfx->used) {
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500152 del_timer_sync(&tgfx->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 parport_write_control(tgfx->pd->port, 0x00);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500154 parport_release(tgfx->pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500156 mutex_unlock(&tgfx->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500159
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * tgfx_probe() probes for tg gamepads.
163 */
164
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500165static struct tgfx __init *tgfx_probe(int parport, int *n_buttons, int n_devs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct tgfx *tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500168 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 struct parport *pp;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500170 struct pardevice *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 int i, j;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500172 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500174 pp = parport_find_number(parport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (!pp) {
176 printk(KERN_ERR "turbografx.c: no such parport\n");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500177 err = -EINVAL;
178 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500181 pd = parport_register_device(pp, "turbografx", NULL, NULL, NULL, PARPORT_DEV_EXCL, NULL);
182 if (!pd) {
183 printk(KERN_ERR "turbografx.c: parport busy already - lp.o loaded?\n");
184 err = -EBUSY;
185 goto err_put_pp;
186 }
187
188 tgfx = kzalloc(sizeof(struct tgfx), GFP_KERNEL);
189 if (!tgfx) {
190 printk(KERN_ERR "turbografx.c: Not enough memory\n");
191 err = -ENOMEM;
192 goto err_unreg_pardev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500194
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500195 mutex_init(&tgfx->sem);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500196 tgfx->pd = pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 init_timer(&tgfx->timer);
198 tgfx->timer.data = (long) tgfx;
199 tgfx->timer.function = tgfx_timer;
200
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500201 for (i = 0; i < n_devs; i++) {
202 if (n_buttons[i] < 1)
203 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500205 if (n_buttons[i] > 6) {
206 printk(KERN_ERR "turbografx.c: Invalid number of buttons %d\n", n_buttons[i]);
207 err = -EINVAL;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500208 goto err_unreg_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500211 tgfx->dev[i] = input_dev = input_allocate_device();
212 if (!input_dev) {
213 printk(KERN_ERR "turbografx.c: Not enough memory for input device\n");
214 err = -ENOMEM;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500215 goto err_unreg_devs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500216 }
217
218 tgfx->sticks |= (1 << i);
219 snprintf(tgfx->name[i], sizeof(tgfx->name[i]),
220 "TurboGraFX %d-button Multisystem joystick", n_buttons[i]);
221 snprintf(tgfx->phys[i], sizeof(tgfx->phys[i]),
222 "%s/input%d", tgfx->pd->port->name, i);
223
224 input_dev->name = tgfx->name[i];
225 input_dev->phys = tgfx->phys[i];
226 input_dev->id.bustype = BUS_PARPORT;
227 input_dev->id.vendor = 0x0003;
228 input_dev->id.product = n_buttons[i];
229 input_dev->id.version = 0x0100;
230
231 input_dev->private = tgfx;
232 input_dev->open = tgfx_open;
233 input_dev->close = tgfx_close;
234
235 input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
236 input_set_abs_params(input_dev, ABS_X, -1, 1, 0, 0);
237 input_set_abs_params(input_dev, ABS_Y, -1, 1, 0, 0);
238
239 for (j = 0; j < n_buttons[i]; j++)
240 set_bit(tgfx_buttons[j], input_dev->keybit);
241
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500242 err = input_register_device(tgfx->dev[i]);
243 if (err)
244 goto err_free_dev;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500245 }
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (!tgfx->sticks) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500248 printk(KERN_ERR "turbografx.c: No valid devices specified\n");
249 err = -EINVAL;
250 goto err_free_tgfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
253 return tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500254
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500255 err_free_dev:
256 input_free_device(tgfx->dev[i]);
257 err_unreg_devs:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500258 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500259 if (tgfx->dev[i])
260 input_unregister_device(tgfx->dev[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500261 err_free_tgfx:
262 kfree(tgfx);
263 err_unreg_pardev:
264 parport_unregister_device(pd);
265 err_put_pp:
266 parport_put_port(pp);
267 err_out:
268 return ERR_PTR(err);
269}
270
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500271static void tgfx_remove(struct tgfx *tgfx)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500272{
273 int i;
274
275 for (i = 0; i < TGFX_MAX_DEVICES; i++)
276 if (tgfx->dev[i])
277 input_unregister_device(tgfx->dev[i]);
278 parport_unregister_device(tgfx->pd);
279 kfree(tgfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282static int __init tgfx_init(void)
283{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500284 int i;
285 int have_dev = 0;
286 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500288 for (i = 0; i < TGFX_MAX_PORTS; i++) {
289 if (tgfx[i].nargs == 0 || tgfx[i].args[0] < 0)
290 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500292 if (tgfx[i].nargs < 2) {
293 printk(KERN_ERR "turbografx.c: at least one joystick must be specified\n");
294 err = -EINVAL;
295 break;
296 }
297
298 tgfx_base[i] = tgfx_probe(tgfx[i].args[0], tgfx[i].args + 1, tgfx[i].nargs - 1);
299 if (IS_ERR(tgfx_base[i])) {
300 err = PTR_ERR(tgfx_base[i]);
301 break;
302 }
303
304 have_dev = 1;
305 }
306
307 if (err) {
308 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500309 if (tgfx_base[i])
310 tgfx_remove(tgfx_base[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500311 return err;
312 }
313
314 return have_dev ? 0 : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317static void __exit tgfx_exit(void)
318{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500319 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500321 for (i = 0; i < TGFX_MAX_PORTS; i++)
322 if (tgfx_base[i])
323 tgfx_remove(tgfx_base[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326module_init(tgfx_init);
327module_exit(tgfx_exit);