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/input/mt.h>
46 #include <linux/string.h>
49 MODULE_AUTHOR("Stephane Chatty <chatty@enac.fr>");
50 MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
51 MODULE_DESCRIPTION("HID multitouch panels");
52 MODULE_LICENSE("GPL");
56 /* quirks to control the device */
57 #define MT_QUIRK_NOT_SEEN_MEANS_UP (1 << 0)
58 #define MT_QUIRK_SLOT_IS_CONTACTID (1 << 1)
59 #define MT_QUIRK_CYPRESS (1 << 2)
60 #define MT_QUIRK_SLOT_IS_CONTACTNUMBER (1 << 3)
61 #define MT_QUIRK_ALWAYS_VALID (1 << 4)
62 #define MT_QUIRK_VALID_IS_INRANGE (1 << 5)
63 #define MT_QUIRK_VALID_IS_CONFIDENCE (1 << 6)
64 #define MT_QUIRK_CONFIDENCE (1 << 7)
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)
70 #define MT_QUIRK_FORCE_GET_FEATURE (1 << 13)
72 #define MT_INPUTMODE_TOUCHSCREEN 0x02
73 #define MT_INPUTMODE_TOUCHPAD 0x03
75 #define MT_BUTTONTYPE_CLICKPAD 0
78 __s32 x
, y
, cx
, cy
, p
, w
, h
;
79 __s32 contactid
; /* the device ContactID assigned to this slot */
80 bool touch_state
; /* is the touch valid? */
81 bool inrange_state
; /* is the finger in proximity of the sensor? */
82 bool confidence_state
; /* is the touch made by a finger? */
86 __s32 name
; /* MT_CLS */
88 __s32 sn_move
; /* Signal/noise ratio for move events */
89 __s32 sn_width
; /* Signal/noise ratio for width events */
90 __s32 sn_height
; /* Signal/noise ratio for height events */
91 __s32 sn_pressure
; /* Signal/noise ratio for pressure events */
93 bool is_indirect
; /* true for touchpads */
94 bool export_all_inputs
; /* do not ignore mouse, keyboards, etc... */
98 unsigned usages
[HID_MAX_FIELDS
];
103 struct mt_slot curdata
; /* placeholder of incoming data */
104 struct mt_class mtclass
; /* our mt device class */
105 struct mt_fields
*fields
; /* temporary placeholder for storing the
107 int cc_index
; /* contact count field index in the report */
108 int cc_value_index
; /* contact count value index in the field */
109 unsigned last_slot_field
; /* the last field of a slot */
110 unsigned mt_report_id
; /* the report ID of the multitouch device */
111 unsigned long initial_quirks
; /* initial quirks state */
112 __s16 inputmode
; /* InputMode HID feature, -1 if non-existent */
113 __s16 inputmode_index
; /* InputMode HID feature index in the report */
114 __s16 maxcontact_report_id
; /* Maximum Contact Number HID feature,
115 -1 if non-existent */
116 __u8 inputmode_value
; /* InputMode HID feature value */
117 __u8 num_received
; /* how many contacts we received */
118 __u8 num_expected
; /* expected last contact index */
120 __u8 touches_by_report
; /* how many touches are present in one report:
121 * 1 means we should use a serial protocol
122 * > 1 means hybrid (multitouch) protocol */
123 __u8 buttons_count
; /* number of physical buttons per touchpad */
124 bool is_buttonpad
; /* is this device a button pad? */
125 bool serial_maybe
; /* need to check for serial protocol */
126 bool curvalid
; /* is the current contact valid? */
127 unsigned mt_flags
; /* flags to pass to input-mt */
130 static void mt_post_parse_default_settings(struct mt_device
*td
);
131 static void mt_post_parse(struct mt_device
*td
);
133 /* classes of device behavior */
134 #define MT_CLS_DEFAULT 0x0001
136 #define MT_CLS_SERIAL 0x0002
137 #define MT_CLS_CONFIDENCE 0x0003
138 #define MT_CLS_CONFIDENCE_CONTACT_ID 0x0004
139 #define MT_CLS_CONFIDENCE_MINUS_ONE 0x0005
140 #define MT_CLS_DUAL_INRANGE_CONTACTID 0x0006
141 #define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0007
142 /* reserved 0x0008 */
143 #define MT_CLS_INRANGE_CONTACTNUMBER 0x0009
144 #define MT_CLS_NSMU 0x000a
145 /* reserved 0x0010 */
146 /* reserved 0x0011 */
147 #define MT_CLS_WIN_8 0x0012
148 #define MT_CLS_EXPORT_ALL_INPUTS 0x0013
150 /* vendor specific classes */
151 #define MT_CLS_3M 0x0101
152 /* reserved 0x0102 */
153 #define MT_CLS_EGALAX 0x0103
154 #define MT_CLS_EGALAX_SERIAL 0x0104
155 #define MT_CLS_TOPSEED 0x0105
156 #define MT_CLS_PANASONIC 0x0106
157 #define MT_CLS_FLATFROG 0x0107
158 #define MT_CLS_GENERALTOUCH_TWOFINGERS 0x0108
159 #define MT_CLS_GENERALTOUCH_PWT_TENFINGERS 0x0109
160 #define MT_CLS_VTL 0x0110
162 #define MT_DEFAULT_MAXCONTACT 10
163 #define MT_MAX_MAXCONTACT 250
165 #define MT_USB_DEVICE(v, p) HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH, v, p)
166 #define MT_BT_DEVICE(v, p) HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_MULTITOUCH, v, p)
169 * these device-dependent functions determine what slot corresponds
170 * to a valid contact that was just read.
173 static int cypress_compute_slot(struct mt_device
*td
)
175 if (td
->curdata
.contactid
!= 0 || td
->num_received
== 0)
176 return td
->curdata
.contactid
;
181 static struct mt_class mt_classes
[] = {
182 { .name
= MT_CLS_DEFAULT
,
183 .quirks
= MT_QUIRK_ALWAYS_VALID
|
184 MT_QUIRK_CONTACT_CNT_ACCURATE
},
185 { .name
= MT_CLS_NSMU
,
186 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
},
187 { .name
= MT_CLS_SERIAL
,
188 .quirks
= MT_QUIRK_ALWAYS_VALID
},
189 { .name
= MT_CLS_CONFIDENCE
,
190 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
},
191 { .name
= MT_CLS_CONFIDENCE_CONTACT_ID
,
192 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
|
193 MT_QUIRK_SLOT_IS_CONTACTID
},
194 { .name
= MT_CLS_CONFIDENCE_MINUS_ONE
,
195 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
|
196 MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE
},
197 { .name
= MT_CLS_DUAL_INRANGE_CONTACTID
,
198 .quirks
= MT_QUIRK_VALID_IS_INRANGE
|
199 MT_QUIRK_SLOT_IS_CONTACTID
,
201 { .name
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
202 .quirks
= MT_QUIRK_VALID_IS_INRANGE
|
203 MT_QUIRK_SLOT_IS_CONTACTNUMBER
,
205 { .name
= MT_CLS_INRANGE_CONTACTNUMBER
,
206 .quirks
= MT_QUIRK_VALID_IS_INRANGE
|
207 MT_QUIRK_SLOT_IS_CONTACTNUMBER
},
208 { .name
= MT_CLS_WIN_8
,
209 .quirks
= MT_QUIRK_ALWAYS_VALID
|
210 MT_QUIRK_IGNORE_DUPLICATES
|
212 MT_QUIRK_CONTACT_CNT_ACCURATE
},
213 { .name
= MT_CLS_EXPORT_ALL_INPUTS
,
214 .quirks
= MT_QUIRK_ALWAYS_VALID
|
215 MT_QUIRK_CONTACT_CNT_ACCURATE
,
216 .export_all_inputs
= true },
219 * vendor specific classes
222 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
|
223 MT_QUIRK_SLOT_IS_CONTACTID
,
229 { .name
= MT_CLS_EGALAX
,
230 .quirks
= MT_QUIRK_SLOT_IS_CONTACTID
|
231 MT_QUIRK_VALID_IS_INRANGE
,
235 { .name
= MT_CLS_EGALAX_SERIAL
,
236 .quirks
= MT_QUIRK_SLOT_IS_CONTACTID
|
237 MT_QUIRK_ALWAYS_VALID
,
241 { .name
= MT_CLS_TOPSEED
,
242 .quirks
= MT_QUIRK_ALWAYS_VALID
,
246 { .name
= MT_CLS_PANASONIC
,
247 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
,
249 { .name
= MT_CLS_GENERALTOUCH_TWOFINGERS
,
250 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
|
251 MT_QUIRK_VALID_IS_INRANGE
|
252 MT_QUIRK_SLOT_IS_CONTACTID
,
255 { .name
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
256 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
|
257 MT_QUIRK_SLOT_IS_CONTACTID
260 { .name
= MT_CLS_FLATFROG
,
261 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
|
266 { .name
= MT_CLS_VTL
,
267 .quirks
= MT_QUIRK_ALWAYS_VALID
|
268 MT_QUIRK_CONTACT_CNT_ACCURATE
|
269 MT_QUIRK_FORCE_GET_FEATURE
,
274 static ssize_t
mt_show_quirks(struct device
*dev
,
275 struct device_attribute
*attr
,
278 struct hid_device
*hdev
= to_hid_device(dev
);
279 struct mt_device
*td
= hid_get_drvdata(hdev
);
281 return sprintf(buf
, "%u\n", td
->mtclass
.quirks
);
284 static ssize_t
mt_set_quirks(struct device
*dev
,
285 struct device_attribute
*attr
,
286 const char *buf
, size_t count
)
288 struct hid_device
*hdev
= to_hid_device(dev
);
289 struct mt_device
*td
= hid_get_drvdata(hdev
);
293 if (kstrtoul(buf
, 0, &val
))
296 td
->mtclass
.quirks
= val
;
298 if (td
->cc_index
< 0)
299 td
->mtclass
.quirks
&= ~MT_QUIRK_CONTACT_CNT_ACCURATE
;
304 static DEVICE_ATTR(quirks
, S_IWUSR
| S_IRUGO
, mt_show_quirks
, mt_set_quirks
);
306 static struct attribute
*sysfs_attrs
[] = {
307 &dev_attr_quirks
.attr
,
311 static struct attribute_group mt_attribute_group
= {
315 static void mt_get_feature(struct hid_device
*hdev
, struct hid_report
*report
)
317 struct mt_device
*td
= hid_get_drvdata(hdev
);
318 int ret
, size
= hid_report_len(report
);
322 * Do not fetch the feature report if the device has been explicitly
323 * marked as non-capable.
325 if (td
->initial_quirks
& HID_QUIRK_NO_INIT_REPORTS
)
328 buf
= hid_alloc_report_buf(report
, GFP_KERNEL
);
332 ret
= hid_hw_raw_request(hdev
, report
->id
, buf
, size
,
333 HID_FEATURE_REPORT
, HID_REQ_GET_REPORT
);
335 dev_warn(&hdev
->dev
, "failed to fetch feature %d\n",
338 ret
= hid_report_raw_event(hdev
, HID_FEATURE_REPORT
, buf
,
341 dev_warn(&hdev
->dev
, "failed to report feature\n");
347 static void mt_feature_mapping(struct hid_device
*hdev
,
348 struct hid_field
*field
, struct hid_usage
*usage
)
350 struct mt_device
*td
= hid_get_drvdata(hdev
);
352 switch (usage
->hid
) {
353 case HID_DG_INPUTMODE
:
354 /* Ignore if value index is out of bounds. */
355 if (usage
->usage_index
>= field
->report_count
) {
356 dev_err(&hdev
->dev
, "HID_DG_INPUTMODE out of range\n");
360 if (td
->inputmode
< 0) {
361 td
->inputmode
= field
->report
->id
;
362 td
->inputmode_index
= usage
->usage_index
;
365 * Some elan panels wrongly declare 2 input mode
366 * features, and silently ignore when we set the
367 * value in the second field. Skip the second feature
368 * and hope for the best.
371 "Ignoring the extra HID_DG_INPUTMODE\n");
375 case HID_DG_CONTACTMAX
:
376 mt_get_feature(hdev
, field
->report
);
378 td
->maxcontact_report_id
= field
->report
->id
;
379 td
->maxcontacts
= field
->value
[0];
380 if (!td
->maxcontacts
&&
381 field
->logical_maximum
<= MT_MAX_MAXCONTACT
)
382 td
->maxcontacts
= field
->logical_maximum
;
383 if (td
->mtclass
.maxcontacts
)
384 /* check if the maxcontacts is given by the class */
385 td
->maxcontacts
= td
->mtclass
.maxcontacts
;
388 case HID_DG_BUTTONTYPE
:
389 if (usage
->usage_index
>= field
->report_count
) {
390 dev_err(&hdev
->dev
, "HID_DG_BUTTONTYPE out of range\n");
394 mt_get_feature(hdev
, field
->report
);
395 if (field
->value
[usage
->usage_index
] == MT_BUTTONTYPE_CLICKPAD
)
396 td
->is_buttonpad
= true;
400 /* Retrieve the Win8 blob once to enable some devices */
401 if (usage
->usage_index
== 0)
402 mt_get_feature(hdev
, field
->report
);
407 static void set_abs(struct input_dev
*input
, unsigned int code
,
408 struct hid_field
*field
, int snratio
)
410 int fmin
= field
->logical_minimum
;
411 int fmax
= field
->logical_maximum
;
412 int fuzz
= snratio
? (fmax
- fmin
) / snratio
: 0;
413 input_set_abs_params(input
, code
, fmin
, fmax
, fuzz
, 0);
414 input_abs_set_res(input
, code
, hidinput_calc_abs_res(field
, code
));
417 static void mt_store_field(struct hid_usage
*usage
, struct mt_device
*td
,
418 struct hid_input
*hi
)
420 struct mt_fields
*f
= td
->fields
;
422 if (f
->length
>= HID_MAX_FIELDS
)
425 f
->usages
[f
->length
++] = usage
->hid
;
428 static int mt_touch_input_mapping(struct hid_device
*hdev
, struct hid_input
*hi
,
429 struct hid_field
*field
, struct hid_usage
*usage
,
430 unsigned long **bit
, int *max
)
432 struct mt_device
*td
= hid_get_drvdata(hdev
);
433 struct mt_class
*cls
= &td
->mtclass
;
435 struct hid_usage
*prev_usage
= NULL
;
437 if (field
->application
== HID_DG_TOUCHSCREEN
)
438 td
->mt_flags
|= INPUT_MT_DIRECT
;
441 * Model touchscreens providing buttons as touchpads.
443 if (field
->application
== HID_DG_TOUCHPAD
||
444 (usage
->hid
& HID_USAGE_PAGE
) == HID_UP_BUTTON
) {
445 td
->mt_flags
|= INPUT_MT_POINTER
;
446 td
->inputmode_value
= MT_INPUTMODE_TOUCHPAD
;
449 /* count the buttons on touchpads */
450 if ((usage
->hid
& HID_USAGE_PAGE
) == HID_UP_BUTTON
)
453 if (usage
->usage_index
)
454 prev_usage
= &field
->usage
[usage
->usage_index
- 1];
456 switch (usage
->hid
& HID_USAGE_PAGE
) {
459 switch (usage
->hid
) {
461 if (prev_usage
&& (prev_usage
->hid
== usage
->hid
)) {
462 hid_map_usage(hi
, usage
, bit
, max
,
463 EV_ABS
, ABS_MT_TOOL_X
);
464 set_abs(hi
->input
, ABS_MT_TOOL_X
, field
,
467 hid_map_usage(hi
, usage
, bit
, max
,
468 EV_ABS
, ABS_MT_POSITION_X
);
469 set_abs(hi
->input
, ABS_MT_POSITION_X
, field
,
473 mt_store_field(usage
, td
, hi
);
476 if (prev_usage
&& (prev_usage
->hid
== usage
->hid
)) {
477 hid_map_usage(hi
, usage
, bit
, max
,
478 EV_ABS
, ABS_MT_TOOL_Y
);
479 set_abs(hi
->input
, ABS_MT_TOOL_Y
, field
,
482 hid_map_usage(hi
, usage
, bit
, max
,
483 EV_ABS
, ABS_MT_POSITION_Y
);
484 set_abs(hi
->input
, ABS_MT_POSITION_Y
, field
,
488 mt_store_field(usage
, td
, hi
);
493 case HID_UP_DIGITIZER
:
494 switch (usage
->hid
) {
496 if (cls
->quirks
& MT_QUIRK_HOVERING
) {
497 hid_map_usage(hi
, usage
, bit
, max
,
498 EV_ABS
, ABS_MT_DISTANCE
);
499 input_set_abs_params(hi
->input
,
500 ABS_MT_DISTANCE
, 0, 1, 0, 0);
502 mt_store_field(usage
, td
, hi
);
504 case HID_DG_CONFIDENCE
:
505 if (cls
->name
== MT_CLS_WIN_8
&&
506 field
->application
== HID_DG_TOUCHPAD
)
507 cls
->quirks
|= MT_QUIRK_CONFIDENCE
;
508 mt_store_field(usage
, td
, hi
);
510 case HID_DG_TIPSWITCH
:
511 hid_map_usage(hi
, usage
, bit
, max
, EV_KEY
, BTN_TOUCH
);
512 input_set_capability(hi
->input
, EV_KEY
, BTN_TOUCH
);
513 mt_store_field(usage
, td
, hi
);
515 case HID_DG_CONTACTID
:
516 mt_store_field(usage
, td
, hi
);
517 td
->touches_by_report
++;
518 td
->mt_report_id
= field
->report
->id
;
521 hid_map_usage(hi
, usage
, bit
, max
,
522 EV_ABS
, ABS_MT_TOUCH_MAJOR
);
523 if (!(cls
->quirks
& MT_QUIRK_NO_AREA
))
524 set_abs(hi
->input
, ABS_MT_TOUCH_MAJOR
, field
,
526 mt_store_field(usage
, td
, hi
);
529 hid_map_usage(hi
, usage
, bit
, max
,
530 EV_ABS
, ABS_MT_TOUCH_MINOR
);
531 if (!(cls
->quirks
& MT_QUIRK_NO_AREA
)) {
532 set_abs(hi
->input
, ABS_MT_TOUCH_MINOR
, field
,
534 input_set_abs_params(hi
->input
,
535 ABS_MT_ORIENTATION
, 0, 1, 0, 0);
537 mt_store_field(usage
, td
, hi
);
539 case HID_DG_TIPPRESSURE
:
540 hid_map_usage(hi
, usage
, bit
, max
,
541 EV_ABS
, ABS_MT_PRESSURE
);
542 set_abs(hi
->input
, ABS_MT_PRESSURE
, field
,
544 mt_store_field(usage
, td
, hi
);
546 case HID_DG_CONTACTCOUNT
:
547 /* Ignore if indexes are out of bounds. */
548 if (field
->index
>= field
->report
->maxfield
||
549 usage
->usage_index
>= field
->report_count
)
551 td
->cc_index
= field
->index
;
552 td
->cc_value_index
= usage
->usage_index
;
554 case HID_DG_CONTACTMAX
:
555 /* we don't set td->last_slot_field as contactcount and
556 * contact max are global to the report */
559 /* Legacy devices use TIPSWITCH and not TOUCH.
560 * Let's just ignore this field. */
563 /* let hid-input decide for the others */
567 code
= BTN_MOUSE
+ ((usage
->hid
- 1) & HID_USAGE
);
569 * MS PTP spec says that external buttons left and right have
572 if (cls
->name
== MT_CLS_WIN_8
&&
573 field
->application
== HID_DG_TOUCHPAD
&&
574 (usage
->hid
& HID_USAGE
) > 1)
576 hid_map_usage(hi
, usage
, bit
, max
, EV_KEY
, code
);
577 input_set_capability(hi
->input
, EV_KEY
, code
);
581 /* we do not want to map these: no input-oriented meaning */
588 static int mt_touch_input_mapped(struct hid_device
*hdev
, struct hid_input
*hi
,
589 struct hid_field
*field
, struct hid_usage
*usage
,
590 unsigned long **bit
, int *max
)
592 if (usage
->type
== EV_KEY
|| usage
->type
== EV_ABS
)
593 set_bit(usage
->type
, hi
->input
->evbit
);
598 static int mt_compute_slot(struct mt_device
*td
, struct input_dev
*input
)
600 __s32 quirks
= td
->mtclass
.quirks
;
602 if (quirks
& MT_QUIRK_SLOT_IS_CONTACTID
)
603 return td
->curdata
.contactid
;
605 if (quirks
& MT_QUIRK_CYPRESS
)
606 return cypress_compute_slot(td
);
608 if (quirks
& MT_QUIRK_SLOT_IS_CONTACTNUMBER
)
609 return td
->num_received
;
611 if (quirks
& MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE
)
612 return td
->curdata
.contactid
- 1;
614 return input_mt_get_slot_by_key(input
, td
->curdata
.contactid
);
618 * this function is called when a whole contact has been processed,
619 * so that it can assign it to a slot and store the data there
621 static void mt_complete_slot(struct mt_device
*td
, struct input_dev
*input
)
623 if ((td
->mtclass
.quirks
& MT_QUIRK_CONTACT_CNT_ACCURATE
) &&
624 td
->num_received
>= td
->num_expected
)
627 if (td
->curvalid
|| (td
->mtclass
.quirks
& MT_QUIRK_ALWAYS_VALID
)) {
629 int slotnum
= mt_compute_slot(td
, input
);
630 struct mt_slot
*s
= &td
->curdata
;
631 struct input_mt
*mt
= input
->mt
;
633 if (slotnum
< 0 || slotnum
>= td
->maxcontacts
)
636 if ((td
->mtclass
.quirks
& MT_QUIRK_IGNORE_DUPLICATES
) && mt
) {
637 struct input_mt_slot
*slot
= &mt
->slots
[slotnum
];
638 if (input_mt_is_active(slot
) &&
639 input_mt_is_used(mt
, slot
))
643 if (!(td
->mtclass
.quirks
& MT_QUIRK_CONFIDENCE
))
644 s
->confidence_state
= 1;
645 active
= (s
->touch_state
|| s
->inrange_state
) &&
648 input_mt_slot(input
, slotnum
);
649 input_mt_report_slot_state(input
, MT_TOOL_FINGER
, active
);
651 /* this finger is in proximity of the sensor */
652 int wide
= (s
->w
> s
->h
);
653 /* divided by two to match visual scale of touch */
654 int major
= max(s
->w
, s
->h
) >> 1;
655 int minor
= min(s
->w
, s
->h
) >> 1;
657 input_event(input
, EV_ABS
, ABS_MT_POSITION_X
, s
->x
);
658 input_event(input
, EV_ABS
, ABS_MT_POSITION_Y
, s
->y
);
659 input_event(input
, EV_ABS
, ABS_MT_TOOL_X
, s
->cx
);
660 input_event(input
, EV_ABS
, ABS_MT_TOOL_Y
, s
->cy
);
661 input_event(input
, EV_ABS
, ABS_MT_DISTANCE
,
663 input_event(input
, EV_ABS
, ABS_MT_ORIENTATION
, wide
);
664 input_event(input
, EV_ABS
, ABS_MT_PRESSURE
, s
->p
);
665 input_event(input
, EV_ABS
, ABS_MT_TOUCH_MAJOR
, major
);
666 input_event(input
, EV_ABS
, ABS_MT_TOUCH_MINOR
, minor
);
674 * this function is called when a whole packet has been received and processed,
675 * so that it can decide what to send to the input layer.
677 static void mt_sync_frame(struct mt_device
*td
, struct input_dev
*input
)
679 input_mt_sync_frame(input
);
681 td
->num_received
= 0;
684 static int mt_touch_event(struct hid_device
*hid
, struct hid_field
*field
,
685 struct hid_usage
*usage
, __s32 value
)
687 /* we will handle the hidinput part later, now remains hiddev */
688 if (hid
->claimed
& HID_CLAIMED_HIDDEV
&& hid
->hiddev_hid_event
)
689 hid
->hiddev_hid_event(hid
, field
, usage
, value
);
694 static void mt_process_mt_event(struct hid_device
*hid
, struct hid_field
*field
,
695 struct hid_usage
*usage
, __s32 value
)
697 struct mt_device
*td
= hid_get_drvdata(hid
);
698 __s32 quirks
= td
->mtclass
.quirks
;
699 struct input_dev
*input
= field
->hidinput
->input
;
701 if (hid
->claimed
& HID_CLAIMED_INPUT
) {
702 switch (usage
->hid
) {
704 if (quirks
& MT_QUIRK_VALID_IS_INRANGE
)
705 td
->curvalid
= value
;
706 if (quirks
& MT_QUIRK_HOVERING
)
707 td
->curdata
.inrange_state
= value
;
709 case HID_DG_TIPSWITCH
:
710 if (quirks
& MT_QUIRK_NOT_SEEN_MEANS_UP
)
711 td
->curvalid
= value
;
712 td
->curdata
.touch_state
= value
;
714 case HID_DG_CONFIDENCE
:
715 if (quirks
& MT_QUIRK_CONFIDENCE
)
716 td
->curdata
.confidence_state
= value
;
717 if (quirks
& MT_QUIRK_VALID_IS_CONFIDENCE
)
718 td
->curvalid
= value
;
720 case HID_DG_CONTACTID
:
721 td
->curdata
.contactid
= value
;
723 case HID_DG_TIPPRESSURE
:
724 td
->curdata
.p
= value
;
727 if (usage
->code
== ABS_MT_TOOL_X
)
728 td
->curdata
.cx
= value
;
730 td
->curdata
.x
= value
;
733 if (usage
->code
== ABS_MT_TOOL_Y
)
734 td
->curdata
.cy
= value
;
736 td
->curdata
.y
= value
;
739 td
->curdata
.w
= value
;
742 td
->curdata
.h
= value
;
744 case HID_DG_CONTACTCOUNT
:
752 input_event(input
, usage
->type
, usage
->code
,
757 if (usage
->usage_index
+ 1 == field
->report_count
) {
758 /* we only take into account the last report. */
759 if (usage
->hid
== td
->last_slot_field
)
760 mt_complete_slot(td
, field
->hidinput
->input
);
766 static void mt_touch_report(struct hid_device
*hid
, struct hid_report
*report
)
768 struct mt_device
*td
= hid_get_drvdata(hid
);
769 struct hid_field
*field
;
774 * Includes multi-packet support where subsequent
775 * packets are sent with zero contactcount.
777 if (td
->cc_index
>= 0) {
778 struct hid_field
*field
= report
->field
[td
->cc_index
];
779 int value
= field
->value
[td
->cc_value_index
];
781 td
->num_expected
= value
;
784 for (r
= 0; r
< report
->maxfield
; r
++) {
785 field
= report
->field
[r
];
786 count
= field
->report_count
;
788 if (!(HID_MAIN_ITEM_VARIABLE
& field
->flags
))
791 for (n
= 0; n
< count
; n
++)
792 mt_process_mt_event(hid
, field
, &field
->usage
[n
],
796 if (td
->num_received
>= td
->num_expected
)
797 mt_sync_frame(td
, report
->field
[0]->hidinput
->input
);
800 static int mt_touch_input_configured(struct hid_device
*hdev
,
801 struct hid_input
*hi
)
803 struct mt_device
*td
= hid_get_drvdata(hdev
);
804 struct mt_class
*cls
= &td
->mtclass
;
805 struct input_dev
*input
= hi
->input
;
808 if (!td
->maxcontacts
)
809 td
->maxcontacts
= MT_DEFAULT_MAXCONTACT
;
812 if (td
->serial_maybe
)
813 mt_post_parse_default_settings(td
);
815 if (cls
->is_indirect
)
816 td
->mt_flags
|= INPUT_MT_POINTER
;
818 if (cls
->quirks
& MT_QUIRK_NOT_SEEN_MEANS_UP
)
819 td
->mt_flags
|= INPUT_MT_DROP_UNUSED
;
821 /* check for clickpads */
822 if ((td
->mt_flags
& INPUT_MT_POINTER
) && (td
->buttons_count
== 1))
823 td
->is_buttonpad
= true;
825 if (td
->is_buttonpad
)
826 __set_bit(INPUT_PROP_BUTTONPAD
, input
->propbit
);
828 ret
= input_mt_init_slots(input
, td
->maxcontacts
, td
->mt_flags
);
836 static int mt_input_mapping(struct hid_device
*hdev
, struct hid_input
*hi
,
837 struct hid_field
*field
, struct hid_usage
*usage
,
838 unsigned long **bit
, int *max
)
840 struct mt_device
*td
= hid_get_drvdata(hdev
);
843 * If mtclass.export_all_inputs is not set, only map fields from
844 * TouchScreen or TouchPad collections. We need to ignore fields
845 * that belong to other collections such as Mouse that might have
846 * the same GenericDesktop usages.
848 if (!td
->mtclass
.export_all_inputs
&&
849 field
->application
!= HID_DG_TOUCHSCREEN
&&
850 field
->application
!= HID_DG_PEN
&&
851 field
->application
!= HID_DG_TOUCHPAD
&&
852 field
->application
!= HID_GD_KEYBOARD
&&
853 field
->application
!= HID_CP_CONSUMER_CONTROL
)
857 * some egalax touchscreens have "application == HID_DG_TOUCHSCREEN"
859 * The check for mt_report_id ensures we don't process
860 * HID_DG_CONTACTCOUNT from the pen report as it is outside the physical
861 * collection, but within the report ID.
863 if (field
->physical
== HID_DG_STYLUS
)
865 else if ((field
->physical
== 0) &&
866 (field
->report
->id
!= td
->mt_report_id
) &&
867 (td
->mt_report_id
!= -1))
870 if (field
->application
== HID_DG_TOUCHSCREEN
||
871 field
->application
== HID_DG_TOUCHPAD
)
872 return mt_touch_input_mapping(hdev
, hi
, field
, usage
, bit
, max
);
874 /* let hid-core decide for the others */
878 static int mt_input_mapped(struct hid_device
*hdev
, struct hid_input
*hi
,
879 struct hid_field
*field
, struct hid_usage
*usage
,
880 unsigned long **bit
, int *max
)
883 * some egalax touchscreens have "application == HID_DG_TOUCHSCREEN"
886 if (field
->physical
== HID_DG_STYLUS
)
889 if (field
->application
== HID_DG_TOUCHSCREEN
||
890 field
->application
== HID_DG_TOUCHPAD
)
891 return mt_touch_input_mapped(hdev
, hi
, field
, usage
, bit
, max
);
893 /* let hid-core decide for the others */
897 static int mt_event(struct hid_device
*hid
, struct hid_field
*field
,
898 struct hid_usage
*usage
, __s32 value
)
900 struct mt_device
*td
= hid_get_drvdata(hid
);
902 if (field
->report
->id
== td
->mt_report_id
)
903 return mt_touch_event(hid
, field
, usage
, value
);
908 static void mt_report(struct hid_device
*hid
, struct hid_report
*report
)
910 struct mt_device
*td
= hid_get_drvdata(hid
);
911 struct hid_field
*field
= report
->field
[0];
913 if (!(hid
->claimed
& HID_CLAIMED_INPUT
))
916 if (report
->id
== td
->mt_report_id
)
917 return mt_touch_report(hid
, report
);
919 if (field
&& field
->hidinput
&& field
->hidinput
->input
)
920 input_sync(field
->hidinput
->input
);
923 static void mt_set_input_mode(struct hid_device
*hdev
)
925 struct mt_device
*td
= hid_get_drvdata(hdev
);
926 struct hid_report
*r
;
927 struct hid_report_enum
*re
;
928 struct mt_class
*cls
= &td
->mtclass
;
932 if (td
->inputmode
< 0)
935 re
= &(hdev
->report_enum
[HID_FEATURE_REPORT
]);
936 r
= re
->report_id_hash
[td
->inputmode
];
938 if (cls
->quirks
& MT_QUIRK_FORCE_GET_FEATURE
) {
939 report_len
= hid_report_len(r
);
940 buf
= hid_alloc_report_buf(r
, GFP_KERNEL
);
942 hid_err(hdev
, "failed to allocate buffer for report\n");
945 hid_hw_raw_request(hdev
, r
->id
, buf
, report_len
,
950 r
->field
[0]->value
[td
->inputmode_index
] = td
->inputmode_value
;
951 hid_hw_request(hdev
, r
, HID_REQ_SET_REPORT
);
955 static void mt_set_maxcontacts(struct hid_device
*hdev
)
957 struct mt_device
*td
= hid_get_drvdata(hdev
);
958 struct hid_report
*r
;
959 struct hid_report_enum
*re
;
962 if (td
->maxcontact_report_id
< 0)
965 if (!td
->mtclass
.maxcontacts
)
968 re
= &hdev
->report_enum
[HID_FEATURE_REPORT
];
969 r
= re
->report_id_hash
[td
->maxcontact_report_id
];
971 max
= td
->mtclass
.maxcontacts
;
972 fieldmax
= r
->field
[0]->logical_maximum
;
973 max
= min(fieldmax
, max
);
974 if (r
->field
[0]->value
[0] != max
) {
975 r
->field
[0]->value
[0] = max
;
976 hid_hw_request(hdev
, r
, HID_REQ_SET_REPORT
);
981 static void mt_post_parse_default_settings(struct mt_device
*td
)
983 __s32 quirks
= td
->mtclass
.quirks
;
985 /* unknown serial device needs special quirks */
986 if (td
->touches_by_report
== 1) {
987 quirks
|= MT_QUIRK_ALWAYS_VALID
;
988 quirks
&= ~MT_QUIRK_NOT_SEEN_MEANS_UP
;
989 quirks
&= ~MT_QUIRK_VALID_IS_INRANGE
;
990 quirks
&= ~MT_QUIRK_VALID_IS_CONFIDENCE
;
991 quirks
&= ~MT_QUIRK_CONTACT_CNT_ACCURATE
;
994 td
->mtclass
.quirks
= quirks
;
997 static void mt_post_parse(struct mt_device
*td
)
999 struct mt_fields
*f
= td
->fields
;
1000 struct mt_class
*cls
= &td
->mtclass
;
1002 if (td
->touches_by_report
> 0) {
1003 int field_count_per_touch
= f
->length
/ td
->touches_by_report
;
1004 td
->last_slot_field
= f
->usages
[field_count_per_touch
- 1];
1007 if (td
->cc_index
< 0)
1008 cls
->quirks
&= ~MT_QUIRK_CONTACT_CNT_ACCURATE
;
1011 static int mt_input_configured(struct hid_device
*hdev
, struct hid_input
*hi
)
1013 struct mt_device
*td
= hid_get_drvdata(hdev
);
1015 const char *suffix
= NULL
;
1016 struct hid_field
*field
= hi
->report
->field
[0];
1019 if (hi
->report
->id
== td
->mt_report_id
) {
1020 ret
= mt_touch_input_configured(hdev
, hi
);
1026 * some egalax touchscreens have "application == HID_DG_TOUCHSCREEN"
1027 * for the stylus. Check this first, and then rely on the application
1030 if (hi
->report
->field
[0]->physical
== HID_DG_STYLUS
) {
1032 /* force BTN_STYLUS to allow tablet matching in udev */
1033 __set_bit(BTN_STYLUS
, hi
->input
->keybit
);
1035 switch (field
->application
) {
1036 case HID_GD_KEYBOARD
:
1037 suffix
= "Keyboard";
1047 /* force BTN_STYLUS to allow tablet matching in udev */
1048 __set_bit(BTN_STYLUS
, hi
->input
->keybit
);
1050 case HID_DG_TOUCHSCREEN
:
1051 /* we do not set suffix = "Touchscreen" */
1053 case HID_DG_TOUCHPAD
:
1054 suffix
= "Touchpad";
1056 case HID_GD_SYSTEM_CONTROL
:
1057 suffix
= "System Control";
1059 case HID_CP_CONSUMER_CONTROL
:
1060 suffix
= "Consumer Control";
1069 name
= devm_kzalloc(&hi
->input
->dev
,
1070 strlen(hdev
->name
) + strlen(suffix
) + 2,
1073 sprintf(name
, "%s %s", hdev
->name
, suffix
);
1074 hi
->input
->name
= name
;
1081 static int mt_probe(struct hid_device
*hdev
, const struct hid_device_id
*id
)
1084 struct mt_device
*td
;
1085 struct mt_class
*mtclass
= mt_classes
; /* MT_CLS_DEFAULT */
1087 for (i
= 0; mt_classes
[i
].name
; i
++) {
1088 if (id
->driver_data
== mt_classes
[i
].name
) {
1089 mtclass
= &(mt_classes
[i
]);
1094 td
= devm_kzalloc(&hdev
->dev
, sizeof(struct mt_device
), GFP_KERNEL
);
1096 dev_err(&hdev
->dev
, "cannot allocate multitouch data\n");
1099 td
->mtclass
= *mtclass
;
1101 td
->maxcontact_report_id
= -1;
1102 td
->inputmode_value
= MT_INPUTMODE_TOUCHSCREEN
;
1104 td
->mt_report_id
= -1;
1105 hid_set_drvdata(hdev
, td
);
1107 td
->fields
= devm_kzalloc(&hdev
->dev
, sizeof(struct mt_fields
),
1110 dev_err(&hdev
->dev
, "cannot allocate multitouch fields data\n");
1114 if (id
->vendor
== HID_ANY_ID
&& id
->product
== HID_ANY_ID
)
1115 td
->serial_maybe
= true;
1118 * Store the initial quirk state
1120 td
->initial_quirks
= hdev
->quirks
;
1122 /* This allows the driver to correctly support devices
1123 * that emit events over several HID messages.
1125 hdev
->quirks
|= HID_QUIRK_NO_INPUT_SYNC
;
1128 * This allows the driver to handle different input sensors
1129 * that emits events through different reports on the same HID
1132 hdev
->quirks
|= HID_QUIRK_MULTI_INPUT
;
1133 hdev
->quirks
|= HID_QUIRK_NO_EMPTY_INPUT
;
1136 * Some multitouch screens do not like to be polled for input
1137 * reports. Fortunately, the Win8 spec says that all touches
1138 * should be sent during each report, making the initialization
1139 * of input reports unnecessary. For Win7 devices, well, let's hope
1140 * they will still be happy (this is only be a problem if a touch
1141 * was already there while probing the device).
1143 * In addition some touchpads do not behave well if we read
1144 * all feature reports from them. Instead we prevent
1145 * initial report fetching and then selectively fetch each
1146 * report we are interested in.
1148 hdev
->quirks
|= HID_QUIRK_NO_INIT_REPORTS
;
1150 ret
= hid_parse(hdev
);
1154 ret
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
1158 ret
= sysfs_create_group(&hdev
->dev
.kobj
, &mt_attribute_group
);
1160 dev_warn(&hdev
->dev
, "Cannot allocate sysfs group for %s\n",
1163 mt_set_maxcontacts(hdev
);
1164 mt_set_input_mode(hdev
);
1166 /* release .fields memory as it is not used anymore */
1167 devm_kfree(&hdev
->dev
, td
->fields
);
1174 static void mt_release_contacts(struct hid_device
*hid
)
1176 struct hid_input
*hidinput
;
1178 list_for_each_entry(hidinput
, &hid
->inputs
, list
) {
1179 struct input_dev
*input_dev
= hidinput
->input
;
1180 struct input_mt
*mt
= input_dev
->mt
;
1184 for (i
= 0; i
< mt
->num_slots
; i
++) {
1185 input_mt_slot(input_dev
, i
);
1186 input_mt_report_slot_state(input_dev
,
1190 input_mt_sync_frame(input_dev
);
1191 input_sync(input_dev
);
1196 static int mt_reset_resume(struct hid_device
*hdev
)
1198 mt_release_contacts(hdev
);
1199 mt_set_maxcontacts(hdev
);
1200 mt_set_input_mode(hdev
);
1204 static int mt_resume(struct hid_device
*hdev
)
1206 /* Some Elan legacy devices require SET_IDLE to be set on resume.
1207 * It should be safe to send it to other devices too.
1208 * Tested on 3M, Stantum, Cypress, Zytronic, eGalax, and Elan panels. */
1210 hid_hw_idle(hdev
, 0, 0, HID_REQ_SET_IDLE
);
1216 static void mt_remove(struct hid_device
*hdev
)
1218 struct mt_device
*td
= hid_get_drvdata(hdev
);
1220 sysfs_remove_group(&hdev
->dev
.kobj
, &mt_attribute_group
);
1222 hdev
->quirks
= td
->initial_quirks
;
1226 * This list contains only:
1227 * - VID/PID of products not working with the default multitouch handling
1228 * - 2 generic rules.
1229 * So there is no point in adding here any device with MT_CLS_DEFAULT.
1231 static const struct hid_device_id mt_devices
[] = {
1234 { .driver_data
= MT_CLS_3M
,
1235 MT_USB_DEVICE(USB_VENDOR_ID_3M
,
1236 USB_DEVICE_ID_3M1968
) },
1237 { .driver_data
= MT_CLS_3M
,
1238 MT_USB_DEVICE(USB_VENDOR_ID_3M
,
1239 USB_DEVICE_ID_3M2256
) },
1240 { .driver_data
= MT_CLS_3M
,
1241 MT_USB_DEVICE(USB_VENDOR_ID_3M
,
1242 USB_DEVICE_ID_3M3266
) },
1245 { .driver_data
= MT_CLS_EXPORT_ALL_INPUTS
,
1246 MT_USB_DEVICE(USB_VENDOR_ID_ANTON
,
1247 USB_DEVICE_ID_ANTON_TOUCH_PAD
) },
1250 { .driver_data
= MT_CLS_SERIAL
,
1251 MT_USB_DEVICE(USB_VENDOR_ID_ATMEL
,
1252 USB_DEVICE_ID_ATMEL_MXT_DIGITIZER
) },
1254 /* Baanto multitouch devices */
1255 { .driver_data
= MT_CLS_NSMU
,
1256 MT_USB_DEVICE(USB_VENDOR_ID_BAANTO
,
1257 USB_DEVICE_ID_BAANTO_MT_190W2
) },
1260 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
1261 MT_USB_DEVICE(USB_VENDOR_ID_CANDO
,
1262 USB_DEVICE_ID_CANDO_MULTI_TOUCH
) },
1263 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
1264 MT_USB_DEVICE(USB_VENDOR_ID_CANDO
,
1265 USB_DEVICE_ID_CANDO_MULTI_TOUCH_15_6
) },
1267 /* Chunghwa Telecom touch panels */
1268 { .driver_data
= MT_CLS_NSMU
,
1269 MT_USB_DEVICE(USB_VENDOR_ID_CHUNGHWAT
,
1270 USB_DEVICE_ID_CHUNGHWAT_MULTITOUCH
) },
1272 /* CJTouch panels */
1273 { .driver_data
= MT_CLS_NSMU
,
1274 MT_USB_DEVICE(USB_VENDOR_ID_CJTOUCH
,
1275 USB_DEVICE_ID_CJTOUCH_MULTI_TOUCH_0020
) },
1276 { .driver_data
= MT_CLS_NSMU
,
1277 MT_USB_DEVICE(USB_VENDOR_ID_CJTOUCH
,
1278 USB_DEVICE_ID_CJTOUCH_MULTI_TOUCH_0040
) },
1280 /* CVTouch panels */
1281 { .driver_data
= MT_CLS_NSMU
,
1282 MT_USB_DEVICE(USB_VENDOR_ID_CVTOUCH
,
1283 USB_DEVICE_ID_CVTOUCH_SCREEN
) },
1285 /* eGalax devices (resistive) */
1286 { .driver_data
= MT_CLS_EGALAX
,
1287 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1288 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480D
) },
1289 { .driver_data
= MT_CLS_EGALAX
,
1290 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1291 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480E
) },
1293 /* eGalax devices (capacitive) */
1294 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1295 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1296 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7207
) },
1297 { .driver_data
= MT_CLS_EGALAX
,
1298 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1299 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_720C
) },
1300 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1301 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1302 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7224
) },
1303 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1304 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1305 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_722A
) },
1306 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1307 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1308 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_725E
) },
1309 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1310 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1311 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7262
) },
1312 { .driver_data
= MT_CLS_EGALAX
,
1313 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1314 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_726B
) },
1315 { .driver_data
= MT_CLS_EGALAX
,
1316 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1317 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72A1
) },
1318 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1319 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1320 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72AA
) },
1321 { .driver_data
= MT_CLS_EGALAX
,
1322 HID_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1323 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72C4
) },
1324 { .driver_data
= MT_CLS_EGALAX
,
1325 HID_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1326 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72D0
) },
1327 { .driver_data
= MT_CLS_EGALAX
,
1328 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1329 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72FA
) },
1330 { .driver_data
= MT_CLS_EGALAX
,
1331 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1332 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7302
) },
1333 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1334 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1335 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7349
) },
1336 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1337 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1338 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_73F7
) },
1339 { .driver_data
= MT_CLS_EGALAX_SERIAL
,
1340 MT_USB_DEVICE(USB_VENDOR_ID_DWAV
,
1341 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_A001
) },
1343 /* Elitegroup panel */
1344 { .driver_data
= MT_CLS_SERIAL
,
1345 MT_USB_DEVICE(USB_VENDOR_ID_ELITEGROUP
,
1346 USB_DEVICE_ID_ELITEGROUP_05D8
) },
1348 /* Flatfrog Panels */
1349 { .driver_data
= MT_CLS_FLATFROG
,
1350 MT_USB_DEVICE(USB_VENDOR_ID_FLATFROG
,
1351 USB_DEVICE_ID_MULTITOUCH_3200
) },
1353 /* FocalTech Panels */
1354 { .driver_data
= MT_CLS_SERIAL
,
1355 MT_USB_DEVICE(USB_VENDOR_ID_CYGNAL
,
1356 USB_DEVICE_ID_FOCALTECH_FTXXXX_MULTITOUCH
) },
1358 /* GeneralTouch panel */
1359 { .driver_data
= MT_CLS_GENERALTOUCH_TWOFINGERS
,
1360 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1361 USB_DEVICE_ID_GENERAL_TOUCH_WIN7_TWOFINGERS
) },
1362 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1363 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1364 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PWT_TENFINGERS
) },
1365 { .driver_data
= MT_CLS_GENERALTOUCH_TWOFINGERS
,
1366 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1367 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0101
) },
1368 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1369 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1370 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0102
) },
1371 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1372 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1373 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0106
) },
1374 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1375 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1376 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_010A
) },
1377 { .driver_data
= MT_CLS_GENERALTOUCH_PWT_TENFINGERS
,
1378 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
1379 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_E100
) },
1381 /* Gametel game controller */
1382 { .driver_data
= MT_CLS_NSMU
,
1383 MT_BT_DEVICE(USB_VENDOR_ID_FRUCTEL
,
1384 USB_DEVICE_ID_GAMETEL_MT_MODE
) },
1386 /* GoodTouch panels */
1387 { .driver_data
= MT_CLS_NSMU
,
1388 MT_USB_DEVICE(USB_VENDOR_ID_GOODTOUCH
,
1389 USB_DEVICE_ID_GOODTOUCH_000f
) },
1392 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTID
,
1393 MT_USB_DEVICE(USB_VENDOR_ID_HANVON_ALT
,
1394 USB_DEVICE_ID_HANVON_ALT_MULTITOUCH
) },
1396 /* Ilitek dual touch panel */
1397 { .driver_data
= MT_CLS_NSMU
,
1398 MT_USB_DEVICE(USB_VENDOR_ID_ILITEK
,
1399 USB_DEVICE_ID_ILITEK_MULTITOUCH
) },
1402 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
1403 MT_USB_DEVICE(USB_VENDOR_ID_ASUS
,
1404 USB_DEVICE_ID_ASUS_T91MT
)},
1405 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
1406 MT_USB_DEVICE(USB_VENDOR_ID_ASUS
,
1407 USB_DEVICE_ID_ASUSTEK_MULTITOUCH_YFO
) },
1408 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
1409 MT_USB_DEVICE(USB_VENDOR_ID_TURBOX
,
1410 USB_DEVICE_ID_TURBOX_TOUCHSCREEN_MOSART
) },
1412 /* Panasonic panels */
1413 { .driver_data
= MT_CLS_PANASONIC
,
1414 MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC
,
1415 USB_DEVICE_ID_PANABOARD_UBT780
) },
1416 { .driver_data
= MT_CLS_PANASONIC
,
1417 MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC
,
1418 USB_DEVICE_ID_PANABOARD_UBT880
) },
1421 { .driver_data
= MT_CLS_NSMU
,
1422 MT_USB_DEVICE(USB_VENDOR_ID_NOVATEK
,
1423 USB_DEVICE_ID_NOVATEK_PCT
) },
1426 { .driver_data
= MT_CLS_NSMU
,
1427 HID_DEVICE(BUS_I2C
, HID_GROUP_MULTITOUCH_WIN_8
,
1428 USB_VENDOR_ID_NTRIG
, 0x1b05) },
1430 /* PixArt optical touch screen */
1431 { .driver_data
= MT_CLS_INRANGE_CONTACTNUMBER
,
1432 MT_USB_DEVICE(USB_VENDOR_ID_PIXART
,
1433 USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN
) },
1434 { .driver_data
= MT_CLS_INRANGE_CONTACTNUMBER
,
1435 MT_USB_DEVICE(USB_VENDOR_ID_PIXART
,
1436 USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN1
) },
1437 { .driver_data
= MT_CLS_INRANGE_CONTACTNUMBER
,
1438 MT_USB_DEVICE(USB_VENDOR_ID_PIXART
,
1439 USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN2
) },
1441 /* PixCir-based panels */
1442 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTID
,
1443 MT_USB_DEVICE(USB_VENDOR_ID_CANDO
,
1444 USB_DEVICE_ID_CANDO_PIXCIR_MULTI_TOUCH
) },
1446 /* Quanta-based panels */
1447 { .driver_data
= MT_CLS_CONFIDENCE_CONTACT_ID
,
1448 MT_USB_DEVICE(USB_VENDOR_ID_QUANTA
,
1449 USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3001
) },
1451 /* Stantum panels */
1452 { .driver_data
= MT_CLS_CONFIDENCE
,
1453 MT_USB_DEVICE(USB_VENDOR_ID_STANTUM_STM
,
1454 USB_DEVICE_ID_MTP_STM
)},
1456 /* TopSeed panels */
1457 { .driver_data
= MT_CLS_TOPSEED
,
1458 MT_USB_DEVICE(USB_VENDOR_ID_TOPSEED2
,
1459 USB_DEVICE_ID_TOPSEED2_PERIPAD_701
) },
1461 /* Touch International panels */
1462 { .driver_data
= MT_CLS_NSMU
,
1463 MT_USB_DEVICE(USB_VENDOR_ID_TOUCH_INTL
,
1464 USB_DEVICE_ID_TOUCH_INTL_MULTI_TOUCH
) },
1467 { .driver_data
= MT_CLS_NSMU
,
1468 MT_USB_DEVICE(USB_VENDOR_ID_UNITEC
,
1469 USB_DEVICE_ID_UNITEC_USB_TOUCH_0709
) },
1470 { .driver_data
= MT_CLS_NSMU
,
1471 MT_USB_DEVICE(USB_VENDOR_ID_UNITEC
,
1472 USB_DEVICE_ID_UNITEC_USB_TOUCH_0A19
) },
1475 { .driver_data
= MT_CLS_VTL
,
1476 MT_USB_DEVICE(USB_VENDOR_ID_VTL
,
1477 USB_DEVICE_ID_VTL_MULTITOUCH_FF3F
) },
1479 /* Wistron panels */
1480 { .driver_data
= MT_CLS_NSMU
,
1481 MT_USB_DEVICE(USB_VENDOR_ID_WISTRON
,
1482 USB_DEVICE_ID_WISTRON_OPTICAL_TOUCH
) },
1485 { .driver_data
= MT_CLS_NSMU
,
1486 MT_USB_DEVICE(USB_VENDOR_ID_XAT
,
1487 USB_DEVICE_ID_XAT_CSR
) },
1490 { .driver_data
= MT_CLS_NSMU
,
1491 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1492 USB_DEVICE_ID_XIROKU_SPX
) },
1493 { .driver_data
= MT_CLS_NSMU
,
1494 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1495 USB_DEVICE_ID_XIROKU_MPX
) },
1496 { .driver_data
= MT_CLS_NSMU
,
1497 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1498 USB_DEVICE_ID_XIROKU_CSR
) },
1499 { .driver_data
= MT_CLS_NSMU
,
1500 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1501 USB_DEVICE_ID_XIROKU_SPX1
) },
1502 { .driver_data
= MT_CLS_NSMU
,
1503 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1504 USB_DEVICE_ID_XIROKU_MPX1
) },
1505 { .driver_data
= MT_CLS_NSMU
,
1506 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1507 USB_DEVICE_ID_XIROKU_CSR1
) },
1508 { .driver_data
= MT_CLS_NSMU
,
1509 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1510 USB_DEVICE_ID_XIROKU_SPX2
) },
1511 { .driver_data
= MT_CLS_NSMU
,
1512 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1513 USB_DEVICE_ID_XIROKU_MPX2
) },
1514 { .driver_data
= MT_CLS_NSMU
,
1515 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU
,
1516 USB_DEVICE_ID_XIROKU_CSR2
) },
1518 /* Generic MT device */
1519 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_MULTITOUCH
, HID_ANY_ID
, HID_ANY_ID
) },
1521 /* Generic Win 8 certified MT device */
1522 { .driver_data
= MT_CLS_WIN_8
,
1523 HID_DEVICE(HID_BUS_ANY
, HID_GROUP_MULTITOUCH_WIN_8
,
1524 HID_ANY_ID
, HID_ANY_ID
) },
1527 MODULE_DEVICE_TABLE(hid
, mt_devices
);
1529 static const struct hid_usage_id mt_grabbed_usages
[] = {
1530 { HID_ANY_ID
, HID_ANY_ID
, HID_ANY_ID
},
1531 { HID_ANY_ID
- 1, HID_ANY_ID
- 1, HID_ANY_ID
- 1}
1534 static struct hid_driver mt_driver
= {
1535 .name
= "hid-multitouch",
1536 .id_table
= mt_devices
,
1538 .remove
= mt_remove
,
1539 .input_mapping
= mt_input_mapping
,
1540 .input_mapped
= mt_input_mapped
,
1541 .input_configured
= mt_input_configured
,
1542 .feature_mapping
= mt_feature_mapping
,
1543 .usage_table
= mt_grabbed_usages
,
1545 .report
= mt_report
,
1547 .reset_resume
= mt_reset_resume
,
1548 .resume
= mt_resume
,
1551 module_hid_driver(mt_driver
);