-
Notifications
You must be signed in to change notification settings - Fork 20
/
hid-tmff2.c
744 lines (575 loc) · 17.4 KB
/
hid-tmff2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
// SPDX-License-Identifier: GPL-2.0-or-later
#include <linux/workqueue.h>
#include <linux/module.h>
#include <linux/hid.h>
#include "hid-tmff2.h"
int open_mode = 1;
module_param(open_mode, int, 0660);
MODULE_PARM_DESC(open_mode,
"Whether to send mode change commands on open/close");
int timer_msecs = DEFAULT_TIMER_PERIOD;
module_param(timer_msecs, int, 0660);
MODULE_PARM_DESC(timer_msecs,
"Timer resolution in msecs");
/* should these be removed and just rely on /sys? */
int spring_level = 30;
module_param(spring_level, int, 0);
MODULE_PARM_DESC(spring_level,
"Level of spring force (0-100), as per Oversteer standards");
int damper_level = 30;
module_param(damper_level, int, 0);
MODULE_PARM_DESC(damper_level,
"Level of damper force (0-100), as per Oversteer standards");
int friction_level = 30;
module_param(friction_level, int, 0);
MODULE_PARM_DESC(friction_level,
"Level of friction force (0-100), as per Oversteer standards");
int range = 900;
module_param(range, int, 0);
MODULE_PARM_DESC(range,
"Range of wheel, depends on the wheel. Invalid values are ignored");
int alt_mode = 0;
module_param(alt_mode, int, 0);
MODULE_PARM_DESC(alt_mode,
"Alternate mode, eg. F1 mode");
#define GAIN_MAX 65535
int gain = 40000;
module_param(gain, int, 0);
MODULE_PARM_DESC(gain,
"Level of gain (0-65535)");
static spinlock_t lock;
static unsigned long lock_flags;
static struct tmff2_device_entry *tmff2_from_hdev(struct hid_device *hdev)
{
struct tmff2_device_entry *tmff2;
spin_lock_irqsave(&lock, lock_flags);
if (!(tmff2 = hid_get_drvdata(hdev)))
dev_err(&hdev->dev, "hdev private data not found\n");
spin_unlock_irqrestore(&lock, lock_flags);
return tmff2;
}
static struct tmff2_device_entry *tmff2_from_input(struct input_dev *input_dev)
{
struct hid_device *hdev;
spin_lock_irqsave(&lock, lock_flags);
if (!(hdev = input_get_drvdata(input_dev)))
dev_err(&input_dev->dev, "input_dev private data not found\n");
spin_unlock_irqrestore(&lock, lock_flags);
return tmff2_from_hdev(hdev);
}
static ssize_t spring_level_store(struct device *dev,
struct device_attribute *attr, const char *buf, size_t count)
{
unsigned int value;
int ret;
ret = kstrtouint(buf, 0, &value);
if (ret) {
dev_err(dev, "kstrtouint failed at spring_level_store: %i", ret);
return ret;
}
if (value > 100) {
dev_info(dev, "value %i larger than max 100, clamping to 100.\n", value);
value = 100;
}
spring_level = value;
return count;
}
static ssize_t spring_level_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
return scnprintf(buf, PAGE_SIZE, "%u\n", spring_level);
}
static DEVICE_ATTR_RW(spring_level);
static ssize_t damper_level_store(struct device *dev,
struct device_attribute *attr, const char *buf, size_t count)
{
unsigned int value;
int ret;
ret = kstrtouint(buf, 0, &value);
if (ret) {
dev_err(dev, "kstrtouint failed at damper_level_store: %i", ret);
return ret;
}
if (value > 100) {
dev_info(dev, "value %i larger than max 100, clamping to 100.\n", value);
value = 100;
}
damper_level = value;
return count;
}
static ssize_t damper_level_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
return scnprintf(buf, PAGE_SIZE, "%u\n", damper_level);
}
static DEVICE_ATTR_RW(damper_level);
static ssize_t friction_level_store(struct device *dev,
struct device_attribute *attr, const char *buf, size_t count)
{
unsigned int value;
int ret;
ret = kstrtouint(buf, 0, &value);
if (ret) {
dev_err(dev, "kstrtouint failed at friction_level_store: %i", ret);
return ret;
}
if (value > 100) {
dev_info(dev, "value %i larger than max 100, clamping to 100.\n", value);
value = 100;
}
friction_level = value;
return count;
}
static ssize_t friction_level_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
return scnprintf(buf, PAGE_SIZE, "%u\n", friction_level);
}
static DEVICE_ATTR_RW(friction_level);
static ssize_t range_store(struct device *dev,
struct device_attribute *attr, const char *buf, size_t count)
{
struct tmff2_device_entry *tmff2 = tmff2_from_hdev(to_hid_device(dev));
unsigned int value;
int ret;
if (!tmff2)
return -ENODEV;
if ((ret = kstrtouint(buf, 0, &value))) {
hid_err(tmff2->hdev, "kstrtouint failed at range_store: %i", ret);
return ret;
}
if (tmff2->set_range) {
if ((ret = tmff2->set_range(tmff2->data, value)))
return ret;
}
return count;
}
static ssize_t range_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
return scnprintf(buf, PAGE_SIZE, "%u\n", range);
}
static DEVICE_ATTR_RW(range);
static ssize_t alternate_modes_store(struct device *dev,
struct device_attribute *attr, const char *buf, size_t count)
{
struct tmff2_device_entry *tmff2 = tmff2_from_hdev(to_hid_device(dev));
if (!tmff2)
return -ENODEV;
if (tmff2->alt_mode_store)
return tmff2->alt_mode_store(tmff2->data, buf, count);
return 0;
}
static ssize_t alternate_modes_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
struct tmff2_device_entry *tmff2 = tmff2_from_hdev(to_hid_device(dev));
if (!tmff2)
return -ENODEV;
if (tmff2->alt_mode_show)
return tmff2->alt_mode_show(tmff2->data, buf);
return 0;
}
static DEVICE_ATTR_RW(alternate_modes);
static ssize_t gain_store(struct device *dev,
struct device_attribute *attr, const char *buf, size_t count)
{
struct tmff2_device_entry *tmff2 = tmff2_from_hdev(to_hid_device(dev));
unsigned int value;
int ret;
if (!tmff2)
return -ENODEV;
if ((ret = kstrtouint(buf, 0, &value))) {
dev_err(dev, "kstrtouint failed at gain_store: %i", ret);
return ret;
}
gain = value;
if (tmff2->set_gain) /* if we can, update gain immediately */
tmff2->set_gain(tmff2->data, (GAIN_MAX * gain) / GAIN_MAX);
return count;
}
static ssize_t gain_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
return scnprintf(buf, PAGE_SIZE, "%i\n", gain);
}
static DEVICE_ATTR_RW(gain);
static void tmff2_set_gain(struct input_dev *dev, uint16_t value)
{
struct tmff2_device_entry *tmff2 = tmff2_from_input(dev);
if (!tmff2)
return;
if (!tmff2->set_gain) {
hid_err(tmff2->hdev, "missing set_gain\n");
return;
}
if (tmff2->set_gain(tmff2->data, (value * gain) / GAIN_MAX))
hid_warn(tmff2->hdev, "unable to set gain\n");
}
static void tmff2_set_autocenter(struct input_dev *dev, uint16_t value)
{
struct tmff2_device_entry *tmff2 = tmff2_from_input(dev);
if (!tmff2)
return;
if (!tmff2->set_autocenter) {
hid_err(tmff2->hdev, "missing set_autocenter\n");
return;
}
if (tmff2->set_autocenter(tmff2->data, value))
hid_warn(tmff2->hdev, "unable to set autocenter\n");
}
static void tmff2_work_handler(struct work_struct *w)
{
struct delayed_work *dw = container_of(w, struct delayed_work, work);
struct tmff2_device_entry *tmff2 = container_of(dw, struct tmff2_device_entry, work);
struct tmff2_effect_state *state;
int max_count = 0, effect_id;
unsigned long time_now;
__u16 effect_length;
if (!tmff2)
return;
for (effect_id = 0; effect_id < tmff2->max_effects; ++effect_id) {
spin_lock(&tmff2->lock);
time_now = JIFFIES2MS(jiffies);
state = &tmff2->states[effect_id];
effect_length = state->effect.replay.length;
if (test_bit(FF_EFFECT_PLAYING, &state->flags) && effect_length) {
if ((time_now - state->start_time) >= effect_length) {
__clear_bit(FF_EFFECT_PLAYING, &state->flags);
__clear_bit(FF_EFFECT_QUEUE_UPDATE, &state->flags);
if (state->count)
state->count--;
if (state->count)
__set_bit(FF_EFFECT_QUEUE_START, &state->flags);
}
}
if (test_bit(FF_EFFECT_QUEUE_UPLOAD, &state->flags)) {
if (tmff2->upload_effect(tmff2->data, state)) {
hid_warn(tmff2->hdev, "failed uploading effect\n");
} else {
__clear_bit(FF_EFFECT_QUEUE_UPLOAD, &state->flags);
/* if we're uploading an effect, it's bound to be the up
* to date */
__clear_bit(FF_EFFECT_QUEUE_UPDATE, &state->flags);
}
}
if (test_bit(FF_EFFECT_QUEUE_UPDATE, &state->flags)) {
if (tmff2->update_effect(tmff2->data, state))
hid_warn(tmff2->hdev, "failed updating effect\n");
else
__clear_bit(FF_EFFECT_QUEUE_UPDATE, &state->flags);
}
if (test_bit(FF_EFFECT_QUEUE_START, &state->flags)) {
if (tmff2->play_effect(tmff2->data, state)) {
hid_warn(tmff2->hdev, "failed starting effect\n");
} else {
__clear_bit(FF_EFFECT_QUEUE_START, &state->flags);
__set_bit(FF_EFFECT_PLAYING, &state->flags);
}
}
if (test_bit(FF_EFFECT_QUEUE_STOP, &state->flags)) {
if (tmff2->stop_effect(tmff2->data, state)) {
hid_warn(tmff2->hdev, "failed stopping effect\n");
} else {
__clear_bit(FF_EFFECT_PLAYING, &state->flags);
__clear_bit(FF_EFFECT_QUEUE_STOP, &state->flags);
}
}
if (state->count > max_count)
max_count = state->count;
spin_unlock(&tmff2->lock);
/* wait for each effect update to actually be sent out to avoid
* filling up usb output queue */
hid_hw_wait(tmff2->hdev);
}
if (max_count && tmff2->allow_scheduling)
schedule_delayed_work(&tmff2->work, msecs_to_jiffies(timer_msecs));
}
static int tmff2_upload(struct input_dev *dev,
struct ff_effect *effect, struct ff_effect *old)
{
struct tmff2_effect_state *state;
struct tmff2_device_entry *tmff2 = tmff2_from_input(dev);
if (!tmff2)
return -ENODEV;
if (effect->type == FF_PERIODIC && effect->u.periodic.period == 0)
return -EINVAL;
state = &tmff2->states[effect->id];
spin_lock(&tmff2->lock);
state->effect = *effect;
if (old) {
if (!test_bit(FF_EFFECT_QUEUE_UPDATE, &state->flags))
state->old = *old;
__set_bit(FF_EFFECT_QUEUE_UPDATE, &state->flags);
} else {
__set_bit(FF_EFFECT_QUEUE_UPLOAD, &state->flags);
}
spin_unlock(&tmff2->lock);
return 0;
}
static int tmff2_play(struct input_dev *dev, int effect_id, int value)
{
struct tmff2_effect_state *state;
struct tmff2_device_entry *tmff2 = tmff2_from_input(dev);
if (!tmff2)
return -ENODEV;
state = &tmff2->states[effect_id];
if (!state)
return 0;
spin_lock(&tmff2->lock);
if (value > 0) {
state->count = value;
state->start_time = JIFFIES2MS(jiffies);
__set_bit(FF_EFFECT_QUEUE_START, &state->flags);
__clear_bit(FF_EFFECT_QUEUE_STOP, &state->flags);
} else {
__set_bit(FF_EFFECT_QUEUE_STOP, &state->flags);
__clear_bit(FF_EFFECT_QUEUE_START, &state->flags);
}
spin_unlock(&tmff2->lock);
if (!delayed_work_pending(&tmff2->work) && tmff2->allow_scheduling)
schedule_delayed_work(&tmff2->work, 0);
return 0;
}
static int tmff2_open(struct input_dev *dev)
{
struct tmff2_device_entry *tmff2 = tmff2_from_input(dev);
if (!tmff2)
return -ENODEV;
if (tmff2->open)
return tmff2->open(tmff2->data, open_mode);
hid_err(tmff2->hdev, "no open callback set\n");
return -EINVAL;
}
static void tmff2_close(struct input_dev *dev)
{
struct tmff2_device_entry *tmff2 = tmff2_from_input(dev);
if (!tmff2)
return;
/* since we're closing the device, no need to continue feeding it new data */
/* TODO: check somewhere that multiple users can't open us at the same
* time */
cancel_delayed_work_sync(&tmff2->work);
if (tmff2->close) {
tmff2->close(tmff2->data, open_mode);
return;
}
hid_err(tmff2->hdev, "no close callback set\n");
}
static int tmff2_create_files(struct tmff2_device_entry *tmff2)
{
struct device *dev = &tmff2->hdev->dev;
int ret;
/* could use short circuiting but this is more explicit */
if (tmff2->params & PARAM_GAIN) {
if ((ret = device_create_file(dev, &dev_attr_gain))) {
hid_err(tmff2->hdev, "unable to create sysfs for gain\n");
goto gain_err;
}
}
if (tmff2->params & PARAM_ALT_MODE) {
if ((ret = device_create_file(dev, &dev_attr_alternate_modes))) {
hid_err(tmff2->hdev, "unable to create sysfs for alternate_modes\n");
goto alt_err;
}
}
if (tmff2->params & PARAM_RANGE) {
if ((ret = device_create_file(dev, &dev_attr_range))) {
hid_warn(tmff2->hdev, "unable to create sysfs for range\n");
goto range_err;
}
}
if (tmff2->params & PARAM_SPRING_LEVEL) {
if ((ret = device_create_file(dev, &dev_attr_spring_level))) {
hid_warn(tmff2->hdev, "unable to create sysfs for spring_level\n");
goto spring_err;
}
}
if (tmff2->params & PARAM_DAMPER_LEVEL) {
if ((ret = device_create_file(dev, &dev_attr_damper_level))) {
hid_warn(tmff2->hdev, "unable to create sysfs for damper_level\n");
goto damper_err;
}
}
if (tmff2->params & PARAM_FRICTION_LEVEL) {
if ((ret = device_create_file(dev, &dev_attr_friction_level))) {
hid_warn(tmff2->hdev, "unable to create sysfs for friction_level\n");
goto friction_err;
}
}
return 0;
friction_err:
device_remove_file(dev, &dev_attr_damper_level);
damper_err:
device_remove_file(dev, &dev_attr_spring_level);
spring_err:
device_remove_file(dev, &dev_attr_range);
range_err:
device_remove_file(dev, &dev_attr_alternate_modes);
alt_err:
device_remove_file(dev, &dev_attr_gain);
gain_err:
return ret;
}
static int tmff2_wheel_init(struct tmff2_device_entry *tmff2)
{
int ret, i;
struct ff_device *ff;
spin_lock_init(&lock);
spin_lock_init(&tmff2->lock);
INIT_DELAYED_WORK(&tmff2->work, tmff2_work_handler);
/* get parameters etc from backend */
if ((ret = tmff2->wheel_init(tmff2, open_mode)))
goto err;
tmff2->states = kzalloc(sizeof(struct tmff2_effect_state) * tmff2->max_effects,
GFP_KERNEL);
if (!tmff2->states) {
ret = -ENOMEM;
goto err;
}
/* set supported effects into input_dev->ffbit */
for (i = 0; tmff2->supported_effects[i] >= 0; ++i)
__set_bit(tmff2->supported_effects[i], tmff2->input_dev->ffbit);
/* create actual ff device*/
if ((ret = input_ff_create(tmff2->input_dev, tmff2->max_effects))) {
hid_err(tmff2->hdev, "could not create input_ff\n");
goto err;
}
/* set ff callbacks */
ff = tmff2->input_dev->ff;
ff->upload = tmff2_upload;
ff->playback = tmff2_play;
if (tmff2->open)
tmff2->input_dev->open = tmff2_open;
if (tmff2->close)
tmff2->input_dev->close = tmff2_close;
/* set defaults wherever possible */
if (tmff2->set_gain) {
ff->set_gain = tmff2_set_gain;
tmff2->set_gain(tmff2->data, (GAIN_MAX * gain) / GAIN_MAX);
}
if (tmff2->set_autocenter)
ff->set_autocenter = tmff2_set_autocenter;
if (tmff2->set_range)
tmff2->set_range(tmff2->data, range);
if (tmff2->switch_mode)
tmff2->switch_mode(tmff2->data, alt_mode);
/* create files */
if ((ret = tmff2_create_files(tmff2)))
goto err;
tmff2->allow_scheduling = 1;
return 0;
input_ff_destroy(tmff2->input_dev);
err:
return ret;
}
static int tmff2_probe(struct hid_device *hdev, const struct hid_device_id *id)
{
struct tmff2_device_entry *tmff2 =
kzalloc(sizeof(struct tmff2_device_entry), GFP_KERNEL);
int ret;
if (!tmff2) {
ret = -ENOMEM;
goto oom_err;
}
tmff2->hdev = hdev;
hid_set_drvdata(tmff2->hdev, tmff2);
switch (tmff2->hdev->product) {
case TMT300RS_PS3_NORM_ID:
case TMT300RS_PS3_ADV_ID:
case TMT300RS_PS4_NORM_ID:
if ((ret = t300rs_populate_api(tmff2)))
goto wheel_err;
break;
case TMT248_PC_ID:
if ((ret = t248_populate_api(tmff2)))
goto wheel_err;
break;
case TX_ACTIVE:
if ((ret = tx_populate_api(tmff2)))
goto wheel_err;
break;
default:
ret = -ENODEV;
goto wheel_err;
}
if ((ret = hid_parse(tmff2->hdev))) {
hid_err(hdev, "parse failed\n");
goto hid_err;
}
if ((ret = hid_hw_start(tmff2->hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF))) {
hid_err(hdev, "hw start failed\n");
goto hid_err;
}
tmff2->input_dev = list_entry(hdev->inputs.next, struct hid_input, list)->input;
if ((ret = tmff2_wheel_init(tmff2))) {
hid_err(hdev, "init failed\n");
goto init_err;
}
return 0;
init_err:
hid_hw_stop(hdev);
hid_err:
tmff2->wheel_destroy(tmff2->data);
wheel_err:
kfree(tmff2);
oom_err:
return ret;
}
static __u8 *tmff2_report_fixup(struct hid_device *hdev, __u8 *rdesc,
unsigned int *rsize)
{
struct tmff2_device_entry *tmff2 = tmff2_from_hdev(hdev);
if (!tmff2) /* not entirely sure what the best course of action would be here */
return rdesc;
if (tmff2->wheel_fixup)
return tmff2->wheel_fixup(hdev, rdesc, rsize);
return rdesc;
}
static void tmff2_remove(struct hid_device *hdev)
{
struct tmff2_device_entry *tmff2 = tmff2_from_hdev(hdev);
struct device *dev;
if (!tmff2)
return;
tmff2->allow_scheduling = 0;
cancel_delayed_work_sync(&tmff2->work);
dev = &tmff2->hdev->dev;
if (tmff2->params & PARAM_FRICTION_LEVEL)
device_remove_file(dev, &dev_attr_friction_level);
if (tmff2->params & PARAM_DAMPER_LEVEL)
device_remove_file(dev, &dev_attr_damper_level);
if (tmff2->params & PARAM_SPRING_LEVEL)
device_remove_file(dev, &dev_attr_spring_level);
if (tmff2->params & PARAM_RANGE)
device_remove_file(dev, &dev_attr_range);
if (tmff2->params & PARAM_ALT_MODE)
device_remove_file(dev, &dev_attr_alternate_modes);
if (tmff2->params & PARAM_GAIN)
device_remove_file(dev, &dev_attr_gain);
hid_hw_stop(hdev);
tmff2->wheel_destroy(tmff2->data);
kfree(tmff2->states);
kfree(tmff2);
}
static const struct hid_device_id tmff2_devices[] = {
/* t300rs and variations */
{HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, TMT300RS_PS3_NORM_ID)},
{HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, TMT300RS_PS3_ADV_ID)},
{HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, TMT300RS_PS4_NORM_ID)},
/* t248 PC*/
{HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, TMT248_PC_ID)},
/* tx */
{HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, TX_ACTIVE)},
{}
};
MODULE_DEVICE_TABLE(hid, tmff2_devices);
static struct hid_driver tmff2_driver = {
.name = "tmff2",
.id_table = tmff2_devices,
.probe = tmff2_probe,
.remove = tmff2_remove,
.report_fixup = tmff2_report_fixup,
};
module_hid_driver(tmff2_driver);
MODULE_LICENSE("GPL");