iforce-main.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  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. { 0x0000, 0x0000, "Unknown I-Force Device [%04x:%04x]", btn_joystick, abs_joystick, ff_iforce }
  70. };
  71. static int iforce_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
  72. {
  73. struct iforce* iforce = (struct iforce*)(dev->private);
  74. unsigned char data[3];
  75. if (type != EV_FF)
  76. return -1;
  77. switch (code) {
  78. case FF_GAIN:
  79. data[0] = value >> 9;
  80. iforce_send_packet(iforce, FF_CMD_GAIN, data);
  81. return 0;
  82. case FF_AUTOCENTER:
  83. data[0] = 0x03;
  84. data[1] = value >> 9;
  85. iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
  86. data[0] = 0x04;
  87. data[1] = 0x01;
  88. iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
  89. return 0;
  90. default: /* Play or stop an effect */
  91. if (!CHECK_OWNERSHIP(code, iforce)) {
  92. return -1;
  93. }
  94. if (value > 0) {
  95. set_bit(FF_CORE_SHOULD_PLAY, iforce->core_effects[code].flags);
  96. }
  97. else {
  98. clear_bit(FF_CORE_SHOULD_PLAY, iforce->core_effects[code].flags);
  99. }
  100. iforce_control_playback(iforce, code, value);
  101. return 0;
  102. }
  103. return -1;
  104. }
  105. /*
  106. * Function called when an ioctl is performed on the event dev entry.
  107. * It uploads an effect to the device
  108. */
  109. static int iforce_upload_effect(struct input_dev *dev, struct ff_effect *effect)
  110. {
  111. struct iforce* iforce = (struct iforce*)(dev->private);
  112. int id;
  113. int ret;
  114. int is_update;
  115. /* Check this effect type is supported by this device */
  116. if (!test_bit(effect->type, iforce->dev->ffbit))
  117. return -EINVAL;
  118. /*
  119. * If we want to create a new effect, get a free id
  120. */
  121. if (effect->id == -1) {
  122. for (id = 0; id < FF_EFFECTS_MAX; ++id)
  123. if (!test_and_set_bit(FF_CORE_IS_USED, iforce->core_effects[id].flags))
  124. break;
  125. if (id == FF_EFFECTS_MAX || id >= iforce->dev->ff_effects_max)
  126. return -ENOMEM;
  127. effect->id = id;
  128. iforce->core_effects[id].owner = current->pid;
  129. iforce->core_effects[id].flags[0] = (1 << FF_CORE_IS_USED); /* Only IS_USED bit must be set */
  130. is_update = FALSE;
  131. }
  132. else {
  133. /* We want to update an effect */
  134. if (!CHECK_OWNERSHIP(effect->id, iforce))
  135. return -EACCES;
  136. /* Parameter type cannot be updated */
  137. if (effect->type != iforce->core_effects[effect->id].effect.type)
  138. return -EINVAL;
  139. /* Check the effect is not already being updated */
  140. if (test_bit(FF_CORE_UPDATE, iforce->core_effects[effect->id].flags))
  141. return -EAGAIN;
  142. is_update = TRUE;
  143. }
  144. /*
  145. * Upload the effect
  146. */
  147. switch (effect->type) {
  148. case FF_PERIODIC:
  149. ret = iforce_upload_periodic(iforce, effect, is_update);
  150. break;
  151. case FF_CONSTANT:
  152. ret = iforce_upload_constant(iforce, effect, is_update);
  153. break;
  154. case FF_SPRING:
  155. case FF_DAMPER:
  156. ret = iforce_upload_condition(iforce, effect, is_update);
  157. break;
  158. default:
  159. return -EINVAL;
  160. }
  161. if (ret == 0) {
  162. /* A packet was sent, forbid new updates until we are notified
  163. * that the packet was updated
  164. */
  165. set_bit(FF_CORE_UPDATE, iforce->core_effects[effect->id].flags);
  166. }
  167. iforce->core_effects[effect->id].effect = *effect;
  168. return ret;
  169. }
  170. /*
  171. * Erases an effect: it frees the effect id and mark as unused the memory
  172. * allocated for the parameters
  173. */
  174. static int iforce_erase_effect(struct input_dev *dev, int effect_id)
  175. {
  176. struct iforce* iforce = (struct iforce*)(dev->private);
  177. int err = 0;
  178. struct iforce_core_effect* core_effect;
  179. /* Check who is trying to erase this effect */
  180. if (iforce->core_effects[effect_id].owner != current->pid) {
  181. printk(KERN_WARNING "iforce-main.c: %d tried to erase an effect belonging to %d\n", current->pid, iforce->core_effects[effect_id].owner);
  182. return -EACCES;
  183. }
  184. if (effect_id < 0 || effect_id >= FF_EFFECTS_MAX)
  185. return -EINVAL;
  186. core_effect = iforce->core_effects + effect_id;
  187. if (test_bit(FF_MOD1_IS_USED, core_effect->flags))
  188. err = release_resource(&(iforce->core_effects[effect_id].mod1_chunk));
  189. if (!err && test_bit(FF_MOD2_IS_USED, core_effect->flags))
  190. err = release_resource(&(iforce->core_effects[effect_id].mod2_chunk));
  191. /*TODO: remember to change that if more FF_MOD* bits are added */
  192. core_effect->flags[0] = 0;
  193. return err;
  194. }
  195. static int iforce_open(struct input_dev *dev)
  196. {
  197. struct iforce *iforce = dev->private;
  198. switch (iforce->bus) {
  199. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  200. case IFORCE_USB:
  201. iforce->irq->dev = iforce->usbdev;
  202. if (usb_submit_urb(iforce->irq, GFP_KERNEL))
  203. return -EIO;
  204. break;
  205. #endif
  206. }
  207. /* Enable force feedback */
  208. iforce_send_packet(iforce, FF_CMD_ENABLE, "\004");
  209. return 0;
  210. }
  211. static int iforce_flush(struct input_dev *dev, struct file *file)
  212. {
  213. struct iforce *iforce = dev->private;
  214. int i;
  215. /* Erase all effects this process owns */
  216. for (i=0; i<dev->ff_effects_max; ++i) {
  217. if (test_bit(FF_CORE_IS_USED, iforce->core_effects[i].flags) &&
  218. current->pid == iforce->core_effects[i].owner) {
  219. /* Stop effect */
  220. input_report_ff(dev, i, 0);
  221. /* Free ressources assigned to effect */
  222. if (iforce_erase_effect(dev, i)) {
  223. printk(KERN_WARNING "iforce_flush: erase effect %d failed\n", i);
  224. }
  225. }
  226. }
  227. return 0;
  228. }
  229. static void iforce_release(struct input_dev *dev)
  230. {
  231. struct iforce *iforce = dev->private;
  232. int i;
  233. /* Check: no effect should be present in memory */
  234. for (i=0; i<dev->ff_effects_max; ++i) {
  235. if (test_bit(FF_CORE_IS_USED, iforce->core_effects[i].flags))
  236. break;
  237. }
  238. if (i<dev->ff_effects_max) {
  239. printk(KERN_WARNING "iforce_release: Device still owns effects\n");
  240. }
  241. /* Disable force feedback playback */
  242. iforce_send_packet(iforce, FF_CMD_ENABLE, "\001");
  243. switch (iforce->bus) {
  244. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  245. case IFORCE_USB:
  246. usb_unlink_urb(iforce->irq);
  247. /* The device was unplugged before the file
  248. * was released */
  249. if (iforce->usbdev == NULL) {
  250. iforce_delete_device(iforce);
  251. kfree(iforce);
  252. }
  253. break;
  254. #endif
  255. }
  256. }
  257. void iforce_delete_device(struct iforce *iforce)
  258. {
  259. switch (iforce->bus) {
  260. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  261. case IFORCE_USB:
  262. iforce_usb_delete(iforce);
  263. break;
  264. #endif
  265. #ifdef CONFIG_JOYSTICK_IFORCE_232
  266. case IFORCE_232:
  267. //TODO: Wait for the last packets to be sent
  268. break;
  269. #endif
  270. }
  271. }
  272. int iforce_init_device(struct iforce *iforce)
  273. {
  274. struct input_dev *input_dev;
  275. unsigned char c[] = "CEOV";
  276. int i;
  277. input_dev = input_allocate_device();
  278. if (!input_dev)
  279. return -ENOMEM;
  280. init_waitqueue_head(&iforce->wait);
  281. spin_lock_init(&iforce->xmit_lock);
  282. mutex_init(&iforce->mem_mutex);
  283. iforce->xmit.buf = iforce->xmit_data;
  284. iforce->dev = input_dev;
  285. /*
  286. * Input device fields.
  287. */
  288. switch (iforce->bus) {
  289. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  290. case IFORCE_USB:
  291. input_dev->id.bustype = BUS_USB;
  292. input_dev->cdev.dev = &iforce->usbdev->dev;
  293. break;
  294. #endif
  295. #ifdef CONFIG_JOYSTICK_IFORCE_232
  296. case IFORCE_232:
  297. input_dev->id.bustype = BUS_RS232;
  298. input_dev->cdev.dev = &iforce->serio->dev;
  299. break;
  300. #endif
  301. }
  302. input_dev->private = iforce;
  303. input_dev->name = "Unknown I-Force device";
  304. input_dev->open = iforce_open;
  305. input_dev->close = iforce_release;
  306. input_dev->flush = iforce_flush;
  307. input_dev->event = iforce_input_event;
  308. input_dev->upload_effect = iforce_upload_effect;
  309. input_dev->erase_effect = iforce_erase_effect;
  310. input_dev->ff_effects_max = 10;
  311. /*
  312. * On-device memory allocation.
  313. */
  314. iforce->device_memory.name = "I-Force device effect memory";
  315. iforce->device_memory.start = 0;
  316. iforce->device_memory.end = 200;
  317. iforce->device_memory.flags = IORESOURCE_MEM;
  318. iforce->device_memory.parent = NULL;
  319. iforce->device_memory.child = NULL;
  320. iforce->device_memory.sibling = NULL;
  321. /*
  322. * Wait until device ready - until it sends its first response.
  323. */
  324. for (i = 0; i < 20; i++)
  325. if (!iforce_get_id_packet(iforce, "O"))
  326. break;
  327. if (i == 20) { /* 5 seconds */
  328. printk(KERN_ERR "iforce-main.c: Timeout waiting for response from device.\n");
  329. input_free_device(input_dev);
  330. return -ENODEV;
  331. }
  332. /*
  333. * Get device info.
  334. */
  335. if (!iforce_get_id_packet(iforce, "M"))
  336. input_dev->id.vendor = (iforce->edata[2] << 8) | iforce->edata[1];
  337. else
  338. printk(KERN_WARNING "iforce-main.c: Device does not respond to id packet M\n");
  339. if (!iforce_get_id_packet(iforce, "P"))
  340. input_dev->id.product = (iforce->edata[2] << 8) | iforce->edata[1];
  341. else
  342. printk(KERN_WARNING "iforce-main.c: Device does not respond to id packet P\n");
  343. if (!iforce_get_id_packet(iforce, "B"))
  344. iforce->device_memory.end = (iforce->edata[2] << 8) | iforce->edata[1];
  345. else
  346. printk(KERN_WARNING "iforce-main.c: Device does not respond to id packet B\n");
  347. if (!iforce_get_id_packet(iforce, "N"))
  348. iforce->dev->ff_effects_max = iforce->edata[1];
  349. else
  350. printk(KERN_WARNING "iforce-main.c: Device does not respond to id packet N\n");
  351. /* Check if the device can store more effects than the driver can really handle */
  352. if (iforce->dev->ff_effects_max > FF_EFFECTS_MAX) {
  353. printk(KERN_WARNING "input??: Device can handle %d effects, but N_EFFECTS_MAX is set to %d in iforce.h\n",
  354. iforce->dev->ff_effects_max, FF_EFFECTS_MAX);
  355. iforce->dev->ff_effects_max = FF_EFFECTS_MAX;
  356. }
  357. /*
  358. * Display additional info.
  359. */
  360. for (i = 0; c[i]; i++)
  361. if (!iforce_get_id_packet(iforce, c + i))
  362. iforce_dump_packet("info", iforce->ecmd, iforce->edata);
  363. /*
  364. * Disable spring, enable force feedback.
  365. * FIXME: We should use iforce_set_autocenter() et al here.
  366. */
  367. iforce_send_packet(iforce, FF_CMD_AUTOCENTER, "\004\000");
  368. /*
  369. * Find appropriate device entry
  370. */
  371. for (i = 0; iforce_device[i].idvendor; i++)
  372. if (iforce_device[i].idvendor == input_dev->id.vendor &&
  373. iforce_device[i].idproduct == input_dev->id.product)
  374. break;
  375. iforce->type = iforce_device + i;
  376. input_dev->name = iforce->type->name;
  377. /*
  378. * Set input device bitfields and ranges.
  379. */
  380. input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_FF) | BIT(EV_FF_STATUS);
  381. for (i = 0; iforce->type->btn[i] >= 0; i++) {
  382. signed short t = iforce->type->btn[i];
  383. set_bit(t, input_dev->keybit);
  384. }
  385. set_bit(BTN_DEAD, input_dev->keybit);
  386. for (i = 0; iforce->type->abs[i] >= 0; i++) {
  387. signed short t = iforce->type->abs[i];
  388. switch (t) {
  389. case ABS_X:
  390. case ABS_Y:
  391. case ABS_WHEEL:
  392. input_set_abs_params(input_dev, t, -1920, 1920, 16, 128);
  393. set_bit(t, input_dev->ffbit);
  394. break;
  395. case ABS_THROTTLE:
  396. case ABS_GAS:
  397. case ABS_BRAKE:
  398. input_set_abs_params(input_dev, t, 0, 255, 0, 0);
  399. break;
  400. case ABS_RUDDER:
  401. input_set_abs_params(input_dev, t, -128, 127, 0, 0);
  402. break;
  403. case ABS_HAT0X:
  404. case ABS_HAT0Y:
  405. case ABS_HAT1X:
  406. case ABS_HAT1Y:
  407. input_set_abs_params(input_dev, t, -1, 1, 0, 0);
  408. break;
  409. }
  410. }
  411. for (i = 0; iforce->type->ff[i] >= 0; i++)
  412. set_bit(iforce->type->ff[i], input_dev->ffbit);
  413. /*
  414. * Register input device.
  415. */
  416. input_register_device(iforce->dev);
  417. printk(KERN_DEBUG "iforce->dev->open = %p\n", iforce->dev->open);
  418. return 0;
  419. }
  420. static int __init iforce_init(void)
  421. {
  422. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  423. usb_register(&iforce_usb_driver);
  424. #endif
  425. #ifdef CONFIG_JOYSTICK_IFORCE_232
  426. serio_register_driver(&iforce_serio_drv);
  427. #endif
  428. return 0;
  429. }
  430. static void __exit iforce_exit(void)
  431. {
  432. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  433. usb_deregister(&iforce_usb_driver);
  434. #endif
  435. #ifdef CONFIG_JOYSTICK_IFORCE_232
  436. serio_unregister_driver(&iforce_serio_drv);
  437. #endif
  438. }
  439. module_init(iforce_init);
  440. module_exit(iforce_exit);