Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 30 | #include <linux/hid.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/input.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/usb.h> |
| 33 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 34 | #include "hid-ids.h" |
| 35 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 36 | static const signed short ff_rumble[] = { |
| 37 | FF_RUMBLE, |
| 38 | -1 |
| 39 | }; |
| 40 | |
| 41 | static const signed short ff_joystick[] = { |
| 42 | FF_CONSTANT, |
| 43 | -1 |
| 44 | }; |
| 45 | |
Jiri Kosina | 0f6f431 | 2009-05-15 15:46:44 +0200 | [diff] [blame] | 46 | #ifdef CONFIG_THRUSTMASTER_FF |
| 47 | #include "usbhid/usbhid.h" |
| 48 | |
| 49 | /* Usages for thrustmaster devices I know about */ |
| 50 | #define THRUSTMASTER_USAGE_FF (HID_UP_GENDESK | 0xbb) |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | struct tmff_device { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | struct hid_report *report; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 54 | struct hid_field *ff_field; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | }; |
| 56 | |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 57 | /* Changes values from 0 to 0xffff into values from minimum to maximum */ |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 58 | static inline int tmff_scale_u16(unsigned int in, int minimum, int maximum) |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 59 | { |
| 60 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 62 | ret = (in * (maximum - minimum) / 0xffff) + minimum; |
| 63 | if (ret < minimum) |
| 64 | return minimum; |
| 65 | if (ret > maximum) |
| 66 | return maximum; |
| 67 | return ret; |
| 68 | } |
| 69 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 70 | /* Changes values from -0x80 to 0x7f into values from minimum to maximum */ |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 71 | static inline int tmff_scale_s8(int in, int minimum, int maximum) |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 72 | { |
| 73 | int ret; |
| 74 | |
| 75 | ret = (((in + 0x80) * (maximum - minimum)) / 0xff) + minimum; |
| 76 | if (ret < minimum) |
| 77 | return minimum; |
| 78 | if (ret > maximum) |
| 79 | return maximum; |
| 80 | return ret; |
| 81 | } |
| 82 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 83 | static int tmff_play(struct input_dev *dev, void *data, |
| 84 | struct ff_effect *effect) |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 85 | { |
Dmitry Torokhov | e071298 | 2007-05-09 10:17:31 +0200 | [diff] [blame] | 86 | struct hid_device *hid = input_get_drvdata(dev); |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 87 | struct tmff_device *tmff = data; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 88 | struct hid_field *ff_field = tmff->ff_field; |
| 89 | int x, y; |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 90 | int left, right; /* Rumbling */ |
| 91 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 92 | switch (effect->type) { |
| 93 | case FF_CONSTANT: |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 94 | x = tmff_scale_s8(effect->u.ramp.start_level, |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 95 | ff_field->logical_minimum, |
| 96 | ff_field->logical_maximum); |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 97 | y = tmff_scale_s8(effect->u.ramp.end_level, |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 98 | ff_field->logical_minimum, |
| 99 | ff_field->logical_maximum); |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 100 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 101 | dbg_hid("(x, y)=(%04x, %04x)\n", x, y); |
| 102 | ff_field->value[0] = x; |
| 103 | ff_field->value[1] = y; |
| 104 | usbhid_submit_report(hid, tmff->report, USB_DIR_OUT); |
| 105 | break; |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 106 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 107 | case FF_RUMBLE: |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 108 | left = tmff_scale_u16(effect->u.rumble.weak_magnitude, |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 109 | ff_field->logical_minimum, |
| 110 | ff_field->logical_maximum); |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 111 | right = tmff_scale_u16(effect->u.rumble.strong_magnitude, |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 112 | ff_field->logical_minimum, |
| 113 | ff_field->logical_maximum); |
| 114 | |
| 115 | dbg_hid("(left,right)=(%08x, %08x)\n", left, right); |
| 116 | ff_field->value[0] = left; |
| 117 | ff_field->value[1] = right; |
| 118 | usbhid_submit_report(hid, tmff->report, USB_DIR_OUT); |
| 119 | break; |
| 120 | } |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 121 | return 0; |
| 122 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 124 | static int tmff_init(struct hid_device *hid, const signed short *ff_bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | { |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 126 | struct tmff_device *tmff; |
Li Zefan | 3ba5619 | 2007-11-14 11:31:05 +0100 | [diff] [blame] | 127 | struct hid_report *report; |
| 128 | struct list_head *report_list; |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 129 | struct hid_input *hidinput = list_entry(hid->inputs.next, |
| 130 | struct hid_input, list); |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 131 | struct input_dev *input_dev = hidinput->input; |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 132 | int error; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 133 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 135 | tmff = kzalloc(sizeof(struct tmff_device), GFP_KERNEL); |
| 136 | if (!tmff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | return -ENOMEM; |
| 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* Find the report to use */ |
Li Zefan | 3ba5619 | 2007-11-14 11:31:05 +0100 | [diff] [blame] | 140 | report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list; |
| 141 | list_for_each_entry(report, report_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | int fieldnum; |
| 143 | |
| 144 | for (fieldnum = 0; fieldnum < report->maxfield; ++fieldnum) { |
| 145 | struct hid_field *field = report->field[fieldnum]; |
| 146 | |
| 147 | if (field->maxusage <= 0) |
| 148 | continue; |
| 149 | |
| 150 | switch (field->usage[0].hid) { |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 151 | case THRUSTMASTER_USAGE_FF: |
| 152 | if (field->report_count < 2) { |
Jiri Slaby | 7957501 | 2008-09-18 12:23:34 +0200 | [diff] [blame] | 153 | dev_warn(&hid->dev, "ignoring FF field " |
| 154 | "with report_count < 2\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | continue; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 156 | } |
| 157 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 158 | if (field->logical_maximum == |
| 159 | field->logical_minimum) { |
Jiri Slaby | 7957501 | 2008-09-18 12:23:34 +0200 | [diff] [blame] | 160 | dev_warn(&hid->dev, "ignoring FF field " |
| 161 | "with logical_maximum " |
| 162 | "== logical_minimum\n"); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 163 | continue; |
| 164 | } |
| 165 | |
| 166 | if (tmff->report && tmff->report != report) { |
Jiri Slaby | 7957501 | 2008-09-18 12:23:34 +0200 | [diff] [blame] | 167 | dev_warn(&hid->dev, "ignoring FF field " |
| 168 | "in other report\n"); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 169 | continue; |
| 170 | } |
| 171 | |
| 172 | if (tmff->ff_field && tmff->ff_field != field) { |
Jiri Slaby | 7957501 | 2008-09-18 12:23:34 +0200 | [diff] [blame] | 173 | dev_warn(&hid->dev, "ignoring " |
| 174 | "duplicate FF field\n"); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 175 | continue; |
| 176 | } |
| 177 | |
| 178 | tmff->report = report; |
| 179 | tmff->ff_field = field; |
| 180 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 181 | for (i = 0; ff_bits[i] >= 0; i++) |
| 182 | set_bit(ff_bits[i], input_dev->ffbit); |
| 183 | |
| 184 | break; |
| 185 | |
| 186 | default: |
Jiri Slaby | 7957501 | 2008-09-18 12:23:34 +0200 | [diff] [blame] | 187 | dev_warn(&hid->dev, "ignoring unknown output " |
| 188 | "usage %08x\n", |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 189 | field->usage[0].hid); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 190 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | } |
| 194 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 195 | if (!tmff->report) { |
Jiri Slaby | 7957501 | 2008-09-18 12:23:34 +0200 | [diff] [blame] | 196 | dev_err(&hid->dev, "can't find FF field in output reports\n"); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 197 | error = -ENODEV; |
| 198 | goto fail; |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 201 | error = input_ff_create_memless(input_dev, tmff, tmff_play); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 202 | if (error) |
| 203 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Jiri Slaby | 7957501 | 2008-09-18 12:23:34 +0200 | [diff] [blame] | 205 | dev_info(&hid->dev, "force feedback for ThrustMaster devices by Zinx " |
| 206 | "Verituse <zinx@epicsol.org>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | return 0; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 208 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 209 | fail: |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 210 | kfree(tmff); |
| 211 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
Jiri Kosina | 0f6f431 | 2009-05-15 15:46:44 +0200 | [diff] [blame] | 213 | #else |
| 214 | static inline int tmff_init(struct hid_device *hid, const signed short *ff_bits) |
| 215 | { |
| 216 | return 0; |
| 217 | } |
| 218 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 220 | static int tm_probe(struct hid_device *hdev, const struct hid_device_id *id) |
| 221 | { |
| 222 | int ret; |
| 223 | |
| 224 | ret = hid_parse(hdev); |
| 225 | if (ret) { |
| 226 | dev_err(&hdev->dev, "parse failed\n"); |
| 227 | goto err; |
| 228 | } |
| 229 | |
| 230 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF); |
| 231 | if (ret) { |
| 232 | dev_err(&hdev->dev, "hw start failed\n"); |
| 233 | goto err; |
| 234 | } |
| 235 | |
| 236 | tmff_init(hdev, (void *)id->driver_data); |
| 237 | |
| 238 | return 0; |
| 239 | err: |
| 240 | return ret; |
| 241 | } |
| 242 | |
| 243 | static const struct hid_device_id tm_devices[] = { |
| 244 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb300), |
| 245 | .driver_data = (unsigned long)ff_rumble }, |
| 246 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb304), |
| 247 | .driver_data = (unsigned long)ff_rumble }, |
| 248 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb651), /* FGT Rumble Force Wheel */ |
| 249 | .driver_data = (unsigned long)ff_rumble }, |
| 250 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb654), /* FGT Force Feedback Wheel */ |
| 251 | .driver_data = (unsigned long)ff_joystick }, |
| 252 | { } |
| 253 | }; |
| 254 | MODULE_DEVICE_TABLE(hid, tm_devices); |
| 255 | |
| 256 | static struct hid_driver tm_driver = { |
| 257 | .name = "thrustmaster", |
| 258 | .id_table = tm_devices, |
| 259 | .probe = tm_probe, |
| 260 | }; |
| 261 | |
| 262 | static int tm_init(void) |
| 263 | { |
| 264 | return hid_register_driver(&tm_driver); |
| 265 | } |
| 266 | |
| 267 | static void tm_exit(void) |
| 268 | { |
| 269 | hid_unregister_driver(&tm_driver); |
| 270 | } |
| 271 | |
| 272 | module_init(tm_init); |
| 273 | module_exit(tm_exit); |
| 274 | MODULE_LICENSE("GPL"); |