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> |
| 5 | * Copyright (c) 2010-2012 Benjamin Tissoires <benjamin.tissoires@gmail.com> |
| 6 | * Copyright (c) 2010-2012 Ecole Nationale de l'Aviation Civile, France |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 7 | * |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 8 | * This code is partly based on hid-egalax.c: |
| 9 | * |
| 10 | * Copyright (c) 2010 Stephane Chatty <chatty@enac.fr> |
| 11 | * Copyright (c) 2010 Henrik Rydberg <rydberg@euromail.se> |
| 12 | * Copyright (c) 2010 Canonical, Ltd. |
| 13 | * |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 14 | * This code is partly based on hid-3m-pct.c: |
| 15 | * |
| 16 | * Copyright (c) 2009-2010 Stephane Chatty <chatty@enac.fr> |
| 17 | * Copyright (c) 2010 Henrik Rydberg <rydberg@euromail.se> |
| 18 | * Copyright (c) 2010 Canonical, Ltd. |
| 19 | * |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * This program is free software; you can redistribute it and/or modify it |
| 24 | * under the terms of the GNU General Public License as published by the Free |
| 25 | * Software Foundation; either version 2 of the License, or (at your option) |
| 26 | * any later version. |
| 27 | */ |
| 28 | |
| 29 | #include <linux/device.h> |
| 30 | #include <linux/hid.h> |
| 31 | #include <linux/module.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <linux/usb.h> |
| 34 | #include <linux/input/mt.h> |
| 35 | #include "usbhid/usbhid.h" |
| 36 | |
| 37 | |
| 38 | MODULE_AUTHOR("Stephane Chatty <chatty@enac.fr>"); |
Benjamin Tissoires | ef2fafb | 2011-01-31 11:28:21 +0100 | [diff] [blame] | 39 | MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>"); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 40 | MODULE_DESCRIPTION("HID multitouch panels"); |
| 41 | MODULE_LICENSE("GPL"); |
| 42 | |
| 43 | #include "hid-ids.h" |
| 44 | |
| 45 | /* quirks to control the device */ |
| 46 | #define MT_QUIRK_NOT_SEEN_MEANS_UP (1 << 0) |
| 47 | #define MT_QUIRK_SLOT_IS_CONTACTID (1 << 1) |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 48 | #define MT_QUIRK_CYPRESS (1 << 2) |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 49 | #define MT_QUIRK_SLOT_IS_CONTACTNUMBER (1 << 3) |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 50 | #define MT_QUIRK_ALWAYS_VALID (1 << 4) |
| 51 | #define MT_QUIRK_VALID_IS_INRANGE (1 << 5) |
| 52 | #define MT_QUIRK_VALID_IS_CONFIDENCE (1 << 6) |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 53 | #define MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE (1 << 8) |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 54 | |
| 55 | struct mt_slot { |
| 56 | __s32 x, y, p, w, h; |
| 57 | __s32 contactid; /* the device ContactID assigned to this slot */ |
| 58 | bool touch_state; /* is the touch valid? */ |
| 59 | bool seen_in_this_frame;/* has this slot been updated */ |
| 60 | }; |
| 61 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 62 | struct mt_class { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 63 | __s32 name; /* MT_CLS */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 64 | __s32 quirks; |
| 65 | __s32 sn_move; /* Signal/noise ratio for move events */ |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 66 | __s32 sn_width; /* Signal/noise ratio for width events */ |
| 67 | __s32 sn_height; /* Signal/noise ratio for height events */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 68 | __s32 sn_pressure; /* Signal/noise ratio for pressure events */ |
| 69 | __u8 maxcontacts; |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 70 | bool is_indirect; /* true for touchpads */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 71 | }; |
| 72 | |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 73 | struct mt_fields { |
| 74 | unsigned usages[HID_MAX_FIELDS]; |
| 75 | unsigned int length; |
| 76 | }; |
| 77 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 78 | struct mt_device { |
| 79 | struct mt_slot curdata; /* placeholder of incoming data */ |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 80 | struct mt_class mtclass; /* our mt device class */ |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 81 | struct mt_fields *fields; /* temporary placeholder for storing the |
| 82 | multitouch fields */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 83 | unsigned last_field_index; /* last field index of the report */ |
| 84 | unsigned last_slot_field; /* the last field of a slot */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 85 | __s8 inputmode; /* InputMode HID feature, -1 if non-existent */ |
Benjamin Tissoires | 4aceed3 | 2012-06-19 14:39:52 +0200 | [diff] [blame] | 86 | __s8 inputmode_index; /* InputMode HID feature index in the report */ |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 87 | __s8 maxcontact_report_id; /* Maximum Contact Number HID feature, |
| 88 | -1 if non-existent */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 89 | __u8 num_received; /* how many contacts we received */ |
| 90 | __u8 num_expected; /* expected last contact index */ |
| 91 | __u8 maxcontacts; |
Benjamin Tissoires | 9e87f22 | 2012-03-06 17:57:06 +0100 | [diff] [blame] | 92 | __u8 touches_by_report; /* how many touches are present in one report: |
| 93 | * 1 means we should use a serial protocol |
| 94 | * > 1 means hybrid (multitouch) protocol */ |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame^] | 95 | bool serial_maybe; /* need to check for serial protocol */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 96 | bool curvalid; /* is the current contact valid? */ |
| 97 | struct mt_slot *slots; |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame^] | 98 | unsigned mt_flags; /* flags to pass to input-mt */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 99 | }; |
| 100 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 101 | /* classes of device behavior */ |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 102 | #define MT_CLS_DEFAULT 0x0001 |
| 103 | |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 104 | #define MT_CLS_SERIAL 0x0002 |
| 105 | #define MT_CLS_CONFIDENCE 0x0003 |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 106 | #define MT_CLS_CONFIDENCE_CONTACT_ID 0x0004 |
| 107 | #define MT_CLS_CONFIDENCE_MINUS_ONE 0x0005 |
| 108 | #define MT_CLS_DUAL_INRANGE_CONTACTID 0x0006 |
| 109 | #define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0007 |
| 110 | #define MT_CLS_DUAL_NSMU_CONTACTID 0x0008 |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 111 | #define MT_CLS_INRANGE_CONTACTNUMBER 0x0009 |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 112 | |
| 113 | /* vendor specific classes */ |
| 114 | #define MT_CLS_3M 0x0101 |
| 115 | #define MT_CLS_CYPRESS 0x0102 |
| 116 | #define MT_CLS_EGALAX 0x0103 |
Benjamin Tissoires | 1b723e8 | 2011-11-23 10:54:34 +0100 | [diff] [blame] | 117 | #define MT_CLS_EGALAX_SERIAL 0x0104 |
Benjamin Tissoires | 847672c | 2012-02-04 17:08:50 +0100 | [diff] [blame] | 118 | #define MT_CLS_TOPSEED 0x0105 |
Denis Kovalev | 2258e86 | 2012-02-14 00:50:33 -0800 | [diff] [blame] | 119 | #define MT_CLS_PANASONIC 0x0106 |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 120 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 121 | #define MT_DEFAULT_MAXCONTACT 10 |
| 122 | |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 123 | #define MT_USB_DEVICE(v, p) HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH, v, p) |
| 124 | #define MT_BT_DEVICE(v, p) HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_MULTITOUCH, v, p) |
| 125 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 126 | /* |
| 127 | * these device-dependent functions determine what slot corresponds |
| 128 | * to a valid contact that was just read. |
| 129 | */ |
| 130 | |
Benjamin Tissoires | a3b5e57 | 2011-01-07 23:46:30 +0100 | [diff] [blame] | 131 | static int cypress_compute_slot(struct mt_device *td) |
| 132 | { |
| 133 | if (td->curdata.contactid != 0 || td->num_received == 0) |
| 134 | return td->curdata.contactid; |
| 135 | else |
| 136 | return -1; |
| 137 | } |
| 138 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 139 | static int find_slot_from_contactid(struct mt_device *td) |
| 140 | { |
| 141 | int i; |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 142 | for (i = 0; i < td->maxcontacts; ++i) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 143 | if (td->slots[i].contactid == td->curdata.contactid && |
| 144 | td->slots[i].touch_state) |
| 145 | return i; |
| 146 | } |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 147 | for (i = 0; i < td->maxcontacts; ++i) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 148 | if (!td->slots[i].seen_in_this_frame && |
| 149 | !td->slots[i].touch_state) |
| 150 | return i; |
| 151 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 152 | /* should not occurs. If this happens that means |
| 153 | * that the device sent more touches that it says |
| 154 | * in the report descriptor. It is ignored then. */ |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 155 | return -1; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 156 | } |
| 157 | |
Jiri Kosina | b3c21d2 | 2011-11-22 23:23:37 +0100 | [diff] [blame] | 158 | static struct mt_class mt_classes[] = { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 159 | { .name = MT_CLS_DEFAULT, |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 160 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP }, |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 161 | { .name = MT_CLS_SERIAL, |
| 162 | .quirks = MT_QUIRK_ALWAYS_VALID}, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 163 | { .name = MT_CLS_CONFIDENCE, |
| 164 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE }, |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 165 | { .name = MT_CLS_CONFIDENCE_CONTACT_ID, |
| 166 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | |
| 167 | MT_QUIRK_SLOT_IS_CONTACTID }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 168 | { .name = MT_CLS_CONFIDENCE_MINUS_ONE, |
| 169 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | |
| 170 | MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE }, |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 171 | { .name = MT_CLS_DUAL_INRANGE_CONTACTID, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 172 | .quirks = MT_QUIRK_VALID_IS_INRANGE | |
| 173 | MT_QUIRK_SLOT_IS_CONTACTID, |
| 174 | .maxcontacts = 2 }, |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 175 | { .name = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 176 | .quirks = MT_QUIRK_VALID_IS_INRANGE | |
| 177 | MT_QUIRK_SLOT_IS_CONTACTNUMBER, |
| 178 | .maxcontacts = 2 }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 179 | { .name = MT_CLS_DUAL_NSMU_CONTACTID, |
| 180 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP | |
| 181 | MT_QUIRK_SLOT_IS_CONTACTID, |
| 182 | .maxcontacts = 2 }, |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 183 | { .name = MT_CLS_INRANGE_CONTACTNUMBER, |
| 184 | .quirks = MT_QUIRK_VALID_IS_INRANGE | |
| 185 | MT_QUIRK_SLOT_IS_CONTACTNUMBER }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 186 | |
| 187 | /* |
| 188 | * vendor specific classes |
| 189 | */ |
| 190 | { .name = MT_CLS_3M, |
| 191 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | |
| 192 | MT_QUIRK_SLOT_IS_CONTACTID, |
| 193 | .sn_move = 2048, |
| 194 | .sn_width = 128, |
| 195 | .sn_height = 128 }, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 196 | { .name = MT_CLS_CYPRESS, |
| 197 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP | |
| 198 | MT_QUIRK_CYPRESS, |
| 199 | .maxcontacts = 10 }, |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 200 | { .name = MT_CLS_EGALAX, |
| 201 | .quirks = MT_QUIRK_SLOT_IS_CONTACTID | |
Benjamin Tissoires | 2261bb9 | 2011-11-23 10:54:29 +0100 | [diff] [blame] | 202 | MT_QUIRK_VALID_IS_INRANGE, |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 203 | .sn_move = 4096, |
| 204 | .sn_pressure = 32, |
| 205 | }, |
Benjamin Tissoires | 1b723e8 | 2011-11-23 10:54:34 +0100 | [diff] [blame] | 206 | { .name = MT_CLS_EGALAX_SERIAL, |
| 207 | .quirks = MT_QUIRK_SLOT_IS_CONTACTID | |
| 208 | MT_QUIRK_ALWAYS_VALID, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 209 | .sn_move = 4096, |
| 210 | .sn_pressure = 32, |
| 211 | }, |
Benjamin Tissoires | 847672c | 2012-02-04 17:08:50 +0100 | [diff] [blame] | 212 | { .name = MT_CLS_TOPSEED, |
| 213 | .quirks = MT_QUIRK_ALWAYS_VALID, |
| 214 | .is_indirect = true, |
| 215 | .maxcontacts = 2, |
| 216 | }, |
Denis Kovalev | 2258e86 | 2012-02-14 00:50:33 -0800 | [diff] [blame] | 217 | { .name = MT_CLS_PANASONIC, |
| 218 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP, |
| 219 | .maxcontacts = 4 }, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 220 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 221 | { } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 222 | }; |
| 223 | |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 224 | static ssize_t mt_show_quirks(struct device *dev, |
| 225 | struct device_attribute *attr, |
| 226 | char *buf) |
| 227 | { |
| 228 | struct hid_device *hdev = container_of(dev, struct hid_device, dev); |
| 229 | struct mt_device *td = hid_get_drvdata(hdev); |
| 230 | |
| 231 | return sprintf(buf, "%u\n", td->mtclass.quirks); |
| 232 | } |
| 233 | |
| 234 | static ssize_t mt_set_quirks(struct device *dev, |
| 235 | struct device_attribute *attr, |
| 236 | const char *buf, size_t count) |
| 237 | { |
| 238 | struct hid_device *hdev = container_of(dev, struct hid_device, dev); |
| 239 | struct mt_device *td = hid_get_drvdata(hdev); |
| 240 | |
| 241 | unsigned long val; |
| 242 | |
| 243 | if (kstrtoul(buf, 0, &val)) |
| 244 | return -EINVAL; |
| 245 | |
| 246 | td->mtclass.quirks = val; |
| 247 | |
| 248 | return count; |
| 249 | } |
| 250 | |
| 251 | static DEVICE_ATTR(quirks, S_IWUSR | S_IRUGO, mt_show_quirks, mt_set_quirks); |
| 252 | |
| 253 | static struct attribute *sysfs_attrs[] = { |
| 254 | &dev_attr_quirks.attr, |
| 255 | NULL |
| 256 | }; |
| 257 | |
| 258 | static struct attribute_group mt_attribute_group = { |
| 259 | .attrs = sysfs_attrs |
| 260 | }; |
| 261 | |
Henrik Rydberg | f635bd1 | 2011-02-24 19:30:59 +0100 | [diff] [blame] | 262 | static void mt_feature_mapping(struct hid_device *hdev, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 263 | struct hid_field *field, struct hid_usage *usage) |
| 264 | { |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 265 | struct mt_device *td = hid_get_drvdata(hdev); |
Benjamin Tissoires | 4aceed3 | 2012-06-19 14:39:52 +0200 | [diff] [blame] | 266 | int i; |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 267 | |
| 268 | switch (usage->hid) { |
| 269 | case HID_DG_INPUTMODE: |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 270 | td->inputmode = field->report->id; |
Benjamin Tissoires | 4aceed3 | 2012-06-19 14:39:52 +0200 | [diff] [blame] | 271 | td->inputmode_index = 0; /* has to be updated below */ |
| 272 | |
| 273 | for (i=0; i < field->maxusage; i++) { |
| 274 | if (field->usage[i].hid == usage->hid) { |
| 275 | td->inputmode_index = i; |
| 276 | break; |
| 277 | } |
| 278 | } |
| 279 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 280 | break; |
| 281 | case HID_DG_CONTACTMAX: |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 282 | td->maxcontact_report_id = field->report->id; |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 283 | td->maxcontacts = field->value[0]; |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 284 | if (td->mtclass.maxcontacts) |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 285 | /* check if the maxcontacts is given by the class */ |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 286 | td->maxcontacts = td->mtclass.maxcontacts; |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 287 | |
| 288 | break; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 289 | } |
| 290 | } |
| 291 | |
| 292 | static void set_abs(struct input_dev *input, unsigned int code, |
| 293 | struct hid_field *field, int snratio) |
| 294 | { |
| 295 | int fmin = field->logical_minimum; |
| 296 | int fmax = field->logical_maximum; |
| 297 | int fuzz = snratio ? (fmax - fmin) / snratio : 0; |
| 298 | input_set_abs_params(input, code, fmin, fmax, fuzz, 0); |
| 299 | } |
| 300 | |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 301 | static void mt_store_field(struct hid_usage *usage, struct mt_device *td, |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 302 | struct hid_input *hi) |
| 303 | { |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 304 | struct mt_fields *f = td->fields; |
| 305 | |
| 306 | if (f->length >= HID_MAX_FIELDS) |
| 307 | return; |
| 308 | |
| 309 | f->usages[f->length++] = usage->hid; |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 310 | } |
| 311 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 312 | static int mt_input_mapping(struct hid_device *hdev, struct hid_input *hi, |
| 313 | struct hid_field *field, struct hid_usage *usage, |
| 314 | unsigned long **bit, int *max) |
| 315 | { |
| 316 | struct mt_device *td = hid_get_drvdata(hdev); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 317 | struct mt_class *cls = &td->mtclass; |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 318 | int code; |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 319 | |
Jeff Brown | 658d4aed59 | 2011-08-15 16:44:28 -0700 | [diff] [blame] | 320 | /* Only map fields from TouchScreen or TouchPad collections. |
Denis Kovalev | 2258e86 | 2012-02-14 00:50:33 -0800 | [diff] [blame] | 321 | * We need to ignore fields that belong to other collections |
| 322 | * such as Mouse that might have the same GenericDesktop usages. */ |
Jeff Brown | 658d4aed59 | 2011-08-15 16:44:28 -0700 | [diff] [blame] | 323 | if (field->application == HID_DG_TOUCHSCREEN) |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame^] | 324 | td->mt_flags |= INPUT_MT_DIRECT; |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 325 | else if (field->application != HID_DG_TOUCHPAD) |
Jeff Brown | 658d4aed59 | 2011-08-15 16:44:28 -0700 | [diff] [blame] | 326 | return 0; |
| 327 | |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame^] | 328 | /* |
| 329 | * Model touchscreens providing buttons as touchpads. |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 330 | */ |
| 331 | if (field->application == HID_DG_TOUCHPAD || |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame^] | 332 | (usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON) |
| 333 | td->mt_flags |= INPUT_MT_POINTER; |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 334 | |
Benjamin Tissoires | 2261bb9 | 2011-11-23 10:54:29 +0100 | [diff] [blame] | 335 | /* eGalax devices provide a Digitizer.Stylus input which overrides |
| 336 | * the correct Digitizers.Finger X/Y ranges. |
| 337 | * Let's just ignore this input. */ |
| 338 | if (field->physical == HID_DG_STYLUS) |
| 339 | return -1; |
| 340 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 341 | switch (usage->hid & HID_USAGE_PAGE) { |
| 342 | |
| 343 | case HID_UP_GENDESK: |
| 344 | switch (usage->hid) { |
| 345 | case HID_GD_X: |
| 346 | hid_map_usage(hi, usage, bit, max, |
| 347 | EV_ABS, ABS_MT_POSITION_X); |
| 348 | set_abs(hi->input, ABS_MT_POSITION_X, field, |
| 349 | cls->sn_move); |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 350 | mt_store_field(usage, td, hi); |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 351 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 352 | return 1; |
| 353 | case HID_GD_Y: |
| 354 | hid_map_usage(hi, usage, bit, max, |
| 355 | EV_ABS, ABS_MT_POSITION_Y); |
| 356 | set_abs(hi->input, ABS_MT_POSITION_Y, field, |
| 357 | cls->sn_move); |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 358 | mt_store_field(usage, td, hi); |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 359 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 360 | return 1; |
| 361 | } |
| 362 | return 0; |
| 363 | |
| 364 | case HID_UP_DIGITIZER: |
| 365 | switch (usage->hid) { |
| 366 | case HID_DG_INRANGE: |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 367 | mt_store_field(usage, td, hi); |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 368 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 369 | return 1; |
| 370 | case HID_DG_CONFIDENCE: |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 371 | mt_store_field(usage, td, hi); |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 372 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 373 | return 1; |
| 374 | case HID_DG_TIPSWITCH: |
| 375 | hid_map_usage(hi, usage, bit, max, EV_KEY, BTN_TOUCH); |
| 376 | input_set_capability(hi->input, EV_KEY, BTN_TOUCH); |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 377 | mt_store_field(usage, td, hi); |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 378 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 379 | return 1; |
| 380 | case HID_DG_CONTACTID: |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 381 | mt_store_field(usage, td, hi); |
Benjamin Tissoires | 2955cae | 2011-04-21 14:15:59 +0200 | [diff] [blame] | 382 | td->last_field_index = field->index; |
Benjamin Tissoires | 9e87f22 | 2012-03-06 17:57:06 +0100 | [diff] [blame] | 383 | td->touches_by_report++; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 384 | return 1; |
| 385 | case HID_DG_WIDTH: |
| 386 | hid_map_usage(hi, usage, bit, max, |
| 387 | EV_ABS, ABS_MT_TOUCH_MAJOR); |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 388 | set_abs(hi->input, ABS_MT_TOUCH_MAJOR, field, |
| 389 | cls->sn_width); |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 390 | mt_store_field(usage, td, hi); |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 391 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 392 | return 1; |
| 393 | case HID_DG_HEIGHT: |
| 394 | hid_map_usage(hi, usage, bit, max, |
| 395 | EV_ABS, ABS_MT_TOUCH_MINOR); |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 396 | set_abs(hi->input, ABS_MT_TOUCH_MINOR, field, |
| 397 | cls->sn_height); |
Benjamin Tissoires | 1e648a1 | 2011-03-18 14:27:55 +0100 | [diff] [blame] | 398 | input_set_abs_params(hi->input, |
| 399 | ABS_MT_ORIENTATION, 0, 1, 0, 0); |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 400 | mt_store_field(usage, td, hi); |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 401 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 402 | return 1; |
| 403 | case HID_DG_TIPPRESSURE: |
| 404 | hid_map_usage(hi, usage, bit, max, |
| 405 | EV_ABS, ABS_MT_PRESSURE); |
| 406 | set_abs(hi->input, ABS_MT_PRESSURE, field, |
| 407 | cls->sn_pressure); |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 408 | mt_store_field(usage, td, hi); |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 409 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 410 | return 1; |
| 411 | case HID_DG_CONTACTCOUNT: |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 412 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 413 | return 1; |
| 414 | case HID_DG_CONTACTMAX: |
| 415 | /* we don't set td->last_slot_field as contactcount and |
| 416 | * contact max are global to the report */ |
Benjamin Tissoires | ed9d5c9 | 2012-03-06 17:57:03 +0100 | [diff] [blame] | 417 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 418 | return -1; |
| 419 | } |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 420 | case HID_DG_TOUCH: |
| 421 | /* Legacy devices use TIPSWITCH and not TOUCH. |
| 422 | * Let's just ignore this field. */ |
| 423 | return -1; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 424 | /* let hid-input decide for the others */ |
| 425 | return 0; |
| 426 | |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 427 | case HID_UP_BUTTON: |
| 428 | code = BTN_MOUSE + ((usage->hid - 1) & HID_USAGE); |
| 429 | hid_map_usage(hi, usage, bit, max, EV_KEY, code); |
| 430 | input_set_capability(hi->input, EV_KEY, code); |
| 431 | return 1; |
| 432 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 433 | case 0xff000000: |
| 434 | /* we do not want to map these: no input-oriented meaning */ |
| 435 | return -1; |
| 436 | } |
| 437 | |
| 438 | return 0; |
| 439 | } |
| 440 | |
| 441 | static int mt_input_mapped(struct hid_device *hdev, struct hid_input *hi, |
| 442 | struct hid_field *field, struct hid_usage *usage, |
| 443 | unsigned long **bit, int *max) |
| 444 | { |
| 445 | if (usage->type == EV_KEY || usage->type == EV_ABS) |
| 446 | set_bit(usage->type, hi->input->evbit); |
| 447 | |
| 448 | return -1; |
| 449 | } |
| 450 | |
| 451 | static int mt_compute_slot(struct mt_device *td) |
| 452 | { |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 453 | __s32 quirks = td->mtclass.quirks; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 454 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 455 | if (quirks & MT_QUIRK_SLOT_IS_CONTACTID) |
| 456 | return td->curdata.contactid; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 457 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 458 | if (quirks & MT_QUIRK_CYPRESS) |
Benjamin Tissoires | a3b5e57 | 2011-01-07 23:46:30 +0100 | [diff] [blame] | 459 | return cypress_compute_slot(td); |
| 460 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 461 | if (quirks & MT_QUIRK_SLOT_IS_CONTACTNUMBER) |
| 462 | return td->num_received; |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 463 | |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 464 | if (quirks & MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE) |
| 465 | return td->curdata.contactid - 1; |
| 466 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 467 | return find_slot_from_contactid(td); |
| 468 | } |
| 469 | |
| 470 | /* |
| 471 | * this function is called when a whole contact has been processed, |
| 472 | * so that it can assign it to a slot and store the data there |
| 473 | */ |
| 474 | static void mt_complete_slot(struct mt_device *td) |
| 475 | { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 476 | td->curdata.seen_in_this_frame = true; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 477 | if (td->curvalid) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 478 | int slotnum = mt_compute_slot(td); |
| 479 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 480 | if (slotnum >= 0 && slotnum < td->maxcontacts) |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 481 | td->slots[slotnum] = td->curdata; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 482 | } |
| 483 | td->num_received++; |
| 484 | } |
| 485 | |
| 486 | |
| 487 | /* |
| 488 | * this function is called when a whole packet has been received and processed, |
| 489 | * so that it can decide what to send to the input layer. |
| 490 | */ |
| 491 | static void mt_emit_event(struct mt_device *td, struct input_dev *input) |
| 492 | { |
| 493 | int i; |
| 494 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 495 | for (i = 0; i < td->maxcontacts; ++i) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 496 | struct mt_slot *s = &(td->slots[i]); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 497 | if ((td->mtclass.quirks & MT_QUIRK_NOT_SEEN_MEANS_UP) && |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 498 | !s->seen_in_this_frame) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 499 | s->touch_state = false; |
| 500 | } |
| 501 | |
| 502 | input_mt_slot(input, i); |
| 503 | input_mt_report_slot_state(input, MT_TOOL_FINGER, |
| 504 | s->touch_state); |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 505 | if (s->touch_state) { |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 506 | /* this finger is on the screen */ |
| 507 | int wide = (s->w > s->h); |
| 508 | /* divided by two to match visual scale of touch */ |
| 509 | int major = max(s->w, s->h) >> 1; |
| 510 | int minor = min(s->w, s->h) >> 1; |
| 511 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 512 | input_event(input, EV_ABS, ABS_MT_POSITION_X, s->x); |
| 513 | input_event(input, EV_ABS, ABS_MT_POSITION_Y, s->y); |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 514 | input_event(input, EV_ABS, ABS_MT_ORIENTATION, wide); |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 515 | input_event(input, EV_ABS, ABS_MT_PRESSURE, s->p); |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 516 | input_event(input, EV_ABS, ABS_MT_TOUCH_MAJOR, major); |
| 517 | input_event(input, EV_ABS, ABS_MT_TOUCH_MINOR, minor); |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 518 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 519 | s->seen_in_this_frame = false; |
| 520 | |
| 521 | } |
| 522 | |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame^] | 523 | input_mt_sync_frame(input); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 524 | input_sync(input); |
| 525 | td->num_received = 0; |
| 526 | } |
| 527 | |
| 528 | |
| 529 | |
| 530 | static int mt_event(struct hid_device *hid, struct hid_field *field, |
| 531 | struct hid_usage *usage, __s32 value) |
| 532 | { |
| 533 | struct mt_device *td = hid_get_drvdata(hid); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 534 | __s32 quirks = td->mtclass.quirks; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 535 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 536 | if (hid->claimed & HID_CLAIMED_INPUT && td->slots) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 537 | switch (usage->hid) { |
| 538 | case HID_DG_INRANGE: |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 539 | if (quirks & MT_QUIRK_ALWAYS_VALID) |
| 540 | td->curvalid = true; |
| 541 | else if (quirks & MT_QUIRK_VALID_IS_INRANGE) |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 542 | td->curvalid = value; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 543 | break; |
| 544 | case HID_DG_TIPSWITCH: |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 545 | if (quirks & MT_QUIRK_NOT_SEEN_MEANS_UP) |
| 546 | td->curvalid = value; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 547 | td->curdata.touch_state = value; |
| 548 | break; |
| 549 | case HID_DG_CONFIDENCE: |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 550 | if (quirks & MT_QUIRK_VALID_IS_CONFIDENCE) |
| 551 | td->curvalid = value; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 552 | break; |
| 553 | case HID_DG_CONTACTID: |
| 554 | td->curdata.contactid = value; |
| 555 | break; |
| 556 | case HID_DG_TIPPRESSURE: |
| 557 | td->curdata.p = value; |
| 558 | break; |
| 559 | case HID_GD_X: |
| 560 | td->curdata.x = value; |
| 561 | break; |
| 562 | case HID_GD_Y: |
| 563 | td->curdata.y = value; |
| 564 | break; |
| 565 | case HID_DG_WIDTH: |
| 566 | td->curdata.w = value; |
| 567 | break; |
| 568 | case HID_DG_HEIGHT: |
| 569 | td->curdata.h = value; |
| 570 | break; |
| 571 | case HID_DG_CONTACTCOUNT: |
| 572 | /* |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 573 | * Includes multi-packet support where subsequent |
| 574 | * packets are sent with zero contactcount. |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 575 | */ |
| 576 | if (value) |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 577 | td->num_expected = value; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 578 | break; |
Benjamin Tissoires | c2ef8f2 | 2012-02-04 17:08:48 +0100 | [diff] [blame] | 579 | case HID_DG_TOUCH: |
| 580 | /* do nothing */ |
| 581 | break; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 582 | |
| 583 | default: |
| 584 | /* fallback to the generic hidinput handling */ |
| 585 | return 0; |
| 586 | } |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 587 | |
Denis Kovalev | 2258e86 | 2012-02-14 00:50:33 -0800 | [diff] [blame] | 588 | if (usage->hid == td->last_slot_field) |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 589 | mt_complete_slot(td); |
| 590 | |
| 591 | if (field->index == td->last_field_index |
| 592 | && td->num_received >= td->num_expected) |
| 593 | mt_emit_event(td, field->hidinput->input); |
| 594 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 595 | } |
| 596 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 597 | /* we have handled the hidinput part, now remains hiddev */ |
| 598 | if (hid->claimed & HID_CLAIMED_HIDDEV && hid->hiddev_hid_event) |
| 599 | hid->hiddev_hid_event(hid, field, usage, value); |
| 600 | |
| 601 | return 1; |
| 602 | } |
| 603 | |
| 604 | static void mt_set_input_mode(struct hid_device *hdev) |
| 605 | { |
| 606 | struct mt_device *td = hid_get_drvdata(hdev); |
| 607 | struct hid_report *r; |
| 608 | struct hid_report_enum *re; |
| 609 | |
| 610 | if (td->inputmode < 0) |
| 611 | return; |
| 612 | |
| 613 | re = &(hdev->report_enum[HID_FEATURE_REPORT]); |
| 614 | r = re->report_id_hash[td->inputmode]; |
| 615 | if (r) { |
Benjamin Tissoires | 4aceed3 | 2012-06-19 14:39:52 +0200 | [diff] [blame] | 616 | r->field[0]->value[td->inputmode_index] = 0x02; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 617 | usbhid_submit_report(hdev, r, USB_DIR_OUT); |
| 618 | } |
| 619 | } |
| 620 | |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 621 | static void mt_set_maxcontacts(struct hid_device *hdev) |
| 622 | { |
| 623 | struct mt_device *td = hid_get_drvdata(hdev); |
| 624 | struct hid_report *r; |
| 625 | struct hid_report_enum *re; |
| 626 | int fieldmax, max; |
| 627 | |
| 628 | if (td->maxcontact_report_id < 0) |
| 629 | return; |
| 630 | |
| 631 | if (!td->mtclass.maxcontacts) |
| 632 | return; |
| 633 | |
| 634 | re = &hdev->report_enum[HID_FEATURE_REPORT]; |
| 635 | r = re->report_id_hash[td->maxcontact_report_id]; |
| 636 | if (r) { |
| 637 | max = td->mtclass.maxcontacts; |
| 638 | fieldmax = r->field[0]->logical_maximum; |
| 639 | max = min(fieldmax, max); |
| 640 | if (r->field[0]->value[0] != max) { |
| 641 | r->field[0]->value[0] = max; |
| 642 | usbhid_submit_report(hdev, r, USB_DIR_OUT); |
| 643 | } |
| 644 | } |
| 645 | } |
| 646 | |
Henrik Rydberg | 4fa3a58 | 2012-05-01 08:40:01 +0200 | [diff] [blame] | 647 | static void mt_post_parse_default_settings(struct mt_device *td) |
| 648 | { |
| 649 | __s32 quirks = td->mtclass.quirks; |
| 650 | |
| 651 | /* unknown serial device needs special quirks */ |
| 652 | if (td->touches_by_report == 1) { |
| 653 | quirks |= MT_QUIRK_ALWAYS_VALID; |
| 654 | quirks &= ~MT_QUIRK_NOT_SEEN_MEANS_UP; |
| 655 | quirks &= ~MT_QUIRK_VALID_IS_INRANGE; |
| 656 | quirks &= ~MT_QUIRK_VALID_IS_CONFIDENCE; |
| 657 | } |
| 658 | |
| 659 | td->mtclass.quirks = quirks; |
| 660 | } |
| 661 | |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 662 | static void mt_post_parse(struct mt_device *td) |
| 663 | { |
| 664 | struct mt_fields *f = td->fields; |
| 665 | |
| 666 | if (td->touches_by_report > 0) { |
| 667 | int field_count_per_touch = f->length / td->touches_by_report; |
| 668 | td->last_slot_field = f->usages[field_count_per_touch - 1]; |
| 669 | } |
| 670 | } |
| 671 | |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame^] | 672 | static void mt_input_configured(struct hid_device *hdev, struct hid_input *hi) |
| 673 | |
| 674 | { |
| 675 | struct mt_device *td = hid_get_drvdata(hdev); |
| 676 | struct mt_class *cls = &td->mtclass; |
| 677 | struct input_dev *input = hi->input; |
| 678 | |
| 679 | /* Only initialize slots for MT input devices */ |
| 680 | if (!test_bit(ABS_MT_POSITION_X, input->absbit)) |
| 681 | return; |
| 682 | |
| 683 | if (!td->maxcontacts) |
| 684 | td->maxcontacts = MT_DEFAULT_MAXCONTACT; |
| 685 | |
| 686 | mt_post_parse(td); |
| 687 | if (td->serial_maybe) |
| 688 | mt_post_parse_default_settings(td); |
| 689 | |
| 690 | if (cls->is_indirect) |
| 691 | td->mt_flags |= INPUT_MT_POINTER; |
| 692 | |
| 693 | input_mt_init_slots(input, td->maxcontacts, td->mt_flags); |
| 694 | |
| 695 | td->mt_flags = 0; |
| 696 | } |
| 697 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 698 | static int mt_probe(struct hid_device *hdev, const struct hid_device_id *id) |
| 699 | { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 700 | int ret, i; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 701 | struct mt_device *td; |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 702 | struct mt_class *mtclass = mt_classes; /* MT_CLS_DEFAULT */ |
| 703 | |
Benjamin Tissoires | 8d179a9 | 2012-03-06 17:57:04 +0100 | [diff] [blame] | 704 | if (id) { |
| 705 | for (i = 0; mt_classes[i].name ; i++) { |
| 706 | if (id->driver_data == mt_classes[i].name) { |
| 707 | mtclass = &(mt_classes[i]); |
| 708 | break; |
| 709 | } |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 710 | } |
| 711 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 712 | |
Henrik Rydberg | d682bd7 | 2011-11-01 15:26:31 +0100 | [diff] [blame] | 713 | /* This allows the driver to correctly support devices |
| 714 | * that emit events over several HID messages. |
| 715 | */ |
| 716 | hdev->quirks |= HID_QUIRK_NO_INPUT_SYNC; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 717 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 718 | td = kzalloc(sizeof(struct mt_device), GFP_KERNEL); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 719 | if (!td) { |
| 720 | dev_err(&hdev->dev, "cannot allocate multitouch data\n"); |
| 721 | return -ENOMEM; |
| 722 | } |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 723 | td->mtclass = *mtclass; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 724 | td->inputmode = -1; |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 725 | td->maxcontact_report_id = -1; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 726 | hid_set_drvdata(hdev, td); |
| 727 | |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 728 | td->fields = kzalloc(sizeof(struct mt_fields), GFP_KERNEL); |
| 729 | if (!td->fields) { |
| 730 | dev_err(&hdev->dev, "cannot allocate multitouch fields data\n"); |
| 731 | ret = -ENOMEM; |
| 732 | goto fail; |
| 733 | } |
| 734 | |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame^] | 735 | if (id->vendor == HID_ANY_ID && id->product == HID_ANY_ID) |
| 736 | td->serial_maybe = true; |
| 737 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 738 | ret = hid_parse(hdev); |
| 739 | if (ret != 0) |
| 740 | goto fail; |
| 741 | |
| 742 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 743 | if (ret) |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 744 | goto fail; |
| 745 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 746 | td->slots = kzalloc(td->maxcontacts * sizeof(struct mt_slot), |
| 747 | GFP_KERNEL); |
| 748 | if (!td->slots) { |
| 749 | dev_err(&hdev->dev, "cannot allocate multitouch slots\n"); |
| 750 | hid_hw_stop(hdev); |
| 751 | ret = -ENOMEM; |
| 752 | goto fail; |
| 753 | } |
| 754 | |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 755 | ret = sysfs_create_group(&hdev->dev.kobj, &mt_attribute_group); |
| 756 | |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 757 | mt_set_maxcontacts(hdev); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 758 | mt_set_input_mode(hdev); |
| 759 | |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 760 | kfree(td->fields); |
| 761 | td->fields = NULL; |
| 762 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 763 | return 0; |
| 764 | |
| 765 | fail: |
Benjamin Tissoires | 3ac36d1 | 2012-05-04 14:53:46 +0200 | [diff] [blame] | 766 | kfree(td->fields); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 767 | kfree(td); |
| 768 | return ret; |
| 769 | } |
| 770 | |
| 771 | #ifdef CONFIG_PM |
| 772 | static int mt_reset_resume(struct hid_device *hdev) |
| 773 | { |
Benjamin Tissoires | 31ae9bd | 2012-02-04 17:08:49 +0100 | [diff] [blame] | 774 | mt_set_maxcontacts(hdev); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 775 | mt_set_input_mode(hdev); |
| 776 | return 0; |
| 777 | } |
| 778 | #endif |
| 779 | |
| 780 | static void mt_remove(struct hid_device *hdev) |
| 781 | { |
| 782 | struct mt_device *td = hid_get_drvdata(hdev); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 783 | sysfs_remove_group(&hdev->dev.kobj, &mt_attribute_group); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 784 | hid_hw_stop(hdev); |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 785 | kfree(td->slots); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 786 | kfree(td); |
| 787 | hid_set_drvdata(hdev, NULL); |
| 788 | } |
| 789 | |
| 790 | static const struct hid_device_id mt_devices[] = { |
| 791 | |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 792 | /* 3M panels */ |
| 793 | { .driver_data = MT_CLS_3M, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 794 | MT_USB_DEVICE(USB_VENDOR_ID_3M, |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 795 | USB_DEVICE_ID_3M1968) }, |
| 796 | { .driver_data = MT_CLS_3M, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 797 | MT_USB_DEVICE(USB_VENDOR_ID_3M, |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 798 | USB_DEVICE_ID_3M2256) }, |
Benjamin Tissoires | c4fad87 | 2011-12-23 15:41:00 +0100 | [diff] [blame] | 799 | { .driver_data = MT_CLS_3M, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 800 | MT_USB_DEVICE(USB_VENDOR_ID_3M, |
Benjamin Tissoires | c4fad87 | 2011-12-23 15:41:00 +0100 | [diff] [blame] | 801 | USB_DEVICE_ID_3M3266) }, |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 802 | |
Benjamin Tissoires | e6aac34 | 2011-05-19 14:18:13 +0200 | [diff] [blame] | 803 | /* ActionStar panels */ |
| 804 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 805 | MT_USB_DEVICE(USB_VENDOR_ID_ACTIONSTAR, |
Benjamin Tissoires | e6aac34 | 2011-05-19 14:18:13 +0200 | [diff] [blame] | 806 | USB_DEVICE_ID_ACTIONSTAR_1011) }, |
| 807 | |
Benjamin Tissoires | b105712 | 2011-12-23 15:40:59 +0100 | [diff] [blame] | 808 | /* Atmel panels */ |
| 809 | { .driver_data = MT_CLS_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 810 | MT_USB_DEVICE(USB_VENDOR_ID_ATMEL, |
Benjamin Tissoires | b105712 | 2011-12-23 15:40:59 +0100 | [diff] [blame] | 811 | USB_DEVICE_ID_ATMEL_MULTITOUCH) }, |
Benjamin Tissoires | 841cb15 | 2012-03-06 10:53:45 +0100 | [diff] [blame] | 812 | { .driver_data = MT_CLS_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 813 | MT_USB_DEVICE(USB_VENDOR_ID_ATMEL, |
Benjamin Tissoires | 841cb15 | 2012-03-06 10:53:45 +0100 | [diff] [blame] | 814 | USB_DEVICE_ID_ATMEL_MXT_DIGITIZER) }, |
Benjamin Tissoires | b105712 | 2011-12-23 15:40:59 +0100 | [diff] [blame] | 815 | |
Jiri Kosina | 9ed3269 | 2012-04-20 12:15:44 +0200 | [diff] [blame] | 816 | /* Baanto multitouch devices */ |
| 817 | { .driver_data = MT_CLS_DEFAULT, |
Jiri Kosina | 16b79bb | 2012-05-05 23:32:54 +0200 | [diff] [blame] | 818 | MT_USB_DEVICE(USB_VENDOR_ID_BAANTO, |
Jiri Kosina | 9ed3269 | 2012-04-20 12:15:44 +0200 | [diff] [blame] | 819 | USB_DEVICE_ID_BAANTO_MT_190W2) }, |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 820 | /* Cando panels */ |
| 821 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 822 | MT_USB_DEVICE(USB_VENDOR_ID_CANDO, |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 823 | USB_DEVICE_ID_CANDO_MULTI_TOUCH) }, |
| 824 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 825 | MT_USB_DEVICE(USB_VENDOR_ID_CANDO, |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 826 | USB_DEVICE_ID_CANDO_MULTI_TOUCH_10_1) }, |
| 827 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 828 | MT_USB_DEVICE(USB_VENDOR_ID_CANDO, |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 829 | USB_DEVICE_ID_CANDO_MULTI_TOUCH_11_6) }, |
| 830 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 831 | MT_USB_DEVICE(USB_VENDOR_ID_CANDO, |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 832 | USB_DEVICE_ID_CANDO_MULTI_TOUCH_15_6) }, |
| 833 | |
Austin Zhang | 942fd42 | 2011-05-28 02:03:47 +0800 | [diff] [blame] | 834 | /* Chunghwa Telecom touch panels */ |
| 835 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 836 | MT_USB_DEVICE(USB_VENDOR_ID_CHUNGHWAT, |
Austin Zhang | 942fd42 | 2011-05-28 02:03:47 +0800 | [diff] [blame] | 837 | USB_DEVICE_ID_CHUNGHWAT_MULTITOUCH) }, |
| 838 | |
Benjamin Tissoires | 79603dc | 2011-05-19 14:18:14 +0200 | [diff] [blame] | 839 | /* CVTouch panels */ |
| 840 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 841 | MT_USB_DEVICE(USB_VENDOR_ID_CVTOUCH, |
Benjamin Tissoires | 79603dc | 2011-05-19 14:18:14 +0200 | [diff] [blame] | 842 | USB_DEVICE_ID_CVTOUCH_SCREEN) }, |
| 843 | |
Benjamin Tissoires | a3b5e57 | 2011-01-07 23:46:30 +0100 | [diff] [blame] | 844 | /* Cypress panel */ |
| 845 | { .driver_data = MT_CLS_CYPRESS, |
| 846 | HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, |
| 847 | USB_DEVICE_ID_CYPRESS_TRUETOUCH) }, |
| 848 | |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 849 | /* eGalax devices (resistive) */ |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 850 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 851 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 852 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480D) }, |
| 853 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 854 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 855 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480E) }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 856 | |
| 857 | /* eGalax devices (capacitive) */ |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 858 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 859 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 860 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_720C) }, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 861 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 862 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 863 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7207) }, |
| 864 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 865 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 866 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_725E) }, |
| 867 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 868 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 869 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7224) }, |
Benjamin Tissoires | 2ce09df | 2012-03-06 17:57:02 +0100 | [diff] [blame] | 870 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 871 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | 2ce09df | 2012-03-06 17:57:02 +0100 | [diff] [blame] | 872 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_722A) }, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 873 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 874 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 875 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_726B) }, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 876 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 877 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 878 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7262) }, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 879 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 880 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 881 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72A1) }, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 882 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 883 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 884 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72AA) }, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 885 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 886 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | 66f0612 | 2011-11-23 10:54:33 +0100 | [diff] [blame] | 887 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72FA) }, |
| 888 | { .driver_data = MT_CLS_EGALAX, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 889 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Marek Vasut | bb9ff21 | 2011-11-23 10:54:32 +0100 | [diff] [blame] | 890 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7302) }, |
Benjamin Tissoires | 1b723e8 | 2011-11-23 10:54:34 +0100 | [diff] [blame] | 891 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 892 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | fd1d152 | 2012-03-06 10:53:47 +0100 | [diff] [blame] | 893 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7349) }, |
| 894 | { .driver_data = MT_CLS_EGALAX_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 895 | MT_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 896 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_A001) }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 897 | |
Benjamin Tissoires | c04abee | 2011-05-19 11:37:29 +0200 | [diff] [blame] | 898 | /* Elo TouchSystems IntelliTouch Plus panel */ |
| 899 | { .driver_data = MT_CLS_DUAL_NSMU_CONTACTID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 900 | MT_USB_DEVICE(USB_VENDOR_ID_ELO, |
Benjamin Tissoires | c04abee | 2011-05-19 11:37:29 +0200 | [diff] [blame] | 901 | USB_DEVICE_ID_ELO_TS2515) }, |
| 902 | |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 903 | /* GeneralTouch panel */ |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 904 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 905 | MT_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 906 | USB_DEVICE_ID_GENERAL_TOUCH_WIN7_TWOFINGERS) }, |
| 907 | |
Andreas Nielsen | 4d5df5d | 2012-03-19 15:41:03 +0100 | [diff] [blame] | 908 | /* Gametel game controller */ |
| 909 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 910 | MT_BT_DEVICE(USB_VENDOR_ID_FRUCTEL, |
Andreas Nielsen | 4d5df5d | 2012-03-19 15:41:03 +0100 | [diff] [blame] | 911 | USB_DEVICE_ID_GAMETEL_MT_MODE) }, |
| 912 | |
Benjamin Tissoires | ee0fbd1 | 2011-05-19 14:18:15 +0200 | [diff] [blame] | 913 | /* GoodTouch panels */ |
| 914 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 915 | MT_USB_DEVICE(USB_VENDOR_ID_GOODTOUCH, |
Benjamin Tissoires | ee0fbd1 | 2011-05-19 14:18:15 +0200 | [diff] [blame] | 916 | USB_DEVICE_ID_GOODTOUCH_000f) }, |
| 917 | |
Benjamin Tissoires | 5458036 | 2011-11-29 13:13:12 +0100 | [diff] [blame] | 918 | /* Hanvon panels */ |
| 919 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 920 | MT_USB_DEVICE(USB_VENDOR_ID_HANVON_ALT, |
Benjamin Tissoires | 5458036 | 2011-11-29 13:13:12 +0100 | [diff] [blame] | 921 | USB_DEVICE_ID_HANVON_ALT_MULTITOUCH) }, |
| 922 | |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 923 | /* Ideacom panel */ |
| 924 | { .driver_data = MT_CLS_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 925 | MT_USB_DEVICE(USB_VENDOR_ID_IDEACOM, |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 926 | USB_DEVICE_ID_IDEACOM_IDC6650) }, |
Benjamin Tissoires | 71078b0 | 2012-03-06 10:53:46 +0100 | [diff] [blame] | 927 | { .driver_data = MT_CLS_SERIAL, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 928 | MT_USB_DEVICE(USB_VENDOR_ID_IDEACOM, |
Benjamin Tissoires | 71078b0 | 2012-03-06 10:53:46 +0100 | [diff] [blame] | 929 | USB_DEVICE_ID_IDEACOM_IDC6651) }, |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 930 | |
Austin Zhang | 4e61f0d | 2011-05-09 23:54:14 +0800 | [diff] [blame] | 931 | /* Ilitek dual touch panel */ |
| 932 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 933 | MT_USB_DEVICE(USB_VENDOR_ID_ILITEK, |
Austin Zhang | 4e61f0d | 2011-05-09 23:54:14 +0800 | [diff] [blame] | 934 | USB_DEVICE_ID_ILITEK_MULTITOUCH) }, |
| 935 | |
Benjamin Tissoires | 4dfcced | 2011-01-31 11:28:22 +0100 | [diff] [blame] | 936 | /* IRTOUCH panels */ |
| 937 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 938 | MT_USB_DEVICE(USB_VENDOR_ID_IRTOUCHSYSTEMS, |
Benjamin Tissoires | 4dfcced | 2011-01-31 11:28:22 +0100 | [diff] [blame] | 939 | USB_DEVICE_ID_IRTOUCH_INFRARED_USB) }, |
| 940 | |
Jeff Brown | c50bb1a | 2011-08-15 21:12:09 -0700 | [diff] [blame] | 941 | /* LG Display panels */ |
| 942 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 943 | MT_USB_DEVICE(USB_VENDOR_ID_LG, |
Jeff Brown | c50bb1a | 2011-08-15 21:12:09 -0700 | [diff] [blame] | 944 | USB_DEVICE_ID_LG_MULTITOUCH) }, |
| 945 | |
Benjamin Tissoires | df167c4 | 2011-05-18 15:27:24 +0200 | [diff] [blame] | 946 | /* Lumio panels */ |
| 947 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 948 | MT_USB_DEVICE(USB_VENDOR_ID_LUMIO, |
Benjamin Tissoires | df167c4 | 2011-05-18 15:27:24 +0200 | [diff] [blame] | 949 | USB_DEVICE_ID_CRYSTALTOUCH) }, |
Benjamin Tissoires | c3ead6d | 2011-06-21 15:01:55 +0200 | [diff] [blame] | 950 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 951 | MT_USB_DEVICE(USB_VENDOR_ID_LUMIO, |
Benjamin Tissoires | c3ead6d | 2011-06-21 15:01:55 +0200 | [diff] [blame] | 952 | USB_DEVICE_ID_CRYSTALTOUCH_DUAL) }, |
Benjamin Tissoires | df167c4 | 2011-05-18 15:27:24 +0200 | [diff] [blame] | 953 | |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 954 | /* MosArt panels */ |
| 955 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 956 | MT_USB_DEVICE(USB_VENDOR_ID_ASUS, |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 957 | USB_DEVICE_ID_ASUS_T91MT)}, |
| 958 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 959 | MT_USB_DEVICE(USB_VENDOR_ID_ASUS, |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 960 | USB_DEVICE_ID_ASUSTEK_MULTITOUCH_YFO) }, |
| 961 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 962 | MT_USB_DEVICE(USB_VENDOR_ID_TURBOX, |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 963 | USB_DEVICE_ID_TURBOX_TOUCHSCREEN_MOSART) }, |
| 964 | |
Denis Kovalev | 2258e86 | 2012-02-14 00:50:33 -0800 | [diff] [blame] | 965 | /* Panasonic panels */ |
| 966 | { .driver_data = MT_CLS_PANASONIC, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 967 | MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC, |
Denis Kovalev | 2258e86 | 2012-02-14 00:50:33 -0800 | [diff] [blame] | 968 | USB_DEVICE_ID_PANABOARD_UBT780) }, |
| 969 | { .driver_data = MT_CLS_PANASONIC, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 970 | MT_USB_DEVICE(USB_VENDOR_ID_PANASONIC, |
Denis Kovalev | 2258e86 | 2012-02-14 00:50:33 -0800 | [diff] [blame] | 971 | USB_DEVICE_ID_PANABOARD_UBT880) }, |
| 972 | |
Austin Hendrix | 4db703e | 2012-06-04 15:27:51 -0700 | [diff] [blame] | 973 | /* Novatek Panel */ |
| 974 | { .driver_data = MT_CLS_DEFAULT, |
Jiri Kosina | 4380d81 | 2012-06-06 16:28:33 +0200 | [diff] [blame] | 975 | MT_USB_DEVICE(USB_VENDOR_ID_NOVATEK, |
Austin Hendrix | 4db703e | 2012-06-04 15:27:51 -0700 | [diff] [blame] | 976 | USB_DEVICE_ID_NOVATEK_PCT) }, |
| 977 | |
John Sung | 6ab3a9a | 2011-04-21 16:21:52 +0200 | [diff] [blame] | 978 | /* PenMount panels */ |
| 979 | { .driver_data = MT_CLS_CONFIDENCE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 980 | MT_USB_DEVICE(USB_VENDOR_ID_PENMOUNT, |
John Sung | 6ab3a9a | 2011-04-21 16:21:52 +0200 | [diff] [blame] | 981 | USB_DEVICE_ID_PENMOUNT_PCI) }, |
| 982 | |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 983 | /* PixArt optical touch screen */ |
| 984 | { .driver_data = MT_CLS_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 985 | MT_USB_DEVICE(USB_VENDOR_ID_PIXART, |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 986 | USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN) }, |
| 987 | { .driver_data = MT_CLS_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 988 | MT_USB_DEVICE(USB_VENDOR_ID_PIXART, |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 989 | USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN1) }, |
| 990 | { .driver_data = MT_CLS_INRANGE_CONTACTNUMBER, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 991 | MT_USB_DEVICE(USB_VENDOR_ID_PIXART, |
Aaron Tian | b7ea95f | 2011-12-15 11:09:06 +0800 | [diff] [blame] | 992 | USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN2) }, |
| 993 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 994 | /* PixCir-based panels */ |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 995 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 996 | MT_USB_DEVICE(USB_VENDOR_ID_HANVON, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 997 | USB_DEVICE_ID_HANVON_MULTITOUCH) }, |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 998 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 999 | MT_USB_DEVICE(USB_VENDOR_ID_CANDO, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1000 | USB_DEVICE_ID_CANDO_PIXCIR_MULTI_TOUCH) }, |
| 1001 | |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 1002 | /* Quanta-based panels */ |
| 1003 | { .driver_data = MT_CLS_CONFIDENCE_CONTACT_ID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1004 | MT_USB_DEVICE(USB_VENDOR_ID_QUANTA, |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 1005 | USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH) }, |
| 1006 | { .driver_data = MT_CLS_CONFIDENCE_CONTACT_ID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1007 | MT_USB_DEVICE(USB_VENDOR_ID_QUANTA, |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 1008 | USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3001) }, |
| 1009 | { .driver_data = MT_CLS_CONFIDENCE_CONTACT_ID, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1010 | MT_USB_DEVICE(USB_VENDOR_ID_QUANTA, |
Benjamin Tissoires | 5e7ea11 | 2011-11-29 13:13:10 +0100 | [diff] [blame] | 1011 | USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3008) }, |
| 1012 | |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 1013 | /* Stantum panels */ |
Benjamin Tissoires | bf5af9b | 2011-05-19 14:18:18 +0200 | [diff] [blame] | 1014 | { .driver_data = MT_CLS_CONFIDENCE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1015 | MT_USB_DEVICE(USB_VENDOR_ID_STANTUM, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 1016 | USB_DEVICE_ID_MTP)}, |
Benjamin Tissoires | bf5af9b | 2011-05-19 14:18:18 +0200 | [diff] [blame] | 1017 | { .driver_data = MT_CLS_CONFIDENCE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1018 | MT_USB_DEVICE(USB_VENDOR_ID_STANTUM_STM, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 1019 | USB_DEVICE_ID_MTP_STM)}, |
Benjamin Tissoires | bf5af9b | 2011-05-19 14:18:18 +0200 | [diff] [blame] | 1020 | { .driver_data = MT_CLS_CONFIDENCE, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1021 | MT_USB_DEVICE(USB_VENDOR_ID_STANTUM_SITRONIX, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 1022 | USB_DEVICE_ID_MTP_SITRONIX)}, |
| 1023 | |
Benjamin Tissoires | 847672c | 2012-02-04 17:08:50 +0100 | [diff] [blame] | 1024 | /* TopSeed panels */ |
| 1025 | { .driver_data = MT_CLS_TOPSEED, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1026 | MT_USB_DEVICE(USB_VENDOR_ID_TOPSEED2, |
Benjamin Tissoires | 847672c | 2012-02-04 17:08:50 +0100 | [diff] [blame] | 1027 | USB_DEVICE_ID_TOPSEED2_PERIPAD_701) }, |
| 1028 | |
Benjamin Tissoires | 5e74e56 | 2011-05-19 14:18:16 +0200 | [diff] [blame] | 1029 | /* Touch International panels */ |
| 1030 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1031 | MT_USB_DEVICE(USB_VENDOR_ID_TOUCH_INTL, |
Benjamin Tissoires | 5e74e56 | 2011-05-19 14:18:16 +0200 | [diff] [blame] | 1032 | USB_DEVICE_ID_TOUCH_INTL_MULTI_TOUCH) }, |
| 1033 | |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 1034 | /* Unitec panels */ |
| 1035 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1036 | MT_USB_DEVICE(USB_VENDOR_ID_UNITEC, |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 1037 | USB_DEVICE_ID_UNITEC_USB_TOUCH_0709) }, |
| 1038 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1039 | MT_USB_DEVICE(USB_VENDOR_ID_UNITEC, |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 1040 | USB_DEVICE_ID_UNITEC_USB_TOUCH_0A19) }, |
ice chien | bc8a2a9 | 2011-07-15 16:58:06 +0800 | [diff] [blame] | 1041 | /* XAT */ |
| 1042 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1043 | MT_USB_DEVICE(USB_VENDOR_ID_XAT, |
ice chien | bc8a2a9 | 2011-07-15 16:58:06 +0800 | [diff] [blame] | 1044 | USB_DEVICE_ID_XAT_CSR) }, |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 1045 | |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1046 | /* Xiroku */ |
| 1047 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1048 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1049 | USB_DEVICE_ID_XIROKU_SPX) }, |
| 1050 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1051 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1052 | USB_DEVICE_ID_XIROKU_MPX) }, |
| 1053 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1054 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1055 | USB_DEVICE_ID_XIROKU_CSR) }, |
| 1056 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1057 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1058 | USB_DEVICE_ID_XIROKU_SPX1) }, |
| 1059 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1060 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1061 | USB_DEVICE_ID_XIROKU_MPX1) }, |
| 1062 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1063 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1064 | USB_DEVICE_ID_XIROKU_CSR1) }, |
| 1065 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1066 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1067 | USB_DEVICE_ID_XIROKU_SPX2) }, |
| 1068 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1069 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1070 | USB_DEVICE_ID_XIROKU_MPX2) }, |
| 1071 | { .driver_data = MT_CLS_DEFAULT, |
Henrik Rydberg | 2c2110e | 2012-05-04 15:32:04 +0200 | [diff] [blame] | 1072 | MT_USB_DEVICE(USB_VENDOR_ID_XIROKU, |
Masatoshi Hoshikawa | 11576c6 | 2012-01-05 11:53:46 +0900 | [diff] [blame] | 1073 | USB_DEVICE_ID_XIROKU_CSR2) }, |
| 1074 | |
Benjamin Tissoires | 82d0698 | 2012-06-19 14:39:54 +0200 | [diff] [blame] | 1075 | /* Zytronic panels */ |
| 1076 | { .driver_data = MT_CLS_SERIAL, |
| 1077 | MT_USB_DEVICE(USB_VENDOR_ID_ZYTRONIC, |
| 1078 | USB_DEVICE_ID_ZYTRONIC_ZXY100) }, |
| 1079 | |
Henrik Rydberg | 4fa3a58 | 2012-05-01 08:40:01 +0200 | [diff] [blame] | 1080 | /* Generic MT device */ |
| 1081 | { HID_DEVICE(HID_BUS_ANY, HID_GROUP_MULTITOUCH, HID_ANY_ID, HID_ANY_ID) }, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1082 | { } |
| 1083 | }; |
| 1084 | MODULE_DEVICE_TABLE(hid, mt_devices); |
| 1085 | |
| 1086 | static const struct hid_usage_id mt_grabbed_usages[] = { |
| 1087 | { HID_ANY_ID, HID_ANY_ID, HID_ANY_ID }, |
| 1088 | { HID_ANY_ID - 1, HID_ANY_ID - 1, HID_ANY_ID - 1} |
| 1089 | }; |
| 1090 | |
| 1091 | static struct hid_driver mt_driver = { |
| 1092 | .name = "hid-multitouch", |
| 1093 | .id_table = mt_devices, |
| 1094 | .probe = mt_probe, |
| 1095 | .remove = mt_remove, |
| 1096 | .input_mapping = mt_input_mapping, |
| 1097 | .input_mapped = mt_input_mapped, |
Henrik Rydberg | 76f5902 | 2012-09-01 20:11:34 +0200 | [diff] [blame^] | 1098 | .input_configured = mt_input_configured, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1099 | .feature_mapping = mt_feature_mapping, |
| 1100 | .usage_table = mt_grabbed_usages, |
| 1101 | .event = mt_event, |
| 1102 | #ifdef CONFIG_PM |
| 1103 | .reset_resume = mt_reset_resume, |
| 1104 | #endif |
| 1105 | }; |
| 1106 | |
| 1107 | static int __init mt_init(void) |
| 1108 | { |
| 1109 | return hid_register_driver(&mt_driver); |
| 1110 | } |
| 1111 | |
| 1112 | static void __exit mt_exit(void) |
| 1113 | { |
| 1114 | hid_unregister_driver(&mt_driver); |
| 1115 | } |
| 1116 | |
| 1117 | module_init(mt_init); |
| 1118 | module_exit(mt_exit); |