Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 1 | /* |
| 2 | * HID driver for multitouch panels |
| 3 | * |
| 4 | * Copyright (c) 2010-2011 Stephane Chatty <chatty@enac.fr> |
| 5 | * Copyright (c) 2010-2011 Benjamin Tissoires <benjamin.tissoires@gmail.com> |
| 6 | * Copyright (c) 2010-2011 Ecole Nationale de l'Aviation Civile, France |
| 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 | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 62 | struct mt_class { |
| 63 | __s32 name; /* MT_CLS */ |
| 64 | __s32 quirks; |
| 65 | __s32 sn_move; /* Signal/noise ratio for move events */ |
| 66 | __s32 sn_width; /* Signal/noise ratio for width events */ |
| 67 | __s32 sn_height; /* Signal/noise ratio for height events */ |
| 68 | __s32 sn_pressure; /* Signal/noise ratio for pressure events */ |
| 69 | __u8 maxcontacts; |
| 70 | }; |
| 71 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 72 | struct mt_device { |
| 73 | struct mt_slot curdata; /* placeholder of incoming data */ |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 74 | struct mt_class mtclass; /* our mt device class */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 75 | unsigned last_field_index; /* last field index of the report */ |
| 76 | unsigned last_slot_field; /* the last field of a slot */ |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 77 | int last_mt_collection; /* last known mt-related collection */ |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 78 | __s8 inputmode; /* InputMode HID feature, -1 if non-existent */ |
| 79 | __u8 num_received; /* how many contacts we received */ |
| 80 | __u8 num_expected; /* expected last contact index */ |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 81 | __u8 maxcontacts; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 82 | bool curvalid; /* is the current contact valid? */ |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 83 | struct mt_slot *slots; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 84 | }; |
| 85 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 86 | /* classes of device behavior */ |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 87 | #define MT_CLS_DEFAULT 0x0001 |
| 88 | |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 89 | #define MT_CLS_SERIAL 0x0002 |
| 90 | #define MT_CLS_CONFIDENCE 0x0003 |
| 91 | #define MT_CLS_CONFIDENCE_MINUS_ONE 0x0004 |
| 92 | #define MT_CLS_DUAL_INRANGE_CONTACTID 0x0005 |
| 93 | #define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0006 |
| 94 | #define MT_CLS_DUAL_NSMU_CONTACTID 0x0007 |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 95 | |
| 96 | /* vendor specific classes */ |
| 97 | #define MT_CLS_3M 0x0101 |
| 98 | #define MT_CLS_CYPRESS 0x0102 |
| 99 | #define MT_CLS_EGALAX 0x0103 |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 100 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 101 | #define MT_DEFAULT_MAXCONTACT 10 |
| 102 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 103 | /* |
| 104 | * these device-dependent functions determine what slot corresponds |
| 105 | * to a valid contact that was just read. |
| 106 | */ |
| 107 | |
Benjamin Tissoires | a3b5e57 | 2011-01-07 23:46:30 +0100 | [diff] [blame] | 108 | static int cypress_compute_slot(struct mt_device *td) |
| 109 | { |
| 110 | if (td->curdata.contactid != 0 || td->num_received == 0) |
| 111 | return td->curdata.contactid; |
| 112 | else |
| 113 | return -1; |
| 114 | } |
| 115 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 116 | static int find_slot_from_contactid(struct mt_device *td) |
| 117 | { |
| 118 | int i; |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 119 | for (i = 0; i < td->maxcontacts; ++i) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 120 | if (td->slots[i].contactid == td->curdata.contactid && |
| 121 | td->slots[i].touch_state) |
| 122 | return i; |
| 123 | } |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 124 | for (i = 0; i < td->maxcontacts; ++i) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 125 | if (!td->slots[i].seen_in_this_frame && |
| 126 | !td->slots[i].touch_state) |
| 127 | return i; |
| 128 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 129 | /* should not occurs. If this happens that means |
| 130 | * that the device sent more touches that it says |
| 131 | * in the report descriptor. It is ignored then. */ |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 132 | return -1; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | struct mt_class mt_classes[] = { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 136 | { .name = MT_CLS_DEFAULT, |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 137 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP }, |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 138 | { .name = MT_CLS_SERIAL, |
| 139 | .quirks = MT_QUIRK_ALWAYS_VALID}, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 140 | { .name = MT_CLS_CONFIDENCE, |
| 141 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE }, |
| 142 | { .name = MT_CLS_CONFIDENCE_MINUS_ONE, |
| 143 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | |
| 144 | MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE }, |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 145 | { .name = MT_CLS_DUAL_INRANGE_CONTACTID, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 146 | .quirks = MT_QUIRK_VALID_IS_INRANGE | |
| 147 | MT_QUIRK_SLOT_IS_CONTACTID, |
| 148 | .maxcontacts = 2 }, |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 149 | { .name = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 150 | .quirks = MT_QUIRK_VALID_IS_INRANGE | |
| 151 | MT_QUIRK_SLOT_IS_CONTACTNUMBER, |
| 152 | .maxcontacts = 2 }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 153 | { .name = MT_CLS_DUAL_NSMU_CONTACTID, |
| 154 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP | |
| 155 | MT_QUIRK_SLOT_IS_CONTACTID, |
| 156 | .maxcontacts = 2 }, |
| 157 | |
| 158 | /* |
| 159 | * vendor specific classes |
| 160 | */ |
| 161 | { .name = MT_CLS_3M, |
| 162 | .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | |
| 163 | MT_QUIRK_SLOT_IS_CONTACTID, |
| 164 | .sn_move = 2048, |
| 165 | .sn_width = 128, |
| 166 | .sn_height = 128 }, |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 167 | { .name = MT_CLS_CYPRESS, |
| 168 | .quirks = MT_QUIRK_NOT_SEEN_MEANS_UP | |
| 169 | MT_QUIRK_CYPRESS, |
| 170 | .maxcontacts = 10 }, |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 171 | { .name = MT_CLS_EGALAX, |
| 172 | .quirks = MT_QUIRK_SLOT_IS_CONTACTID | |
Benjamin Tissoires | 2261bb9 | 2011-11-23 10:54:29 +0100 | [diff] [blame] | 173 | MT_QUIRK_VALID_IS_INRANGE, |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 174 | .sn_move = 4096, |
| 175 | .sn_pressure = 32, |
| 176 | }, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 177 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 178 | { } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 179 | }; |
| 180 | |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 181 | static ssize_t mt_show_quirks(struct device *dev, |
| 182 | struct device_attribute *attr, |
| 183 | char *buf) |
| 184 | { |
| 185 | struct hid_device *hdev = container_of(dev, struct hid_device, dev); |
| 186 | struct mt_device *td = hid_get_drvdata(hdev); |
| 187 | |
| 188 | return sprintf(buf, "%u\n", td->mtclass.quirks); |
| 189 | } |
| 190 | |
| 191 | static ssize_t mt_set_quirks(struct device *dev, |
| 192 | struct device_attribute *attr, |
| 193 | const char *buf, size_t count) |
| 194 | { |
| 195 | struct hid_device *hdev = container_of(dev, struct hid_device, dev); |
| 196 | struct mt_device *td = hid_get_drvdata(hdev); |
| 197 | |
| 198 | unsigned long val; |
| 199 | |
| 200 | if (kstrtoul(buf, 0, &val)) |
| 201 | return -EINVAL; |
| 202 | |
| 203 | td->mtclass.quirks = val; |
| 204 | |
| 205 | return count; |
| 206 | } |
| 207 | |
| 208 | static DEVICE_ATTR(quirks, S_IWUSR | S_IRUGO, mt_show_quirks, mt_set_quirks); |
| 209 | |
| 210 | static struct attribute *sysfs_attrs[] = { |
| 211 | &dev_attr_quirks.attr, |
| 212 | NULL |
| 213 | }; |
| 214 | |
| 215 | static struct attribute_group mt_attribute_group = { |
| 216 | .attrs = sysfs_attrs |
| 217 | }; |
| 218 | |
Henrik Rydberg | f635bd1 | 2011-02-24 19:30:59 +0100 | [diff] [blame] | 219 | static void mt_feature_mapping(struct hid_device *hdev, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 220 | struct hid_field *field, struct hid_usage *usage) |
| 221 | { |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 222 | struct mt_device *td = hid_get_drvdata(hdev); |
| 223 | |
| 224 | switch (usage->hid) { |
| 225 | case HID_DG_INPUTMODE: |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 226 | td->inputmode = field->report->id; |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 227 | break; |
| 228 | case HID_DG_CONTACTMAX: |
| 229 | td->maxcontacts = field->value[0]; |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 230 | if (td->mtclass.maxcontacts) |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 231 | /* check if the maxcontacts is given by the class */ |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 232 | td->maxcontacts = td->mtclass.maxcontacts; |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 233 | |
| 234 | break; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | |
| 238 | static void set_abs(struct input_dev *input, unsigned int code, |
| 239 | struct hid_field *field, int snratio) |
| 240 | { |
| 241 | int fmin = field->logical_minimum; |
| 242 | int fmax = field->logical_maximum; |
| 243 | int fuzz = snratio ? (fmax - fmin) / snratio : 0; |
| 244 | input_set_abs_params(input, code, fmin, fmax, fuzz, 0); |
| 245 | } |
| 246 | |
| 247 | static int mt_input_mapping(struct hid_device *hdev, struct hid_input *hi, |
| 248 | struct hid_field *field, struct hid_usage *usage, |
| 249 | unsigned long **bit, int *max) |
| 250 | { |
| 251 | struct mt_device *td = hid_get_drvdata(hdev); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 252 | struct mt_class *cls = &td->mtclass; |
Richard Nauber | 4875ac1 | 2011-03-09 06:20:57 +0100 | [diff] [blame] | 253 | |
Jeff Brown | 658d4ae | 2011-08-15 16:44:28 -0700 | [diff] [blame] | 254 | /* Only map fields from TouchScreen or TouchPad collections. |
| 255 | * We need to ignore fields that belong to other collections |
| 256 | * such as Mouse that might have the same GenericDesktop usages. */ |
| 257 | if (field->application == HID_DG_TOUCHSCREEN) |
| 258 | set_bit(INPUT_PROP_DIRECT, hi->input->propbit); |
| 259 | else if (field->application == HID_DG_TOUCHPAD) |
| 260 | set_bit(INPUT_PROP_POINTER, hi->input->propbit); |
| 261 | else |
| 262 | return 0; |
| 263 | |
Benjamin Tissoires | 2261bb9 | 2011-11-23 10:54:29 +0100 | [diff] [blame] | 264 | /* eGalax devices provide a Digitizer.Stylus input which overrides |
| 265 | * the correct Digitizers.Finger X/Y ranges. |
| 266 | * Let's just ignore this input. */ |
| 267 | if (field->physical == HID_DG_STYLUS) |
| 268 | return -1; |
| 269 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 270 | switch (usage->hid & HID_USAGE_PAGE) { |
| 271 | |
| 272 | case HID_UP_GENDESK: |
| 273 | switch (usage->hid) { |
| 274 | case HID_GD_X: |
| 275 | hid_map_usage(hi, usage, bit, max, |
| 276 | EV_ABS, ABS_MT_POSITION_X); |
| 277 | set_abs(hi->input, ABS_MT_POSITION_X, field, |
| 278 | cls->sn_move); |
| 279 | /* touchscreen emulation */ |
| 280 | set_abs(hi->input, ABS_X, field, cls->sn_move); |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 281 | if (td->last_mt_collection == usage->collection_index) { |
| 282 | td->last_slot_field = usage->hid; |
| 283 | td->last_field_index = field->index; |
| 284 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 285 | return 1; |
| 286 | case HID_GD_Y: |
| 287 | hid_map_usage(hi, usage, bit, max, |
| 288 | EV_ABS, ABS_MT_POSITION_Y); |
| 289 | set_abs(hi->input, ABS_MT_POSITION_Y, field, |
| 290 | cls->sn_move); |
| 291 | /* touchscreen emulation */ |
| 292 | set_abs(hi->input, ABS_Y, field, cls->sn_move); |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 293 | if (td->last_mt_collection == usage->collection_index) { |
| 294 | td->last_slot_field = usage->hid; |
| 295 | td->last_field_index = field->index; |
| 296 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 297 | return 1; |
| 298 | } |
| 299 | return 0; |
| 300 | |
| 301 | case HID_UP_DIGITIZER: |
| 302 | switch (usage->hid) { |
| 303 | case HID_DG_INRANGE: |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 304 | if (td->last_mt_collection == usage->collection_index) { |
| 305 | td->last_slot_field = usage->hid; |
| 306 | td->last_field_index = field->index; |
| 307 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 308 | return 1; |
| 309 | case HID_DG_CONFIDENCE: |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 310 | if (td->last_mt_collection == usage->collection_index) { |
| 311 | td->last_slot_field = usage->hid; |
| 312 | td->last_field_index = field->index; |
| 313 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 314 | return 1; |
| 315 | case HID_DG_TIPSWITCH: |
| 316 | hid_map_usage(hi, usage, bit, max, EV_KEY, BTN_TOUCH); |
| 317 | input_set_capability(hi->input, EV_KEY, BTN_TOUCH); |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 318 | if (td->last_mt_collection == usage->collection_index) { |
| 319 | td->last_slot_field = usage->hid; |
| 320 | td->last_field_index = field->index; |
| 321 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 322 | return 1; |
| 323 | case HID_DG_CONTACTID: |
Benjamin Tissoires | 50bc03a | 2011-06-21 15:01:53 +0200 | [diff] [blame] | 324 | if (!td->maxcontacts) |
| 325 | td->maxcontacts = MT_DEFAULT_MAXCONTACT; |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 326 | input_mt_init_slots(hi->input, td->maxcontacts); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 327 | td->last_slot_field = usage->hid; |
Benjamin Tissoires | 2955cae | 2011-04-21 14:15:59 +0200 | [diff] [blame] | 328 | td->last_field_index = field->index; |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 329 | td->last_mt_collection = usage->collection_index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 330 | return 1; |
| 331 | case HID_DG_WIDTH: |
| 332 | hid_map_usage(hi, usage, bit, max, |
| 333 | EV_ABS, ABS_MT_TOUCH_MAJOR); |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 334 | set_abs(hi->input, ABS_MT_TOUCH_MAJOR, field, |
| 335 | cls->sn_width); |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 336 | if (td->last_mt_collection == usage->collection_index) { |
| 337 | td->last_slot_field = usage->hid; |
| 338 | td->last_field_index = field->index; |
| 339 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 340 | return 1; |
| 341 | case HID_DG_HEIGHT: |
| 342 | hid_map_usage(hi, usage, bit, max, |
| 343 | EV_ABS, ABS_MT_TOUCH_MINOR); |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 344 | set_abs(hi->input, ABS_MT_TOUCH_MINOR, field, |
| 345 | cls->sn_height); |
Benjamin Tissoires | 1e648a1 | 2011-03-18 14:27:55 +0100 | [diff] [blame] | 346 | input_set_abs_params(hi->input, |
| 347 | ABS_MT_ORIENTATION, 0, 1, 0, 0); |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 348 | if (td->last_mt_collection == usage->collection_index) { |
| 349 | td->last_slot_field = usage->hid; |
| 350 | td->last_field_index = field->index; |
| 351 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 352 | return 1; |
| 353 | case HID_DG_TIPPRESSURE: |
| 354 | hid_map_usage(hi, usage, bit, max, |
| 355 | EV_ABS, ABS_MT_PRESSURE); |
| 356 | set_abs(hi->input, ABS_MT_PRESSURE, field, |
| 357 | cls->sn_pressure); |
| 358 | /* touchscreen emulation */ |
| 359 | set_abs(hi->input, ABS_PRESSURE, field, |
| 360 | cls->sn_pressure); |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 361 | if (td->last_mt_collection == usage->collection_index) { |
| 362 | td->last_slot_field = usage->hid; |
| 363 | td->last_field_index = field->index; |
| 364 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 365 | return 1; |
| 366 | case HID_DG_CONTACTCOUNT: |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 367 | if (td->last_mt_collection == usage->collection_index) |
| 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_CONTACTMAX: |
| 371 | /* we don't set td->last_slot_field as contactcount and |
| 372 | * contact max are global to the report */ |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 373 | if (td->last_mt_collection == usage->collection_index) |
| 374 | td->last_field_index = field->index; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 375 | return -1; |
| 376 | } |
| 377 | /* let hid-input decide for the others */ |
| 378 | return 0; |
| 379 | |
| 380 | case 0xff000000: |
| 381 | /* we do not want to map these: no input-oriented meaning */ |
| 382 | return -1; |
| 383 | } |
| 384 | |
| 385 | return 0; |
| 386 | } |
| 387 | |
| 388 | static int mt_input_mapped(struct hid_device *hdev, struct hid_input *hi, |
| 389 | struct hid_field *field, struct hid_usage *usage, |
| 390 | unsigned long **bit, int *max) |
| 391 | { |
| 392 | if (usage->type == EV_KEY || usage->type == EV_ABS) |
| 393 | set_bit(usage->type, hi->input->evbit); |
| 394 | |
| 395 | return -1; |
| 396 | } |
| 397 | |
| 398 | static int mt_compute_slot(struct mt_device *td) |
| 399 | { |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 400 | __s32 quirks = td->mtclass.quirks; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 401 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 402 | if (quirks & MT_QUIRK_SLOT_IS_CONTACTID) |
| 403 | return td->curdata.contactid; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 404 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 405 | if (quirks & MT_QUIRK_CYPRESS) |
Benjamin Tissoires | a3b5e57 | 2011-01-07 23:46:30 +0100 | [diff] [blame] | 406 | return cypress_compute_slot(td); |
| 407 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 408 | if (quirks & MT_QUIRK_SLOT_IS_CONTACTNUMBER) |
| 409 | return td->num_received; |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 410 | |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 411 | if (quirks & MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE) |
| 412 | return td->curdata.contactid - 1; |
| 413 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 414 | return find_slot_from_contactid(td); |
| 415 | } |
| 416 | |
| 417 | /* |
| 418 | * this function is called when a whole contact has been processed, |
| 419 | * so that it can assign it to a slot and store the data there |
| 420 | */ |
| 421 | static void mt_complete_slot(struct mt_device *td) |
| 422 | { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 423 | td->curdata.seen_in_this_frame = true; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 424 | if (td->curvalid) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 425 | int slotnum = mt_compute_slot(td); |
| 426 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 427 | if (slotnum >= 0 && slotnum < td->maxcontacts) |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 428 | td->slots[slotnum] = td->curdata; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 429 | } |
| 430 | td->num_received++; |
| 431 | } |
| 432 | |
| 433 | |
| 434 | /* |
| 435 | * this function is called when a whole packet has been received and processed, |
| 436 | * so that it can decide what to send to the input layer. |
| 437 | */ |
| 438 | static void mt_emit_event(struct mt_device *td, struct input_dev *input) |
| 439 | { |
| 440 | int i; |
| 441 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 442 | for (i = 0; i < td->maxcontacts; ++i) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 443 | struct mt_slot *s = &(td->slots[i]); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 444 | if ((td->mtclass.quirks & MT_QUIRK_NOT_SEEN_MEANS_UP) && |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 445 | !s->seen_in_this_frame) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 446 | s->touch_state = false; |
| 447 | } |
| 448 | |
| 449 | input_mt_slot(input, i); |
| 450 | input_mt_report_slot_state(input, MT_TOOL_FINGER, |
| 451 | s->touch_state); |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 452 | if (s->touch_state) { |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 453 | /* this finger is on the screen */ |
| 454 | int wide = (s->w > s->h); |
| 455 | /* divided by two to match visual scale of touch */ |
| 456 | int major = max(s->w, s->h) >> 1; |
| 457 | int minor = min(s->w, s->h) >> 1; |
| 458 | |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 459 | input_event(input, EV_ABS, ABS_MT_POSITION_X, s->x); |
| 460 | input_event(input, EV_ABS, ABS_MT_POSITION_Y, s->y); |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 461 | input_event(input, EV_ABS, ABS_MT_ORIENTATION, wide); |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 462 | input_event(input, EV_ABS, ABS_MT_PRESSURE, s->p); |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 463 | input_event(input, EV_ABS, ABS_MT_TOUCH_MAJOR, major); |
| 464 | input_event(input, EV_ABS, ABS_MT_TOUCH_MINOR, minor); |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 465 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 466 | s->seen_in_this_frame = false; |
| 467 | |
| 468 | } |
| 469 | |
| 470 | input_mt_report_pointer_emulation(input, true); |
| 471 | input_sync(input); |
| 472 | td->num_received = 0; |
| 473 | } |
| 474 | |
| 475 | |
| 476 | |
| 477 | static int mt_event(struct hid_device *hid, struct hid_field *field, |
| 478 | struct hid_usage *usage, __s32 value) |
| 479 | { |
| 480 | struct mt_device *td = hid_get_drvdata(hid); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 481 | __s32 quirks = td->mtclass.quirks; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 482 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 483 | if (hid->claimed & HID_CLAIMED_INPUT && td->slots) { |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 484 | switch (usage->hid) { |
| 485 | case HID_DG_INRANGE: |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 486 | if (quirks & MT_QUIRK_ALWAYS_VALID) |
| 487 | td->curvalid = true; |
| 488 | else if (quirks & MT_QUIRK_VALID_IS_INRANGE) |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 489 | td->curvalid = value; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 490 | break; |
| 491 | case HID_DG_TIPSWITCH: |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 492 | if (quirks & MT_QUIRK_NOT_SEEN_MEANS_UP) |
| 493 | td->curvalid = value; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 494 | td->curdata.touch_state = value; |
| 495 | break; |
| 496 | case HID_DG_CONFIDENCE: |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 497 | if (quirks & MT_QUIRK_VALID_IS_CONFIDENCE) |
| 498 | td->curvalid = value; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 499 | break; |
| 500 | case HID_DG_CONTACTID: |
| 501 | td->curdata.contactid = value; |
| 502 | break; |
| 503 | case HID_DG_TIPPRESSURE: |
| 504 | td->curdata.p = value; |
| 505 | break; |
| 506 | case HID_GD_X: |
| 507 | td->curdata.x = value; |
| 508 | break; |
| 509 | case HID_GD_Y: |
| 510 | td->curdata.y = value; |
| 511 | break; |
| 512 | case HID_DG_WIDTH: |
| 513 | td->curdata.w = value; |
| 514 | break; |
| 515 | case HID_DG_HEIGHT: |
| 516 | td->curdata.h = value; |
| 517 | break; |
| 518 | case HID_DG_CONTACTCOUNT: |
| 519 | /* |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 520 | * Includes multi-packet support where subsequent |
| 521 | * packets are sent with zero contactcount. |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 522 | */ |
| 523 | if (value) |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 524 | td->num_expected = value; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 525 | break; |
| 526 | |
| 527 | default: |
| 528 | /* fallback to the generic hidinput handling */ |
| 529 | return 0; |
| 530 | } |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 531 | |
Henrik Rydberg | f153fc3 | 2011-03-09 06:35:25 +0100 | [diff] [blame] | 532 | if (usage->hid == td->last_slot_field) { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 533 | mt_complete_slot(td); |
Henrik Rydberg | f153fc3 | 2011-03-09 06:35:25 +0100 | [diff] [blame] | 534 | } |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 535 | |
| 536 | if (field->index == td->last_field_index |
| 537 | && td->num_received >= td->num_expected) |
| 538 | mt_emit_event(td, field->hidinput->input); |
| 539 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 540 | } |
| 541 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 542 | /* we have handled the hidinput part, now remains hiddev */ |
| 543 | if (hid->claimed & HID_CLAIMED_HIDDEV && hid->hiddev_hid_event) |
| 544 | hid->hiddev_hid_event(hid, field, usage, value); |
| 545 | |
| 546 | return 1; |
| 547 | } |
| 548 | |
| 549 | static void mt_set_input_mode(struct hid_device *hdev) |
| 550 | { |
| 551 | struct mt_device *td = hid_get_drvdata(hdev); |
| 552 | struct hid_report *r; |
| 553 | struct hid_report_enum *re; |
| 554 | |
| 555 | if (td->inputmode < 0) |
| 556 | return; |
| 557 | |
| 558 | re = &(hdev->report_enum[HID_FEATURE_REPORT]); |
| 559 | r = re->report_id_hash[td->inputmode]; |
| 560 | if (r) { |
| 561 | r->field[0]->value[0] = 0x02; |
| 562 | usbhid_submit_report(hdev, r, USB_DIR_OUT); |
| 563 | } |
| 564 | } |
| 565 | |
| 566 | static int mt_probe(struct hid_device *hdev, const struct hid_device_id *id) |
| 567 | { |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 568 | int ret, i; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 569 | struct mt_device *td; |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 570 | struct mt_class *mtclass = mt_classes; /* MT_CLS_DEFAULT */ |
| 571 | |
| 572 | for (i = 0; mt_classes[i].name ; i++) { |
| 573 | if (id->driver_data == mt_classes[i].name) { |
| 574 | mtclass = &(mt_classes[i]); |
| 575 | break; |
| 576 | } |
| 577 | } |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 578 | |
Henrik Rydberg | d682bd7 | 2011-11-01 15:26:31 +0100 | [diff] [blame] | 579 | /* This allows the driver to correctly support devices |
| 580 | * that emit events over several HID messages. |
| 581 | */ |
| 582 | hdev->quirks |= HID_QUIRK_NO_INPUT_SYNC; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 583 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 584 | td = kzalloc(sizeof(struct mt_device), GFP_KERNEL); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 585 | if (!td) { |
| 586 | dev_err(&hdev->dev, "cannot allocate multitouch data\n"); |
| 587 | return -ENOMEM; |
| 588 | } |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 589 | td->mtclass = *mtclass; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 590 | td->inputmode = -1; |
Benjamin Tissoires | b84bd27 | 2011-06-12 08:22:08 +0200 | [diff] [blame] | 591 | td->last_mt_collection = -1; |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 592 | hid_set_drvdata(hdev, td); |
| 593 | |
| 594 | ret = hid_parse(hdev); |
| 595 | if (ret != 0) |
| 596 | goto fail; |
| 597 | |
| 598 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); |
Benjamin Tissoires | 2d93666 | 2011-01-11 16:45:54 +0100 | [diff] [blame] | 599 | if (ret) |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 600 | goto fail; |
| 601 | |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 602 | td->slots = kzalloc(td->maxcontacts * sizeof(struct mt_slot), |
| 603 | GFP_KERNEL); |
| 604 | if (!td->slots) { |
| 605 | dev_err(&hdev->dev, "cannot allocate multitouch slots\n"); |
| 606 | hid_hw_stop(hdev); |
| 607 | ret = -ENOMEM; |
| 608 | goto fail; |
| 609 | } |
| 610 | |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 611 | ret = sysfs_create_group(&hdev->dev.kobj, &mt_attribute_group); |
| 612 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 613 | mt_set_input_mode(hdev); |
| 614 | |
| 615 | return 0; |
| 616 | |
| 617 | fail: |
| 618 | kfree(td); |
| 619 | return ret; |
| 620 | } |
| 621 | |
| 622 | #ifdef CONFIG_PM |
| 623 | static int mt_reset_resume(struct hid_device *hdev) |
| 624 | { |
| 625 | mt_set_input_mode(hdev); |
| 626 | return 0; |
| 627 | } |
| 628 | #endif |
| 629 | |
| 630 | static void mt_remove(struct hid_device *hdev) |
| 631 | { |
| 632 | struct mt_device *td = hid_get_drvdata(hdev); |
Benjamin Tissoires | eec29e3 | 2011-11-23 10:54:28 +0100 | [diff] [blame] | 633 | sysfs_remove_group(&hdev->dev.kobj, &mt_attribute_group); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 634 | hid_hw_stop(hdev); |
Benjamin Tissoires | 9498f95 | 2011-03-18 14:27:52 +0100 | [diff] [blame] | 635 | kfree(td->slots); |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 636 | kfree(td); |
| 637 | hid_set_drvdata(hdev, NULL); |
| 638 | } |
| 639 | |
| 640 | static const struct hid_device_id mt_devices[] = { |
| 641 | |
Benjamin Tissoires | f786bba | 2011-03-22 17:34:01 +0100 | [diff] [blame] | 642 | /* 3M panels */ |
| 643 | { .driver_data = MT_CLS_3M, |
| 644 | HID_USB_DEVICE(USB_VENDOR_ID_3M, |
| 645 | USB_DEVICE_ID_3M1968) }, |
| 646 | { .driver_data = MT_CLS_3M, |
| 647 | HID_USB_DEVICE(USB_VENDOR_ID_3M, |
| 648 | USB_DEVICE_ID_3M2256) }, |
| 649 | |
Benjamin Tissoires | e6aac34 | 2011-05-19 14:18:13 +0200 | [diff] [blame] | 650 | /* ActionStar panels */ |
| 651 | { .driver_data = MT_CLS_DEFAULT, |
| 652 | HID_USB_DEVICE(USB_VENDOR_ID_ACTIONSTAR, |
| 653 | USB_DEVICE_ID_ACTIONSTAR_1011) }, |
| 654 | |
Benjamin Tissoires | a841b62 | 2011-03-18 14:27:54 +0100 | [diff] [blame] | 655 | /* Cando panels */ |
| 656 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
| 657 | HID_USB_DEVICE(USB_VENDOR_ID_CANDO, |
| 658 | USB_DEVICE_ID_CANDO_MULTI_TOUCH) }, |
| 659 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
| 660 | HID_USB_DEVICE(USB_VENDOR_ID_CANDO, |
| 661 | USB_DEVICE_ID_CANDO_MULTI_TOUCH_10_1) }, |
| 662 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
| 663 | HID_USB_DEVICE(USB_VENDOR_ID_CANDO, |
| 664 | USB_DEVICE_ID_CANDO_MULTI_TOUCH_11_6) }, |
| 665 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
| 666 | HID_USB_DEVICE(USB_VENDOR_ID_CANDO, |
| 667 | USB_DEVICE_ID_CANDO_MULTI_TOUCH_15_6) }, |
| 668 | |
Austin Zhang | 942fd42 | 2011-05-28 02:03:47 +0800 | [diff] [blame] | 669 | /* Chunghwa Telecom touch panels */ |
| 670 | { .driver_data = MT_CLS_DEFAULT, |
| 671 | HID_USB_DEVICE(USB_VENDOR_ID_CHUNGHWAT, |
| 672 | USB_DEVICE_ID_CHUNGHWAT_MULTITOUCH) }, |
| 673 | |
Benjamin Tissoires | 79603dc | 2011-05-19 14:18:14 +0200 | [diff] [blame] | 674 | /* CVTouch panels */ |
| 675 | { .driver_data = MT_CLS_DEFAULT, |
| 676 | HID_USB_DEVICE(USB_VENDOR_ID_CVTOUCH, |
| 677 | USB_DEVICE_ID_CVTOUCH_SCREEN) }, |
| 678 | |
Benjamin Tissoires | a3b5e57 | 2011-01-07 23:46:30 +0100 | [diff] [blame] | 679 | /* Cypress panel */ |
| 680 | { .driver_data = MT_CLS_CYPRESS, |
| 681 | HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, |
| 682 | USB_DEVICE_ID_CYPRESS_TRUETOUCH) }, |
| 683 | |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 684 | /* eGalax devices (resistive) */ |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 685 | { .driver_data = MT_CLS_EGALAX, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 686 | HID_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 687 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480D) }, |
| 688 | { .driver_data = MT_CLS_EGALAX, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 689 | HID_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 690 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480E) }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 691 | |
| 692 | /* eGalax devices (capacitive) */ |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 693 | { .driver_data = MT_CLS_EGALAX, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 694 | HID_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 695 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_720C) }, |
| 696 | { .driver_data = MT_CLS_EGALAX, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 697 | HID_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 698 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_726B) }, |
| 699 | { .driver_data = MT_CLS_EGALAX, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 700 | HID_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 701 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72A1) }, |
| 702 | { .driver_data = MT_CLS_EGALAX, |
Chris Bagwell | 1fd8f04 | 2011-11-23 10:54:27 +0100 | [diff] [blame] | 703 | HID_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Marek Vasut | bb9ff21 | 2011-11-23 10:54:32 +0100 | [diff] [blame^] | 704 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7302) }, |
| 705 | { .driver_data = MT_CLS_EGALAX, |
| 706 | HID_USB_DEVICE(USB_VENDOR_ID_DWAV, |
Benjamin Tissoires | e36f690 | 2011-11-23 10:54:31 +0100 | [diff] [blame] | 707 | USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_A001) }, |
Benjamin Tissoires | 2240828 | 2011-05-20 15:59:34 +0200 | [diff] [blame] | 708 | |
Benjamin Tissoires | c04abee | 2011-05-19 11:37:29 +0200 | [diff] [blame] | 709 | /* Elo TouchSystems IntelliTouch Plus panel */ |
| 710 | { .driver_data = MT_CLS_DUAL_NSMU_CONTACTID, |
| 711 | HID_USB_DEVICE(USB_VENDOR_ID_ELO, |
| 712 | USB_DEVICE_ID_ELO_TS2515) }, |
| 713 | |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 714 | /* GeneralTouch panel */ |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 715 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, |
Benjamin Tissoires | 5572da0 | 2011-01-07 23:47:27 +0100 | [diff] [blame] | 716 | HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, |
| 717 | USB_DEVICE_ID_GENERAL_TOUCH_WIN7_TWOFINGERS) }, |
| 718 | |
Benjamin Tissoires | ee0fbd1 | 2011-05-19 14:18:15 +0200 | [diff] [blame] | 719 | /* GoodTouch panels */ |
| 720 | { .driver_data = MT_CLS_DEFAULT, |
| 721 | HID_USB_DEVICE(USB_VENDOR_ID_GOODTOUCH, |
| 722 | USB_DEVICE_ID_GOODTOUCH_000f) }, |
| 723 | |
Stephane Chatty | a062cc5 | 2011-09-17 22:27:30 +0200 | [diff] [blame] | 724 | /* Ideacom panel */ |
| 725 | { .driver_data = MT_CLS_SERIAL, |
| 726 | HID_USB_DEVICE(USB_VENDOR_ID_IDEACOM, |
| 727 | USB_DEVICE_ID_IDEACOM_IDC6650) }, |
| 728 | |
Austin Zhang | 4e61f0d | 2011-05-09 23:54:14 +0800 | [diff] [blame] | 729 | /* Ilitek dual touch panel */ |
| 730 | { .driver_data = MT_CLS_DEFAULT, |
| 731 | HID_USB_DEVICE(USB_VENDOR_ID_ILITEK, |
| 732 | USB_DEVICE_ID_ILITEK_MULTITOUCH) }, |
| 733 | |
Benjamin Tissoires | 4dfcced | 2011-01-31 11:28:22 +0100 | [diff] [blame] | 734 | /* IRTOUCH panels */ |
| 735 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, |
| 736 | HID_USB_DEVICE(USB_VENDOR_ID_IRTOUCHSYSTEMS, |
| 737 | USB_DEVICE_ID_IRTOUCH_INFRARED_USB) }, |
| 738 | |
Jeff Brown | c50bb1a | 2011-08-15 21:12:09 -0700 | [diff] [blame] | 739 | /* LG Display panels */ |
| 740 | { .driver_data = MT_CLS_DEFAULT, |
| 741 | HID_USB_DEVICE(USB_VENDOR_ID_LG, |
| 742 | USB_DEVICE_ID_LG_MULTITOUCH) }, |
| 743 | |
Benjamin Tissoires | df167c4 | 2011-05-18 15:27:24 +0200 | [diff] [blame] | 744 | /* Lumio panels */ |
| 745 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
| 746 | HID_USB_DEVICE(USB_VENDOR_ID_LUMIO, |
| 747 | USB_DEVICE_ID_CRYSTALTOUCH) }, |
Benjamin Tissoires | c3ead6d | 2011-06-21 15:01:55 +0200 | [diff] [blame] | 748 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
| 749 | HID_USB_DEVICE(USB_VENDOR_ID_LUMIO, |
| 750 | USB_DEVICE_ID_CRYSTALTOUCH_DUAL) }, |
Benjamin Tissoires | df167c4 | 2011-05-18 15:27:24 +0200 | [diff] [blame] | 751 | |
Benjamin Tissoires | 4a6ee68 | 2011-04-22 11:51:48 +0200 | [diff] [blame] | 752 | /* MosArt panels */ |
| 753 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
| 754 | HID_USB_DEVICE(USB_VENDOR_ID_ASUS, |
| 755 | USB_DEVICE_ID_ASUS_T91MT)}, |
| 756 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
| 757 | HID_USB_DEVICE(USB_VENDOR_ID_ASUS, |
| 758 | USB_DEVICE_ID_ASUSTEK_MULTITOUCH_YFO) }, |
| 759 | { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, |
| 760 | HID_USB_DEVICE(USB_VENDOR_ID_TURBOX, |
| 761 | USB_DEVICE_ID_TURBOX_TOUCHSCREEN_MOSART) }, |
| 762 | |
John Sung | 6ab3a9a | 2011-04-21 16:21:52 +0200 | [diff] [blame] | 763 | /* PenMount panels */ |
| 764 | { .driver_data = MT_CLS_CONFIDENCE, |
| 765 | HID_USB_DEVICE(USB_VENDOR_ID_PENMOUNT, |
| 766 | USB_DEVICE_ID_PENMOUNT_PCI) }, |
| 767 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 768 | /* PixCir-based panels */ |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 769 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 770 | HID_USB_DEVICE(USB_VENDOR_ID_HANVON, |
| 771 | USB_DEVICE_ID_HANVON_MULTITOUCH) }, |
Benjamin Tissoires | 1e9cf35 | 2011-01-31 11:28:20 +0100 | [diff] [blame] | 772 | { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 773 | HID_USB_DEVICE(USB_VENDOR_ID_CANDO, |
| 774 | USB_DEVICE_ID_CANDO_PIXCIR_MULTI_TOUCH) }, |
| 775 | |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 776 | /* Stantum panels */ |
Benjamin Tissoires | bf5af9b | 2011-05-19 14:18:18 +0200 | [diff] [blame] | 777 | { .driver_data = MT_CLS_CONFIDENCE, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 778 | HID_USB_DEVICE(USB_VENDOR_ID_STANTUM, |
| 779 | USB_DEVICE_ID_MTP)}, |
Benjamin Tissoires | bf5af9b | 2011-05-19 14:18:18 +0200 | [diff] [blame] | 780 | { .driver_data = MT_CLS_CONFIDENCE, |
Benjamin Tissoires | 85a6008 | 2011-06-21 15:01:54 +0200 | [diff] [blame] | 781 | HID_USB_DEVICE(USB_VENDOR_ID_STANTUM_STM, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 782 | USB_DEVICE_ID_MTP_STM)}, |
Benjamin Tissoires | bf5af9b | 2011-05-19 14:18:18 +0200 | [diff] [blame] | 783 | { .driver_data = MT_CLS_CONFIDENCE, |
Benjamin Tissoires | 85a6008 | 2011-06-21 15:01:54 +0200 | [diff] [blame] | 784 | HID_USB_DEVICE(USB_VENDOR_ID_STANTUM_SITRONIX, |
Benjamin Tissoires | 043b403 | 2011-03-18 14:27:53 +0100 | [diff] [blame] | 785 | USB_DEVICE_ID_MTP_SITRONIX)}, |
| 786 | |
Benjamin Tissoires | 5e74e56 | 2011-05-19 14:18:16 +0200 | [diff] [blame] | 787 | /* Touch International panels */ |
| 788 | { .driver_data = MT_CLS_DEFAULT, |
| 789 | HID_USB_DEVICE(USB_VENDOR_ID_TOUCH_INTL, |
| 790 | USB_DEVICE_ID_TOUCH_INTL_MULTI_TOUCH) }, |
| 791 | |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 792 | /* Unitec panels */ |
| 793 | { .driver_data = MT_CLS_DEFAULT, |
| 794 | HID_USB_DEVICE(USB_VENDOR_ID_UNITEC, |
| 795 | USB_DEVICE_ID_UNITEC_USB_TOUCH_0709) }, |
| 796 | { .driver_data = MT_CLS_DEFAULT, |
| 797 | HID_USB_DEVICE(USB_VENDOR_ID_UNITEC, |
| 798 | USB_DEVICE_ID_UNITEC_USB_TOUCH_0A19) }, |
ice chien | bc8a2a9 | 2011-07-15 16:58:06 +0800 | [diff] [blame] | 799 | /* XAT */ |
| 800 | { .driver_data = MT_CLS_DEFAULT, |
| 801 | HID_USB_DEVICE(USB_VENDOR_ID_XAT, |
| 802 | USB_DEVICE_ID_XAT_CSR) }, |
Benjamin Tissoires | 617b64f | 2011-05-19 14:18:17 +0200 | [diff] [blame] | 803 | |
Benjamin Tissoires | 5519cab | 2011-01-07 23:45:50 +0100 | [diff] [blame] | 804 | { } |
| 805 | }; |
| 806 | MODULE_DEVICE_TABLE(hid, mt_devices); |
| 807 | |
| 808 | static const struct hid_usage_id mt_grabbed_usages[] = { |
| 809 | { HID_ANY_ID, HID_ANY_ID, HID_ANY_ID }, |
| 810 | { HID_ANY_ID - 1, HID_ANY_ID - 1, HID_ANY_ID - 1} |
| 811 | }; |
| 812 | |
| 813 | static struct hid_driver mt_driver = { |
| 814 | .name = "hid-multitouch", |
| 815 | .id_table = mt_devices, |
| 816 | .probe = mt_probe, |
| 817 | .remove = mt_remove, |
| 818 | .input_mapping = mt_input_mapping, |
| 819 | .input_mapped = mt_input_mapped, |
| 820 | .feature_mapping = mt_feature_mapping, |
| 821 | .usage_table = mt_grabbed_usages, |
| 822 | .event = mt_event, |
| 823 | #ifdef CONFIG_PM |
| 824 | .reset_resume = mt_reset_resume, |
| 825 | #endif |
| 826 | }; |
| 827 | |
| 828 | static int __init mt_init(void) |
| 829 | { |
| 830 | return hid_register_driver(&mt_driver); |
| 831 | } |
| 832 | |
| 833 | static void __exit mt_exit(void) |
| 834 | { |
| 835 | hid_unregister_driver(&mt_driver); |
| 836 | } |
| 837 | |
| 838 | module_init(mt_init); |
| 839 | module_exit(mt_exit); |