]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/hid/hid-lg4ff.c
HID: hid-logitech: Rewrite of descriptor for all DF wheels
[mirror_ubuntu-artful-kernel.git] / drivers / hid / hid-lg4ff.c
CommitLineData
32c88cbc 1/*
64013800 2 * Force feedback support for Logitech Gaming Wheels
32c88cbc 3 *
64013800
SW
4 * Including G27, G25, DFP, DFGT, FFEX, Momo, Momo2 &
5 * Speed Force Wireless (WiiWheel)
32c88cbc
SW
6 *
7 * Copyright (c) 2010 Simon Wood <simon@mungewell.org>
8 */
9
10/*
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26
27#include <linux/input.h>
28#include <linux/usb.h>
29#include <linux/hid.h>
30
31#include "usbhid/usbhid.h"
32#include "hid-lg.h"
a54dc779 33#include "hid-lg4ff.h"
7362cd22 34#include "hid-ids.h"
32c88cbc 35
b96d23ec 36#define LG4FF_MMODE_IS_MULTIMODE 0
e7c23449
MM
37#define LG4FF_MMODE_SWITCHED 1
38#define LG4FF_MMODE_NOT_MULTIMODE 2
39
b96d23ec
MM
40#define LG4FF_MODE_NATIVE_IDX 0
41#define LG4FF_MODE_DFEX_IDX 1
42#define LG4FF_MODE_DFP_IDX 2
43#define LG4FF_MODE_G25_IDX 3
44#define LG4FF_MODE_DFGT_IDX 4
45#define LG4FF_MODE_G27_IDX 5
29fae1c8
SW
46#define LG4FF_MODE_G29_IDX 6
47#define LG4FF_MODE_MAX_IDX 7
b96d23ec
MM
48
49#define LG4FF_MODE_NATIVE BIT(LG4FF_MODE_NATIVE_IDX)
50#define LG4FF_MODE_DFEX BIT(LG4FF_MODE_DFEX_IDX)
51#define LG4FF_MODE_DFP BIT(LG4FF_MODE_DFP_IDX)
52#define LG4FF_MODE_G25 BIT(LG4FF_MODE_G25_IDX)
53#define LG4FF_MODE_DFGT BIT(LG4FF_MODE_DFGT_IDX)
54#define LG4FF_MODE_G27 BIT(LG4FF_MODE_G27_IDX)
29fae1c8 55#define LG4FF_MODE_G29 BIT(LG4FF_MODE_G29_IDX)
b96d23ec
MM
56
57#define LG4FF_DFEX_TAG "DF-EX"
58#define LG4FF_DFEX_NAME "Driving Force / Formula EX"
59#define LG4FF_DFP_TAG "DFP"
60#define LG4FF_DFP_NAME "Driving Force Pro"
61#define LG4FF_G25_TAG "G25"
62#define LG4FF_G25_NAME "G25 Racing Wheel"
63#define LG4FF_G27_TAG "G27"
64#define LG4FF_G27_NAME "G27 Racing Wheel"
29fae1c8
SW
65#define LG4FF_G29_TAG "G29"
66#define LG4FF_G29_NAME "G29 Racing Wheel"
b96d23ec
MM
67#define LG4FF_DFGT_TAG "DFGT"
68#define LG4FF_DFGT_NAME "Driving Force GT"
69
e7c23449
MM
70#define LG4FF_FFEX_REV_MAJ 0x21
71#define LG4FF_FFEX_REV_MIN 0x00
72
d0afd848
MM
73static void lg4ff_set_range_dfp(struct hid_device *hid, u16 range);
74static void lg4ff_set_range_g25(struct hid_device *hid, u16 range);
30bb75d7 75
72529c65 76struct lg4ff_wheel_data {
5d9d60ad 77 const u32 product_id;
961af46f 78 u16 combine;
2a552c30 79 u16 range;
5d9d60ad
MM
80 const u16 min_range;
81 const u16 max_range;
22bcefdc 82#ifdef CONFIG_LEDS_CLASS
2a552c30 83 u8 led_state;
22bcefdc
SW
84 struct led_classdev *led[5];
85#endif
5d9d60ad
MM
86 const u32 alternate_modes;
87 const char * const real_tag;
88 const char * const real_name;
89 const u16 real_product_id;
72529c65 90
30bb75d7
MM
91 void (*set_range)(struct hid_device *hid, u16 range);
92};
93
72529c65 94struct lg4ff_device_entry {
c918fe78 95 spinlock_t report_lock; /* Protect output HID report */
c28abd8c 96 struct hid_report *report;
72529c65
MM
97 struct lg4ff_wheel_data wdata;
98};
99
7362cd22 100static const signed short lg4ff_wheel_effects[] = {
32c88cbc
SW
101 FF_CONSTANT,
102 FF_AUTOCENTER,
103 -1
104};
105
7362cd22 106struct lg4ff_wheel {
2a552c30 107 const u32 product_id;
7362cd22 108 const signed short *ff_effects;
2a552c30
MM
109 const u16 min_range;
110 const u16 max_range;
30bb75d7 111 void (*set_range)(struct hid_device *hid, u16 range);
7362cd22
MM
112};
113
e7c23449 114struct lg4ff_compat_mode_switch {
2a552c30
MM
115 const u8 cmd_count; /* Number of commands to send */
116 const u8 cmd[];
e7c23449
MM
117};
118
119struct lg4ff_wheel_ident_info {
bbec1bd0 120 const u32 modes;
e7c23449
MM
121 const u16 mask;
122 const u16 result;
123 const u16 real_product_id;
124};
125
b96d23ec
MM
126struct lg4ff_multimode_wheel {
127 const u16 product_id;
128 const u32 alternate_modes;
129 const char *real_tag;
130 const char *real_name;
131};
132
133struct lg4ff_alternate_mode {
134 const u16 product_id;
135 const char *tag;
136 const char *name;
137};
138
7362cd22 139static const struct lg4ff_wheel lg4ff_devices[] = {
30bb75d7
MM
140 {USB_DEVICE_ID_LOGITECH_WHEEL, lg4ff_wheel_effects, 40, 270, NULL},
141 {USB_DEVICE_ID_LOGITECH_MOMO_WHEEL, lg4ff_wheel_effects, 40, 270, NULL},
d0afd848
MM
142 {USB_DEVICE_ID_LOGITECH_DFP_WHEEL, lg4ff_wheel_effects, 40, 900, lg4ff_set_range_dfp},
143 {USB_DEVICE_ID_LOGITECH_G25_WHEEL, lg4ff_wheel_effects, 40, 900, lg4ff_set_range_g25},
144 {USB_DEVICE_ID_LOGITECH_DFGT_WHEEL, lg4ff_wheel_effects, 40, 900, lg4ff_set_range_g25},
145 {USB_DEVICE_ID_LOGITECH_G27_WHEEL, lg4ff_wheel_effects, 40, 900, lg4ff_set_range_g25},
29fae1c8 146 {USB_DEVICE_ID_LOGITECH_G29_WHEEL, lg4ff_wheel_effects, 40, 900, lg4ff_set_range_g25},
30bb75d7
MM
147 {USB_DEVICE_ID_LOGITECH_MOMO_WHEEL2, lg4ff_wheel_effects, 40, 270, NULL},
148 {USB_DEVICE_ID_LOGITECH_WII_WHEEL, lg4ff_wheel_effects, 40, 270, NULL}
7362cd22
MM
149};
150
b96d23ec
MM
151static const struct lg4ff_multimode_wheel lg4ff_multimode_wheels[] = {
152 {USB_DEVICE_ID_LOGITECH_DFP_WHEEL,
153 LG4FF_MODE_NATIVE | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
154 LG4FF_DFP_TAG, LG4FF_DFP_NAME},
155 {USB_DEVICE_ID_LOGITECH_G25_WHEEL,
156 LG4FF_MODE_NATIVE | LG4FF_MODE_G25 | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
157 LG4FF_G25_TAG, LG4FF_G25_NAME},
158 {USB_DEVICE_ID_LOGITECH_DFGT_WHEEL,
159 LG4FF_MODE_NATIVE | LG4FF_MODE_DFGT | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
160 LG4FF_DFGT_TAG, LG4FF_DFGT_NAME},
161 {USB_DEVICE_ID_LOGITECH_G27_WHEEL,
162 LG4FF_MODE_NATIVE | LG4FF_MODE_G27 | LG4FF_MODE_G25 | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
163 LG4FF_G27_TAG, LG4FF_G27_NAME},
29fae1c8
SW
164 {USB_DEVICE_ID_LOGITECH_G29_WHEEL,
165 LG4FF_MODE_NATIVE | LG4FF_MODE_G29 | LG4FF_MODE_G27 | LG4FF_MODE_G25 | LG4FF_MODE_DFGT | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
166 LG4FF_G29_TAG, LG4FF_G29_NAME},
b96d23ec
MM
167};
168
169static const struct lg4ff_alternate_mode lg4ff_alternate_modes[] = {
170 [LG4FF_MODE_NATIVE_IDX] = {0, "native", ""},
171 [LG4FF_MODE_DFEX_IDX] = {USB_DEVICE_ID_LOGITECH_WHEEL, LG4FF_DFEX_TAG, LG4FF_DFEX_NAME},
172 [LG4FF_MODE_DFP_IDX] = {USB_DEVICE_ID_LOGITECH_DFP_WHEEL, LG4FF_DFP_TAG, LG4FF_DFP_NAME},
173 [LG4FF_MODE_G25_IDX] = {USB_DEVICE_ID_LOGITECH_G25_WHEEL, LG4FF_G25_TAG, LG4FF_G25_NAME},
174 [LG4FF_MODE_DFGT_IDX] = {USB_DEVICE_ID_LOGITECH_DFGT_WHEEL, LG4FF_DFGT_TAG, LG4FF_DFGT_NAME},
29fae1c8
SW
175 [LG4FF_MODE_G27_IDX] = {USB_DEVICE_ID_LOGITECH_G27_WHEEL, LG4FF_G27_TAG, LG4FF_G27_NAME},
176 [LG4FF_MODE_G29_IDX] = {USB_DEVICE_ID_LOGITECH_G29_WHEEL, LG4FF_G29_TAG, LG4FF_G29_NAME},
b96d23ec
MM
177};
178
e7c23449
MM
179/* Multimode wheel identificators */
180static const struct lg4ff_wheel_ident_info lg4ff_dfp_ident_info = {
bbec1bd0 181 LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
e7c23449
MM
182 0xf000,
183 0x1000,
184 USB_DEVICE_ID_LOGITECH_DFP_WHEEL
185};
186
187static const struct lg4ff_wheel_ident_info lg4ff_g25_ident_info = {
bbec1bd0 188 LG4FF_MODE_G25 | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
e7c23449
MM
189 0xff00,
190 0x1200,
191 USB_DEVICE_ID_LOGITECH_G25_WHEEL
192};
193
194static const struct lg4ff_wheel_ident_info lg4ff_g27_ident_info = {
bbec1bd0 195 LG4FF_MODE_G27 | LG4FF_MODE_G25 | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
e7c23449
MM
196 0xfff0,
197 0x1230,
198 USB_DEVICE_ID_LOGITECH_G27_WHEEL
96440c8a
MM
199};
200
e7c23449 201static const struct lg4ff_wheel_ident_info lg4ff_dfgt_ident_info = {
bbec1bd0 202 LG4FF_MODE_DFGT | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
e7c23449
MM
203 0xff00,
204 0x1300,
205 USB_DEVICE_ID_LOGITECH_DFGT_WHEEL
96440c8a
MM
206};
207
29fae1c8
SW
208static const struct lg4ff_wheel_ident_info lg4ff_g29_ident_info = {
209 LG4FF_MODE_G29 | LG4FF_MODE_G27 | LG4FF_MODE_G25 | LG4FF_MODE_DFGT | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
210 0xfff8,
211 0x1350,
212 USB_DEVICE_ID_LOGITECH_G29_WHEEL
213};
214
215static const struct lg4ff_wheel_ident_info lg4ff_g29_ident_info2 = {
216 LG4FF_MODE_G29 | LG4FF_MODE_G27 | LG4FF_MODE_G25 | LG4FF_MODE_DFGT | LG4FF_MODE_DFP | LG4FF_MODE_DFEX,
217 0xff00,
218 0x8900,
219 USB_DEVICE_ID_LOGITECH_G29_WHEEL
220};
221
e7c23449 222/* Multimode wheel identification checklists */
bbec1bd0 223static const struct lg4ff_wheel_ident_info *lg4ff_main_checklist[] = {
29fae1c8
SW
224 &lg4ff_g29_ident_info,
225 &lg4ff_g29_ident_info2,
bbec1bd0
SW
226 &lg4ff_dfgt_ident_info,
227 &lg4ff_g27_ident_info,
228 &lg4ff_g25_ident_info,
229 &lg4ff_dfp_ident_info
e7c23449
MM
230};
231
232/* Compatibility mode switching commands */
f31a2de3
MM
233/* EXT_CMD9 - Understood by G27 and DFGT */
234static const struct lg4ff_compat_mode_switch lg4ff_mode_switch_ext09_dfex = {
235 2,
236 {0xf8, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, /* Revert mode upon USB reset */
237 0xf8, 0x09, 0x00, 0x01, 0x00, 0x00, 0x00} /* Switch mode to DF-EX with detach */
96440c8a
MM
238};
239
f31a2de3 240static const struct lg4ff_compat_mode_switch lg4ff_mode_switch_ext09_dfp = {
96440c8a 241 2,
f31a2de3
MM
242 {0xf8, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, /* Revert mode upon USB reset */
243 0xf8, 0x09, 0x01, 0x01, 0x00, 0x00, 0x00} /* Switch mode to DFP with detach */
96440c8a
MM
244};
245
f31a2de3
MM
246static const struct lg4ff_compat_mode_switch lg4ff_mode_switch_ext09_g25 = {
247 2,
248 {0xf8, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, /* Revert mode upon USB reset */
249 0xf8, 0x09, 0x02, 0x01, 0x00, 0x00, 0x00} /* Switch mode to G25 with detach */
96440c8a
MM
250};
251
f31a2de3 252static const struct lg4ff_compat_mode_switch lg4ff_mode_switch_ext09_dfgt = {
96440c8a 253 2,
f31a2de3
MM
254 {0xf8, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, /* Revert mode upon USB reset */
255 0xf8, 0x09, 0x03, 0x01, 0x00, 0x00, 0x00} /* Switch mode to DFGT with detach */
256};
257
258static const struct lg4ff_compat_mode_switch lg4ff_mode_switch_ext09_g27 = {
259 2,
260 {0xf8, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, /* Revert mode upon USB reset */
261 0xf8, 0x09, 0x04, 0x01, 0x00, 0x00, 0x00} /* Switch mode to G27 with detach */
262};
263
29fae1c8
SW
264static const struct lg4ff_compat_mode_switch lg4ff_mode_switch_ext09_g29 = {
265 2,
266 {0xf8, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, /* Revert mode upon USB reset */
267 0xf8, 0x09, 0x05, 0x01, 0x01, 0x00, 0x00} /* Switch mode to G29 with detach */
268};
269
f31a2de3
MM
270/* EXT_CMD1 - Understood by DFP, G25, G27 and DFGT */
271static const struct lg4ff_compat_mode_switch lg4ff_mode_switch_ext01_dfp = {
272 1,
273 {0xf8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00}
274};
275
276/* EXT_CMD16 - Understood by G25 and G27 */
277static const struct lg4ff_compat_mode_switch lg4ff_mode_switch_ext16_g25 = {
278 1,
279 {0xf8, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00}
96440c8a
MM
280};
281
2b24a960 282/* Recalculates X axis value accordingly to currently selected range */
2a552c30 283static s32 lg4ff_adjust_dfp_x_axis(s32 value, u16 range)
2b24a960 284{
2a552c30
MM
285 u16 max_range;
286 s32 new_value;
2b24a960
MM
287
288 if (range == 900)
289 return value;
290 else if (range == 200)
291 return value;
292 else if (range < 200)
293 max_range = 200;
294 else
295 max_range = 900;
296
297 new_value = 8192 + mult_frac(value - 8192, max_range, range);
298 if (new_value < 0)
299 return 0;
300 else if (new_value > 16383)
301 return 16383;
302 else
303 return new_value;
304}
305
306int lg4ff_adjust_input_event(struct hid_device *hid, struct hid_field *field,
2a552c30 307 struct hid_usage *usage, s32 value, struct lg_drv_data *drv_data)
2b24a960
MM
308{
309 struct lg4ff_device_entry *entry = drv_data->device_props;
2a552c30 310 s32 new_value = 0;
2b24a960
MM
311
312 if (!entry) {
313 hid_err(hid, "Device properties not found");
314 return 0;
315 }
316
72529c65 317 switch (entry->wdata.product_id) {
2b24a960
MM
318 case USB_DEVICE_ID_LOGITECH_DFP_WHEEL:
319 switch (usage->code) {
320 case ABS_X:
72529c65 321 new_value = lg4ff_adjust_dfp_x_axis(value, entry->wdata.range);
2b24a960
MM
322 input_event(field->hidinput->input, usage->type, usage->code, new_value);
323 return 1;
324 default:
325 return 0;
326 }
327 default:
328 return 0;
329 }
330}
331
c832f86e
SW
332int lg4ff_raw_event(struct hid_device *hdev, struct hid_report *report,
333 u8 *rd, int size, struct lg_drv_data *drv_data)
334{
b456634b 335 int offset;
c832f86e
SW
336 struct lg4ff_device_entry *entry = drv_data->device_props;
337
338 if (!entry)
339 return 0;
340
341 /* adjust HID report present combined pedals data */
342 if (entry->wdata.combine) {
343 switch (entry->wdata.product_id) {
344 case USB_DEVICE_ID_LOGITECH_WHEEL:
345 rd[5] = rd[3];
346 rd[6] = 0x7F;
347 return 1;
348 case USB_DEVICE_ID_LOGITECH_MOMO_WHEEL:
349 case USB_DEVICE_ID_LOGITECH_MOMO_WHEEL2:
350 rd[4] = rd[3];
351 rd[5] = 0x7F;
352 return 1;
353 case USB_DEVICE_ID_LOGITECH_DFP_WHEEL:
354 rd[5] = rd[4];
355 rd[6] = 0x7F;
356 return 1;
b456634b
SW
357 case USB_DEVICE_ID_LOGITECH_G25_WHEEL:
358 case USB_DEVICE_ID_LOGITECH_G27_WHEEL:
359 offset = 5;
360 break;
361 case USB_DEVICE_ID_LOGITECH_DFGT_WHEEL:
362 case USB_DEVICE_ID_LOGITECH_G29_WHEEL:
363 offset = 6;
364 break;
365 case USB_DEVICE_ID_LOGITECH_WII_WHEEL:
366 offset = 3;
367 break;
c832f86e
SW
368 default:
369 return 0;
370 }
b456634b
SW
371
372 /* Compute a combined axis when wheel does not supply it */
373 rd[offset] = (0xFF + rd[offset] - rd[offset+1]) >> 1;
374 rd[offset+1] = 0x7F;
375 return 1;
c832f86e
SW
376 }
377
378 return 0;
379}
380
5d9d60ad
MM
381static void lg4ff_init_wheel_data(struct lg4ff_wheel_data * const wdata, const struct lg4ff_wheel *wheel,
382 const struct lg4ff_multimode_wheel *mmode_wheel,
383 const u16 real_product_id)
384{
385 u32 alternate_modes = 0;
386 const char *real_tag = NULL;
387 const char *real_name = NULL;
388
389 if (mmode_wheel) {
390 alternate_modes = mmode_wheel->alternate_modes;
391 real_tag = mmode_wheel->real_tag;
392 real_name = mmode_wheel->real_name;
393 }
394
395 {
396 struct lg4ff_wheel_data t_wdata = { .product_id = wheel->product_id,
397 .real_product_id = real_product_id,
961af46f 398 .combine = 0,
5d9d60ad
MM
399 .min_range = wheel->min_range,
400 .max_range = wheel->max_range,
401 .set_range = wheel->set_range,
402 .alternate_modes = alternate_modes,
403 .real_tag = real_tag,
404 .real_name = real_name };
405
406 memcpy(wdata, &t_wdata, sizeof(t_wdata));
407 }
408}
409
d0afd848 410static int lg4ff_play(struct input_dev *dev, void *data, struct ff_effect *effect)
32c88cbc
SW
411{
412 struct hid_device *hid = input_get_drvdata(dev);
c918fe78
MM
413 struct lg4ff_device_entry *entry;
414 struct lg_drv_data *drv_data;
415 unsigned long flags;
c28abd8c 416 s32 *value;
32c88cbc
SW
417 int x;
418
c918fe78
MM
419 drv_data = hid_get_drvdata(hid);
420 if (!drv_data) {
421 hid_err(hid, "Private driver data not found!\n");
422 return -EINVAL;
423 }
424
425 entry = drv_data->device_props;
426 if (!entry) {
427 hid_err(hid, "Device properties not found!\n");
428 return -EINVAL;
429 }
c28abd8c 430 value = entry->report->field[0]->value;
c918fe78 431
a80fe5d6 432#define CLAMP(x) do { if (x < 0) x = 0; else if (x > 0xff) x = 0xff; } while (0)
32c88cbc
SW
433
434 switch (effect->type) {
435 case FF_CONSTANT:
436 x = effect->u.ramp.start_level + 0x80; /* 0x80 is no force */
437 CLAMP(x);
56930e7a 438
c918fe78 439 spin_lock_irqsave(&entry->report_lock, flags);
56930e7a
SW
440 if (x == 0x80) {
441 /* De-activate force in slot-1*/
442 value[0] = 0x13;
443 value[1] = 0x00;
444 value[2] = 0x00;
445 value[3] = 0x00;
446 value[4] = 0x00;
447 value[5] = 0x00;
448 value[6] = 0x00;
449
c28abd8c 450 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
c918fe78 451 spin_unlock_irqrestore(&entry->report_lock, flags);
56930e7a
SW
452 return 0;
453 }
454
74479ba8
MM
455 value[0] = 0x11; /* Slot 1 */
456 value[1] = 0x08;
457 value[2] = x;
458 value[3] = 0x80;
459 value[4] = 0x00;
460 value[5] = 0x00;
461 value[6] = 0x00;
32c88cbc 462
c28abd8c 463 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
c918fe78 464 spin_unlock_irqrestore(&entry->report_lock, flags);
32c88cbc
SW
465 break;
466 }
467 return 0;
468}
469
6e2de8e0
MM
470/* Sends default autocentering command compatible with
471 * all wheels except Formula Force EX */
d0afd848 472static void lg4ff_set_autocenter_default(struct input_dev *dev, u16 magnitude)
32c88cbc
SW
473{
474 struct hid_device *hid = input_get_drvdata(dev);
475 struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
476 struct hid_report *report = list_entry(report_list->next, struct hid_report, list);
2a552c30
MM
477 s32 *value = report->field[0]->value;
478 u32 expand_a, expand_b;
1859762e
SW
479 struct lg4ff_device_entry *entry;
480 struct lg_drv_data *drv_data;
c918fe78 481 unsigned long flags;
1859762e
SW
482
483 drv_data = hid_get_drvdata(hid);
484 if (!drv_data) {
485 hid_err(hid, "Private driver data not found!\n");
486 return;
487 }
488
489 entry = drv_data->device_props;
490 if (!entry) {
491 hid_err(hid, "Device properties not found!\n");
492 return;
493 }
c28abd8c 494 value = entry->report->field[0]->value;
f8c23156 495
d2c02da5 496 /* De-activate Auto-Center */
c918fe78 497 spin_lock_irqsave(&entry->report_lock, flags);
d2c02da5
SW
498 if (magnitude == 0) {
499 value[0] = 0xf5;
500 value[1] = 0x00;
501 value[2] = 0x00;
502 value[3] = 0x00;
503 value[4] = 0x00;
504 value[5] = 0x00;
505 value[6] = 0x00;
506
c28abd8c 507 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
c918fe78 508 spin_unlock_irqrestore(&entry->report_lock, flags);
d2c02da5
SW
509 return;
510 }
511
f8c23156
SW
512 if (magnitude <= 0xaaaa) {
513 expand_a = 0x0c * magnitude;
514 expand_b = 0x80 * magnitude;
515 } else {
516 expand_a = (0x0c * 0xaaaa) + 0x06 * (magnitude - 0xaaaa);
517 expand_b = (0x80 * 0xaaaa) + 0xff * (magnitude - 0xaaaa);
518 }
32c88cbc 519
1859762e 520 /* Adjust for non-MOMO wheels */
72529c65 521 switch (entry->wdata.product_id) {
1859762e
SW
522 case USB_DEVICE_ID_LOGITECH_MOMO_WHEEL:
523 case USB_DEVICE_ID_LOGITECH_MOMO_WHEEL2:
524 break;
525 default:
526 expand_a = expand_a >> 1;
527 break;
528 }
529
74479ba8
MM
530 value[0] = 0xfe;
531 value[1] = 0x0d;
f8c23156
SW
532 value[2] = expand_a / 0xaaaa;
533 value[3] = expand_a / 0xaaaa;
534 value[4] = expand_b / 0xaaaa;
74479ba8
MM
535 value[5] = 0x00;
536 value[6] = 0x00;
32c88cbc 537
c28abd8c 538 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
d2c02da5
SW
539
540 /* Activate Auto-Center */
541 value[0] = 0x14;
542 value[1] = 0x00;
543 value[2] = 0x00;
544 value[3] = 0x00;
545 value[4] = 0x00;
546 value[5] = 0x00;
547 value[6] = 0x00;
548
c28abd8c 549 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
c918fe78 550 spin_unlock_irqrestore(&entry->report_lock, flags);
32c88cbc
SW
551}
552
6e2de8e0 553/* Sends autocentering command compatible with Formula Force EX */
d0afd848 554static void lg4ff_set_autocenter_ffex(struct input_dev *dev, u16 magnitude)
6e2de8e0
MM
555{
556 struct hid_device *hid = input_get_drvdata(dev);
c918fe78
MM
557 struct lg4ff_device_entry *entry;
558 struct lg_drv_data *drv_data;
559 unsigned long flags;
c28abd8c 560 s32 *value;
6e2de8e0 561 magnitude = magnitude * 90 / 65535;
6e2de8e0 562
c918fe78
MM
563 drv_data = hid_get_drvdata(hid);
564 if (!drv_data) {
565 hid_err(hid, "Private driver data not found!\n");
566 return;
567 }
568
569 entry = drv_data->device_props;
570 if (!entry) {
571 hid_err(hid, "Device properties not found!\n");
572 return;
573 }
c28abd8c 574 value = entry->report->field[0]->value;
c918fe78
MM
575
576 spin_lock_irqsave(&entry->report_lock, flags);
74479ba8
MM
577 value[0] = 0xfe;
578 value[1] = 0x03;
579 value[2] = magnitude >> 14;
580 value[3] = magnitude >> 14;
581 value[4] = magnitude;
582 value[5] = 0x00;
583 value[6] = 0x00;
6e2de8e0 584
c28abd8c 585 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
c918fe78 586 spin_unlock_irqrestore(&entry->report_lock, flags);
6e2de8e0
MM
587}
588
30bb75d7 589/* Sends command to set range compatible with G25/G27/Driving Force GT */
d0afd848 590static void lg4ff_set_range_g25(struct hid_device *hid, u16 range)
30bb75d7 591{
c918fe78
MM
592 struct lg4ff_device_entry *entry;
593 struct lg_drv_data *drv_data;
594 unsigned long flags;
c28abd8c 595 s32 *value;
74479ba8 596
c918fe78
MM
597 drv_data = hid_get_drvdata(hid);
598 if (!drv_data) {
599 hid_err(hid, "Private driver data not found!\n");
600 return;
601 }
602
603 entry = drv_data->device_props;
604 if (!entry) {
605 hid_err(hid, "Device properties not found!\n");
606 return;
607 }
c28abd8c 608 value = entry->report->field[0]->value;
30bb75d7
MM
609 dbg_hid("G25/G27/DFGT: setting range to %u\n", range);
610
c918fe78 611 spin_lock_irqsave(&entry->report_lock, flags);
74479ba8
MM
612 value[0] = 0xf8;
613 value[1] = 0x81;
614 value[2] = range & 0x00ff;
615 value[3] = (range & 0xff00) >> 8;
616 value[4] = 0x00;
617 value[5] = 0x00;
618 value[6] = 0x00;
30bb75d7 619
c28abd8c 620 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
c918fe78 621 spin_unlock_irqrestore(&entry->report_lock, flags);
30bb75d7
MM
622}
623
624/* Sends commands to set range compatible with Driving Force Pro wheel */
d0afd848 625static void lg4ff_set_range_dfp(struct hid_device *hid, u16 range)
30bb75d7 626{
c918fe78
MM
627 struct lg4ff_device_entry *entry;
628 struct lg_drv_data *drv_data;
629 unsigned long flags;
c28abd8c
MM
630 int start_left, start_right, full_range;
631 s32 *value;
74479ba8 632
c918fe78
MM
633 drv_data = hid_get_drvdata(hid);
634 if (!drv_data) {
635 hid_err(hid, "Private driver data not found!\n");
636 return;
637 }
638
639 entry = drv_data->device_props;
640 if (!entry) {
641 hid_err(hid, "Device properties not found!\n");
642 return;
643 }
c28abd8c 644 value = entry->report->field[0]->value;
30bb75d7
MM
645 dbg_hid("Driving Force Pro: setting range to %u\n", range);
646
647 /* Prepare "coarse" limit command */
c918fe78 648 spin_lock_irqsave(&entry->report_lock, flags);
74479ba8 649 value[0] = 0xf8;
a80fe5d6 650 value[1] = 0x00; /* Set later */
74479ba8
MM
651 value[2] = 0x00;
652 value[3] = 0x00;
653 value[4] = 0x00;
654 value[5] = 0x00;
655 value[6] = 0x00;
30bb75d7
MM
656
657 if (range > 200) {
c28abd8c 658 value[1] = 0x03;
30bb75d7
MM
659 full_range = 900;
660 } else {
c28abd8c 661 value[1] = 0x02;
30bb75d7
MM
662 full_range = 200;
663 }
c28abd8c 664 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
30bb75d7
MM
665
666 /* Prepare "fine" limit command */
74479ba8
MM
667 value[0] = 0x81;
668 value[1] = 0x0b;
669 value[2] = 0x00;
670 value[3] = 0x00;
671 value[4] = 0x00;
672 value[5] = 0x00;
673 value[6] = 0x00;
30bb75d7
MM
674
675 if (range == 200 || range == 900) { /* Do not apply any fine limit */
c28abd8c 676 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
c918fe78 677 spin_unlock_irqrestore(&entry->report_lock, flags);
30bb75d7
MM
678 return;
679 }
680
681 /* Construct fine limit command */
682 start_left = (((full_range - range + 1) * 2047) / full_range);
683 start_right = 0xfff - start_left;
684
74479ba8
MM
685 value[2] = start_left >> 4;
686 value[3] = start_right >> 4;
687 value[4] = 0xff;
688 value[5] = (start_right & 0xe) << 4 | (start_left & 0xe);
689 value[6] = 0xff;
30bb75d7 690
c28abd8c 691 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
c918fe78 692 spin_unlock_irqrestore(&entry->report_lock, flags);
30bb75d7
MM
693}
694
f31a2de3
MM
695static const struct lg4ff_compat_mode_switch *lg4ff_get_mode_switch_command(const u16 real_product_id, const u16 target_product_id)
696{
697 switch (real_product_id) {
698 case USB_DEVICE_ID_LOGITECH_DFP_WHEEL:
699 switch (target_product_id) {
700 case USB_DEVICE_ID_LOGITECH_DFP_WHEEL:
701 return &lg4ff_mode_switch_ext01_dfp;
702 /* DFP can only be switched to its native mode */
703 default:
704 return NULL;
705 }
706 break;
707 case USB_DEVICE_ID_LOGITECH_G25_WHEEL:
708 switch (target_product_id) {
709 case USB_DEVICE_ID_LOGITECH_DFP_WHEEL:
710 return &lg4ff_mode_switch_ext01_dfp;
711 case USB_DEVICE_ID_LOGITECH_G25_WHEEL:
712 return &lg4ff_mode_switch_ext16_g25;
713 /* G25 can only be switched to DFP mode or its native mode */
714 default:
715 return NULL;
716 }
717 break;
718 case USB_DEVICE_ID_LOGITECH_G27_WHEEL:
719 switch (target_product_id) {
720 case USB_DEVICE_ID_LOGITECH_WHEEL:
721 return &lg4ff_mode_switch_ext09_dfex;
722 case USB_DEVICE_ID_LOGITECH_DFP_WHEEL:
723 return &lg4ff_mode_switch_ext09_dfp;
724 case USB_DEVICE_ID_LOGITECH_G25_WHEEL:
725 return &lg4ff_mode_switch_ext09_g25;
726 case USB_DEVICE_ID_LOGITECH_G27_WHEEL:
727 return &lg4ff_mode_switch_ext09_g27;
728 /* G27 can only be switched to DF-EX, DFP, G25 or its native mode */
729 default:
730 return NULL;
731 }
732 break;
29fae1c8
SW
733 case USB_DEVICE_ID_LOGITECH_G29_WHEEL:
734 switch (target_product_id) {
735 case USB_DEVICE_ID_LOGITECH_DFP_WHEEL:
736 return &lg4ff_mode_switch_ext09_dfp;
737 case USB_DEVICE_ID_LOGITECH_DFGT_WHEEL:
738 return &lg4ff_mode_switch_ext09_dfgt;
739 case USB_DEVICE_ID_LOGITECH_G25_WHEEL:
740 return &lg4ff_mode_switch_ext09_g25;
741 case USB_DEVICE_ID_LOGITECH_G27_WHEEL:
742 return &lg4ff_mode_switch_ext09_g27;
743 case USB_DEVICE_ID_LOGITECH_G29_WHEEL:
744 return &lg4ff_mode_switch_ext09_g29;
745 /* G29 can only be switched to DF-EX, DFP, DFGT, G25, G27 or its native mode */
746 default:
747 return NULL;
748 }
749 break;
f31a2de3
MM
750 case USB_DEVICE_ID_LOGITECH_DFGT_WHEEL:
751 switch (target_product_id) {
752 case USB_DEVICE_ID_LOGITECH_WHEEL:
753 return &lg4ff_mode_switch_ext09_dfex;
754 case USB_DEVICE_ID_LOGITECH_DFP_WHEEL:
755 return &lg4ff_mode_switch_ext09_dfp;
756 case USB_DEVICE_ID_LOGITECH_DFGT_WHEEL:
757 return &lg4ff_mode_switch_ext09_dfgt;
758 /* DFGT can only be switched to DF-EX, DFP or its native mode */
759 default:
760 return NULL;
761 }
762 break;
763 /* No other wheels have multiple modes */
764 default:
765 return NULL;
766 }
767}
768
e7c23449 769static int lg4ff_switch_compatibility_mode(struct hid_device *hid, const struct lg4ff_compat_mode_switch *s)
96440c8a 770{
c918fe78
MM
771 struct lg4ff_device_entry *entry;
772 struct lg_drv_data *drv_data;
773 unsigned long flags;
c28abd8c 774 s32 *value;
e7c23449 775 u8 i;
96440c8a 776
c918fe78
MM
777 drv_data = hid_get_drvdata(hid);
778 if (!drv_data) {
779 hid_err(hid, "Private driver data not found!\n");
780 return -EINVAL;
781 }
782
783 entry = drv_data->device_props;
784 if (!entry) {
785 hid_err(hid, "Device properties not found!\n");
786 return -EINVAL;
787 }
c28abd8c 788 value = entry->report->field[0]->value;
c918fe78
MM
789
790 spin_lock_irqsave(&entry->report_lock, flags);
e7c23449 791 for (i = 0; i < s->cmd_count; i++) {
c1740d13 792 u8 j;
96440c8a 793
c1740d13
MM
794 for (j = 0; j < 7; j++)
795 value[j] = s->cmd[j + (7*i)];
796
c28abd8c 797 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
96440c8a 798 }
c918fe78 799 spin_unlock_irqrestore(&entry->report_lock, flags);
c1740d13 800 hid_hw_wait(hid);
e7c23449 801 return 0;
96440c8a 802}
32c88cbc 803
b96d23ec
MM
804static ssize_t lg4ff_alternate_modes_show(struct device *dev, struct device_attribute *attr, char *buf)
805{
806 struct hid_device *hid = to_hid_device(dev);
807 struct lg4ff_device_entry *entry;
808 struct lg_drv_data *drv_data;
809 ssize_t count = 0;
810 int i;
811
812 drv_data = hid_get_drvdata(hid);
813 if (!drv_data) {
814 hid_err(hid, "Private driver data not found!\n");
815 return 0;
816 }
817
818 entry = drv_data->device_props;
819 if (!entry) {
820 hid_err(hid, "Device properties not found!\n");
821 return 0;
822 }
823
72529c65 824 if (!entry->wdata.real_name) {
b96d23ec
MM
825 hid_err(hid, "NULL pointer to string\n");
826 return 0;
827 }
828
829 for (i = 0; i < LG4FF_MODE_MAX_IDX; i++) {
72529c65 830 if (entry->wdata.alternate_modes & BIT(i)) {
b96d23ec
MM
831 /* Print tag and full name */
832 count += scnprintf(buf + count, PAGE_SIZE - count, "%s: %s",
833 lg4ff_alternate_modes[i].tag,
72529c65 834 !lg4ff_alternate_modes[i].product_id ? entry->wdata.real_name : lg4ff_alternate_modes[i].name);
b96d23ec
MM
835 if (count >= PAGE_SIZE - 1)
836 return count;
837
838 /* Mark the currently active mode with an asterisk */
72529c65
MM
839 if (lg4ff_alternate_modes[i].product_id == entry->wdata.product_id ||
840 (lg4ff_alternate_modes[i].product_id == 0 && entry->wdata.product_id == entry->wdata.real_product_id))
b96d23ec
MM
841 count += scnprintf(buf + count, PAGE_SIZE - count, " *\n");
842 else
843 count += scnprintf(buf + count, PAGE_SIZE - count, "\n");
844
845 if (count >= PAGE_SIZE - 1)
846 return count;
847 }
848 }
849
850 return count;
851}
852
853static ssize_t lg4ff_alternate_modes_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
854{
f31a2de3
MM
855 struct hid_device *hid = to_hid_device(dev);
856 struct lg4ff_device_entry *entry;
857 struct lg_drv_data *drv_data;
858 const struct lg4ff_compat_mode_switch *s;
859 u16 target_product_id = 0;
860 int i, ret;
861 char *lbuf;
862
863 drv_data = hid_get_drvdata(hid);
864 if (!drv_data) {
865 hid_err(hid, "Private driver data not found!\n");
866 return -EINVAL;
867 }
868
869 entry = drv_data->device_props;
870 if (!entry) {
871 hid_err(hid, "Device properties not found!\n");
872 return -EINVAL;
873 }
874
875 /* Allow \n at the end of the input parameter */
876 lbuf = kasprintf(GFP_KERNEL, "%s", buf);
877 if (!lbuf)
878 return -ENOMEM;
879
880 i = strlen(lbuf);
881 if (lbuf[i-1] == '\n') {
882 if (i == 1) {
883 kfree(lbuf);
884 return -EINVAL;
885 }
886 lbuf[i-1] = '\0';
887 }
888
889 for (i = 0; i < LG4FF_MODE_MAX_IDX; i++) {
890 const u16 mode_product_id = lg4ff_alternate_modes[i].product_id;
891 const char *tag = lg4ff_alternate_modes[i].tag;
892
72529c65 893 if (entry->wdata.alternate_modes & BIT(i)) {
f31a2de3
MM
894 if (!strcmp(tag, lbuf)) {
895 if (!mode_product_id)
72529c65 896 target_product_id = entry->wdata.real_product_id;
f31a2de3
MM
897 else
898 target_product_id = mode_product_id;
899 break;
900 }
901 }
902 }
903
904 if (i == LG4FF_MODE_MAX_IDX) {
905 hid_info(hid, "Requested mode \"%s\" is not supported by the device\n", lbuf);
906 kfree(lbuf);
907 return -EINVAL;
908 }
909 kfree(lbuf); /* Not needed anymore */
910
72529c65 911 if (target_product_id == entry->wdata.product_id) /* Nothing to do */
f31a2de3
MM
912 return count;
913
914 /* Automatic switching has to be disabled for the switch to DF-EX mode to work correctly */
915 if (target_product_id == USB_DEVICE_ID_LOGITECH_WHEEL && !lg4ff_no_autoswitch) {
916 hid_info(hid, "\"%s\" cannot be switched to \"DF-EX\" mode. Load the \"hid_logitech\" module with \"lg4ff_no_autoswitch=1\" parameter set and try again\n",
72529c65 917 entry->wdata.real_name);
f31a2de3
MM
918 return -EINVAL;
919 }
920
921 /* Take care of hardware limitations */
72529c65
MM
922 if ((entry->wdata.real_product_id == USB_DEVICE_ID_LOGITECH_DFP_WHEEL || entry->wdata.real_product_id == USB_DEVICE_ID_LOGITECH_G25_WHEEL) &&
923 entry->wdata.product_id > target_product_id) {
924 hid_info(hid, "\"%s\" cannot be switched back into \"%s\" mode\n", entry->wdata.real_name, lg4ff_alternate_modes[i].name);
f31a2de3
MM
925 return -EINVAL;
926 }
927
72529c65 928 s = lg4ff_get_mode_switch_command(entry->wdata.real_product_id, target_product_id);
f31a2de3
MM
929 if (!s) {
930 hid_err(hid, "Invalid target product ID %X\n", target_product_id);
931 return -EINVAL;
932 }
933
934 ret = lg4ff_switch_compatibility_mode(hid, s);
935 return (ret == 0 ? count : ret);
b96d23ec
MM
936}
937static DEVICE_ATTR(alternate_modes, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH, lg4ff_alternate_modes_show, lg4ff_alternate_modes_store);
938
961af46f
SW
939static ssize_t lg4ff_combine_show(struct device *dev, struct device_attribute *attr,
940 char *buf)
941{
942 struct hid_device *hid = to_hid_device(dev);
943 struct lg4ff_device_entry *entry;
944 struct lg_drv_data *drv_data;
945 size_t count;
946
947 drv_data = hid_get_drvdata(hid);
948 if (!drv_data) {
949 hid_err(hid, "Private driver data not found!\n");
950 return 0;
951 }
952
953 entry = drv_data->device_props;
954 if (!entry) {
955 hid_err(hid, "Device properties not found!\n");
956 return 0;
957 }
958
959 count = scnprintf(buf, PAGE_SIZE, "%u\n", entry->wdata.combine);
960 return count;
961}
962
963static ssize_t lg4ff_combine_store(struct device *dev, struct device_attribute *attr,
964 const char *buf, size_t count)
965{
966 struct hid_device *hid = to_hid_device(dev);
967 struct lg4ff_device_entry *entry;
968 struct lg_drv_data *drv_data;
969 u16 combine = simple_strtoul(buf, NULL, 10);
970
971 drv_data = hid_get_drvdata(hid);
972 if (!drv_data) {
973 hid_err(hid, "Private driver data not found!\n");
974 return -EINVAL;
975 }
976
977 entry = drv_data->device_props;
978 if (!entry) {
979 hid_err(hid, "Device properties not found!\n");
980 return -EINVAL;
981 }
982
983 if (combine > 1)
984 combine = 1;
985
986 entry->wdata.combine = combine;
987 return count;
988}
989static DEVICE_ATTR(combine_pedals, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH, lg4ff_combine_show, lg4ff_combine_store);
990
fbf85e2a
MM
991/* Export the currently set range of the wheel */
992static ssize_t lg4ff_range_show(struct device *dev, struct device_attribute *attr,
993 char *buf)
30bb75d7 994{
30bb75d7 995 struct hid_device *hid = to_hid_device(dev);
3b6b17b7
MM
996 struct lg4ff_device_entry *entry;
997 struct lg_drv_data *drv_data;
30bb75d7
MM
998 size_t count;
999
3b6b17b7
MM
1000 drv_data = hid_get_drvdata(hid);
1001 if (!drv_data) {
1002 hid_err(hid, "Private driver data not found!\n");
1003 return 0;
30bb75d7 1004 }
3b6b17b7
MM
1005
1006 entry = drv_data->device_props;
1007 if (!entry) {
1008 hid_err(hid, "Device properties not found!\n");
30bb75d7
MM
1009 return 0;
1010 }
1011
72529c65 1012 count = scnprintf(buf, PAGE_SIZE, "%u\n", entry->wdata.range);
30bb75d7
MM
1013 return count;
1014}
1015
1016/* Set range to user specified value, call appropriate function
1017 * according to the type of the wheel */
fbf85e2a
MM
1018static ssize_t lg4ff_range_store(struct device *dev, struct device_attribute *attr,
1019 const char *buf, size_t count)
30bb75d7 1020{
30bb75d7 1021 struct hid_device *hid = to_hid_device(dev);
3b6b17b7
MM
1022 struct lg4ff_device_entry *entry;
1023 struct lg_drv_data *drv_data;
2a552c30 1024 u16 range = simple_strtoul(buf, NULL, 10);
30bb75d7 1025
3b6b17b7
MM
1026 drv_data = hid_get_drvdata(hid);
1027 if (!drv_data) {
1028 hid_err(hid, "Private driver data not found!\n");
29ff6657 1029 return -EINVAL;
30bb75d7 1030 }
3b6b17b7
MM
1031
1032 entry = drv_data->device_props;
1033 if (!entry) {
1034 hid_err(hid, "Device properties not found!\n");
29ff6657 1035 return -EINVAL;
30bb75d7
MM
1036 }
1037
1038 if (range == 0)
72529c65 1039 range = entry->wdata.max_range;
30bb75d7
MM
1040
1041 /* Check if the wheel supports range setting
1042 * and that the range is within limits for the wheel */
72529c65
MM
1043 if (entry->wdata.set_range && range >= entry->wdata.min_range && range <= entry->wdata.max_range) {
1044 entry->wdata.set_range(hid, range);
1045 entry->wdata.range = range;
30bb75d7
MM
1046 }
1047
1048 return count;
1049}
fbf85e2a 1050static DEVICE_ATTR(range, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH, lg4ff_range_show, lg4ff_range_store);
30bb75d7 1051
b96d23ec
MM
1052static ssize_t lg4ff_real_id_show(struct device *dev, struct device_attribute *attr, char *buf)
1053{
1054 struct hid_device *hid = to_hid_device(dev);
1055 struct lg4ff_device_entry *entry;
1056 struct lg_drv_data *drv_data;
1057 size_t count;
1058
1059 drv_data = hid_get_drvdata(hid);
1060 if (!drv_data) {
1061 hid_err(hid, "Private driver data not found!\n");
1062 return 0;
1063 }
1064
1065 entry = drv_data->device_props;
1066 if (!entry) {
1067 hid_err(hid, "Device properties not found!\n");
1068 return 0;
1069 }
1070
72529c65 1071 if (!entry->wdata.real_tag || !entry->wdata.real_name) {
b96d23ec
MM
1072 hid_err(hid, "NULL pointer to string\n");
1073 return 0;
1074 }
1075
72529c65 1076 count = scnprintf(buf, PAGE_SIZE, "%s: %s\n", entry->wdata.real_tag, entry->wdata.real_name);
b96d23ec
MM
1077 return count;
1078}
1079
1080static ssize_t lg4ff_real_id_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1081{
1082 /* Real ID is a read-only value */
1083 return -EPERM;
1084}
1085static DEVICE_ATTR(real_id, S_IRUGO, lg4ff_real_id_show, lg4ff_real_id_store);
1086
22bcefdc 1087#ifdef CONFIG_LEDS_CLASS
2a552c30 1088static void lg4ff_set_leds(struct hid_device *hid, u8 leds)
22bcefdc 1089{
c918fe78
MM
1090 struct lg_drv_data *drv_data;
1091 struct lg4ff_device_entry *entry;
1092 unsigned long flags;
c28abd8c 1093 s32 *value;
74479ba8 1094
c918fe78
MM
1095 drv_data = hid_get_drvdata(hid);
1096 if (!drv_data) {
1097 hid_err(hid, "Private driver data not found!\n");
1098 return;
1099 }
1100
1101 entry = drv_data->device_props;
1102 if (!entry) {
1103 hid_err(hid, "Device properties not found!\n");
1104 return;
1105 }
c28abd8c 1106 value = entry->report->field[0]->value;
c918fe78
MM
1107
1108 spin_lock_irqsave(&entry->report_lock, flags);
74479ba8
MM
1109 value[0] = 0xf8;
1110 value[1] = 0x12;
1111 value[2] = leds;
1112 value[3] = 0x00;
1113 value[4] = 0x00;
1114 value[5] = 0x00;
1115 value[6] = 0x00;
c28abd8c 1116 hid_hw_request(hid, entry->report, HID_REQ_SET_REPORT);
c918fe78 1117 spin_unlock_irqrestore(&entry->report_lock, flags);
22bcefdc
SW
1118}
1119
1120static void lg4ff_led_set_brightness(struct led_classdev *led_cdev,
1121 enum led_brightness value)
1122{
1123 struct device *dev = led_cdev->dev->parent;
ee79a8f8 1124 struct hid_device *hid = to_hid_device(dev);
4629fd16 1125 struct lg_drv_data *drv_data = hid_get_drvdata(hid);
22bcefdc
SW
1126 struct lg4ff_device_entry *entry;
1127 int i, state = 0;
1128
1129 if (!drv_data) {
1130 hid_err(hid, "Device data not found.");
1131 return;
1132 }
1133
371a1d9e 1134 entry = drv_data->device_props;
22bcefdc
SW
1135
1136 if (!entry) {
1137 hid_err(hid, "Device properties not found.");
1138 return;
1139 }
1140
1141 for (i = 0; i < 5; i++) {
72529c65 1142 if (led_cdev != entry->wdata.led[i])
22bcefdc 1143 continue;
72529c65 1144 state = (entry->wdata.led_state >> i) & 1;
22bcefdc 1145 if (value == LED_OFF && state) {
72529c65
MM
1146 entry->wdata.led_state &= ~(1 << i);
1147 lg4ff_set_leds(hid, entry->wdata.led_state);
22bcefdc 1148 } else if (value != LED_OFF && !state) {
72529c65
MM
1149 entry->wdata.led_state |= 1 << i;
1150 lg4ff_set_leds(hid, entry->wdata.led_state);
22bcefdc
SW
1151 }
1152 break;
1153 }
1154}
1155
1156static enum led_brightness lg4ff_led_get_brightness(struct led_classdev *led_cdev)
1157{
1158 struct device *dev = led_cdev->dev->parent;
ee79a8f8 1159 struct hid_device *hid = to_hid_device(dev);
4629fd16 1160 struct lg_drv_data *drv_data = hid_get_drvdata(hid);
22bcefdc
SW
1161 struct lg4ff_device_entry *entry;
1162 int i, value = 0;
1163
1164 if (!drv_data) {
1165 hid_err(hid, "Device data not found.");
1166 return LED_OFF;
1167 }
1168
371a1d9e 1169 entry = drv_data->device_props;
22bcefdc
SW
1170
1171 if (!entry) {
1172 hid_err(hid, "Device properties not found.");
1173 return LED_OFF;
1174 }
1175
1176 for (i = 0; i < 5; i++)
72529c65
MM
1177 if (led_cdev == entry->wdata.led[i]) {
1178 value = (entry->wdata.led_state >> i) & 1;
22bcefdc
SW
1179 break;
1180 }
1181
1182 return value ? LED_FULL : LED_OFF;
1183}
1184#endif
1185
e7c23449
MM
1186static u16 lg4ff_identify_multimode_wheel(struct hid_device *hid, const u16 reported_product_id, const u16 bcdDevice)
1187{
bbec1bd0
SW
1188 u32 current_mode;
1189 int i;
e7c23449 1190
bbec1bd0
SW
1191 /* identify current mode from USB PID */
1192 for (i = 1; i < ARRAY_SIZE(lg4ff_alternate_modes); i++) {
1193 dbg_hid("Testing whether PID is %X\n", lg4ff_alternate_modes[i].product_id);
1194 if (reported_product_id == lg4ff_alternate_modes[i].product_id)
1195 break;
e7c23449
MM
1196 }
1197
bbec1bd0
SW
1198 if (i == ARRAY_SIZE(lg4ff_alternate_modes))
1199 return 0;
1200
1201 current_mode = BIT(i);
1202
1203 for (i = 0; i < ARRAY_SIZE(lg4ff_main_checklist); i++) {
1204 const u16 mask = lg4ff_main_checklist[i]->mask;
1205 const u16 result = lg4ff_main_checklist[i]->result;
1206 const u16 real_product_id = lg4ff_main_checklist[i]->real_product_id;
e7c23449 1207
bbec1bd0
SW
1208 if ((current_mode & lg4ff_main_checklist[i]->modes) && \
1209 (bcdDevice & mask) == result) {
e7c23449
MM
1210 dbg_hid("Found wheel with real PID %X whose reported PID is %X\n", real_product_id, reported_product_id);
1211 return real_product_id;
1212 }
1213 }
1214
f31a2de3
MM
1215 /* No match found. This is either Driving Force or an unknown
1216 * wheel model, do not touch it */
e7c23449
MM
1217 dbg_hid("Wheel with bcdDevice %X was not recognized as multimode wheel, leaving in its current mode\n", bcdDevice);
1218 return 0;
1219}
1220
1221static int lg4ff_handle_multimode_wheel(struct hid_device *hid, u16 *real_product_id, const u16 bcdDevice)
1222{
1223 const u16 reported_product_id = hid->product;
1224 int ret;
1225
1226 *real_product_id = lg4ff_identify_multimode_wheel(hid, reported_product_id, bcdDevice);
1227 /* Probed wheel is not a multimode wheel */
1228 if (!*real_product_id) {
1229 *real_product_id = reported_product_id;
1230 dbg_hid("Wheel is not a multimode wheel\n");
1231 return LG4FF_MMODE_NOT_MULTIMODE;
1232 }
1233
1234 /* Switch from "Driving Force" mode to native mode automatically.
1235 * Otherwise keep the wheel in its current mode */
1236 if (reported_product_id == USB_DEVICE_ID_LOGITECH_WHEEL &&
a54dc779
MM
1237 reported_product_id != *real_product_id &&
1238 !lg4ff_no_autoswitch) {
f31a2de3 1239 const struct lg4ff_compat_mode_switch *s = lg4ff_get_mode_switch_command(*real_product_id, *real_product_id);
e7c23449 1240
f31a2de3 1241 if (!s) {
e7c23449 1242 hid_err(hid, "Invalid product id %X\n", *real_product_id);
b96d23ec 1243 return LG4FF_MMODE_NOT_MULTIMODE;
e7c23449
MM
1244 }
1245
1246 ret = lg4ff_switch_compatibility_mode(hid, s);
1247 if (ret) {
1248 /* Wheel could not have been switched to native mode,
1249 * leave it in "Driving Force" mode and continue */
1250 hid_err(hid, "Unable to switch wheel mode, errno %d\n", ret);
b96d23ec 1251 return LG4FF_MMODE_IS_MULTIMODE;
e7c23449
MM
1252 }
1253 return LG4FF_MMODE_SWITCHED;
1254 }
1255
b96d23ec 1256 return LG4FF_MMODE_IS_MULTIMODE;
e7c23449
MM
1257}
1258
1259
32c88cbc
SW
1260int lg4ff_init(struct hid_device *hid)
1261{
1262 struct hid_input *hidinput = list_entry(hid->inputs.next, struct hid_input, list);
32c88cbc 1263 struct input_dev *dev = hidinput->input;
c28abd8c
MM
1264 struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
1265 struct hid_report *report = list_entry(report_list->next, struct hid_report, list);
e7c23449
MM
1266 const struct usb_device_descriptor *udesc = &(hid_to_usb_dev(hid)->descriptor);
1267 const u16 bcdDevice = le16_to_cpu(udesc->bcdDevice);
5d9d60ad 1268 const struct lg4ff_multimode_wheel *mmode_wheel = NULL;
30bb75d7 1269 struct lg4ff_device_entry *entry;
3b6b17b7 1270 struct lg_drv_data *drv_data;
b96d23ec
MM
1271 int error, i, j;
1272 int mmode_ret, mmode_idx = -1;
e7c23449 1273 u16 real_product_id;
32c88cbc 1274
32c88cbc 1275 /* Check that the report looks ok */
0fb6bd06 1276 if (!hid_validate_values(hid, HID_OUTPUT_REPORT, 0, 0, 7))
32c88cbc 1277 return -1;
30bb75d7 1278
72529c65
MM
1279 drv_data = hid_get_drvdata(hid);
1280 if (!drv_data) {
1281 hid_err(hid, "Cannot add device, private driver data not allocated\n");
1282 return -1;
1283 }
1284 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1285 if (!entry)
1286 return -ENOMEM;
c918fe78 1287 spin_lock_init(&entry->report_lock);
c28abd8c 1288 entry->report = report;
72529c65
MM
1289 drv_data->device_props = entry;
1290
e7c23449
MM
1291 /* Check if a multimode wheel has been connected and
1292 * handle it appropriately */
b96d23ec 1293 mmode_ret = lg4ff_handle_multimode_wheel(hid, &real_product_id, bcdDevice);
e7c23449
MM
1294
1295 /* Wheel has been told to switch to native mode. There is no point in going on
1296 * with the initialization as the wheel will do a USB reset when it switches mode
1297 */
b96d23ec 1298 if (mmode_ret == LG4FF_MMODE_SWITCHED)
e7c23449 1299 return 0;
72529c65
MM
1300 else if (mmode_ret < 0) {
1301 hid_err(hid, "Unable to switch device mode during initialization, errno %d\n", mmode_ret);
1302 error = mmode_ret;
1303 goto err_init;
1304 }
e7c23449 1305
7362cd22
MM
1306 /* Check what wheel has been connected */
1307 for (i = 0; i < ARRAY_SIZE(lg4ff_devices); i++) {
1308 if (hid->product == lg4ff_devices[i].product_id) {
1309 dbg_hid("Found compatible device, product ID %04X\n", lg4ff_devices[i].product_id);
1310 break;
1311 }
1312 }
1313
1314 if (i == ARRAY_SIZE(lg4ff_devices)) {
9c2a6bd1
MM
1315 hid_err(hid, "This device is flagged to be handled by the lg4ff module but this module does not know how to handle it. "
1316 "Please report this as a bug to LKML, Simon Wood <simon@mungewell.org> or "
1317 "Michal Maly <madcatxster@devoid-pointer.net>\n");
72529c65
MM
1318 error = -1;
1319 goto err_init;
7362cd22 1320 }
32c88cbc 1321
b96d23ec
MM
1322 if (mmode_ret == LG4FF_MMODE_IS_MULTIMODE) {
1323 for (mmode_idx = 0; mmode_idx < ARRAY_SIZE(lg4ff_multimode_wheels); mmode_idx++) {
1324 if (real_product_id == lg4ff_multimode_wheels[mmode_idx].product_id)
1325 break;
1326 }
1327
1328 if (mmode_idx == ARRAY_SIZE(lg4ff_multimode_wheels)) {
1329 hid_err(hid, "Device product ID %X is not listed as a multimode wheel", real_product_id);
72529c65
MM
1330 error = -1;
1331 goto err_init;
b96d23ec
MM
1332 }
1333 }
1334
7362cd22
MM
1335 /* Set supported force feedback capabilities */
1336 for (j = 0; lg4ff_devices[i].ff_effects[j] >= 0; j++)
1337 set_bit(lg4ff_devices[i].ff_effects[j], dev->ffbit);
32c88cbc 1338
d0afd848 1339 error = input_ff_create_memless(dev, NULL, lg4ff_play);
32c88cbc
SW
1340
1341 if (error)
72529c65 1342 goto err_init;
30bb75d7 1343
5d9d60ad 1344 /* Initialize device properties */
b96d23ec
MM
1345 if (mmode_ret == LG4FF_MMODE_IS_MULTIMODE) {
1346 BUG_ON(mmode_idx == -1);
5d9d60ad 1347 mmode_wheel = &lg4ff_multimode_wheels[mmode_idx];
b96d23ec 1348 }
5d9d60ad 1349 lg4ff_init_wheel_data(&entry->wdata, &lg4ff_devices[i], mmode_wheel, real_product_id);
30bb75d7 1350
114a55cf
SW
1351 /* Check if autocentering is available and
1352 * set the centering force to zero by default */
1353 if (test_bit(FF_AUTOCENTER, dev->ffbit)) {
e7c23449
MM
1354 /* Formula Force EX expects different autocentering command */
1355 if ((bcdDevice >> 8) == LG4FF_FFEX_REV_MAJ &&
1356 (bcdDevice & 0xff) == LG4FF_FFEX_REV_MIN)
d0afd848 1357 dev->ff->set_autocenter = lg4ff_set_autocenter_ffex;
114a55cf 1358 else
d0afd848 1359 dev->ff->set_autocenter = lg4ff_set_autocenter_default;
114a55cf
SW
1360
1361 dev->ff->set_autocenter(dev, 0);
1362 }
1363
30bb75d7 1364 /* Create sysfs interface */
961af46f
SW
1365 error = device_create_file(&hid->dev, &dev_attr_combine_pedals);
1366 if (error)
1367 hid_warn(hid, "Unable to create sysfs interface for \"combine\", errno %d\n", error);
30bb75d7
MM
1368 error = device_create_file(&hid->dev, &dev_attr_range);
1369 if (error)
d61a70ec 1370 hid_warn(hid, "Unable to create sysfs interface for \"range\", errno %d\n", error);
b96d23ec
MM
1371 if (mmode_ret == LG4FF_MMODE_IS_MULTIMODE) {
1372 error = device_create_file(&hid->dev, &dev_attr_real_id);
1373 if (error)
d61a70ec 1374 hid_warn(hid, "Unable to create sysfs interface for \"real_id\", errno %d\n", error);
b96d23ec
MM
1375 error = device_create_file(&hid->dev, &dev_attr_alternate_modes);
1376 if (error)
d61a70ec 1377 hid_warn(hid, "Unable to create sysfs interface for \"alternate_modes\", errno %d\n", error);
b96d23ec 1378 }
30bb75d7
MM
1379 dbg_hid("sysfs interface created\n");
1380
1381 /* Set the maximum range to start with */
72529c65
MM
1382 entry->wdata.range = entry->wdata.max_range;
1383 if (entry->wdata.set_range)
1384 entry->wdata.set_range(hid, entry->wdata.range);
30bb75d7 1385
22bcefdc 1386#ifdef CONFIG_LEDS_CLASS
29fae1c8 1387 /* register led subsystem - G27/G29 only */
72529c65 1388 entry->wdata.led_state = 0;
22bcefdc 1389 for (j = 0; j < 5; j++)
72529c65 1390 entry->wdata.led[j] = NULL;
22bcefdc 1391
29fae1c8
SW
1392 if (lg4ff_devices[i].product_id == USB_DEVICE_ID_LOGITECH_G27_WHEEL ||
1393 lg4ff_devices[i].product_id == USB_DEVICE_ID_LOGITECH_G29_WHEEL) {
22bcefdc
SW
1394 struct led_classdev *led;
1395 size_t name_sz;
1396 char *name;
1397
1398 lg4ff_set_leds(hid, 0);
1399
1400 name_sz = strlen(dev_name(&hid->dev)) + 8;
1401
1402 for (j = 0; j < 5; j++) {
1403 led = kzalloc(sizeof(struct led_classdev)+name_sz, GFP_KERNEL);
1404 if (!led) {
1405 hid_err(hid, "can't allocate memory for LED %d\n", j);
72529c65 1406 goto err_leds;
22bcefdc
SW
1407 }
1408
1409 name = (void *)(&led[1]);
1410 snprintf(name, name_sz, "%s::RPM%d", dev_name(&hid->dev), j+1);
1411 led->name = name;
1412 led->brightness = 0;
1413 led->max_brightness = 1;
1414 led->brightness_get = lg4ff_led_get_brightness;
1415 led->brightness_set = lg4ff_led_set_brightness;
1416
72529c65 1417 entry->wdata.led[j] = led;
22bcefdc
SW
1418 error = led_classdev_register(&hid->dev, led);
1419
1420 if (error) {
1421 hid_err(hid, "failed to register LED %d. Aborting.\n", j);
72529c65 1422err_leds:
22bcefdc
SW
1423 /* Deregister LEDs (if any) */
1424 for (j = 0; j < 5; j++) {
72529c65
MM
1425 led = entry->wdata.led[j];
1426 entry->wdata.led[j] = NULL;
22bcefdc
SW
1427 if (!led)
1428 continue;
1429 led_classdev_unregister(led);
1430 kfree(led);
1431 }
1432 goto out; /* Let the driver continue without LEDs */
1433 }
1434 }
1435 }
22bcefdc 1436out:
c6e6dc87 1437#endif
64013800 1438 hid_info(hid, "Force feedback support for Logitech Gaming Wheels\n");
32c88cbc 1439 return 0;
72529c65
MM
1440
1441err_init:
1442 drv_data->device_props = NULL;
1443 kfree(entry);
1444 return error;
32c88cbc
SW
1445}
1446
30bb75d7
MM
1447int lg4ff_deinit(struct hid_device *hid)
1448{
30bb75d7 1449 struct lg4ff_device_entry *entry;
3b6b17b7
MM
1450 struct lg_drv_data *drv_data;
1451
3b6b17b7
MM
1452 drv_data = hid_get_drvdata(hid);
1453 if (!drv_data) {
1454 hid_err(hid, "Error while deinitializing device, no private driver data.\n");
1455 return -1;
30bb75d7 1456 }
3b6b17b7 1457 entry = drv_data->device_props;
e7c23449
MM
1458 if (!entry)
1459 goto out; /* Nothing more to do */
1460
b96d23ec 1461 /* Multimode devices will have at least the "MODE_NATIVE" bit set */
72529c65 1462 if (entry->wdata.alternate_modes) {
b96d23ec
MM
1463 device_remove_file(&hid->dev, &dev_attr_real_id);
1464 device_remove_file(&hid->dev, &dev_attr_alternate_modes);
1465 }
1466
961af46f 1467 device_remove_file(&hid->dev, &dev_attr_combine_pedals);
72529c65 1468 device_remove_file(&hid->dev, &dev_attr_range);
22bcefdc
SW
1469#ifdef CONFIG_LEDS_CLASS
1470 {
1471 int j;
1472 struct led_classdev *led;
1473
1474 /* Deregister LEDs (if any) */
1475 for (j = 0; j < 5; j++) {
1476
72529c65
MM
1477 led = entry->wdata.led[j];
1478 entry->wdata.led[j] = NULL;
22bcefdc
SW
1479 if (!led)
1480 continue;
1481 led_classdev_unregister(led);
1482 kfree(led);
1483 }
1484 }
1485#endif
b211a638
MM
1486 hid_hw_stop(hid);
1487 drv_data->device_props = NULL;
22bcefdc 1488
3b6b17b7 1489 kfree(entry);
e7c23449 1490out:
30bb75d7
MM
1491 dbg_hid("Device successfully unregistered\n");
1492 return 0;
1493}