blob: bbebd4e2ad7f35845770540f5c3a74f74fd3de1a [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];
Dmitry Torokhov78167232007-05-03 00:52:51 -040051 unsigned int nargs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050052};
53
Dmitry Torokhov78167232007-05-03 00:52:51 -040054static struct tgfx_config tgfx_cfg[TGFX_MAX_PORTS] __initdata;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050055
Dmitry Torokhov78167232007-05-03 00:52:51 -040056module_param_array_named(map, tgfx_cfg[0].args, int, &tgfx_cfg[0].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057MODULE_PARM_DESC(map, "Describes first set of devices (<parport#>,<js1>,<js2>,..<js7>");
Dmitry Torokhov78167232007-05-03 00:52:51 -040058module_param_array_named(map2, tgfx_cfg[1].args, int, &tgfx_cfg[1].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059MODULE_PARM_DESC(map2, "Describes second set of devices");
Dmitry Torokhov78167232007-05-03 00:52:51 -040060module_param_array_named(map3, tgfx_cfg[2].args, int, &tgfx_cfg[2].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061MODULE_PARM_DESC(map3, "Describes third set of devices");
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define TGFX_REFRESH_TIME HZ/100 /* 10 ms */
64
65#define TGFX_TRIGGER 0x08
66#define TGFX_UP 0x10
67#define TGFX_DOWN 0x20
68#define TGFX_LEFT 0x40
69#define TGFX_RIGHT 0x80
70
71#define TGFX_THUMB 0x02
72#define TGFX_THUMB2 0x04
73#define TGFX_TOP 0x01
74#define TGFX_TOP2 0x08
75
76static int tgfx_buttons[] = { BTN_TRIGGER, BTN_THUMB, BTN_THUMB2, BTN_TOP, BTN_TOP2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78static struct tgfx {
79 struct pardevice *pd;
80 struct timer_list timer;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050081 struct input_dev *dev[TGFX_MAX_DEVICES];
82 char name[TGFX_MAX_DEVICES][64];
83 char phys[TGFX_MAX_DEVICES][32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 int sticks;
85 int used;
Ingo Molnar72ba9f02006-02-19 00:22:30 -050086 struct mutex sem;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050087} *tgfx_base[TGFX_MAX_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89/*
90 * tgfx_timer() reads and analyzes TurboGraFX joystick data.
91 */
92
93static void tgfx_timer(unsigned long private)
94{
95 struct tgfx *tgfx = (void *) private;
96 struct input_dev *dev;
97 int data1, data2, i;
98
99 for (i = 0; i < 7; i++)
100 if (tgfx->sticks & (1 << i)) {
101
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500102 dev = tgfx->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 parport_write_data(tgfx->pd->port, ~(1 << i));
105 data1 = parport_read_status(tgfx->pd->port) ^ 0x7f;
106 data2 = parport_read_control(tgfx->pd->port) ^ 0x04; /* CAVEAT parport */
107
108 input_report_abs(dev, ABS_X, !!(data1 & TGFX_RIGHT) - !!(data1 & TGFX_LEFT));
109 input_report_abs(dev, ABS_Y, !!(data1 & TGFX_DOWN ) - !!(data1 & TGFX_UP ));
110
111 input_report_key(dev, BTN_TRIGGER, (data1 & TGFX_TRIGGER));
112 input_report_key(dev, BTN_THUMB, (data2 & TGFX_THUMB ));
113 input_report_key(dev, BTN_THUMB2, (data2 & TGFX_THUMB2 ));
114 input_report_key(dev, BTN_TOP, (data2 & TGFX_TOP ));
115 input_report_key(dev, BTN_TOP2, (data2 & TGFX_TOP2 ));
116
117 input_sync(dev);
118 }
119
120 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
121}
122
123static int tgfx_open(struct input_dev *dev)
124{
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400125 struct tgfx *tgfx = input_get_drvdata(dev);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500126 int err;
127
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500128 err = mutex_lock_interruptible(&tgfx->sem);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500129 if (err)
130 return err;
131
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500132 if (!tgfx->used++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 parport_claim(tgfx->pd);
134 parport_write_control(tgfx->pd->port, 0x04);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500135 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500137
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500138 mutex_unlock(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500139 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
142static void tgfx_close(struct input_dev *dev)
143{
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400144 struct tgfx *tgfx = input_get_drvdata(dev);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500145
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500146 mutex_lock(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500147 if (!--tgfx->used) {
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500148 del_timer_sync(&tgfx->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 parport_write_control(tgfx->pd->port, 0x00);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500150 parport_release(tgfx->pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500152 mutex_unlock(&tgfx->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500155
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
158 * tgfx_probe() probes for tg gamepads.
159 */
160
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500161static struct tgfx __init *tgfx_probe(int parport, int *n_buttons, int n_devs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 struct tgfx *tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500164 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 struct parport *pp;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500166 struct pardevice *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 int i, j;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500168 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500170 pp = parport_find_number(parport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (!pp) {
172 printk(KERN_ERR "turbografx.c: no such parport\n");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500173 err = -EINVAL;
174 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500177 pd = parport_register_device(pp, "turbografx", NULL, NULL, NULL, PARPORT_DEV_EXCL, NULL);
178 if (!pd) {
179 printk(KERN_ERR "turbografx.c: parport busy already - lp.o loaded?\n");
180 err = -EBUSY;
181 goto err_put_pp;
182 }
183
184 tgfx = kzalloc(sizeof(struct tgfx), GFP_KERNEL);
185 if (!tgfx) {
186 printk(KERN_ERR "turbografx.c: Not enough memory\n");
187 err = -ENOMEM;
188 goto err_unreg_pardev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500190
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500191 mutex_init(&tgfx->sem);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500192 tgfx->pd = pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 init_timer(&tgfx->timer);
194 tgfx->timer.data = (long) tgfx;
195 tgfx->timer.function = tgfx_timer;
196
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500197 for (i = 0; i < n_devs; i++) {
198 if (n_buttons[i] < 1)
199 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500201 if (n_buttons[i] > 6) {
202 printk(KERN_ERR "turbografx.c: Invalid number of buttons %d\n", n_buttons[i]);
203 err = -EINVAL;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500204 goto err_unreg_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500207 tgfx->dev[i] = input_dev = input_allocate_device();
208 if (!input_dev) {
209 printk(KERN_ERR "turbografx.c: Not enough memory for input device\n");
210 err = -ENOMEM;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500211 goto err_unreg_devs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500212 }
213
214 tgfx->sticks |= (1 << i);
215 snprintf(tgfx->name[i], sizeof(tgfx->name[i]),
216 "TurboGraFX %d-button Multisystem joystick", n_buttons[i]);
217 snprintf(tgfx->phys[i], sizeof(tgfx->phys[i]),
218 "%s/input%d", tgfx->pd->port->name, i);
219
220 input_dev->name = tgfx->name[i];
221 input_dev->phys = tgfx->phys[i];
222 input_dev->id.bustype = BUS_PARPORT;
223 input_dev->id.vendor = 0x0003;
224 input_dev->id.product = n_buttons[i];
225 input_dev->id.version = 0x0100;
226
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400227 input_set_drvdata(input_dev, tgfx);
228
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500229 input_dev->open = tgfx_open;
230 input_dev->close = tgfx_close;
231
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700232 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500233 input_set_abs_params(input_dev, ABS_X, -1, 1, 0, 0);
234 input_set_abs_params(input_dev, ABS_Y, -1, 1, 0, 0);
235
236 for (j = 0; j < n_buttons[i]; j++)
237 set_bit(tgfx_buttons[j], input_dev->keybit);
238
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500239 err = input_register_device(tgfx->dev[i]);
240 if (err)
241 goto err_free_dev;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500242 }
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (!tgfx->sticks) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500245 printk(KERN_ERR "turbografx.c: No valid devices specified\n");
246 err = -EINVAL;
247 goto err_free_tgfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
250 return tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500251
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500252 err_free_dev:
253 input_free_device(tgfx->dev[i]);
254 err_unreg_devs:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500255 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500256 if (tgfx->dev[i])
257 input_unregister_device(tgfx->dev[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500258 err_free_tgfx:
259 kfree(tgfx);
260 err_unreg_pardev:
261 parport_unregister_device(pd);
262 err_put_pp:
263 parport_put_port(pp);
264 err_out:
265 return ERR_PTR(err);
266}
267
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500268static void tgfx_remove(struct tgfx *tgfx)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500269{
270 int i;
271
272 for (i = 0; i < TGFX_MAX_DEVICES; i++)
273 if (tgfx->dev[i])
274 input_unregister_device(tgfx->dev[i]);
275 parport_unregister_device(tgfx->pd);
276 kfree(tgfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279static int __init tgfx_init(void)
280{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500281 int i;
282 int have_dev = 0;
283 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500285 for (i = 0; i < TGFX_MAX_PORTS; i++) {
Dmitry Torokhov78167232007-05-03 00:52:51 -0400286 if (tgfx_cfg[i].nargs == 0 || tgfx_cfg[i].args[0] < 0)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500287 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Dmitry Torokhov78167232007-05-03 00:52:51 -0400289 if (tgfx_cfg[i].nargs < 2) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500290 printk(KERN_ERR "turbografx.c: at least one joystick must be specified\n");
291 err = -EINVAL;
292 break;
293 }
294
Dmitry Torokhov78167232007-05-03 00:52:51 -0400295 tgfx_base[i] = tgfx_probe(tgfx_cfg[i].args[0],
296 tgfx_cfg[i].args + 1,
297 tgfx_cfg[i].nargs - 1);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500298 if (IS_ERR(tgfx_base[i])) {
299 err = PTR_ERR(tgfx_base[i]);
300 break;
301 }
302
303 have_dev = 1;
304 }
305
306 if (err) {
307 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500308 if (tgfx_base[i])
309 tgfx_remove(tgfx_base[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500310 return err;
311 }
312
313 return have_dev ? 0 : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316static void __exit tgfx_exit(void)
317{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500318 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500320 for (i = 0; i < TGFX_MAX_PORTS; i++)
321 if (tgfx_base[i])
322 tgfx_remove(tgfx_base[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325module_init(tgfx_init);
326module_exit(tgfx_exit);