hid-ff.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Force feedback support for hid devices.
  3. * Not all hid devices use the same protocol. For example, some use PID,
  4. * other use their own proprietary procotol.
  5. *
  6. * Copyright (c) 2002-2004 Johann Deneux
  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 by
  24. * e-mail - mail your message to <johann.deneux@it.uu.se>
  25. */
  26. #include <linux/input.h>
  27. #undef DEBUG
  28. #include <linux/usb.h>
  29. #include <linux/hid.h>
  30. #include "usbhid.h"
  31. /*
  32. * This table contains pointers to initializers. To add support for new
  33. * devices, you need to add the USB vendor and product ids here.
  34. */
  35. struct hid_ff_initializer {
  36. u16 idVendor;
  37. u16 idProduct;
  38. int (*init)(struct hid_device*);
  39. };
  40. /*
  41. * We try pidff when no other driver is found because PID is the
  42. * standards compliant way of implementing force feedback in HID.
  43. * pidff_init() will quickly abort if the device doesn't appear to
  44. * be a PID device
  45. */
  46. static struct hid_ff_initializer inits[] = {
  47. #ifdef CONFIG_THRUSTMASTER_FF
  48. { 0x44f, 0xb300, hid_tmff_init },
  49. { 0x44f, 0xb304, hid_tmff_init },
  50. { 0x44f, 0xb651, hid_tmff_init }, /* FGT Rumble Force Wheel */
  51. { 0x44f, 0xb654, hid_tmff_init }, /* FGT Force Feedback Wheel */
  52. #endif
  53. #ifdef CONFIG_ZEROPLUS_FF
  54. { 0xc12, 0x0005, hid_zpff_init },
  55. { 0xc12, 0x0030, hid_zpff_init },
  56. #endif
  57. { 0, 0, hid_pidff_init} /* Matches anything */
  58. };
  59. int hid_ff_init(struct hid_device* hid)
  60. {
  61. struct hid_ff_initializer *init;
  62. int vendor = le16_to_cpu(hid_to_usb_dev(hid)->descriptor.idVendor);
  63. int product = le16_to_cpu(hid_to_usb_dev(hid)->descriptor.idProduct);
  64. for (init = inits; init->idVendor; init++)
  65. if (init->idVendor == vendor && init->idProduct == product)
  66. break;
  67. return init->init(hid);
  68. }
  69. EXPORT_SYMBOL_GPL(hid_ff_init);