hid-ff.c 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * $Id: hid-ff.c,v 1.2 2002/04/18 22:02:47 jdeneux Exp $
  3. *
  4. * Force feedback support for hid devices.
  5. * Not all hid devices use the same protocol. For example, some use PID,
  6. * other use their own proprietary procotol.
  7. *
  8. * Copyright (c) 2002-2004 Johann Deneux
  9. */
  10. /*
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24. *
  25. * Should you need to contact me, the author, you can do so by
  26. * e-mail - mail your message to <johann.deneux@it.uu.se>
  27. */
  28. #include <linux/input.h>
  29. #undef DEBUG
  30. #include <linux/usb.h>
  31. #include "hid.h"
  32. /*
  33. * This table contains pointers to initializers. To add support for new
  34. * devices, you need to add the USB vendor and product ids here.
  35. */
  36. struct hid_ff_initializer {
  37. u16 idVendor;
  38. u16 idProduct;
  39. int (*init)(struct hid_device*);
  40. };
  41. static struct hid_ff_initializer inits[] = {
  42. #ifdef CONFIG_LOGITECH_FF
  43. {0x46d, 0xc211, hid_lgff_init}, // Logitech Cordless rumble pad
  44. {0x46d, 0xc283, hid_lgff_init}, // Logitech Wingman Force 3d
  45. {0x46d, 0xc295, hid_lgff_init}, // Logitech MOMO force wheel
  46. {0x46d, 0xc219, hid_lgff_init}, // Logitech Cordless rumble pad 2
  47. #endif
  48. #ifdef CONFIG_HID_PID
  49. {0x45e, 0x001b, hid_pid_init},
  50. #endif
  51. #ifdef CONFIG_THRUSTMASTER_FF
  52. {0x44f, 0xb304, hid_tmff_init},
  53. #endif
  54. {0, 0, NULL} /* Terminating entry */
  55. };
  56. static struct hid_ff_initializer *hid_get_ff_init(__u16 idVendor,
  57. __u16 idProduct)
  58. {
  59. struct hid_ff_initializer *init;
  60. for (init = inits;
  61. init->idVendor
  62. && !(init->idVendor == idVendor
  63. && init->idProduct == idProduct);
  64. init++);
  65. return init->idVendor? init : NULL;
  66. }
  67. int hid_ff_init(struct hid_device* hid)
  68. {
  69. struct hid_ff_initializer *init;
  70. init = hid_get_ff_init(le16_to_cpu(hid->dev->descriptor.idVendor),
  71. le16_to_cpu(hid->dev->descriptor.idProduct));
  72. if (!init) {
  73. dbg("hid_ff_init could not find initializer");
  74. return -ENOSYS;
  75. }
  76. return init->init(hid);
  77. }