blob: 77f575dd0901ff2732f47a62ebb7af37b826b608 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
41MODULE_DESCRIPTION("TurboGraFX parallel port interface driver");
42MODULE_LICENSE("GPL");
43
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050044#define TGFX_MAX_PORTS 3
45#define TGFX_MAX_DEVICES 7
46
47struct tgfx_config {
48 int args[TGFX_MAX_DEVICES + 1];
Dmitry Torokhov78167232007-05-03 00:52:51 -040049 unsigned int nargs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050050};
51
Sudip Mukherjee4de27a62015-09-29 16:04:01 -070052static struct tgfx_config tgfx_cfg[TGFX_MAX_PORTS];
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050053
Dmitry Torokhov78167232007-05-03 00:52:51 -040054module_param_array_named(map, tgfx_cfg[0].args, int, &tgfx_cfg[0].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055MODULE_PARM_DESC(map, "Describes first set of devices (<parport#>,<js1>,<js2>,..<js7>");
Dmitry Torokhov78167232007-05-03 00:52:51 -040056module_param_array_named(map2, tgfx_cfg[1].args, int, &tgfx_cfg[1].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057MODULE_PARM_DESC(map2, "Describes second set of devices");
Dmitry Torokhov78167232007-05-03 00:52:51 -040058module_param_array_named(map3, tgfx_cfg[2].args, int, &tgfx_cfg[2].nargs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059MODULE_PARM_DESC(map3, "Describes third set of devices");
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define TGFX_REFRESH_TIME HZ/100 /* 10 ms */
62
63#define TGFX_TRIGGER 0x08
64#define TGFX_UP 0x10
65#define TGFX_DOWN 0x20
66#define TGFX_LEFT 0x40
67#define TGFX_RIGHT 0x80
68
69#define TGFX_THUMB 0x02
70#define TGFX_THUMB2 0x04
71#define TGFX_TOP 0x01
72#define TGFX_TOP2 0x08
73
74static int tgfx_buttons[] = { BTN_TRIGGER, BTN_THUMB, BTN_THUMB2, BTN_TOP, BTN_TOP2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76static struct tgfx {
77 struct pardevice *pd;
78 struct timer_list timer;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050079 struct input_dev *dev[TGFX_MAX_DEVICES];
80 char name[TGFX_MAX_DEVICES][64];
81 char phys[TGFX_MAX_DEVICES][32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 int sticks;
83 int used;
Sudip Mukherjee4de27a62015-09-29 16:04:01 -070084 int parportno;
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
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700160static void tgfx_attach(struct parport *pp)
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;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500164 struct pardevice *pd;
Sudip Mukherjeec65cf812015-10-05 17:23:08 -0700165 int i, j, port_idx;
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700166 int *n_buttons, n_devs;
167 struct pardev_cb tgfx_parport_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Sudip Mukherjeec65cf812015-10-05 17:23:08 -0700169 for (port_idx = 0; port_idx < TGFX_MAX_PORTS; port_idx++) {
170 if (tgfx_cfg[port_idx].nargs == 0 ||
171 tgfx_cfg[port_idx].args[0] < 0)
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700172 continue;
Sudip Mukherjeec65cf812015-10-05 17:23:08 -0700173 if (tgfx_cfg[port_idx].args[0] == pp->number)
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700174 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
Sudip Mukherjeec65cf812015-10-05 17:23:08 -0700177 if (port_idx == TGFX_MAX_PORTS) {
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700178 pr_debug("Not using parport%d.\n", pp->number);
179 return;
180 }
Sudip Mukherjeec65cf812015-10-05 17:23:08 -0700181 n_buttons = tgfx_cfg[port_idx].args + 1;
182 n_devs = tgfx_cfg[port_idx].nargs - 1;
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700183
Sudip Mukherjee3855e9e2015-11-17 09:33:41 -0800184 memset(&tgfx_parport_cb, 0, sizeof(tgfx_parport_cb));
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700185 tgfx_parport_cb.flags = PARPORT_FLAG_EXCL;
186
Sudip Mukherjeec65cf812015-10-05 17:23:08 -0700187 pd = parport_register_dev_model(pp, "turbografx", &tgfx_parport_cb,
188 port_idx);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500189 if (!pd) {
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700190 pr_err("parport busy already - lp.o loaded?\n");
191 return;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500192 }
193
194 tgfx = kzalloc(sizeof(struct tgfx), GFP_KERNEL);
195 if (!tgfx) {
196 printk(KERN_ERR "turbografx.c: Not enough memory\n");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500197 goto err_unreg_pardev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500199
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500200 mutex_init(&tgfx->sem);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500201 tgfx->pd = pd;
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700202 tgfx->parportno = pp->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 init_timer(&tgfx->timer);
204 tgfx->timer.data = (long) tgfx;
205 tgfx->timer.function = tgfx_timer;
206
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500207 for (i = 0; i < n_devs; i++) {
208 if (n_buttons[i] < 1)
209 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Dmitry Torokhovc20bc552015-07-30 11:01:13 -0700211 if (n_buttons[i] > ARRAY_SIZE(tgfx_buttons)) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500212 printk(KERN_ERR "turbografx.c: Invalid number of buttons %d\n", n_buttons[i]);
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500213 goto err_unreg_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500216 tgfx->dev[i] = input_dev = input_allocate_device();
217 if (!input_dev) {
218 printk(KERN_ERR "turbografx.c: Not enough memory for input device\n");
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500219 goto err_unreg_devs;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500220 }
221
222 tgfx->sticks |= (1 << i);
223 snprintf(tgfx->name[i], sizeof(tgfx->name[i]),
224 "TurboGraFX %d-button Multisystem joystick", n_buttons[i]);
225 snprintf(tgfx->phys[i], sizeof(tgfx->phys[i]),
226 "%s/input%d", tgfx->pd->port->name, i);
227
228 input_dev->name = tgfx->name[i];
229 input_dev->phys = tgfx->phys[i];
230 input_dev->id.bustype = BUS_PARPORT;
231 input_dev->id.vendor = 0x0003;
232 input_dev->id.product = n_buttons[i];
233 input_dev->id.version = 0x0100;
234
Dmitry Torokhov8715c1c2007-04-12 01:34:14 -0400235 input_set_drvdata(input_dev, tgfx);
236
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500237 input_dev->open = tgfx_open;
238 input_dev->close = tgfx_close;
239
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700240 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500241 input_set_abs_params(input_dev, ABS_X, -1, 1, 0, 0);
242 input_set_abs_params(input_dev, ABS_Y, -1, 1, 0, 0);
243
244 for (j = 0; j < n_buttons[i]; j++)
245 set_bit(tgfx_buttons[j], input_dev->keybit);
246
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700247 if (input_register_device(tgfx->dev[i]))
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500248 goto err_free_dev;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500249 }
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (!tgfx->sticks) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500252 printk(KERN_ERR "turbografx.c: No valid devices specified\n");
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500253 goto err_free_tgfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
Sudip Mukherjeec65cf812015-10-05 17:23:08 -0700256 tgfx_base[port_idx] = tgfx;
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700257 return;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500258
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500259 err_free_dev:
260 input_free_device(tgfx->dev[i]);
261 err_unreg_devs:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500262 while (--i >= 0)
Dmitry Torokhovab52cd62006-01-29 21:52:18 -0500263 if (tgfx->dev[i])
264 input_unregister_device(tgfx->dev[i]);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500265 err_free_tgfx:
266 kfree(tgfx);
267 err_unreg_pardev:
268 parport_unregister_device(pd);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500269}
270
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700271static void tgfx_detach(struct parport *port)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500272{
273 int i;
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700274 struct tgfx *tgfx;
275
276 for (i = 0; i < TGFX_MAX_PORTS; i++) {
277 if (tgfx_base[i] && tgfx_base[i]->parportno == port->number)
278 break;
279 }
280
281 if (i == TGFX_MAX_PORTS)
282 return;
283
284 tgfx = tgfx_base[i];
285 tgfx_base[i] = NULL;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500286
287 for (i = 0; i < TGFX_MAX_DEVICES; i++)
288 if (tgfx->dev[i])
289 input_unregister_device(tgfx->dev[i]);
290 parport_unregister_device(tgfx->pd);
291 kfree(tgfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700294static struct parport_driver tgfx_parport_driver = {
295 .name = "turbografx",
296 .match_port = tgfx_attach,
297 .detach = tgfx_detach,
298 .devmodel = true,
299};
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301static int __init tgfx_init(void)
302{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500303 int i;
304 int have_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500306 for (i = 0; i < TGFX_MAX_PORTS; i++) {
Dmitry Torokhov78167232007-05-03 00:52:51 -0400307 if (tgfx_cfg[i].nargs == 0 || tgfx_cfg[i].args[0] < 0)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500308 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Dmitry Torokhov78167232007-05-03 00:52:51 -0400310 if (tgfx_cfg[i].nargs < 2) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500311 printk(KERN_ERR "turbografx.c: at least one joystick must be specified\n");
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700312 return -EINVAL;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500313 }
314
315 have_dev = 1;
316 }
317
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700318 if (!have_dev)
319 return -ENODEV;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500320
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700321 return parport_register_driver(&tgfx_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324static void __exit tgfx_exit(void)
325{
Sudip Mukherjee4de27a62015-09-29 16:04:01 -0700326 parport_unregister_driver(&tgfx_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329module_init(tgfx_init);
330module_exit(tgfx_exit);