2 * Copyright (c) 1999-2001 Vojtech Pavlik
4 * Based on the work of:
5 * Andree Borrmann Mats Sjövall
9 * Atari, Amstrad, Commodore, Amiga, Sega, etc. joystick driver for Linux
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.
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.
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
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
32 #include <linux/kernel.h>
33 #include <linux/module.h>
34 #include <linux/delay.h>
35 #include <linux/init.h>
36 #include <linux/parport.h>
37 #include <linux/input.h>
38 #include <linux/mutex.h>
40 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
41 MODULE_DESCRIPTION("Atari, Amstrad, Commodore, Amiga, Sega, etc. joystick driver");
42 MODULE_LICENSE("GPL");
49 #define DB9_MAX_PORTS 3
50 static struct db9_config db9_cfg
[DB9_MAX_PORTS
] __initdata
;
52 module_param_array_named(dev
, db9_cfg
[0].args
, int, &db9_cfg
[0].nargs
, 0);
53 MODULE_PARM_DESC(dev
, "Describes first attached device (<parport#>,<type>)");
54 module_param_array_named(dev2
, db9_cfg
[1].args
, int, &db9_cfg
[1].nargs
, 0);
55 MODULE_PARM_DESC(dev2
, "Describes second attached device (<parport#>,<type>)");
56 module_param_array_named(dev3
, db9_cfg
[2].args
, int, &db9_cfg
[2].nargs
, 0);
57 MODULE_PARM_DESC(dev3
, "Describes third attached device (<parport#>,<type>)");
59 #define DB9_ARG_PARPORT 0
60 #define DB9_ARG_MODE 1
62 #define DB9_MULTI_STICK 0x01
63 #define DB9_MULTI2_STICK 0x02
64 #define DB9_GENESIS_PAD 0x03
65 #define DB9_GENESIS5_PAD 0x05
66 #define DB9_GENESIS6_PAD 0x06
67 #define DB9_SATURN_PAD 0x07
68 #define DB9_MULTI_0802 0x08
69 #define DB9_MULTI_0802_2 0x09
70 #define DB9_CD32_PAD 0x0A
71 #define DB9_SATURN_DPP 0x0B
72 #define DB9_SATURN_DPP_2 0x0C
73 #define DB9_MAX_PAD 0x0D
78 #define DB9_RIGHT 0x08
79 #define DB9_FIRE1 0x10
80 #define DB9_FIRE2 0x20
81 #define DB9_FIRE3 0x40
82 #define DB9_FIRE4 0x80
84 #define DB9_NORMAL 0x0a
85 #define DB9_NOSELECT 0x08
87 #define DB9_GENESIS6_DELAY 14
88 #define DB9_REFRESH_TIME HZ/100
90 #define DB9_MAX_DEVICES 2
92 struct db9_mode_data
{
103 struct input_dev
*dev
[DB9_MAX_DEVICES
];
104 struct timer_list timer
;
105 struct pardevice
*pd
;
109 char phys
[DB9_MAX_DEVICES
][32];
112 static struct db9
*db9_base
[3];
114 static const short db9_multi_btn
[] = { BTN_TRIGGER
, BTN_THUMB
};
115 static const short db9_genesis_btn
[] = { BTN_START
, BTN_A
, BTN_B
, BTN_C
, BTN_X
, BTN_Y
, BTN_Z
, BTN_MODE
};
116 static const short db9_cd32_btn
[] = { BTN_A
, BTN_B
, BTN_C
, BTN_X
, BTN_Y
, BTN_Z
, BTN_TL
, BTN_TR
, BTN_START
};
117 static const short db9_abs
[] = { ABS_X
, ABS_Y
, ABS_RX
, ABS_RY
, ABS_RZ
, ABS_Z
, ABS_HAT0X
, ABS_HAT0Y
, ABS_HAT1X
, ABS_HAT1Y
};
119 static const struct db9_mode_data db9_modes
[] = {
120 { NULL
, NULL
, 0, 0, 0, 0, 0 },
121 { "Multisystem joystick", db9_multi_btn
, 1, 1, 2, 1, 1 },
122 { "Multisystem joystick (2 fire)", db9_multi_btn
, 2, 1, 2, 1, 1 },
123 { "Genesis pad", db9_genesis_btn
, 4, 1, 2, 1, 1 },
124 { NULL
, NULL
, 0, 0, 0, 0, 0 },
125 { "Genesis 5 pad", db9_genesis_btn
, 6, 1, 2, 1, 1 },
126 { "Genesis 6 pad", db9_genesis_btn
, 8, 1, 2, 1, 1 },
127 { "Saturn pad", db9_cd32_btn
, 9, 6, 7, 0, 1 },
128 { "Multisystem (0.8.0.2) joystick", db9_multi_btn
, 1, 1, 2, 1, 1 },
129 { "Multisystem (0.8.0.2-dual) joystick", db9_multi_btn
, 1, 2, 2, 1, 1 },
130 { "Amiga CD-32 pad", db9_cd32_btn
, 7, 1, 2, 1, 1 },
131 { "Saturn dpp", db9_cd32_btn
, 9, 6, 7, 0, 0 },
132 { "Saturn dpp dual", db9_cd32_btn
, 9, 12, 7, 0, 0 },
138 #define DB9_SATURN_DELAY 300
139 static const int db9_saturn_byte
[] = { 1, 1, 1, 2, 2, 2, 2, 2, 1 };
140 static const unsigned char db9_saturn_mask
[] = { 0x04, 0x01, 0x02, 0x40, 0x20, 0x10, 0x08, 0x80, 0x08 };
143 * db9_saturn_write_sub() writes 2 bit data.
145 static void db9_saturn_write_sub(struct parport
*port
, int type
, unsigned char data
, int powered
, int pwr_sub
)
151 c
= 0x80 | 0x30 | (powered
? 0x08 : 0) | (pwr_sub
? 0x04 : 0) | data
;
152 parport_write_data(port
, c
);
155 c
= 0x40 | data
<< 4 | (powered
? 0x08 : 0) | (pwr_sub
? 0x04 : 0) | 0x03;
156 parport_write_data(port
, c
);
159 c
= ((((data
& 2) ? 2 : 0) | ((data
& 1) ? 4 : 0)) ^ 0x02) | !powered
;
160 parport_write_control(port
, c
);
166 * gc_saturn_read_sub() reads 4 bit data.
168 static unsigned char db9_saturn_read_sub(struct parport
*port
, int type
)
174 data
= parport_read_status(port
) ^ 0x80;
175 return (data
& 0x80 ? 1 : 0) | (data
& 0x40 ? 2 : 0)
176 | (data
& 0x20 ? 4 : 0) | (data
& 0x10 ? 8 : 0);
179 data
= parport_read_data(port
) & 0x0f;
180 return (data
& 0x8 ? 1 : 0) | (data
& 0x4 ? 2 : 0)
181 | (data
& 0x2 ? 4 : 0) | (data
& 0x1 ? 8 : 0);
186 * db9_saturn_read_analog() sends clock and reads 8 bit data.
188 static unsigned char db9_saturn_read_analog(struct parport
*port
, int type
, int powered
)
192 db9_saturn_write_sub(port
, type
, 0, powered
, 0);
193 udelay(DB9_SATURN_DELAY
);
194 data
= db9_saturn_read_sub(port
, type
) << 4;
195 db9_saturn_write_sub(port
, type
, 2, powered
, 0);
196 udelay(DB9_SATURN_DELAY
);
197 data
|= db9_saturn_read_sub(port
, type
);
202 * db9_saturn_read_packet() reads whole saturn packet at connector
203 * and returns device identifier code.
205 static unsigned char db9_saturn_read_packet(struct parport
*port
, unsigned char *data
, int type
, int powered
)
210 db9_saturn_write_sub(port
, type
, 3, powered
, 0);
211 data
[0] = db9_saturn_read_sub(port
, type
);
212 switch (data
[0] & 0x0f) {
215 return data
[0] = 0xff;
216 case 0x4: case 0x4 | 0x8:
217 /* ?100 : digital controller */
218 db9_saturn_write_sub(port
, type
, 0, powered
, 1);
219 data
[2] = db9_saturn_read_sub(port
, type
) << 4;
220 db9_saturn_write_sub(port
, type
, 2, powered
, 1);
221 data
[1] = db9_saturn_read_sub(port
, type
) << 4;
222 db9_saturn_write_sub(port
, type
, 1, powered
, 1);
223 data
[1] |= db9_saturn_read_sub(port
, type
);
224 db9_saturn_write_sub(port
, type
, 3, powered
, 1);
225 /* data[2] |= db9_saturn_read_sub(port, type); */
227 return data
[0] = 0x02;
229 /* 0001 : analog controller or multitap */
230 db9_saturn_write_sub(port
, type
, 2, powered
, 0);
231 udelay(DB9_SATURN_DELAY
);
232 data
[0] = db9_saturn_read_analog(port
, type
, powered
);
233 if (data
[0] != 0x41) {
234 /* read analog controller */
235 for (i
= 0; i
< (data
[0] & 0x0f); i
++)
236 data
[i
+ 1] = db9_saturn_read_analog(port
, type
, powered
);
237 db9_saturn_write_sub(port
, type
, 3, powered
, 0);
241 if (db9_saturn_read_analog(port
, type
, powered
) != 0x60)
242 return data
[0] = 0xff;
243 for (i
= 0; i
< 60; i
+= 10) {
244 data
[i
] = db9_saturn_read_analog(port
, type
, powered
);
247 for (j
= 0; j
< (data
[i
] & 0x0f); j
++)
248 data
[i
+ j
+ 1] = db9_saturn_read_analog(port
, type
, powered
);
250 db9_saturn_write_sub(port
, type
, 3, powered
, 0);
255 db9_saturn_write_sub(port
, type
, 2, powered
, 0);
256 udelay(DB9_SATURN_DELAY
);
257 tmp
= db9_saturn_read_analog(port
, type
, powered
);
259 for (i
= 0; i
< 3; i
++)
260 data
[i
+ 1] = db9_saturn_read_analog(port
, type
, powered
);
261 db9_saturn_write_sub(port
, type
, 3, powered
, 0);
262 return data
[0] = 0xe3;
270 * db9_saturn_report() analyzes packet and reports.
272 static int db9_saturn_report(unsigned char id
, unsigned char data
[60], struct input_dev
*devs
[], int n
, int max_pads
)
274 struct input_dev
*dev
;
277 tmp
= (id
== 0x41) ? 60 : 10;
278 for (j
= 0; j
< tmp
&& n
< max_pads
; j
+= 10, n
++) {
281 case 0x16: /* multi controller (analog 4 axis) */
282 input_report_abs(dev
, db9_abs
[5], data
[j
+ 6]);
283 case 0x15: /* mission stick (analog 3 axis) */
284 input_report_abs(dev
, db9_abs
[3], data
[j
+ 4]);
285 input_report_abs(dev
, db9_abs
[4], data
[j
+ 5]);
286 case 0x13: /* racing controller (analog 1 axis) */
287 input_report_abs(dev
, db9_abs
[2], data
[j
+ 3]);
288 case 0x34: /* saturn keyboard (udlr ZXC ASD QE Esc) */
289 case 0x02: /* digital pad (digital 2 axis + buttons) */
290 input_report_abs(dev
, db9_abs
[0], !(data
[j
+ 1] & 128) - !(data
[j
+ 1] & 64));
291 input_report_abs(dev
, db9_abs
[1], !(data
[j
+ 1] & 32) - !(data
[j
+ 1] & 16));
292 for (i
= 0; i
< 9; i
++)
293 input_report_key(dev
, db9_cd32_btn
[i
], ~data
[j
+ db9_saturn_byte
[i
]] & db9_saturn_mask
[i
]);
295 case 0x19: /* mission stick x2 (analog 6 axis + buttons) */
296 input_report_abs(dev
, db9_abs
[0], !(data
[j
+ 1] & 128) - !(data
[j
+ 1] & 64));
297 input_report_abs(dev
, db9_abs
[1], !(data
[j
+ 1] & 32) - !(data
[j
+ 1] & 16));
298 for (i
= 0; i
< 9; i
++)
299 input_report_key(dev
, db9_cd32_btn
[i
], ~data
[j
+ db9_saturn_byte
[i
]] & db9_saturn_mask
[i
]);
300 input_report_abs(dev
, db9_abs
[2], data
[j
+ 3]);
301 input_report_abs(dev
, db9_abs
[3], data
[j
+ 4]);
302 input_report_abs(dev
, db9_abs
[4], data
[j
+ 5]);
304 input_report_abs(dev, db9_abs[8], (data[j + 6] & 128 ? 0 : 1) - (data[j + 6] & 64 ? 0 : 1));
305 input_report_abs(dev, db9_abs[9], (data[j + 6] & 32 ? 0 : 1) - (data[j + 6] & 16 ? 0 : 1));
307 input_report_abs(dev
, db9_abs
[6], data
[j
+ 7]);
308 input_report_abs(dev
, db9_abs
[7], data
[j
+ 8]);
309 input_report_abs(dev
, db9_abs
[5], data
[j
+ 9]);
311 case 0xd3: /* sankyo ff (analog 1 axis + stop btn) */
312 input_report_key(dev
, BTN_A
, data
[j
+ 3] & 0x80);
313 input_report_abs(dev
, db9_abs
[2], data
[j
+ 3] & 0x7f);
315 case 0xe3: /* shuttle mouse (analog 2 axis + buttons. signed value) */
316 input_report_key(dev
, BTN_START
, data
[j
+ 1] & 0x08);
317 input_report_key(dev
, BTN_A
, data
[j
+ 1] & 0x04);
318 input_report_key(dev
, BTN_C
, data
[j
+ 1] & 0x02);
319 input_report_key(dev
, BTN_B
, data
[j
+ 1] & 0x01);
320 input_report_abs(dev
, db9_abs
[2], data
[j
+ 2] ^ 0x80);
321 input_report_abs(dev
, db9_abs
[3], (0xff-(data
[j
+ 3] ^ 0x80))+1); /* */
324 default: /* no pad */
325 input_report_abs(dev
, db9_abs
[0], 0);
326 input_report_abs(dev
, db9_abs
[1], 0);
327 for (i
= 0; i
< 9; i
++)
328 input_report_key(dev
, db9_cd32_btn
[i
], 0);
335 static int db9_saturn(int mode
, struct parport
*port
, struct input_dev
*devs
[])
337 unsigned char id
, data
[60];
338 int type
, n
, max_pads
;
350 case DB9_SATURN_DPP_2
:
357 max_pads
= min(db9_modes
[mode
].n_pads
, DB9_MAX_DEVICES
);
358 for (tmp
= 0, i
= 0; i
< n
; i
++) {
359 id
= db9_saturn_read_packet(port
, data
, type
+ i
, 1);
360 tmp
= db9_saturn_report(id
, data
, devs
, tmp
, max_pads
);
365 static void db9_timer(unsigned long private)
367 struct db9
*db9
= (void *) private;
368 struct parport
*port
= db9
->pd
->port
;
369 struct input_dev
*dev
= db9
->dev
[0];
370 struct input_dev
*dev2
= db9
->dev
[1];
374 case DB9_MULTI_0802_2
:
376 data
= parport_read_data(port
) >> 3;
378 input_report_abs(dev2
, ABS_X
, (data
& DB9_RIGHT
? 0 : 1) - (data
& DB9_LEFT
? 0 : 1));
379 input_report_abs(dev2
, ABS_Y
, (data
& DB9_DOWN
? 0 : 1) - (data
& DB9_UP
? 0 : 1));
380 input_report_key(dev2
, BTN_TRIGGER
, ~data
& DB9_FIRE1
);
384 data
= parport_read_status(port
) >> 3;
386 input_report_abs(dev
, ABS_X
, (data
& DB9_RIGHT
? 0 : 1) - (data
& DB9_LEFT
? 0 : 1));
387 input_report_abs(dev
, ABS_Y
, (data
& DB9_DOWN
? 0 : 1) - (data
& DB9_UP
? 0 : 1));
388 input_report_key(dev
, BTN_TRIGGER
, data
& DB9_FIRE1
);
391 case DB9_MULTI_STICK
:
393 data
= parport_read_data(port
);
395 input_report_abs(dev
, ABS_X
, (data
& DB9_RIGHT
? 0 : 1) - (data
& DB9_LEFT
? 0 : 1));
396 input_report_abs(dev
, ABS_Y
, (data
& DB9_DOWN
? 0 : 1) - (data
& DB9_UP
? 0 : 1));
397 input_report_key(dev
, BTN_TRIGGER
, ~data
& DB9_FIRE1
);
400 case DB9_MULTI2_STICK
:
402 data
= parport_read_data(port
);
404 input_report_abs(dev
, ABS_X
, (data
& DB9_RIGHT
? 0 : 1) - (data
& DB9_LEFT
? 0 : 1));
405 input_report_abs(dev
, ABS_Y
, (data
& DB9_DOWN
? 0 : 1) - (data
& DB9_UP
? 0 : 1));
406 input_report_key(dev
, BTN_TRIGGER
, ~data
& DB9_FIRE1
);
407 input_report_key(dev
, BTN_THUMB
, ~data
& DB9_FIRE2
);
410 case DB9_GENESIS_PAD
:
412 parport_write_control(port
, DB9_NOSELECT
);
413 data
= parport_read_data(port
);
415 input_report_abs(dev
, ABS_X
, (data
& DB9_RIGHT
? 0 : 1) - (data
& DB9_LEFT
? 0 : 1));
416 input_report_abs(dev
, ABS_Y
, (data
& DB9_DOWN
? 0 : 1) - (data
& DB9_UP
? 0 : 1));
417 input_report_key(dev
, BTN_B
, ~data
& DB9_FIRE1
);
418 input_report_key(dev
, BTN_C
, ~data
& DB9_FIRE2
);
420 parport_write_control(port
, DB9_NORMAL
);
421 data
= parport_read_data(port
);
423 input_report_key(dev
, BTN_A
, ~data
& DB9_FIRE1
);
424 input_report_key(dev
, BTN_START
, ~data
& DB9_FIRE2
);
427 case DB9_GENESIS5_PAD
:
429 parport_write_control(port
, DB9_NOSELECT
);
430 data
= parport_read_data(port
);
432 input_report_abs(dev
, ABS_X
, (data
& DB9_RIGHT
? 0 : 1) - (data
& DB9_LEFT
? 0 : 1));
433 input_report_abs(dev
, ABS_Y
, (data
& DB9_DOWN
? 0 : 1) - (data
& DB9_UP
? 0 : 1));
434 input_report_key(dev
, BTN_B
, ~data
& DB9_FIRE1
);
435 input_report_key(dev
, BTN_C
, ~data
& DB9_FIRE2
);
437 parport_write_control(port
, DB9_NORMAL
);
438 data
= parport_read_data(port
);
440 input_report_key(dev
, BTN_A
, ~data
& DB9_FIRE1
);
441 input_report_key(dev
, BTN_X
, ~data
& DB9_FIRE2
);
442 input_report_key(dev
, BTN_Y
, ~data
& DB9_LEFT
);
443 input_report_key(dev
, BTN_START
, ~data
& DB9_RIGHT
);
446 case DB9_GENESIS6_PAD
:
448 parport_write_control(port
, DB9_NOSELECT
); /* 1 */
449 udelay(DB9_GENESIS6_DELAY
);
450 data
= parport_read_data(port
);
452 input_report_abs(dev
, ABS_X
, (data
& DB9_RIGHT
? 0 : 1) - (data
& DB9_LEFT
? 0 : 1));
453 input_report_abs(dev
, ABS_Y
, (data
& DB9_DOWN
? 0 : 1) - (data
& DB9_UP
? 0 : 1));
454 input_report_key(dev
, BTN_B
, ~data
& DB9_FIRE1
);
455 input_report_key(dev
, BTN_C
, ~data
& DB9_FIRE2
);
457 parport_write_control(port
, DB9_NORMAL
);
458 udelay(DB9_GENESIS6_DELAY
);
459 data
= parport_read_data(port
);
461 input_report_key(dev
, BTN_A
, ~data
& DB9_FIRE1
);
462 input_report_key(dev
, BTN_START
, ~data
& DB9_FIRE2
);
464 parport_write_control(port
, DB9_NOSELECT
); /* 2 */
465 udelay(DB9_GENESIS6_DELAY
);
466 parport_write_control(port
, DB9_NORMAL
);
467 udelay(DB9_GENESIS6_DELAY
);
468 parport_write_control(port
, DB9_NOSELECT
); /* 3 */
469 udelay(DB9_GENESIS6_DELAY
);
470 data
=parport_read_data(port
);
472 input_report_key(dev
, BTN_X
, ~data
& DB9_LEFT
);
473 input_report_key(dev
, BTN_Y
, ~data
& DB9_DOWN
);
474 input_report_key(dev
, BTN_Z
, ~data
& DB9_UP
);
475 input_report_key(dev
, BTN_MODE
, ~data
& DB9_RIGHT
);
477 parport_write_control(port
, DB9_NORMAL
);
478 udelay(DB9_GENESIS6_DELAY
);
479 parport_write_control(port
, DB9_NOSELECT
); /* 4 */
480 udelay(DB9_GENESIS6_DELAY
);
481 parport_write_control(port
, DB9_NORMAL
);
486 case DB9_SATURN_DPP_2
:
488 db9_saturn(db9
->mode
, port
, db9
->dev
);
493 data
= parport_read_data(port
);
495 input_report_abs(dev
, ABS_X
, (data
& DB9_RIGHT
? 0 : 1) - (data
& DB9_LEFT
? 0 : 1));
496 input_report_abs(dev
, ABS_Y
, (data
& DB9_DOWN
? 0 : 1) - (data
& DB9_UP
? 0 : 1));
498 parport_write_control(port
, 0x0a);
500 for (i
= 0; i
< 7; i
++) {
501 data
= parport_read_data(port
);
502 parport_write_control(port
, 0x02);
503 parport_write_control(port
, 0x0a);
504 input_report_key(dev
, db9_cd32_btn
[i
], ~data
& DB9_FIRE2
);
507 parport_write_control(port
, 0x00);
513 mod_timer(&db9
->timer
, jiffies
+ DB9_REFRESH_TIME
);
516 static int db9_open(struct input_dev
*dev
)
518 struct db9
*db9
= input_get_drvdata(dev
);
519 struct parport
*port
= db9
->pd
->port
;
522 err
= mutex_lock_interruptible(&db9
->mutex
);
527 parport_claim(db9
->pd
);
528 parport_write_data(port
, 0xff);
529 if (db9_modes
[db9
->mode
].reverse
) {
530 parport_data_reverse(port
);
531 parport_write_control(port
, DB9_NORMAL
);
533 mod_timer(&db9
->timer
, jiffies
+ DB9_REFRESH_TIME
);
536 mutex_unlock(&db9
->mutex
);
540 static void db9_close(struct input_dev
*dev
)
542 struct db9
*db9
= input_get_drvdata(dev
);
543 struct parport
*port
= db9
->pd
->port
;
545 mutex_lock(&db9
->mutex
);
547 del_timer_sync(&db9
->timer
);
548 parport_write_control(port
, 0x00);
549 parport_data_forward(port
);
550 parport_release(db9
->pd
);
552 mutex_unlock(&db9
->mutex
);
555 static struct db9 __init
*db9_probe(int parport
, int mode
)
558 const struct db9_mode_data
*db9_mode
;
560 struct pardevice
*pd
;
561 struct input_dev
*input_dev
;
565 if (mode
< 1 || mode
>= DB9_MAX_PAD
|| !db9_modes
[mode
].n_buttons
) {
566 printk(KERN_ERR
"db9.c: Bad device type %d\n", mode
);
571 db9_mode
= &db9_modes
[mode
];
573 pp
= parport_find_number(parport
);
575 printk(KERN_ERR
"db9.c: no such parport\n");
580 if (db9_mode
->bidirectional
&& !(pp
->modes
& PARPORT_MODE_TRISTATE
)) {
581 printk(KERN_ERR
"db9.c: specified parport is not bidirectional\n");
586 pd
= parport_register_device(pp
, "db9", NULL
, NULL
, NULL
, PARPORT_DEV_EXCL
, NULL
);
588 printk(KERN_ERR
"db9.c: parport busy already - lp.o loaded?\n");
593 db9
= kzalloc(sizeof(struct db9
), GFP_KERNEL
);
595 printk(KERN_ERR
"db9.c: Not enough memory\n");
597 goto err_unreg_pardev
;
600 mutex_init(&db9
->mutex
);
603 init_timer(&db9
->timer
);
604 db9
->timer
.data
= (long) db9
;
605 db9
->timer
.function
= db9_timer
;
607 for (i
= 0; i
< (min(db9_mode
->n_pads
, DB9_MAX_DEVICES
)); i
++) {
609 db9
->dev
[i
] = input_dev
= input_allocate_device();
611 printk(KERN_ERR
"db9.c: Not enough memory for input device\n");
616 snprintf(db9
->phys
[i
], sizeof(db9
->phys
[i
]),
617 "%s/input%d", db9
->pd
->port
->name
, i
);
619 input_dev
->name
= db9_mode
->name
;
620 input_dev
->phys
= db9
->phys
[i
];
621 input_dev
->id
.bustype
= BUS_PARPORT
;
622 input_dev
->id
.vendor
= 0x0002;
623 input_dev
->id
.product
= mode
;
624 input_dev
->id
.version
= 0x0100;
626 input_set_drvdata(input_dev
, db9
);
628 input_dev
->open
= db9_open
;
629 input_dev
->close
= db9_close
;
631 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
632 for (j
= 0; j
< db9_mode
->n_buttons
; j
++)
633 set_bit(db9_mode
->buttons
[j
], input_dev
->keybit
);
634 for (j
= 0; j
< db9_mode
->n_axis
; j
++) {
636 input_set_abs_params(input_dev
, db9_abs
[j
], -1, 1, 0, 0);
638 input_set_abs_params(input_dev
, db9_abs
[j
], 1, 255, 0, 0);
641 err
= input_register_device(input_dev
);
646 parport_put_port(pp
);
650 input_free_device(db9
->dev
[i
]);
653 input_unregister_device(db9
->dev
[i
]);
656 parport_unregister_device(pd
);
658 parport_put_port(pp
);
663 static void db9_remove(struct db9
*db9
)
667 for (i
= 0; i
< min(db9_modes
[db9
->mode
].n_pads
, DB9_MAX_DEVICES
); i
++)
668 input_unregister_device(db9
->dev
[i
]);
669 parport_unregister_device(db9
->pd
);
673 static int __init
db9_init(void)
679 for (i
= 0; i
< DB9_MAX_PORTS
; i
++) {
680 if (db9_cfg
[i
].nargs
== 0 || db9_cfg
[i
].args
[DB9_ARG_PARPORT
] < 0)
683 if (db9_cfg
[i
].nargs
< 2) {
684 printk(KERN_ERR
"db9.c: Device type must be specified.\n");
689 db9_base
[i
] = db9_probe(db9_cfg
[i
].args
[DB9_ARG_PARPORT
],
690 db9_cfg
[i
].args
[DB9_ARG_MODE
]);
691 if (IS_ERR(db9_base
[i
])) {
692 err
= PTR_ERR(db9_base
[i
]);
702 db9_remove(db9_base
[i
]);
706 return have_dev
? 0 : -ENODEV
;
709 static void __exit
db9_exit(void)
713 for (i
= 0; i
< DB9_MAX_PORTS
; i
++)
715 db9_remove(db9_base
[i
]);
718 module_init(db9_init
);
719 module_exit(db9_exit
);