Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1 | /* |
| 2 | * HID driver for multitouch panels |
| 3 | * |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 4 | * Copyright (c) 2010-2012 Stephane Chatty <chatty@enac.fr> |
Benjamin Tissoires | b0a7868 | 2013-02-25 11:31:49 +0100 | [diff] [blame] | 5 | * Copyright (c) 2010-2013 Benjamin Tissoires <benjamin.tissoires@gmail.com> |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 6 | * Copyright (c) 2010-2012 Ecole Nationale de l'Aviation Civile, France |
Benjamin Tissoires | b0a7868 | 2013-02-25 11:31:49 +0100 | [diff] [blame] | 7 | * Copyright (c) 2012-2013 Red Hat, Inc |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 8 | * |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 9 | * This code is partly based on hid-egalax.c: |
| 10 | * |
| 11 | * Copyright (c) 2010 Stephane Chatty <chatty@enac.fr> |
| 12 | * Copyright (c) 2010 Henrik Rydberg <rydberg@euromail.se> |
| 13 | * Copyright (c) 2010 Canonical, Ltd. |
| 14 | * |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 15 | * This code is partly based on hid-3m-pct.c: |
| 16 | * |
| 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. |
| 20 | * |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | /* |
| 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. |
| 28 | */ |
| 29 | |
Benjamin Tissoires | b0a7868 | 2013-02-25 11:31:49 +0100 | [diff] [blame] | 30 | /* |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 31 | * This driver is regularly tested thanks to the test suite in hid-tools[1]. |
Benjamin Tissoires | b0a7868 | 2013-02-25 11:31:49 +0100 | [diff] [blame] | 32 | * Please run these regression tests before patching this module so that |
| 33 | * your patch won't break existing known devices. |
| 34 | * |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 35 | * [1] https://gitlab.freedesktop.org/libevdev/hid-tools |
Benjamin Tissoires | b0a7868 | 2013-02-25 11:31:49 +0100 | [diff] [blame] | 36 | */ |
| 37 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 38 | #include <linux/device.h> |
| 39 | #include <linux/hid.h> |
| 40 | #include <linux/module.h> |
| 41 | #include <linux/slab.h> |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 42 | #include <linux/input/mt.h> |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 43 | #include <linux/jiffies.h> |
Benjamin Tissoires | 49a5a82 | 2013-03-22 18:38:33 +0100 | [diff] [blame] | 44 | #include <linux/string.h> |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 45 | #include <linux/timer.h> |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 46 | |
| 47 | |
| 48 | MODULE_AUTHOR("Stephane Chatty <chatty@enac.fr>"); |
Benjamin Tissoires | ef2fafb | 2011-01-31 11:28:21 +0100 | [diff] [blame] | 49 | MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>"); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 50 | MODULE_DESCRIPTION("HID multitouch panels"); |
| 51 | MODULE_LICENSE("GPL"); |
| 52 | |
| 53 | #include "hid-ids.h" |
| 54 | |
| 55 | /* quirks to control the device */ |
Benjamin Tissoires | fd91189 | 2017-06-15 15:32:03 +0200 | [diff] [blame] | 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) |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 72 | #define MT_QUIRK_STICKY_FINGERS BIT(16) |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 73 | #define MT_QUIRK_ASUS_CUSTOM_UP BIT(17) |
Benjamin Tissoires | d9c57a7 | 2018-03-20 12:04:45 +0100 | [diff] [blame] | 74 | #define MT_QUIRK_WIN8_PTP_BUTTONS BIT(18) |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 75 | |
Andrew Duggan | 9abebed | 2014-03-19 13:39:03 -0700 | [diff] [blame] | 76 | #define MT_INPUTMODE_TOUCHSCREEN 0x02 |
| 77 | #define MT_INPUTMODE_TOUCHPAD 0x03 |
| 78 | |
Seth Forshee | 2c6e027 | 2015-03-11 17:26:41 -0500 | [diff] [blame] | 79 | #define MT_BUTTONTYPE_CLICKPAD 0 |
| 80 | |
Benjamin Tissoires | 02946f4 | 2018-04-24 10:04:37 +0200 | [diff] [blame] | 81 | enum latency_mode { |
| 82 | HID_LATENCY_NORMAL = 0, |
| 83 | HID_LATENCY_HIGH = 1, |
| 84 | }; |
| 85 | |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 86 | #define MT_IO_FLAGS_RUNNING 0 |
Benjamin Tissoires | 9609827 | 2017-06-15 15:32:05 +0200 | [diff] [blame] | 87 | #define MT_IO_FLAGS_ACTIVE_SLOTS 1 |
| 88 | #define MT_IO_FLAGS_PENDING_SLOTS 2 |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 89 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 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 */ |
| 93 | |
| 94 | #define DEFAULT_TRUE ((void *)&mtrue) |
| 95 | #define DEFAULT_FALSE ((void *)&mfalse) |
| 96 | #define DEFAULT_ZERO ((void *)&mzero) |
| 97 | |
| 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? */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 105 | }; |
| 106 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 107 | struct mt_application { |
| 108 | struct list_head list; |
| 109 | unsigned int application; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 110 | struct list_head mt_usages; /* mt usages list */ |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 111 | |
| 112 | __s32 quirks; |
| 113 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 114 | __s32 *scantime; /* scantime reported */ |
| 115 | __s32 scantime_logical_max; /* max value for raw scantime */ |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 116 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 117 | __s32 *raw_cc; /* contact count in the report */ |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 118 | int left_button_state; /* left button state */ |
| 119 | unsigned int mt_flags; /* flags to pass to input-mt */ |
| 120 | |
| 121 | __u8 num_received; /* how many contacts we received */ |
| 122 | __u8 num_expected; /* expected last contact index */ |
| 123 | __u8 buttons_count; /* number of physical buttons per touchpad */ |
| 124 | __u8 touches_by_report; /* how many touches are present in one report: |
| 125 | * 1 means we should use a serial protocol |
| 126 | * > 1 means hybrid (multitouch) protocol |
| 127 | */ |
| 128 | |
| 129 | __s32 dev_time; /* the scan time provided by the device */ |
| 130 | unsigned long jiffies; /* the frame's jiffies */ |
| 131 | int timestamp; /* the timestamp to be sent */ |
| 132 | int prev_scantime; /* scantime reported previously */ |
| 133 | |
| 134 | bool have_contact_count; |
| 135 | }; |
| 136 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 137 | struct mt_class { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 138 | __s32 name; /* MT_CLS */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 139 | __s32 quirks; |
| 140 | __s32 sn_move; /* Signal/noise ratio for move events */ |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 141 | __s32 sn_width; /* Signal/noise ratio for width events */ |
| 142 | __s32 sn_height; /* Signal/noise ratio for height events */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 143 | __s32 sn_pressure; /* Signal/noise ratio for pressure events */ |
| 144 | __u8 maxcontacts; |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 145 | bool is_indirect; /* true for touchpads */ |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 146 | bool export_all_inputs; /* do not ignore mouse, keyboards, etc... */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 147 | }; |
| 148 | |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 149 | struct mt_report_data { |
| 150 | struct list_head list; |
| 151 | struct hid_report *report; |
| 152 | struct mt_application *application; |
| 153 | bool is_mt_collection; |
| 154 | }; |
| 155 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 156 | struct mt_device { |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 157 | struct mt_class mtclass; /* our mt device class */ |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 158 | struct timer_list release_timer; /* to release sticky fingers */ |
Kees Cook | 0ee3277 | 2017-10-04 17:53:24 -0700 | [diff] [blame] | 159 | struct hid_device *hdev; /* hid_device we're attached to */ |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 160 | unsigned long mt_io_flags; /* mt flags (MT_IO_FLAGS_*) */ |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 161 | __u8 inputmode_value; /* InputMode HID feature value */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 162 | __u8 maxcontacts; |
Seth Forshee | 2c6e027 | 2015-03-11 17:26:41 -0500 | [diff] [blame] | 163 | bool is_buttonpad; /* is this device a button pad? */ |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame] | 164 | bool serial_maybe; /* need to check for serial protocol */ |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 165 | |
| 166 | struct list_head applications; |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 167 | struct list_head reports; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 168 | }; |
| 169 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 170 | static void mt_post_parse_default_settings(struct mt_device *td, |
| 171 | struct mt_application *app); |
| 172 | static void mt_post_parse(struct mt_device *td, struct mt_application *app); |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 173 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 174 | /* classes of device behavior */ |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 175 | #define MT_CLS_DEFAULT 0x0001 |
| 176 | |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 177 | #define MT_CLS_SERIAL 0x0002 |
| 178 | #define MT_CLS_CONFIDENCE 0x0003 |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 179 | #define MT_CLS_CONFIDENCE_CONTACT_ID 0x0004 |
| 180 | #define MT_CLS_CONFIDENCE_MINUS_ONE 0x0005 |
| 181 | #define MT_CLS_DUAL_INRANGE_CONTACTID 0x0006 |
| 182 | #define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0007 |
Benjamin Tissoires | 0fa9c61 | 2014-02-28 11:41:23 -0500 | [diff] [blame] | 183 | /* reserved 0x0008 */ |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 184 | #define MT_CLS_INRANGE_CONTACTNUMBER 0x0009 |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 185 | #define MT_CLS_NSMU 0x000a |
Benjamin Tissoires | 0fa9c61 | 2014-02-28 11:41:23 -0500 | [diff] [blame] | 186 | /* reserved 0x0010 */ |
| 187 | /* reserved 0x0011 */ |
Benjamin Tissoires | f961bd3 | 2013-08-22 14:51:08 +0200 | [diff] [blame] | 188 | #define MT_CLS_WIN_8 0x0012 |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 189 | #define MT_CLS_EXPORT_ALL_INPUTS 0x0013 |
Masaki Ota | 504c932 | 2017-06-16 09:29:39 +0900 | [diff] [blame] | 190 | #define MT_CLS_WIN_8_DUAL 0x0014 |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 191 | |
| 192 | /* vendor specific classes */ |
| 193 | #define MT_CLS_3M 0x0101 |
Benjamin Tissoires | 0fa9c61 | 2014-02-28 11:41:23 -0500 | [diff] [blame] | 194 | /* reserved 0x0102 */ |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 195 | #define MT_CLS_EGALAX 0x0103 |
Benjamin Tissoires | 1b723e8 | 2011-11-23 10:54:34 +0100 | [diff] [blame] | 196 | #define MT_CLS_EGALAX_SERIAL 0x0104 |
Benjamin Tissoires | 847672c | 2012-02-04 17:08:50 +0100 | [diff] [blame] | 197 | #define MT_CLS_TOPSEED 0x0105 |
Denis Kovalev | 2258e86 | 2012-02-14 00:50:33 -0800 | [diff] [blame] | 198 | #define MT_CLS_PANASONIC 0x0106 |
Henrik Rydberg | 77723e3 | 2012-09-07 19:37:40 +0200 | [diff] [blame] | 199 | #define MT_CLS_FLATFROG 0x0107 |
Jiri Kosina | cdcd3ac | 2012-10-01 14:38:54 +0200 | [diff] [blame] | 200 | #define MT_CLS_GENERALTOUCH_TWOFINGERS 0x0108 |
| 201 | #define MT_CLS_GENERALTOUCH_PWT_TENFINGERS 0x0109 |
Benjamin Tissoires | f3287a9 | 2017-01-30 10:48:06 +0100 | [diff] [blame] | 202 | #define MT_CLS_LG 0x010a |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 203 | #define MT_CLS_ASUS 0x010b |
Mathieu Magnaudet | da10bc2 | 2014-11-22 12:02:07 +0100 | [diff] [blame] | 204 | #define MT_CLS_VTL 0x0110 |
Wei-Ning Huang | 0e82232 | 2017-06-21 10:43:25 +0800 | [diff] [blame] | 205 | #define MT_CLS_GOOGLE 0x0111 |
Benjamin Tissoires | 843e475 | 2018-03-20 12:04:46 +0100 | [diff] [blame] | 206 | #define MT_CLS_RAZER_BLADE_STEALTH 0x0112 |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 207 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 208 | #define MT_DEFAULT_MAXCONTACT 10 |
Benjamin Tissoires | afbcb04 | 2012-11-14 16:59:18 +0100 | [diff] [blame] | 209 | #define MT_MAX_MAXCONTACT 250 |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 210 | |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 211 | /* |
| 212 | * Resync device and local timestamps after that many microseconds without |
| 213 | * receiving data. |
| 214 | */ |
| 215 | #define MAX_TIMESTAMP_INTERVAL 1000000 |
| 216 | |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 217 | #define MT_USB_DEVICE(v, p) HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH, v, p) |
| 218 | #define MT_BT_DEVICE(v, p) HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_MULTITOUCH, v, p) |
| 219 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 220 | /* |
| 221 | * these device-dependent functions determine what slot corresponds |
| 222 | * to a valid contact that was just read. |
| 223 | */ |
| 224 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 225 | static int cypress_compute_slot(struct mt_application *application, |
| 226 | struct mt_usages *slot) |
Benjamin Tissoires | a3b5e57 | 2011-01-07 23:46:30 +0100 | [diff] [blame] | 227 | { |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 228 | if (*slot->contactid != 0 || application->num_received == 0) |
| 229 | return *slot->contactid; |
Benjamin Tissoires | a3b5e57 | 2011-01-07 23:46:30 +0100 | [diff] [blame] | 230 | else |
| 231 | return -1; |
| 232 | } |
| 233 | |
Benjamin Tissoires | cf6d15d | 2018-07-13 16:13:44 +0200 | [diff] [blame] | 234 | static const struct mt_class mt_classes[] = { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 235 | { .name = MT_CLS_DEFAULT, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 236 | .quirks = MT_QUIRK_ALWAYS_VALID | |
| 237 | MT_QUIRK_CONTACT_CNT_ACCURATE }, |
| 238 | { .name = MT_CLS_NSMU, |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 239 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP }, |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 240 | { .name = MT_CLS_SERIAL, |
| 241 | .quirks = MT_QUIRK_ALWAYS_VALID}, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 242 | { .name = MT_CLS_CONFIDENCE, |
| 243 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE }, |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 244 | { .name = MT_CLS_CONFIDENCE_CONTACT_ID, |
| 245 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | |
| 246 | MT_QUIRK_SLOT_IS_CONTACTID }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 247 | { .name = MT_CLS_CONFIDENCE_MINUS_ONE, |
| 248 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | |
| 249 | MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE }, |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 250 | { .name = MT_CLS_DUAL_INRANGE_CONTACTID, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 251 | .quirks = MT_QUIRK_VALID_IS_INRANGE | |
| 252 | MT_QUIRK_SLOT_IS_CONTACTID, |
| 253 | .maxcontacts = 2 }, |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 254 | { .name = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 255 | .quirks = MT_QUIRK_VALID_IS_INRANGE | |
| 256 | MT_QUIRK_SLOT_IS_CONTACTNUMBER, |
| 257 | .maxcontacts = 2 }, |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 258 | { .name = MT_CLS_INRANGE_CONTACTNUMBER, |
| 259 | .quirks = MT_QUIRK_VALID_IS_INRANGE | |
| 260 | MT_QUIRK_SLOT_IS_CONTACTNUMBER }, |
Benjamin Tissoires | f961bd3 | 2013-08-22 14:51:08 +0200 | [diff] [blame] | 261 | { .name = MT_CLS_WIN_8, |
| 262 | .quirks = MT_QUIRK_ALWAYS_VALID | |
| 263 | MT_QUIRK_IGNORE_DUPLICATES | |
| 264 | MT_QUIRK_HOVERING | |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 265 | MT_QUIRK_CONTACT_CNT_ACCURATE | |
Benjamin Tissoires | d9c57a7 | 2018-03-20 12:04:45 +0100 | [diff] [blame] | 266 | MT_QUIRK_STICKY_FINGERS | |
| 267 | MT_QUIRK_WIN8_PTP_BUTTONS }, |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 268 | { .name = MT_CLS_EXPORT_ALL_INPUTS, |
| 269 | .quirks = MT_QUIRK_ALWAYS_VALID | |
| 270 | MT_QUIRK_CONTACT_CNT_ACCURATE, |
| 271 | .export_all_inputs = true }, |
Masaki Ota | 504c932 | 2017-06-16 09:29:39 +0900 | [diff] [blame] | 272 | { .name = MT_CLS_WIN_8_DUAL, |
| 273 | .quirks = MT_QUIRK_ALWAYS_VALID | |
| 274 | MT_QUIRK_IGNORE_DUPLICATES | |
| 275 | MT_QUIRK_HOVERING | |
Benjamin Tissoires | d9c57a7 | 2018-03-20 12:04:45 +0100 | [diff] [blame] | 276 | MT_QUIRK_CONTACT_CNT_ACCURATE | |
| 277 | MT_QUIRK_WIN8_PTP_BUTTONS, |
Masaki Ota | 504c932 | 2017-06-16 09:29:39 +0900 | [diff] [blame] | 278 | .export_all_inputs = true }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 279 | |
| 280 | /* |
| 281 | * vendor specific classes |
| 282 | */ |
| 283 | { .name = MT_CLS_3M, |
| 284 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | |
HungNien Chen | e9d0a26 | 2017-03-06 11:30:14 +0800 | [diff] [blame] | 285 | MT_QUIRK_SLOT_IS_CONTACTID | |
| 286 | MT_QUIRK_TOUCH_SIZE_SCALING, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 287 | .sn_move = 2048, |
| 288 | .sn_width = 128, |
Henrik Rydberg | c5d40be | 2012-09-05 16:58:12 +0200 | [diff] [blame] | 289 | .sn_height = 128, |
| 290 | .maxcontacts = 60, |
| 291 | }, |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 292 | { .name = MT_CLS_EGALAX, |
| 293 | .quirks = MT_QUIRK_SLOT_IS_CONTACTID | |
Benjamin Tissoires | 2261bb9 | 2011-11-23 10:54:29 +0100 | [diff] [blame] | 294 | MT_QUIRK_VALID_IS_INRANGE, |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 295 | .sn_move = 4096, |
| 296 | .sn_pressure = 32, |
| 297 | }, |
Benjamin Tissoires | 1b723e8 | 2011-11-23 10:54:34 +0100 | [diff] [blame] | 298 | { .name = MT_CLS_EGALAX_SERIAL, |
| 299 | .quirks = MT_QUIRK_SLOT_IS_CONTACTID | |
| 300 | MT_QUIRK_ALWAYS_VALID, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 301 | .sn_move = 4096, |
| 302 | .sn_pressure = 32, |
| 303 | }, |
Benjamin Tissoires | 847672c | 2012-02-04 17:08:50 +0100 | [diff] [blame] | 304 | { .name = MT_CLS_TOPSEED, |
| 305 | .quirks = MT_QUIRK_ALWAYS_VALID, |
| 306 | .is_indirect = true, |
| 307 | .maxcontacts = 2, |
| 308 | }, |
Denis Kovalev | 2258e86 | 2012-02-14 00:50:33 -0800 | [diff] [blame] | 309 | { .name = MT_CLS_PANASONIC, |
| 310 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP, |
| 311 | .maxcontacts = 4 }, |
Xianhan Yu | f5ff4e1 | 2012-09-28 10:18:59 +0800 | [diff] [blame] | 312 | { .name = MT_CLS_GENERALTOUCH_TWOFINGERS, |
| 313 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP | |
| 314 | MT_QUIRK_VALID_IS_INRANGE | |
Luosong | 7b22629 | 2013-10-02 11:20:00 +0200 | [diff] [blame] | 315 | MT_QUIRK_SLOT_IS_CONTACTID, |
Xianhan Yu | f5ff4e1 | 2012-09-28 10:18:59 +0800 | [diff] [blame] | 316 | .maxcontacts = 2 |
| 317 | }, |
| 318 | { .name = MT_CLS_GENERALTOUCH_PWT_TENFINGERS, |
| 319 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP | |
Luosong | 7b22629 | 2013-10-02 11:20:00 +0200 | [diff] [blame] | 320 | MT_QUIRK_SLOT_IS_CONTACTID |
Xianhan Yu | f5ff4e1 | 2012-09-28 10:18:59 +0800 | [diff] [blame] | 321 | }, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 322 | |
Henrik Rydberg | 77723e3 | 2012-09-07 19:37:40 +0200 | [diff] [blame] | 323 | { .name = MT_CLS_FLATFROG, |
| 324 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP | |
| 325 | MT_QUIRK_NO_AREA, |
| 326 | .sn_move = 2048, |
| 327 | .maxcontacts = 40, |
| 328 | }, |
Benjamin Tissoires | f3287a9 | 2017-01-30 10:48:06 +0100 | [diff] [blame] | 329 | { .name = MT_CLS_LG, |
| 330 | .quirks = MT_QUIRK_ALWAYS_VALID | |
| 331 | MT_QUIRK_FIX_CONST_CONTACT_ID | |
| 332 | MT_QUIRK_IGNORE_DUPLICATES | |
| 333 | MT_QUIRK_HOVERING | |
| 334 | MT_QUIRK_CONTACT_CNT_ACCURATE }, |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 335 | { .name = MT_CLS_ASUS, |
| 336 | .quirks = MT_QUIRK_ALWAYS_VALID | |
| 337 | MT_QUIRK_CONTACT_CNT_ACCURATE | |
| 338 | MT_QUIRK_ASUS_CUSTOM_UP }, |
Mathieu Magnaudet | da10bc2 | 2014-11-22 12:02:07 +0100 | [diff] [blame] | 339 | { .name = MT_CLS_VTL, |
| 340 | .quirks = MT_QUIRK_ALWAYS_VALID | |
| 341 | MT_QUIRK_CONTACT_CNT_ACCURATE | |
| 342 | MT_QUIRK_FORCE_GET_FEATURE, |
| 343 | }, |
Wei-Ning Huang | 0e82232 | 2017-06-21 10:43:25 +0800 | [diff] [blame] | 344 | { .name = MT_CLS_GOOGLE, |
| 345 | .quirks = MT_QUIRK_ALWAYS_VALID | |
| 346 | MT_QUIRK_CONTACT_CNT_ACCURATE | |
| 347 | MT_QUIRK_SLOT_IS_CONTACTID | |
| 348 | MT_QUIRK_HOVERING |
| 349 | }, |
Benjamin Tissoires | 843e475 | 2018-03-20 12:04:46 +0100 | [diff] [blame] | 350 | { .name = MT_CLS_RAZER_BLADE_STEALTH, |
| 351 | .quirks = MT_QUIRK_ALWAYS_VALID | |
| 352 | MT_QUIRK_IGNORE_DUPLICATES | |
| 353 | MT_QUIRK_HOVERING | |
| 354 | MT_QUIRK_CONTACT_CNT_ACCURATE | |
| 355 | MT_QUIRK_WIN8_PTP_BUTTONS, |
| 356 | }, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 357 | { } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 358 | }; |
| 359 | |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 360 | static ssize_t mt_show_quirks(struct device *dev, |
| 361 | struct device_attribute *attr, |
| 362 | char *buf) |
| 363 | { |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 364 | struct hid_device *hdev = to_hid_device(dev); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 365 | struct mt_device *td = hid_get_drvdata(hdev); |
| 366 | |
| 367 | return sprintf(buf, "%u\n", td->mtclass.quirks); |
| 368 | } |
| 369 | |
| 370 | static ssize_t mt_set_quirks(struct device *dev, |
| 371 | struct device_attribute *attr, |
| 372 | const char *buf, size_t count) |
| 373 | { |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 374 | struct hid_device *hdev = to_hid_device(dev); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 375 | struct mt_device *td = hid_get_drvdata(hdev); |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 376 | struct mt_application *application; |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 377 | |
| 378 | unsigned long val; |
| 379 | |
| 380 | if (kstrtoul(buf, 0, &val)) |
| 381 | return -EINVAL; |
| 382 | |
| 383 | td->mtclass.quirks = val; |
| 384 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 385 | list_for_each_entry(application, &td->applications, list) { |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 386 | application->quirks = val; |
| 387 | if (!application->have_contact_count) |
| 388 | application->quirks &= ~MT_QUIRK_CONTACT_CNT_ACCURATE; |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 389 | } |
| 390 | |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 391 | return count; |
| 392 | } |
| 393 | |
| 394 | static DEVICE_ATTR(quirks, S_IWUSR | S_IRUGO, mt_show_quirks, mt_set_quirks); |
| 395 | |
| 396 | static struct attribute *sysfs_attrs[] = { |
| 397 | &dev_attr_quirks.attr, |
| 398 | NULL |
| 399 | }; |
| 400 | |
Arvind Yadav | 9182fb9 | 2017-08-03 16:56:43 +0530 | [diff] [blame] | 401 | static const struct attribute_group mt_attribute_group = { |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 402 | .attrs = sysfs_attrs |
| 403 | }; |
| 404 | |
Mika Westerberg | 6d4f544 | 2015-10-07 15:33:43 +0300 | [diff] [blame] | 405 | static void mt_get_feature(struct hid_device *hdev, struct hid_report *report) |
| 406 | { |
Aaron Ma | 3064a03 | 2018-02-03 23:57:15 +0800 | [diff] [blame] | 407 | int ret; |
| 408 | u32 size = hid_report_len(report); |
Mika Westerberg | 6d4f544 | 2015-10-07 15:33:43 +0300 | [diff] [blame] | 409 | u8 *buf; |
| 410 | |
| 411 | /* |
Benjamin Tissoires | b897f6d | 2016-11-25 14:27:22 +0100 | [diff] [blame] | 412 | * Do not fetch the feature report if the device has been explicitly |
| 413 | * marked as non-capable. |
Mika Westerberg | 6d4f544 | 2015-10-07 15:33:43 +0300 | [diff] [blame] | 414 | */ |
Benjamin Tissoires | adaabbf | 2018-03-20 12:04:50 +0100 | [diff] [blame] | 415 | if (hdev->quirks & HID_QUIRK_NO_INIT_REPORTS) |
Mika Westerberg | 6d4f544 | 2015-10-07 15:33:43 +0300 | [diff] [blame] | 416 | return; |
| 417 | |
| 418 | buf = hid_alloc_report_buf(report, GFP_KERNEL); |
| 419 | if (!buf) |
| 420 | return; |
| 421 | |
| 422 | ret = hid_hw_raw_request(hdev, report->id, buf, size, |
| 423 | HID_FEATURE_REPORT, HID_REQ_GET_REPORT); |
| 424 | if (ret < 0) { |
| 425 | dev_warn(&hdev->dev, "failed to fetch feature %d\n", |
| 426 | report->id); |
| 427 | } else { |
| 428 | ret = hid_report_raw_event(hdev, HID_FEATURE_REPORT, buf, |
| 429 | size, 0); |
| 430 | if (ret) |
| 431 | dev_warn(&hdev->dev, "failed to report feature\n"); |
| 432 | } |
| 433 | |
| 434 | kfree(buf); |
| 435 | } |
| 436 | |
Henrik Rydberg | f635bd1 | 2011-02-24 19:30:59 +0100 | [diff] [blame] | 437 | static void mt_feature_mapping(struct hid_device *hdev, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 438 | struct hid_field *field, struct hid_usage *usage) |
| 439 | { |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 440 | struct mt_device *td = hid_get_drvdata(hdev); |
| 441 | |
| 442 | switch (usage->hid) { |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 443 | case HID_DG_CONTACTMAX: |
Mika Westerberg | 6d4f544 | 2015-10-07 15:33:43 +0300 | [diff] [blame] | 444 | mt_get_feature(hdev, field->report); |
| 445 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 446 | td->maxcontacts = field->value[0]; |
Benjamin Tissoires | afbcb04 | 2012-11-14 16:59:18 +0100 | [diff] [blame] | 447 | if (!td->maxcontacts && |
| 448 | field->logical_maximum <= MT_MAX_MAXCONTACT) |
| 449 | td->maxcontacts = field->logical_maximum; |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 450 | if (td->mtclass.maxcontacts) |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 451 | /* check if the maxcontacts is given by the class */ |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 452 | td->maxcontacts = td->mtclass.maxcontacts; |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 453 | |
| 454 | break; |
Seth Forshee | 2c6e027 | 2015-03-11 17:26:41 -0500 | [diff] [blame] | 455 | case HID_DG_BUTTONTYPE: |
| 456 | if (usage->usage_index >= field->report_count) { |
| 457 | dev_err(&hdev->dev, "HID_DG_BUTTONTYPE out of range\n"); |
| 458 | break; |
| 459 | } |
| 460 | |
Mika Westerberg | 6d4f544 | 2015-10-07 15:33:43 +0300 | [diff] [blame] | 461 | mt_get_feature(hdev, field->report); |
Seth Forshee | 2c6e027 | 2015-03-11 17:26:41 -0500 | [diff] [blame] | 462 | if (field->value[usage->usage_index] == MT_BUTTONTYPE_CLICKPAD) |
| 463 | td->is_buttonpad = true; |
| 464 | |
| 465 | break; |
Benjamin Tissoires | 45c5c68 | 2016-03-07 11:02:38 +0100 | [diff] [blame] | 466 | case 0xff0000c5: |
| 467 | /* Retrieve the Win8 blob once to enable some devices */ |
| 468 | if (usage->usage_index == 0) |
| 469 | mt_get_feature(hdev, field->report); |
| 470 | break; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 471 | } |
| 472 | } |
| 473 | |
| 474 | static void set_abs(struct input_dev *input, unsigned int code, |
| 475 | struct hid_field *field, int snratio) |
| 476 | { |
| 477 | int fmin = field->logical_minimum; |
| 478 | int fmax = field->logical_maximum; |
| 479 | int fuzz = snratio ? (fmax - fmin) / snratio : 0; |
| 480 | input_set_abs_params(input, code, fmin, fmax, fuzz, 0); |
Benjamin Tissoires | 37cf6e6 | 2012-11-14 16:59:13 +0100 | [diff] [blame] | 481 | input_abs_set_res(input, code, hidinput_calc_abs_res(field, code)); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 482 | } |
| 483 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 484 | static struct mt_usages *mt_allocate_usage(struct hid_device *hdev, |
| 485 | struct mt_application *application) |
| 486 | { |
| 487 | struct mt_usages *usage; |
| 488 | |
| 489 | usage = devm_kzalloc(&hdev->dev, sizeof(*usage), GFP_KERNEL); |
| 490 | if (!usage) |
| 491 | return NULL; |
| 492 | |
| 493 | /* set some defaults so we do not need to check for null pointers */ |
| 494 | usage->x = DEFAULT_ZERO; |
| 495 | usage->y = DEFAULT_ZERO; |
| 496 | usage->cx = DEFAULT_ZERO; |
| 497 | usage->cy = DEFAULT_ZERO; |
| 498 | usage->p = DEFAULT_ZERO; |
| 499 | usage->w = DEFAULT_ZERO; |
| 500 | usage->h = DEFAULT_ZERO; |
| 501 | usage->a = DEFAULT_ZERO; |
| 502 | usage->contactid = DEFAULT_ZERO; |
| 503 | usage->tip_state = DEFAULT_FALSE; |
| 504 | usage->inrange_state = DEFAULT_FALSE; |
| 505 | usage->confidence_state = DEFAULT_TRUE; |
| 506 | |
| 507 | list_add_tail(&usage->list, &application->mt_usages); |
| 508 | |
| 509 | return usage; |
| 510 | } |
| 511 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 512 | static struct mt_application *mt_allocate_application(struct mt_device *td, |
| 513 | unsigned int application) |
| 514 | { |
| 515 | struct mt_application *mt_application; |
| 516 | |
| 517 | mt_application = devm_kzalloc(&td->hdev->dev, sizeof(*mt_application), |
| 518 | GFP_KERNEL); |
| 519 | if (!mt_application) |
| 520 | return NULL; |
| 521 | |
| 522 | mt_application->application = application; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 523 | INIT_LIST_HEAD(&mt_application->mt_usages); |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 524 | |
| 525 | if (application == HID_DG_TOUCHSCREEN) |
| 526 | mt_application->mt_flags |= INPUT_MT_DIRECT; |
| 527 | |
| 528 | /* |
| 529 | * Model touchscreens providing buttons as touchpads. |
| 530 | */ |
| 531 | if (application == HID_DG_TOUCHPAD) { |
| 532 | mt_application->mt_flags |= INPUT_MT_POINTER; |
| 533 | td->inputmode_value = MT_INPUTMODE_TOUCHPAD; |
| 534 | } |
| 535 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 536 | mt_application->scantime = DEFAULT_ZERO; |
| 537 | mt_application->raw_cc = DEFAULT_ZERO; |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 538 | mt_application->quirks = td->mtclass.quirks; |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 539 | |
| 540 | list_add_tail(&mt_application->list, &td->applications); |
| 541 | |
| 542 | return mt_application; |
| 543 | } |
| 544 | |
| 545 | static struct mt_application *mt_find_application(struct mt_device *td, |
| 546 | unsigned int application) |
| 547 | { |
| 548 | struct mt_application *tmp, *mt_application = NULL; |
| 549 | |
| 550 | list_for_each_entry(tmp, &td->applications, list) { |
| 551 | if (application == tmp->application) { |
| 552 | mt_application = tmp; |
| 553 | break; |
| 554 | } |
| 555 | } |
| 556 | |
| 557 | if (!mt_application) |
| 558 | mt_application = mt_allocate_application(td, application); |
| 559 | |
| 560 | return mt_application; |
| 561 | } |
| 562 | |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 563 | static struct mt_report_data *mt_allocate_report_data(struct mt_device *td, |
| 564 | struct hid_report *report) |
| 565 | { |
| 566 | struct mt_report_data *rdata; |
| 567 | struct hid_field *field; |
| 568 | int r, n; |
| 569 | |
| 570 | rdata = devm_kzalloc(&td->hdev->dev, sizeof(*rdata), GFP_KERNEL); |
| 571 | if (!rdata) |
| 572 | return NULL; |
| 573 | |
| 574 | rdata->report = report; |
| 575 | rdata->application = mt_find_application(td, report->application); |
| 576 | |
| 577 | if (!rdata->application) { |
| 578 | devm_kfree(&td->hdev->dev, rdata); |
| 579 | return NULL; |
| 580 | } |
| 581 | |
| 582 | for (r = 0; r < report->maxfield; r++) { |
| 583 | field = report->field[r]; |
| 584 | |
| 585 | if (!(HID_MAIN_ITEM_VARIABLE & field->flags)) |
| 586 | continue; |
| 587 | |
| 588 | for (n = 0; n < field->report_count; n++) { |
| 589 | if (field->usage[n].hid == HID_DG_CONTACTID) |
| 590 | rdata->is_mt_collection = true; |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | list_add_tail(&rdata->list, &td->reports); |
| 595 | |
| 596 | return rdata; |
| 597 | } |
| 598 | |
| 599 | static struct mt_report_data *mt_find_report_data(struct mt_device *td, |
| 600 | struct hid_report *report) |
| 601 | { |
| 602 | struct mt_report_data *tmp, *rdata = NULL; |
| 603 | |
| 604 | list_for_each_entry(tmp, &td->reports, list) { |
| 605 | if (report == tmp->report) { |
| 606 | rdata = tmp; |
| 607 | break; |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | if (!rdata) |
| 612 | rdata = mt_allocate_report_data(td, report); |
| 613 | |
| 614 | return rdata; |
| 615 | } |
| 616 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 617 | static void mt_store_field(struct hid_device *hdev, |
| 618 | struct mt_application *application, |
| 619 | __s32 *value, |
| 620 | size_t offset) |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 621 | { |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 622 | struct mt_usages *usage; |
| 623 | __s32 **target; |
Benjamin Tissoires | 3ac36d15 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 624 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 625 | if (list_empty(&application->mt_usages)) |
| 626 | usage = mt_allocate_usage(hdev, application); |
| 627 | else |
| 628 | usage = list_last_entry(&application->mt_usages, |
| 629 | struct mt_usages, |
| 630 | list); |
| 631 | |
| 632 | if (!usage) |
Benjamin Tissoires | 3ac36d15 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 633 | return; |
| 634 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 635 | target = (__s32 **)((char *)usage + offset); |
| 636 | |
| 637 | /* the value has already been filled, create a new slot */ |
| 638 | if (*target != DEFAULT_TRUE && |
| 639 | *target != DEFAULT_FALSE && |
| 640 | *target != DEFAULT_ZERO) { |
| 641 | usage = mt_allocate_usage(hdev, application); |
| 642 | if (!usage) |
| 643 | return; |
| 644 | |
| 645 | target = (__s32 **)((char *)usage + offset); |
| 646 | } |
| 647 | |
| 648 | *target = value; |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 649 | } |
| 650 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 651 | #define MT_STORE_FIELD(__name) \ |
| 652 | mt_store_field(hdev, app, \ |
| 653 | &field->value[usage->usage_index], \ |
| 654 | offsetof(struct mt_usages, __name)) |
| 655 | |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 656 | static int mt_touch_input_mapping(struct hid_device *hdev, struct hid_input *hi, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 657 | struct hid_field *field, struct hid_usage *usage, |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 658 | unsigned long **bit, int *max, struct mt_application *app) |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 659 | { |
| 660 | struct mt_device *td = hid_get_drvdata(hdev); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 661 | struct mt_class *cls = &td->mtclass; |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 662 | int code; |
Benjamin Tissoires | 349fd670 | 2012-11-14 16:59:19 +0100 | [diff] [blame] | 663 | struct hid_usage *prev_usage = NULL; |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 664 | |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame] | 665 | /* |
| 666 | * Model touchscreens providing buttons as touchpads. |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 667 | */ |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 668 | if (field->application == HID_DG_TOUCHSCREEN && |
| 669 | (usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON) { |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 670 | app->mt_flags |= INPUT_MT_POINTER; |
Andrew Duggan | 9abebed | 2014-03-19 13:39:03 -0700 | [diff] [blame] | 671 | td->inputmode_value = MT_INPUTMODE_TOUCHPAD; |
| 672 | } |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 673 | |
Benjamin Tissoires | 015fdaa | 2015-03-06 11:14:42 -0500 | [diff] [blame] | 674 | /* count the buttons on touchpads */ |
| 675 | if ((usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON) |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 676 | app->buttons_count++; |
Benjamin Tissoires | 015fdaa | 2015-03-06 11:14:42 -0500 | [diff] [blame] | 677 | |
Benjamin Tissoires | 349fd670 | 2012-11-14 16:59:19 +0100 | [diff] [blame] | 678 | if (usage->usage_index) |
| 679 | prev_usage = &field->usage[usage->usage_index - 1]; |
| 680 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 681 | switch (usage->hid & HID_USAGE_PAGE) { |
| 682 | |
| 683 | case HID_UP_GENDESK: |
| 684 | switch (usage->hid) { |
| 685 | case HID_GD_X: |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 686 | if (prev_usage && (prev_usage->hid == usage->hid)) { |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 687 | code = ABS_MT_TOOL_X; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 688 | MT_STORE_FIELD(cx); |
| 689 | } else { |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 690 | code = ABS_MT_POSITION_X; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 691 | MT_STORE_FIELD(x); |
| 692 | } |
Benjamin Tissoires | 349fd670 | 2012-11-14 16:59:19 +0100 | [diff] [blame] | 693 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 694 | set_abs(hi->input, code, field, cls->sn_move); |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 695 | |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 696 | /* |
| 697 | * A system multi-axis that exports X and Y has a high |
| 698 | * chance of being used directly on a surface |
| 699 | */ |
| 700 | if (field->application == HID_GD_SYSTEM_MULTIAXIS) { |
| 701 | __set_bit(INPUT_PROP_DIRECT, |
| 702 | hi->input->propbit); |
| 703 | input_set_abs_params(hi->input, |
| 704 | ABS_MT_TOOL_TYPE, |
| 705 | MT_TOOL_DIAL, |
| 706 | MT_TOOL_DIAL, 0, 0); |
| 707 | } |
| 708 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 709 | return 1; |
| 710 | case HID_GD_Y: |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 711 | if (prev_usage && (prev_usage->hid == usage->hid)) { |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 712 | code = ABS_MT_TOOL_Y; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 713 | MT_STORE_FIELD(cy); |
| 714 | } else { |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 715 | code = ABS_MT_POSITION_Y; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 716 | MT_STORE_FIELD(y); |
| 717 | } |
Benjamin Tissoires | 349fd670 | 2012-11-14 16:59:19 +0100 | [diff] [blame] | 718 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 719 | set_abs(hi->input, code, field, cls->sn_move); |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 720 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 721 | return 1; |
| 722 | } |
| 723 | return 0; |
| 724 | |
| 725 | case HID_UP_DIGITIZER: |
| 726 | switch (usage->hid) { |
| 727 | case HID_DG_INRANGE: |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 728 | if (app->quirks & MT_QUIRK_HOVERING) { |
Benjamin Tissoires | 9b3bb9b8 | 2012-11-14 16:59:24 +0100 | [diff] [blame] | 729 | input_set_abs_params(hi->input, |
| 730 | ABS_MT_DISTANCE, 0, 1, 0, 0); |
| 731 | } |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 732 | MT_STORE_FIELD(inrange_state); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 733 | return 1; |
| 734 | case HID_DG_CONFIDENCE: |
Masaki Ota | 504c932 | 2017-06-16 09:29:39 +0900 | [diff] [blame] | 735 | if ((cls->name == MT_CLS_WIN_8 || |
| 736 | cls->name == MT_CLS_WIN_8_DUAL) && |
Allen Hung | 6dd2e27 | 2016-06-23 16:31:30 +0800 | [diff] [blame] | 737 | field->application == HID_DG_TOUCHPAD) |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 738 | app->quirks |= MT_QUIRK_CONFIDENCE; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 739 | MT_STORE_FIELD(confidence_state); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 740 | return 1; |
| 741 | case HID_DG_TIPSWITCH: |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 742 | if (field->application != HID_GD_SYSTEM_MULTIAXIS) |
| 743 | input_set_capability(hi->input, |
| 744 | EV_KEY, BTN_TOUCH); |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 745 | MT_STORE_FIELD(tip_state); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 746 | return 1; |
| 747 | case HID_DG_CONTACTID: |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 748 | MT_STORE_FIELD(contactid); |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 749 | app->touches_by_report++; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 750 | return 1; |
| 751 | case HID_DG_WIDTH: |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 752 | if (!(app->quirks & MT_QUIRK_NO_AREA)) |
Henrik Rydberg | 77723e3 | 2012-09-07 19:37:40 +0200 | [diff] [blame] | 753 | set_abs(hi->input, ABS_MT_TOUCH_MAJOR, field, |
| 754 | cls->sn_width); |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 755 | MT_STORE_FIELD(w); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 756 | return 1; |
| 757 | case HID_DG_HEIGHT: |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 758 | if (!(app->quirks & MT_QUIRK_NO_AREA)) { |
Henrik Rydberg | 77723e3 | 2012-09-07 19:37:40 +0200 | [diff] [blame] | 759 | set_abs(hi->input, ABS_MT_TOUCH_MINOR, field, |
| 760 | cls->sn_height); |
Wei-Ning Huang | 0072027 | 2017-10-12 14:21:43 +0800 | [diff] [blame] | 761 | |
| 762 | /* |
| 763 | * Only set ABS_MT_ORIENTATION if it is not |
| 764 | * already set by the HID_DG_AZIMUTH usage. |
| 765 | */ |
| 766 | if (!test_bit(ABS_MT_ORIENTATION, |
| 767 | hi->input->absbit)) |
| 768 | input_set_abs_params(hi->input, |
| 769 | ABS_MT_ORIENTATION, 0, 1, 0, 0); |
Henrik Rydberg | 77723e3 | 2012-09-07 19:37:40 +0200 | [diff] [blame] | 770 | } |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 771 | MT_STORE_FIELD(h); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 772 | return 1; |
| 773 | case HID_DG_TIPPRESSURE: |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 774 | set_abs(hi->input, ABS_MT_PRESSURE, field, |
| 775 | cls->sn_pressure); |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 776 | MT_STORE_FIELD(p); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 777 | return 1; |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 778 | case HID_DG_SCANTIME: |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 779 | input_set_capability(hi->input, EV_MSC, MSC_TIMESTAMP); |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 780 | app->scantime = &field->value[usage->usage_index]; |
| 781 | app->scantime_logical_max = field->logical_maximum; |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 782 | return 1; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 783 | case HID_DG_CONTACTCOUNT: |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 784 | app->have_contact_count = true; |
| 785 | app->raw_cc = &field->value[usage->usage_index]; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 786 | return 1; |
Wei-Ning Huang | 0072027 | 2017-10-12 14:21:43 +0800 | [diff] [blame] | 787 | case HID_DG_AZIMUTH: |
Wei-Ning Huang | 0072027 | 2017-10-12 14:21:43 +0800 | [diff] [blame] | 788 | /* |
| 789 | * Azimuth has the range of [0, MAX) representing a full |
| 790 | * revolution. Set ABS_MT_ORIENTATION to a quarter of |
| 791 | * MAX according the definition of ABS_MT_ORIENTATION |
| 792 | */ |
| 793 | input_set_abs_params(hi->input, ABS_MT_ORIENTATION, |
| 794 | -field->logical_maximum / 4, |
| 795 | field->logical_maximum / 4, |
| 796 | cls->sn_move ? |
| 797 | field->logical_maximum / cls->sn_move : 0, 0); |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 798 | MT_STORE_FIELD(a); |
Wei-Ning Huang | 0072027 | 2017-10-12 14:21:43 +0800 | [diff] [blame] | 799 | return 1; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 800 | case HID_DG_CONTACTMAX: |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 801 | /* contact max are global to the report */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 802 | return -1; |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 803 | case HID_DG_TOUCH: |
| 804 | /* Legacy devices use TIPSWITCH and not TOUCH. |
| 805 | * Let's just ignore this field. */ |
| 806 | return -1; |
Alan Cox | 65b258e | 2012-10-25 15:35:25 +0100 | [diff] [blame] | 807 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 808 | /* let hid-input decide for the others */ |
| 809 | return 0; |
| 810 | |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 811 | case HID_UP_BUTTON: |
| 812 | code = BTN_MOUSE + ((usage->hid - 1) & HID_USAGE); |
Benjamin Tissoires | 594312b | 2016-11-25 11:08:10 +0100 | [diff] [blame] | 813 | /* |
| 814 | * MS PTP spec says that external buttons left and right have |
| 815 | * usages 2 and 3. |
| 816 | */ |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 817 | if ((app->quirks & MT_QUIRK_WIN8_PTP_BUTTONS) && |
Benjamin Tissoires | 594312b | 2016-11-25 11:08:10 +0100 | [diff] [blame] | 818 | field->application == HID_DG_TOUCHPAD && |
| 819 | (usage->hid & HID_USAGE) > 1) |
| 820 | code--; |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 821 | |
| 822 | if (field->application == HID_GD_SYSTEM_MULTIAXIS) |
| 823 | code = BTN_0 + ((usage->hid - 1) & HID_USAGE); |
| 824 | |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 825 | hid_map_usage(hi, usage, bit, max, EV_KEY, code); |
| 826 | input_set_capability(hi->input, EV_KEY, code); |
| 827 | return 1; |
| 828 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 829 | case 0xff000000: |
| 830 | /* we do not want to map these: no input-oriented meaning */ |
| 831 | return -1; |
| 832 | } |
| 833 | |
| 834 | return 0; |
| 835 | } |
| 836 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 837 | static int mt_compute_slot(struct mt_device *td, struct mt_application *app, |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 838 | struct mt_usages *slot, |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 839 | struct input_dev *input) |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 840 | { |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 841 | __s32 quirks = app->quirks; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 842 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 843 | if (quirks & MT_QUIRK_SLOT_IS_CONTACTID) |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 844 | return *slot->contactid; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 845 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 846 | if (quirks & MT_QUIRK_CYPRESS) |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 847 | return cypress_compute_slot(app, slot); |
Benjamin Tissoires | a3b5e57 | 2011-01-07 23:46:30 +0100 | [diff] [blame] | 848 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 849 | if (quirks & MT_QUIRK_SLOT_IS_CONTACTNUMBER) |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 850 | return app->num_received; |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 851 | |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 852 | if (quirks & MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE) |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 853 | return *slot->contactid - 1; |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 854 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 855 | return input_mt_get_slot_by_key(input, *slot->contactid); |
Henrik Rydberg | 3e1b501 | 2012-09-01 19:46:58 +0200 | [diff] [blame] | 856 | } |
| 857 | |
| 858 | /* |
| 859 | * this function is called when a whole packet has been received and processed, |
| 860 | * so that it can decide what to send to the input layer. |
| 861 | */ |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 862 | static void mt_sync_frame(struct mt_device *td, struct mt_application *app, |
| 863 | struct input_dev *input) |
Henrik Rydberg | 3e1b501 | 2012-09-01 19:46:58 +0200 | [diff] [blame] | 864 | { |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 865 | if (app->quirks & MT_QUIRK_WIN8_PTP_BUTTONS) |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 866 | input_event(input, EV_KEY, BTN_LEFT, app->left_button_state); |
Hans de Goede | 127e71b | 2017-11-22 12:57:10 +0100 | [diff] [blame] | 867 | |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame] | 868 | input_mt_sync_frame(input); |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 869 | input_event(input, EV_MSC, MSC_TIMESTAMP, app->timestamp); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 870 | input_sync(input); |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 871 | app->num_received = 0; |
| 872 | app->left_button_state = 0; |
| 873 | |
Benjamin Tissoires | 9609827 | 2017-06-15 15:32:05 +0200 | [diff] [blame] | 874 | if (test_bit(MT_IO_FLAGS_ACTIVE_SLOTS, &td->mt_io_flags)) |
| 875 | set_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags); |
| 876 | else |
| 877 | clear_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags); |
| 878 | clear_bit(MT_IO_FLAGS_ACTIVE_SLOTS, &td->mt_io_flags); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 879 | } |
| 880 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 881 | static int mt_compute_timestamp(struct mt_application *app, __s32 value) |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 882 | { |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 883 | long delta = value - app->prev_scantime; |
| 884 | unsigned long jdelta = jiffies_to_usecs(jiffies - app->jiffies); |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 885 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 886 | app->jiffies = jiffies; |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 887 | |
| 888 | if (delta < 0) |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 889 | delta += app->scantime_logical_max; |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 890 | |
| 891 | /* HID_DG_SCANTIME is expressed in 100us, we want it in us. */ |
| 892 | delta *= 100; |
| 893 | |
| 894 | if (jdelta > MAX_TIMESTAMP_INTERVAL) |
| 895 | /* No data received for a while, resync the timestamp. */ |
| 896 | return 0; |
| 897 | else |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 898 | return app->timestamp + delta; |
Nicolas Boichat | 29cc309 | 2017-08-22 09:10:11 +0800 | [diff] [blame] | 899 | } |
| 900 | |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 901 | static int mt_touch_event(struct hid_device *hid, struct hid_field *field, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 902 | struct hid_usage *usage, __s32 value) |
| 903 | { |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 904 | /* we will handle the hidinput part later, now remains hiddev */ |
| 905 | if (hid->claimed & HID_CLAIMED_HIDDEV && hid->hiddev_hid_event) |
| 906 | hid->hiddev_hid_event(hid, field, usage, value); |
| 907 | |
| 908 | return 1; |
| 909 | } |
| 910 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 911 | static int mt_process_slot(struct mt_device *td, struct input_dev *input, |
| 912 | struct mt_application *app, |
| 913 | struct mt_usages *slot) |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 914 | { |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 915 | struct input_mt *mt = input->mt; |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 916 | __s32 quirks = app->quirks; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 917 | bool valid = true; |
| 918 | bool confidence_state = true; |
| 919 | bool inrange_state = false; |
| 920 | int active; |
| 921 | int slotnum; |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 922 | int tool = MT_TOOL_FINGER; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 923 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 924 | if (!slot) |
| 925 | return -EINVAL; |
| 926 | |
| 927 | if ((quirks & MT_QUIRK_CONTACT_CNT_ACCURATE) && |
| 928 | app->num_received >= app->num_expected) |
| 929 | return -EAGAIN; |
| 930 | |
| 931 | if (!(quirks & MT_QUIRK_ALWAYS_VALID)) { |
| 932 | if (quirks & MT_QUIRK_VALID_IS_INRANGE) |
| 933 | valid = *slot->inrange_state; |
| 934 | if (quirks & MT_QUIRK_NOT_SEEN_MEANS_UP) |
| 935 | valid = *slot->tip_state; |
| 936 | if (quirks & MT_QUIRK_VALID_IS_CONFIDENCE) |
| 937 | valid = *slot->confidence_state; |
| 938 | |
| 939 | if (!valid) |
| 940 | return 0; |
| 941 | } |
| 942 | |
| 943 | slotnum = mt_compute_slot(td, app, slot, input); |
| 944 | if (slotnum < 0 || slotnum >= td->maxcontacts) |
| 945 | return 0; |
| 946 | |
| 947 | if ((quirks & MT_QUIRK_IGNORE_DUPLICATES) && mt) { |
| 948 | struct input_mt_slot *i_slot = &mt->slots[slotnum]; |
| 949 | |
| 950 | if (input_mt_is_active(i_slot) && |
| 951 | input_mt_is_used(mt, i_slot)) |
| 952 | return -EAGAIN; |
| 953 | } |
| 954 | |
| 955 | if (quirks & MT_QUIRK_CONFIDENCE) |
| 956 | confidence_state = *slot->confidence_state; |
| 957 | |
| 958 | if (quirks & MT_QUIRK_HOVERING) |
| 959 | inrange_state = *slot->inrange_state; |
| 960 | |
| 961 | active = (*slot->tip_state || inrange_state) && confidence_state; |
| 962 | |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 963 | if (app->application == HID_GD_SYSTEM_MULTIAXIS) |
| 964 | tool = MT_TOOL_DIAL; |
| 965 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 966 | input_mt_slot(input, slotnum); |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 967 | input_mt_report_slot_state(input, tool, active); |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 968 | if (active) { |
| 969 | /* this finger is in proximity of the sensor */ |
| 970 | int wide = (*slot->w > *slot->h); |
| 971 | int major = max(*slot->w, *slot->h); |
| 972 | int minor = min(*slot->w, *slot->h); |
| 973 | int orientation = wide; |
| 974 | int max_azimuth; |
| 975 | int azimuth; |
| 976 | |
| 977 | if (slot->a != DEFAULT_ZERO) { |
Wei-Ning Huang | 0072027 | 2017-10-12 14:21:43 +0800 | [diff] [blame] | 978 | /* |
| 979 | * Azimuth is counter-clockwise and ranges from [0, MAX) |
| 980 | * (a full revolution). Convert it to clockwise ranging |
| 981 | * [-MAX/2, MAX/2]. |
| 982 | * |
| 983 | * Note that ABS_MT_ORIENTATION require us to report |
| 984 | * the limit of [-MAX/4, MAX/4], but the value can go |
| 985 | * out of range to [-MAX/2, MAX/2] to report an upside |
| 986 | * down ellipsis. |
| 987 | */ |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 988 | azimuth = *slot->a; |
| 989 | max_azimuth = input_abs_get_max(input, |
| 990 | ABS_MT_ORIENTATION); |
| 991 | if (azimuth > max_azimuth * 2) |
| 992 | azimuth -= max_azimuth * 4; |
| 993 | orientation = -azimuth; |
| 994 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 995 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 996 | /* |
| 997 | * divided by two to match visual scale of touch |
| 998 | * for devices with this quirk |
| 999 | */ |
| 1000 | if (quirks & MT_QUIRK_TOUCH_SIZE_SCALING) { |
| 1001 | major = major >> 1; |
| 1002 | minor = minor >> 1; |
| 1003 | } |
Hans de Goede | 55746d2 | 2017-11-22 12:57:09 +0100 | [diff] [blame] | 1004 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1005 | input_event(input, EV_ABS, ABS_MT_POSITION_X, *slot->x); |
| 1006 | input_event(input, EV_ABS, ABS_MT_POSITION_Y, *slot->y); |
| 1007 | input_event(input, EV_ABS, ABS_MT_TOOL_X, *slot->cx); |
| 1008 | input_event(input, EV_ABS, ABS_MT_TOOL_Y, *slot->cy); |
| 1009 | input_event(input, EV_ABS, ABS_MT_DISTANCE, !*slot->tip_state); |
| 1010 | input_event(input, EV_ABS, ABS_MT_ORIENTATION, orientation); |
| 1011 | input_event(input, EV_ABS, ABS_MT_PRESSURE, *slot->p); |
| 1012 | input_event(input, EV_ABS, ABS_MT_TOUCH_MAJOR, major); |
| 1013 | input_event(input, EV_ABS, ABS_MT_TOUCH_MINOR, minor); |
Hans de Goede | 127e71b | 2017-11-22 12:57:10 +0100 | [diff] [blame] | 1014 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1015 | set_bit(MT_IO_FLAGS_ACTIVE_SLOTS, &td->mt_io_flags); |
| 1016 | } |
| 1017 | |
| 1018 | return 0; |
| 1019 | } |
| 1020 | |
| 1021 | static void mt_process_mt_event(struct hid_device *hid, |
| 1022 | struct mt_application *app, |
| 1023 | struct hid_field *field, |
| 1024 | struct hid_usage *usage, |
| 1025 | __s32 value, |
| 1026 | bool first_packet) |
| 1027 | { |
| 1028 | __s32 quirks = app->quirks; |
| 1029 | struct input_dev *input = field->hidinput->input; |
| 1030 | |
| 1031 | if (!usage->type || !(hid->claimed & HID_CLAIMED_INPUT)) |
| 1032 | return; |
| 1033 | |
| 1034 | if (quirks & MT_QUIRK_WIN8_PTP_BUTTONS) { |
| 1035 | |
| 1036 | /* |
| 1037 | * For Win8 PTP touchpads we should only look at |
| 1038 | * non finger/touch events in the first_packet of a |
| 1039 | * (possible) multi-packet frame. |
| 1040 | */ |
| 1041 | if (!first_packet) |
| 1042 | return; |
| 1043 | |
| 1044 | /* |
| 1045 | * For Win8 PTP touchpads we map both the clickpad click |
| 1046 | * and any "external" left buttons to BTN_LEFT if a |
| 1047 | * device claims to have both we need to report 1 for |
| 1048 | * BTN_LEFT if either is pressed, so we or all values |
| 1049 | * together and report the result in mt_sync_frame(). |
| 1050 | */ |
| 1051 | if (usage->type == EV_KEY && usage->code == BTN_LEFT) { |
| 1052 | app->left_button_state |= value; |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 1053 | return; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1054 | } |
| 1055 | } |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1056 | |
| 1057 | input_event(input, usage->type, usage->code, value); |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 1058 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1059 | |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1060 | static void mt_touch_report(struct hid_device *hid, |
| 1061 | struct mt_report_data *rdata) |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 1062 | { |
| 1063 | struct mt_device *td = hid_get_drvdata(hid); |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1064 | struct hid_report *report = rdata->report; |
| 1065 | struct mt_application *app = rdata->application; |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 1066 | struct hid_field *field; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1067 | struct input_dev *input; |
| 1068 | struct mt_usages *slot; |
Hans de Goede | 55746d2 | 2017-11-22 12:57:09 +0100 | [diff] [blame] | 1069 | bool first_packet; |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 1070 | unsigned count; |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1071 | int r, n; |
| 1072 | int scantime = 0; |
| 1073 | int contact_count = -1; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1074 | |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1075 | /* sticky fingers release in progress, abort */ |
| 1076 | if (test_and_set_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags)) |
| 1077 | return; |
| 1078 | |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1079 | scantime = *app->scantime; |
| 1080 | app->timestamp = mt_compute_timestamp(app, scantime); |
| 1081 | if (app->raw_cc != DEFAULT_ZERO) |
| 1082 | contact_count = *app->raw_cc; |
| 1083 | |
Benjamin Tissoires | c2517f6 | 2013-01-31 17:22:25 +0100 | [diff] [blame] | 1084 | /* |
| 1085 | * Includes multi-packet support where subsequent |
| 1086 | * packets are sent with zero contactcount. |
| 1087 | */ |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1088 | if (contact_count >= 0) { |
Hans de Goede | af8dc4d | 2017-11-22 12:57:08 +0100 | [diff] [blame] | 1089 | /* |
| 1090 | * For Win8 PTPs the first packet (td->num_received == 0) may |
| 1091 | * have a contactcount of 0 if there only is a button event. |
| 1092 | * We double check that this is not a continuation packet |
| 1093 | * of a possible multi-packet frame be checking that the |
| 1094 | * timestamp has changed. |
| 1095 | */ |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1096 | if ((app->quirks & MT_QUIRK_WIN8_PTP_BUTTONS) && |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1097 | app->num_received == 0 && |
| 1098 | app->prev_scantime != scantime) |
| 1099 | app->num_expected = contact_count; |
Hans de Goede | af8dc4d | 2017-11-22 12:57:08 +0100 | [diff] [blame] | 1100 | /* A non 0 contact count always indicates a first packet */ |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1101 | else if (contact_count) |
| 1102 | app->num_expected = contact_count; |
Benjamin Tissoires | 7e3cc44 | 2013-02-06 12:10:47 +0100 | [diff] [blame] | 1103 | } |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1104 | app->prev_scantime = scantime; |
Benjamin Tissoires | c2517f6 | 2013-01-31 17:22:25 +0100 | [diff] [blame] | 1105 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1106 | first_packet = app->num_received == 0; |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1107 | |
| 1108 | input = report->field[0]->hidinput->input; |
| 1109 | |
| 1110 | list_for_each_entry(slot, &app->mt_usages, list) { |
| 1111 | if (!mt_process_slot(td, input, app, slot)) |
| 1112 | app->num_received++; |
| 1113 | } |
| 1114 | |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 1115 | for (r = 0; r < report->maxfield; r++) { |
| 1116 | field = report->field[r]; |
| 1117 | count = field->report_count; |
| 1118 | |
| 1119 | if (!(HID_MAIN_ITEM_VARIABLE & field->flags)) |
| 1120 | continue; |
| 1121 | |
| 1122 | for (n = 0; n < count; n++) |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1123 | mt_process_mt_event(hid, app, field, |
| 1124 | &field->usage[n], field->value[n], |
| 1125 | first_packet); |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 1126 | } |
Benjamin Tissoires | 5b62efd | 2013-02-27 16:23:15 +0100 | [diff] [blame] | 1127 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1128 | if (app->num_received >= app->num_expected) |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1129 | mt_sync_frame(td, app, input); |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1130 | |
| 1131 | /* |
| 1132 | * Windows 8 specs says 2 things: |
| 1133 | * - once a contact has been reported, it has to be reported in each |
| 1134 | * subsequent report |
| 1135 | * - the report rate when fingers are present has to be at least |
| 1136 | * the refresh rate of the screen, 60 or 120 Hz |
| 1137 | * |
| 1138 | * I interprete this that the specification forces a report rate of |
| 1139 | * at least 60 Hz for a touchscreen to be certified. |
| 1140 | * Which means that if we do not get a report whithin 16 ms, either |
| 1141 | * something wrong happens, either the touchscreen forgets to send |
| 1142 | * a release. Taking a reasonable margin allows to remove issues |
| 1143 | * with USB communication or the load of the machine. |
| 1144 | * |
| 1145 | * Given that Win 8 devices are forced to send a release, this will |
| 1146 | * only affect laggish machines and the ones that have a firmware |
| 1147 | * defect. |
| 1148 | */ |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1149 | if (app->quirks & MT_QUIRK_STICKY_FINGERS) { |
Benjamin Tissoires | 9609827 | 2017-06-15 15:32:05 +0200 | [diff] [blame] | 1150 | if (test_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags)) |
| 1151 | mod_timer(&td->release_timer, |
| 1152 | jiffies + msecs_to_jiffies(100)); |
| 1153 | else |
| 1154 | del_timer(&td->release_timer); |
| 1155 | } |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1156 | |
| 1157 | clear_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1158 | } |
| 1159 | |
Dmitry Torokhov | b2c68a2 | 2015-09-29 15:52:59 -0700 | [diff] [blame] | 1160 | static int mt_touch_input_configured(struct hid_device *hdev, |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1161 | struct hid_input *hi, |
| 1162 | struct mt_application *app) |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1163 | { |
| 1164 | struct mt_device *td = hid_get_drvdata(hdev); |
| 1165 | struct mt_class *cls = &td->mtclass; |
| 1166 | struct input_dev *input = hi->input; |
Dmitry Torokhov | b2c68a2 | 2015-09-29 15:52:59 -0700 | [diff] [blame] | 1167 | int ret; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1168 | |
| 1169 | if (!td->maxcontacts) |
| 1170 | td->maxcontacts = MT_DEFAULT_MAXCONTACT; |
| 1171 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1172 | mt_post_parse(td, app); |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1173 | if (td->serial_maybe) |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1174 | mt_post_parse_default_settings(td, app); |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1175 | |
| 1176 | if (cls->is_indirect) |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1177 | app->mt_flags |= INPUT_MT_POINTER; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1178 | |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1179 | if (app->quirks & MT_QUIRK_NOT_SEEN_MEANS_UP) |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1180 | app->mt_flags |= INPUT_MT_DROP_UNUSED; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1181 | |
Benjamin Tissoires | 015fdaa | 2015-03-06 11:14:42 -0500 | [diff] [blame] | 1182 | /* check for clickpads */ |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1183 | if ((app->mt_flags & INPUT_MT_POINTER) && |
| 1184 | (app->buttons_count == 1)) |
Seth Forshee | 2c6e027 | 2015-03-11 17:26:41 -0500 | [diff] [blame] | 1185 | td->is_buttonpad = true; |
| 1186 | |
| 1187 | if (td->is_buttonpad) |
Benjamin Tissoires | 015fdaa | 2015-03-06 11:14:42 -0500 | [diff] [blame] | 1188 | __set_bit(INPUT_PROP_BUTTONPAD, input->propbit); |
| 1189 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1190 | ret = input_mt_init_slots(input, td->maxcontacts, app->mt_flags); |
Dmitry Torokhov | b2c68a2 | 2015-09-29 15:52:59 -0700 | [diff] [blame] | 1191 | if (ret) |
| 1192 | return ret; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1193 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1194 | app->mt_flags = 0; |
Dmitry Torokhov | b2c68a2 | 2015-09-29 15:52:59 -0700 | [diff] [blame] | 1195 | return 0; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1196 | } |
| 1197 | |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 1198 | #define mt_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, \ |
| 1199 | max, EV_KEY, (c)) |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1200 | static int mt_input_mapping(struct hid_device *hdev, struct hid_input *hi, |
| 1201 | struct hid_field *field, struct hid_usage *usage, |
| 1202 | unsigned long **bit, int *max) |
| 1203 | { |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1204 | struct mt_device *td = hid_get_drvdata(hdev); |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1205 | struct mt_application *application; |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1206 | struct mt_report_data *rdata; |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1207 | |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1208 | rdata = mt_find_report_data(td, field->report); |
| 1209 | if (!rdata) { |
| 1210 | hid_err(hdev, "failed to allocate data for report\n"); |
| 1211 | return 0; |
| 1212 | } |
| 1213 | |
| 1214 | application = rdata->application; |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1215 | |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1216 | /* |
| 1217 | * If mtclass.export_all_inputs is not set, only map fields from |
| 1218 | * TouchScreen or TouchPad collections. We need to ignore fields |
| 1219 | * that belong to other collections such as Mouse that might have |
| 1220 | * the same GenericDesktop usages. |
| 1221 | */ |
| 1222 | if (!td->mtclass.export_all_inputs && |
| 1223 | field->application != HID_DG_TOUCHSCREEN && |
Benjamin Tissoires | fa11aa7 | 2013-03-22 18:38:32 +0100 | [diff] [blame] | 1224 | field->application != HID_DG_PEN && |
Benjamin Tissoires | 8fe89ef | 2016-11-25 14:27:23 +0100 | [diff] [blame] | 1225 | field->application != HID_DG_TOUCHPAD && |
| 1226 | field->application != HID_GD_KEYBOARD && |
Hans de Goede | e57f4e6 | 2017-08-22 08:37:52 +0200 | [diff] [blame] | 1227 | field->application != HID_GD_SYSTEM_CONTROL && |
João Paulo Rechi Vita | 1fbf74ef | 2017-07-24 14:22:24 -0700 | [diff] [blame] | 1228 | field->application != HID_CP_CONSUMER_CONTROL && |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 1229 | field->application != HID_GD_WIRELESS_RADIO_CTLS && |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 1230 | field->application != HID_GD_SYSTEM_MULTIAXIS && |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 1231 | !(field->application == HID_VD_ASUS_CUSTOM_MEDIA_KEYS && |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1232 | application->quirks & MT_QUIRK_ASUS_CUSTOM_UP)) |
Benjamin Tissoires | 6f492f2 | 2013-03-22 18:38:30 +0100 | [diff] [blame] | 1233 | return -1; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1234 | |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1235 | /* |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 1236 | * Some Asus keyboard+touchpad devices have the hotkeys defined in the |
| 1237 | * touchpad report descriptor. We need to treat these as an array to |
| 1238 | * map usages to input keys. |
| 1239 | */ |
Jiri Kosina | 39bbf40 | 2017-08-03 11:25:32 +0200 | [diff] [blame] | 1240 | if (field->application == HID_VD_ASUS_CUSTOM_MEDIA_KEYS && |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1241 | application->quirks & MT_QUIRK_ASUS_CUSTOM_UP && |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 1242 | (usage->hid & HID_USAGE_PAGE) == HID_UP_CUSTOM) { |
| 1243 | set_bit(EV_REP, hi->input->evbit); |
| 1244 | if (field->flags & HID_MAIN_ITEM_VARIABLE) |
| 1245 | field->flags &= ~HID_MAIN_ITEM_VARIABLE; |
| 1246 | switch (usage->hid & HID_USAGE) { |
| 1247 | case 0x10: mt_map_key_clear(KEY_BRIGHTNESSDOWN); break; |
| 1248 | case 0x20: mt_map_key_clear(KEY_BRIGHTNESSUP); break; |
| 1249 | case 0x35: mt_map_key_clear(KEY_DISPLAY_OFF); break; |
| 1250 | case 0x6b: mt_map_key_clear(KEY_F21); break; |
| 1251 | case 0x6c: mt_map_key_clear(KEY_SLEEP); break; |
| 1252 | default: |
| 1253 | return -1; |
| 1254 | } |
| 1255 | return 1; |
| 1256 | } |
| 1257 | |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 1258 | if (rdata->is_mt_collection) |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1259 | return mt_touch_input_mapping(hdev, hi, field, usage, bit, max, |
| 1260 | application); |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1261 | |
| 1262 | /* let hid-core decide for the others */ |
| 1263 | return 0; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1264 | } |
| 1265 | |
| 1266 | static int mt_input_mapped(struct hid_device *hdev, struct hid_input *hi, |
| 1267 | struct hid_field *field, struct hid_usage *usage, |
| 1268 | unsigned long **bit, int *max) |
| 1269 | { |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 1270 | struct mt_device *td = hid_get_drvdata(hdev); |
| 1271 | struct mt_report_data *rdata; |
Benjamin Tissoires | fa11aa7 | 2013-03-22 18:38:32 +0100 | [diff] [blame] | 1272 | |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 1273 | rdata = mt_find_report_data(td, field->report); |
| 1274 | if (rdata && rdata->is_mt_collection) { |
Dmitry Torokhov | 4cf56a89c | 2017-07-11 10:02:18 -0700 | [diff] [blame] | 1275 | /* We own these mappings, tell hid-input to ignore them */ |
| 1276 | return -1; |
| 1277 | } |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1278 | |
| 1279 | /* let hid-core decide for the others */ |
| 1280 | return 0; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | static int mt_event(struct hid_device *hid, struct hid_field *field, |
| 1284 | struct hid_usage *usage, __s32 value) |
| 1285 | { |
| 1286 | struct mt_device *td = hid_get_drvdata(hid); |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1287 | struct mt_report_data *rdata; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1288 | |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1289 | rdata = mt_find_report_data(td, field->report); |
| 1290 | if (rdata && rdata->is_mt_collection) |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1291 | return mt_touch_event(hid, field, usage, value); |
| 1292 | |
Benjamin Tissoires | e55f620 | 2014-02-28 11:41:24 -0500 | [diff] [blame] | 1293 | return 0; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1294 | } |
| 1295 | |
| 1296 | static void mt_report(struct hid_device *hid, struct hid_report *report) |
| 1297 | { |
| 1298 | struct mt_device *td = hid_get_drvdata(hid); |
Benjamin Tissoires | e55f620 | 2014-02-28 11:41:24 -0500 | [diff] [blame] | 1299 | struct hid_field *field = report->field[0]; |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1300 | struct mt_report_data *rdata; |
Benjamin Tissoires | a69c5f8 | 2013-03-22 18:38:29 +0100 | [diff] [blame] | 1301 | |
| 1302 | if (!(hid->claimed & HID_CLAIMED_INPUT)) |
| 1303 | return; |
| 1304 | |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1305 | rdata = mt_find_report_data(td, report); |
| 1306 | if (rdata && rdata->is_mt_collection) |
| 1307 | return mt_touch_report(hid, rdata); |
Benjamin Tissoires | fa11aa7 | 2013-03-22 18:38:32 +0100 | [diff] [blame] | 1308 | |
Benjamin Tissoires | e55f620 | 2014-02-28 11:41:24 -0500 | [diff] [blame] | 1309 | if (field && field->hidinput && field->hidinput->input) |
| 1310 | input_sync(field->hidinput->input); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1311 | } |
| 1312 | |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1313 | static bool mt_need_to_apply_feature(struct hid_device *hdev, |
| 1314 | struct hid_field *field, |
Benjamin Tissoires | 02946f4 | 2018-04-24 10:04:37 +0200 | [diff] [blame] | 1315 | struct hid_usage *usage, |
| 1316 | enum latency_mode latency, |
| 1317 | bool surface_switch, |
| 1318 | bool button_switch) |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1319 | { |
| 1320 | struct mt_device *td = hid_get_drvdata(hdev); |
Mathieu Magnaudet | da10bc2 | 2014-11-22 12:02:07 +0100 | [diff] [blame] | 1321 | struct mt_class *cls = &td->mtclass; |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1322 | struct hid_report *report = field->report; |
| 1323 | unsigned int index = usage->usage_index; |
Mathieu Magnaudet | da10bc2 | 2014-11-22 12:02:07 +0100 | [diff] [blame] | 1324 | char *buf; |
Aaron Ma | 3064a03 | 2018-02-03 23:57:15 +0800 | [diff] [blame] | 1325 | u32 report_len; |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1326 | int max; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1327 | |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1328 | switch (usage->hid) { |
| 1329 | case HID_DG_INPUTMODE: |
Mathieu Magnaudet | da10bc2 | 2014-11-22 12:02:07 +0100 | [diff] [blame] | 1330 | if (cls->quirks & MT_QUIRK_FORCE_GET_FEATURE) { |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1331 | report_len = hid_report_len(report); |
| 1332 | buf = hid_alloc_report_buf(report, GFP_KERNEL); |
Mathieu Magnaudet | da10bc2 | 2014-11-22 12:02:07 +0100 | [diff] [blame] | 1333 | if (!buf) { |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1334 | hid_err(hdev, |
| 1335 | "failed to allocate buffer for report\n"); |
| 1336 | return false; |
Mathieu Magnaudet | da10bc2 | 2014-11-22 12:02:07 +0100 | [diff] [blame] | 1337 | } |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1338 | hid_hw_raw_request(hdev, report->id, buf, report_len, |
Mathieu Magnaudet | da10bc2 | 2014-11-22 12:02:07 +0100 | [diff] [blame] | 1339 | HID_FEATURE_REPORT, |
| 1340 | HID_REQ_GET_REPORT); |
| 1341 | kfree(buf); |
| 1342 | } |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1343 | |
| 1344 | field->value[index] = td->inputmode_value; |
| 1345 | return true; |
| 1346 | |
| 1347 | case HID_DG_CONTACTMAX: |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1348 | if (cls->maxcontacts) { |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1349 | max = min_t(int, field->logical_maximum, |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1350 | cls->maxcontacts); |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1351 | if (field->value[index] != max) { |
| 1352 | field->value[index] = max; |
| 1353 | return true; |
| 1354 | } |
| 1355 | } |
| 1356 | break; |
Benjamin Tissoires | 02946f4 | 2018-04-24 10:04:37 +0200 | [diff] [blame] | 1357 | |
| 1358 | case HID_DG_LATENCYMODE: |
| 1359 | field->value[index] = latency; |
Jiri Kosina | 99c703a | 2018-05-16 11:02:07 +0200 | [diff] [blame] | 1360 | return true; |
Benjamin Tissoires | 02946f4 | 2018-04-24 10:04:37 +0200 | [diff] [blame] | 1361 | |
| 1362 | case HID_DG_SURFACESWITCH: |
| 1363 | field->value[index] = surface_switch; |
Jiri Kosina | 99c703a | 2018-05-16 11:02:07 +0200 | [diff] [blame] | 1364 | return true; |
Benjamin Tissoires | 02946f4 | 2018-04-24 10:04:37 +0200 | [diff] [blame] | 1365 | |
| 1366 | case HID_DG_BUTTONSWITCH: |
| 1367 | field->value[index] = button_switch; |
Jiri Kosina | 99c703a | 2018-05-16 11:02:07 +0200 | [diff] [blame] | 1368 | return true; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1369 | } |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1370 | |
| 1371 | return false; /* no need to update the report */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1372 | } |
| 1373 | |
Benjamin Tissoires | 02946f4 | 2018-04-24 10:04:37 +0200 | [diff] [blame] | 1374 | static void mt_set_modes(struct hid_device *hdev, enum latency_mode latency, |
| 1375 | bool surface_switch, bool button_switch) |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 1376 | { |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1377 | struct hid_report_enum *rep_enum; |
| 1378 | struct hid_report *rep; |
| 1379 | struct hid_usage *usage; |
| 1380 | int i, j; |
| 1381 | bool update_report; |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 1382 | |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1383 | rep_enum = &hdev->report_enum[HID_FEATURE_REPORT]; |
| 1384 | list_for_each_entry(rep, &rep_enum->report_list, list) { |
| 1385 | update_report = false; |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 1386 | |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1387 | for (i = 0; i < rep->maxfield; i++) { |
| 1388 | /* Ignore if report count is out of bounds. */ |
| 1389 | if (rep->field[i]->report_count < 1) |
| 1390 | continue; |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 1391 | |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1392 | for (j = 0; j < rep->field[i]->maxusage; j++) { |
| 1393 | usage = &rep->field[i]->usage[j]; |
| 1394 | |
| 1395 | if (mt_need_to_apply_feature(hdev, |
| 1396 | rep->field[i], |
Benjamin Tissoires | 02946f4 | 2018-04-24 10:04:37 +0200 | [diff] [blame] | 1397 | usage, |
| 1398 | latency, |
| 1399 | surface_switch, |
| 1400 | button_switch)) |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1401 | update_report = true; |
| 1402 | } |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 1403 | } |
Benjamin Tissoires | 7f81c8d | 2018-04-24 10:04:36 +0200 | [diff] [blame] | 1404 | |
| 1405 | if (update_report) |
| 1406 | hid_hw_request(hdev, rep, HID_REQ_SET_REPORT); |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 1407 | } |
| 1408 | } |
| 1409 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1410 | static void mt_post_parse_default_settings(struct mt_device *td, |
| 1411 | struct mt_application *app) |
Henrik Rydberg | 4fa3a58 | 2012-05-01 08:40:01 +0200 | [diff] [blame] | 1412 | { |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1413 | __s32 quirks = app->quirks; |
Henrik Rydberg | 4fa3a58 | 2012-05-01 08:40:01 +0200 | [diff] [blame] | 1414 | |
| 1415 | /* unknown serial device needs special quirks */ |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1416 | if (list_is_singular(&app->mt_usages)) { |
Henrik Rydberg | 4fa3a58 | 2012-05-01 08:40:01 +0200 | [diff] [blame] | 1417 | quirks |= MT_QUIRK_ALWAYS_VALID; |
| 1418 | quirks &= ~MT_QUIRK_NOT_SEEN_MEANS_UP; |
| 1419 | quirks &= ~MT_QUIRK_VALID_IS_INRANGE; |
| 1420 | quirks &= ~MT_QUIRK_VALID_IS_CONFIDENCE; |
Benjamin Tissoires | e0bb8f9 | 2013-01-31 17:22:27 +0100 | [diff] [blame] | 1421 | quirks &= ~MT_QUIRK_CONTACT_CNT_ACCURATE; |
Henrik Rydberg | 4fa3a58 | 2012-05-01 08:40:01 +0200 | [diff] [blame] | 1422 | } |
| 1423 | |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1424 | app->quirks = quirks; |
Henrik Rydberg | 4fa3a58 | 2012-05-01 08:40:01 +0200 | [diff] [blame] | 1425 | } |
| 1426 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1427 | static void mt_post_parse(struct mt_device *td, struct mt_application *app) |
Benjamin Tissoires | 3ac36d15 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 1428 | { |
Benjamin Tissoires | 01eaac7 | 2018-07-13 16:13:48 +0200 | [diff] [blame] | 1429 | if (!app->have_contact_count) |
Benjamin Tissoires | 3ceb382 | 2018-07-13 16:13:46 +0200 | [diff] [blame] | 1430 | app->quirks &= ~MT_QUIRK_CONTACT_CNT_ACCURATE; |
Benjamin Tissoires | 3ac36d15 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 1431 | } |
| 1432 | |
Dmitry Torokhov | b2c68a2 | 2015-09-29 15:52:59 -0700 | [diff] [blame] | 1433 | static int mt_input_configured(struct hid_device *hdev, struct hid_input *hi) |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame] | 1434 | { |
| 1435 | struct mt_device *td = hid_get_drvdata(hdev); |
Benjamin Tissoires | c08d46a | 2013-07-24 19:38:05 +0200 | [diff] [blame] | 1436 | char *name; |
| 1437 | const char *suffix = NULL; |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1438 | unsigned int application = 0; |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1439 | struct mt_report_data *rdata; |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1440 | struct mt_application *mt_application = NULL; |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1441 | struct hid_report *report; |
Dmitry Torokhov | b2c68a2 | 2015-09-29 15:52:59 -0700 | [diff] [blame] | 1442 | int ret; |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame] | 1443 | |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1444 | list_for_each_entry(report, &hi->reports, hidinput_list) { |
| 1445 | application = report->application; |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1446 | rdata = mt_find_report_data(td, report); |
| 1447 | if (!rdata) { |
| 1448 | hid_err(hdev, "failed to allocate data for report\n"); |
| 1449 | return -ENOMEM; |
| 1450 | } |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1451 | |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1452 | mt_application = rdata->application; |
| 1453 | |
| 1454 | if (rdata->is_mt_collection) { |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1455 | ret = mt_touch_input_configured(hdev, hi, |
| 1456 | mt_application); |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1457 | if (ret) |
| 1458 | return ret; |
| 1459 | } |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame] | 1460 | |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1461 | /* |
| 1462 | * some egalax touchscreens have "application == DG_TOUCHSCREEN" |
| 1463 | * for the stylus. Check this first, and then rely on |
| 1464 | * the application field. |
| 1465 | */ |
| 1466 | if (report->field[0]->physical == HID_DG_STYLUS) { |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1467 | suffix = "Pen"; |
| 1468 | /* force BTN_STYLUS to allow tablet matching in udev */ |
| 1469 | __set_bit(BTN_STYLUS, hi->input->keybit); |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1470 | } |
| 1471 | } |
| 1472 | |
| 1473 | if (!suffix) { |
| 1474 | switch (application) { |
| 1475 | case HID_GD_KEYBOARD: |
| 1476 | case HID_GD_KEYPAD: |
| 1477 | case HID_GD_MOUSE: |
| 1478 | case HID_DG_TOUCHPAD: |
| 1479 | case HID_GD_SYSTEM_CONTROL: |
| 1480 | case HID_CP_CONSUMER_CONTROL: |
| 1481 | case HID_GD_WIRELESS_RADIO_CTLS: |
Benjamin Tissoires | ba6b055 | 2018-07-13 16:13:49 +0200 | [diff] [blame^] | 1482 | case HID_GD_SYSTEM_MULTIAXIS: |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1483 | /* already handled by hid core */ |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1484 | break; |
| 1485 | case HID_DG_TOUCHSCREEN: |
| 1486 | /* we do not set suffix = "Touchscreen" */ |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1487 | hi->input->name = hdev->name; |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1488 | break; |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1489 | case HID_DG_STYLUS: |
| 1490 | /* force BTN_STYLUS to allow tablet matching in udev */ |
| 1491 | __set_bit(BTN_STYLUS, hi->input->keybit); |
João Paulo Rechi Vita | 1fbf74ef | 2017-07-24 14:22:24 -0700 | [diff] [blame] | 1492 | break; |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 1493 | case HID_VD_ASUS_CUSTOM_MEDIA_KEYS: |
| 1494 | suffix = "Custom Media Keys"; |
| 1495 | break; |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1496 | default: |
| 1497 | suffix = "UNKNOWN"; |
| 1498 | break; |
| 1499 | } |
Benjamin Tissoires | c08d46a | 2013-07-24 19:38:05 +0200 | [diff] [blame] | 1500 | } |
| 1501 | |
| 1502 | if (suffix) { |
| 1503 | name = devm_kzalloc(&hi->input->dev, |
| 1504 | strlen(hdev->name) + strlen(suffix) + 2, |
| 1505 | GFP_KERNEL); |
| 1506 | if (name) { |
| 1507 | sprintf(name, "%s %s", hdev->name, suffix); |
| 1508 | hi->input->name = name; |
| 1509 | } |
| 1510 | } |
Dmitry Torokhov | b2c68a2 | 2015-09-29 15:52:59 -0700 | [diff] [blame] | 1511 | |
| 1512 | return 0; |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame] | 1513 | } |
| 1514 | |
Benjamin Tissoires | f3287a9 | 2017-01-30 10:48:06 +0100 | [diff] [blame] | 1515 | static void mt_fix_const_field(struct hid_field *field, unsigned int usage) |
| 1516 | { |
| 1517 | if (field->usage[0].hid != usage || |
| 1518 | !(field->flags & HID_MAIN_ITEM_CONSTANT)) |
| 1519 | return; |
| 1520 | |
| 1521 | field->flags &= ~HID_MAIN_ITEM_CONSTANT; |
| 1522 | field->flags |= HID_MAIN_ITEM_VARIABLE; |
| 1523 | } |
| 1524 | |
| 1525 | static void mt_fix_const_fields(struct hid_device *hdev, unsigned int usage) |
| 1526 | { |
| 1527 | struct hid_report *report; |
| 1528 | int i; |
| 1529 | |
| 1530 | list_for_each_entry(report, |
| 1531 | &hdev->report_enum[HID_INPUT_REPORT].report_list, |
| 1532 | list) { |
| 1533 | |
| 1534 | if (!report->maxfield) |
| 1535 | continue; |
| 1536 | |
| 1537 | for (i = 0; i < report->maxfield; i++) |
| 1538 | if (report->field[i]->maxusage >= 1) |
| 1539 | mt_fix_const_field(report->field[i], usage); |
| 1540 | } |
| 1541 | } |
| 1542 | |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1543 | static void mt_release_contacts(struct hid_device *hid) |
| 1544 | { |
| 1545 | struct hid_input *hidinput; |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1546 | struct mt_application *application; |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1547 | struct mt_device *td = hid_get_drvdata(hid); |
| 1548 | |
| 1549 | list_for_each_entry(hidinput, &hid->inputs, list) { |
| 1550 | struct input_dev *input_dev = hidinput->input; |
| 1551 | struct input_mt *mt = input_dev->mt; |
| 1552 | int i; |
| 1553 | |
| 1554 | if (mt) { |
| 1555 | for (i = 0; i < mt->num_slots; i++) { |
| 1556 | input_mt_slot(input_dev, i); |
| 1557 | input_mt_report_slot_state(input_dev, |
| 1558 | MT_TOOL_FINGER, |
| 1559 | false); |
| 1560 | } |
| 1561 | input_mt_sync_frame(input_dev); |
| 1562 | input_sync(input_dev); |
| 1563 | } |
| 1564 | } |
| 1565 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1566 | list_for_each_entry(application, &td->applications, list) { |
| 1567 | application->num_received = 0; |
| 1568 | } |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1569 | } |
| 1570 | |
Kees Cook | 0ee3277 | 2017-10-04 17:53:24 -0700 | [diff] [blame] | 1571 | static void mt_expired_timeout(struct timer_list *t) |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1572 | { |
Kees Cook | 0ee3277 | 2017-10-04 17:53:24 -0700 | [diff] [blame] | 1573 | struct mt_device *td = from_timer(td, t, release_timer); |
| 1574 | struct hid_device *hdev = td->hdev; |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1575 | |
| 1576 | /* |
| 1577 | * An input report came in just before we release the sticky fingers, |
| 1578 | * it will take care of the sticky fingers. |
| 1579 | */ |
| 1580 | if (test_and_set_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags)) |
| 1581 | return; |
Benjamin Tissoires | 9609827 | 2017-06-15 15:32:05 +0200 | [diff] [blame] | 1582 | if (test_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags)) |
| 1583 | mt_release_contacts(hdev); |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1584 | clear_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags); |
| 1585 | } |
| 1586 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1587 | static int mt_probe(struct hid_device *hdev, const struct hid_device_id *id) |
| 1588 | { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 1589 | int ret, i; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1590 | struct mt_device *td; |
Benjamin Tissoires | cf6d15d | 2018-07-13 16:13:44 +0200 | [diff] [blame] | 1591 | const struct mt_class *mtclass = mt_classes; /* MT_CLS_DEFAULT */ |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 1592 | |
Henrik Rydberg | 94b5485c | 2012-08-08 21:45:50 +0200 | [diff] [blame] | 1593 | for (i = 0; mt_classes[i].name ; i++) { |
| 1594 | if (id->driver_data == mt_classes[i].name) { |
| 1595 | mtclass = &(mt_classes[i]); |
| 1596 | break; |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 1597 | } |
| 1598 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1599 | |
Benjamin Tissoires | c08d46a | 2013-07-24 19:38:05 +0200 | [diff] [blame] | 1600 | td = devm_kzalloc(&hdev->dev, sizeof(struct mt_device), GFP_KERNEL); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1601 | if (!td) { |
| 1602 | dev_err(&hdev->dev, "cannot allocate multitouch data\n"); |
| 1603 | return -ENOMEM; |
| 1604 | } |
Kees Cook | 0ee3277 | 2017-10-04 17:53:24 -0700 | [diff] [blame] | 1605 | td->hdev = hdev; |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 1606 | td->mtclass = *mtclass; |
Andrew Duggan | 9abebed | 2014-03-19 13:39:03 -0700 | [diff] [blame] | 1607 | td->inputmode_value = MT_INPUTMODE_TOUCHSCREEN; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1608 | hid_set_drvdata(hdev, td); |
| 1609 | |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1610 | INIT_LIST_HEAD(&td->applications); |
Benjamin Tissoires | 8dfe14b | 2018-07-13 16:13:47 +0200 | [diff] [blame] | 1611 | INIT_LIST_HEAD(&td->reports); |
Benjamin Tissoires | f146d1c | 2018-07-13 16:13:45 +0200 | [diff] [blame] | 1612 | |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame] | 1613 | if (id->vendor == HID_ANY_ID && id->product == HID_ANY_ID) |
| 1614 | td->serial_maybe = true; |
| 1615 | |
Benjamin Tissoires | b897f6d | 2016-11-25 14:27:22 +0100 | [diff] [blame] | 1616 | /* This allows the driver to correctly support devices |
| 1617 | * that emit events over several HID messages. |
| 1618 | */ |
| 1619 | hdev->quirks |= HID_QUIRK_NO_INPUT_SYNC; |
| 1620 | |
| 1621 | /* |
| 1622 | * This allows the driver to handle different input sensors |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1623 | * that emits events through different applications on the same HID |
Benjamin Tissoires | b897f6d | 2016-11-25 14:27:22 +0100 | [diff] [blame] | 1624 | * device. |
| 1625 | */ |
Benjamin Tissoires | 40ec260 | 2018-04-24 10:04:35 +0200 | [diff] [blame] | 1626 | hdev->quirks |= HID_QUIRK_INPUT_PER_APP; |
Benjamin Tissoires | b897f6d | 2016-11-25 14:27:22 +0100 | [diff] [blame] | 1627 | |
Kees Cook | 0ee3277 | 2017-10-04 17:53:24 -0700 | [diff] [blame] | 1628 | timer_setup(&td->release_timer, mt_expired_timeout, 0); |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1629 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1630 | ret = hid_parse(hdev); |
| 1631 | if (ret != 0) |
Benjamin Tissoires | c08d46a | 2013-07-24 19:38:05 +0200 | [diff] [blame] | 1632 | return ret; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1633 | |
Benjamin Tissoires | f3287a9 | 2017-01-30 10:48:06 +0100 | [diff] [blame] | 1634 | if (mtclass->quirks & MT_QUIRK_FIX_CONST_CONTACT_ID) |
| 1635 | mt_fix_const_fields(hdev, HID_DG_CONTACTID); |
| 1636 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1637 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 1638 | if (ret) |
Benjamin Tissoires | c08d46a | 2013-07-24 19:38:05 +0200 | [diff] [blame] | 1639 | return ret; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1640 | |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 1641 | ret = sysfs_create_group(&hdev->dev.kobj, &mt_attribute_group); |
Nicholas Krause | 0c4b3c6 | 2016-02-04 10:52:40 -0500 | [diff] [blame] | 1642 | if (ret) |
| 1643 | dev_warn(&hdev->dev, "Cannot allocate sysfs group for %s\n", |
| 1644 | hdev->name); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 1645 | |
Benjamin Tissoires | 02946f4 | 2018-04-24 10:04:37 +0200 | [diff] [blame] | 1646 | mt_set_modes(hdev, HID_LATENCY_NORMAL, true, true); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1647 | |
| 1648 | return 0; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | #ifdef CONFIG_PM |
| 1652 | static int mt_reset_resume(struct hid_device *hdev) |
| 1653 | { |
Benson Leung | d3e69b9 | 2016-03-11 14:19:49 -0800 | [diff] [blame] | 1654 | mt_release_contacts(hdev); |
Benjamin Tissoires | 02946f4 | 2018-04-24 10:04:37 +0200 | [diff] [blame] | 1655 | mt_set_modes(hdev, HID_LATENCY_NORMAL, true, true); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1656 | return 0; |
| 1657 | } |
Scott Liu | dfeefd1 | 2012-08-15 17:21:55 +0800 | [diff] [blame] | 1658 | |
| 1659 | static int mt_resume(struct hid_device *hdev) |
| 1660 | { |
Scott Liu | dfeefd1 | 2012-08-15 17:21:55 +0800 | [diff] [blame] | 1661 | /* Some Elan legacy devices require SET_IDLE to be set on resume. |
| 1662 | * It should be safe to send it to other devices too. |
| 1663 | * Tested on 3M, Stantum, Cypress, Zytronic, eGalax, and Elan panels. */ |
| 1664 | |
Benjamin Tissoires | 4ba25d3 | 2013-02-27 16:38:18 +0100 | [diff] [blame] | 1665 | hid_hw_idle(hdev, 0, 0, HID_REQ_SET_IDLE); |
Scott Liu | dfeefd1 | 2012-08-15 17:21:55 +0800 | [diff] [blame] | 1666 | |
| 1667 | return 0; |
| 1668 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1669 | #endif |
| 1670 | |
| 1671 | static void mt_remove(struct hid_device *hdev) |
| 1672 | { |
Benjamin Tissoires | b897f6d | 2016-11-25 14:27:22 +0100 | [diff] [blame] | 1673 | struct mt_device *td = hid_get_drvdata(hdev); |
| 1674 | |
Benjamin Tissoires | 4f4001b | 2017-06-15 15:32:04 +0200 | [diff] [blame] | 1675 | del_timer_sync(&td->release_timer); |
| 1676 | |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 1677 | sysfs_remove_group(&hdev->dev.kobj, &mt_attribute_group); |
Benjamin Tissoires | 5939212 | 2013-05-29 10:45:09 +0200 | [diff] [blame] | 1678 | hid_hw_stop(hdev); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1679 | } |
| 1680 | |
Benjamin Tissoires | 0fa9c61 | 2014-02-28 11:41:23 -0500 | [diff] [blame] | 1681 | /* |
| 1682 | * This list contains only: |
| 1683 | * - VID/PID of products not working with the default multitouch handling |
| 1684 | * - 2 generic rules. |
| 1685 | * So there is no point in adding here any device with MT_CLS_DEFAULT. |
| 1686 | */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1687 | static const struct hid_device_id mt_devices[] = { |
| 1688 | |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 1689 | /* 3M panels */ |
| 1690 | { .driver_data = MT_CLS_3M, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1691 | MT_USB_DEVICE(USB_VENDOR_ID_3M, |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 1692 | USB_DEVICE_ID_3M1968) }, |
| 1693 | { .driver_data = MT_CLS_3M, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1694 | MT_USB_DEVICE(USB_VENDOR_ID_3M, |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 1695 | USB_DEVICE_ID_3M2256) }, |
Benjamin Tissoires | c4fad87 | 2011-12-23 15:41:00 +0100 | [diff] [blame] | 1696 | { .driver_data = MT_CLS_3M, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1697 | MT_USB_DEVICE(USB_VENDOR_ID_3M, |
Benjamin Tissoires | c4fad87 | 2011-12-23 15:41:00 +0100 | [diff] [blame] | 1698 | USB_DEVICE_ID_3M3266) }, |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 1699 | |
Masaki Ota | 504c932 | 2017-06-16 09:29:39 +0900 | [diff] [blame] | 1700 | /* Alps devices */ |
| 1701 | { .driver_data = MT_CLS_WIN_8_DUAL, |
| 1702 | HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, |
| 1703 | USB_VENDOR_ID_ALPS_JP, |
| 1704 | HID_DEVICE_ID_ALPS_U1_DUAL_PTP) }, |
| 1705 | { .driver_data = MT_CLS_WIN_8_DUAL, |
| 1706 | HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, |
| 1707 | USB_VENDOR_ID_ALPS_JP, |
| 1708 | HID_DEVICE_ID_ALPS_U1_DUAL_3BTN_PTP) }, |
| 1709 | |
Pavel Tatashin | 56d859e | 2017-08-25 18:06:04 -0400 | [diff] [blame] | 1710 | /* Lenovo X1 TAB Gen 2 */ |
| 1711 | { .driver_data = MT_CLS_WIN_8_DUAL, |
| 1712 | HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH_WIN_8, |
| 1713 | USB_VENDOR_ID_LENOVO, |
| 1714 | USB_DEVICE_ID_LENOVO_X1_TAB) }, |
| 1715 | |
Benjamin Tissoires | 6aef704 | 2014-02-28 11:41:25 -0500 | [diff] [blame] | 1716 | /* Anton devices */ |
| 1717 | { .driver_data = MT_CLS_EXPORT_ALL_INPUTS, |
| 1718 | MT_USB_DEVICE(USB_VENDOR_ID_ANTON, |
| 1719 | USB_DEVICE_ID_ANTON_TOUCH_PAD) }, |
Benjamin Tissoires | e6aac34 | 2011-05-19 14:18:13 +0200 | [diff] [blame] | 1720 | |
João Paulo Rechi Vita | 957b8df | 2017-07-24 14:22:25 -0700 | [diff] [blame] | 1721 | /* Asus T304UA */ |
| 1722 | { .driver_data = MT_CLS_ASUS, |
| 1723 | HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH_WIN_8, |
| 1724 | USB_VENDOR_ID_ASUSTEK, |
| 1725 | USB_DEVICE_ID_ASUSTEK_T304_KEYBOARD) }, |
| 1726 | |
Benjamin Tissoires | b105712 | 2011-12-23 15:40:59 +0100 | [diff] [blame] | 1727 | /* Atmel panels */ |
| 1728 | { .driver_data = MT_CLS_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1729 | MT_USB_DEVICE(USB_VENDOR_ID_ATMEL, |
Benjamin Tissoires | 841cb15 | 2012-03-06 10:53:45 +0100 | [diff] [blame] | 1730 | USB_DEVICE_ID_ATMEL_MXT_DIGITIZER) }, |
Benjamin Tissoires | b105712 | 2011-12-23 15:40:59 +0100 | [diff] [blame] | 1731 | |
Jiri Kosina | 9ed3269 | 2012-04-20 12:15:44 +0200 | [diff] [blame] | 1732 | /* Baanto multitouch devices */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1733 | { .driver_data = MT_CLS_NSMU, |
Jiri Kosina | 16b79bb | 2012-05-05 23:32:54 +0200 | [diff] [blame] | 1734 | MT_USB_DEVICE(USB_VENDOR_ID_BAANTO, |
Jiri Kosina | 9ed3269 | 2012-04-20 12:15:44 +0200 | [diff] [blame] | 1735 | USB_DEVICE_ID_BAANTO_MT_190W2) }, |
Benjamin Tissoires | 0fa9c61 | 2014-02-28 11:41:23 -0500 | [diff] [blame] | 1736 | |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 1737 | /* Cando panels */ |
| 1738 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1739 | MT_USB_DEVICE(USB_VENDOR_ID_CANDO, |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 1740 | USB_DEVICE_ID_CANDO_MULTI_TOUCH) }, |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 1741 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1742 | MT_USB_DEVICE(USB_VENDOR_ID_CANDO, |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 1743 | USB_DEVICE_ID_CANDO_MULTI_TOUCH_15_6) }, |
| 1744 | |
Austin Zhang | 942fd42 | 2011-05-28 02:03:47 +0800 | [diff] [blame] | 1745 | /* Chunghwa Telecom touch panels */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1746 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1747 | MT_USB_DEVICE(USB_VENDOR_ID_CHUNGHWAT, |
Austin Zhang | 942fd42 | 2011-05-28 02:03:47 +0800 | [diff] [blame] | 1748 | USB_DEVICE_ID_CHUNGHWAT_MULTITOUCH) }, |
| 1749 | |
Yang Bo | 070f63b | 2015-07-20 09:40:28 -0700 | [diff] [blame] | 1750 | /* CJTouch panels */ |
| 1751 | { .driver_data = MT_CLS_NSMU, |
| 1752 | MT_USB_DEVICE(USB_VENDOR_ID_CJTOUCH, |
| 1753 | USB_DEVICE_ID_CJTOUCH_MULTI_TOUCH_0020) }, |
| 1754 | { .driver_data = MT_CLS_NSMU, |
| 1755 | MT_USB_DEVICE(USB_VENDOR_ID_CJTOUCH, |
| 1756 | USB_DEVICE_ID_CJTOUCH_MULTI_TOUCH_0040) }, |
| 1757 | |
Benjamin Tissoires | 79603dc | 2011-05-19 14:18:14 +0200 | [diff] [blame] | 1758 | /* CVTouch panels */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1759 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1760 | MT_USB_DEVICE(USB_VENDOR_ID_CVTOUCH, |
Benjamin Tissoires | 79603dc | 2011-05-19 14:18:14 +0200 | [diff] [blame] | 1761 | USB_DEVICE_ID_CVTOUCH_SCREEN) }, |
| 1762 | |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 1763 | /* eGalax devices (resistive) */ |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 1764 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1765 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 1766 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480D) }, |
| 1767 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1768 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 1769 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480E) }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 1770 | |
| 1771 | /* eGalax devices (capacitive) */ |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 1772 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1773 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 1774 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7207) }, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 1775 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1776 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 1777 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_720C) }, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 1778 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1779 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 1780 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7224) }, |
Benjamin Tissoires | 2ce09df | 2012-03-06 17:57:02 +0100 | [diff] [blame] | 1781 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1782 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | 2ce09df | 2012-03-06 17:57:02 +0100 | [diff] [blame] | 1783 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_722A) }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 1784 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1785 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 1786 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_725E) }, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 1787 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1788 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 1789 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7262) }, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 1790 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1791 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 1792 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_726B) }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 1793 | { .driver_data = MT_CLS_EGALAX, |
| 1794 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 1795 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72A1) }, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 1796 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1797 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 1798 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72AA) }, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 1799 | { .driver_data = MT_CLS_EGALAX, |
Andy Shevchenko | aa672da | 2013-05-17 14:34:48 +0300 | [diff] [blame] | 1800 | HID_USB_DEVICE(USB_VENDOR_ID_DWAV, |
| 1801 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72C4) }, |
| 1802 | { .driver_data = MT_CLS_EGALAX, |
| 1803 | HID_USB_DEVICE(USB_VENDOR_ID_DWAV, |
| 1804 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72D0) }, |
| 1805 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1806 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | 66f0612 | 2011-11-23 10:54:33 +0100 | [diff] [blame] | 1807 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72FA) }, |
| 1808 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1809 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Marek Vasut | bb9ff21 | 2011-11-23 10:54:32 +0100 | [diff] [blame] | 1810 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7302) }, |
Benjamin Tissoires | 1b723e8 | 2011-11-23 10:54:34 +0100 | [diff] [blame] | 1811 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1812 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 1813 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7349) }, |
| 1814 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1815 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Thierry Reding | ae01c9e | 2012-08-09 08:34:48 +0200 | [diff] [blame] | 1816 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_73F7) }, |
| 1817 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
| 1818 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 1819 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_A001) }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 1820 | |
Tomas Sokorai | 7c7606a | 2014-04-23 10:42:41 -0400 | [diff] [blame] | 1821 | /* Elitegroup panel */ |
| 1822 | { .driver_data = MT_CLS_SERIAL, |
| 1823 | MT_USB_DEVICE(USB_VENDOR_ID_ELITEGROUP, |
| 1824 | USB_DEVICE_ID_ELITEGROUP_05D8) }, |
| 1825 | |
Henrik Rydberg | 77723e3 | 2012-09-07 19:37:40 +0200 | [diff] [blame] | 1826 | /* Flatfrog Panels */ |
| 1827 | { .driver_data = MT_CLS_FLATFROG, |
| 1828 | MT_USB_DEVICE(USB_VENDOR_ID_FLATFROG, |
| 1829 | USB_DEVICE_ID_MULTITOUCH_3200) }, |
| 1830 | |
Benjamin Tissoires | 3db187e | 2014-01-23 16:33:14 -0500 | [diff] [blame] | 1831 | /* FocalTech Panels */ |
| 1832 | { .driver_data = MT_CLS_SERIAL, |
| 1833 | MT_USB_DEVICE(USB_VENDOR_ID_CYGNAL, |
| 1834 | USB_DEVICE_ID_FOCALTECH_FTXXXX_MULTITOUCH) }, |
| 1835 | |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 1836 | /* GeneralTouch panel */ |
Xianhan Yu | f5ff4e1 | 2012-09-28 10:18:59 +0800 | [diff] [blame] | 1837 | { .driver_data = MT_CLS_GENERALTOUCH_TWOFINGERS, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1838 | MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 1839 | USB_DEVICE_ID_GENERAL_TOUCH_WIN7_TWOFINGERS) }, |
Xianhan Yu | f5ff4e1 | 2012-09-28 10:18:59 +0800 | [diff] [blame] | 1840 | { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS, |
| 1841 | MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, |
| 1842 | USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PWT_TENFINGERS) }, |
Luosong | 7b22629 | 2013-10-02 11:20:00 +0200 | [diff] [blame] | 1843 | { .driver_data = MT_CLS_GENERALTOUCH_TWOFINGERS, |
| 1844 | MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, |
| 1845 | USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0101) }, |
| 1846 | { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS, |
| 1847 | MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, |
| 1848 | USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0102) }, |
| 1849 | { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS, |
| 1850 | MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, |
| 1851 | USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_0106) }, |
| 1852 | { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS, |
| 1853 | MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, |
| 1854 | USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_010A) }, |
| 1855 | { .driver_data = MT_CLS_GENERALTOUCH_PWT_TENFINGERS, |
| 1856 | MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, |
| 1857 | USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_E100) }, |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 1858 | |
Andreas Nielsen | 4d5df5d | 2012-03-19 15:41:03 +0100 | [diff] [blame] | 1859 | /* Gametel game controller */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1860 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1861 | MT_BT_DEVICE(USB_VENDOR_ID_FRUCTEL, |
Andreas Nielsen | 4d5df5d | 2012-03-19 15:41:03 +0100 | [diff] [blame] | 1862 | USB_DEVICE_ID_GAMETEL_MT_MODE) }, |
| 1863 | |
Benjamin Tissoires | ee0fbd1 | 2011-05-19 14:18:15 +0200 | [diff] [blame] | 1864 | /* GoodTouch panels */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1865 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1866 | MT_USB_DEVICE(USB_VENDOR_ID_GOODTOUCH, |
Benjamin Tissoires | ee0fbd1 | 2011-05-19 14:18:15 +0200 | [diff] [blame] | 1867 | USB_DEVICE_ID_GOODTOUCH_000f) }, |
| 1868 | |
Benjamin Tissoires | 5458036 | 2011-11-29 13:13:12 +0100 | [diff] [blame] | 1869 | /* Hanvon panels */ |
| 1870 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1871 | MT_USB_DEVICE(USB_VENDOR_ID_HANVON_ALT, |
Benjamin Tissoires | 5458036 | 2011-11-29 13:13:12 +0100 | [diff] [blame] | 1872 | USB_DEVICE_ID_HANVON_ALT_MULTITOUCH) }, |
| 1873 | |
Austin Zhang | 4e61f0d | 2011-05-09 23:54:14 +0800 | [diff] [blame] | 1874 | /* Ilitek dual touch panel */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1875 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1876 | MT_USB_DEVICE(USB_VENDOR_ID_ILITEK, |
Austin Zhang | 4e61f0d | 2011-05-09 23:54:14 +0800 | [diff] [blame] | 1877 | USB_DEVICE_ID_ILITEK_MULTITOUCH) }, |
| 1878 | |
Benjamin Tissoires | f3287a9 | 2017-01-30 10:48:06 +0100 | [diff] [blame] | 1879 | /* LG Melfas panel */ |
| 1880 | { .driver_data = MT_CLS_LG, |
| 1881 | HID_USB_DEVICE(USB_VENDOR_ID_LG, |
| 1882 | USB_DEVICE_ID_LG_MELFAS_MT) }, |
| 1883 | |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 1884 | /* MosArt panels */ |
| 1885 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1886 | MT_USB_DEVICE(USB_VENDOR_ID_ASUS, |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 1887 | USB_DEVICE_ID_ASUS_T91MT)}, |
| 1888 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1889 | MT_USB_DEVICE(USB_VENDOR_ID_ASUS, |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 1890 | USB_DEVICE_ID_ASUSTEK_MULTITOUCH_YFO) }, |
| 1891 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1892 | MT_USB_DEVICE(USB_VENDOR_ID_TURBOX, |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 1893 | USB_DEVICE_ID_TURBOX_TOUCHSCREEN_MOSART) }, |
| 1894 | |
Austin Hendrix | 4db703e | 2012-06-04 15:27:51 -0700 | [diff] [blame] | 1895 | /* Novatek Panel */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1896 | { .driver_data = MT_CLS_NSMU, |
Jiri Kosina | 4380d81 | 2012-06-06 16:28:33 +0200 | [diff] [blame] | 1897 | MT_USB_DEVICE(USB_VENDOR_ID_NOVATEK, |
Austin Hendrix | 4db703e | 2012-06-04 15:27:51 -0700 | [diff] [blame] | 1898 | USB_DEVICE_ID_NOVATEK_PCT) }, |
| 1899 | |
Benjamin Tissoires | a80e803 | 2016-05-31 17:31:15 +0200 | [diff] [blame] | 1900 | /* Ntrig Panel */ |
| 1901 | { .driver_data = MT_CLS_NSMU, |
| 1902 | HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, |
| 1903 | USB_VENDOR_ID_NTRIG, 0x1b05) }, |
| 1904 | |
Hans de Goede | fb55b40 | 2017-11-22 12:57:07 +0100 | [diff] [blame] | 1905 | /* Panasonic panels */ |
| 1906 | { .driver_data = MT_CLS_PANASONIC, |
| 1907 | MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC, |
| 1908 | USB_DEVICE_ID_PANABOARD_UBT780) }, |
| 1909 | { .driver_data = MT_CLS_PANASONIC, |
| 1910 | MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC, |
| 1911 | USB_DEVICE_ID_PANABOARD_UBT880) }, |
| 1912 | |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 1913 | /* PixArt optical touch screen */ |
| 1914 | { .driver_data = MT_CLS_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1915 | MT_USB_DEVICE(USB_VENDOR_ID_PIXART, |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 1916 | USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN) }, |
| 1917 | { .driver_data = MT_CLS_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1918 | MT_USB_DEVICE(USB_VENDOR_ID_PIXART, |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 1919 | USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN1) }, |
| 1920 | { .driver_data = MT_CLS_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1921 | MT_USB_DEVICE(USB_VENDOR_ID_PIXART, |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 1922 | USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN2) }, |
| 1923 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1924 | /* PixCir-based panels */ |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 1925 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1926 | MT_USB_DEVICE(USB_VENDOR_ID_CANDO, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1927 | USB_DEVICE_ID_CANDO_PIXCIR_MULTI_TOUCH) }, |
| 1928 | |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 1929 | /* Quanta-based panels */ |
| 1930 | { .driver_data = MT_CLS_CONFIDENCE_CONTACT_ID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1931 | MT_USB_DEVICE(USB_VENDOR_ID_QUANTA, |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 1932 | USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3001) }, |
Forest Bond | a6802e0 | 2013-10-21 12:38:49 -0400 | [diff] [blame] | 1933 | |
Benjamin Tissoires | 843e475 | 2018-03-20 12:04:46 +0100 | [diff] [blame] | 1934 | /* Razer touchpads */ |
| 1935 | { .driver_data = MT_CLS_RAZER_BLADE_STEALTH, |
| 1936 | HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, |
| 1937 | USB_VENDOR_ID_SYNAPTICS, 0x8323) }, |
| 1938 | |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 1939 | /* Stantum panels */ |
Benjamin Tissoires | bf5af9b | 2011-05-19 14:18:18 +0200 | [diff] [blame] | 1940 | { .driver_data = MT_CLS_CONFIDENCE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1941 | MT_USB_DEVICE(USB_VENDOR_ID_STANTUM_STM, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 1942 | USB_DEVICE_ID_MTP_STM)}, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 1943 | |
Benjamin Tissoires | 847672c | 2012-02-04 17:08:50 +0100 | [diff] [blame] | 1944 | /* TopSeed panels */ |
| 1945 | { .driver_data = MT_CLS_TOPSEED, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1946 | MT_USB_DEVICE(USB_VENDOR_ID_TOPSEED2, |
Benjamin Tissoires | 847672c | 2012-02-04 17:08:50 +0100 | [diff] [blame] | 1947 | USB_DEVICE_ID_TOPSEED2_PERIPAD_701) }, |
| 1948 | |
Benjamin Tissoires | 5e74e56 | 2011-05-19 14:18:16 +0200 | [diff] [blame] | 1949 | /* Touch International panels */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1950 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1951 | MT_USB_DEVICE(USB_VENDOR_ID_TOUCH_INTL, |
Benjamin Tissoires | 5e74e56 | 2011-05-19 14:18:16 +0200 | [diff] [blame] | 1952 | USB_DEVICE_ID_TOUCH_INTL_MULTI_TOUCH) }, |
| 1953 | |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 1954 | /* Unitec panels */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1955 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1956 | MT_USB_DEVICE(USB_VENDOR_ID_UNITEC, |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 1957 | USB_DEVICE_ID_UNITEC_USB_TOUCH_0709) }, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1958 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1959 | MT_USB_DEVICE(USB_VENDOR_ID_UNITEC, |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 1960 | USB_DEVICE_ID_UNITEC_USB_TOUCH_0A19) }, |
KaiChung Cheng | bf9d121 | 2013-11-21 10:04:30 +0100 | [diff] [blame] | 1961 | |
Mathieu Magnaudet | da10bc2 | 2014-11-22 12:02:07 +0100 | [diff] [blame] | 1962 | /* VTL panels */ |
| 1963 | { .driver_data = MT_CLS_VTL, |
| 1964 | MT_USB_DEVICE(USB_VENDOR_ID_VTL, |
| 1965 | USB_DEVICE_ID_VTL_MULTITOUCH_FF3F) }, |
| 1966 | |
KaiChung Cheng | bf9d121 | 2013-11-21 10:04:30 +0100 | [diff] [blame] | 1967 | /* Wistron panels */ |
| 1968 | { .driver_data = MT_CLS_NSMU, |
| 1969 | MT_USB_DEVICE(USB_VENDOR_ID_WISTRON, |
| 1970 | USB_DEVICE_ID_WISTRON_OPTICAL_TOUCH) }, |
| 1971 | |
ice chien | bc8a2a9 | 2011-07-15 16:58:06 +0800 | [diff] [blame] | 1972 | /* XAT */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1973 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1974 | MT_USB_DEVICE(USB_VENDOR_ID_XAT, |
ice chien | bc8a2a9 | 2011-07-15 16:58:06 +0800 | [diff] [blame] | 1975 | USB_DEVICE_ID_XAT_CSR) }, |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 1976 | |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1977 | /* Xiroku */ |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1978 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1979 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1980 | USB_DEVICE_ID_XIROKU_SPX) }, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1981 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1982 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1983 | USB_DEVICE_ID_XIROKU_MPX) }, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1984 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1985 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1986 | USB_DEVICE_ID_XIROKU_CSR) }, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1987 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1988 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1989 | USB_DEVICE_ID_XIROKU_SPX1) }, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1990 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1991 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1992 | USB_DEVICE_ID_XIROKU_MPX1) }, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1993 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1994 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1995 | USB_DEVICE_ID_XIROKU_CSR1) }, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1996 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1997 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1998 | USB_DEVICE_ID_XIROKU_SPX2) }, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 1999 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 2000 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 2001 | USB_DEVICE_ID_XIROKU_MPX2) }, |
Benjamin Tissoires | dc3e1d8 | 2013-01-31 17:22:31 +0100 | [diff] [blame] | 2002 | { .driver_data = MT_CLS_NSMU, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 2003 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 2004 | USB_DEVICE_ID_XIROKU_CSR2) }, |
| 2005 | |
Wei-Ning Huang | 0e82232 | 2017-06-21 10:43:25 +0800 | [diff] [blame] | 2006 | /* Google MT devices */ |
| 2007 | { .driver_data = MT_CLS_GOOGLE, |
| 2008 | HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_GOOGLE, |
| 2009 | USB_DEVICE_ID_GOOGLE_TOUCH_ROSE) }, |
| 2010 | |
Henrik Rydberg | 4fa3a58 | 2012-05-01 08:40:01 +0200 | [diff] [blame] | 2011 | /* Generic MT device */ |
| 2012 | { HID_DEVICE(HID_BUS_ANY, HID_GROUP_MULTITOUCH, HID_ANY_ID, HID_ANY_ID) }, |
Benjamin Tissoires | f961bd3 | 2013-08-22 14:51:08 +0200 | [diff] [blame] | 2013 | |
| 2014 | /* Generic Win 8 certified MT device */ |
| 2015 | { .driver_data = MT_CLS_WIN_8, |
| 2016 | HID_DEVICE(HID_BUS_ANY, HID_GROUP_MULTITOUCH_WIN_8, |
| 2017 | HID_ANY_ID, HID_ANY_ID) }, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 2018 | { } |
| 2019 | }; |
| 2020 | MODULE_DEVICE_TABLE(hid, mt_devices); |
| 2021 | |
| 2022 | static const struct hid_usage_id mt_grabbed_usages[] = { |
| 2023 | { HID_ANY_ID, HID_ANY_ID, HID_ANY_ID }, |
| 2024 | { HID_ANY_ID - 1, HID_ANY_ID - 1, HID_ANY_ID - 1} |
| 2025 | }; |
| 2026 | |
| 2027 | static struct hid_driver mt_driver = { |
| 2028 | .name = "hid-multitouch", |
| 2029 | .id_table = mt_devices, |
| 2030 | .probe = mt_probe, |
| 2031 | .remove = mt_remove, |
| 2032 | .input_mapping = mt_input_mapping, |
| 2033 | .input_mapped = mt_input_mapped, |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame] | 2034 | .input_configured = mt_input_configured, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 2035 | .feature_mapping = mt_feature_mapping, |
| 2036 | .usage_table = mt_grabbed_usages, |
| 2037 | .event = mt_event, |
Benjamin Tissoires | 55978fa | 2013-01-31 17:22:24 +0100 | [diff] [blame] | 2038 | .report = mt_report, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 2039 | #ifdef CONFIG_PM |
| 2040 | .reset_resume = mt_reset_resume, |
Scott Liu | dfeefd1 | 2012-08-15 17:21:55 +0800 | [diff] [blame] | 2041 | .resume = mt_resume, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 2042 | #endif |
| 2043 | }; |
H Hartley Sweeten | f425458 | 2012-12-17 15:28:26 -0700 | [diff] [blame] | 2044 | module_hid_driver(mt_driver); |