blob: fb129c479a666124670bfba0652f01ba66fb5ba2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * $Id: iforce-main.c,v 1.19 2002/07/07 10:22:50 jdeneux Exp $
3 *
4 * Copyright (c) 2000-2002 Vojtech Pavlik <vojtech@ucw.cz>
Johann Deneux598972d2007-04-12 01:30:24 -04005 * Copyright (c) 2001-2002, 2007 Johann Deneux <johann.deneux@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * USB/RS232 I-Force joysticks and wheels.
8 */
9
10/*
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 * Should you need to contact me, the author, you can do so either by
26 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
27 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
28 */
29
30#include "iforce.h"
31
Johann Deneux598972d2007-04-12 01:30:24 -040032MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>, Johann Deneux <johann.deneux@gmail.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070033MODULE_DESCRIPTION("USB/RS232 I-Force joysticks and wheels driver");
34MODULE_LICENSE("GPL");
35
36static signed short btn_joystick[] =
37{ BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
38 BTN_BASE2, BTN_BASE3, BTN_BASE4, BTN_BASE5, BTN_A, BTN_B, BTN_C, -1 };
39
40static signed short btn_avb_pegasus[] =
41{ BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
42 BTN_BASE2, BTN_BASE3, BTN_BASE4, -1 };
43
44static signed short btn_wheel[] =
45{ BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
46 BTN_BASE2, BTN_BASE3, BTN_BASE4, BTN_BASE5, BTN_A, BTN_B, BTN_C, -1 };
47
48static signed short btn_avb_tw[] =
49{ BTN_TRIGGER, BTN_THUMB, BTN_TOP, BTN_TOP2, BTN_BASE,
50 BTN_BASE2, BTN_BASE3, BTN_BASE4, -1 };
51
52static signed short btn_avb_wheel[] =
53{ BTN_GEAR_DOWN, BTN_GEAR_UP, BTN_BASE, BTN_BASE2, BTN_BASE3,
54 BTN_BASE4, BTN_BASE5, BTN_BASE6, -1 };
55
56static signed short abs_joystick[] =
57{ ABS_X, ABS_Y, ABS_THROTTLE, ABS_HAT0X, ABS_HAT0Y, -1 };
58
59static signed short abs_avb_pegasus[] =
60{ ABS_X, ABS_Y, ABS_THROTTLE, ABS_RUDDER, ABS_HAT0X, ABS_HAT0Y,
61 ABS_HAT1X, ABS_HAT1Y, -1 };
62
63static signed short abs_wheel[] =
64{ ABS_WHEEL, ABS_GAS, ABS_BRAKE, ABS_HAT0X, ABS_HAT0Y, -1 };
65
66static signed short ff_iforce[] =
67{ FF_PERIODIC, FF_CONSTANT, FF_SPRING, FF_DAMPER,
68 FF_SQUARE, FF_TRIANGLE, FF_SINE, FF_SAW_UP, FF_SAW_DOWN, FF_GAIN,
69 FF_AUTOCENTER, -1 };
70
71static struct iforce_device iforce_device[] = {
72 { 0x044f, 0xa01c, "Thrustmaster Motor Sport GT", btn_wheel, abs_wheel, ff_iforce },
73 { 0x046d, 0xc281, "Logitech WingMan Force", btn_joystick, abs_joystick, ff_iforce },
74 { 0x046d, 0xc291, "Logitech WingMan Formula Force", btn_wheel, abs_wheel, ff_iforce },
75 { 0x05ef, 0x020a, "AVB Top Shot Pegasus", btn_avb_pegasus, abs_avb_pegasus, ff_iforce },
76 { 0x05ef, 0x8884, "AVB Mag Turbo Force", btn_avb_wheel, abs_wheel, ff_iforce },
77 { 0x05ef, 0x8888, "AVB Top Shot Force Feedback Racing Wheel", btn_avb_tw, abs_wheel, ff_iforce }, //?
78 { 0x061c, 0xc0a4, "ACT LABS Force RS", btn_wheel, abs_wheel, ff_iforce }, //?
79 { 0x06f8, 0x0001, "Guillemot Race Leader Force Feedback", btn_wheel, abs_wheel, ff_iforce }, //?
80 { 0x06f8, 0x0004, "Guillemot Force Feedback Racing Wheel", btn_wheel, abs_wheel, ff_iforce }, //?
Marian-Nicolae V. Ion18098a62005-05-29 02:30:01 -050081 { 0x06f8, 0x0004, "Gullemot Jet Leader 3D", btn_joystick, abs_joystick, ff_iforce }, //?
Przemek Iskrab53174f2006-07-15 01:16:21 -040082 { 0x06d6, 0x29bc, "Trust Force Feedback Race Master", btn_wheel, abs_wheel, ff_iforce },
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 { 0x0000, 0x0000, "Unknown I-Force Device [%04x:%04x]", btn_joystick, abs_joystick, ff_iforce }
84};
85
Anssi Hannulaf6a01c82006-07-19 01:40:39 -040086static int iforce_playback(struct input_dev *dev, int effect_id, int value)
87{
88 struct iforce* iforce = dev->private;
89 struct iforce_core_effect *core_effect = &iforce->core_effects[effect_id];
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Anssi Hannulaf6a01c82006-07-19 01:40:39 -040091 if (value > 0)
92 set_bit(FF_CORE_SHOULD_PLAY, core_effect->flags);
93 else
94 clear_bit(FF_CORE_SHOULD_PLAY, core_effect->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Anssi Hannulaf6a01c82006-07-19 01:40:39 -040096 iforce_control_playback(iforce, effect_id, value);
97 return 0;
98}
99
100static void iforce_set_gain(struct input_dev *dev, u16 gain)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Jesper Juhle2e81152006-06-26 01:59:52 -0400102 struct iforce* iforce = dev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 unsigned char data[3];
104
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400105 data[0] = gain >> 9;
106 iforce_send_packet(iforce, FF_CMD_GAIN, data);
107}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400109static void iforce_set_autocenter(struct input_dev *dev, u16 magnitude)
110{
111 struct iforce* iforce = dev->private;
112 unsigned char data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400114 data[0] = 0x03;
115 data[1] = magnitude >> 9;
116 iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400118 data[0] = 0x04;
119 data[1] = 0x01;
120 iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123/*
124 * Function called when an ioctl is performed on the event dev entry.
125 * It uploads an effect to the device
126 */
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400127static int iforce_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Jesper Juhle2e81152006-06-26 01:59:52 -0400129 struct iforce* iforce = dev->private;
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400130 struct iforce_core_effect *core_effect = &iforce->core_effects[effect->id];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400133 if (__test_and_set_bit(FF_CORE_IS_USED, core_effect->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /* Check the effect is not already being updated */
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400135 if (test_bit(FF_CORE_UPDATE, core_effect->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138
139/*
140 * Upload the effect
141 */
142 switch (effect->type) {
143
144 case FF_PERIODIC:
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400145 ret = iforce_upload_periodic(iforce, effect, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 break;
147
148 case FF_CONSTANT:
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400149 ret = iforce_upload_constant(iforce, effect, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 break;
151
152 case FF_SPRING:
153 case FF_DAMPER:
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400154 ret = iforce_upload_condition(iforce, effect, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 break;
156
157 default:
158 return -EINVAL;
159 }
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (ret == 0) {
162 /* A packet was sent, forbid new updates until we are notified
163 * that the packet was updated
164 */
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400165 set_bit(FF_CORE_UPDATE, core_effect->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return ret;
168}
169
170/*
171 * Erases an effect: it frees the effect id and mark as unused the memory
172 * allocated for the parameters
173 */
174static int iforce_erase_effect(struct input_dev *dev, int effect_id)
175{
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400176 struct iforce *iforce = dev->private;
177 struct iforce_core_effect *core_effect = &iforce->core_effects[effect_id];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 if (test_bit(FF_MOD1_IS_USED, core_effect->flags))
Dmitry Torokhov8d64d372006-07-06 23:55:00 -0400181 err = release_resource(&core_effect->mod1_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 if (!err && test_bit(FF_MOD2_IS_USED, core_effect->flags))
Dmitry Torokhov8d64d372006-07-06 23:55:00 -0400184 err = release_resource(&core_effect->mod2_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400186 /* TODO: remember to change that if more FF_MOD* bits are added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 core_effect->flags[0] = 0;
188
189 return err;
190}
191
192static int iforce_open(struct input_dev *dev)
193{
194 struct iforce *iforce = dev->private;
195
196 switch (iforce->bus) {
197#ifdef CONFIG_JOYSTICK_IFORCE_USB
198 case IFORCE_USB:
199 iforce->irq->dev = iforce->usbdev;
200 if (usb_submit_urb(iforce->irq, GFP_KERNEL))
201 return -EIO;
202 break;
203#endif
204 }
205
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400206 if (test_bit(EV_FF, dev->evbit)) {
207 /* Enable force feedback */
208 iforce_send_packet(iforce, FF_CMD_ENABLE, "\004");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return 0;
212}
213
214static void iforce_release(struct input_dev *dev)
215{
216 struct iforce *iforce = dev->private;
217 int i;
218
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400219 if (test_bit(EV_FF, dev->evbit)) {
220 /* Check: no effects should be present in memory */
221 for (i = 0; i < dev->ff->max_effects; i++) {
222 if (test_bit(FF_CORE_IS_USED, iforce->core_effects[i].flags)) {
Johann Deneux598972d2007-04-12 01:30:24 -0400223 warn("iforce_release: Device still owns effects");
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400224 break;
225 }
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400228 /* Disable force feedback playback */
229 iforce_send_packet(iforce, FF_CMD_ENABLE, "\001");
230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 switch (iforce->bus) {
233#ifdef CONFIG_JOYSTICK_IFORCE_USB
234 case IFORCE_USB:
Johann Deneux598972d2007-04-12 01:30:24 -0400235 usb_kill_urb(iforce->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 /* The device was unplugged before the file
238 * was released */
239 if (iforce->usbdev == NULL) {
240 iforce_delete_device(iforce);
241 kfree(iforce);
242 }
243 break;
244#endif
245 }
246}
247
248void iforce_delete_device(struct iforce *iforce)
249{
250 switch (iforce->bus) {
251#ifdef CONFIG_JOYSTICK_IFORCE_USB
252 case IFORCE_USB:
253 iforce_usb_delete(iforce);
254 break;
255#endif
256#ifdef CONFIG_JOYSTICK_IFORCE_232
257 case IFORCE_232:
258 //TODO: Wait for the last packets to be sent
259 break;
260#endif
261 }
262}
263
264int iforce_init_device(struct iforce *iforce)
265{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500266 struct input_dev *input_dev;
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400267 struct ff_device *ff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 unsigned char c[] = "CEOV";
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400269 int i, error;
270 int ff_effects = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500272 input_dev = input_allocate_device();
Alexey Dobriyan5ae08f82006-01-29 21:50:52 -0500273 if (!input_dev)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500274 return -ENOMEM;
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 init_waitqueue_head(&iforce->wait);
277 spin_lock_init(&iforce->xmit_lock);
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500278 mutex_init(&iforce->mem_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 iforce->xmit.buf = iforce->xmit_data;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500280 iforce->dev = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282/*
283 * Input device fields.
284 */
285
286 switch (iforce->bus) {
287#ifdef CONFIG_JOYSTICK_IFORCE_USB
288 case IFORCE_USB:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500289 input_dev->id.bustype = BUS_USB;
Dmitry Torokhov935e6582007-04-12 01:35:26 -0400290 input_dev->dev.parent = &iforce->usbdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 break;
292#endif
293#ifdef CONFIG_JOYSTICK_IFORCE_232
294 case IFORCE_232:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500295 input_dev->id.bustype = BUS_RS232;
Dmitry Torokhov935e6582007-04-12 01:35:26 -0400296 input_dev->dev.parent = &iforce->serio->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 break;
298#endif
299 }
300
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500301 input_dev->private = iforce;
302 input_dev->name = "Unknown I-Force device";
303 input_dev->open = iforce_open;
304 input_dev->close = iforce_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306/*
307 * On-device memory allocation.
308 */
309
310 iforce->device_memory.name = "I-Force device effect memory";
311 iforce->device_memory.start = 0;
312 iforce->device_memory.end = 200;
313 iforce->device_memory.flags = IORESOURCE_MEM;
314 iforce->device_memory.parent = NULL;
315 iforce->device_memory.child = NULL;
316 iforce->device_memory.sibling = NULL;
317
318/*
319 * Wait until device ready - until it sends its first response.
320 */
321
322 for (i = 0; i < 20; i++)
323 if (!iforce_get_id_packet(iforce, "O"))
324 break;
325
326 if (i == 20) { /* 5 seconds */
Johann Deneux598972d2007-04-12 01:30:24 -0400327 err("Timeout waiting for response from device.");
Dmitry Torokhov127278c2006-11-05 22:40:09 -0500328 error = -ENODEV;
329 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
332/*
333 * Get device info.
334 */
335
336 if (!iforce_get_id_packet(iforce, "M"))
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500337 input_dev->id.vendor = (iforce->edata[2] << 8) | iforce->edata[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 else
Johann Deneux598972d2007-04-12 01:30:24 -0400339 warn("Device does not respond to id packet M");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 if (!iforce_get_id_packet(iforce, "P"))
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500342 input_dev->id.product = (iforce->edata[2] << 8) | iforce->edata[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 else
Johann Deneux598972d2007-04-12 01:30:24 -0400344 warn("Device does not respond to id packet P");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 if (!iforce_get_id_packet(iforce, "B"))
347 iforce->device_memory.end = (iforce->edata[2] << 8) | iforce->edata[1];
348 else
Johann Deneux598972d2007-04-12 01:30:24 -0400349 warn("Device does not respond to id packet B");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 if (!iforce_get_id_packet(iforce, "N"))
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400352 ff_effects = iforce->edata[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 else
Johann Deneux598972d2007-04-12 01:30:24 -0400354 warn("Device does not respond to id packet N");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 /* Check if the device can store more effects than the driver can really handle */
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400357 if (ff_effects > IFORCE_EFFECTS_MAX) {
Johann Deneux598972d2007-04-12 01:30:24 -0400358 warn("Limiting number of effects to %d (device reports %d)",
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400359 IFORCE_EFFECTS_MAX, ff_effects);
360 ff_effects = IFORCE_EFFECTS_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
363/*
364 * Display additional info.
365 */
366
367 for (i = 0; c[i]; i++)
368 if (!iforce_get_id_packet(iforce, c + i))
369 iforce_dump_packet("info", iforce->ecmd, iforce->edata);
370
371/*
372 * Disable spring, enable force feedback.
373 * FIXME: We should use iforce_set_autocenter() et al here.
374 */
375
376 iforce_send_packet(iforce, FF_CMD_AUTOCENTER, "\004\000");
377
378/*
379 * Find appropriate device entry
380 */
381
382 for (i = 0; iforce_device[i].idvendor; i++)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500383 if (iforce_device[i].idvendor == input_dev->id.vendor &&
384 iforce_device[i].idproduct == input_dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 break;
386
387 iforce->type = iforce_device + i;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500388 input_dev->name = iforce->type->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390/*
391 * Set input device bitfields and ranges.
392 */
393
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400394 input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_FF_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400396 for (i = 0; iforce->type->btn[i] >= 0; i++)
397 set_bit(iforce->type->btn[i], input_dev->keybit);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500398 set_bit(BTN_DEAD, input_dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 for (i = 0; iforce->type->abs[i] >= 0; i++) {
401
402 signed short t = iforce->type->abs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 switch (t) {
405
406 case ABS_X:
407 case ABS_Y:
408 case ABS_WHEEL:
409
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500410 input_set_abs_params(input_dev, t, -1920, 1920, 16, 128);
411 set_bit(t, input_dev->ffbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 break;
413
414 case ABS_THROTTLE:
415 case ABS_GAS:
416 case ABS_BRAKE:
417
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500418 input_set_abs_params(input_dev, t, 0, 255, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 break;
420
421 case ABS_RUDDER:
422
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500423 input_set_abs_params(input_dev, t, -128, 127, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 break;
425
426 case ABS_HAT0X:
427 case ABS_HAT0Y:
428 case ABS_HAT1X:
429 case ABS_HAT1Y:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500430
431 input_set_abs_params(input_dev, t, -1, 1, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 break;
433 }
434 }
435
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400436 if (ff_effects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400438 for (i = 0; iforce->type->ff[i] >= 0; i++)
439 set_bit(iforce->type->ff[i], input_dev->ffbit);
440
441 error = input_ff_create(input_dev, ff_effects);
Dmitry Torokhov127278c2006-11-05 22:40:09 -0500442 if (error)
443 goto fail;
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400444
445 ff = input_dev->ff;
446 ff->upload = iforce_upload_effect;
447 ff->erase = iforce_erase_effect;
448 ff->set_gain = iforce_set_gain;
449 ff->set_autocenter = iforce_set_autocenter;
450 ff->playback = iforce_playback;
451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/*
453 * Register input device.
454 */
455
Dmitry Torokhov127278c2006-11-05 22:40:09 -0500456 error = input_register_device(iforce->dev);
457 if (error)
458 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return 0;
Dmitry Torokhov127278c2006-11-05 22:40:09 -0500461
462 fail: input_free_device(input_dev);
463 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
466static int __init iforce_init(void)
467{
Akinobu Mita153a9df02006-11-23 23:35:10 -0500468 int err = 0;
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#ifdef CONFIG_JOYSTICK_IFORCE_USB
Akinobu Mita153a9df02006-11-23 23:35:10 -0500471 err = usb_register(&iforce_usb_driver);
472 if (err)
473 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474#endif
475#ifdef CONFIG_JOYSTICK_IFORCE_232
Akinobu Mita153a9df02006-11-23 23:35:10 -0500476 err = serio_register_driver(&iforce_serio_drv);
477#ifdef CONFIG_JOYSTICK_IFORCE_USB
478 if (err)
479 usb_deregister(&iforce_usb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480#endif
Akinobu Mita153a9df02006-11-23 23:35:10 -0500481#endif
482 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485static void __exit iforce_exit(void)
486{
487#ifdef CONFIG_JOYSTICK_IFORCE_USB
488 usb_deregister(&iforce_usb_driver);
489#endif
490#ifdef CONFIG_JOYSTICK_IFORCE_232
491 serio_unregister_driver(&iforce_serio_drv);
492#endif
493}
494
495module_init(iforce_init);
496module_exit(iforce_exit);