iforce-main.c 15 KB

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