iforce-main.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555
  1. /*
  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>
  5. * Copyright (c) 2001-2002 Johann Deneux <deneux@ifrance.com>
  6. *
  7. * USB/RS232 I-Force joysticks and wheels.
  8. */
  9. /*
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. *
  24. * Should you need to contact me, the author, you can do so either by
  25. * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  26. * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  27. */
  28. #include "iforce.h"
  29. MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>, Johann Deneux <deneux@ifrance.com>");
  30. MODULE_DESCRIPTION("USB/RS232 I-Force joysticks and wheels driver");
  31. MODULE_LICENSE("GPL");
  32. static signed short btn_joystick[] =
  33. { BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
  34. BTN_BASE2, BTN_BASE3, BTN_BASE4, BTN_BASE5, BTN_A, BTN_B, BTN_C, -1 };
  35. static signed short btn_avb_pegasus[] =
  36. { BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
  37. BTN_BASE2, BTN_BASE3, BTN_BASE4, -1 };
  38. static signed short btn_wheel[] =
  39. { BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
  40. BTN_BASE2, BTN_BASE3, BTN_BASE4, BTN_BASE5, BTN_A, BTN_B, BTN_C, -1 };
  41. static signed short btn_avb_tw[] =
  42. { BTN_TRIGGER, BTN_THUMB, BTN_TOP, BTN_TOP2, BTN_BASE,
  43. BTN_BASE2, BTN_BASE3, BTN_BASE4, -1 };
  44. static signed short btn_avb_wheel[] =
  45. { BTN_GEAR_DOWN, BTN_GEAR_UP, BTN_BASE, BTN_BASE2, BTN_BASE3,
  46. BTN_BASE4, BTN_BASE5, BTN_BASE6, -1 };
  47. static signed short abs_joystick[] =
  48. { ABS_X, ABS_Y, ABS_THROTTLE, ABS_HAT0X, ABS_HAT0Y, -1 };
  49. static signed short abs_avb_pegasus[] =
  50. { ABS_X, ABS_Y, ABS_THROTTLE, ABS_RUDDER, ABS_HAT0X, ABS_HAT0Y,
  51. ABS_HAT1X, ABS_HAT1Y, -1 };
  52. static signed short abs_wheel[] =
  53. { ABS_WHEEL, ABS_GAS, ABS_BRAKE, ABS_HAT0X, ABS_HAT0Y, -1 };
  54. static signed short ff_iforce[] =
  55. { FF_PERIODIC, FF_CONSTANT, FF_SPRING, FF_DAMPER,
  56. FF_SQUARE, FF_TRIANGLE, FF_SINE, FF_SAW_UP, FF_SAW_DOWN, FF_GAIN,
  57. FF_AUTOCENTER, -1 };
  58. static struct iforce_device iforce_device[] = {
  59. { 0x044f, 0xa01c, "Thrustmaster Motor Sport GT", btn_wheel, abs_wheel, ff_iforce },
  60. { 0x046d, 0xc281, "Logitech WingMan Force", btn_joystick, abs_joystick, ff_iforce },
  61. { 0x046d, 0xc291, "Logitech WingMan Formula Force", btn_wheel, abs_wheel, ff_iforce },
  62. { 0x05ef, 0x020a, "AVB Top Shot Pegasus", btn_avb_pegasus, abs_avb_pegasus, ff_iforce },
  63. { 0x05ef, 0x8884, "AVB Mag Turbo Force", btn_avb_wheel, abs_wheel, ff_iforce },
  64. { 0x05ef, 0x8888, "AVB Top Shot Force Feedback Racing Wheel", btn_avb_tw, abs_wheel, ff_iforce }, //?
  65. { 0x061c, 0xc0a4, "ACT LABS Force RS", btn_wheel, abs_wheel, ff_iforce }, //?
  66. { 0x06f8, 0x0001, "Guillemot Race Leader Force Feedback", btn_wheel, abs_wheel, ff_iforce }, //?
  67. { 0x06f8, 0x0004, "Guillemot Force Feedback Racing Wheel", btn_wheel, abs_wheel, ff_iforce }, //?
  68. { 0x06f8, 0x0004, "Gullemot Jet Leader 3D", btn_joystick, abs_joystick, ff_iforce }, //?
  69. { 0x06d6, 0x29bc, "Trust Force Feedback Race Master", btn_wheel, abs_wheel, ff_iforce },
  70. { 0x0000, 0x0000, "Unknown I-Force Device [%04x:%04x]", btn_joystick, abs_joystick, ff_iforce }
  71. };
  72. static int iforce_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
  73. {
  74. struct iforce* iforce = dev->private;
  75. unsigned char data[3];
  76. if (type != EV_FF)
  77. return -1;
  78. switch (code) {
  79. case FF_GAIN:
  80. data[0] = value >> 9;
  81. iforce_send_packet(iforce, FF_CMD_GAIN, data);
  82. return 0;
  83. case FF_AUTOCENTER:
  84. data[0] = 0x03;
  85. data[1] = value >> 9;
  86. iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
  87. data[0] = 0x04;
  88. data[1] = 0x01;
  89. iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
  90. return 0;
  91. default: /* Play or stop an effect */
  92. if (!CHECK_OWNERSHIP(code, iforce)) {
  93. return -1;
  94. }
  95. if (value > 0) {
  96. set_bit(FF_CORE_SHOULD_PLAY, iforce->core_effects[code].flags);
  97. }
  98. else {
  99. clear_bit(FF_CORE_SHOULD_PLAY, iforce->core_effects[code].flags);
  100. }
  101. iforce_control_playback(iforce, code, value);
  102. return 0;
  103. }
  104. return -1;
  105. }
  106. /*
  107. * Function called when an ioctl is performed on the event dev entry.
  108. * It uploads an effect to the device
  109. */
  110. static int iforce_upload_effect(struct input_dev *dev, struct ff_effect *effect)
  111. {
  112. struct iforce* iforce = dev->private;
  113. int id;
  114. int ret;
  115. int is_update;
  116. /* Check this effect type is supported by this device */
  117. if (!test_bit(effect->type, iforce->dev->ffbit))
  118. return -EINVAL;
  119. /*
  120. * If we want to create a new effect, get a free id
  121. */
  122. if (effect->id == -1) {
  123. for (id = 0; id < FF_EFFECTS_MAX; ++id)
  124. if (!test_and_set_bit(FF_CORE_IS_USED, iforce->core_effects[id].flags))
  125. break;
  126. if (id == FF_EFFECTS_MAX || id >= iforce->dev->ff_effects_max)
  127. return -ENOMEM;
  128. effect->id = id;
  129. iforce->core_effects[id].owner = current->pid;
  130. iforce->core_effects[id].flags[0] = (1 << FF_CORE_IS_USED); /* Only IS_USED bit must be set */
  131. is_update = FALSE;
  132. }
  133. else {
  134. /* We want to update an effect */
  135. if (!CHECK_OWNERSHIP(effect->id, iforce))
  136. return -EACCES;
  137. /* Parameter type cannot be updated */
  138. if (effect->type != iforce->core_effects[effect->id].effect.type)
  139. return -EINVAL;
  140. /* Check the effect is not already being updated */
  141. if (test_bit(FF_CORE_UPDATE, iforce->core_effects[effect->id].flags))
  142. return -EAGAIN;
  143. is_update = TRUE;
  144. }
  145. /*
  146. * Upload the effect
  147. */
  148. switch (effect->type) {
  149. case FF_PERIODIC:
  150. ret = iforce_upload_periodic(iforce, effect, is_update);
  151. break;
  152. case FF_CONSTANT:
  153. ret = iforce_upload_constant(iforce, effect, is_update);
  154. break;
  155. case FF_SPRING:
  156. case FF_DAMPER:
  157. ret = iforce_upload_condition(iforce, effect, is_update);
  158. break;
  159. default:
  160. return -EINVAL;
  161. }
  162. if (ret == 0) {
  163. /* A packet was sent, forbid new updates until we are notified
  164. * that the packet was updated
  165. */
  166. set_bit(FF_CORE_UPDATE, iforce->core_effects[effect->id].flags);
  167. }
  168. iforce->core_effects[effect->id].effect = *effect;
  169. return ret;
  170. }
  171. /*
  172. * Erases an effect: it frees the effect id and mark as unused the memory
  173. * allocated for the parameters
  174. */
  175. static int iforce_erase_effect(struct input_dev *dev, int effect_id)
  176. {
  177. struct iforce* iforce = dev->private;
  178. int err = 0;
  179. struct iforce_core_effect* core_effect;
  180. if (effect_id < 0 || effect_id >= FF_EFFECTS_MAX)
  181. return -EINVAL;
  182. core_effect = &iforce->core_effects[effect_id];
  183. /* Check who is trying to erase this effect */
  184. if (core_effect->owner != current->pid) {
  185. printk(KERN_WARNING "iforce-main.c: %d tried to erase an effect belonging to %d\n", current->pid, core_effect->owner);
  186. return -EACCES;
  187. }
  188. if (test_bit(FF_MOD1_IS_USED, core_effect->flags))
  189. err = release_resource(&core_effect->mod1_chunk);
  190. if (!err && test_bit(FF_MOD2_IS_USED, core_effect->flags))
  191. err = release_resource(&core_effect->mod2_chunk);
  192. /*TODO: remember to change that if more FF_MOD* bits are added */
  193. core_effect->flags[0] = 0;
  194. return err;
  195. }
  196. static int iforce_open(struct input_dev *dev)
  197. {
  198. struct iforce *iforce = dev->private;
  199. switch (iforce->bus) {
  200. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  201. case IFORCE_USB:
  202. iforce->irq->dev = iforce->usbdev;
  203. if (usb_submit_urb(iforce->irq, GFP_KERNEL))
  204. return -EIO;
  205. break;
  206. #endif
  207. }
  208. /* Enable force feedback */
  209. iforce_send_packet(iforce, FF_CMD_ENABLE, "\004");
  210. return 0;
  211. }
  212. static int iforce_flush(struct input_dev *dev, struct file *file)
  213. {
  214. struct iforce *iforce = dev->private;
  215. int i;
  216. /* Erase all effects this process owns */
  217. for (i=0; i<dev->ff_effects_max; ++i) {
  218. if (test_bit(FF_CORE_IS_USED, iforce->core_effects[i].flags) &&
  219. current->pid == iforce->core_effects[i].owner) {
  220. /* Stop effect */
  221. input_report_ff(dev, i, 0);
  222. /* Free ressources assigned to effect */
  223. if (iforce_erase_effect(dev, i)) {
  224. printk(KERN_WARNING "iforce_flush: erase effect %d failed\n", i);
  225. }
  226. }
  227. }
  228. return 0;
  229. }
  230. static void iforce_release(struct input_dev *dev)
  231. {
  232. struct iforce *iforce = dev->private;
  233. int i;
  234. /* Check: no effect should be present in memory */
  235. for (i=0; i<dev->ff_effects_max; ++i) {
  236. if (test_bit(FF_CORE_IS_USED, iforce->core_effects[i].flags))
  237. break;
  238. }
  239. if (i<dev->ff_effects_max) {
  240. printk(KERN_WARNING "iforce_release: Device still owns effects\n");
  241. }
  242. /* Disable force feedback playback */
  243. iforce_send_packet(iforce, FF_CMD_ENABLE, "\001");
  244. switch (iforce->bus) {
  245. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  246. case IFORCE_USB:
  247. usb_unlink_urb(iforce->irq);
  248. /* The device was unplugged before the file
  249. * was released */
  250. if (iforce->usbdev == NULL) {
  251. iforce_delete_device(iforce);
  252. kfree(iforce);
  253. }
  254. break;
  255. #endif
  256. }
  257. }
  258. void iforce_delete_device(struct iforce *iforce)
  259. {
  260. switch (iforce->bus) {
  261. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  262. case IFORCE_USB:
  263. iforce_usb_delete(iforce);
  264. break;
  265. #endif
  266. #ifdef CONFIG_JOYSTICK_IFORCE_232
  267. case IFORCE_232:
  268. //TODO: Wait for the last packets to be sent
  269. break;
  270. #endif
  271. }
  272. }
  273. int iforce_init_device(struct iforce *iforce)
  274. {
  275. struct input_dev *input_dev;
  276. unsigned char c[] = "CEOV";
  277. int i;
  278. input_dev = input_allocate_device();
  279. if (!input_dev)
  280. return -ENOMEM;
  281. init_waitqueue_head(&iforce->wait);
  282. spin_lock_init(&iforce->xmit_lock);
  283. mutex_init(&iforce->mem_mutex);
  284. iforce->xmit.buf = iforce->xmit_data;
  285. iforce->dev = input_dev;
  286. /*
  287. * Input device fields.
  288. */
  289. switch (iforce->bus) {
  290. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  291. case IFORCE_USB:
  292. input_dev->id.bustype = BUS_USB;
  293. input_dev->cdev.dev = &iforce->usbdev->dev;
  294. break;
  295. #endif
  296. #ifdef CONFIG_JOYSTICK_IFORCE_232
  297. case IFORCE_232:
  298. input_dev->id.bustype = BUS_RS232;
  299. input_dev->cdev.dev = &iforce->serio->dev;
  300. break;
  301. #endif
  302. }
  303. input_dev->private = iforce;
  304. input_dev->name = "Unknown I-Force device";
  305. input_dev->open = iforce_open;
  306. input_dev->close = iforce_release;
  307. input_dev->flush = iforce_flush;
  308. input_dev->event = iforce_input_event;
  309. input_dev->upload_effect = iforce_upload_effect;
  310. input_dev->erase_effect = iforce_erase_effect;
  311. input_dev->ff_effects_max = 10;
  312. /*
  313. * On-device memory allocation.
  314. */
  315. iforce->device_memory.name = "I-Force device effect memory";
  316. iforce->device_memory.start = 0;
  317. iforce->device_memory.end = 200;
  318. iforce->device_memory.flags = IORESOURCE_MEM;
  319. iforce->device_memory.parent = NULL;
  320. iforce->device_memory.child = NULL;
  321. iforce->device_memory.sibling = NULL;
  322. /*
  323. * Wait until device ready - until it sends its first response.
  324. */
  325. for (i = 0; i < 20; i++)
  326. if (!iforce_get_id_packet(iforce, "O"))
  327. break;
  328. if (i == 20) { /* 5 seconds */
  329. printk(KERN_ERR "iforce-main.c: Timeout waiting for response from device.\n");
  330. input_free_device(input_dev);
  331. return -ENODEV;
  332. }
  333. /*
  334. * Get device info.
  335. */
  336. if (!iforce_get_id_packet(iforce, "M"))
  337. input_dev->id.vendor = (iforce->edata[2] << 8) | iforce->edata[1];
  338. else
  339. printk(KERN_WARNING "iforce-main.c: Device does not respond to id packet M\n");
  340. if (!iforce_get_id_packet(iforce, "P"))
  341. input_dev->id.product = (iforce->edata[2] << 8) | iforce->edata[1];
  342. else
  343. printk(KERN_WARNING "iforce-main.c: Device does not respond to id packet P\n");
  344. if (!iforce_get_id_packet(iforce, "B"))
  345. iforce->device_memory.end = (iforce->edata[2] << 8) | iforce->edata[1];
  346. else
  347. printk(KERN_WARNING "iforce-main.c: Device does not respond to id packet B\n");
  348. if (!iforce_get_id_packet(iforce, "N"))
  349. iforce->dev->ff_effects_max = iforce->edata[1];
  350. else
  351. printk(KERN_WARNING "iforce-main.c: Device does not respond to id packet N\n");
  352. /* Check if the device can store more effects than the driver can really handle */
  353. if (iforce->dev->ff_effects_max > FF_EFFECTS_MAX) {
  354. printk(KERN_WARNING "input??: Device can handle %d effects, but N_EFFECTS_MAX is set to %d in iforce.h\n",
  355. iforce->dev->ff_effects_max, FF_EFFECTS_MAX);
  356. iforce->dev->ff_effects_max = FF_EFFECTS_MAX;
  357. }
  358. /*
  359. * Display additional info.
  360. */
  361. for (i = 0; c[i]; i++)
  362. if (!iforce_get_id_packet(iforce, c + i))
  363. iforce_dump_packet("info", iforce->ecmd, iforce->edata);
  364. /*
  365. * Disable spring, enable force feedback.
  366. * FIXME: We should use iforce_set_autocenter() et al here.
  367. */
  368. iforce_send_packet(iforce, FF_CMD_AUTOCENTER, "\004\000");
  369. /*
  370. * Find appropriate device entry
  371. */
  372. for (i = 0; iforce_device[i].idvendor; i++)
  373. if (iforce_device[i].idvendor == input_dev->id.vendor &&
  374. iforce_device[i].idproduct == input_dev->id.product)
  375. break;
  376. iforce->type = iforce_device + i;
  377. input_dev->name = iforce->type->name;
  378. /*
  379. * Set input device bitfields and ranges.
  380. */
  381. input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_FF) | BIT(EV_FF_STATUS);
  382. for (i = 0; iforce->type->btn[i] >= 0; i++) {
  383. signed short t = iforce->type->btn[i];
  384. set_bit(t, input_dev->keybit);
  385. }
  386. set_bit(BTN_DEAD, input_dev->keybit);
  387. for (i = 0; iforce->type->abs[i] >= 0; i++) {
  388. signed short t = iforce->type->abs[i];
  389. switch (t) {
  390. case ABS_X:
  391. case ABS_Y:
  392. case ABS_WHEEL:
  393. input_set_abs_params(input_dev, t, -1920, 1920, 16, 128);
  394. set_bit(t, input_dev->ffbit);
  395. break;
  396. case ABS_THROTTLE:
  397. case ABS_GAS:
  398. case ABS_BRAKE:
  399. input_set_abs_params(input_dev, t, 0, 255, 0, 0);
  400. break;
  401. case ABS_RUDDER:
  402. input_set_abs_params(input_dev, t, -128, 127, 0, 0);
  403. break;
  404. case ABS_HAT0X:
  405. case ABS_HAT0Y:
  406. case ABS_HAT1X:
  407. case ABS_HAT1Y:
  408. input_set_abs_params(input_dev, t, -1, 1, 0, 0);
  409. break;
  410. }
  411. }
  412. for (i = 0; iforce->type->ff[i] >= 0; i++)
  413. set_bit(iforce->type->ff[i], input_dev->ffbit);
  414. /*
  415. * Register input device.
  416. */
  417. input_register_device(iforce->dev);
  418. printk(KERN_DEBUG "iforce->dev->open = %p\n", iforce->dev->open);
  419. return 0;
  420. }
  421. static int __init iforce_init(void)
  422. {
  423. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  424. usb_register(&iforce_usb_driver);
  425. #endif
  426. #ifdef CONFIG_JOYSTICK_IFORCE_232
  427. serio_register_driver(&iforce_serio_drv);
  428. #endif
  429. return 0;
  430. }
  431. static void __exit iforce_exit(void)
  432. {
  433. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  434. usb_deregister(&iforce_usb_driver);
  435. #endif
  436. #ifdef CONFIG_JOYSTICK_IFORCE_232
  437. serio_unregister_driver(&iforce_serio_drv);
  438. #endif
  439. }
  440. module_init(iforce_init);
  441. module_exit(iforce_exit);