hid-zpff.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. #include <linux/hid.h>
  22. #include <linux/input.h>
  23. #include <linux/slab.h>
  24. #include <linux/usb.h>
  25. #include "hid-ids.h"
  26. #ifdef CONFIG_ZEROPLUS_FF
  27. #include "usbhid/usbhid.h"
  28. struct zpff_device {
  29. struct hid_report *report;
  30. };
  31. static int zpff_play(struct input_dev *dev, void *data,
  32. struct ff_effect *effect)
  33. {
  34. struct hid_device *hid = input_get_drvdata(dev);
  35. struct zpff_device *zpff = data;
  36. int left, right;
  37. /*
  38. * The following is specified the other way around in the Zeroplus
  39. * datasheet but the order below is correct for the XFX Executioner;
  40. * however it is possible that the XFX Executioner is an exception
  41. */
  42. left = effect->u.rumble.strong_magnitude;
  43. right = effect->u.rumble.weak_magnitude;
  44. dbg_hid("called with 0x%04x 0x%04x\n", left, right);
  45. left = left * 0x7f / 0xffff;
  46. right = right * 0x7f / 0xffff;
  47. zpff->report->field[2]->value[0] = left;
  48. zpff->report->field[3]->value[0] = right;
  49. dbg_hid("running with 0x%02x 0x%02x\n", left, right);
  50. usbhid_submit_report(hid, zpff->report, USB_DIR_OUT);
  51. return 0;
  52. }
  53. static int zpff_init(struct hid_device *hid)
  54. {
  55. struct zpff_device *zpff;
  56. struct hid_report *report;
  57. struct hid_input *hidinput = list_entry(hid->inputs.next,
  58. struct hid_input, list);
  59. struct list_head *report_list =
  60. &hid->report_enum[HID_OUTPUT_REPORT].report_list;
  61. struct input_dev *dev = hidinput->input;
  62. int error;
  63. if (list_empty(report_list)) {
  64. hid_err(hid, "no output report found\n");
  65. return -ENODEV;
  66. }
  67. report = list_entry(report_list->next, struct hid_report, list);
  68. if (report->maxfield < 4) {
  69. hid_err(hid, "not enough fields in report\n");
  70. return -ENODEV;
  71. }
  72. zpff = kzalloc(sizeof(struct zpff_device), GFP_KERNEL);
  73. if (!zpff)
  74. return -ENOMEM;
  75. set_bit(FF_RUMBLE, dev->ffbit);
  76. error = input_ff_create_memless(dev, zpff, zpff_play);
  77. if (error) {
  78. kfree(zpff);
  79. return error;
  80. }
  81. zpff->report = report;
  82. zpff->report->field[0]->value[0] = 0x00;
  83. zpff->report->field[1]->value[0] = 0x02;
  84. zpff->report->field[2]->value[0] = 0x00;
  85. zpff->report->field[3]->value[0] = 0x00;
  86. usbhid_submit_report(hid, zpff->report, USB_DIR_OUT);
  87. hid_info(hid, "force feedback for Zeroplus based devices by Anssi Hannula <anssi.hannula@gmail.com>\n");
  88. return 0;
  89. }
  90. #else
  91. static inline int zpff_init(struct hid_device *hid)
  92. {
  93. return 0;
  94. }
  95. #endif
  96. static int zp_probe(struct hid_device *hdev, const struct hid_device_id *id)
  97. {
  98. int ret;
  99. ret = hid_parse(hdev);
  100. if (ret) {
  101. hid_err(hdev, "parse failed\n");
  102. goto err;
  103. }
  104. ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
  105. if (ret) {
  106. hid_err(hdev, "hw start failed\n");
  107. goto err;
  108. }
  109. zpff_init(hdev);
  110. return 0;
  111. err:
  112. return ret;
  113. }
  114. static const struct hid_device_id zp_devices[] = {
  115. { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) },
  116. { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) },
  117. { }
  118. };
  119. MODULE_DEVICE_TABLE(hid, zp_devices);
  120. static struct hid_driver zp_driver = {
  121. .name = "zeroplus",
  122. .id_table = zp_devices,
  123. .probe = zp_probe,
  124. };
  125. static int __init zp_init(void)
  126. {
  127. return hid_register_driver(&zp_driver);
  128. }
  129. static void __exit zp_exit(void)
  130. {
  131. hid_unregister_driver(&zp_driver);
  132. }
  133. module_init(zp_init);
  134. module_exit(zp_exit);
  135. MODULE_LICENSE("GPL");