Linux 5.1.15
[linux/fpc-iii.git] / drivers / hid / hid-multitouch.c
blob1565a307170aa43a878890cc3d6bfb8516c6dcc7
1 /*
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)
27 * any later version.
31 * This driver is regularly tested thanks to the test suite in hid-tools[1].
32 * Please run these regression tests before patching this module so that
33 * your patch won't break existing known devices.
35 * [1] https://gitlab.freedesktop.org/libevdev/hid-tools
38 #include <linux/device.h>
39 #include <linux/hid.h>
40 #include <linux/module.h>
41 #include <linux/slab.h>
42 #include <linux/input/mt.h>
43 #include <linux/jiffies.h>
44 #include <linux/string.h>
45 #include <linux/timer.h>
48 MODULE_AUTHOR("Stephane Chatty <chatty@enac.fr>");
49 MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
50 MODULE_DESCRIPTION("HID multitouch panels");
51 MODULE_LICENSE("GPL");
53 #include "hid-ids.h"
55 /* quirks to control the device */
56 #define MT_QUIRK_NOT_SEEN_MEANS_UP BIT(0)
57 #define MT_QUIRK_SLOT_IS_CONTACTID BIT(1)
58 #define MT_QUIRK_CYPRESS BIT(2)
59 #define MT_QUIRK_SLOT_IS_CONTACTNUMBER BIT(3)
60 #define MT_QUIRK_ALWAYS_VALID BIT(4)
61 #define MT_QUIRK_VALID_IS_INRANGE BIT(5)
62 #define MT_QUIRK_VALID_IS_CONFIDENCE BIT(6)
63 #define MT_QUIRK_CONFIDENCE BIT(7)
64 #define MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE BIT(8)
65 #define MT_QUIRK_NO_AREA BIT(9)
66 #define MT_QUIRK_IGNORE_DUPLICATES BIT(10)
67 #define MT_QUIRK_HOVERING BIT(11)
68 #define MT_QUIRK_CONTACT_CNT_ACCURATE BIT(12)
69 #define MT_QUIRK_FORCE_GET_FEATURE BIT(13)
70 #define MT_QUIRK_FIX_CONST_CONTACT_ID BIT(14)
71 #define MT_QUIRK_TOUCH_SIZE_SCALING BIT(15)
72 #define MT_QUIRK_STICKY_FINGERS BIT(16)
73 #define MT_QUIRK_ASUS_CUSTOM_UP BIT(17)
74 #define MT_QUIRK_WIN8_PTP_BUTTONS BIT(18)
76 #define MT_INPUTMODE_TOUCHSCREEN 0x02
77 #define MT_INPUTMODE_TOUCHPAD 0x03
79 #define MT_BUTTONTYPE_CLICKPAD 0
81 enum latency_mode {
82 HID_LATENCY_NORMAL = 0,
83 HID_LATENCY_HIGH = 1,
86 #define MT_IO_FLAGS_RUNNING 0
87 #define MT_IO_FLAGS_ACTIVE_SLOTS 1
88 #define MT_IO_FLAGS_PENDING_SLOTS 2
90 static const bool mtrue = true; /* default for true */
91 static const bool mfalse; /* default for false */
92 static const __s32 mzero; /* default for 0 */
94 #define DEFAULT_TRUE ((void *)&mtrue)
95 #define DEFAULT_FALSE ((void *)&mfalse)
96 #define DEFAULT_ZERO ((void *)&mzero)
98 struct mt_usages {
99 struct list_head list;
100 __s32 *x, *y, *cx, *cy, *p, *w, *h, *a;
101 __s32 *contactid; /* the device ContactID assigned to this slot */
102 bool *tip_state; /* is the touch valid? */
103 bool *inrange_state; /* is the finger in proximity of the sensor? */
104 bool *confidence_state; /* is the touch made by a finger? */
107 struct mt_application {
108 struct list_head list;
109 unsigned int application;
110 struct list_head mt_usages; /* mt usages list */
112 __s32 quirks;
114 __s32 *scantime; /* scantime reported */
115 __s32 scantime_logical_max; /* max value for raw scantime */
117 __s32 *raw_cc; /* contact count in the report */
118 int left_button_state; /* left button state */
119 unsigned int mt_flags; /* flags to pass to input-mt */
121 unsigned long *pending_palm_slots; /* slots where we reported palm
122 * and need to release */
124 __u8 num_received; /* how many contacts we received */
125 __u8 num_expected; /* expected last contact index */
126 __u8 buttons_count; /* number of physical buttons per touchpad */
127 __u8 touches_by_report; /* how many touches are present in one report:
128 * 1 means we should use a serial protocol
129 * > 1 means hybrid (multitouch) protocol
132 __s32 dev_time; /* the scan time provided by the device */
133 unsigned long jiffies; /* the frame's jiffies */
134 int timestamp; /* the timestamp to be sent */
135 int prev_scantime; /* scantime reported previously */
137 bool have_contact_count;
140 struct mt_class {
141 __s32 name; /* MT_CLS */
142 __s32 quirks;
143 __s32 sn_move; /* Signal/noise ratio for move events */
144 __s32 sn_width; /* Signal/noise ratio for width events */
145 __s32 sn_height; /* Signal/noise ratio for height events */
146 __s32 sn_pressure; /* Signal/noise ratio for pressure events */
147 __u8 maxcontacts;
148 bool is_indirect; /* true for touchpads */
149 bool export_all_inputs; /* do not ignore mouse, keyboards, etc... */
152 struct mt_report_data {
153 struct list_head list;
154 struct hid_report *report;
155 struct mt_application *application;
156 bool is_mt_collection;
159 struct mt_device {
160 struct mt_class mtclass; /* our mt device class */
161 struct timer_list release_timer; /* to release sticky fingers */
162 struct hid_device *hdev; /* hid_device we're attached to */
163 unsigned long mt_io_flags; /* mt flags (MT_IO_FLAGS_*) */
164 __u8 inputmode_value; /* InputMode HID feature value */
165 __u8 maxcontacts;
166 bool is_buttonpad; /* is this device a button pad? */
167 bool serial_maybe; /* need to check for serial protocol */
169 struct list_head applications;
170 struct list_head reports;
173 static void mt_post_parse_default_settings(struct mt_device *td,
174 struct mt_application *app);
175 static void mt_post_parse(struct mt_device *td, struct mt_application *app);
177 /* classes of device behavior */
178 #define MT_CLS_DEFAULT 0x0001
180 #define MT_CLS_SERIAL 0x0002
181 #define MT_CLS_CONFIDENCE 0x0003
182 #define MT_CLS_CONFIDENCE_CONTACT_ID 0x0004
183 #define MT_CLS_CONFIDENCE_MINUS_ONE 0x0005
184 #define MT_CLS_DUAL_INRANGE_CONTACTID 0x0006
185 #define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0007
186 /* reserved 0x0008 */
187 #define MT_CLS_INRANGE_CONTACTNUMBER 0x0009
188 #define MT_CLS_NSMU 0x000a
189 /* reserved 0x0010 */
190 /* reserved 0x0011 */
191 #define MT_CLS_WIN_8 0x0012
192 #define MT_CLS_EXPORT_ALL_INPUTS 0x0013
193 #define MT_CLS_WIN_8_DUAL 0x0014
195 /* vendor specific classes */
196 #define MT_CLS_3M 0x0101
197 /* reserved 0x0102 */
198 #define MT_CLS_EGALAX 0x0103
199 #define MT_CLS_EGALAX_SERIAL 0x0104
200 #define MT_CLS_TOPSEED 0x0105
201 #define MT_CLS_PANASONIC 0x0106
202 #define MT_CLS_FLATFROG 0x0107
203 #define MT_CLS_GENERALTOUCH_TWOFINGERS 0x0108
204 #define MT_CLS_GENERALTOUCH_PWT_TENFINGERS 0x0109
205 #define MT_CLS_LG 0x010a
206 #define MT_CLS_ASUS 0x010b
207 #define MT_CLS_VTL 0x0110
208 #define MT_CLS_GOOGLE 0x0111
209 #define MT_CLS_RAZER_BLADE_STEALTH 0x0112
211 #define MT_DEFAULT_MAXCONTACT 10
212 #define MT_MAX_MAXCONTACT 250
215 * Resync device and local timestamps after that many microseconds without
216 * receiving data.
218 #define MAX_TIMESTAMP_INTERVAL 1000000
220 #define MT_USB_DEVICE(v, p) HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH, v, p)
221 #define MT_BT_DEVICE(v, p) HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_MULTITOUCH, v, p)
224 * these device-dependent functions determine what slot corresponds
225 * to a valid contact that was just read.
228 static int cypress_compute_slot(struct mt_application *application,
229 struct mt_usages *slot)
231 if (*slot->contactid != 0 || application->num_received == 0)
232 return *slot->contactid;
233 else
234 return -1;
237 static const struct mt_class mt_classes[] = {
238 { .name = MT_CLS_DEFAULT,
239 .quirks = MT_QUIRK_ALWAYS_VALID |
240 MT_QUIRK_CONTACT_CNT_ACCURATE },
241 { .name = MT_CLS_NSMU,
242 .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP },
243 { .name = MT_CLS_SERIAL,
244 .quirks = MT_QUIRK_ALWAYS_VALID},
245 { .name = MT_CLS_CONFIDENCE,
246 .quirks = MT_QUIRK_VALID_IS_CONFIDENCE },
247 { .name = MT_CLS_CONFIDENCE_CONTACT_ID,
248 .quirks = MT_QUIRK_VALID_IS_CONFIDENCE |
249 MT_QUIRK_SLOT_IS_CONTACTID },
250 { .name = MT_CLS_CONFIDENCE_MINUS_ONE,
251 .quirks = MT_QUIRK_VALID_IS_CONFIDENCE |
252 MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE },
253 { .name = MT_CLS_DUAL_INRANGE_CONTACTID,
254 .quirks = MT_QUIRK_VALID_IS_INRANGE |
255 MT_QUIRK_SLOT_IS_CONTACTID,
256 .maxcontacts = 2 },
257 { .name = MT_CLS_DUAL_INRANGE_CONTACTNUMBER,
258 .quirks = MT_QUIRK_VALID_IS_INRANGE |
259 MT_QUIRK_SLOT_IS_CONTACTNUMBER,
260 .maxcontacts = 2 },
261 { .name = MT_CLS_INRANGE_CONTACTNUMBER,
262 .quirks = MT_QUIRK_VALID_IS_INRANGE |
263 MT_QUIRK_SLOT_IS_CONTACTNUMBER },
264 { .name = MT_CLS_WIN_8,
265 .quirks = MT_QUIRK_ALWAYS_VALID |
266 MT_QUIRK_IGNORE_DUPLICATES |
267 MT_QUIRK_HOVERING |
268 MT_QUIRK_CONTACT_CNT_ACCURATE |
269 MT_QUIRK_STICKY_FINGERS |
270 MT_QUIRK_WIN8_PTP_BUTTONS },
271 { .name = MT_CLS_EXPORT_ALL_INPUTS,
272 .quirks = MT_QUIRK_ALWAYS_VALID |
273 MT_QUIRK_CONTACT_CNT_ACCURATE,
274 .export_all_inputs = true },
275 { .name = MT_CLS_WIN_8_DUAL,
276 .quirks = MT_QUIRK_ALWAYS_VALID |
277 MT_QUIRK_IGNORE_DUPLICATES |
278 MT_QUIRK_HOVERING |
279 MT_QUIRK_CONTACT_CNT_ACCURATE |
280 MT_QUIRK_WIN8_PTP_BUTTONS,
281 .export_all_inputs = true },
284 * vendor specific classes
286 { .name = MT_CLS_3M,
287 .quirks = MT_QUIRK_VALID_IS_CONFIDENCE |
288 MT_QUIRK_SLOT_IS_CONTACTID |
289 MT_QUIRK_TOUCH_SIZE_SCALING,
290 .sn_move = 2048,
291 .sn_width = 128,
292 .sn_height = 128,
293 .maxcontacts = 60,
295 { .name = MT_CLS_EGALAX,
296 .quirks = MT_QUIRK_SLOT_IS_CONTACTID |
297 MT_QUIRK_VALID_IS_INRANGE,
298 .sn_move = 4096,
299 .sn_pressure = 32,
301 { .name = MT_CLS_EGALAX_SERIAL,
302 .quirks = MT_QUIRK_SLOT_IS_CONTACTID |
303 MT_QUIRK_ALWAYS_VALID,
304 .sn_move = 4096,
305 .sn_pressure = 32,
307 { .name = MT_CLS_TOPSEED,
308 .quirks = MT_QUIRK_ALWAYS_VALID,
309 .is_indirect = true,
310 .maxcontacts = 2,
312 { .name = MT_CLS_PANASONIC,
313 .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP,
314 .maxcontacts = 4 },
315 { .name = MT_CLS_GENERALTOUCH_TWOFINGERS,
316 .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP |
317 MT_QUIRK_VALID_IS_INRANGE |
318 MT_QUIRK_SLOT_IS_CONTACTID,
319 .maxcontacts = 2
321 { .name = MT_CLS_GENERALTOUCH_PWT_TENFINGERS,
322 .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP |
323 MT_QUIRK_SLOT_IS_CONTACTID
326 { .name = MT_CLS_FLATFROG,
327 .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP |
328 MT_QUIRK_NO_AREA,
329 .sn_move = 2048,
330 .maxcontacts = 40,
332 { .name = MT_CLS_LG,
333 .quirks = MT_QUIRK_ALWAYS_VALID |
334 MT_QUIRK_FIX_CONST_CONTACT_ID |
335 MT_QUIRK_IGNORE_DUPLICATES |
336 MT_QUIRK_HOVERING |
337 MT_QUIRK_CONTACT_CNT_ACCURATE },
338 { .name = MT_CLS_ASUS,
339 .quirks = MT_QUIRK_ALWAYS_VALID |
340 MT_QUIRK_CONTACT_CNT_ACCURATE |
341 MT_QUIRK_ASUS_CUSTOM_UP },
342 { .name = MT_CLS_VTL,
343 .quirks = MT_QUIRK_ALWAYS_VALID |
344 MT_QUIRK_CONTACT_CNT_ACCURATE |
345 MT_QUIRK_FORCE_GET_FEATURE,
347 { .name = MT_CLS_GOOGLE,
348 .quirks = MT_QUIRK_ALWAYS_VALID |
349 MT_QUIRK_CONTACT_CNT_ACCURATE |
350 MT_QUIRK_SLOT_IS_CONTACTID |
351 MT_QUIRK_HOVERING
353 { .name = MT_CLS_RAZER_BLADE_STEALTH,
354 .quirks = MT_QUIRK_ALWAYS_VALID |
355 MT_QUIRK_IGNORE_DUPLICATES |
356 MT_QUIRK_HOVERING |
357 MT_QUIRK_CONTACT_CNT_ACCURATE |
358 MT_QUIRK_WIN8_PTP_BUTTONS,
363 static ssize_t mt_show_quirks(struct device *dev,
364 struct device_attribute *attr,
365 char *buf)
367 struct hid_device *hdev = to_hid_device(dev);
368 struct mt_device *td = hid_get_drvdata(hdev);
370 return sprintf(buf, "%u\n", td->mtclass.quirks);
373 static ssize_t mt_set_quirks(struct device *dev,
374 struct device_attribute *attr,
375 const char *buf, size_t count)
377 struct hid_device *hdev = to_hid_device(dev);
378 struct mt_device *td = hid_get_drvdata(hdev);
379 struct mt_application *application;
381 unsigned long val;
383 if (kstrtoul(buf, 0, &val))
384 return -EINVAL;
386 td->mtclass.quirks = val;
388 list_for_each_entry(application, &td->applications, list) {
389 application->quirks = val;
390 if (!application->have_contact_count)
391 application->quirks &= ~MT_QUIRK_CONTACT_CNT_ACCURATE;
394 return count;
397 static DEVICE_ATTR(quirks, S_IWUSR | S_IRUGO, mt_show_quirks, mt_set_quirks);
399 static struct attribute *sysfs_attrs[] = {
400 &dev_attr_quirks.attr,
401 NULL
404 static const struct attribute_group mt_attribute_group = {
405 .attrs = sysfs_attrs
408 static void mt_get_feature(struct hid_device *hdev, struct hid_report *report)
410 int ret;
411 u32 size = hid_report_len(report);
412 u8 *buf;
415 * Do not fetch the feature report if the device has been explicitly
416 * marked as non-capable.
418 if (hdev->quirks & HID_QUIRK_NO_INIT_REPORTS)
419 return;
421 buf = hid_alloc_report_buf(report, GFP_KERNEL);
422 if (!buf)
423 return;
425 ret = hid_hw_raw_request(hdev, report->id, buf, size,
426 HID_FEATURE_REPORT, HID_REQ_GET_REPORT);
427 if (ret < 0) {
428 dev_warn(&hdev->dev, "failed to fetch feature %d\n",
429 report->id);
430 } else {
431 ret = hid_report_raw_event(hdev, HID_FEATURE_REPORT, buf,
432 size, 0);
433 if (ret)
434 dev_warn(&hdev->dev, "failed to report feature\n");
437 kfree(buf);
440 static void mt_feature_mapping(struct hid_device *hdev,
441 struct hid_field *field, struct hid_usage *usage)
443 struct mt_device *td = hid_get_drvdata(hdev);
445 switch (usage->hid) {
446 case HID_DG_CONTACTMAX:
447 mt_get_feature(hdev, field->report);
449 td->maxcontacts = field->value[0];
450 if (!td->maxcontacts &&
451 field->logical_maximum <= MT_MAX_MAXCONTACT)
452 td->maxcontacts = field->logical_maximum;
453 if (td->mtclass.maxcontacts)
454 /* check if the maxcontacts is given by the class */
455 td->maxcontacts = td->mtclass.maxcontacts;
457 break;
458 case HID_DG_BUTTONTYPE:
459 if (usage->usage_index >= field->report_count) {
460 dev_err(&hdev->dev, "HID_DG_BUTTONTYPE out of range\n");
461 break;
464 mt_get_feature(hdev, field->report);
465 if (field->value[usage->usage_index] == MT_BUTTONTYPE_CLICKPAD)
466 td->is_buttonpad = true;
468 break;
469 case 0xff0000c5:
470 /* Retrieve the Win8 blob once to enable some devices */
471 if (usage->usage_index == 0)
472 mt_get_feature(hdev, field->report);
473 break;
477 static void set_abs(struct input_dev *input, unsigned int code,
478 struct hid_field *field, int snratio)
480 int fmin = field->logical_minimum;
481 int fmax = field->logical_maximum;
482 int fuzz = snratio ? (fmax - fmin) / snratio : 0;
483 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
484 input_abs_set_res(input, code, hidinput_calc_abs_res(field, code));
487 static struct mt_usages *mt_allocate_usage(struct hid_device *hdev,
488 struct mt_application *application)
490 struct mt_usages *usage;
492 usage = devm_kzalloc(&hdev->dev, sizeof(*usage), GFP_KERNEL);
493 if (!usage)
494 return NULL;
496 /* set some defaults so we do not need to check for null pointers */
497 usage->x = DEFAULT_ZERO;
498 usage->y = DEFAULT_ZERO;
499 usage->cx = DEFAULT_ZERO;
500 usage->cy = DEFAULT_ZERO;
501 usage->p = DEFAULT_ZERO;
502 usage->w = DEFAULT_ZERO;
503 usage->h = DEFAULT_ZERO;
504 usage->a = DEFAULT_ZERO;
505 usage->contactid = DEFAULT_ZERO;
506 usage->tip_state = DEFAULT_FALSE;
507 usage->inrange_state = DEFAULT_FALSE;
508 usage->confidence_state = DEFAULT_TRUE;
510 list_add_tail(&usage->list, &application->mt_usages);
512 return usage;
515 static struct mt_application *mt_allocate_application(struct mt_device *td,
516 unsigned int application)
518 struct mt_application *mt_application;
520 mt_application = devm_kzalloc(&td->hdev->dev, sizeof(*mt_application),
521 GFP_KERNEL);
522 if (!mt_application)
523 return NULL;
525 mt_application->application = application;
526 INIT_LIST_HEAD(&mt_application->mt_usages);
528 if (application == HID_DG_TOUCHSCREEN)
529 mt_application->mt_flags |= INPUT_MT_DIRECT;
532 * Model touchscreens providing buttons as touchpads.
534 if (application == HID_DG_TOUCHPAD) {
535 mt_application->mt_flags |= INPUT_MT_POINTER;
536 td->inputmode_value = MT_INPUTMODE_TOUCHPAD;
539 mt_application->scantime = DEFAULT_ZERO;
540 mt_application->raw_cc = DEFAULT_ZERO;
541 mt_application->quirks = td->mtclass.quirks;
543 list_add_tail(&mt_application->list, &td->applications);
545 return mt_application;
548 static struct mt_application *mt_find_application(struct mt_device *td,
549 unsigned int application)
551 struct mt_application *tmp, *mt_application = NULL;
553 list_for_each_entry(tmp, &td->applications, list) {
554 if (application == tmp->application) {
555 mt_application = tmp;
556 break;
560 if (!mt_application)
561 mt_application = mt_allocate_application(td, application);
563 return mt_application;
566 static struct mt_report_data *mt_allocate_report_data(struct mt_device *td,
567 struct hid_report *report)
569 struct mt_report_data *rdata;
570 struct hid_field *field;
571 int r, n;
573 rdata = devm_kzalloc(&td->hdev->dev, sizeof(*rdata), GFP_KERNEL);
574 if (!rdata)
575 return NULL;
577 rdata->report = report;
578 rdata->application = mt_find_application(td, report->application);
580 if (!rdata->application) {
581 devm_kfree(&td->hdev->dev, rdata);
582 return NULL;
585 for (r = 0; r < report->maxfield; r++) {
586 field = report->field[r];
588 if (!(HID_MAIN_ITEM_VARIABLE & field->flags))
589 continue;
591 for (n = 0; n < field->report_count; n++) {
592 if (field->usage[n].hid == HID_DG_CONTACTID)
593 rdata->is_mt_collection = true;
597 list_add_tail(&rdata->list, &td->reports);
599 return rdata;
602 static struct mt_report_data *mt_find_report_data(struct mt_device *td,
603 struct hid_report *report)
605 struct mt_report_data *tmp, *rdata = NULL;
607 list_for_each_entry(tmp, &td->reports, list) {
608 if (report == tmp->report) {
609 rdata = tmp;
610 break;
614 if (!rdata)
615 rdata = mt_allocate_report_data(td, report);
617 return rdata;
620 static void mt_store_field(struct hid_device *hdev,
621 struct mt_application *application,
622 __s32 *value,
623 size_t offset)
625 struct mt_usages *usage;
626 __s32 **target;
628 if (list_empty(&application->mt_usages))
629 usage = mt_allocate_usage(hdev, application);
630 else
631 usage = list_last_entry(&application->mt_usages,
632 struct mt_usages,
633 list);
635 if (!usage)
636 return;
638 target = (__s32 **)((char *)usage + offset);
640 /* the value has already been filled, create a new slot */
641 if (*target != DEFAULT_TRUE &&
642 *target != DEFAULT_FALSE &&
643 *target != DEFAULT_ZERO) {
644 if (usage->contactid == DEFAULT_ZERO ||
645 usage->x == DEFAULT_ZERO ||
646 usage->y == DEFAULT_ZERO) {
647 hid_dbg(hdev,
648 "ignoring duplicate usage on incomplete");
649 return;
651 usage = mt_allocate_usage(hdev, application);
652 if (!usage)
653 return;
655 target = (__s32 **)((char *)usage + offset);
658 *target = value;
661 #define MT_STORE_FIELD(__name) \
662 mt_store_field(hdev, app, \
663 &field->value[usage->usage_index], \
664 offsetof(struct mt_usages, __name))
666 static int mt_touch_input_mapping(struct hid_device *hdev, struct hid_input *hi,
667 struct hid_field *field, struct hid_usage *usage,
668 unsigned long **bit, int *max, struct mt_application *app)
670 struct mt_device *td = hid_get_drvdata(hdev);
671 struct mt_class *cls = &td->mtclass;
672 int code;
673 struct hid_usage *prev_usage = NULL;
676 * Model touchscreens providing buttons as touchpads.
678 if (field->application == HID_DG_TOUCHSCREEN &&
679 (usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON) {
680 app->mt_flags |= INPUT_MT_POINTER;
681 td->inputmode_value = MT_INPUTMODE_TOUCHPAD;
684 /* count the buttons on touchpads */
685 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON)
686 app->buttons_count++;
688 if (usage->usage_index)
689 prev_usage = &field->usage[usage->usage_index - 1];
691 switch (usage->hid & HID_USAGE_PAGE) {
693 case HID_UP_GENDESK:
694 switch (usage->hid) {
695 case HID_GD_X:
696 if (prev_usage && (prev_usage->hid == usage->hid)) {
697 code = ABS_MT_TOOL_X;
698 MT_STORE_FIELD(cx);
699 } else {
700 code = ABS_MT_POSITION_X;
701 MT_STORE_FIELD(x);
704 set_abs(hi->input, code, field, cls->sn_move);
707 * A system multi-axis that exports X and Y has a high
708 * chance of being used directly on a surface
710 if (field->application == HID_GD_SYSTEM_MULTIAXIS) {
711 __set_bit(INPUT_PROP_DIRECT,
712 hi->input->propbit);
713 input_set_abs_params(hi->input,
714 ABS_MT_TOOL_TYPE,
715 MT_TOOL_DIAL,
716 MT_TOOL_DIAL, 0, 0);
719 return 1;
720 case HID_GD_Y:
721 if (prev_usage && (prev_usage->hid == usage->hid)) {
722 code = ABS_MT_TOOL_Y;
723 MT_STORE_FIELD(cy);
724 } else {
725 code = ABS_MT_POSITION_Y;
726 MT_STORE_FIELD(y);
729 set_abs(hi->input, code, field, cls->sn_move);
731 return 1;
733 return 0;
735 case HID_UP_DIGITIZER:
736 switch (usage->hid) {
737 case HID_DG_INRANGE:
738 if (app->quirks & MT_QUIRK_HOVERING) {
739 input_set_abs_params(hi->input,
740 ABS_MT_DISTANCE, 0, 1, 0, 0);
742 MT_STORE_FIELD(inrange_state);
743 return 1;
744 case HID_DG_CONFIDENCE:
745 if ((cls->name == MT_CLS_WIN_8 ||
746 cls->name == MT_CLS_WIN_8_DUAL) &&
747 (field->application == HID_DG_TOUCHPAD ||
748 field->application == HID_DG_TOUCHSCREEN))
749 app->quirks |= MT_QUIRK_CONFIDENCE;
751 if (app->quirks & MT_QUIRK_CONFIDENCE)
752 input_set_abs_params(hi->input,
753 ABS_MT_TOOL_TYPE,
754 MT_TOOL_FINGER,
755 MT_TOOL_PALM, 0, 0);
757 MT_STORE_FIELD(confidence_state);
758 return 1;
759 case HID_DG_TIPSWITCH:
760 if (field->application != HID_GD_SYSTEM_MULTIAXIS)
761 input_set_capability(hi->input,
762 EV_KEY, BTN_TOUCH);
763 MT_STORE_FIELD(tip_state);
764 return 1;
765 case HID_DG_CONTACTID:
766 MT_STORE_FIELD(contactid);
767 app->touches_by_report++;
768 return 1;
769 case HID_DG_WIDTH:
770 if (!(app->quirks & MT_QUIRK_NO_AREA))
771 set_abs(hi->input, ABS_MT_TOUCH_MAJOR, field,
772 cls->sn_width);
773 MT_STORE_FIELD(w);
774 return 1;
775 case HID_DG_HEIGHT:
776 if (!(app->quirks & MT_QUIRK_NO_AREA)) {
777 set_abs(hi->input, ABS_MT_TOUCH_MINOR, field,
778 cls->sn_height);
781 * Only set ABS_MT_ORIENTATION if it is not
782 * already set by the HID_DG_AZIMUTH usage.
784 if (!test_bit(ABS_MT_ORIENTATION,
785 hi->input->absbit))
786 input_set_abs_params(hi->input,
787 ABS_MT_ORIENTATION, 0, 1, 0, 0);
789 MT_STORE_FIELD(h);
790 return 1;
791 case HID_DG_TIPPRESSURE:
792 set_abs(hi->input, ABS_MT_PRESSURE, field,
793 cls->sn_pressure);
794 MT_STORE_FIELD(p);
795 return 1;
796 case HID_DG_SCANTIME:
797 input_set_capability(hi->input, EV_MSC, MSC_TIMESTAMP);
798 app->scantime = &field->value[usage->usage_index];
799 app->scantime_logical_max = field->logical_maximum;
800 return 1;
801 case HID_DG_CONTACTCOUNT:
802 app->have_contact_count = true;
803 app->raw_cc = &field->value[usage->usage_index];
804 return 1;
805 case HID_DG_AZIMUTH:
807 * Azimuth has the range of [0, MAX) representing a full
808 * revolution. Set ABS_MT_ORIENTATION to a quarter of
809 * MAX according the definition of ABS_MT_ORIENTATION
811 input_set_abs_params(hi->input, ABS_MT_ORIENTATION,
812 -field->logical_maximum / 4,
813 field->logical_maximum / 4,
814 cls->sn_move ?
815 field->logical_maximum / cls->sn_move : 0, 0);
816 MT_STORE_FIELD(a);
817 return 1;
818 case HID_DG_CONTACTMAX:
819 /* contact max are global to the report */
820 return -1;
821 case HID_DG_TOUCH:
822 /* Legacy devices use TIPSWITCH and not TOUCH.
823 * Let's just ignore this field. */
824 return -1;
826 /* let hid-input decide for the others */
827 return 0;
829 case HID_UP_BUTTON:
830 code = BTN_MOUSE + ((usage->hid - 1) & HID_USAGE);
832 * MS PTP spec says that external buttons left and right have
833 * usages 2 and 3.
835 if ((app->quirks & MT_QUIRK_WIN8_PTP_BUTTONS) &&
836 field->application == HID_DG_TOUCHPAD &&
837 (usage->hid & HID_USAGE) > 1)
838 code--;
840 if (field->application == HID_GD_SYSTEM_MULTIAXIS)
841 code = BTN_0 + ((usage->hid - 1) & HID_USAGE);
843 hid_map_usage(hi, usage, bit, max, EV_KEY, code);
844 input_set_capability(hi->input, EV_KEY, code);
845 return 1;
847 case 0xff000000:
848 /* we do not want to map these: no input-oriented meaning */
849 return -1;
852 return 0;
855 static int mt_compute_slot(struct mt_device *td, struct mt_application *app,
856 struct mt_usages *slot,
857 struct input_dev *input)
859 __s32 quirks = app->quirks;
861 if (quirks & MT_QUIRK_SLOT_IS_CONTACTID)
862 return *slot->contactid;
864 if (quirks & MT_QUIRK_CYPRESS)
865 return cypress_compute_slot(app, slot);
867 if (quirks & MT_QUIRK_SLOT_IS_CONTACTNUMBER)
868 return app->num_received;
870 if (quirks & MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE)
871 return *slot->contactid - 1;
873 return input_mt_get_slot_by_key(input, *slot->contactid);
876 static void mt_release_pending_palms(struct mt_device *td,
877 struct mt_application *app,
878 struct input_dev *input)
880 int slotnum;
881 bool need_sync = false;
883 for_each_set_bit(slotnum, app->pending_palm_slots, td->maxcontacts) {
884 clear_bit(slotnum, app->pending_palm_slots);
886 input_mt_slot(input, slotnum);
887 input_mt_report_slot_state(input, MT_TOOL_PALM, false);
889 need_sync = true;
892 if (need_sync) {
893 input_mt_sync_frame(input);
894 input_sync(input);
899 * this function is called when a whole packet has been received and processed,
900 * so that it can decide what to send to the input layer.
902 static void mt_sync_frame(struct mt_device *td, struct mt_application *app,
903 struct input_dev *input)
905 if (app->quirks & MT_QUIRK_WIN8_PTP_BUTTONS)
906 input_event(input, EV_KEY, BTN_LEFT, app->left_button_state);
908 input_mt_sync_frame(input);
909 input_event(input, EV_MSC, MSC_TIMESTAMP, app->timestamp);
910 input_sync(input);
912 mt_release_pending_palms(td, app, input);
914 app->num_received = 0;
915 app->left_button_state = 0;
917 if (test_bit(MT_IO_FLAGS_ACTIVE_SLOTS, &td->mt_io_flags))
918 set_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags);
919 else
920 clear_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags);
921 clear_bit(MT_IO_FLAGS_ACTIVE_SLOTS, &td->mt_io_flags);
924 static int mt_compute_timestamp(struct mt_application *app, __s32 value)
926 long delta = value - app->prev_scantime;
927 unsigned long jdelta = jiffies_to_usecs(jiffies - app->jiffies);
929 app->jiffies = jiffies;
931 if (delta < 0)
932 delta += app->scantime_logical_max;
934 /* HID_DG_SCANTIME is expressed in 100us, we want it in us. */
935 delta *= 100;
937 if (jdelta > MAX_TIMESTAMP_INTERVAL)
938 /* No data received for a while, resync the timestamp. */
939 return 0;
940 else
941 return app->timestamp + delta;
944 static int mt_touch_event(struct hid_device *hid, struct hid_field *field,
945 struct hid_usage *usage, __s32 value)
947 /* we will handle the hidinput part later, now remains hiddev */
948 if (hid->claimed & HID_CLAIMED_HIDDEV && hid->hiddev_hid_event)
949 hid->hiddev_hid_event(hid, field, usage, value);
951 return 1;
954 static int mt_process_slot(struct mt_device *td, struct input_dev *input,
955 struct mt_application *app,
956 struct mt_usages *slot)
958 struct input_mt *mt = input->mt;
959 __s32 quirks = app->quirks;
960 bool valid = true;
961 bool confidence_state = true;
962 bool inrange_state = false;
963 int active;
964 int slotnum;
965 int tool = MT_TOOL_FINGER;
967 if (!slot)
968 return -EINVAL;
970 if ((quirks & MT_QUIRK_CONTACT_CNT_ACCURATE) &&
971 app->num_received >= app->num_expected)
972 return -EAGAIN;
974 if (!(quirks & MT_QUIRK_ALWAYS_VALID)) {
975 if (quirks & MT_QUIRK_VALID_IS_INRANGE)
976 valid = *slot->inrange_state;
977 if (quirks & MT_QUIRK_NOT_SEEN_MEANS_UP)
978 valid = *slot->tip_state;
979 if (quirks & MT_QUIRK_VALID_IS_CONFIDENCE)
980 valid = *slot->confidence_state;
982 if (!valid)
983 return 0;
986 slotnum = mt_compute_slot(td, app, slot, input);
987 if (slotnum < 0 || slotnum >= td->maxcontacts)
988 return 0;
990 if ((quirks & MT_QUIRK_IGNORE_DUPLICATES) && mt) {
991 struct input_mt_slot *i_slot = &mt->slots[slotnum];
993 if (input_mt_is_active(i_slot) &&
994 input_mt_is_used(mt, i_slot))
995 return -EAGAIN;
998 if (quirks & MT_QUIRK_CONFIDENCE)
999 confidence_state = *slot->confidence_state;
1001 if (quirks & MT_QUIRK_HOVERING)
1002 inrange_state = *slot->inrange_state;
1004 active = *slot->tip_state || inrange_state;
1006 if (app->application == HID_GD_SYSTEM_MULTIAXIS)
1007 tool = MT_TOOL_DIAL;
1008 else if (unlikely(!confidence_state)) {
1009 tool = MT_TOOL_PALM;
1010 if (!active &&
1011 input_mt_is_active(&mt->slots[slotnum])) {
1013 * The non-confidence was reported for
1014 * previously valid contact that is also no
1015 * longer valid. We can't simply report
1016 * lift-off as userspace will not be aware
1017 * of non-confidence, so we need to split
1018 * it into 2 events: active MT_TOOL_PALM
1019 * and a separate liftoff.
1021 active = true;
1022 set_bit(slotnum, app->pending_palm_slots);
1026 input_mt_slot(input, slotnum);
1027 input_mt_report_slot_state(input, tool, active);
1028 if (active) {
1029 /* this finger is in proximity of the sensor */
1030 int wide = (*slot->w > *slot->h);
1031 int major = max(*slot->w, *slot->h);
1032 int minor = min(*slot->w, *slot->h);
1033 int orientation = wide;
1034 int max_azimuth;
1035 int azimuth;
1037 if (slot->a != DEFAULT_ZERO) {
1039 * Azimuth is counter-clockwise and ranges from [0, MAX)
1040 * (a full revolution). Convert it to clockwise ranging
1041 * [-MAX/2, MAX/2].
1043 * Note that ABS_MT_ORIENTATION require us to report
1044 * the limit of [-MAX/4, MAX/4], but the value can go
1045 * out of range to [-MAX/2, MAX/2] to report an upside
1046 * down ellipsis.
1048 azimuth = *slot->a;
1049 max_azimuth = input_abs_get_max(input,
1050 ABS_MT_ORIENTATION);
1051 if (azimuth > max_azimuth * 2)
1052 azimuth -= max_azimuth * 4;
1053 orientation = -azimuth;
1056 if (quirks & MT_QUIRK_TOUCH_SIZE_SCALING) {
1058 * divided by two to match visual scale of touch
1059 * for devices with this quirk
1061 major = major >> 1;
1062 minor = minor >> 1;
1065 input_event(input, EV_ABS, ABS_MT_POSITION_X, *slot->x);
1066 input_event(input, EV_ABS, ABS_MT_POSITION_Y, *slot->y);
1067 input_event(input, EV_ABS, ABS_MT_TOOL_X, *slot->cx);
1068 input_event(input, EV_ABS, ABS_MT_TOOL_Y, *slot->cy);
1069 input_event(input, EV_ABS, ABS_MT_DISTANCE, !*slot->tip_state);
1070 input_event(input, EV_ABS, ABS_MT_ORIENTATION, orientation);
1071 input_event(input, EV_ABS, ABS_MT_PRESSURE, *slot->p);
1072 input_event(input, EV_ABS, ABS_MT_TOUCH_MAJOR, major);
1073 input_event(input, EV_ABS, ABS_MT_TOUCH_MINOR, minor);
1075 set_bit(MT_IO_FLAGS_ACTIVE_SLOTS, &td->mt_io_flags);
1078 return 0;
1081 static void mt_process_mt_event(struct hid_device *hid,
1082 struct mt_application *app,
1083 struct hid_field *field,
1084 struct hid_usage *usage,
1085 __s32 value,
1086 bool first_packet)
1088 __s32 quirks = app->quirks;
1089 struct input_dev *input = field->hidinput->input;
1091 if (!usage->type || !(hid->claimed & HID_CLAIMED_INPUT))
1092 return;
1094 if (quirks & MT_QUIRK_WIN8_PTP_BUTTONS) {
1097 * For Win8 PTP touchpads we should only look at
1098 * non finger/touch events in the first_packet of a
1099 * (possible) multi-packet frame.
1101 if (!first_packet)
1102 return;
1105 * For Win8 PTP touchpads we map both the clickpad click
1106 * and any "external" left buttons to BTN_LEFT if a
1107 * device claims to have both we need to report 1 for
1108 * BTN_LEFT if either is pressed, so we or all values
1109 * together and report the result in mt_sync_frame().
1111 if (usage->type == EV_KEY && usage->code == BTN_LEFT) {
1112 app->left_button_state |= value;
1113 return;
1117 input_event(input, usage->type, usage->code, value);
1120 static void mt_touch_report(struct hid_device *hid,
1121 struct mt_report_data *rdata)
1123 struct mt_device *td = hid_get_drvdata(hid);
1124 struct hid_report *report = rdata->report;
1125 struct mt_application *app = rdata->application;
1126 struct hid_field *field;
1127 struct input_dev *input;
1128 struct mt_usages *slot;
1129 bool first_packet;
1130 unsigned count;
1131 int r, n;
1132 int scantime = 0;
1133 int contact_count = -1;
1135 /* sticky fingers release in progress, abort */
1136 if (test_and_set_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags))
1137 return;
1139 scantime = *app->scantime;
1140 app->timestamp = mt_compute_timestamp(app, scantime);
1141 if (app->raw_cc != DEFAULT_ZERO)
1142 contact_count = *app->raw_cc;
1145 * Includes multi-packet support where subsequent
1146 * packets are sent with zero contactcount.
1148 if (contact_count >= 0) {
1150 * For Win8 PTPs the first packet (td->num_received == 0) may
1151 * have a contactcount of 0 if there only is a button event.
1152 * We double check that this is not a continuation packet
1153 * of a possible multi-packet frame be checking that the
1154 * timestamp has changed.
1156 if ((app->quirks & MT_QUIRK_WIN8_PTP_BUTTONS) &&
1157 app->num_received == 0 &&
1158 app->prev_scantime != scantime)
1159 app->num_expected = contact_count;
1160 /* A non 0 contact count always indicates a first packet */
1161 else if (contact_count)
1162 app->num_expected = contact_count;
1164 app->prev_scantime = scantime;
1166 first_packet = app->num_received == 0;
1168 input = report->field[0]->hidinput->input;
1170 list_for_each_entry(slot, &app->mt_usages, list) {
1171 if (!mt_process_slot(td, input, app, slot))
1172 app->num_received++;
1175 for (r = 0; r < report->maxfield; r++) {
1176 field = report->field[r];
1177 count = field->report_count;
1179 if (!(HID_MAIN_ITEM_VARIABLE & field->flags))
1180 continue;
1182 for (n = 0; n < count; n++)
1183 mt_process_mt_event(hid, app, field,
1184 &field->usage[n], field->value[n],
1185 first_packet);
1188 if (app->num_received >= app->num_expected)
1189 mt_sync_frame(td, app, input);
1192 * Windows 8 specs says 2 things:
1193 * - once a contact has been reported, it has to be reported in each
1194 * subsequent report
1195 * - the report rate when fingers are present has to be at least
1196 * the refresh rate of the screen, 60 or 120 Hz
1198 * I interprete this that the specification forces a report rate of
1199 * at least 60 Hz for a touchscreen to be certified.
1200 * Which means that if we do not get a report whithin 16 ms, either
1201 * something wrong happens, either the touchscreen forgets to send
1202 * a release. Taking a reasonable margin allows to remove issues
1203 * with USB communication or the load of the machine.
1205 * Given that Win 8 devices are forced to send a release, this will
1206 * only affect laggish machines and the ones that have a firmware
1207 * defect.
1209 if (app->quirks & MT_QUIRK_STICKY_FINGERS) {
1210 if (test_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags))
1211 mod_timer(&td->release_timer,
1212 jiffies + msecs_to_jiffies(100));
1213 else
1214 del_timer(&td->release_timer);
1217 clear_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags);
1220 static int mt_touch_input_configured(struct hid_device *hdev,
1221 struct hid_input *hi,
1222 struct mt_application *app)
1224 struct mt_device *td = hid_get_drvdata(hdev);
1225 struct mt_class *cls = &td->mtclass;
1226 struct input_dev *input = hi->input;
1227 int ret;
1229 if (!td->maxcontacts)
1230 td->maxcontacts = MT_DEFAULT_MAXCONTACT;
1232 mt_post_parse(td, app);
1233 if (td->serial_maybe)
1234 mt_post_parse_default_settings(td, app);
1236 if (cls->is_indirect)
1237 app->mt_flags |= INPUT_MT_POINTER;
1239 if (app->quirks & MT_QUIRK_NOT_SEEN_MEANS_UP)
1240 app->mt_flags |= INPUT_MT_DROP_UNUSED;
1242 /* check for clickpads */
1243 if ((app->mt_flags & INPUT_MT_POINTER) &&
1244 (app->buttons_count == 1))
1245 td->is_buttonpad = true;
1247 if (td->is_buttonpad)
1248 __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
1250 app->pending_palm_slots = devm_kcalloc(&hi->input->dev,
1251 BITS_TO_LONGS(td->maxcontacts),
1252 sizeof(long),
1253 GFP_KERNEL);
1254 if (!app->pending_palm_slots)
1255 return -ENOMEM;
1257 ret = input_mt_init_slots(input, td->maxcontacts, app->mt_flags);
1258 if (ret)
1259 return ret;
1261 app->mt_flags = 0;
1262 return 0;
1265 #define mt_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, \
1266 max, EV_KEY, (c))
1267 static int mt_input_mapping(struct hid_device *hdev, struct hid_input *hi,
1268 struct hid_field *field, struct hid_usage *usage,
1269 unsigned long **bit, int *max)
1271 struct mt_device *td = hid_get_drvdata(hdev);
1272 struct mt_application *application;
1273 struct mt_report_data *rdata;
1275 rdata = mt_find_report_data(td, field->report);
1276 if (!rdata) {
1277 hid_err(hdev, "failed to allocate data for report\n");
1278 return 0;
1281 application = rdata->application;
1284 * If mtclass.export_all_inputs is not set, only map fields from
1285 * TouchScreen or TouchPad collections. We need to ignore fields
1286 * that belong to other collections such as Mouse that might have
1287 * the same GenericDesktop usages.
1289 if (!td->mtclass.export_all_inputs &&
1290 field->application != HID_DG_TOUCHSCREEN &&
1291 field->application != HID_DG_PEN &&
1292 field->application != HID_DG_TOUCHPAD &&
1293 field->application != HID_GD_KEYBOARD &&
1294 field->application != HID_GD_SYSTEM_CONTROL &&
1295 field->application != HID_CP_CONSUMER_CONTROL &&
1296 field->application != HID_GD_WIRELESS_RADIO_CTLS &&
1297 field->application != HID_GD_SYSTEM_MULTIAXIS &&
1298 !(field->application == HID_VD_ASUS_CUSTOM_MEDIA_KEYS &&
1299 application->quirks & MT_QUIRK_ASUS_CUSTOM_UP))
1300 return -1;
1303 * Some Asus keyboard+touchpad devices have the hotkeys defined in the
1304 * touchpad report descriptor. We need to treat these as an array to
1305 * map usages to input keys.
1307 if (field->application == HID_VD_ASUS_CUSTOM_MEDIA_KEYS &&
1308 application->quirks & MT_QUIRK_ASUS_CUSTOM_UP &&
1309 (usage->hid & HID_USAGE_PAGE) == HID_UP_CUSTOM) {
1310 set_bit(EV_REP, hi->input->evbit);
1311 if (field->flags & HID_MAIN_ITEM_VARIABLE)
1312 field->flags &= ~HID_MAIN_ITEM_VARIABLE;
1313 switch (usage->hid & HID_USAGE) {
1314 case 0x10: mt_map_key_clear(KEY_BRIGHTNESSDOWN); break;
1315 case 0x20: mt_map_key_clear(KEY_BRIGHTNESSUP); break;
1316 case 0x35: mt_map_key_clear(KEY_DISPLAY_OFF); break;
1317 case 0x6b: mt_map_key_clear(KEY_F21); break;
1318 case 0x6c: mt_map_key_clear(KEY_SLEEP); break;
1319 default:
1320 return -1;
1322 return 1;
1325 if (rdata->is_mt_collection)
1326 return mt_touch_input_mapping(hdev, hi, field, usage, bit, max,
1327 application);
1330 * some egalax touchscreens have "application == DG_TOUCHSCREEN"
1331 * for the stylus. Overwrite the hid_input application
1333 if (field->physical == HID_DG_STYLUS)
1334 hi->application = HID_DG_STYLUS;
1336 /* let hid-core decide for the others */
1337 return 0;
1340 static int mt_input_mapped(struct hid_device *hdev, struct hid_input *hi,
1341 struct hid_field *field, struct hid_usage *usage,
1342 unsigned long **bit, int *max)
1344 struct mt_device *td = hid_get_drvdata(hdev);
1345 struct mt_report_data *rdata;
1347 rdata = mt_find_report_data(td, field->report);
1348 if (rdata && rdata->is_mt_collection) {
1349 /* We own these mappings, tell hid-input to ignore them */
1350 return -1;
1353 /* let hid-core decide for the others */
1354 return 0;
1357 static int mt_event(struct hid_device *hid, struct hid_field *field,
1358 struct hid_usage *usage, __s32 value)
1360 struct mt_device *td = hid_get_drvdata(hid);
1361 struct mt_report_data *rdata;
1363 rdata = mt_find_report_data(td, field->report);
1364 if (rdata && rdata->is_mt_collection)
1365 return mt_touch_event(hid, field, usage, value);
1367 return 0;
1370 static void mt_report(struct hid_device *hid, struct hid_report *report)
1372 struct mt_device *td = hid_get_drvdata(hid);
1373 struct hid_field *field = report->field[0];
1374 struct mt_report_data *rdata;
1376 if (!(hid->claimed & HID_CLAIMED_INPUT))
1377 return;
1379 rdata = mt_find_report_data(td, report);
1380 if (rdata && rdata->is_mt_collection)
1381 return mt_touch_report(hid, rdata);
1383 if (field && field->hidinput && field->hidinput->input)
1384 input_sync(field->hidinput->input);
1387 static bool mt_need_to_apply_feature(struct hid_device *hdev,
1388 struct hid_field *field,
1389 struct hid_usage *usage,
1390 enum latency_mode latency,
1391 bool surface_switch,
1392 bool button_switch,
1393 bool *inputmode_found)
1395 struct mt_device *td = hid_get_drvdata(hdev);
1396 struct mt_class *cls = &td->mtclass;
1397 struct hid_report *report = field->report;
1398 unsigned int index = usage->usage_index;
1399 char *buf;
1400 u32 report_len;
1401 int max;
1403 switch (usage->hid) {
1404 case HID_DG_INPUTMODE:
1406 * Some elan panels wrongly declare 2 input mode features,
1407 * and silently ignore when we set the value in the second
1408 * field. Skip the second feature and hope for the best.
1410 if (*inputmode_found)
1411 return false;
1413 if (cls->quirks & MT_QUIRK_FORCE_GET_FEATURE) {
1414 report_len = hid_report_len(report);
1415 buf = hid_alloc_report_buf(report, GFP_KERNEL);
1416 if (!buf) {
1417 hid_err(hdev,
1418 "failed to allocate buffer for report\n");
1419 return false;
1421 hid_hw_raw_request(hdev, report->id, buf, report_len,
1422 HID_FEATURE_REPORT,
1423 HID_REQ_GET_REPORT);
1424 kfree(buf);
1427 field->value[index] = td->inputmode_value;
1428 *inputmode_found = true;
1429 return true;
1431 case HID_DG_CONTACTMAX:
1432 if (cls->maxcontacts) {
1433 max = min_t(int, field->logical_maximum,
1434 cls->maxcontacts);
1435 if (field->value[index] != max) {
1436 field->value[index] = max;
1437 return true;
1440 break;
1442 case HID_DG_LATENCYMODE:
1443 field->value[index] = latency;
1444 return true;
1446 case HID_DG_SURFACESWITCH:
1447 field->value[index] = surface_switch;
1448 return true;
1450 case HID_DG_BUTTONSWITCH:
1451 field->value[index] = button_switch;
1452 return true;
1455 return false; /* no need to update the report */
1458 static void mt_set_modes(struct hid_device *hdev, enum latency_mode latency,
1459 bool surface_switch, bool button_switch)
1461 struct hid_report_enum *rep_enum;
1462 struct hid_report *rep;
1463 struct hid_usage *usage;
1464 int i, j;
1465 bool update_report;
1466 bool inputmode_found = false;
1468 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
1469 list_for_each_entry(rep, &rep_enum->report_list, list) {
1470 update_report = false;
1472 for (i = 0; i < rep->maxfield; i++) {
1473 /* Ignore if report count is out of bounds. */
1474 if (rep->field[i]->report_count < 1)
1475 continue;
1477 for (j = 0; j < rep->field[i]->maxusage; j++) {
1478 usage = &rep->field[i]->usage[j];
1480 if (mt_need_to_apply_feature(hdev,
1481 rep->field[i],
1482 usage,
1483 latency,
1484 surface_switch,
1485 button_switch,
1486 &inputmode_found))
1487 update_report = true;
1491 if (update_report)
1492 hid_hw_request(hdev, rep, HID_REQ_SET_REPORT);
1496 static void mt_post_parse_default_settings(struct mt_device *td,
1497 struct mt_application *app)
1499 __s32 quirks = app->quirks;
1501 /* unknown serial device needs special quirks */
1502 if (list_is_singular(&app->mt_usages)) {
1503 quirks |= MT_QUIRK_ALWAYS_VALID;
1504 quirks &= ~MT_QUIRK_NOT_SEEN_MEANS_UP;
1505 quirks &= ~MT_QUIRK_VALID_IS_INRANGE;
1506 quirks &= ~MT_QUIRK_VALID_IS_CONFIDENCE;
1507 quirks &= ~MT_QUIRK_CONTACT_CNT_ACCURATE;
1510 app->quirks = quirks;
1513 static void mt_post_parse(struct mt_device *td, struct mt_application *app)
1515 if (!app->have_contact_count)
1516 app->quirks &= ~MT_QUIRK_CONTACT_CNT_ACCURATE;
1519 static int mt_input_configured(struct hid_device *hdev, struct hid_input *hi)
1521 struct mt_device *td = hid_get_drvdata(hdev);
1522 char *name;
1523 const char *suffix = NULL;
1524 struct mt_report_data *rdata;
1525 struct mt_application *mt_application = NULL;
1526 struct hid_report *report;
1527 int ret;
1529 list_for_each_entry(report, &hi->reports, hidinput_list) {
1530 rdata = mt_find_report_data(td, report);
1531 if (!rdata) {
1532 hid_err(hdev, "failed to allocate data for report\n");
1533 return -ENOMEM;
1536 mt_application = rdata->application;
1538 if (rdata->is_mt_collection) {
1539 ret = mt_touch_input_configured(hdev, hi,
1540 mt_application);
1541 if (ret)
1542 return ret;
1546 switch (hi->application) {
1547 case HID_GD_KEYBOARD:
1548 case HID_GD_KEYPAD:
1549 case HID_GD_MOUSE:
1550 case HID_DG_TOUCHPAD:
1551 case HID_GD_SYSTEM_CONTROL:
1552 case HID_CP_CONSUMER_CONTROL:
1553 case HID_GD_WIRELESS_RADIO_CTLS:
1554 case HID_GD_SYSTEM_MULTIAXIS:
1555 /* already handled by hid core */
1556 break;
1557 case HID_DG_TOUCHSCREEN:
1558 /* we do not set suffix = "Touchscreen" */
1559 hi->input->name = hdev->name;
1560 break;
1561 case HID_DG_STYLUS:
1562 /* force BTN_STYLUS to allow tablet matching in udev */
1563 __set_bit(BTN_STYLUS, hi->input->keybit);
1564 break;
1565 case HID_VD_ASUS_CUSTOM_MEDIA_KEYS:
1566 suffix = "Custom Media Keys";
1567 break;
1568 default:
1569 suffix = "UNKNOWN";
1570 break;
1573 if (suffix) {
1574 name = devm_kzalloc(&hi->input->dev,
1575 strlen(hdev->name) + strlen(suffix) + 2,
1576 GFP_KERNEL);
1577 if (name) {
1578 sprintf(name, "%s %s", hdev->name, suffix);
1579 hi->input->name = name;
1583 return 0;
1586 static void mt_fix_const_field(struct hid_field *field, unsigned int usage)
1588 if (field->usage[0].hid != usage ||
1589 !(field->flags & HID_MAIN_ITEM_CONSTANT))
1590 return;
1592 field->flags &= ~HID_MAIN_ITEM_CONSTANT;
1593 field->flags |= HID_MAIN_ITEM_VARIABLE;
1596 static void mt_fix_const_fields(struct hid_device *hdev, unsigned int usage)
1598 struct hid_report *report;
1599 int i;
1601 list_for_each_entry(report,
1602 &hdev->report_enum[HID_INPUT_REPORT].report_list,
1603 list) {
1605 if (!report->maxfield)
1606 continue;
1608 for (i = 0; i < report->maxfield; i++)
1609 if (report->field[i]->maxusage >= 1)
1610 mt_fix_const_field(report->field[i], usage);
1614 static void mt_release_contacts(struct hid_device *hid)
1616 struct hid_input *hidinput;
1617 struct mt_application *application;
1618 struct mt_device *td = hid_get_drvdata(hid);
1620 list_for_each_entry(hidinput, &hid->inputs, list) {
1621 struct input_dev *input_dev = hidinput->input;
1622 struct input_mt *mt = input_dev->mt;
1623 int i;
1625 if (mt) {
1626 for (i = 0; i < mt->num_slots; i++) {
1627 input_mt_slot(input_dev, i);
1628 input_mt_report_slot_state(input_dev,
1629 MT_TOOL_FINGER,
1630 false);
1632 input_mt_sync_frame(input_dev);
1633 input_sync(input_dev);
1637 list_for_each_entry(application, &td->applications, list) {
1638 application->num_received = 0;
1642 static void mt_expired_timeout(struct timer_list *t)
1644 struct mt_device *td = from_timer(td, t, release_timer);
1645 struct hid_device *hdev = td->hdev;
1648 * An input report came in just before we release the sticky fingers,
1649 * it will take care of the sticky fingers.
1651 if (test_and_set_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags))
1652 return;
1653 if (test_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags))
1654 mt_release_contacts(hdev);
1655 clear_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags);
1658 static int mt_probe(struct hid_device *hdev, const struct hid_device_id *id)
1660 int ret, i;
1661 struct mt_device *td;
1662 const struct mt_class *mtclass = mt_classes; /* MT_CLS_DEFAULT */
1664 for (i = 0; mt_classes[i].name ; i++) {
1665 if (id->driver_data == mt_classes[i].name) {
1666 mtclass = &(mt_classes[i]);
1667 break;
1671 td = devm_kzalloc(&hdev->dev, sizeof(struct mt_device), GFP_KERNEL);
1672 if (!td) {
1673 dev_err(&hdev->dev, "cannot allocate multitouch data\n");
1674 return -ENOMEM;
1676 td->hdev = hdev;
1677 td->mtclass = *mtclass;
1678 td->inputmode_value = MT_INPUTMODE_TOUCHSCREEN;
1679 hid_set_drvdata(hdev, td);
1681 INIT_LIST_HEAD(&td->applications);
1682 INIT_LIST_HEAD(&td->reports);
1684 if (id->vendor == HID_ANY_ID && id->product == HID_ANY_ID)
1685 td->serial_maybe = true;
1687 /* This allows the driver to correctly support devices
1688 * that emit events over several HID messages.
1690 hdev->quirks |= HID_QUIRK_NO_INPUT_SYNC;
1693 * This allows the driver to handle different input sensors
1694 * that emits events through different applications on the same HID
1695 * device.
1697 hdev->quirks |= HID_QUIRK_INPUT_PER_APP;
1699 if (id->group != HID_GROUP_MULTITOUCH_WIN_8)
1700 hdev->quirks |= HID_QUIRK_MULTI_INPUT;
1702 timer_setup(&td->release_timer, mt_expired_timeout, 0);
1704 ret = hid_parse(hdev);
1705 if (ret != 0)
1706 return ret;
1708 if (mtclass->quirks & MT_QUIRK_FIX_CONST_CONTACT_ID)
1709 mt_fix_const_fields(hdev, HID_DG_CONTACTID);
1711 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
1712 if (ret)
1713 return ret;
1715 ret = sysfs_create_group(&hdev->dev.kobj, &mt_attribute_group);
1716 if (ret)
1717 dev_warn(&hdev->dev, "Cannot allocate sysfs group for %s\n",
1718 hdev->name);
1720 mt_set_modes(hdev, HID_LATENCY_NORMAL, true, true);
1722 return 0;
1725 #ifdef CONFIG_PM
1726 static int mt_reset_resume(struct hid_device *hdev)
1728 mt_release_contacts(hdev);
1729 mt_set_modes(hdev, HID_LATENCY_NORMAL, true, true);
1730 return 0;
1733 static int mt_resume(struct hid_device *hdev)
1735 /* Some Elan legacy devices require SET_IDLE to be set on resume.
1736 * It should be safe to send it to other devices too.
1737 * Tested on 3M, Stantum, Cypress, Zytronic, eGalax, and Elan panels. */
1739 hid_hw_idle(hdev, 0, 0, HID_REQ_SET_IDLE);
1741 return 0;
1743 #endif
1745 static void mt_remove(struct hid_device *hdev)
1747 struct mt_device *td = hid_get_drvdata(hdev);
1749 del_timer_sync(&td->release_timer);
1751 sysfs_remove_group(&hdev->dev.kobj, &mt_attribute_group);
1752 hid_hw_stop(hdev);
1756 * This list contains only:
1757 * - VID/PID of products not working with the default multitouch handling
1758 * - 2 generic rules.
1759 * So there is no point in adding here any device with MT_CLS_DEFAULT.
1761 static const struct hid_device_id mt_devices[] = {
1763 /* 3M panels */
1764 { .driver_data = MT_CLS_3M,
1765 MT_USB_DEVICE(USB_VENDOR_ID_3M,
1766 USB_DEVICE_ID_3M1968) },
1767 { .driver_data = MT_CLS_3M,
1768 MT_USB_DEVICE(USB_VENDOR_ID_3M,
1769 USB_DEVICE_ID_3M2256) },
1770 { .driver_data = MT_CLS_3M,
1771 MT_USB_DEVICE(USB_VENDOR_ID_3M,
1772 USB_DEVICE_ID_3M3266) },
1774 /* Alps devices */
1775 { .driver_data = MT_CLS_WIN_8_DUAL,
1776 HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8,
1777 USB_VENDOR_ID_ALPS_JP,
1778 HID_DEVICE_ID_ALPS_U1_DUAL_PTP) },
1779 { .driver_data = MT_CLS_WIN_8_DUAL,
1780 HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8,
1781 USB_VENDOR_ID_ALPS_JP,
1782 HID_DEVICE_ID_ALPS_U1_DUAL_3BTN_PTP) },
1784 /* Lenovo X1 TAB Gen 2 */
1785 { .driver_data = MT_CLS_WIN_8_DUAL,
1786 HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH_WIN_8,
1787 USB_VENDOR_ID_LENOVO,
1788 USB_DEVICE_ID_LENOVO_X1_TAB) },
1790 /* Lenovo X1 TAB Gen 3 */
1791 { .driver_data = MT_CLS_WIN_8_DUAL,
1792 HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH_WIN_8,
1793 USB_VENDOR_ID_LENOVO,
1794 USB_DEVICE_ID_LENOVO_X1_TAB3) },
1796 /* Anton devices */
1797 { .driver_data = MT_CLS_EXPORT_ALL_INPUTS,
1798 MT_USB_DEVICE(USB_VENDOR_ID_ANTON,
1799 USB_DEVICE_ID_ANTON_TOUCH_PAD) },
1801 /* Asus T304UA */
1802 { .driver_data = MT_CLS_ASUS,
1803 HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH_WIN_8,
1804 USB_VENDOR_ID_ASUSTEK,
1805 USB_DEVICE_ID_ASUSTEK_T304_KEYBOARD) },
1807 /* Atmel panels */
1808 { .driver_data = MT_CLS_SERIAL,
1809 MT_USB_DEVICE(USB_VENDOR_ID_ATMEL,
1810 USB_DEVICE_ID_ATMEL_MXT_DIGITIZER) },
1812 /* Baanto multitouch devices */
1813 { .driver_data = MT_CLS_NSMU,
1814 MT_USB_DEVICE(USB_VENDOR_ID_BAANTO,
1815 USB_DEVICE_ID_BAANTO_MT_190W2) },
1817 /* Cando panels */
1818 { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER,
1819 MT_USB_DEVICE(USB_VENDOR_ID_CANDO,
1820 USB_DEVICE_ID_CANDO_MULTI_TOUCH) },
1821 { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER,
1822 MT_USB_DEVICE(USB_VENDOR_ID_CANDO,
1823 USB_DEVICE_ID_CANDO_MULTI_TOUCH_15_6) },
1825 /* Chunghwa Telecom touch panels */
1826 { .driver_data = MT_CLS_NSMU,
1827 MT_USB_DEVICE(USB_VENDOR_ID_CHUNGHWAT,
1828 USB_DEVICE_ID_CHUNGHWAT_MULTITOUCH) },
1830 /* Cirque devices */
1831 { .driver_data = MT_CLS_WIN_8_DUAL,
1832 HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8,
1833 I2C_VENDOR_ID_CIRQUE,
1834 I2C_PRODUCT_ID_CIRQUE_121F) },
1836 /* CJTouch panels */
1837 { .driver_data = MT_CLS_NSMU,
1838 MT_USB_DEVICE(USB_VENDOR_ID_CJTOUCH,
1839 USB_DEVICE_ID_CJTOUCH_MULTI_TOUCH_0020) },
1840 { .driver_data = MT_CLS_NSMU,
1841 MT_USB_DEVICE(USB_VENDOR_ID_CJTOUCH,
1842 USB_DEVICE_ID_CJTOUCH_MULTI_TOUCH_0040) },
1844 /* CVTouch panels */
1845 { .driver_data = MT_CLS_NSMU,
1846 MT_USB_DEVICE(USB_VENDOR_ID_CVTOUCH,
1847 USB_DEVICE_ID_CVTOUCH_SCREEN) },
1849 /* eGalax devices (resistive) */
1850 { .driver_data = MT_CLS_EGALAX,
1851 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1852 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480D) },
1853 { .driver_data = MT_CLS_EGALAX,
1854 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1855 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480E) },
1857 /* eGalax devices (capacitive) */
1858 { .driver_data = MT_CLS_EGALAX_SERIAL,
1859 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1860 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7207) },
1861 { .driver_data = MT_CLS_EGALAX,
1862 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1863 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_720C) },
1864 { .driver_data = MT_CLS_EGALAX_SERIAL,
1865 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1866 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7224) },
1867 { .driver_data = MT_CLS_EGALAX_SERIAL,
1868 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1869 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_722A) },
1870 { .driver_data = MT_CLS_EGALAX_SERIAL,
1871 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1872 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_725E) },
1873 { .driver_data = MT_CLS_EGALAX_SERIAL,
1874 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1875 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7262) },
1876 { .driver_data = MT_CLS_EGALAX,
1877 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1878 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_726B) },
1879 { .driver_data = MT_CLS_EGALAX,
1880 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1881 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72A1) },
1882 { .driver_data = MT_CLS_EGALAX_SERIAL,
1883 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1884 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72AA) },
1885 { .driver_data = MT_CLS_EGALAX,
1886 HID_USB_DEVICE(USB_VENDOR_ID_DWAV,
1887 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72C4) },
1888 { .driver_data = MT_CLS_EGALAX,
1889 HID_USB_DEVICE(USB_VENDOR_ID_DWAV,
1890 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72D0) },
1891 { .driver_data = MT_CLS_EGALAX,
1892 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1893 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72FA) },
1894 { .driver_data = MT_CLS_EGALAX,
1895 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1896 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7302) },
1897 { .driver_data = MT_CLS_EGALAX_SERIAL,
1898 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1899 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7349) },
1900 { .driver_data = MT_CLS_EGALAX_SERIAL,
1901 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1902 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_73F7) },
1903 { .driver_data = MT_CLS_EGALAX_SERIAL,
1904 MT_USB_DEVICE(USB_VENDOR_ID_DWAV,
1905 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_A001) },
1907 /* Elitegroup panel */
1908 { .driver_data = MT_CLS_SERIAL,
1909 MT_USB_DEVICE(USB_VENDOR_ID_ELITEGROUP,
1910 USB_DEVICE_ID_ELITEGROUP_05D8) },
1912 /* Flatfrog Panels */
1913 { .driver_data = MT_CLS_FLATFROG,
1914 MT_USB_DEVICE(USB_VENDOR_ID_FLATFROG,
1915 USB_DEVICE_ID_MULTITOUCH_3200) },
1917 /* FocalTech Panels */
1918 { .driver_data = MT_CLS_SERIAL,
1919 MT_USB_DEVICE(USB_VENDOR_ID_CYGNAL,
1920 USB_DEVICE_ID_FOCALTECH_FTXXXX_MULTITOUCH) },
1922 /* GeneralTouch panel */
1923 { .driver_data = MT_CLS_GENERALTOUCH_TWOFINGERS,
1924 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH,
1925 USB_DEVICE_ID_GENERAL_TOUCH_WIN7_TWOFINGERS) },
1926 { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS,
1927 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH,
1928 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PWT_TENFINGERS) },
1929 { .driver_data = MT_CLS_GENERALTOUCH_TWOFINGERS,
1930 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH,
1931 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0101) },
1932 { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS,
1933 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH,
1934 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0102) },
1935 { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS,
1936 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH,
1937 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0106) },
1938 { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS,
1939 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH,
1940 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_010A) },
1941 { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS,
1942 MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH,
1943 USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_E100) },
1945 /* Gametel game controller */
1946 { .driver_data = MT_CLS_NSMU,
1947 MT_BT_DEVICE(USB_VENDOR_ID_FRUCTEL,
1948 USB_DEVICE_ID_GAMETEL_MT_MODE) },
1950 /* GoodTouch panels */
1951 { .driver_data = MT_CLS_NSMU,
1952 MT_USB_DEVICE(USB_VENDOR_ID_GOODTOUCH,
1953 USB_DEVICE_ID_GOODTOUCH_000f) },
1955 /* Hanvon panels */
1956 { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID,
1957 MT_USB_DEVICE(USB_VENDOR_ID_HANVON_ALT,
1958 USB_DEVICE_ID_HANVON_ALT_MULTITOUCH) },
1960 /* Ilitek dual touch panel */
1961 { .driver_data = MT_CLS_NSMU,
1962 MT_USB_DEVICE(USB_VENDOR_ID_ILITEK,
1963 USB_DEVICE_ID_ILITEK_MULTITOUCH) },
1965 /* LG Melfas panel */
1966 { .driver_data = MT_CLS_LG,
1967 HID_USB_DEVICE(USB_VENDOR_ID_LG,
1968 USB_DEVICE_ID_LG_MELFAS_MT) },
1970 /* MosArt panels */
1971 { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE,
1972 MT_USB_DEVICE(USB_VENDOR_ID_ASUS,
1973 USB_DEVICE_ID_ASUS_T91MT)},
1974 { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE,
1975 MT_USB_DEVICE(USB_VENDOR_ID_ASUS,
1976 USB_DEVICE_ID_ASUSTEK_MULTITOUCH_YFO) },
1977 { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE,
1978 MT_USB_DEVICE(USB_VENDOR_ID_TURBOX,
1979 USB_DEVICE_ID_TURBOX_TOUCHSCREEN_MOSART) },
1981 /* Novatek Panel */
1982 { .driver_data = MT_CLS_NSMU,
1983 MT_USB_DEVICE(USB_VENDOR_ID_NOVATEK,
1984 USB_DEVICE_ID_NOVATEK_PCT) },
1986 /* Ntrig Panel */
1987 { .driver_data = MT_CLS_NSMU,
1988 HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8,
1989 USB_VENDOR_ID_NTRIG, 0x1b05) },
1991 /* Panasonic panels */
1992 { .driver_data = MT_CLS_PANASONIC,
1993 MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC,
1994 USB_DEVICE_ID_PANABOARD_UBT780) },
1995 { .driver_data = MT_CLS_PANASONIC,
1996 MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC,
1997 USB_DEVICE_ID_PANABOARD_UBT880) },
1999 /* PixArt optical touch screen */
2000 { .driver_data = MT_CLS_INRANGE_CONTACTNUMBER,
2001 MT_USB_DEVICE(USB_VENDOR_ID_PIXART,
2002 USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN) },
2003 { .driver_data = MT_CLS_INRANGE_CONTACTNUMBER,
2004 MT_USB_DEVICE(USB_VENDOR_ID_PIXART,
2005 USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN1) },
2006 { .driver_data = MT_CLS_INRANGE_CONTACTNUMBER,
2007 MT_USB_DEVICE(USB_VENDOR_ID_PIXART,
2008 USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN2) },
2010 /* PixCir-based panels */
2011 { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID,
2012 MT_USB_DEVICE(USB_VENDOR_ID_CANDO,
2013 USB_DEVICE_ID_CANDO_PIXCIR_MULTI_TOUCH) },
2015 /* Quanta-based panels */
2016 { .driver_data = MT_CLS_CONFIDENCE_CONTACT_ID,
2017 MT_USB_DEVICE(USB_VENDOR_ID_QUANTA,
2018 USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3001) },
2020 /* Razer touchpads */
2021 { .driver_data = MT_CLS_RAZER_BLADE_STEALTH,
2022 HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8,
2023 USB_VENDOR_ID_SYNAPTICS, 0x8323) },
2025 /* Stantum panels */
2026 { .driver_data = MT_CLS_CONFIDENCE,
2027 MT_USB_DEVICE(USB_VENDOR_ID_STANTUM_STM,
2028 USB_DEVICE_ID_MTP_STM)},
2030 /* TopSeed panels */
2031 { .driver_data = MT_CLS_TOPSEED,
2032 MT_USB_DEVICE(USB_VENDOR_ID_TOPSEED2,
2033 USB_DEVICE_ID_TOPSEED2_PERIPAD_701) },
2035 /* Touch International panels */
2036 { .driver_data = MT_CLS_NSMU,
2037 MT_USB_DEVICE(USB_VENDOR_ID_TOUCH_INTL,
2038 USB_DEVICE_ID_TOUCH_INTL_MULTI_TOUCH) },
2040 /* Unitec panels */
2041 { .driver_data = MT_CLS_NSMU,
2042 MT_USB_DEVICE(USB_VENDOR_ID_UNITEC,
2043 USB_DEVICE_ID_UNITEC_USB_TOUCH_0709) },
2044 { .driver_data = MT_CLS_NSMU,
2045 MT_USB_DEVICE(USB_VENDOR_ID_UNITEC,
2046 USB_DEVICE_ID_UNITEC_USB_TOUCH_0A19) },
2048 /* VTL panels */
2049 { .driver_data = MT_CLS_VTL,
2050 MT_USB_DEVICE(USB_VENDOR_ID_VTL,
2051 USB_DEVICE_ID_VTL_MULTITOUCH_FF3F) },
2053 /* Wistron panels */
2054 { .driver_data = MT_CLS_NSMU,
2055 MT_USB_DEVICE(USB_VENDOR_ID_WISTRON,
2056 USB_DEVICE_ID_WISTRON_OPTICAL_TOUCH) },
2058 /* XAT */
2059 { .driver_data = MT_CLS_NSMU,
2060 MT_USB_DEVICE(USB_VENDOR_ID_XAT,
2061 USB_DEVICE_ID_XAT_CSR) },
2063 /* Xiroku */
2064 { .driver_data = MT_CLS_NSMU,
2065 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU,
2066 USB_DEVICE_ID_XIROKU_SPX) },
2067 { .driver_data = MT_CLS_NSMU,
2068 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU,
2069 USB_DEVICE_ID_XIROKU_MPX) },
2070 { .driver_data = MT_CLS_NSMU,
2071 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU,
2072 USB_DEVICE_ID_XIROKU_CSR) },
2073 { .driver_data = MT_CLS_NSMU,
2074 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU,
2075 USB_DEVICE_ID_XIROKU_SPX1) },
2076 { .driver_data = MT_CLS_NSMU,
2077 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU,
2078 USB_DEVICE_ID_XIROKU_MPX1) },
2079 { .driver_data = MT_CLS_NSMU,
2080 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU,
2081 USB_DEVICE_ID_XIROKU_CSR1) },
2082 { .driver_data = MT_CLS_NSMU,
2083 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU,
2084 USB_DEVICE_ID_XIROKU_SPX2) },
2085 { .driver_data = MT_CLS_NSMU,
2086 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU,
2087 USB_DEVICE_ID_XIROKU_MPX2) },
2088 { .driver_data = MT_CLS_NSMU,
2089 MT_USB_DEVICE(USB_VENDOR_ID_XIROKU,
2090 USB_DEVICE_ID_XIROKU_CSR2) },
2092 /* Google MT devices */
2093 { .driver_data = MT_CLS_GOOGLE,
2094 HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_GOOGLE,
2095 USB_DEVICE_ID_GOOGLE_TOUCH_ROSE) },
2097 /* Generic MT device */
2098 { HID_DEVICE(HID_BUS_ANY, HID_GROUP_MULTITOUCH, HID_ANY_ID, HID_ANY_ID) },
2100 /* Generic Win 8 certified MT device */
2101 { .driver_data = MT_CLS_WIN_8,
2102 HID_DEVICE(HID_BUS_ANY, HID_GROUP_MULTITOUCH_WIN_8,
2103 HID_ANY_ID, HID_ANY_ID) },
2106 MODULE_DEVICE_TABLE(hid, mt_devices);
2108 static const struct hid_usage_id mt_grabbed_usages[] = {
2109 { HID_ANY_ID, HID_ANY_ID, HID_ANY_ID },
2110 { HID_ANY_ID - 1, HID_ANY_ID - 1, HID_ANY_ID - 1}
2113 static struct hid_driver mt_driver = {
2114 .name = "hid-multitouch",
2115 .id_table = mt_devices,
2116 .probe = mt_probe,
2117 .remove = mt_remove,
2118 .input_mapping = mt_input_mapping,
2119 .input_mapped = mt_input_mapped,
2120 .input_configured = mt_input_configured,
2121 .feature_mapping = mt_feature_mapping,
2122 .usage_table = mt_grabbed_usages,
2123 .event = mt_event,
2124 .report = mt_report,
2125 #ifdef CONFIG_PM
2126 .reset_resume = mt_reset_resume,
2127 .resume = mt_resume,
2128 #endif
2130 module_hid_driver(mt_driver);