blob: 989483f5316008853912dd88c2717d5b32ef1ab5 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/init.h>
Ingo Molnar72ba9f02006-02-19 00:22:30 -050039#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
42MODULE_DESCRIPTION("TurboGraFX parallel port interface driver");
43MODULE_LICENSE("GPL");
44
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050045#define TGFX_MAX_PORTS 3
46#define TGFX_MAX_DEVICES 7
47
48struct tgfx_config {
49 int args[TGFX_MAX_DEVICES + 1];
Dmitry Torokhov78167232007-05-03 00:52:51 -040050 unsigned int nargs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050051};
52
Dmitry Torokhov78167232007-05-03 00:52:51 -040053static struct tgfx_config tgfx_cfg[TGFX_MAX_PORTS] __initdata;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050054
Dmitry Torokhov78167232007-05-03 00:52:51 -040055module_param_array_named(map, tgfx_cfg[0].args, int, &tgfx_cfg[0].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056MODULE_PARM_DESC(map, "Describes first set of devices (<parport#>,<js1>,<js2>,..<js7>");
Dmitry Torokhov78167232007-05-03 00:52:51 -040057module_param_array_named(map2, tgfx_cfg[1].args, int, &tgfx_cfg[1].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058MODULE_PARM_DESC(map2, "Describes second set of devices");
Dmitry Torokhov78167232007-05-03 00:52:51 -040059module_param_array_named(map3, tgfx_cfg[2].args, int, &tgfx_cfg[2].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060MODULE_PARM_DESC(map3, "Describes third set of devices");
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define TGFX_REFRESH_TIME HZ/100 /* 10 ms */
63
64#define TGFX_TRIGGER 0x08
65#define TGFX_UP 0x10
66#define TGFX_DOWN 0x20
67#define TGFX_LEFT 0x40
68#define TGFX_RIGHT 0x80
69
70#define TGFX_THUMB 0x02
71#define TGFX_THUMB2 0x04
72#define TGFX_TOP 0x01
73#define TGFX_TOP2 0x08
74
75static int tgfx_buttons[] = { BTN_TRIGGER, BTN_THUMB, BTN_THUMB2, BTN_TOP, BTN_TOP2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77static struct tgfx {
78 struct pardevice *pd;
79 struct timer_list timer;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050080 struct input_dev *dev[TGFX_MAX_DEVICES];
81 char name[TGFX_MAX_DEVICES][64];
82 char phys[TGFX_MAX_DEVICES][32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 int sticks;
84 int used;
Ingo Molnar72ba9f02006-02-19 00:22:30 -050085 struct mutex sem;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050086} *tgfx_base[TGFX_MAX_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88/*
89 * tgfx_timer() reads and analyzes TurboGraFX joystick data.
90 */
91
92static void tgfx_timer(unsigned long private)
93{
94 struct tgfx *tgfx = (void *) private;
95 struct input_dev *dev;
96 int data1, data2, i;
97
98 for (i = 0; i < 7; i++)
99 if (tgfx->sticks & (1 << i)) {
100
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500101 dev = tgfx->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 parport_write_data(tgfx->pd->port, ~(1 << i));
104 data1 = parport_read_status(tgfx->pd->port) ^ 0x7f;
105 data2 = parport_read_control(tgfx->pd->port) ^ 0x04; /* CAVEAT parport */
106
107 input_report_abs(dev, ABS_X, !!(data1 & TGFX_RIGHT) - !!(data1 & TGFX_LEFT));
108 input_report_abs(dev, ABS_Y, !!(data1 & TGFX_DOWN ) - !!(data1 & TGFX_UP ));
109
110 input_report_key(dev, BTN_TRIGGER, (data1 & TGFX_TRIGGER));
111 input_report_key(dev, BTN_THUMB, (data2 & TGFX_THUMB ));
112 input_report_key(dev, BTN_THUMB2, (data2 & TGFX_THUMB2 ));
113 input_report_key(dev, BTN_TOP, (data2 & TGFX_TOP ));
114 input_report_key(dev, BTN_TOP2, (data2 & TGFX_TOP2 ));
115
116 input_sync(dev);
117 }
118
119 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
120}
121
122static int tgfx_open(struct input_dev *dev)
123{
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400124 struct tgfx *tgfx = input_get_drvdata(dev);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500125 int err;
126
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500127 err = mutex_lock_interruptible(&tgfx->sem);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500128 if (err)
129 return err;
130
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500131 if (!tgfx->used++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 parport_claim(tgfx->pd);
133 parport_write_control(tgfx->pd->port, 0x04);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500134 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500136
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500137 mutex_unlock(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141static void tgfx_close(struct input_dev *dev)
142{
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400143 struct tgfx *tgfx = input_get_drvdata(dev);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500144
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500145 mutex_lock(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500146 if (!--tgfx->used) {
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500147 del_timer_sync(&tgfx->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 parport_write_control(tgfx->pd->port, 0x00);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500149 parport_release(tgfx->pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500151 mutex_unlock(&tgfx->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500154
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
157 * tgfx_probe() probes for tg gamepads.
158 */
159
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500160static struct tgfx __init *tgfx_probe(int parport, int *n_buttons, int n_devs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 struct tgfx *tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500163 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 struct parport *pp;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500165 struct pardevice *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 int i, j;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500167 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500169 pp = parport_find_number(parport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (!pp) {
171 printk(KERN_ERR "turbografx.c: no such parport\n");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500172 err = -EINVAL;
173 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500176 pd = parport_register_device(pp, "turbografx", NULL, NULL, NULL, PARPORT_DEV_EXCL, NULL);
177 if (!pd) {
178 printk(KERN_ERR "turbografx.c: parport busy already - lp.o loaded?\n");
179 err = -EBUSY;
180 goto err_put_pp;
181 }
182
183 tgfx = kzalloc(sizeof(struct tgfx), GFP_KERNEL);
184 if (!tgfx) {
185 printk(KERN_ERR "turbografx.c: Not enough memory\n");
186 err = -ENOMEM;
187 goto err_unreg_pardev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500189
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500190 mutex_init(&tgfx->sem);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500191 tgfx->pd = pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 init_timer(&tgfx->timer);
193 tgfx->timer.data = (long) tgfx;
194 tgfx->timer.function = tgfx_timer;
195
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500196 for (i = 0; i < n_devs; i++) {
197 if (n_buttons[i] < 1)
198 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500200 if (n_buttons[i] > 6) {
201 printk(KERN_ERR "turbografx.c: Invalid number of buttons %d\n", n_buttons[i]);
202 err = -EINVAL;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500203 goto err_unreg_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500206 tgfx->dev[i] = input_dev = input_allocate_device();
207 if (!input_dev) {
208 printk(KERN_ERR "turbografx.c: Not enough memory for input device\n");
209 err = -ENOMEM;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500210 goto err_unreg_devs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500211 }
212
213 tgfx->sticks |= (1 << i);
214 snprintf(tgfx->name[i], sizeof(tgfx->name[i]),
215 "TurboGraFX %d-button Multisystem joystick", n_buttons[i]);
216 snprintf(tgfx->phys[i], sizeof(tgfx->phys[i]),
217 "%s/input%d", tgfx->pd->port->name, i);
218
219 input_dev->name = tgfx->name[i];
220 input_dev->phys = tgfx->phys[i];
221 input_dev->id.bustype = BUS_PARPORT;
222 input_dev->id.vendor = 0x0003;
223 input_dev->id.product = n_buttons[i];
224 input_dev->id.version = 0x0100;
225
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400226 input_set_drvdata(input_dev, tgfx);
227
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500228 input_dev->open = tgfx_open;
229 input_dev->close = tgfx_close;
230
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700231 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500232 input_set_abs_params(input_dev, ABS_X, -1, 1, 0, 0);
233 input_set_abs_params(input_dev, ABS_Y, -1, 1, 0, 0);
234
235 for (j = 0; j < n_buttons[i]; j++)
236 set_bit(tgfx_buttons[j], input_dev->keybit);
237
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500238 err = input_register_device(tgfx->dev[i]);
239 if (err)
240 goto err_free_dev;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500241 }
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (!tgfx->sticks) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500244 printk(KERN_ERR "turbografx.c: No valid devices specified\n");
245 err = -EINVAL;
246 goto err_free_tgfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
249 return tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500250
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500251 err_free_dev:
252 input_free_device(tgfx->dev[i]);
253 err_unreg_devs:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500254 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500255 if (tgfx->dev[i])
256 input_unregister_device(tgfx->dev[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500257 err_free_tgfx:
258 kfree(tgfx);
259 err_unreg_pardev:
260 parport_unregister_device(pd);
261 err_put_pp:
262 parport_put_port(pp);
263 err_out:
264 return ERR_PTR(err);
265}
266
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500267static void tgfx_remove(struct tgfx *tgfx)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500268{
269 int i;
270
271 for (i = 0; i < TGFX_MAX_DEVICES; i++)
272 if (tgfx->dev[i])
273 input_unregister_device(tgfx->dev[i]);
274 parport_unregister_device(tgfx->pd);
275 kfree(tgfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278static int __init tgfx_init(void)
279{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500280 int i;
281 int have_dev = 0;
282 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500284 for (i = 0; i < TGFX_MAX_PORTS; i++) {
Dmitry Torokhov78167232007-05-03 00:52:51 -0400285 if (tgfx_cfg[i].nargs == 0 || tgfx_cfg[i].args[0] < 0)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500286 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Dmitry Torokhov78167232007-05-03 00:52:51 -0400288 if (tgfx_cfg[i].nargs < 2) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500289 printk(KERN_ERR "turbografx.c: at least one joystick must be specified\n");
290 err = -EINVAL;
291 break;
292 }
293
Dmitry Torokhov78167232007-05-03 00:52:51 -0400294 tgfx_base[i] = tgfx_probe(tgfx_cfg[i].args[0],
295 tgfx_cfg[i].args + 1,
296 tgfx_cfg[i].nargs - 1);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500297 if (IS_ERR(tgfx_base[i])) {
298 err = PTR_ERR(tgfx_base[i]);
299 break;
300 }
301
302 have_dev = 1;
303 }
304
305 if (err) {
306 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500307 if (tgfx_base[i])
308 tgfx_remove(tgfx_base[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500309 return err;
310 }
311
312 return have_dev ? 0 : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315static void __exit tgfx_exit(void)
316{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500317 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500319 for (i = 0; i < TGFX_MAX_PORTS; i++)
320 if (tgfx_base[i])
321 tgfx_remove(tgfx_base[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324module_init(tgfx_init);
325module_exit(tgfx_exit);