2 * HID driver for multitouch panels
4 * Copyright (c) 2010-2012 Stephane Chatty <chatty@enac.fr>
5 * Copyright (c) 2010-2013 Benjamin Tissoires <benjamin.tissoires@gmail.com>
6 * Copyright (c) 2010-2012 Ecole Nationale de l'Aviation Civile, France
7 * Copyright (c) 2012-2013 Red Hat, Inc
9 * This code is partly based on hid-egalax.c:
11 * Copyright (c) 2010 Stephane Chatty <chatty@enac.fr>
12 * Copyright (c) 2010 Henrik Rydberg <rydberg@euromail.se>
13 * Copyright (c) 2010 Canonical, Ltd.
15 * This code is partly based on hid-3m-pct.c:
17 * Copyright (c) 2009-2010 Stephane Chatty <chatty@enac.fr>
18 * Copyright (c) 2010 Henrik Rydberg <rydberg@euromail.se>
19 * Copyright (c) 2010 Canonical, Ltd.
24 * This program is free software; you can redistribute it and/or modify it
25 * under the terms of the GNU General Public License as published by the Free
26 * Software Foundation; either version 2 of the License, or (at your option)
31 * This driver is regularly tested thanks to the tool hid-test[1].
32 * This tool relies on hid-replay[2] and a database of hid devices[3].
33 * Please run these regression tests before patching this module so that
34 * your patch won't break existing known devices.
36 * [1] https://github.com/bentiss/hid-test
37 * [2] https://github.com/bentiss/hid-replay
38 * [3] https://github.com/bentiss/hid-devices
41 #include <linux/device.h>
42 #include <linux/hid.h>
43 #include <linux/module.h>
44 #include <linux/slab.h>
45 #include <linux/usb.h>
46 #include <linux/input/mt.h>
47 #include <linux/string.h>
50 MODULE_AUTHOR("Stephane Chatty <chatty@enac.fr>");
51 MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
52 MODULE_DESCRIPTION("HID multitouch panels");
53 MODULE_LICENSE("GPL");
57 /* quirks to control the device */
58 #define MT_QUIRK_NOT_SEEN_MEANS_UP (1 << 0)
59 #define MT_QUIRK_SLOT_IS_CONTACTID (1 << 1)
60 #define MT_QUIRK_CYPRESS (1 << 2)
61 #define MT_QUIRK_SLOT_IS_CONTACTNUMBER (1 << 3)
62 #define MT_QUIRK_ALWAYS_VALID (1 << 4)
63 #define MT_QUIRK_VALID_IS_INRANGE (1 << 5)
64 #define MT_QUIRK_VALID_IS_CONFIDENCE (1 << 6)
65 #define MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE (1 << 8)
66 #define MT_QUIRK_NO_AREA (1 << 9)
67 #define MT_QUIRK_IGNORE_DUPLICATES (1 << 10)
68 #define MT_QUIRK_HOVERING (1 << 11)
69 #define MT_QUIRK_CONTACT_CNT_ACCURATE (1 << 12)
71 #define MT_INPUTMODE_TOUCHSCREEN 0x02
72 #define MT_INPUTMODE_TOUCHPAD 0x03
75 __s32 x
, y
, cx
, cy
, p
, w
, h
;
76 __s32 contactid
; /* the device ContactID assigned to this slot */
77 bool touch_state
; /* is the touch valid? */
78 bool inrange_state
; /* is the finger in proximity of the sensor? */
82 __s32 name
; /* MT_CLS */
84 __s32 sn_move
; /* Signal/noise ratio for move events */
85 __s32 sn_width
; /* Signal/noise ratio for width events */
86 __s32 sn_height
; /* Signal/noise ratio for height events */
87 __s32 sn_pressure
; /* Signal/noise ratio for pressure events */
89 bool is_indirect
; /* true for touchpads */
90 bool export_all_inputs
; /* do not ignore mouse, keyboards, etc... */
94 unsigned usages
[HID_MAX_FIELDS
];
99 struct mt_slot curdata
; /* placeholder of incoming data */
100 struct mt_class mtclass
; /* our mt device class */
101 struct mt_fields
*fields
; /* temporary placeholder for storing the
103 int cc_index
; /* contact count field index in the report */
104 int cc_value_index
; /* contact count value index in the field */
105 unsigned last_slot_field
; /* the last field of a slot */
106 unsigned mt_report_id
; /* the report ID of the multitouch device */
107 __s16 inputmode
; /* InputMode HID feature, -1 if non-existent */
108 __s16 inputmode_index
; /* InputMode HID feature index in the report */
109 __s16 maxcontact_report_id
; /* Maximum Contact Number HID feature,
110 -1 if non-existent */
111 __u8 inputmode_value
; /* InputMode HID feature value */
112 __u8 num_received
; /* how many contacts we received */
113 __u8 num_expected
; /* expected last contact index */
115 __u8 touches_by_report
; /* how many touches are present in one report:
116 * 1 means we should use a serial protocol
117 * > 1 means hybrid (multitouch) protocol */
118 bool serial_maybe
; /* need to check for serial protocol */
119 bool curvalid
; /* is the current contact valid? */
120 unsigned mt_flags
; /* flags to pass to input-mt */
123 static void mt_post_parse_default_settings(struct mt_device
*td
);
124 static void mt_post_parse(struct mt_device
*td
);
126 /* classes of device behavior */
127 #define MT_CLS_DEFAULT 0x0001
129 #define MT_CLS_SERIAL 0x0002
130 #define MT_CLS_CONFIDENCE 0x0003
131 #define MT_CLS_CONFIDENCE_CONTACT_ID 0x0004
132 #define MT_CLS_CONFIDENCE_MINUS_ONE 0x0005
133 #define MT_CLS_DUAL_INRANGE_CONTACTID 0x0006
134 #define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0007
135 /* reserved 0x0008 */
136 #define MT_CLS_INRANGE_CONTACTNUMBER 0x0009
137 #define MT_CLS_NSMU 0x000a
138 /* reserved 0x0010 */
139 /* reserved 0x0011 */
140 #define MT_CLS_WIN_8 0x0012
141 #define MT_CLS_EXPORT_ALL_INPUTS 0x0013
143 /* vendor specific classes */
144 #define MT_CLS_3M 0x0101
145 /* reserved 0x0102 */
146 #define MT_CLS_EGALAX 0x0103
147 #define MT_CLS_EGALAX_SERIAL 0x0104
148 #define MT_CLS_TOPSEED 0x0105
149 #define MT_CLS_PANASONIC 0x0106
150 #define MT_CLS_FLATFROG 0x0107
151 #define MT_CLS_GENERALTOUCH_TWOFINGERS 0x0108
152 #define MT_CLS_GENERALTOUCH_PWT_TENFINGERS 0x0109
154 #define MT_DEFAULT_MAXCONTACT 10
155 #define MT_MAX_MAXCONTACT 250
157 #define MT_USB_DEVICE(v, p) HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH, v, p)
158 #define MT_BT_DEVICE(v, p) HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_MULTITOUCH, v, p)
161 * these device-dependent functions determine what slot corresponds
162 * to a valid contact that was just read.
165 static int cypress_compute_slot(struct mt_device
*td
)
167 if (td
->curdata
.contactid
!= 0 || td
->num_received
== 0)
168 return td
->curdata
.contactid
;
173 static struct mt_class mt_classes
[] = {
174 { .name
= MT_CLS_DEFAULT
,
175 .quirks
= MT_QUIRK_ALWAYS_VALID
|
176 MT_QUIRK_CONTACT_CNT_ACCURATE
},
177 { .name
= MT_CLS_NSMU
,
178 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
},
179 { .name
= MT_CLS_SERIAL
,
180 .quirks
= MT_QUIRK_ALWAYS_VALID
},
181 { .name
= MT_CLS_CONFIDENCE
,
182 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
},
183 { .name
= MT_CLS_CONFIDENCE_CONTACT_ID
,
184 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
|
185 MT_QUIRK_SLOT_IS_CONTACTID
},
186 { .name
= MT_CLS_CONFIDENCE_MINUS_ONE
,
187 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
|
188 MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE
},
189 { .name
= MT_CLS_DUAL_INRANGE_CONTACTID
,
190 .quirks
= MT_QUIRK_VALID_IS_INRANGE
|
191 MT_QUIRK_SLOT_IS_CONTACTID
,
193 { .name
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
194 .quirks
= MT_QUIRK_VALID_IS_INRANGE
|
195 MT_QUIRK_SLOT_IS_CONTACTNUMBER
,
197 { .name
= MT_CLS_INRANGE_CONTACTNUMBER
,
198 .quirks
= MT_QUIRK_VALID_IS_INRANGE
|
199 MT_QUIRK_SLOT_IS_CONTACTNUMBER
},
200 { .name
= MT_CLS_WIN_8
,
201 .quirks
= MT_QUIRK_ALWAYS_VALID
|
202 MT_QUIRK_IGNORE_DUPLICATES
|
204 MT_QUIRK_CONTACT_CNT_ACCURATE
},
205 { .name
= MT_CLS_EXPORT_ALL_INPUTS
,
206 .quirks
= MT_QUIRK_ALWAYS_VALID
|
207 MT_QUIRK_CONTACT_CNT_ACCURATE
,
208 .export_all_inputs
= true },
211 * vendor specific classes
214 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
|
215 MT_QUIRK_SLOT_IS_CONTACTID
,
221 { .name
= MT_CLS_EGALAX
,
222 .quirks
= MT_QUIRK_SLOT_IS_CONTACTID
|
223 MT_QUIRK_VALID_IS_INRANGE
,
227 { .name
= MT_CLS_EGALAX_SERIAL
,
228 .quirks
= MT_QUIRK_SLOT_IS_CONTACTID
|
229 MT_QUIRK_ALWAYS_VALID
,
233 { .name
= MT_CLS_TOPSEED
,
234 .quirks
= MT_QUIRK_ALWAYS_VALID
,
238 { .name
= MT_CLS_PANASONIC
,
239 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
,
241 { .name
= MT_CLS_GENERALTOUCH_TWOFINGERS
,
242 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
|
243 MT_QUIRK_VALID_IS_INRANGE
|
244 MT_QUIRK_SLOT_IS_CONTACTID
,
247 { .name
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
248 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
|
249 MT_QUIRK_SLOT_IS_CONTACTID
252 { .name
= MT_CLS_FLATFROG
,
253 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
|
261 static ssize_t
mt_show_quirks(struct device
*dev
,
262 struct device_attribute
*attr
,
265 struct hid_device
*hdev
= container_of(dev
, struct hid_device
, dev
);
266 struct mt_device
*td
= hid_get_drvdata(hdev
);
268 return sprintf(buf
, "%u\n", td
->mtclass
.quirks
);
271 static ssize_t
mt_set_quirks(struct device
*dev
,
272 struct device_attribute
*attr
,
273 const char *buf
, size_t count
)
275 struct hid_device
*hdev
= container_of(dev
, struct hid_device
, dev
);
276 struct mt_device
*td
= hid_get_drvdata(hdev
);
280 if (kstrtoul(buf
, 0, &val
))
283 td
->mtclass
.quirks
= val
;
285 if (td
->cc_index
< 0)
286 td
->mtclass
.quirks
&= ~MT_QUIRK_CONTACT_CNT_ACCURATE
;
291 static DEVICE_ATTR(quirks
, S_IWUSR
| S_IRUGO
, mt_show_quirks
, mt_set_quirks
);
293 static struct attribute
*sysfs_attrs
[] = {
294 &dev_attr_quirks
.attr
,
298 static struct attribute_group mt_attribute_group
= {
302 static void mt_feature_mapping(struct hid_device
*hdev
,
303 struct hid_field
*field
, struct hid_usage
*usage
)
305 struct mt_device
*td
= hid_get_drvdata(hdev
);
307 switch (usage
->hid
) {
308 case HID_DG_INPUTMODE
:
309 /* Ignore if value index is out of bounds. */
310 if (usage
->usage_index
>= field
->report_count
) {
311 dev_err(&hdev
->dev
, "HID_DG_INPUTMODE out of range\n");
315 td
->inputmode
= field
->report
->id
;
316 td
->inputmode_index
= usage
->usage_index
;
319 case HID_DG_CONTACTMAX
:
320 td
->maxcontact_report_id
= field
->report
->id
;
321 td
->maxcontacts
= field
->value
[0];
322 if (!td
->maxcontacts
&&
323 field
->logical_maximum
<= MT_MAX_MAXCONTACT
)
324 td
->maxcontacts
= field
->logical_maximum
;
325 if (td
->mtclass
.maxcontacts
)
326 /* check if the maxcontacts is given by the class */
327 td
->maxcontacts
= td
->mtclass
.maxcontacts
;
333 static void set_abs(struct input_dev
*input
, unsigned int code
,
334 struct hid_field
*field
, int snratio
)
336 int fmin
= field
->logical_minimum
;
337 int fmax
= field
->logical_maximum
;
338 int fuzz
= snratio
? (fmax
- fmin
) / snratio
: 0;
339 input_set_abs_params(input
, code
, fmin
, fmax
, fuzz
, 0);
340 input_abs_set_res(input
, code
, hidinput_calc_abs_res(field
, code
));
343 static void mt_store_field(struct hid_usage
*usage
, struct mt_device
*td
,
344 struct hid_input
*hi
)
346 struct mt_fields
*f
= td
->fields
;
348 if (f
->length
>= HID_MAX_FIELDS
)
351 f
->usages
[f
->length
++] = usage
->hid
;
354 static int mt_touch_input_mapping(struct hid_device
*hdev
, struct hid_input
*hi
,
355 struct hid_field
*field
, struct hid_usage
*usage
,
356 unsigned long **bit
, int *max
)
358 struct mt_device
*td
= hid_get_drvdata(hdev
);
359 struct mt_class
*cls
= &td
->mtclass
;
361 struct hid_usage
*prev_usage
= NULL
;
363 if (field
->application
== HID_DG_TOUCHSCREEN
)
364 td
->mt_flags
|= INPUT_MT_DIRECT
;
367 * Model touchscreens providing buttons as touchpads.
369 if (field
->application
== HID_DG_TOUCHPAD
||
370 (usage
->hid
& HID_USAGE_PAGE
) == HID_UP_BUTTON
) {
371 td
->mt_flags
|= INPUT_MT_POINTER
;
372 td
->inputmode_value
= MT_INPUTMODE_TOUCHPAD
;
375 if (usage
->usage_index
)
376 prev_usage
= &field
->usage
[usage
->usage_index
- 1];
378 switch (usage
->hid
& HID_USAGE_PAGE
) {
381 switch (usage
->hid
) {
383 if (prev_usage
&& (prev_usage
->hid
== usage
->hid
)) {
384 hid_map_usage(hi
, usage
, bit
, max
,
385 EV_ABS
, ABS_MT_TOOL_X
);
386 set_abs(hi
->input
, ABS_MT_TOOL_X
, field
,
389 hid_map_usage(hi
, usage
, bit
, max
,
390 EV_ABS
, ABS_MT_POSITION_X
);
391 set_abs(hi
->input
, ABS_MT_POSITION_X
, field
,
395 mt_store_field(usage
, td
, hi
);
398 if (prev_usage
&& (prev_usage
->hid
== usage
->hid
)) {
399 hid_map_usage(hi
, usage
, bit
, max
,
400 EV_ABS
, ABS_MT_TOOL_Y
);
401 set_abs(hi
->input
, ABS_MT_TOOL_Y
, field
,
404 hid_map_usage(hi
, usage
, bit
, max
,
405 EV_ABS
, ABS_MT_POSITION_Y
);
406 set_abs(hi
->input
, ABS_MT_POSITION_Y
, field
,
410 mt_store_field(usage
, td
, hi
);
415 case HID_UP_DIGITIZER
:
416 switch (usage
->hid
) {
418 if (cls
->quirks
& MT_QUIRK_HOVERING
) {
419 hid_map_usage(hi
, usage
, bit
, max
,
420 EV_ABS
, ABS_MT_DISTANCE
);
421 input_set_abs_params(hi
->input
,
422 ABS_MT_DISTANCE
, 0, 1, 0, 0);
424 mt_store_field(usage
, td
, hi
);
426 case HID_DG_CONFIDENCE
:
427 mt_store_field(usage
, td
, hi
);
429 case HID_DG_TIPSWITCH
:
430 hid_map_usage(hi
, usage
, bit
, max
, EV_KEY
, BTN_TOUCH
);
431 input_set_capability(hi
->input
, EV_KEY
, BTN_TOUCH
);
432 mt_store_field(usage
, td
, hi
);
434 case HID_DG_CONTACTID
:
435 mt_store_field(usage
, td
, hi
);
436 td
->touches_by_report
++;
437 td
->mt_report_id
= field
->report
->id
;
440 hid_map_usage(hi
, usage
, bit
, max
,
441 EV_ABS
, ABS_MT_TOUCH_MAJOR
);
442 if (!(cls
->quirks
& MT_QUIRK_NO_AREA
))
443 set_abs(hi
->input
, ABS_MT_TOUCH_MAJOR
, field
,
445 mt_store_field(usage
, td
, hi
);
448 hid_map_usage(hi
, usage
, bit
, max
,
449 EV_ABS
, ABS_MT_TOUCH_MINOR
);
450 if (!(cls
->quirks
& MT_QUIRK_NO_AREA
)) {
451 set_abs(hi
->input
, ABS_MT_TOUCH_MINOR
, field
,
453 input_set_abs_params(hi
->input
,
454 ABS_MT_ORIENTATION
, 0, 1, 0, 0);
456 mt_store_field(usage
, td
, hi
);
458 case HID_DG_TIPPRESSURE
:
459 hid_map_usage(hi
, usage
, bit
, max
,
460 EV_ABS
, ABS_MT_PRESSURE
);
461 set_abs(hi
->input
, ABS_MT_PRESSURE
, field
,
463 mt_store_field(usage
, td
, hi
);
465 case HID_DG_CONTACTCOUNT
:
466 /* Ignore if indexes are out of bounds. */
467 if (field
->index
>= field
->report
->maxfield
||
468 usage
->usage_index
>= field
->report_count
)
470 td
->cc_index
= field
->index
;
471 td
->cc_value_index
= usage
->usage_index
;
473 case HID_DG_CONTACTMAX
:
474 /* we don't set td->last_slot_field as contactcount and
475 * contact max are global to the report */
478 /* Legacy devices use TIPSWITCH and not TOUCH.
479 * Let's just ignore this field. */
482 /* let hid-input decide for the others */
486 code
= BTN_MOUSE
+ ((usage
->hid
- 1) & HID_USAGE
);
487 hid_map_usage(hi
, usage
, bit
, max
, EV_KEY
, code
);
488 input_set_capability(hi
->input
, EV_KEY
, code
);
492 /* we do not want to map these: no input-oriented meaning */
499 static int mt_touch_input_mapped(struct hid_device
*hdev
, struct hid_input
*hi
,
500 struct hid_field
*field
, struct hid_usage
*usage
,
501 unsigned long **bit
, int *max
)
503 if (usage
->type
== EV_KEY
|| usage
->type
== EV_ABS
)
504 set_bit(usage
->type
, hi
->input
->evbit
);
509 static int mt_compute_slot(struct mt_device
*td
, struct input_dev
*input
)
511 __s32 quirks
= td
->mtclass
.quirks
;
513 if (quirks
& MT_QUIRK_SLOT_IS_CONTACTID
)
514 return td
->curdata
.contactid
;
516 if (quirks
& MT_QUIRK_CYPRESS
)
517 return cypress_compute_slot(td
);
519 if (quirks
& MT_QUIRK_SLOT_IS_CONTACTNUMBER
)
520 return td
->num_received
;
522 if (quirks
& MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE
)
523 return td
->curdata
.contactid
- 1;
525 return input_mt_get_slot_by_key(input
, td
->curdata
.contactid
);
529 * this function is called when a whole contact has been processed,
530 * so that it can assign it to a slot and store the data there
532 static void mt_complete_slot(struct mt_device
*td
, struct input_dev
*input
)
534 if ((td
->mtclass
.quirks
& MT_QUIRK_CONTACT_CNT_ACCURATE
) &&
535 td
->num_received
>= td
->num_expected
)
538 if (td
->curvalid
|| (td
->mtclass
.quirks
& MT_QUIRK_ALWAYS_VALID
)) {
539 int slotnum
= mt_compute_slot(td
, input
);
540 struct mt_slot
*s
= &td
->curdata
;
541 struct input_mt
*mt
= input
->mt
;
543 if (slotnum
< 0 || slotnum
>= td
->maxcontacts
)
546 if ((td
->mtclass
.quirks
& MT_QUIRK_IGNORE_DUPLICATES
) && mt
) {
547 struct input_mt_slot
*slot
= &mt
->slots
[slotnum
];
548 if (input_mt_is_active(slot
) &&
549 input_mt_is_used(mt
, slot
))
553 input_mt_slot(input
, slotnum
);
554 input_mt_report_slot_state(input
, MT_TOOL_FINGER
,
555 s
->touch_state
|| s
->inrange_state
);
556 if (s
->touch_state
|| s
->inrange_state
) {
557 /* this finger is in proximity of the sensor */
558 int wide
= (s
->w
> s
->h
);
559 /* divided by two to match visual scale of touch */
560 int major
= max(s
->w
, s
->h
) >> 1;
561 int minor
= min(s
->w
, s
->h
) >> 1;
563 input_event(input
, EV_ABS
, ABS_MT_POSITION_X
, s
->x
);
564 input_event(input
, EV_ABS
, ABS_MT_POSITION_Y
, s
->y
);
565 input_event(input
, EV_ABS
, ABS_MT_TOOL_X
, s
->cx
);
566 input_event(input
, EV_ABS
, ABS_MT_TOOL_Y
, s
->cy
);
567 input_event(input
, EV_ABS
, ABS_MT_DISTANCE
,
569 input_event(input
, EV_ABS
, ABS_MT_ORIENTATION
, wide
);
570 input_event(input
, EV_ABS
, ABS_MT_PRESSURE
, s
->p
);
571 input_event(input
, EV_ABS
, ABS_MT_TOUCH_MAJOR
, major
);
572 input_event(input
, EV_ABS
, ABS_MT_TOUCH_MINOR
, minor
);
580 * this function is called when a whole packet has been received and processed,
581 * so that it can decide what to send to the input layer.
583 static void mt_sync_frame(struct mt_device
*td
, struct input_dev
*input
)
585 input_mt_sync_frame(input
);
587 td
->num_received
= 0;
590 static int mt_touch_event(struct hid_device
*hid
, struct hid_field
*field
,
591 struct hid_usage
*usage
, __s32 value
)
593 /* we will handle the hidinput part later, now remains hiddev */
594 if (hid
->claimed
& HID_CLAIMED_HIDDEV
&& hid
->hiddev_hid_event
)
595 hid
->hiddev_hid_event(hid
, field
, usage
, value
);
600 static void mt_process_mt_event(struct hid_device
*hid
, struct hid_field
*field
,
601 struct hid_usage
*usage
, __s32 value
)
603 struct mt_device
*td
= hid_get_drvdata(hid
);
604 __s32 quirks
= td
->mtclass
.quirks
;
605 struct input_dev
*input
= field
->hidinput
->input
;
607 if (hid
->claimed
& HID_CLAIMED_INPUT
) {
608 switch (usage
->hid
) {
610 if (quirks
& MT_QUIRK_VALID_IS_INRANGE
)
611 td
->curvalid
= value
;
612 if (quirks
& MT_QUIRK_HOVERING
)
613 td
->curdata
.inrange_state
= value
;
615 case HID_DG_TIPSWITCH
:
616 if (quirks
& MT_QUIRK_NOT_SEEN_MEANS_UP
)
617 td
->curvalid
= value
;
618 td
->curdata
.touch_state
= value
;
620 case HID_DG_CONFIDENCE
:
621 if (quirks
& MT_QUIRK_VALID_IS_CONFIDENCE
)
622 td
->curvalid
= value
;
624 case HID_DG_CONTACTID
:
625 td
->curdata
.contactid
= value
;
627 case HID_DG_TIPPRESSURE
:
628 td
->curdata
.p
= value
;
631 if (usage
->code
== ABS_MT_TOOL_X
)
632 td
->curdata
.cx
= value
;
634 td
->curdata
.x
= value
;
637 if (usage
->code
== ABS_MT_TOOL_Y
)
638 td
->curdata
.cy
= value
;
640 td
->curdata
.y
= value
;
643 td
->curdata
.w
= value
;
646 td
->curdata
.h
= value
;
648 case HID_DG_CONTACTCOUNT
:
656 input_event(input
, usage
->type
, usage
->code
,
661 if (usage
->usage_index
+ 1 == field
->report_count
) {
662 /* we only take into account the last report. */
663 if (usage
->hid
== td
->last_slot_field
)
664 mt_complete_slot(td
, field
->hidinput
->input
);
670 static void mt_touch_report(struct hid_device
*hid
, struct hid_report
*report
)
672 struct mt_device
*td
= hid_get_drvdata(hid
);
673 struct hid_field
*field
;
678 * Includes multi-packet support where subsequent
679 * packets are sent with zero contactcount.
681 if (td
->cc_index
>= 0) {
682 struct hid_field
*field
= report
->field
[td
->cc_index
];
683 int value
= field
->value
[td
->cc_value_index
];
685 td
->num_expected
= value
;
688 for (r
= 0; r
< report
->maxfield
; r
++) {
689 field
= report
->field
[r
];
690 count
= field
->report_count
;
692 if (!(HID_MAIN_ITEM_VARIABLE
& field
->flags
))
695 for (n
= 0; n
< count
; n
++)
696 mt_process_mt_event(hid
, field
, &field
->usage
[n
],
700 if (td
->num_received
>= td
->num_expected
)
701 mt_sync_frame(td
, report
->field
[0]->hidinput
->input
);
704 static void mt_touch_input_configured(struct hid_device
*hdev
,
705 struct hid_input
*hi
)
707 struct mt_device
*td
= hid_get_drvdata(hdev
);
708 struct mt_class
*cls
= &td
->mtclass
;
709 struct input_dev
*input
= hi
->input
;
711 if (!td
->maxcontacts
)
712 td
->maxcontacts
= MT_DEFAULT_MAXCONTACT
;
715 if (td
->serial_maybe
)
716 mt_post_parse_default_settings(td
);
718 if (cls
->is_indirect
)
719 td
->mt_flags
|= INPUT_MT_POINTER
;
721 if (cls
->quirks
& MT_QUIRK_NOT_SEEN_MEANS_UP
)
722 td
->mt_flags
|= INPUT_MT_DROP_UNUSED
;
724 input_mt_init_slots(input
, td
->maxcontacts
, td
->mt_flags
);
729 static int mt_input_mapping(struct hid_device
*hdev
, struct hid_input
*hi
,
730 struct hid_field
*field
, struct hid_usage
*usage
,
731 unsigned long **bit
, int *max
)
733 struct mt_device
*td
= hid_get_drvdata(hdev
);
736 * If mtclass.export_all_inputs is not set, only map fields from
737 * TouchScreen or TouchPad collections. We need to ignore fields
738 * that belong to other collections such as Mouse that might have
739 * the same GenericDesktop usages.
741 if (!td
->mtclass
.export_all_inputs
&&
742 field
->application
!= HID_DG_TOUCHSCREEN
&&
743 field
->application
!= HID_DG_PEN
&&
744 field
->application
!= HID_DG_TOUCHPAD
)
748 * some egalax touchscreens have "application == HID_DG_TOUCHSCREEN"
751 if (field
->physical
== HID_DG_STYLUS
)
754 if (field
->application
== HID_DG_TOUCHSCREEN
||
755 field
->application
== HID_DG_TOUCHPAD
)
756 return mt_touch_input_mapping(hdev
, hi
, field
, usage
, bit
, max
);
758 /* let hid-core decide for the others */
762 static int mt_input_mapped(struct hid_device
*hdev
, struct hid_input
*hi
,
763 struct hid_field
*field
, struct hid_usage
*usage
,
764 unsigned long **bit
, int *max
)
767 * some egalax touchscreens have "application == HID_DG_TOUCHSCREEN"
770 if (field
->physical
== HID_DG_STYLUS
)
773 if (field
->application
== HID_DG_TOUCHSCREEN
||
774 field
->application
== HID_DG_TOUCHPAD
)
775 return mt_touch_input_mapped(hdev
, hi
, field
, usage
, bit
, max
);
777 /* let hid-core decide for the others */
781 static int mt_event(struct hid_device
*hid
, struct hid_field
*field
,
782 struct hid_usage
*usage
, __s32 value
)
784 struct mt_device
*td
= hid_get_drvdata(hid
);
786 if (field
->report
->id
== td
->mt_report_id
)
787 return mt_touch_event(hid
, field
, usage
, value
);
792 static void mt_report(struct hid_device
*hid
, struct hid_report
*report
)
794 struct mt_device
*td
= hid_get_drvdata(hid
);
795 struct hid_field
*field
= report
->field
[0];
797 if (!(hid
->claimed
& HID_CLAIMED_INPUT
))
800 if (report
->id
== td
->mt_report_id
)
801 return mt_touch_report(hid
, report
);
803 if (field
&& field
->hidinput
&& field
->hidinput
->input
)
804 input_sync(field
->hidinput
->input
);
807 static void mt_set_input_mode(struct hid_device
*hdev
)
809 struct mt_device
*td
= hid_get_drvdata(hdev
);
810 struct hid_report
*r
;
811 struct hid_report_enum
*re
;
813 if (td
->inputmode
< 0)
816 re
= &(hdev
->report_enum
[HID_FEATURE_REPORT
]);
817 r
= re
->report_id_hash
[td
->inputmode
];
819 r
->field
[0]->value
[td
->inputmode_index
] = td
->inputmode_value
;
820 hid_hw_request(hdev
, r
, HID_REQ_SET_REPORT
);
824 static void mt_set_maxcontacts(struct hid_device
*hdev
)
826 struct mt_device
*td
= hid_get_drvdata(hdev
);
827 struct hid_report
*r
;
828 struct hid_report_enum
*re
;
831 if (td
->maxcontact_report_id
< 0)
834 if (!td
->mtclass
.maxcontacts
)
837 re
= &hdev
->report_enum
[HID_FEATURE_REPORT
];
838 r
= re
->report_id_hash
[td
->maxcontact_report_id
];
840 max
= td
->mtclass
.maxcontacts
;
841 fieldmax
= r
->field
[0]->logical_maximum
;
842 max
= min(fieldmax
, max
);
843 if (r
->field
[0]->value
[0] != max
) {
844 r
->field
[0]->value
[0] = max
;
845 hid_hw_request(hdev
, r
, HID_REQ_SET_REPORT
);
850 static void mt_post_parse_default_settings(struct mt_device
*td
)
852 __s32 quirks
= td
->mtclass
.quirks
;
854 /* unknown serial device needs special quirks */
855 if (td
->touches_by_report
== 1) {
856 quirks
|= MT_QUIRK_ALWAYS_VALID
;
857 quirks
&= ~MT_QUIRK_NOT_SEEN_MEANS_UP
;
858 quirks
&= ~MT_QUIRK_VALID_IS_INRANGE
;
859 quirks
&= ~MT_QUIRK_VALID_IS_CONFIDENCE
;
860 quirks
&= ~MT_QUIRK_CONTACT_CNT_ACCURATE
;
863 td
->mtclass
.quirks
= quirks
;
866 static void mt_post_parse(struct mt_device
*td
)
868 struct mt_fields
*f
= td
->fields
;
869 struct mt_class
*cls
= &td
->mtclass
;
871 if (td
->touches_by_report
> 0) {
872 int field_count_per_touch
= f
->length
/ td
->touches_by_report
;
873 td
->last_slot_field
= f
->usages
[field_count_per_touch
- 1];
876 if (td
->cc_index
< 0)
877 cls
->quirks
&= ~MT_QUIRK_CONTACT_CNT_ACCURATE
;
880 static void mt_input_configured(struct hid_device
*hdev
, struct hid_input
*hi
)
882 struct mt_device
*td
= hid_get_drvdata(hdev
);
884 const char *suffix
= NULL
;
885 struct hid_field
*field
= hi
->report
->field
[0];
887 if (hi
->report
->id
== td
->mt_report_id
)
888 mt_touch_input_configured(hdev
, hi
);
891 * some egalax touchscreens have "application == HID_DG_TOUCHSCREEN"
892 * for the stylus. Check this first, and then rely on the application
895 if (hi
->report
->field
[0]->physical
== HID_DG_STYLUS
) {
897 /* force BTN_STYLUS to allow tablet matching in udev */
898 __set_bit(BTN_STYLUS
, hi
->input
->keybit
);
900 switch (field
->application
) {
901 case HID_GD_KEYBOARD
:
912 /* force BTN_STYLUS to allow tablet matching in udev */
913 __set_bit(BTN_STYLUS
, hi
->input
->keybit
);
915 case HID_DG_TOUCHSCREEN
:
916 /* we do not set suffix = "Touchscreen" */
918 case HID_GD_SYSTEM_CONTROL
:
919 suffix
= "System Control";
921 case HID_CP_CONSUMER_CONTROL
:
922 suffix
= "Consumer Control";
931 name
= devm_kzalloc(&hi
->input
->dev
,
932 strlen(hdev
->name
) + strlen(suffix
) + 2,
935 sprintf(name
, "%s %s", hdev
->name
, suffix
);
936 hi
->input
->name
= name
;
941 static int mt_probe(struct hid_device
*hdev
, const struct hid_device_id
*id
)
944 struct mt_device
*td
;
945 struct mt_class
*mtclass
= mt_classes
; /* MT_CLS_DEFAULT */
947 for (i
= 0; mt_classes
[i
].name
; i
++) {
948 if (id
->driver_data
== mt_classes
[i
].name
) {
949 mtclass
= &(mt_classes
[i
]);
954 /* This allows the driver to correctly support devices
955 * that emit events over several HID messages.
957 hdev
->quirks
|= HID_QUIRK_NO_INPUT_SYNC
;
960 * This allows the driver to handle different input sensors
961 * that emits events through different reports on the same HID
964 hdev
->quirks
|= HID_QUIRK_MULTI_INPUT
;
965 hdev
->quirks
|= HID_QUIRK_NO_EMPTY_INPUT
;
968 * Handle special quirks for Windows 8 certified devices.
970 if (id
->group
== HID_GROUP_MULTITOUCH_WIN_8
)
972 * Some multitouch screens do not like to be polled for input
973 * reports. Fortunately, the Win8 spec says that all touches
974 * should be sent during each report, making the initialization
975 * of input reports unnecessary.
977 hdev
->quirks
|= HID_QUIRK_NO_INIT_INPUT_REPORTS
;
979 td
= devm_kzalloc(&hdev
->dev
, sizeof(struct mt_device
), GFP_KERNEL
);
981 dev_err(&hdev
->dev
, "cannot allocate multitouch data\n");
984 td
->mtclass
= *mtclass
;
986 td
->maxcontact_report_id
= -1;
987 td
->inputmode_value
= MT_INPUTMODE_TOUCHSCREEN
;
989 td
->mt_report_id
= -1;
990 hid_set_drvdata(hdev
, td
);
992 td
->fields
= devm_kzalloc(&hdev
->dev
, sizeof(struct mt_fields
),
995 dev_err(&hdev
->dev
, "cannot allocate multitouch fields data\n");
999 if (id
->vendor
== HID_ANY_ID
&& id
->product
== HID_ANY_ID
)
1000 td
->serial_maybe
= true;
1002 ret
= hid_parse(hdev
);
1006 ret
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
1010 ret
= sysfs_create_group(&hdev
->dev
.kobj
, &mt_attribute_group
);
1012 mt_set_maxcontacts(hdev
);
1013 mt_set_input_mode(hdev
);
1015 /* release .fields memory as it is not used anymore */
1016 devm_kfree(&hdev
->dev
, td
->fields
);
1023 static int mt_reset_resume(struct hid_device
*hdev
)
1025 mt_set_maxcontacts(hdev
);
1026 mt_set_input_mode(hdev
);
1030 static int mt_resume(struct hid_device
*hdev
)
1032 /* Some Elan legacy devices require SET_IDLE to be set on resume.
1033 * It should be safe to send it to other devices too.
1034 * Tested on 3M, Stantum, Cypress, Zytronic, eGalax, and Elan panels. */
1036 hid_hw_idle(hdev
, 0, 0, HID_REQ_SET_IDLE
);
1042 static void mt_remove(struct hid_device
*hdev
)
1044 sysfs_remove_group(&hdev
->dev
.kobj
, &mt_attribute_group
);
1049 * This list contains only:
1050 * - VID/PID of products not working with the default multitouch handling
1051 * - 2 generic rules.
1052 * So there is no point in adding here any device with MT_CLS_DEFAULT.
1054 static const struct hid_device_id mt_devices
[] = {
1057 { .driver_data
= MT_CLS_3M
,
1058 MT_USB_DEVICE(USB_VENDOR_ID_3M
,
1059 USB_DEVICE_ID_3M1968
) },
1060 { .driver_data
= MT_CLS_3M
,
1061 MT_USB_DEVICE(USB_VENDOR_ID_3M
,
1062 USB_DEVICE_ID_3M2256
) },
1063 { .driver_data
= MT_CLS_3M
,
1064 MT_USB_DEVICE(USB_VENDOR_ID_3M
,
1065 USB_DEVICE_ID_3M3266
) },
1068 { .driver_data
= MT_CLS_EXPORT_ALL_INPUTS
,
1069 MT_USB_DEVICE(USB_VENDOR_ID_ANTON
,
1070 USB_DEVICE_ID_ANTON_TOUCH_PAD
) },
1073 { .driver_data
= MT_CLS_SERIAL
,
1074 MT_USB_DEVICE(USB_VENDOR_ID_ATMEL
,
1075 USB_DEVICE_ID_ATMEL_MXT_DIGITIZER
) },
1077 /* Baanto multitouch devices */
1078 { .driver_data
= MT_CLS_NSMU
,
1079 MT_USB_DEVICE(USB_VENDOR_ID_BAANTO
,
1080 USB_DEVICE_ID_BAANTO_MT_190W2
) },
1083 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
1084 MT_USB_DEVICE(USB_VENDOR_ID_CANDO
,
1085 USB_DEVICE_ID_CANDO_MULTI_TOUCH
) },
1086 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
1087 MT_USB_DEVICE(USB_VENDOR_ID_CANDO
,
1088 USB_DEVICE_ID_CANDO_MULTI_TOUCH_15_6
) },
1090 /* Chunghwa Telecom touch panels */
1091 { .driver_data
= MT_CLS_NSMU
,
1092 MT_USB_DEVICE(USB_VENDOR_ID_CHUNGHWAT
,
1093 USB_DEVICE_ID_CHUNGHWAT_MULTITOUCH
) },
1095 /* CVTouch panels */
1096 { .driver_data
= MT_CLS_NSMU
,
1097 MT_USB_DEVICE(USB_VENDOR_ID_CVTOUCH
,
1098 USB_DEVICE_ID_CVTOUCH_SCREEN
) },
1100 /* eGalax devices (resistive) */
1101 { .driver_data
= MT_CLS_EGALAX
,
1102 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1103 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480D
) },
1104 { .driver_data
= MT_CLS_EGALAX
,
1105 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1106 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480E
) },
1108 /* eGalax devices (capacitive) */
1109 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1110 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1111 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7207
) },
1112 { .driver_data
= MT_CLS_EGALAX
,
1113 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1114 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_720C
) },
1115 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1116 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1117 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7224
) },
1118 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1119 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1120 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_722A
) },
1121 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1122 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1123 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_725E
) },
1124 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1125 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1126 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7262
) },
1127 { .driver_data
= MT_CLS_EGALAX
,
1128 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1129 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_726B
) },
1130 { .driver_data
= MT_CLS_EGALAX
,
1131 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1132 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72A1
) },
1133 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1134 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1135 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72AA
) },
1136 { .driver_data
= MT_CLS_EGALAX
,
1137 HID_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1138 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72C4
) },
1139 { .driver_data
= MT_CLS_EGALAX
,
1140 HID_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1141 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72D0
) },
1142 { .driver_data
= MT_CLS_EGALAX
,
1143 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1144 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72FA
) },
1145 { .driver_data
= MT_CLS_EGALAX
,
1146 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1147 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7302
) },
1148 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1149 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1150 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7349
) },
1151 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1152 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1153 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_73F7
) },
1154 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1155 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1156 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_A001
) },
1158 /* Flatfrog Panels */
1159 { .driver_data
= MT_CLS_FLATFROG
,
1160 MT_USB_DEVICE(USB_VENDOR_ID_FLATFROG
,
1161 USB_DEVICE_ID_MULTITOUCH_3200
) },
1163 /* FocalTech Panels */
1164 { .driver_data
= MT_CLS_SERIAL
,
1165 MT_USB_DEVICE(USB_VENDOR_ID_CYGNAL
,
1166 USB_DEVICE_ID_FOCALTECH_FTXXXX_MULTITOUCH
) },
1168 /* GeneralTouch panel */
1169 { .driver_data
= MT_CLS_GENERALTOUCH_TWOFINGERS
,
1170 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1171 USB_DEVICE_ID_GENERAL_TOUCH_WIN7_TWOFINGERS
) },
1172 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1173 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1174 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PWT_TENFINGERS
) },
1175 { .driver_data
= MT_CLS_GENERALTOUCH_TWOFINGERS
,
1176 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1177 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0101
) },
1178 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1179 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1180 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0102
) },
1181 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1182 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1183 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0106
) },
1184 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1185 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1186 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_010A
) },
1187 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1188 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1189 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_E100
) },
1191 /* Gametel game controller */
1192 { .driver_data
= MT_CLS_NSMU
,
1193 MT_BT_DEVICE(USB_VENDOR_ID_FRUCTEL
,
1194 USB_DEVICE_ID_GAMETEL_MT_MODE
) },
1196 /* GoodTouch panels */
1197 { .driver_data
= MT_CLS_NSMU
,
1198 MT_USB_DEVICE(USB_VENDOR_ID_GOODTOUCH
,
1199 USB_DEVICE_ID_GOODTOUCH_000f
) },
1202 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTID
,
1203 MT_USB_DEVICE(USB_VENDOR_ID_HANVON_ALT
,
1204 USB_DEVICE_ID_HANVON_ALT_MULTITOUCH
) },
1206 /* Ilitek dual touch panel */
1207 { .driver_data
= MT_CLS_NSMU
,
1208 MT_USB_DEVICE(USB_VENDOR_ID_ILITEK
,
1209 USB_DEVICE_ID_ILITEK_MULTITOUCH
) },
1212 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
1213 MT_USB_DEVICE(USB_VENDOR_ID_ASUS
,
1214 USB_DEVICE_ID_ASUS_T91MT
)},
1215 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
1216 MT_USB_DEVICE(USB_VENDOR_ID_ASUS
,
1217 USB_DEVICE_ID_ASUSTEK_MULTITOUCH_YFO
) },
1218 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
1219 MT_USB_DEVICE(USB_VENDOR_ID_TURBOX
,
1220 USB_DEVICE_ID_TURBOX_TOUCHSCREEN_MOSART
) },
1222 /* Panasonic panels */
1223 { .driver_data
= MT_CLS_PANASONIC
,
1224 MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC
,
1225 USB_DEVICE_ID_PANABOARD_UBT780
) },
1226 { .driver_data
= MT_CLS_PANASONIC
,
1227 MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC
,
1228 USB_DEVICE_ID_PANABOARD_UBT880
) },
1231 { .driver_data
= MT_CLS_NSMU
,
1232 MT_USB_DEVICE(USB_VENDOR_ID_NOVATEK
,
1233 USB_DEVICE_ID_NOVATEK_PCT
) },
1235 /* PixArt optical touch screen */
1236 { .driver_data
= MT_CLS_INRANGE_CONTACTNUMBER
,
1237 MT_USB_DEVICE(USB_VENDOR_ID_PIXART
,
1238 USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN
) },
1239 { .driver_data
= MT_CLS_INRANGE_CONTACTNUMBER
,
1240 MT_USB_DEVICE(USB_VENDOR_ID_PIXART
,
1241 USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN1
) },
1242 { .driver_data
= MT_CLS_INRANGE_CONTACTNUMBER
,
1243 MT_USB_DEVICE(USB_VENDOR_ID_PIXART
,
1244 USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN2
) },
1246 /* PixCir-based panels */
1247 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTID
,
1248 MT_USB_DEVICE(USB_VENDOR_ID_CANDO
,
1249 USB_DEVICE_ID_CANDO_PIXCIR_MULTI_TOUCH
) },
1251 /* Quanta-based panels */
1252 { .driver_data
= MT_CLS_CONFIDENCE_CONTACT_ID
,
1253 MT_USB_DEVICE(USB_VENDOR_ID_QUANTA
,
1254 USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3001
) },
1256 /* Stantum panels */
1257 { .driver_data
= MT_CLS_CONFIDENCE
,
1258 MT_USB_DEVICE(USB_VENDOR_ID_STANTUM_STM
,
1259 USB_DEVICE_ID_MTP_STM
)},
1261 /* TopSeed panels */
1262 { .driver_data
= MT_CLS_TOPSEED
,
1263 MT_USB_DEVICE(USB_VENDOR_ID_TOPSEED2
,
1264 USB_DEVICE_ID_TOPSEED2_PERIPAD_701
) },
1266 /* Touch International panels */
1267 { .driver_data
= MT_CLS_NSMU
,
1268 MT_USB_DEVICE(USB_VENDOR_ID_TOUCH_INTL
,
1269 USB_DEVICE_ID_TOUCH_INTL_MULTI_TOUCH
) },
1272 { .driver_data
= MT_CLS_NSMU
,
1273 MT_USB_DEVICE(USB_VENDOR_ID_UNITEC
,
1274 USB_DEVICE_ID_UNITEC_USB_TOUCH_0709
) },
1275 { .driver_data
= MT_CLS_NSMU
,
1276 MT_USB_DEVICE(USB_VENDOR_ID_UNITEC
,
1277 USB_DEVICE_ID_UNITEC_USB_TOUCH_0A19
) },
1279 /* Wistron panels */
1280 { .driver_data
= MT_CLS_NSMU
,
1281 MT_USB_DEVICE(USB_VENDOR_ID_WISTRON
,
1282 USB_DEVICE_ID_WISTRON_OPTICAL_TOUCH
) },
1285 { .driver_data
= MT_CLS_NSMU
,
1286 MT_USB_DEVICE(USB_VENDOR_ID_XAT
,
1287 USB_DEVICE_ID_XAT_CSR
) },
1290 { .driver_data
= MT_CLS_NSMU
,
1291 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1292 USB_DEVICE_ID_XIROKU_SPX
) },
1293 { .driver_data
= MT_CLS_NSMU
,
1294 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1295 USB_DEVICE_ID_XIROKU_MPX
) },
1296 { .driver_data
= MT_CLS_NSMU
,
1297 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1298 USB_DEVICE_ID_XIROKU_CSR
) },
1299 { .driver_data
= MT_CLS_NSMU
,
1300 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1301 USB_DEVICE_ID_XIROKU_SPX1
) },
1302 { .driver_data
= MT_CLS_NSMU
,
1303 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1304 USB_DEVICE_ID_XIROKU_MPX1
) },
1305 { .driver_data
= MT_CLS_NSMU
,
1306 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1307 USB_DEVICE_ID_XIROKU_CSR1
) },
1308 { .driver_data
= MT_CLS_NSMU
,
1309 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1310 USB_DEVICE_ID_XIROKU_SPX2
) },
1311 { .driver_data
= MT_CLS_NSMU
,
1312 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1313 USB_DEVICE_ID_XIROKU_MPX2
) },
1314 { .driver_data
= MT_CLS_NSMU
,
1315 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1316 USB_DEVICE_ID_XIROKU_CSR2
) },
1318 /* Generic MT device */
1319 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_MULTITOUCH
, HID_ANY_ID
, HID_ANY_ID
) },
1321 /* Generic Win 8 certified MT device */
1322 { .driver_data
= MT_CLS_WIN_8
,
1323 HID_DEVICE(HID_BUS_ANY
, HID_GROUP_MULTITOUCH_WIN_8
,
1324 HID_ANY_ID
, HID_ANY_ID
) },
1327 MODULE_DEVICE_TABLE(hid
, mt_devices
);
1329 static const struct hid_usage_id mt_grabbed_usages
[] = {
1330 { HID_ANY_ID
, HID_ANY_ID
, HID_ANY_ID
},
1331 { HID_ANY_ID
- 1, HID_ANY_ID
- 1, HID_ANY_ID
- 1}
1334 static struct hid_driver mt_driver
= {
1335 .name
= "hid-multitouch",
1336 .id_table
= mt_devices
,
1338 .remove
= mt_remove
,
1339 .input_mapping
= mt_input_mapping
,
1340 .input_mapped
= mt_input_mapped
,
1341 .input_configured
= mt_input_configured
,
1342 .feature_mapping
= mt_feature_mapping
,
1343 .usage_table
= mt_grabbed_usages
,
1345 .report
= mt_report
,
1347 .reset_resume
= mt_reset_resume
,
1348 .resume
= mt_resume
,
1351 module_hid_driver(mt_driver
);