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