hid-zpff.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Force feedback support for Zeroplus based devices
  3. *
  4. * Copyright (c) 2005, 2006 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. /* #define DEBUG */
  22. #define debug(format, arg...) pr_debug("hid-zpff: " format "\n" , ## arg)
  23. #include <linux/input.h>
  24. #include <linux/usb.h>
  25. #include "hid.h"
  26. struct zpff_device {
  27. struct hid_report *report;
  28. };
  29. static int hid_zpff_play(struct input_dev *dev, void *data,
  30. struct ff_effect *effect)
  31. {
  32. struct hid_device *hid = dev->private;
  33. struct zpff_device *zpff = data;
  34. int left, right;
  35. /*
  36. * The following is specified the other way around in the Zeroplus
  37. * datasheet but the order below is correct for the XFX Executioner;
  38. * however it is possible that the XFX Executioner is an exception
  39. */
  40. left = effect->u.rumble.strong_magnitude;
  41. right = effect->u.rumble.weak_magnitude;
  42. debug("called with 0x%04x 0x%04x", left, right);
  43. left = left * 0x7f / 0xffff;
  44. right = right * 0x7f / 0xffff;
  45. zpff->report->field[2]->value[0] = left;
  46. zpff->report->field[3]->value[0] = right;
  47. debug("running with 0x%02x 0x%02x", left, right);
  48. hid_submit_report(hid, zpff->report, USB_DIR_OUT);
  49. return 0;
  50. }
  51. int hid_zpff_init(struct hid_device *hid)
  52. {
  53. struct zpff_device *zpff;
  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. printk(KERN_ERR "hid-zpff: no output report found\n");
  63. return -ENODEV;
  64. }
  65. report = list_entry(report_list->next, struct hid_report, list);
  66. if (report->maxfield < 4) {
  67. printk(KERN_ERR "hid-zpff: not enough fields in report\n");
  68. return -ENODEV;
  69. }
  70. zpff = kzalloc(sizeof(struct zpff_device), GFP_KERNEL);
  71. if (!zpff)
  72. return -ENOMEM;
  73. set_bit(FF_RUMBLE, dev->ffbit);
  74. error = input_ff_create_memless(dev, zpff, hid_zpff_play);
  75. if (error) {
  76. kfree(zpff);
  77. return error;
  78. }
  79. zpff->report = report;
  80. zpff->report->field[0]->value[0] = 0x00;
  81. zpff->report->field[1]->value[0] = 0x02;
  82. zpff->report->field[2]->value[0] = 0x00;
  83. zpff->report->field[3]->value[0] = 0x00;
  84. hid_submit_report(hid, zpff->report, USB_DIR_OUT);
  85. printk(KERN_INFO "Force feedback for Zeroplus based devices by "
  86. "Anssi Hannula <anssi.hannula@gmail.com>\n");
  87. return 0;
  88. }