PageRenderTime 80ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/drivers/input/joystick/iforce/iforce-main.c

https://github.com/mstsirkin/linux
C | 488 lines | 322 code | 92 blank | 74 comment | 42 complexity | 1e9885a91caf1b5c14e6c19687d2a1f1 MD5 | raw file
  1. /*
  2. * Copyright (c) 2000-2002 Vojtech Pavlik <vojtech@ucw.cz>
  3. * Copyright (c) 2001-2002, 2007 Johann Deneux <johann.deneux@gmail.com>
  4. *
  5. * USB/RS232 I-Force joysticks and wheels.
  6. */
  7. /*
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. * Should you need to contact me, the author, you can do so either by
  23. * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  24. * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  25. */
  26. #include "iforce.h"
  27. MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>, Johann Deneux <johann.deneux@gmail.com>");
  28. MODULE_DESCRIPTION("USB/RS232 I-Force joysticks and wheels driver");
  29. MODULE_LICENSE("GPL");
  30. static signed short btn_joystick[] =
  31. { BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
  32. BTN_BASE2, BTN_BASE3, BTN_BASE4, BTN_BASE5, BTN_A, BTN_B, BTN_C, -1 };
  33. static signed short btn_avb_pegasus[] =
  34. { BTN_TRIGGER, BTN_TOP, BTN_THUMB, BTN_TOP2, BTN_BASE,
  35. BTN_BASE2, BTN_BASE3, BTN_BASE4, -1 };
  36. static signed short btn_wheel[] =
  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. static signed short btn_avb_tw[] =
  40. { BTN_TRIGGER, BTN_THUMB, BTN_TOP, BTN_TOP2, BTN_BASE,
  41. BTN_BASE2, BTN_BASE3, BTN_BASE4, -1 };
  42. static signed short btn_avb_wheel[] =
  43. { BTN_GEAR_DOWN, BTN_GEAR_UP, BTN_BASE, BTN_BASE2, BTN_BASE3,
  44. BTN_BASE4, BTN_BASE5, BTN_BASE6, -1 };
  45. static signed short abs_joystick[] =
  46. { ABS_X, ABS_Y, ABS_THROTTLE, ABS_HAT0X, ABS_HAT0Y, -1 };
  47. static signed short abs_joystick_rudder[] =
  48. { ABS_X, ABS_Y, ABS_THROTTLE, ABS_RUDDER, 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. { 0x061c, 0xc084, "ACT LABS Force RS", btn_wheel, abs_wheel, ff_iforce },
  67. { 0x06f8, 0x0001, "Guillemot Race Leader Force Feedback", btn_wheel, abs_wheel, ff_iforce }, //?
  68. { 0x06f8, 0x0001, "Guillemot Jet Leader Force Feedback", btn_joystick, abs_joystick_rudder, ff_iforce },
  69. { 0x06f8, 0x0004, "Guillemot Force Feedback Racing Wheel", btn_wheel, abs_wheel, ff_iforce }, //?
  70. { 0x06f8, 0xa302, "Guillemot Jet Leader 3D", btn_joystick, abs_joystick, ff_iforce }, //?
  71. { 0x06d6, 0x29bc, "Trust Force Feedback Race Master", btn_wheel, abs_wheel, ff_iforce },
  72. { 0x0000, 0x0000, "Unknown I-Force Device [%04x:%04x]", btn_joystick, abs_joystick, ff_iforce }
  73. };
  74. static int iforce_playback(struct input_dev *dev, int effect_id, int value)
  75. {
  76. struct iforce *iforce = input_get_drvdata(dev);
  77. struct iforce_core_effect *core_effect = &iforce->core_effects[effect_id];
  78. if (value > 0)
  79. set_bit(FF_CORE_SHOULD_PLAY, core_effect->flags);
  80. else
  81. clear_bit(FF_CORE_SHOULD_PLAY, core_effect->flags);
  82. iforce_control_playback(iforce, effect_id, value);
  83. return 0;
  84. }
  85. static void iforce_set_gain(struct input_dev *dev, u16 gain)
  86. {
  87. struct iforce *iforce = input_get_drvdata(dev);
  88. unsigned char data[3];
  89. data[0] = gain >> 9;
  90. iforce_send_packet(iforce, FF_CMD_GAIN, data);
  91. }
  92. static void iforce_set_autocenter(struct input_dev *dev, u16 magnitude)
  93. {
  94. struct iforce *iforce = input_get_drvdata(dev);
  95. unsigned char data[3];
  96. data[0] = 0x03;
  97. data[1] = magnitude >> 9;
  98. iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
  99. data[0] = 0x04;
  100. data[1] = 0x01;
  101. iforce_send_packet(iforce, FF_CMD_AUTOCENTER, data);
  102. }
  103. /*
  104. * Function called when an ioctl is performed on the event dev entry.
  105. * It uploads an effect to the device
  106. */
  107. static int iforce_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *old)
  108. {
  109. struct iforce *iforce = input_get_drvdata(dev);
  110. struct iforce_core_effect *core_effect = &iforce->core_effects[effect->id];
  111. int ret;
  112. if (__test_and_set_bit(FF_CORE_IS_USED, core_effect->flags)) {
  113. /* Check the effect is not already being updated */
  114. if (test_bit(FF_CORE_UPDATE, core_effect->flags))
  115. return -EAGAIN;
  116. }
  117. /*
  118. * Upload the effect
  119. */
  120. switch (effect->type) {
  121. case FF_PERIODIC:
  122. ret = iforce_upload_periodic(iforce, effect, old);
  123. break;
  124. case FF_CONSTANT:
  125. ret = iforce_upload_constant(iforce, effect, old);
  126. break;
  127. case FF_SPRING:
  128. case FF_DAMPER:
  129. ret = iforce_upload_condition(iforce, effect, old);
  130. break;
  131. default:
  132. return -EINVAL;
  133. }
  134. if (ret == 0) {
  135. /* A packet was sent, forbid new updates until we are notified
  136. * that the packet was updated
  137. */
  138. set_bit(FF_CORE_UPDATE, core_effect->flags);
  139. }
  140. return ret;
  141. }
  142. /*
  143. * Erases an effect: it frees the effect id and mark as unused the memory
  144. * allocated for the parameters
  145. */
  146. static int iforce_erase_effect(struct input_dev *dev, int effect_id)
  147. {
  148. struct iforce *iforce = input_get_drvdata(dev);
  149. struct iforce_core_effect *core_effect = &iforce->core_effects[effect_id];
  150. int err = 0;
  151. if (test_bit(FF_MOD1_IS_USED, core_effect->flags))
  152. err = release_resource(&core_effect->mod1_chunk);
  153. if (!err && test_bit(FF_MOD2_IS_USED, core_effect->flags))
  154. err = release_resource(&core_effect->mod2_chunk);
  155. /* TODO: remember to change that if more FF_MOD* bits are added */
  156. core_effect->flags[0] = 0;
  157. return err;
  158. }
  159. static int iforce_open(struct input_dev *dev)
  160. {
  161. struct iforce *iforce = input_get_drvdata(dev);
  162. switch (iforce->bus) {
  163. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  164. case IFORCE_USB:
  165. iforce->irq->dev = iforce->usbdev;
  166. if (usb_submit_urb(iforce->irq, GFP_KERNEL))
  167. return -EIO;
  168. break;
  169. #endif
  170. }
  171. if (test_bit(EV_FF, dev->evbit)) {
  172. /* Enable force feedback */
  173. iforce_send_packet(iforce, FF_CMD_ENABLE, "\004");
  174. }
  175. return 0;
  176. }
  177. static void iforce_close(struct input_dev *dev)
  178. {
  179. struct iforce *iforce = input_get_drvdata(dev);
  180. int i;
  181. if (test_bit(EV_FF, dev->evbit)) {
  182. /* Check: no effects should be present in memory */
  183. for (i = 0; i < dev->ff->max_effects; i++) {
  184. if (test_bit(FF_CORE_IS_USED, iforce->core_effects[i].flags)) {
  185. dev_warn(&dev->dev,
  186. "%s: Device still owns effects\n",
  187. __func__);
  188. break;
  189. }
  190. }
  191. /* Disable force feedback playback */
  192. iforce_send_packet(iforce, FF_CMD_ENABLE, "\001");
  193. /* Wait for the command to complete */
  194. wait_event_interruptible(iforce->wait,
  195. !test_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags));
  196. }
  197. switch (iforce->bus) {
  198. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  199. case IFORCE_USB:
  200. usb_kill_urb(iforce->irq);
  201. usb_kill_urb(iforce->out);
  202. usb_kill_urb(iforce->ctrl);
  203. break;
  204. #endif
  205. #ifdef CONFIG_JOYSTICK_IFORCE_232
  206. case IFORCE_232:
  207. //TODO: Wait for the last packets to be sent
  208. break;
  209. #endif
  210. }
  211. }
  212. int iforce_init_device(struct iforce *iforce)
  213. {
  214. struct input_dev *input_dev;
  215. struct ff_device *ff;
  216. unsigned char c[] = "CEOV";
  217. int i, error;
  218. int ff_effects = 0;
  219. input_dev = input_allocate_device();
  220. if (!input_dev)
  221. return -ENOMEM;
  222. init_waitqueue_head(&iforce->wait);
  223. spin_lock_init(&iforce->xmit_lock);
  224. mutex_init(&iforce->mem_mutex);
  225. iforce->xmit.buf = iforce->xmit_data;
  226. iforce->dev = input_dev;
  227. /*
  228. * Input device fields.
  229. */
  230. switch (iforce->bus) {
  231. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  232. case IFORCE_USB:
  233. input_dev->id.bustype = BUS_USB;
  234. input_dev->dev.parent = &iforce->usbdev->dev;
  235. break;
  236. #endif
  237. #ifdef CONFIG_JOYSTICK_IFORCE_232
  238. case IFORCE_232:
  239. input_dev->id.bustype = BUS_RS232;
  240. input_dev->dev.parent = &iforce->serio->dev;
  241. break;
  242. #endif
  243. }
  244. input_set_drvdata(input_dev, iforce);
  245. input_dev->name = "Unknown I-Force device";
  246. input_dev->open = iforce_open;
  247. input_dev->close = iforce_close;
  248. /*
  249. * On-device memory allocation.
  250. */
  251. iforce->device_memory.name = "I-Force device effect memory";
  252. iforce->device_memory.start = 0;
  253. iforce->device_memory.end = 200;
  254. iforce->device_memory.flags = IORESOURCE_MEM;
  255. iforce->device_memory.parent = NULL;
  256. iforce->device_memory.child = NULL;
  257. iforce->device_memory.sibling = NULL;
  258. /*
  259. * Wait until device ready - until it sends its first response.
  260. */
  261. for (i = 0; i < 20; i++)
  262. if (!iforce_get_id_packet(iforce, "O"))
  263. break;
  264. if (i == 20) { /* 5 seconds */
  265. err("Timeout waiting for response from device.");
  266. error = -ENODEV;
  267. goto fail;
  268. }
  269. /*
  270. * Get device info.
  271. */
  272. if (!iforce_get_id_packet(iforce, "M"))
  273. input_dev->id.vendor = (iforce->edata[2] << 8) | iforce->edata[1];
  274. else
  275. dev_warn(&iforce->dev->dev, "Device does not respond to id packet M\n");
  276. if (!iforce_get_id_packet(iforce, "P"))
  277. input_dev->id.product = (iforce->edata[2] << 8) | iforce->edata[1];
  278. else
  279. dev_warn(&iforce->dev->dev, "Device does not respond to id packet P\n");
  280. if (!iforce_get_id_packet(iforce, "B"))
  281. iforce->device_memory.end = (iforce->edata[2] << 8) | iforce->edata[1];
  282. else
  283. dev_warn(&iforce->dev->dev, "Device does not respond to id packet B\n");
  284. if (!iforce_get_id_packet(iforce, "N"))
  285. ff_effects = iforce->edata[1];
  286. else
  287. dev_warn(&iforce->dev->dev, "Device does not respond to id packet N\n");
  288. /* Check if the device can store more effects than the driver can really handle */
  289. if (ff_effects > IFORCE_EFFECTS_MAX) {
  290. dev_warn(&iforce->dev->dev, "Limiting number of effects to %d (device reports %d)\n",
  291. IFORCE_EFFECTS_MAX, ff_effects);
  292. ff_effects = IFORCE_EFFECTS_MAX;
  293. }
  294. /*
  295. * Display additional info.
  296. */
  297. for (i = 0; c[i]; i++)
  298. if (!iforce_get_id_packet(iforce, c + i))
  299. iforce_dump_packet("info", iforce->ecmd, iforce->edata);
  300. /*
  301. * Disable spring, enable force feedback.
  302. */
  303. iforce_set_autocenter(input_dev, 0);
  304. /*
  305. * Find appropriate device entry
  306. */
  307. for (i = 0; iforce_device[i].idvendor; i++)
  308. if (iforce_device[i].idvendor == input_dev->id.vendor &&
  309. iforce_device[i].idproduct == input_dev->id.product)
  310. break;
  311. iforce->type = iforce_device + i;
  312. input_dev->name = iforce->type->name;
  313. /*
  314. * Set input device bitfields and ranges.
  315. */
  316. input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) |
  317. BIT_MASK(EV_FF_STATUS);
  318. for (i = 0; iforce->type->btn[i] >= 0; i++)
  319. set_bit(iforce->type->btn[i], input_dev->keybit);
  320. set_bit(BTN_DEAD, input_dev->keybit);
  321. for (i = 0; iforce->type->abs[i] >= 0; i++) {
  322. signed short t = iforce->type->abs[i];
  323. switch (t) {
  324. case ABS_X:
  325. case ABS_Y:
  326. case ABS_WHEEL:
  327. input_set_abs_params(input_dev, t, -1920, 1920, 16, 128);
  328. set_bit(t, input_dev->ffbit);
  329. break;
  330. case ABS_THROTTLE:
  331. case ABS_GAS:
  332. case ABS_BRAKE:
  333. input_set_abs_params(input_dev, t, 0, 255, 0, 0);
  334. break;
  335. case ABS_RUDDER:
  336. input_set_abs_params(input_dev, t, -128, 127, 0, 0);
  337. break;
  338. case ABS_HAT0X:
  339. case ABS_HAT0Y:
  340. case ABS_HAT1X:
  341. case ABS_HAT1Y:
  342. input_set_abs_params(input_dev, t, -1, 1, 0, 0);
  343. break;
  344. }
  345. }
  346. if (ff_effects) {
  347. for (i = 0; iforce->type->ff[i] >= 0; i++)
  348. set_bit(iforce->type->ff[i], input_dev->ffbit);
  349. error = input_ff_create(input_dev, ff_effects);
  350. if (error)
  351. goto fail;
  352. ff = input_dev->ff;
  353. ff->upload = iforce_upload_effect;
  354. ff->erase = iforce_erase_effect;
  355. ff->set_gain = iforce_set_gain;
  356. ff->set_autocenter = iforce_set_autocenter;
  357. ff->playback = iforce_playback;
  358. }
  359. /*
  360. * Register input device.
  361. */
  362. error = input_register_device(iforce->dev);
  363. if (error)
  364. goto fail;
  365. return 0;
  366. fail: input_free_device(input_dev);
  367. return error;
  368. }
  369. static int __init iforce_init(void)
  370. {
  371. int err = 0;
  372. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  373. err = usb_register(&iforce_usb_driver);
  374. if (err)
  375. return err;
  376. #endif
  377. #ifdef CONFIG_JOYSTICK_IFORCE_232
  378. err = serio_register_driver(&iforce_serio_drv);
  379. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  380. if (err)
  381. usb_deregister(&iforce_usb_driver);
  382. #endif
  383. #endif
  384. return err;
  385. }
  386. static void __exit iforce_exit(void)
  387. {
  388. #ifdef CONFIG_JOYSTICK_IFORCE_USB
  389. usb_deregister(&iforce_usb_driver);
  390. #endif
  391. #ifdef CONFIG_JOYSTICK_IFORCE_232
  392. serio_unregister_driver(&iforce_serio_drv);
  393. #endif
  394. }
  395. module_init(iforce_init);
  396. module_exit(iforce_exit);