blob: b6f859869540d3b1995acc4c50b3edde52d9d4a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (c) 1998-2001 Vojtech Pavlik
3 *
4 * Based on the work of:
5 * Steffen Schwenke
6 */
7
8/*
9 * TurboGraFX parallel port interface driver for Linux.
10 */
11
12/*
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 * Should you need to contact me, the author, you can do so either by
28 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
29 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
30 */
31
32#include <linux/kernel.h>
33#include <linux/parport.h>
34#include <linux/input.h>
35#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/init.h>
Ingo Molnar72ba9f02006-02-19 00:22:30 -050037#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
40MODULE_DESCRIPTION("TurboGraFX parallel port interface driver");
41MODULE_LICENSE("GPL");
42
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050043#define TGFX_MAX_PORTS 3
44#define TGFX_MAX_DEVICES 7
45
46struct tgfx_config {
47 int args[TGFX_MAX_DEVICES + 1];
Dmitry Torokhov78167232007-05-03 00:52:51 -040048 unsigned int nargs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050049};
50
Dmitry Torokhov78167232007-05-03 00:52:51 -040051static struct tgfx_config tgfx_cfg[TGFX_MAX_PORTS] __initdata;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050052
Dmitry Torokhov78167232007-05-03 00:52:51 -040053module_param_array_named(map, tgfx_cfg[0].args, int, &tgfx_cfg[0].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054MODULE_PARM_DESC(map, "Describes first set of devices (<parport#>,<js1>,<js2>,..<js7>");
Dmitry Torokhov78167232007-05-03 00:52:51 -040055module_param_array_named(map2, tgfx_cfg[1].args, int, &tgfx_cfg[1].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056MODULE_PARM_DESC(map2, "Describes second set of devices");
Dmitry Torokhov78167232007-05-03 00:52:51 -040057module_param_array_named(map3, tgfx_cfg[2].args, int, &tgfx_cfg[2].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058MODULE_PARM_DESC(map3, "Describes third set of devices");
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define TGFX_REFRESH_TIME HZ/100 /* 10 ms */
61
62#define TGFX_TRIGGER 0x08
63#define TGFX_UP 0x10
64#define TGFX_DOWN 0x20
65#define TGFX_LEFT 0x40
66#define TGFX_RIGHT 0x80
67
68#define TGFX_THUMB 0x02
69#define TGFX_THUMB2 0x04
70#define TGFX_TOP 0x01
71#define TGFX_TOP2 0x08
72
73static int tgfx_buttons[] = { BTN_TRIGGER, BTN_THUMB, BTN_THUMB2, BTN_TOP, BTN_TOP2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75static struct tgfx {
76 struct pardevice *pd;
77 struct timer_list timer;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050078 struct input_dev *dev[TGFX_MAX_DEVICES];
79 char name[TGFX_MAX_DEVICES][64];
80 char phys[TGFX_MAX_DEVICES][32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 int sticks;
82 int used;
Ingo Molnar72ba9f02006-02-19 00:22:30 -050083 struct mutex sem;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050084} *tgfx_base[TGFX_MAX_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/*
87 * tgfx_timer() reads and analyzes TurboGraFX joystick data.
88 */
89
90static void tgfx_timer(unsigned long private)
91{
92 struct tgfx *tgfx = (void *) private;
93 struct input_dev *dev;
94 int data1, data2, i;
95
96 for (i = 0; i < 7; i++)
97 if (tgfx->sticks & (1 << i)) {
98
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050099 dev = tgfx->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 parport_write_data(tgfx->pd->port, ~(1 << i));
102 data1 = parport_read_status(tgfx->pd->port) ^ 0x7f;
103 data2 = parport_read_control(tgfx->pd->port) ^ 0x04; /* CAVEAT parport */
104
105 input_report_abs(dev, ABS_X, !!(data1 & TGFX_RIGHT) - !!(data1 & TGFX_LEFT));
106 input_report_abs(dev, ABS_Y, !!(data1 & TGFX_DOWN ) - !!(data1 & TGFX_UP ));
107
108 input_report_key(dev, BTN_TRIGGER, (data1 & TGFX_TRIGGER));
109 input_report_key(dev, BTN_THUMB, (data2 & TGFX_THUMB ));
110 input_report_key(dev, BTN_THUMB2, (data2 & TGFX_THUMB2 ));
111 input_report_key(dev, BTN_TOP, (data2 & TGFX_TOP ));
112 input_report_key(dev, BTN_TOP2, (data2 & TGFX_TOP2 ));
113
114 input_sync(dev);
115 }
116
117 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
118}
119
120static int tgfx_open(struct input_dev *dev)
121{
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400122 struct tgfx *tgfx = input_get_drvdata(dev);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500123 int err;
124
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500125 err = mutex_lock_interruptible(&tgfx->sem);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500126 if (err)
127 return err;
128
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500129 if (!tgfx->used++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 parport_claim(tgfx->pd);
131 parport_write_control(tgfx->pd->port, 0x04);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500132 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500134
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500135 mutex_unlock(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139static void tgfx_close(struct input_dev *dev)
140{
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400141 struct tgfx *tgfx = input_get_drvdata(dev);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500142
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500143 mutex_lock(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500144 if (!--tgfx->used) {
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500145 del_timer_sync(&tgfx->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 parport_write_control(tgfx->pd->port, 0x00);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500147 parport_release(tgfx->pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500149 mutex_unlock(&tgfx->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500152
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/*
155 * tgfx_probe() probes for tg gamepads.
156 */
157
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500158static struct tgfx __init *tgfx_probe(int parport, int *n_buttons, int n_devs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 struct tgfx *tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500161 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct parport *pp;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500163 struct pardevice *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 int i, j;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500165 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500167 pp = parport_find_number(parport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (!pp) {
169 printk(KERN_ERR "turbografx.c: no such parport\n");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500170 err = -EINVAL;
171 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500174 pd = parport_register_device(pp, "turbografx", NULL, NULL, NULL, PARPORT_DEV_EXCL, NULL);
175 if (!pd) {
176 printk(KERN_ERR "turbografx.c: parport busy already - lp.o loaded?\n");
177 err = -EBUSY;
178 goto err_put_pp;
179 }
180
181 tgfx = kzalloc(sizeof(struct tgfx), GFP_KERNEL);
182 if (!tgfx) {
183 printk(KERN_ERR "turbografx.c: Not enough memory\n");
184 err = -ENOMEM;
185 goto err_unreg_pardev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500187
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500188 mutex_init(&tgfx->sem);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500189 tgfx->pd = pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 init_timer(&tgfx->timer);
191 tgfx->timer.data = (long) tgfx;
192 tgfx->timer.function = tgfx_timer;
193
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500194 for (i = 0; i < n_devs; i++) {
195 if (n_buttons[i] < 1)
196 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500198 if (n_buttons[i] > 6) {
199 printk(KERN_ERR "turbografx.c: Invalid number of buttons %d\n", n_buttons[i]);
200 err = -EINVAL;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500201 goto err_unreg_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500204 tgfx->dev[i] = input_dev = input_allocate_device();
205 if (!input_dev) {
206 printk(KERN_ERR "turbografx.c: Not enough memory for input device\n");
207 err = -ENOMEM;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500208 goto err_unreg_devs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500209 }
210
211 tgfx->sticks |= (1 << i);
212 snprintf(tgfx->name[i], sizeof(tgfx->name[i]),
213 "TurboGraFX %d-button Multisystem joystick", n_buttons[i]);
214 snprintf(tgfx->phys[i], sizeof(tgfx->phys[i]),
215 "%s/input%d", tgfx->pd->port->name, i);
216
217 input_dev->name = tgfx->name[i];
218 input_dev->phys = tgfx->phys[i];
219 input_dev->id.bustype = BUS_PARPORT;
220 input_dev->id.vendor = 0x0003;
221 input_dev->id.product = n_buttons[i];
222 input_dev->id.version = 0x0100;
223
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400224 input_set_drvdata(input_dev, tgfx);
225
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500226 input_dev->open = tgfx_open;
227 input_dev->close = tgfx_close;
228
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700229 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500230 input_set_abs_params(input_dev, ABS_X, -1, 1, 0, 0);
231 input_set_abs_params(input_dev, ABS_Y, -1, 1, 0, 0);
232
233 for (j = 0; j < n_buttons[i]; j++)
234 set_bit(tgfx_buttons[j], input_dev->keybit);
235
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500236 err = input_register_device(tgfx->dev[i]);
237 if (err)
238 goto err_free_dev;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500239 }
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!tgfx->sticks) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500242 printk(KERN_ERR "turbografx.c: No valid devices specified\n");
243 err = -EINVAL;
244 goto err_free_tgfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246
247 return tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500248
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500249 err_free_dev:
250 input_free_device(tgfx->dev[i]);
251 err_unreg_devs:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500252 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500253 if (tgfx->dev[i])
254 input_unregister_device(tgfx->dev[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500255 err_free_tgfx:
256 kfree(tgfx);
257 err_unreg_pardev:
258 parport_unregister_device(pd);
259 err_put_pp:
260 parport_put_port(pp);
261 err_out:
262 return ERR_PTR(err);
263}
264
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500265static void tgfx_remove(struct tgfx *tgfx)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500266{
267 int i;
268
269 for (i = 0; i < TGFX_MAX_DEVICES; i++)
270 if (tgfx->dev[i])
271 input_unregister_device(tgfx->dev[i]);
272 parport_unregister_device(tgfx->pd);
273 kfree(tgfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
276static int __init tgfx_init(void)
277{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500278 int i;
279 int have_dev = 0;
280 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500282 for (i = 0; i < TGFX_MAX_PORTS; i++) {
Dmitry Torokhov78167232007-05-03 00:52:51 -0400283 if (tgfx_cfg[i].nargs == 0 || tgfx_cfg[i].args[0] < 0)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500284 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Dmitry Torokhov78167232007-05-03 00:52:51 -0400286 if (tgfx_cfg[i].nargs < 2) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500287 printk(KERN_ERR "turbografx.c: at least one joystick must be specified\n");
288 err = -EINVAL;
289 break;
290 }
291
Dmitry Torokhov78167232007-05-03 00:52:51 -0400292 tgfx_base[i] = tgfx_probe(tgfx_cfg[i].args[0],
293 tgfx_cfg[i].args + 1,
294 tgfx_cfg[i].nargs - 1);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500295 if (IS_ERR(tgfx_base[i])) {
296 err = PTR_ERR(tgfx_base[i]);
297 break;
298 }
299
300 have_dev = 1;
301 }
302
303 if (err) {
304 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500305 if (tgfx_base[i])
306 tgfx_remove(tgfx_base[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500307 return err;
308 }
309
310 return have_dev ? 0 : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313static void __exit tgfx_exit(void)
314{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500315 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500317 for (i = 0; i < TGFX_MAX_PORTS; i++)
318 if (tgfx_base[i])
319 tgfx_remove(tgfx_base[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322module_init(tgfx_init);
323module_exit(tgfx_exit);