2 * HID driver for multitouch panels
4 * Copyright (c) 2010-2011 Stephane Chatty <chatty@enac.fr>
5 * Copyright (c) 2010-2011 Benjamin Tissoires <benjamin.tissoires@gmail.com>
6 * Copyright (c) 2010-2011 Ecole Nationale de l'Aviation Civile, France
8 * This code is partly based on hid-egalax.c:
10 * Copyright (c) 2010 Stephane Chatty <chatty@enac.fr>
11 * Copyright (c) 2010 Henrik Rydberg <rydberg@euromail.se>
12 * Copyright (c) 2010 Canonical, Ltd.
14 * This code is partly based on hid-3m-pct.c:
16 * Copyright (c) 2009-2010 Stephane Chatty <chatty@enac.fr>
17 * Copyright (c) 2010 Henrik Rydberg <rydberg@euromail.se>
18 * Copyright (c) 2010 Canonical, Ltd.
23 * This program is free software; you can redistribute it and/or modify it
24 * under the terms of the GNU General Public License as published by the Free
25 * Software Foundation; either version 2 of the License, or (at your option)
29 #include <linux/device.h>
30 #include <linux/hid.h>
31 #include <linux/module.h>
32 #include <linux/slab.h>
33 #include <linux/usb.h>
34 #include <linux/input/mt.h>
35 #include "usbhid/usbhid.h"
38 MODULE_AUTHOR("Stephane Chatty <chatty@enac.fr>");
39 MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
40 MODULE_DESCRIPTION("HID multitouch panels");
41 MODULE_LICENSE("GPL");
45 /* quirks to control the device */
46 #define MT_QUIRK_NOT_SEEN_MEANS_UP (1 << 0)
47 #define MT_QUIRK_SLOT_IS_CONTACTID (1 << 1)
48 #define MT_QUIRK_CYPRESS (1 << 2)
49 #define MT_QUIRK_SLOT_IS_CONTACTNUMBER (1 << 3)
50 #define MT_QUIRK_VALID_IS_INRANGE (1 << 4)
51 #define MT_QUIRK_VALID_IS_CONFIDENCE (1 << 5)
52 #define MT_QUIRK_EGALAX_XYZ_FIXUP (1 << 6)
53 #define MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE (1 << 7)
57 __s32 contactid
; /* the device ContactID assigned to this slot */
58 bool touch_state
; /* is the touch valid? */
59 bool seen_in_this_frame
;/* has this slot been updated */
63 struct mt_slot curdata
; /* placeholder of incoming data */
64 struct mt_class
*mtclass
; /* our mt device class */
65 unsigned last_field_index
; /* last field index of the report */
66 unsigned last_slot_field
; /* the last field of a slot */
67 int last_mt_collection
; /* last known mt-related collection */
68 __s8 inputmode
; /* InputMode HID feature, -1 if non-existent */
69 __u8 num_received
; /* how many contacts we received */
70 __u8 num_expected
; /* expected last contact index */
72 bool curvalid
; /* is the current contact valid? */
73 struct mt_slot
*slots
;
77 __s32 name
; /* MT_CLS */
79 __s32 sn_move
; /* Signal/noise ratio for move events */
80 __s32 sn_width
; /* Signal/noise ratio for width events */
81 __s32 sn_height
; /* Signal/noise ratio for height events */
82 __s32 sn_pressure
; /* Signal/noise ratio for pressure events */
86 /* classes of device behavior */
87 #define MT_CLS_DEFAULT 0x0001
89 #define MT_CLS_CONFIDENCE 0x0002
90 #define MT_CLS_CONFIDENCE_MINUS_ONE 0x0003
91 #define MT_CLS_DUAL_INRANGE_CONTACTID 0x0004
92 #define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0005
93 #define MT_CLS_DUAL_NSMU_CONTACTID 0x0006
95 /* vendor specific classes */
96 #define MT_CLS_3M 0x0101
97 #define MT_CLS_CYPRESS 0x0102
98 #define MT_CLS_EGALAX 0x0103
100 #define MT_DEFAULT_MAXCONTACT 10
103 * these device-dependent functions determine what slot corresponds
104 * to a valid contact that was just read.
107 static int cypress_compute_slot(struct mt_device
*td
)
109 if (td
->curdata
.contactid
!= 0 || td
->num_received
== 0)
110 return td
->curdata
.contactid
;
115 static int find_slot_from_contactid(struct mt_device
*td
)
118 for (i
= 0; i
< td
->maxcontacts
; ++i
) {
119 if (td
->slots
[i
].contactid
== td
->curdata
.contactid
&&
120 td
->slots
[i
].touch_state
)
123 for (i
= 0; i
< td
->maxcontacts
; ++i
) {
124 if (!td
->slots
[i
].seen_in_this_frame
&&
125 !td
->slots
[i
].touch_state
)
128 /* should not occurs. If this happens that means
129 * that the device sent more touches that it says
130 * in the report descriptor. It is ignored then. */
134 struct mt_class mt_classes
[] = {
135 { .name
= MT_CLS_DEFAULT
,
136 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
},
137 { .name
= MT_CLS_CONFIDENCE
,
138 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
},
139 { .name
= MT_CLS_CONFIDENCE_MINUS_ONE
,
140 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
|
141 MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE
},
142 { .name
= MT_CLS_DUAL_INRANGE_CONTACTID
,
143 .quirks
= MT_QUIRK_VALID_IS_INRANGE
|
144 MT_QUIRK_SLOT_IS_CONTACTID
,
146 { .name
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
147 .quirks
= MT_QUIRK_VALID_IS_INRANGE
|
148 MT_QUIRK_SLOT_IS_CONTACTNUMBER
,
150 { .name
= MT_CLS_DUAL_NSMU_CONTACTID
,
151 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
|
152 MT_QUIRK_SLOT_IS_CONTACTID
,
156 * vendor specific classes
159 .quirks
= MT_QUIRK_VALID_IS_CONFIDENCE
|
160 MT_QUIRK_SLOT_IS_CONTACTID
,
164 { .name
= MT_CLS_CYPRESS
,
165 .quirks
= MT_QUIRK_NOT_SEEN_MEANS_UP
|
168 { .name
= MT_CLS_EGALAX
,
169 .quirks
= MT_QUIRK_SLOT_IS_CONTACTID
|
170 MT_QUIRK_VALID_IS_INRANGE
|
171 MT_QUIRK_EGALAX_XYZ_FIXUP
,
180 static void mt_feature_mapping(struct hid_device
*hdev
,
181 struct hid_field
*field
, struct hid_usage
*usage
)
183 struct mt_device
*td
= hid_get_drvdata(hdev
);
185 switch (usage
->hid
) {
186 case HID_DG_INPUTMODE
:
187 td
->inputmode
= field
->report
->id
;
189 case HID_DG_CONTACTMAX
:
190 td
->maxcontacts
= field
->value
[0];
191 if (td
->mtclass
->maxcontacts
)
192 /* check if the maxcontacts is given by the class */
193 td
->maxcontacts
= td
->mtclass
->maxcontacts
;
199 static void set_abs(struct input_dev
*input
, unsigned int code
,
200 struct hid_field
*field
, int snratio
)
202 int fmin
= field
->logical_minimum
;
203 int fmax
= field
->logical_maximum
;
204 int fuzz
= snratio
? (fmax
- fmin
) / snratio
: 0;
205 input_set_abs_params(input
, code
, fmin
, fmax
, fuzz
, 0);
208 static int mt_input_mapping(struct hid_device
*hdev
, struct hid_input
*hi
,
209 struct hid_field
*field
, struct hid_usage
*usage
,
210 unsigned long **bit
, int *max
)
212 struct mt_device
*td
= hid_get_drvdata(hdev
);
213 struct mt_class
*cls
= td
->mtclass
;
214 __s32 quirks
= cls
->quirks
;
216 switch (usage
->hid
& HID_USAGE_PAGE
) {
219 switch (usage
->hid
) {
221 if (quirks
& MT_QUIRK_EGALAX_XYZ_FIXUP
)
222 field
->logical_maximum
= 32760;
223 hid_map_usage(hi
, usage
, bit
, max
,
224 EV_ABS
, ABS_MT_POSITION_X
);
225 set_abs(hi
->input
, ABS_MT_POSITION_X
, field
,
227 /* touchscreen emulation */
228 set_abs(hi
->input
, ABS_X
, field
, cls
->sn_move
);
229 if (td
->last_mt_collection
== usage
->collection_index
) {
230 td
->last_slot_field
= usage
->hid
;
231 td
->last_field_index
= field
->index
;
235 if (quirks
& MT_QUIRK_EGALAX_XYZ_FIXUP
)
236 field
->logical_maximum
= 32760;
237 hid_map_usage(hi
, usage
, bit
, max
,
238 EV_ABS
, ABS_MT_POSITION_Y
);
239 set_abs(hi
->input
, ABS_MT_POSITION_Y
, field
,
241 /* touchscreen emulation */
242 set_abs(hi
->input
, ABS_Y
, field
, cls
->sn_move
);
243 if (td
->last_mt_collection
== usage
->collection_index
) {
244 td
->last_slot_field
= usage
->hid
;
245 td
->last_field_index
= field
->index
;
251 case HID_UP_DIGITIZER
:
252 switch (usage
->hid
) {
254 if (td
->last_mt_collection
== usage
->collection_index
) {
255 td
->last_slot_field
= usage
->hid
;
256 td
->last_field_index
= field
->index
;
259 case HID_DG_CONFIDENCE
:
260 if (td
->last_mt_collection
== usage
->collection_index
) {
261 td
->last_slot_field
= usage
->hid
;
262 td
->last_field_index
= field
->index
;
265 case HID_DG_TIPSWITCH
:
266 hid_map_usage(hi
, usage
, bit
, max
, EV_KEY
, BTN_TOUCH
);
267 input_set_capability(hi
->input
, EV_KEY
, BTN_TOUCH
);
268 if (td
->last_mt_collection
== usage
->collection_index
) {
269 td
->last_slot_field
= usage
->hid
;
270 td
->last_field_index
= field
->index
;
273 case HID_DG_CONTACTID
:
274 input_mt_init_slots(hi
->input
, td
->maxcontacts
);
275 td
->last_slot_field
= usage
->hid
;
276 td
->last_field_index
= field
->index
;
277 td
->last_mt_collection
= usage
->collection_index
;
280 hid_map_usage(hi
, usage
, bit
, max
,
281 EV_ABS
, ABS_MT_TOUCH_MAJOR
);
282 set_abs(hi
->input
, ABS_MT_TOUCH_MAJOR
, field
,
284 if (td
->last_mt_collection
== usage
->collection_index
) {
285 td
->last_slot_field
= usage
->hid
;
286 td
->last_field_index
= field
->index
;
290 hid_map_usage(hi
, usage
, bit
, max
,
291 EV_ABS
, ABS_MT_TOUCH_MINOR
);
292 set_abs(hi
->input
, ABS_MT_TOUCH_MINOR
, field
,
294 input_set_abs_params(hi
->input
,
295 ABS_MT_ORIENTATION
, 0, 1, 0, 0);
296 if (td
->last_mt_collection
== usage
->collection_index
) {
297 td
->last_slot_field
= usage
->hid
;
298 td
->last_field_index
= field
->index
;
301 case HID_DG_TIPPRESSURE
:
302 if (quirks
& MT_QUIRK_EGALAX_XYZ_FIXUP
)
303 field
->logical_minimum
= 0;
304 hid_map_usage(hi
, usage
, bit
, max
,
305 EV_ABS
, ABS_MT_PRESSURE
);
306 set_abs(hi
->input
, ABS_MT_PRESSURE
, field
,
308 /* touchscreen emulation */
309 set_abs(hi
->input
, ABS_PRESSURE
, field
,
311 if (td
->last_mt_collection
== usage
->collection_index
) {
312 td
->last_slot_field
= usage
->hid
;
313 td
->last_field_index
= field
->index
;
316 case HID_DG_CONTACTCOUNT
:
317 if (td
->last_mt_collection
== usage
->collection_index
)
318 td
->last_field_index
= field
->index
;
320 case HID_DG_CONTACTMAX
:
321 /* we don't set td->last_slot_field as contactcount and
322 * contact max are global to the report */
323 if (td
->last_mt_collection
== usage
->collection_index
)
324 td
->last_field_index
= field
->index
;
327 /* let hid-input decide for the others */
331 /* we do not want to map these: no input-oriented meaning */
338 static int mt_input_mapped(struct hid_device
*hdev
, struct hid_input
*hi
,
339 struct hid_field
*field
, struct hid_usage
*usage
,
340 unsigned long **bit
, int *max
)
342 if (usage
->type
== EV_KEY
|| usage
->type
== EV_ABS
)
343 set_bit(usage
->type
, hi
->input
->evbit
);
348 static int mt_compute_slot(struct mt_device
*td
)
350 __s32 quirks
= td
->mtclass
->quirks
;
352 if (quirks
& MT_QUIRK_SLOT_IS_CONTACTID
)
353 return td
->curdata
.contactid
;
355 if (quirks
& MT_QUIRK_CYPRESS
)
356 return cypress_compute_slot(td
);
358 if (quirks
& MT_QUIRK_SLOT_IS_CONTACTNUMBER
)
359 return td
->num_received
;
361 if (quirks
& MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE
)
362 return td
->curdata
.contactid
- 1;
364 return find_slot_from_contactid(td
);
368 * this function is called when a whole contact has been processed,
369 * so that it can assign it to a slot and store the data there
371 static void mt_complete_slot(struct mt_device
*td
)
373 td
->curdata
.seen_in_this_frame
= true;
375 int slotnum
= mt_compute_slot(td
);
377 if (slotnum
>= 0 && slotnum
< td
->maxcontacts
)
378 td
->slots
[slotnum
] = td
->curdata
;
385 * this function is called when a whole packet has been received and processed,
386 * so that it can decide what to send to the input layer.
388 static void mt_emit_event(struct mt_device
*td
, struct input_dev
*input
)
392 for (i
= 0; i
< td
->maxcontacts
; ++i
) {
393 struct mt_slot
*s
= &(td
->slots
[i
]);
394 if ((td
->mtclass
->quirks
& MT_QUIRK_NOT_SEEN_MEANS_UP
) &&
395 !s
->seen_in_this_frame
) {
396 s
->touch_state
= false;
399 input_mt_slot(input
, i
);
400 input_mt_report_slot_state(input
, MT_TOOL_FINGER
,
402 if (s
->touch_state
) {
403 /* this finger is on the screen */
404 int wide
= (s
->w
> s
->h
);
405 /* divided by two to match visual scale of touch */
406 int major
= max(s
->w
, s
->h
) >> 1;
407 int minor
= min(s
->w
, s
->h
) >> 1;
409 input_event(input
, EV_ABS
, ABS_MT_POSITION_X
, s
->x
);
410 input_event(input
, EV_ABS
, ABS_MT_POSITION_Y
, s
->y
);
411 input_event(input
, EV_ABS
, ABS_MT_ORIENTATION
, wide
);
412 input_event(input
, EV_ABS
, ABS_MT_PRESSURE
, s
->p
);
413 input_event(input
, EV_ABS
, ABS_MT_TOUCH_MAJOR
, major
);
414 input_event(input
, EV_ABS
, ABS_MT_TOUCH_MINOR
, minor
);
416 s
->seen_in_this_frame
= false;
420 input_mt_report_pointer_emulation(input
, true);
422 td
->num_received
= 0;
427 static int mt_event(struct hid_device
*hid
, struct hid_field
*field
,
428 struct hid_usage
*usage
, __s32 value
)
430 struct mt_device
*td
= hid_get_drvdata(hid
);
431 __s32 quirks
= td
->mtclass
->quirks
;
433 if (hid
->claimed
& HID_CLAIMED_INPUT
&& td
->slots
) {
434 switch (usage
->hid
) {
436 if (quirks
& MT_QUIRK_VALID_IS_INRANGE
)
437 td
->curvalid
= value
;
439 case HID_DG_TIPSWITCH
:
440 if (quirks
& MT_QUIRK_NOT_SEEN_MEANS_UP
)
441 td
->curvalid
= value
;
442 td
->curdata
.touch_state
= value
;
444 case HID_DG_CONFIDENCE
:
445 if (quirks
& MT_QUIRK_VALID_IS_CONFIDENCE
)
446 td
->curvalid
= value
;
448 case HID_DG_CONTACTID
:
449 td
->curdata
.contactid
= value
;
451 case HID_DG_TIPPRESSURE
:
452 td
->curdata
.p
= value
;
455 td
->curdata
.x
= value
;
458 td
->curdata
.y
= value
;
461 td
->curdata
.w
= value
;
464 td
->curdata
.h
= value
;
466 case HID_DG_CONTACTCOUNT
:
468 * Includes multi-packet support where subsequent
469 * packets are sent with zero contactcount.
472 td
->num_expected
= value
;
476 /* fallback to the generic hidinput handling */
480 if (usage
->hid
== td
->last_slot_field
) {
481 mt_complete_slot(td
);
484 if (field
->index
== td
->last_field_index
485 && td
->num_received
>= td
->num_expected
)
486 mt_emit_event(td
, field
->hidinput
->input
);
490 /* we have handled the hidinput part, now remains hiddev */
491 if (hid
->claimed
& HID_CLAIMED_HIDDEV
&& hid
->hiddev_hid_event
)
492 hid
->hiddev_hid_event(hid
, field
, usage
, value
);
497 static void mt_set_input_mode(struct hid_device
*hdev
)
499 struct mt_device
*td
= hid_get_drvdata(hdev
);
500 struct hid_report
*r
;
501 struct hid_report_enum
*re
;
503 if (td
->inputmode
< 0)
506 re
= &(hdev
->report_enum
[HID_FEATURE_REPORT
]);
507 r
= re
->report_id_hash
[td
->inputmode
];
509 r
->field
[0]->value
[0] = 0x02;
510 usbhid_submit_report(hdev
, r
, USB_DIR_OUT
);
514 static int mt_probe(struct hid_device
*hdev
, const struct hid_device_id
*id
)
517 struct mt_device
*td
;
518 struct mt_class
*mtclass
= mt_classes
; /* MT_CLS_DEFAULT */
520 for (i
= 0; mt_classes
[i
].name
; i
++) {
521 if (id
->driver_data
== mt_classes
[i
].name
) {
522 mtclass
= &(mt_classes
[i
]);
527 /* This allows the driver to correctly support devices
528 * that emit events over several HID messages.
530 hdev
->quirks
|= HID_QUIRK_NO_INPUT_SYNC
;
532 td
= kzalloc(sizeof(struct mt_device
), GFP_KERNEL
);
534 dev_err(&hdev
->dev
, "cannot allocate multitouch data\n");
537 td
->mtclass
= mtclass
;
539 td
->last_mt_collection
= -1;
540 hid_set_drvdata(hdev
, td
);
542 ret
= hid_parse(hdev
);
546 ret
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
550 if (!td
->maxcontacts
)
551 td
->maxcontacts
= MT_DEFAULT_MAXCONTACT
;
553 td
->slots
= kzalloc(td
->maxcontacts
* sizeof(struct mt_slot
),
556 dev_err(&hdev
->dev
, "cannot allocate multitouch slots\n");
562 mt_set_input_mode(hdev
);
572 static int mt_reset_resume(struct hid_device
*hdev
)
574 mt_set_input_mode(hdev
);
579 static void mt_remove(struct hid_device
*hdev
)
581 struct mt_device
*td
= hid_get_drvdata(hdev
);
585 hid_set_drvdata(hdev
, NULL
);
588 static const struct hid_device_id mt_devices
[] = {
591 { .driver_data
= MT_CLS_3M
,
592 HID_USB_DEVICE(USB_VENDOR_ID_3M
,
593 USB_DEVICE_ID_3M1968
) },
594 { .driver_data
= MT_CLS_3M
,
595 HID_USB_DEVICE(USB_VENDOR_ID_3M
,
596 USB_DEVICE_ID_3M2256
) },
598 /* ActionStar panels */
599 { .driver_data
= MT_CLS_DEFAULT
,
600 HID_USB_DEVICE(USB_VENDOR_ID_ACTIONSTAR
,
601 USB_DEVICE_ID_ACTIONSTAR_1011
) },
604 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
605 HID_USB_DEVICE(USB_VENDOR_ID_CANDO
,
606 USB_DEVICE_ID_CANDO_MULTI_TOUCH
) },
607 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
608 HID_USB_DEVICE(USB_VENDOR_ID_CANDO
,
609 USB_DEVICE_ID_CANDO_MULTI_TOUCH_10_1
) },
610 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
611 HID_USB_DEVICE(USB_VENDOR_ID_CANDO
,
612 USB_DEVICE_ID_CANDO_MULTI_TOUCH_11_6
) },
613 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
614 HID_USB_DEVICE(USB_VENDOR_ID_CANDO
,
615 USB_DEVICE_ID_CANDO_MULTI_TOUCH_15_6
) },
617 /* Chunghwa Telecom touch panels */
618 { .driver_data
= MT_CLS_DEFAULT
,
619 HID_USB_DEVICE(USB_VENDOR_ID_CHUNGHWAT
,
620 USB_DEVICE_ID_CHUNGHWAT_MULTITOUCH
) },
623 { .driver_data
= MT_CLS_DEFAULT
,
624 HID_USB_DEVICE(USB_VENDOR_ID_CVTOUCH
,
625 USB_DEVICE_ID_CVTOUCH_SCREEN
) },
628 { .driver_data
= MT_CLS_CYPRESS
,
629 HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS
,
630 USB_DEVICE_ID_CYPRESS_TRUETOUCH
) },
632 /* eGalax devices (resistive) */
633 { .driver_data
= MT_CLS_EGALAX
,
634 HID_USB_DEVICE(USB_VENDOR_ID_DWAV
,
635 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH
) },
636 { .driver_data
= MT_CLS_EGALAX
,
637 HID_USB_DEVICE(USB_VENDOR_ID_DWAV
,
638 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH3
) },
640 /* eGalax devices (capacitive) */
641 { .driver_data
= MT_CLS_EGALAX
,
642 HID_USB_DEVICE(USB_VENDOR_ID_DWAV
,
643 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH1
) },
644 { .driver_data
= MT_CLS_EGALAX
,
645 HID_USB_DEVICE(USB_VENDOR_ID_DWAV
,
646 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH2
) },
647 { .driver_data
= MT_CLS_EGALAX
,
648 HID_USB_DEVICE(USB_VENDOR_ID_DWAV
,
649 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH4
) },
651 /* Elo TouchSystems IntelliTouch Plus panel */
652 { .driver_data
= MT_CLS_DUAL_NSMU_CONTACTID
,
653 HID_USB_DEVICE(USB_VENDOR_ID_ELO
,
654 USB_DEVICE_ID_ELO_TS2515
) },
656 /* GeneralTouch panel */
657 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTNUMBER
,
658 HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH
,
659 USB_DEVICE_ID_GENERAL_TOUCH_WIN7_TWOFINGERS
) },
661 /* GoodTouch panels */
662 { .driver_data
= MT_CLS_DEFAULT
,
663 HID_USB_DEVICE(USB_VENDOR_ID_GOODTOUCH
,
664 USB_DEVICE_ID_GOODTOUCH_000f
) },
666 /* Ilitek dual touch panel */
667 { .driver_data
= MT_CLS_DEFAULT
,
668 HID_USB_DEVICE(USB_VENDOR_ID_ILITEK
,
669 USB_DEVICE_ID_ILITEK_MULTITOUCH
) },
672 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTID
,
673 HID_USB_DEVICE(USB_VENDOR_ID_IRTOUCHSYSTEMS
,
674 USB_DEVICE_ID_IRTOUCH_INFRARED_USB
) },
677 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
678 HID_USB_DEVICE(USB_VENDOR_ID_LUMIO
,
679 USB_DEVICE_ID_CRYSTALTOUCH
) },
682 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
683 HID_USB_DEVICE(USB_VENDOR_ID_ASUS
,
684 USB_DEVICE_ID_ASUS_T91MT
)},
685 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
686 HID_USB_DEVICE(USB_VENDOR_ID_ASUS
,
687 USB_DEVICE_ID_ASUSTEK_MULTITOUCH_YFO
) },
688 { .driver_data
= MT_CLS_CONFIDENCE_MINUS_ONE
,
689 HID_USB_DEVICE(USB_VENDOR_ID_TURBOX
,
690 USB_DEVICE_ID_TURBOX_TOUCHSCREEN_MOSART
) },
692 /* PenMount panels */
693 { .driver_data
= MT_CLS_CONFIDENCE
,
694 HID_USB_DEVICE(USB_VENDOR_ID_PENMOUNT
,
695 USB_DEVICE_ID_PENMOUNT_PCI
) },
697 /* PixCir-based panels */
698 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTID
,
699 HID_USB_DEVICE(USB_VENDOR_ID_HANVON
,
700 USB_DEVICE_ID_HANVON_MULTITOUCH
) },
701 { .driver_data
= MT_CLS_DUAL_INRANGE_CONTACTID
,
702 HID_USB_DEVICE(USB_VENDOR_ID_CANDO
,
703 USB_DEVICE_ID_CANDO_PIXCIR_MULTI_TOUCH
) },
706 { .driver_data
= MT_CLS_CONFIDENCE
,
707 HID_USB_DEVICE(USB_VENDOR_ID_STANTUM
,
709 { .driver_data
= MT_CLS_CONFIDENCE
,
710 HID_USB_DEVICE(USB_VENDOR_ID_STANTUM
,
711 USB_DEVICE_ID_MTP_STM
)},
712 { .driver_data
= MT_CLS_CONFIDENCE
,
713 HID_USB_DEVICE(USB_VENDOR_ID_STANTUM
,
714 USB_DEVICE_ID_MTP_SITRONIX
)},
716 /* Touch International panels */
717 { .driver_data
= MT_CLS_DEFAULT
,
718 HID_USB_DEVICE(USB_VENDOR_ID_TOUCH_INTL
,
719 USB_DEVICE_ID_TOUCH_INTL_MULTI_TOUCH
) },
722 { .driver_data
= MT_CLS_DEFAULT
,
723 HID_USB_DEVICE(USB_VENDOR_ID_UNITEC
,
724 USB_DEVICE_ID_UNITEC_USB_TOUCH_0709
) },
725 { .driver_data
= MT_CLS_DEFAULT
,
726 HID_USB_DEVICE(USB_VENDOR_ID_UNITEC
,
727 USB_DEVICE_ID_UNITEC_USB_TOUCH_0A19
) },
731 MODULE_DEVICE_TABLE(hid
, mt_devices
);
733 static const struct hid_usage_id mt_grabbed_usages
[] = {
734 { HID_ANY_ID
, HID_ANY_ID
, HID_ANY_ID
},
735 { HID_ANY_ID
- 1, HID_ANY_ID
- 1, HID_ANY_ID
- 1}
738 static struct hid_driver mt_driver
= {
739 .name
= "hid-multitouch",
740 .id_table
= mt_devices
,
743 .input_mapping
= mt_input_mapping
,
744 .input_mapped
= mt_input_mapped
,
745 .feature_mapping
= mt_feature_mapping
,
746 .usage_table
= mt_grabbed_usages
,
749 .reset_resume
= mt_reset_resume
,
753 static int __init
mt_init(void)
755 return hid_register_driver(&mt_driver
);
758 static void __exit
mt_exit(void)
760 hid_unregister_driver(&mt_driver
);
763 module_init(mt_init
);
764 module_exit(mt_exit
);