hid-lg2ff.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Force feedback support for Logitech RumblePad and Rumblepad 2
  3. *
  4. * Copyright (c) 2008 Anssi Hannula <anssi.hannula@gmail.com>
  5. */
  6. /*
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/input.h>
  22. #include <linux/slab.h>
  23. #include <linux/usb.h>
  24. #include <linux/hid.h>
  25. #include "usbhid/usbhid.h"
  26. #include "hid-lg.h"
  27. struct lg2ff_device {
  28. struct hid_report *report;
  29. };
  30. static int play_effect(struct input_dev *dev, void *data,
  31. struct ff_effect *effect)
  32. {
  33. struct hid_device *hid = input_get_drvdata(dev);
  34. struct lg2ff_device *lg2ff = data;
  35. int weak, strong;
  36. strong = effect->u.rumble.strong_magnitude;
  37. weak = effect->u.rumble.weak_magnitude;
  38. if (weak || strong) {
  39. weak = weak * 0xff / 0xffff;
  40. strong = strong * 0xff / 0xffff;
  41. lg2ff->report->field[0]->value[0] = 0x51;
  42. lg2ff->report->field[0]->value[2] = weak;
  43. lg2ff->report->field[0]->value[4] = strong;
  44. } else {
  45. lg2ff->report->field[0]->value[0] = 0xf3;
  46. lg2ff->report->field[0]->value[2] = 0x00;
  47. lg2ff->report->field[0]->value[4] = 0x00;
  48. }
  49. usbhid_submit_report(hid, lg2ff->report, USB_DIR_OUT);
  50. return 0;
  51. }
  52. int lg2ff_init(struct hid_device *hid)
  53. {
  54. struct lg2ff_device *lg2ff;
  55. struct hid_report *report;
  56. struct hid_input *hidinput;
  57. struct input_dev *dev;
  58. int error;
  59. if (list_empty(&hid->inputs)) {
  60. hid_err(hid, "no inputs found\n");
  61. return -ENODEV;
  62. }
  63. hidinput = list_entry(hid->inputs.next, struct hid_input, list);
  64. dev = hidinput->input;
  65. /* Check that the report looks ok */
  66. report = hid_validate_values(hid, HID_OUTPUT_REPORT, 0, 0, 7);
  67. if (!report)
  68. return -ENODEV;
  69. lg2ff = kmalloc(sizeof(struct lg2ff_device), GFP_KERNEL);
  70. if (!lg2ff)
  71. return -ENOMEM;
  72. set_bit(FF_RUMBLE, dev->ffbit);
  73. error = input_ff_create_memless(dev, lg2ff, play_effect);
  74. if (error) {
  75. kfree(lg2ff);
  76. return error;
  77. }
  78. lg2ff->report = report;
  79. report->field[0]->value[0] = 0xf3;
  80. report->field[0]->value[1] = 0x00;
  81. report->field[0]->value[2] = 0x00;
  82. report->field[0]->value[3] = 0x00;
  83. report->field[0]->value[4] = 0x00;
  84. report->field[0]->value[5] = 0x00;
  85. report->field[0]->value[6] = 0x00;
  86. usbhid_submit_report(hid, report, USB_DIR_OUT);
  87. hid_info(hid, "Force feedback for Logitech RumblePad/Rumblepad 2 by Anssi Hannula <anssi.hannula@gmail.com>\n");
  88. return 0;
  89. }