blob: b154938e88a4f0a1c287e69f30f37dc9edef1299 [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>
40
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];
50 int nargs;
51};
52
53static struct tgfx_config tgfx[TGFX_MAX_PORTS] __initdata;
54
55module_param_array_named(map, tgfx[0].args, int, &tgfx[0].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056MODULE_PARM_DESC(map, "Describes first set of devices (<parport#>,<js1>,<js2>,..<js7>");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050057module_param_array_named(map2, tgfx[1].args, int, &tgfx[1].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058MODULE_PARM_DESC(map2, "Describes second set of devices");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050059module_param_array_named(map3, tgfx[2].args, int, &tgfx[2].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060MODULE_PARM_DESC(map3, "Describes third set of devices");
61
62__obsolete_setup("tgfx=");
63__obsolete_setup("tgfx_2=");
64__obsolete_setup("tgfx_3=");
65
66#define TGFX_REFRESH_TIME HZ/100 /* 10 ms */
67
68#define TGFX_TRIGGER 0x08
69#define TGFX_UP 0x10
70#define TGFX_DOWN 0x20
71#define TGFX_LEFT 0x40
72#define TGFX_RIGHT 0x80
73
74#define TGFX_THUMB 0x02
75#define TGFX_THUMB2 0x04
76#define TGFX_TOP 0x01
77#define TGFX_TOP2 0x08
78
79static int tgfx_buttons[] = { BTN_TRIGGER, BTN_THUMB, BTN_THUMB2, BTN_TOP, BTN_TOP2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81static struct tgfx {
82 struct pardevice *pd;
83 struct timer_list timer;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050084 struct input_dev *dev[TGFX_MAX_DEVICES];
85 char name[TGFX_MAX_DEVICES][64];
86 char phys[TGFX_MAX_DEVICES][32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 int sticks;
88 int used;
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -050089 struct semaphore sem;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050090} *tgfx_base[TGFX_MAX_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
93 * tgfx_timer() reads and analyzes TurboGraFX joystick data.
94 */
95
96static void tgfx_timer(unsigned long private)
97{
98 struct tgfx *tgfx = (void *) private;
99 struct input_dev *dev;
100 int data1, data2, i;
101
102 for (i = 0; i < 7; i++)
103 if (tgfx->sticks & (1 << i)) {
104
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500105 dev = tgfx->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 parport_write_data(tgfx->pd->port, ~(1 << i));
108 data1 = parport_read_status(tgfx->pd->port) ^ 0x7f;
109 data2 = parport_read_control(tgfx->pd->port) ^ 0x04; /* CAVEAT parport */
110
111 input_report_abs(dev, ABS_X, !!(data1 & TGFX_RIGHT) - !!(data1 & TGFX_LEFT));
112 input_report_abs(dev, ABS_Y, !!(data1 & TGFX_DOWN ) - !!(data1 & TGFX_UP ));
113
114 input_report_key(dev, BTN_TRIGGER, (data1 & TGFX_TRIGGER));
115 input_report_key(dev, BTN_THUMB, (data2 & TGFX_THUMB ));
116 input_report_key(dev, BTN_THUMB2, (data2 & TGFX_THUMB2 ));
117 input_report_key(dev, BTN_TOP, (data2 & TGFX_TOP ));
118 input_report_key(dev, BTN_TOP2, (data2 & TGFX_TOP2 ));
119
120 input_sync(dev);
121 }
122
123 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
124}
125
126static int tgfx_open(struct input_dev *dev)
127{
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500128 struct tgfx *tgfx = dev->private;
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500129 int err;
130
131 err = down_interruptible(&tgfx->sem);
132 if (err)
133 return err;
134
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500135 if (!tgfx->used++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 parport_claim(tgfx->pd);
137 parport_write_control(tgfx->pd->port, 0x04);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500138 mod_timer(&tgfx->timer, jiffies + TGFX_REFRESH_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500140
141 up(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145static void tgfx_close(struct input_dev *dev)
146{
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500147 struct tgfx *tgfx = dev->private;
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500148
149 down(&tgfx->sem);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500150 if (!--tgfx->used) {
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500151 del_timer_sync(&tgfx->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 parport_write_control(tgfx->pd->port, 0x00);
Dmitry Torokhovab0c3442005-05-29 02:28:55 -0500153 parport_release(tgfx->pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500155 up(&tgfx->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500158
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/*
161 * tgfx_probe() probes for tg gamepads.
162 */
163
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500164static struct tgfx __init *tgfx_probe(int parport, int *n_buttons, int n_devs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 struct tgfx *tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500167 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct parport *pp;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500169 struct pardevice *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 int i, j;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500171 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500173 pp = parport_find_number(parport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (!pp) {
175 printk(KERN_ERR "turbografx.c: no such parport\n");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500176 err = -EINVAL;
177 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500180 pd = parport_register_device(pp, "turbografx", NULL, NULL, NULL, PARPORT_DEV_EXCL, NULL);
181 if (!pd) {
182 printk(KERN_ERR "turbografx.c: parport busy already - lp.o loaded?\n");
183 err = -EBUSY;
184 goto err_put_pp;
185 }
186
187 tgfx = kzalloc(sizeof(struct tgfx), GFP_KERNEL);
188 if (!tgfx) {
189 printk(KERN_ERR "turbografx.c: Not enough memory\n");
190 err = -ENOMEM;
191 goto err_unreg_pardev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500193
194 init_MUTEX(&tgfx->sem);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500195 tgfx->pd = pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 init_timer(&tgfx->timer);
197 tgfx->timer.data = (long) tgfx;
198 tgfx->timer.function = tgfx_timer;
199
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500200 for (i = 0; i < n_devs; i++) {
201 if (n_buttons[i] < 1)
202 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500204 if (n_buttons[i] > 6) {
205 printk(KERN_ERR "turbografx.c: Invalid number of buttons %d\n", n_buttons[i]);
206 err = -EINVAL;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500207 goto err_unreg_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500210 tgfx->dev[i] = input_dev = input_allocate_device();
211 if (!input_dev) {
212 printk(KERN_ERR "turbografx.c: Not enough memory for input device\n");
213 err = -ENOMEM;
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500214 goto err_unreg_devs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500215 }
216
217 tgfx->sticks |= (1 << i);
218 snprintf(tgfx->name[i], sizeof(tgfx->name[i]),
219 "TurboGraFX %d-button Multisystem joystick", n_buttons[i]);
220 snprintf(tgfx->phys[i], sizeof(tgfx->phys[i]),
221 "%s/input%d", tgfx->pd->port->name, i);
222
223 input_dev->name = tgfx->name[i];
224 input_dev->phys = tgfx->phys[i];
225 input_dev->id.bustype = BUS_PARPORT;
226 input_dev->id.vendor = 0x0003;
227 input_dev->id.product = n_buttons[i];
228 input_dev->id.version = 0x0100;
229
230 input_dev->private = tgfx;
231 input_dev->open = tgfx_open;
232 input_dev->close = tgfx_close;
233
234 input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
235 input_set_abs_params(input_dev, ABS_X, -1, 1, 0, 0);
236 input_set_abs_params(input_dev, ABS_Y, -1, 1, 0, 0);
237
238 for (j = 0; j < n_buttons[i]; j++)
239 set_bit(tgfx_buttons[j], input_dev->keybit);
240
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500241 err = input_register_device(tgfx->dev[i]);
242 if (err)
243 goto err_free_dev;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500244 }
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (!tgfx->sticks) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500247 printk(KERN_ERR "turbografx.c: No valid devices specified\n");
248 err = -EINVAL;
249 goto err_free_tgfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
252 return tgfx;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500253
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500254 err_free_dev:
255 input_free_device(tgfx->dev[i]);
256 err_unreg_devs:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500257 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500258 if (tgfx->dev[i])
259 input_unregister_device(tgfx->dev[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500260 err_free_tgfx:
261 kfree(tgfx);
262 err_unreg_pardev:
263 parport_unregister_device(pd);
264 err_put_pp:
265 parport_put_port(pp);
266 err_out:
267 return ERR_PTR(err);
268}
269
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500270static void tgfx_remove(struct tgfx *tgfx)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500271{
272 int i;
273
274 for (i = 0; i < TGFX_MAX_DEVICES; i++)
275 if (tgfx->dev[i])
276 input_unregister_device(tgfx->dev[i]);
277 parport_unregister_device(tgfx->pd);
278 kfree(tgfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281static int __init tgfx_init(void)
282{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500283 int i;
284 int have_dev = 0;
285 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500287 for (i = 0; i < TGFX_MAX_PORTS; i++) {
288 if (tgfx[i].nargs == 0 || tgfx[i].args[0] < 0)
289 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500291 if (tgfx[i].nargs < 2) {
292 printk(KERN_ERR "turbografx.c: at least one joystick must be specified\n");
293 err = -EINVAL;
294 break;
295 }
296
297 tgfx_base[i] = tgfx_probe(tgfx[i].args[0], tgfx[i].args + 1, tgfx[i].nargs - 1);
298 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);