blob: b1edd778639c6f1fb2985e782e7a731e42bca2cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (c) 2000-2002 Vojtech Pavlik <vojtech@ucw.cz>
Johann Deneux598972d2007-04-12 01:30:24 -04003 * Copyright (c) 2001-2002, 2007 Johann Deneux <johann.deneux@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * USB/RS232 I-Force joysticks and wheels.
6 */
7
8/*
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 * Should you need to contact me, the author, you can do so either by
24 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
25 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
26 */
27
28#include "iforce.h"
29
Johann Deneux598972d2007-04-12 01:30:24 -040030MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>, Johann Deneux <johann.deneux@gmail.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070031MODULE_DESCRIPTION("USB/RS232 I-Force joysticks and wheels driver");
32MODULE_LICENSE("GPL");
33
34static signed short btn_joystick[] =
35{ BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
36 BTN_BASE2, BTN_BASE3, BTN_BASE4, BTN_BASE5, BTN_A, BTN_B, BTN_C, -1 };
37
38static signed short btn_avb_pegasus[] =
39{ BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
40 BTN_BASE2, BTN_BASE3, BTN_BASE4, -1 };
41
42static signed short btn_wheel[] =
43{ BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
44 BTN_BASE2, BTN_BASE3, BTN_BASE4, BTN_BASE5, BTN_A, BTN_B, BTN_C, -1 };
45
46static signed short btn_avb_tw[] =
47{ BTN_TRIGGER, BTN_THUMB, BTN_TOP, BTN_TOP2, BTN_BASE,
48 BTN_BASE2, BTN_BASE3, BTN_BASE4, -1 };
49
50static signed short btn_avb_wheel[] =
51{ BTN_GEAR_DOWN, BTN_GEAR_UP, BTN_BASE, BTN_BASE2, BTN_BASE3,
52 BTN_BASE4, BTN_BASE5, BTN_BASE6, -1 };
53
54static signed short abs_joystick[] =
55{ ABS_X, ABS_Y, ABS_THROTTLE, ABS_HAT0X, ABS_HAT0Y, -1 };
56
57static signed short abs_avb_pegasus[] =
58{ ABS_X, ABS_Y, ABS_THROTTLE, ABS_RUDDER, ABS_HAT0X, ABS_HAT0Y,
59 ABS_HAT1X, ABS_HAT1Y, -1 };
60
61static signed short abs_wheel[] =
62{ ABS_WHEEL, ABS_GAS, ABS_BRAKE, ABS_HAT0X, ABS_HAT0Y, -1 };
63
64static signed short ff_iforce[] =
65{ FF_PERIODIC, FF_CONSTANT, FF_SPRING, FF_DAMPER,
66 FF_SQUARE, FF_TRIANGLE, FF_SINE, FF_SAW_UP, FF_SAW_DOWN, FF_GAIN,
67 FF_AUTOCENTER, -1 };
68
69static struct iforce_device iforce_device[] = {
70 { 0x044f, 0xa01c, "Thrustmaster Motor Sport GT", btn_wheel, abs_wheel, ff_iforce },
71 { 0x046d, 0xc281, "Logitech WingMan Force", btn_joystick, abs_joystick, ff_iforce },
72 { 0x046d, 0xc291, "Logitech WingMan Formula Force", btn_wheel, abs_wheel, ff_iforce },
73 { 0x05ef, 0x020a, "AVB Top Shot Pegasus", btn_avb_pegasus, abs_avb_pegasus, ff_iforce },
74 { 0x05ef, 0x8884, "AVB Mag Turbo Force", btn_avb_wheel, abs_wheel, ff_iforce },
75 { 0x05ef, 0x8888, "AVB Top Shot Force Feedback Racing Wheel", btn_avb_tw, abs_wheel, ff_iforce }, //?
76 { 0x061c, 0xc0a4, "ACT LABS Force RS", btn_wheel, abs_wheel, ff_iforce }, //?
Jiri Kosina68947b82009-08-19 22:07:44 -070077 { 0x061c, 0xc084, "ACT LABS Force RS", btn_wheel, abs_wheel, ff_iforce },
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 { 0x06f8, 0x0001, "Guillemot Race Leader Force Feedback", btn_wheel, abs_wheel, ff_iforce }, //?
79 { 0x06f8, 0x0004, "Guillemot Force Feedback Racing Wheel", btn_wheel, abs_wheel, ff_iforce }, //?
Marian-Nicolae V. Ion18098a62005-05-29 02:30:01 -050080 { 0x06f8, 0x0004, "Gullemot Jet Leader 3D", btn_joystick, abs_joystick, ff_iforce }, //?
Przemek Iskrab53174f2006-07-15 01:16:21 -040081 { 0x06d6, 0x29bc, "Trust Force Feedback Race Master", btn_wheel, abs_wheel, ff_iforce },
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 { 0x0000, 0x0000, "Unknown I-Force Device [%04x:%04x]", btn_joystick, abs_joystick, ff_iforce }
83};
84
Anssi Hannulaf6a01c82006-07-19 01:40:39 -040085static int iforce_playback(struct input_dev *dev, int effect_id, int value)
86{
Dmitry Torokhov4615e332007-11-04 00:49:54 -040087 struct iforce *iforce = input_get_drvdata(dev);
Anssi Hannulaf6a01c82006-07-19 01:40:39 -040088 struct iforce_core_effect *core_effect = &iforce->core_effects[effect_id];
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Anssi Hannulaf6a01c82006-07-19 01:40:39 -040090 if (value > 0)
91 set_bit(FF_CORE_SHOULD_PLAY, core_effect->flags);
92 else
93 clear_bit(FF_CORE_SHOULD_PLAY, core_effect->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Anssi Hannulaf6a01c82006-07-19 01:40:39 -040095 iforce_control_playback(iforce, effect_id, value);
96 return 0;
97}
98
99static void iforce_set_gain(struct input_dev *dev, u16 gain)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Dmitry Torokhov4615e332007-11-04 00:49:54 -0400101 struct iforce *iforce = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 unsigned char data[3];
103
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400104 data[0] = gain >> 9;
105 iforce_send_packet(iforce, FF_CMD_GAIN, data);
106}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400108static void iforce_set_autocenter(struct input_dev *dev, u16 magnitude)
109{
Dmitry Torokhov4615e332007-11-04 00:49:54 -0400110 struct iforce *iforce = input_get_drvdata(dev);
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400111 unsigned char data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400113 data[0] = 0x03;
114 data[1] = magnitude >> 9;
115 iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400117 data[0] = 0x04;
118 data[1] = 0x01;
119 iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122/*
123 * Function called when an ioctl is performed on the event dev entry.
124 * It uploads an effect to the device
125 */
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400126static int iforce_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Dmitry Torokhov4615e332007-11-04 00:49:54 -0400128 struct iforce *iforce = input_get_drvdata(dev);
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400129 struct iforce_core_effect *core_effect = &iforce->core_effects[effect->id];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400132 if (__test_and_set_bit(FF_CORE_IS_USED, core_effect->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 /* Check the effect is not already being updated */
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400134 if (test_bit(FF_CORE_UPDATE, core_effect->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137
138/*
139 * Upload the effect
140 */
141 switch (effect->type) {
142
143 case FF_PERIODIC:
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400144 ret = iforce_upload_periodic(iforce, effect, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 break;
146
147 case FF_CONSTANT:
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400148 ret = iforce_upload_constant(iforce, effect, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 break;
150
151 case FF_SPRING:
152 case FF_DAMPER:
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400153 ret = iforce_upload_condition(iforce, effect, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 break;
155
156 default:
157 return -EINVAL;
158 }
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (ret == 0) {
161 /* A packet was sent, forbid new updates until we are notified
162 * that the packet was updated
163 */
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400164 set_bit(FF_CORE_UPDATE, core_effect->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return ret;
167}
168
169/*
170 * Erases an effect: it frees the effect id and mark as unused the memory
171 * allocated for the parameters
172 */
173static int iforce_erase_effect(struct input_dev *dev, int effect_id)
174{
Dmitry Torokhov4615e332007-11-04 00:49:54 -0400175 struct iforce *iforce = input_get_drvdata(dev);
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400176 struct iforce_core_effect *core_effect = &iforce->core_effects[effect_id];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 if (test_bit(FF_MOD1_IS_USED, core_effect->flags))
Dmitry Torokhov8d64d372006-07-06 23:55:00 -0400180 err = release_resource(&core_effect->mod1_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 if (!err && test_bit(FF_MOD2_IS_USED, core_effect->flags))
Dmitry Torokhov8d64d372006-07-06 23:55:00 -0400183 err = release_resource(&core_effect->mod2_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400185 /* TODO: remember to change that if more FF_MOD* bits are added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 core_effect->flags[0] = 0;
187
188 return err;
189}
190
191static int iforce_open(struct input_dev *dev)
192{
Dmitry Torokhov4615e332007-11-04 00:49:54 -0400193 struct iforce *iforce = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 switch (iforce->bus) {
196#ifdef CONFIG_JOYSTICK_IFORCE_USB
197 case IFORCE_USB:
198 iforce->irq->dev = iforce->usbdev;
199 if (usb_submit_urb(iforce->irq, GFP_KERNEL))
200 return -EIO;
201 break;
202#endif
203 }
204
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400205 if (test_bit(EV_FF, dev->evbit)) {
206 /* Enable force feedback */
207 iforce_send_packet(iforce, FF_CMD_ENABLE, "\004");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return 0;
211}
212
Dmitry Torokhov98b7fb02009-12-24 22:37:49 -0800213static void iforce_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Dmitry Torokhov4615e332007-11-04 00:49:54 -0400215 struct iforce *iforce = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 int i;
217
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400218 if (test_bit(EV_FF, dev->evbit)) {
219 /* Check: no effects should be present in memory */
220 for (i = 0; i < dev->ff->max_effects; i++) {
221 if (test_bit(FF_CORE_IS_USED, iforce->core_effects[i].flags)) {
Greg Kroah-Hartman1817b162008-08-14 09:37:34 -0700222 dev_warn(&dev->dev,
223 "%s: Device still owns effects\n",
224 __func__);
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400225 break;
226 }
227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400229 /* Disable force feedback playback */
230 iforce_send_packet(iforce, FF_CMD_ENABLE, "\001");
Dmitry Torokhovc2b27ef2009-12-30 12:18:24 -0800231 /* Wait for the command to complete */
232 wait_event_interruptible(iforce->wait,
233 !test_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags));
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 switch (iforce->bus) {
237#ifdef CONFIG_JOYSTICK_IFORCE_USB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 case IFORCE_USB:
Dmitry Torokhov98b7fb02009-12-24 22:37:49 -0800239 usb_kill_urb(iforce->irq);
240 usb_kill_urb(iforce->out);
241 usb_kill_urb(iforce->ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
243#endif
244#ifdef CONFIG_JOYSTICK_IFORCE_232
245 case IFORCE_232:
246 //TODO: Wait for the last packets to be sent
247 break;
248#endif
249 }
250}
251
252int iforce_init_device(struct iforce *iforce)
253{
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500254 struct input_dev *input_dev;
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400255 struct ff_device *ff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 unsigned char c[] = "CEOV";
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400257 int i, error;
258 int ff_effects = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500260 input_dev = input_allocate_device();
Alexey Dobriyan5ae08f82006-01-29 21:50:52 -0500261 if (!input_dev)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500262 return -ENOMEM;
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 init_waitqueue_head(&iforce->wait);
265 spin_lock_init(&iforce->xmit_lock);
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500266 mutex_init(&iforce->mem_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 iforce->xmit.buf = iforce->xmit_data;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500268 iforce->dev = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270/*
271 * Input device fields.
272 */
273
274 switch (iforce->bus) {
275#ifdef CONFIG_JOYSTICK_IFORCE_USB
276 case IFORCE_USB:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500277 input_dev->id.bustype = BUS_USB;
Dmitry Torokhov935e6582007-04-12 01:35:26 -0400278 input_dev->dev.parent = &iforce->usbdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 break;
280#endif
281#ifdef CONFIG_JOYSTICK_IFORCE_232
282 case IFORCE_232:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500283 input_dev->id.bustype = BUS_RS232;
Dmitry Torokhov935e6582007-04-12 01:35:26 -0400284 input_dev->dev.parent = &iforce->serio->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 break;
286#endif
287 }
288
Dmitry Torokhov4615e332007-11-04 00:49:54 -0400289 input_set_drvdata(input_dev, iforce);
290
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500291 input_dev->name = "Unknown I-Force device";
292 input_dev->open = iforce_open;
Dmitry Torokhov98b7fb02009-12-24 22:37:49 -0800293 input_dev->close = iforce_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295/*
296 * On-device memory allocation.
297 */
298
299 iforce->device_memory.name = "I-Force device effect memory";
300 iforce->device_memory.start = 0;
301 iforce->device_memory.end = 200;
302 iforce->device_memory.flags = IORESOURCE_MEM;
303 iforce->device_memory.parent = NULL;
304 iforce->device_memory.child = NULL;
305 iforce->device_memory.sibling = NULL;
306
307/*
308 * Wait until device ready - until it sends its first response.
309 */
310
311 for (i = 0; i < 20; i++)
312 if (!iforce_get_id_packet(iforce, "O"))
313 break;
314
315 if (i == 20) { /* 5 seconds */
Johann Deneux598972d2007-04-12 01:30:24 -0400316 err("Timeout waiting for response from device.");
Dmitry Torokhov127278c2006-11-05 22:40:09 -0500317 error = -ENODEV;
318 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
321/*
322 * Get device info.
323 */
324
325 if (!iforce_get_id_packet(iforce, "M"))
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500326 input_dev->id.vendor = (iforce->edata[2] << 8) | iforce->edata[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 else
Greg Kroah-Hartman1817b162008-08-14 09:37:34 -0700328 dev_warn(&iforce->dev->dev, "Device does not respond to id packet M\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 if (!iforce_get_id_packet(iforce, "P"))
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500331 input_dev->id.product = (iforce->edata[2] << 8) | iforce->edata[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 else
Greg Kroah-Hartman1817b162008-08-14 09:37:34 -0700333 dev_warn(&iforce->dev->dev, "Device does not respond to id packet P\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 if (!iforce_get_id_packet(iforce, "B"))
336 iforce->device_memory.end = (iforce->edata[2] << 8) | iforce->edata[1];
337 else
Greg Kroah-Hartman1817b162008-08-14 09:37:34 -0700338 dev_warn(&iforce->dev->dev, "Device does not respond to id packet B\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 if (!iforce_get_id_packet(iforce, "N"))
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400341 ff_effects = iforce->edata[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 else
Greg Kroah-Hartman1817b162008-08-14 09:37:34 -0700343 dev_warn(&iforce->dev->dev, "Device does not respond to id packet N\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /* Check if the device can store more effects than the driver can really handle */
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400346 if (ff_effects > IFORCE_EFFECTS_MAX) {
Greg Kroah-Hartman1817b162008-08-14 09:37:34 -0700347 dev_warn(&iforce->dev->dev, "Limiting number of effects to %d (device reports %d)\n",
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400348 IFORCE_EFFECTS_MAX, ff_effects);
349 ff_effects = IFORCE_EFFECTS_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
352/*
353 * Display additional info.
354 */
355
356 for (i = 0; c[i]; i++)
357 if (!iforce_get_id_packet(iforce, c + i))
358 iforce_dump_packet("info", iforce->ecmd, iforce->edata);
359
360/*
361 * Disable spring, enable force feedback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 */
Johann Deneuxc0338c12007-05-14 00:09:33 -0400363 iforce_set_autocenter(input_dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365/*
366 * Find appropriate device entry
367 */
368
369 for (i = 0; iforce_device[i].idvendor; i++)
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500370 if (iforce_device[i].idvendor == input_dev->id.vendor &&
371 iforce_device[i].idproduct == input_dev->id.product)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 break;
373
374 iforce->type = iforce_device + i;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500375 input_dev->name = iforce->type->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377/*
378 * Set input device bitfields and ranges.
379 */
380
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700381 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) |
382 BIT_MASK(EV_FF_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400384 for (i = 0; iforce->type->btn[i] >= 0; i++)
385 set_bit(iforce->type->btn[i], input_dev->keybit);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500386 set_bit(BTN_DEAD, input_dev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 for (i = 0; iforce->type->abs[i] >= 0; i++) {
389
390 signed short t = iforce->type->abs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 switch (t) {
393
394 case ABS_X:
395 case ABS_Y:
396 case ABS_WHEEL:
397
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500398 input_set_abs_params(input_dev, t, -1920, 1920, 16, 128);
399 set_bit(t, input_dev->ffbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 break;
401
402 case ABS_THROTTLE:
403 case ABS_GAS:
404 case ABS_BRAKE:
405
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500406 input_set_abs_params(input_dev, t, 0, 255, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
408
409 case ABS_RUDDER:
410
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500411 input_set_abs_params(input_dev, t, -128, 127, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 break;
413
414 case ABS_HAT0X:
415 case ABS_HAT0Y:
416 case ABS_HAT1X:
417 case ABS_HAT1Y:
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500418
419 input_set_abs_params(input_dev, t, -1, 1, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 break;
421 }
422 }
423
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400424 if (ff_effects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400426 for (i = 0; iforce->type->ff[i] >= 0; i++)
427 set_bit(iforce->type->ff[i], input_dev->ffbit);
428
429 error = input_ff_create(input_dev, ff_effects);
Dmitry Torokhov127278c2006-11-05 22:40:09 -0500430 if (error)
431 goto fail;
Anssi Hannulaf6a01c82006-07-19 01:40:39 -0400432
433 ff = input_dev->ff;
434 ff->upload = iforce_upload_effect;
435 ff->erase = iforce_erase_effect;
436 ff->set_gain = iforce_set_gain;
437 ff->set_autocenter = iforce_set_autocenter;
438 ff->playback = iforce_playback;
439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/*
441 * Register input device.
442 */
443
Dmitry Torokhov127278c2006-11-05 22:40:09 -0500444 error = input_register_device(iforce->dev);
445 if (error)
446 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return 0;
Dmitry Torokhov127278c2006-11-05 22:40:09 -0500449
450 fail: input_free_device(input_dev);
451 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454static int __init iforce_init(void)
455{
Akinobu Mita153a9df02006-11-23 23:35:10 -0500456 int err = 0;
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458#ifdef CONFIG_JOYSTICK_IFORCE_USB
Akinobu Mita153a9df02006-11-23 23:35:10 -0500459 err = usb_register(&iforce_usb_driver);
460 if (err)
461 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#endif
463#ifdef CONFIG_JOYSTICK_IFORCE_232
Akinobu Mita153a9df02006-11-23 23:35:10 -0500464 err = serio_register_driver(&iforce_serio_drv);
465#ifdef CONFIG_JOYSTICK_IFORCE_USB
466 if (err)
467 usb_deregister(&iforce_usb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#endif
Akinobu Mita153a9df02006-11-23 23:35:10 -0500469#endif
470 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473static void __exit iforce_exit(void)
474{
475#ifdef CONFIG_JOYSTICK_IFORCE_USB
476 usb_deregister(&iforce_usb_driver);
477#endif
478#ifdef CONFIG_JOYSTICK_IFORCE_232
479 serio_unregister_driver(&iforce_serio_drv);
480#endif
481}
482
483module_init(iforce_init);
484module_exit(iforce_exit);