blob: cfa0cb22c9b3ca7e4068101f13ba611b71a18a72 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Force feedback support for various HID compliant devices by ThrustMaster:
3 * ThrustMaster FireStorm Dual Power 2
4 * and possibly others whose device ids haven't been added.
5 *
6 * Modified to support ThrustMaster devices by Zinx Verituse
7 * on 2003-01-25 from the Logitech force feedback driver,
8 * which is by Johann Deneux.
9 *
10 * Copyright (c) 2003 Zinx Verituse <zinx@epicsol.org>
11 * Copyright (c) 2002 Johann Deneux
12 */
13
14/*
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 */
29
Jiri Slaby10e41a72008-09-18 12:23:31 +020030#include <linux/hid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/input.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Paul Gortmaker8f86a2c2011-07-03 13:39:48 -040033#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Jiri Slaby10e41a72008-09-18 12:23:31 +020035#include "hid-ids.h"
36
Ilya Trukhanov18e5fad42019-07-02 13:37:16 +030037#define THRUSTMASTER_DEVICE_ID_2_IN_1_DT 0xb320
38
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020039static const signed short ff_rumble[] = {
40 FF_RUMBLE,
41 -1
42};
43
44static const signed short ff_joystick[] = {
45 FF_CONSTANT,
46 -1
47};
48
Jiri Kosina0f6f4312009-05-15 15:46:44 +020049#ifdef CONFIG_THRUSTMASTER_FF
Jiri Kosina0f6f4312009-05-15 15:46:44 +020050
51/* Usages for thrustmaster devices I know about */
52#define THRUSTMASTER_USAGE_FF (HID_UP_GENDESK | 0xbb)
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054struct tmff_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 struct hid_report *report;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020056 struct hid_field *ff_field;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
Anssi Hannuladc76c912006-07-19 01:40:55 -040059/* Changes values from 0 to 0xffff into values from minimum to maximum */
Jiri Slaby10e41a72008-09-18 12:23:31 +020060static inline int tmff_scale_u16(unsigned int in, int minimum, int maximum)
Anssi Hannuladc76c912006-07-19 01:40:55 -040061{
62 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Anssi Hannuladc76c912006-07-19 01:40:55 -040064 ret = (in * (maximum - minimum) / 0xffff) + minimum;
65 if (ret < minimum)
66 return minimum;
67 if (ret > maximum)
68 return maximum;
69 return ret;
70}
71
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020072/* Changes values from -0x80 to 0x7f into values from minimum to maximum */
Jiri Slaby10e41a72008-09-18 12:23:31 +020073static inline int tmff_scale_s8(int in, int minimum, int maximum)
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020074{
75 int ret;
76
77 ret = (((in + 0x80) * (maximum - minimum)) / 0xff) + minimum;
78 if (ret < minimum)
79 return minimum;
80 if (ret > maximum)
81 return maximum;
82 return ret;
83}
84
Jiri Slaby10e41a72008-09-18 12:23:31 +020085static int tmff_play(struct input_dev *dev, void *data,
86 struct ff_effect *effect)
Anssi Hannuladc76c912006-07-19 01:40:55 -040087{
Dmitry Torokhove0712982007-05-09 10:17:31 +020088 struct hid_device *hid = input_get_drvdata(dev);
Anssi Hannuladc76c912006-07-19 01:40:55 -040089 struct tmff_device *tmff = data;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020090 struct hid_field *ff_field = tmff->ff_field;
91 int x, y;
Anssi Hannuladc76c912006-07-19 01:40:55 -040092 int left, right; /* Rumbling */
Ilya Trukhanov18e5fad42019-07-02 13:37:16 +030093 int motor_swap;
Anssi Hannuladc76c912006-07-19 01:40:55 -040094
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020095 switch (effect->type) {
96 case FF_CONSTANT:
Jiri Slaby10e41a72008-09-18 12:23:31 +020097 x = tmff_scale_s8(effect->u.ramp.start_level,
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020098 ff_field->logical_minimum,
99 ff_field->logical_maximum);
Jiri Slaby10e41a72008-09-18 12:23:31 +0200100 y = tmff_scale_s8(effect->u.ramp.end_level,
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200101 ff_field->logical_minimum,
102 ff_field->logical_maximum);
Anssi Hannuladc76c912006-07-19 01:40:55 -0400103
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200104 dbg_hid("(x, y)=(%04x, %04x)\n", x, y);
105 ff_field->value[0] = x;
106 ff_field->value[1] = y;
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100107 hid_hw_request(hid, tmff->report, HID_REQ_SET_REPORT);
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200108 break;
Anssi Hannuladc76c912006-07-19 01:40:55 -0400109
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200110 case FF_RUMBLE:
Jiri Slaby10e41a72008-09-18 12:23:31 +0200111 left = tmff_scale_u16(effect->u.rumble.weak_magnitude,
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200112 ff_field->logical_minimum,
113 ff_field->logical_maximum);
Jiri Slaby10e41a72008-09-18 12:23:31 +0200114 right = tmff_scale_u16(effect->u.rumble.strong_magnitude,
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200115 ff_field->logical_minimum,
116 ff_field->logical_maximum);
117
Ilya Trukhanov18e5fad42019-07-02 13:37:16 +0300118 /* 2-in-1 strong motor is left */
119 if (hid->product == THRUSTMASTER_DEVICE_ID_2_IN_1_DT) {
120 motor_swap = left;
121 left = right;
122 right = motor_swap;
123 }
124
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200125 dbg_hid("(left,right)=(%08x, %08x)\n", left, right);
126 ff_field->value[0] = left;
127 ff_field->value[1] = right;
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100128 hid_hw_request(hid, tmff->report, HID_REQ_SET_REPORT);
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200129 break;
130 }
Anssi Hannuladc76c912006-07-19 01:40:55 -0400131 return 0;
132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Jiri Slaby10e41a72008-09-18 12:23:31 +0200134static int tmff_init(struct hid_device *hid, const signed short *ff_bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Anssi Hannuladc76c912006-07-19 01:40:55 -0400136 struct tmff_device *tmff;
Li Zefan3ba56192007-11-14 11:31:05 +0100137 struct hid_report *report;
138 struct list_head *report_list;
Jiri Slaby10e41a72008-09-18 12:23:31 +0200139 struct hid_input *hidinput = list_entry(hid->inputs.next,
140 struct hid_input, list);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500141 struct input_dev *input_dev = hidinput->input;
Anssi Hannuladc76c912006-07-19 01:40:55 -0400142 int error;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200143 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Anssi Hannuladc76c912006-07-19 01:40:55 -0400145 tmff = kzalloc(sizeof(struct tmff_device), GFP_KERNEL);
146 if (!tmff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return -ENOMEM;
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 /* Find the report to use */
Li Zefan3ba56192007-11-14 11:31:05 +0100150 report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
151 list_for_each_entry(report, report_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int fieldnum;
153
154 for (fieldnum = 0; fieldnum < report->maxfield; ++fieldnum) {
155 struct hid_field *field = report->field[fieldnum];
156
157 if (field->maxusage <= 0)
158 continue;
159
160 switch (field->usage[0].hid) {
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200161 case THRUSTMASTER_USAGE_FF:
162 if (field->report_count < 2) {
Joe Perches4291ee32010-12-09 19:29:03 -0800163 hid_warn(hid, "ignoring FF field with report_count < 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 continue;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200165 }
166
Jiri Slaby10e41a72008-09-18 12:23:31 +0200167 if (field->logical_maximum ==
168 field->logical_minimum) {
Joe Perches4291ee32010-12-09 19:29:03 -0800169 hid_warn(hid, "ignoring FF field with logical_maximum == logical_minimum\n");
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200170 continue;
171 }
172
173 if (tmff->report && tmff->report != report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800174 hid_warn(hid, "ignoring FF field in other report\n");
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200175 continue;
176 }
177
178 if (tmff->ff_field && tmff->ff_field != field) {
Joe Perches4291ee32010-12-09 19:29:03 -0800179 hid_warn(hid, "ignoring duplicate FF field\n");
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200180 continue;
181 }
182
183 tmff->report = report;
184 tmff->ff_field = field;
185
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200186 for (i = 0; ff_bits[i] >= 0; i++)
187 set_bit(ff_bits[i], input_dev->ffbit);
188
189 break;
190
191 default:
Joe Perches4291ee32010-12-09 19:29:03 -0800192 hid_warn(hid, "ignoring unknown output usage %08x\n",
193 field->usage[0].hid);
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200194 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197 }
198
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200199 if (!tmff->report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800200 hid_err(hid, "can't find FF field in output reports\n");
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200201 error = -ENODEV;
202 goto fail;
Anssi Hannuladc76c912006-07-19 01:40:55 -0400203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Jiri Slaby10e41a72008-09-18 12:23:31 +0200205 error = input_ff_create_memless(input_dev, tmff, tmff_play);
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200206 if (error)
207 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Joe Perches4291ee32010-12-09 19:29:03 -0800209 hid_info(hid, "force feedback for ThrustMaster devices by Zinx Verituse <zinx@epicsol.org>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return 0;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200211
Jiri Slaby10e41a72008-09-18 12:23:31 +0200212fail:
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200213 kfree(tmff);
214 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200216#else
217static inline int tmff_init(struct hid_device *hid, const signed short *ff_bits)
218{
219 return 0;
220}
221#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Jiri Slaby10e41a72008-09-18 12:23:31 +0200223static int tm_probe(struct hid_device *hdev, const struct hid_device_id *id)
224{
225 int ret;
226
227 ret = hid_parse(hdev);
228 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800229 hid_err(hdev, "parse failed\n");
Jiri Slaby10e41a72008-09-18 12:23:31 +0200230 goto err;
231 }
232
233 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
234 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800235 hid_err(hdev, "hw start failed\n");
Jiri Slaby10e41a72008-09-18 12:23:31 +0200236 goto err;
237 }
238
239 tmff_init(hdev, (void *)id->driver_data);
240
241 return 0;
242err:
243 return ret;
244}
245
246static const struct hid_device_id tm_devices[] = {
247 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb300),
248 .driver_data = (unsigned long)ff_rumble },
Ruben Aos Garralda7a84b132009-06-29 09:41:29 +0200249 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb304), /* FireStorm Dual Power 2 (and 3) */
250 .driver_data = (unsigned long)ff_rumble },
Ilya Trukhanov18e5fad42019-07-02 13:37:16 +0300251 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, THRUSTMASTER_DEVICE_ID_2_IN_1_DT), /* Dual Trigger 2-in-1 */
252 .driver_data = (unsigned long)ff_rumble },
Ruben Aos Garralda7a84b132009-06-29 09:41:29 +0200253 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb323), /* Dual Trigger 3-in-1 (PC Mode) */
254 .driver_data = (unsigned long)ff_rumble },
255 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb324), /* Dual Trigger 3-in-1 (PS3 Mode) */
Jiri Slaby10e41a72008-09-18 12:23:31 +0200256 .driver_data = (unsigned long)ff_rumble },
257 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb651), /* FGT Rumble Force Wheel */
258 .driver_data = (unsigned long)ff_rumble },
Markus Rathgeb3ee8f0a2010-03-13 17:29:43 +0100259 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb653), /* RGT Force Feedback CLUTCH Raging Wheel */
260 .driver_data = (unsigned long)ff_joystick },
Jiri Slaby10e41a72008-09-18 12:23:31 +0200261 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb654), /* FGT Force Feedback Wheel */
262 .driver_data = (unsigned long)ff_joystick },
Simon Woodd65c3762010-11-29 17:41:23 +0100263 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb65a), /* F430 Force Feedback Wheel */
264 .driver_data = (unsigned long)ff_joystick },
Jiri Slaby10e41a72008-09-18 12:23:31 +0200265 { }
266};
267MODULE_DEVICE_TABLE(hid, tm_devices);
268
269static struct hid_driver tm_driver = {
270 .name = "thrustmaster",
271 .id_table = tm_devices,
272 .probe = tm_probe,
273};
H Hartley Sweetenf4254582012-12-17 15:28:26 -0700274module_hid_driver(tm_driver);
Jiri Slaby10e41a72008-09-18 12:23:31 +0200275
Jiri Slaby10e41a72008-09-18 12:23:31 +0200276MODULE_LICENSE("GPL");