blob: be7ebe286a160df3dd3466883cb8a736b33851a1 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/usb.h>
33
Jiri Slaby10e41a72008-09-18 12:23:31 +020034#include "hid-ids.h"
35
36#include "usbhid/usbhid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* Usages for thrustmaster devices I know about */
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020039#define THRUSTMASTER_USAGE_FF (HID_UP_GENDESK | 0xbb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020041static const signed short ff_rumble[] = {
42 FF_RUMBLE,
43 -1
44};
45
46static const signed short ff_joystick[] = {
47 FF_CONSTANT,
48 -1
49};
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051struct tmff_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 struct hid_report *report;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020053 struct hid_field *ff_field;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
Anssi Hannuladc76c912006-07-19 01:40:55 -040056/* Changes values from 0 to 0xffff into values from minimum to maximum */
Jiri Slaby10e41a72008-09-18 12:23:31 +020057static inline int tmff_scale_u16(unsigned int in, int minimum, int maximum)
Anssi Hannuladc76c912006-07-19 01:40:55 -040058{
59 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Anssi Hannuladc76c912006-07-19 01:40:55 -040061 ret = (in * (maximum - minimum) / 0xffff) + minimum;
62 if (ret < minimum)
63 return minimum;
64 if (ret > maximum)
65 return maximum;
66 return ret;
67}
68
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020069/* Changes values from -0x80 to 0x7f into values from minimum to maximum */
Jiri Slaby10e41a72008-09-18 12:23:31 +020070static inline int tmff_scale_s8(int in, int minimum, int maximum)
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020071{
72 int ret;
73
74 ret = (((in + 0x80) * (maximum - minimum)) / 0xff) + minimum;
75 if (ret < minimum)
76 return minimum;
77 if (ret > maximum)
78 return maximum;
79 return ret;
80}
81
Jiri Slaby10e41a72008-09-18 12:23:31 +020082static int tmff_play(struct input_dev *dev, void *data,
83 struct ff_effect *effect)
Anssi Hannuladc76c912006-07-19 01:40:55 -040084{
Dmitry Torokhove0712982007-05-09 10:17:31 +020085 struct hid_device *hid = input_get_drvdata(dev);
Anssi Hannuladc76c912006-07-19 01:40:55 -040086 struct tmff_device *tmff = data;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020087 struct hid_field *ff_field = tmff->ff_field;
88 int x, y;
Anssi Hannuladc76c912006-07-19 01:40:55 -040089 int left, right; /* Rumbling */
90
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020091 switch (effect->type) {
92 case FF_CONSTANT:
Jiri Slaby10e41a72008-09-18 12:23:31 +020093 x = tmff_scale_s8(effect->u.ramp.start_level,
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020094 ff_field->logical_minimum,
95 ff_field->logical_maximum);
Jiri Slaby10e41a72008-09-18 12:23:31 +020096 y = tmff_scale_s8(effect->u.ramp.end_level,
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020097 ff_field->logical_minimum,
98 ff_field->logical_maximum);
Anssi Hannuladc76c912006-07-19 01:40:55 -040099
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200100 dbg_hid("(x, y)=(%04x, %04x)\n", x, y);
101 ff_field->value[0] = x;
102 ff_field->value[1] = y;
103 usbhid_submit_report(hid, tmff->report, USB_DIR_OUT);
104 break;
Anssi Hannuladc76c912006-07-19 01:40:55 -0400105
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200106 case FF_RUMBLE:
Jiri Slaby10e41a72008-09-18 12:23:31 +0200107 left = tmff_scale_u16(effect->u.rumble.weak_magnitude,
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200108 ff_field->logical_minimum,
109 ff_field->logical_maximum);
Jiri Slaby10e41a72008-09-18 12:23:31 +0200110 right = tmff_scale_u16(effect->u.rumble.strong_magnitude,
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200111 ff_field->logical_minimum,
112 ff_field->logical_maximum);
113
114 dbg_hid("(left,right)=(%08x, %08x)\n", left, right);
115 ff_field->value[0] = left;
116 ff_field->value[1] = right;
117 usbhid_submit_report(hid, tmff->report, USB_DIR_OUT);
118 break;
119 }
Anssi Hannuladc76c912006-07-19 01:40:55 -0400120 return 0;
121}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Jiri Slaby10e41a72008-09-18 12:23:31 +0200123static int tmff_init(struct hid_device *hid, const signed short *ff_bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Anssi Hannuladc76c912006-07-19 01:40:55 -0400125 struct tmff_device *tmff;
Li Zefan3ba56192007-11-14 11:31:05 +0100126 struct hid_report *report;
127 struct list_head *report_list;
Jiri Slaby10e41a72008-09-18 12:23:31 +0200128 struct hid_input *hidinput = list_entry(hid->inputs.next,
129 struct hid_input, list);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500130 struct input_dev *input_dev = hidinput->input;
Anssi Hannuladc76c912006-07-19 01:40:55 -0400131 int error;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200132 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Anssi Hannuladc76c912006-07-19 01:40:55 -0400134 tmff = kzalloc(sizeof(struct tmff_device), GFP_KERNEL);
135 if (!tmff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return -ENOMEM;
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* Find the report to use */
Li Zefan3ba56192007-11-14 11:31:05 +0100139 report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
140 list_for_each_entry(report, report_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 int fieldnum;
142
143 for (fieldnum = 0; fieldnum < report->maxfield; ++fieldnum) {
144 struct hid_field *field = report->field[fieldnum];
145
146 if (field->maxusage <= 0)
147 continue;
148
149 switch (field->usage[0].hid) {
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200150 case THRUSTMASTER_USAGE_FF:
151 if (field->report_count < 2) {
Jiri Slaby10e41a72008-09-18 12:23:31 +0200152 warn("ignoring FF field with "
153 "report_count < 2");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 continue;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200155 }
156
Jiri Slaby10e41a72008-09-18 12:23:31 +0200157 if (field->logical_maximum ==
158 field->logical_minimum) {
159 warn("ignoring FF field with "
160 "logical_maximum == "
161 "logical_minimum");
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200162 continue;
163 }
164
165 if (tmff->report && tmff->report != report) {
Jiri Slaby10e41a72008-09-18 12:23:31 +0200166 warn("ignoring FF field in other "
167 "report");
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200168 continue;
169 }
170
171 if (tmff->ff_field && tmff->ff_field != field) {
172 warn("ignoring duplicate FF field");
173 continue;
174 }
175
176 tmff->report = report;
177 tmff->ff_field = field;
178
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200179 for (i = 0; ff_bits[i] >= 0; i++)
180 set_bit(ff_bits[i], input_dev->ffbit);
181
182 break;
183
184 default:
Jiri Slaby10e41a72008-09-18 12:23:31 +0200185 warn("ignoring unknown output usage %08x",
186 field->usage[0].hid);
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200187 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190 }
191
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200192 if (!tmff->report) {
193 err("cant find FF field in output reports\n");
194 error = -ENODEV;
195 goto fail;
Anssi Hannuladc76c912006-07-19 01:40:55 -0400196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Jiri Slaby10e41a72008-09-18 12:23:31 +0200198 error = input_ff_create_memless(input_dev, tmff, tmff_play);
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200199 if (error)
200 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Jiri Slaby10e41a72008-09-18 12:23:31 +0200202 info("Force feedback for ThrustMaster devices by Zinx Verituse "
203 "<zinx@epicsol.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return 0;
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200205
Jiri Slaby10e41a72008-09-18 12:23:31 +0200206fail:
Dmitry Torokhovb27c9592007-07-30 14:56:26 +0200207 kfree(tmff);
208 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Jiri Slaby10e41a72008-09-18 12:23:31 +0200211static int tm_probe(struct hid_device *hdev, const struct hid_device_id *id)
212{
213 int ret;
214
215 ret = hid_parse(hdev);
216 if (ret) {
217 dev_err(&hdev->dev, "parse failed\n");
218 goto err;
219 }
220
221 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
222 if (ret) {
223 dev_err(&hdev->dev, "hw start failed\n");
224 goto err;
225 }
226
227 tmff_init(hdev, (void *)id->driver_data);
228
229 return 0;
230err:
231 return ret;
232}
233
234static const struct hid_device_id tm_devices[] = {
235 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb300),
236 .driver_data = (unsigned long)ff_rumble },
237 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb304),
238 .driver_data = (unsigned long)ff_rumble },
239 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb651), /* FGT Rumble Force Wheel */
240 .driver_data = (unsigned long)ff_rumble },
241 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb654), /* FGT Force Feedback Wheel */
242 .driver_data = (unsigned long)ff_joystick },
243 { }
244};
245MODULE_DEVICE_TABLE(hid, tm_devices);
246
247static struct hid_driver tm_driver = {
248 .name = "thrustmaster",
249 .id_table = tm_devices,
250 .probe = tm_probe,
251};
252
253static int tm_init(void)
254{
255 return hid_register_driver(&tm_driver);
256}
257
258static void tm_exit(void)
259{
260 hid_unregister_driver(&tm_driver);
261}
262
263module_init(tm_init);
264module_exit(tm_exit);
265MODULE_LICENSE("GPL");
266
267HID_COMPAT_LOAD_DRIVER(thrustmaster);