hid-lg2ff.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Force feedback support for Logitech 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/usb.h>
  23. #include <linux/hid.h>
  24. #include "usbhid/usbhid.h"
  25. #include "hid-lg.h"
  26. struct lg2ff_device {
  27. struct hid_report *report;
  28. };
  29. static int play_effect(struct input_dev *dev, void *data,
  30. struct ff_effect *effect)
  31. {
  32. struct hid_device *hid = input_get_drvdata(dev);
  33. struct lg2ff_device *lg2ff = data;
  34. int weak, strong;
  35. strong = effect->u.rumble.strong_magnitude;
  36. weak = effect->u.rumble.weak_magnitude;
  37. if (weak || strong) {
  38. weak = weak * 0xff / 0xffff;
  39. strong = strong * 0xff / 0xffff;
  40. lg2ff->report->field[0]->value[0] = 0x51;
  41. lg2ff->report->field[0]->value[2] = weak;
  42. lg2ff->report->field[0]->value[4] = strong;
  43. } else {
  44. lg2ff->report->field[0]->value[0] = 0xf3;
  45. lg2ff->report->field[0]->value[2] = 0x00;
  46. lg2ff->report->field[0]->value[4] = 0x00;
  47. }
  48. usbhid_submit_report(hid, lg2ff->report, USB_DIR_OUT);
  49. return 0;
  50. }
  51. int lg2ff_init(struct hid_device *hid)
  52. {
  53. struct lg2ff_device *lg2ff;
  54. struct hid_report *report;
  55. struct hid_input *hidinput = list_entry(hid->inputs.next,
  56. struct hid_input, list);
  57. struct list_head *report_list =
  58. &hid->report_enum[HID_OUTPUT_REPORT].report_list;
  59. struct input_dev *dev = hidinput->input;
  60. int error;
  61. if (list_empty(report_list)) {
  62. dev_err(&hid->dev, "no output report found\n");
  63. return -ENODEV;
  64. }
  65. report = list_entry(report_list->next, struct hid_report, list);
  66. if (report->maxfield < 1) {
  67. dev_err(&hid->dev, "output report is empty\n");
  68. return -ENODEV;
  69. }
  70. if (report->field[0]->report_count < 7) {
  71. dev_err(&hid->dev, "not enough values in the field\n");
  72. return -ENODEV;
  73. }
  74. lg2ff = kmalloc(sizeof(struct lg2ff_device), GFP_KERNEL);
  75. if (!lg2ff)
  76. return -ENOMEM;
  77. set_bit(FF_RUMBLE, dev->ffbit);
  78. error = input_ff_create_memless(dev, lg2ff, play_effect);
  79. if (error) {
  80. kfree(lg2ff);
  81. return error;
  82. }
  83. lg2ff->report = report;
  84. report->field[0]->value[0] = 0xf3;
  85. report->field[0]->value[1] = 0x00;
  86. report->field[0]->value[2] = 0x00;
  87. report->field[0]->value[3] = 0x00;
  88. report->field[0]->value[4] = 0x00;
  89. report->field[0]->value[5] = 0x00;
  90. report->field[0]->value[6] = 0x00;
  91. usbhid_submit_report(hid, report, USB_DIR_OUT);
  92. dev_info(&hid->dev, "Force feedback for Logitech Rumblepad 2 by "
  93. "Anssi Hannula <anssi.hannula@gmail.com>\n");
  94. return 0;
  95. }