hid-zpff.c 3.6 KB

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