]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/hid/wacom_wac.c
HID: wacom: generic: Add support for vendor-defined "Sense" usage
[mirror_ubuntu-artful-kernel.git] / drivers / hid / wacom_wac.c
CommitLineData
3bea733a 1/*
4104d13f 2 * drivers/input/tablet/wacom_wac.c
3bea733a 3 *
ee54500d 4 * USB Wacom tablet support - Wacom specific code
3bea733a
PC
5 *
6 */
7
8/*
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
51269fe8 14
3bea733a 15#include "wacom_wac.h"
51269fe8 16#include "wacom.h"
47c78e89 17#include <linux/input/mt.h>
3bea733a 18
e35fb8c1
PC
19/* resolution for penabled devices */
20#define WACOM_PL_RES 20
21#define WACOM_PENPRTN_RES 40
22#define WACOM_VOLITO_RES 50
23#define WACOM_GRAPHIRE_RES 80
24#define WACOM_INTUOS_RES 100
25#define WACOM_INTUOS3_RES 200
26
fa770340
PC
27/* Newer Cintiq and DTU have an offset between tablet and screen areas */
28#define WACOM_DTU_OFFSET 200
29#define WACOM_CINTIQ_OFFSET 400
30
387142bb
BT
31/*
32 * Scale factor relating reported contact size to logical contact area.
4e904954
JG
33 * 2^14/pi is a good approximation on Intuos5 and 3rd-gen Bamboo
34 */
35#define WACOM_CONTACT_AREA_SCALE 2607
36
1924e05e
PC
37static bool touch_arbitration = 1;
38module_param(touch_arbitration, bool, 0644);
39MODULE_PARM_DESC(touch_arbitration, " on (Y) off (N)");
40
c7f0522a
JG
41static void wacom_report_numbered_buttons(struct input_dev *input_dev,
42 int button_count, int mask);
43
387142bb
BT
44/*
45 * Percent of battery capacity for Graphire.
46 * 8th value means AC online and show 100% capacity.
47 */
48static unsigned short batcap_gr[8] = { 1, 15, 25, 35, 50, 70, 100, 100 };
49
81af7e61
BT
50/*
51 * Percent of battery capacity for Intuos4 WL, AC has a separate bit.
52 */
53static unsigned short batcap_i4[8] = { 1, 15, 30, 45, 60, 70, 85, 100 };
54
59d69bc8
BT
55static void __wacom_notify_battery(struct wacom_battery *battery,
56 int bat_capacity, bool bat_charging,
57 bool bat_connected, bool ps_connected)
58{
59 bool changed = battery->battery_capacity != bat_capacity ||
60 battery->bat_charging != bat_charging ||
61 battery->bat_connected != bat_connected ||
62 battery->ps_connected != ps_connected;
63
64 if (changed) {
65 battery->battery_capacity = bat_capacity;
66 battery->bat_charging = bat_charging;
67 battery->bat_connected = bat_connected;
68 battery->ps_connected = ps_connected;
69
70 if (battery->battery)
71 power_supply_changed(battery->battery);
72 }
73}
74
953f2c5f 75static void wacom_notify_battery(struct wacom_wac *wacom_wac,
71fa641e
JG
76 int bat_capacity, bool bat_charging, bool bat_connected,
77 bool ps_connected)
953f2c5f
JG
78{
79 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
953f2c5f 80
59d69bc8
BT
81 __wacom_notify_battery(&wacom->battery, bat_capacity, bat_charging,
82 bat_connected, ps_connected);
953f2c5f
JG
83}
84
95dd3b30 85static int wacom_penpartner_irq(struct wacom_wac *wacom)
3bea733a
PC
86{
87 unsigned char *data = wacom->data;
2a6cdbdd 88 struct input_dev *input = wacom->pen_input;
3bea733a
PC
89
90 switch (data[0]) {
73a97f4f
DT
91 case 1:
92 if (data[5] & 0x80) {
93 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
94 wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
8da23fc1
DT
95 input_report_key(input, wacom->tool[0], 1);
96 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
252f7769
DT
97 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
98 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
8da23fc1
DT
99 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
100 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -127));
101 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
73a97f4f 102 } else {
8da23fc1
DT
103 input_report_key(input, wacom->tool[0], 0);
104 input_report_abs(input, ABS_MISC, 0); /* report tool id */
105 input_report_abs(input, ABS_PRESSURE, -1);
106 input_report_key(input, BTN_TOUCH, 0);
73a97f4f
DT
107 }
108 break;
8da23fc1 109
73a97f4f 110 case 2:
8da23fc1
DT
111 input_report_key(input, BTN_TOOL_PEN, 1);
112 input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
252f7769
DT
113 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
114 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
8da23fc1
DT
115 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
116 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
117 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
73a97f4f 118 break;
8da23fc1 119
73a97f4f 120 default:
eb71d1bb
DT
121 dev_dbg(input->dev.parent,
122 "%s: received unknown report #%d\n", __func__, data[0]);
73a97f4f 123 return 0;
3bea733a 124 }
8da23fc1 125
3bea733a
PC
126 return 1;
127}
128
95dd3b30 129static int wacom_pl_irq(struct wacom_wac *wacom)
3bea733a 130{
e33da8a5 131 struct wacom_features *features = &wacom->features;
3bea733a 132 unsigned char *data = wacom->data;
2a6cdbdd 133 struct input_dev *input = wacom->pen_input;
e34b9d2f 134 int prox, pressure;
3bea733a 135
cad74700 136 if (data[0] != WACOM_REPORT_PENABLED) {
eb71d1bb
DT
137 dev_dbg(input->dev.parent,
138 "%s: received unknown report #%d\n", __func__, data[0]);
3bea733a
PC
139 return 0;
140 }
141
142 prox = data[1] & 0x40;
143
025bcc15
JG
144 if (!wacom->id[0]) {
145 if ((data[0] & 0x10) || (data[4] & 0x20)) {
146 wacom->tool[0] = BTN_TOOL_RUBBER;
147 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a 148 }
025bcc15
JG
149 else {
150 wacom->tool[0] = BTN_TOOL_PEN;
e34b9d2f 151 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a 152 }
3bea733a 153 }
8da23fc1 154
025bcc15
JG
155 /* If the eraser is in prox, STYLUS2 is always set. If we
156 * mis-detected the type and notice that STYLUS2 isn't set
157 * then force the eraser out of prox and let the pen in.
158 */
159 if (wacom->tool[0] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
160 input_report_key(input, BTN_TOOL_RUBBER, 0);
161 input_report_abs(input, ABS_MISC, 0);
162 input_sync(input);
163 wacom->tool[0] = BTN_TOOL_PEN;
164 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a
PC
165 }
166
025bcc15
JG
167 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
168 if (features->pressure_max > 255)
169 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
170 pressure += (features->pressure_max + 1) / 2;
171
172 input_report_abs(input, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
173 input_report_abs(input, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
174 input_report_abs(input, ABS_PRESSURE, pressure);
175
176 input_report_key(input, BTN_TOUCH, data[4] & 0x08);
177 input_report_key(input, BTN_STYLUS, data[4] & 0x10);
178 /* Only allow the stylus2 button to be reported for the pen tool. */
179 input_report_key(input, BTN_STYLUS2, (wacom->tool[0] == BTN_TOOL_PEN) && (data[4] & 0x20));
180
181 if (!prox)
182 wacom->id[0] = 0;
183 input_report_key(input, wacom->tool[0], prox);
184 input_report_abs(input, ABS_MISC, wacom->id[0]);
3bea733a
PC
185 return 1;
186}
187
95dd3b30 188static int wacom_ptu_irq(struct wacom_wac *wacom)
3bea733a
PC
189{
190 unsigned char *data = wacom->data;
2a6cdbdd 191 struct input_dev *input = wacom->pen_input;
3bea733a 192
cad74700 193 if (data[0] != WACOM_REPORT_PENABLED) {
eb71d1bb
DT
194 dev_dbg(input->dev.parent,
195 "%s: received unknown report #%d\n", __func__, data[0]);
3bea733a
PC
196 return 0;
197 }
198
3bea733a 199 if (data[1] & 0x04) {
8da23fc1
DT
200 input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
201 input_report_key(input, BTN_TOUCH, data[1] & 0x08);
e34b9d2f 202 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a 203 } else {
8da23fc1
DT
204 input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
205 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
e34b9d2f 206 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a 207 }
8da23fc1 208 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
252f7769
DT
209 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
210 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
211 input_report_abs(input, ABS_PRESSURE, le16_to_cpup((__le16 *)&data[6]));
8da23fc1
DT
212 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
213 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
3bea733a
PC
214 return 1;
215}
216
c8f2edc5
PC
217static int wacom_dtu_irq(struct wacom_wac *wacom)
218{
74b63417 219 unsigned char *data = wacom->data;
2a6cdbdd 220 struct input_dev *input = wacom->pen_input;
74b63417 221 int prox = data[1] & 0x20;
c8f2edc5 222
eb71d1bb
DT
223 dev_dbg(input->dev.parent,
224 "%s: received report #%d", __func__, data[0]);
c8f2edc5
PC
225
226 if (prox) {
227 /* Going into proximity select tool */
228 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
229 if (wacom->tool[0] == BTN_TOOL_PEN)
230 wacom->id[0] = STYLUS_DEVICE_ID;
231 else
232 wacom->id[0] = ERASER_DEVICE_ID;
233 }
234 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
235 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
236 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
237 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
74b63417 238 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x01) << 8) | data[6]);
c8f2edc5
PC
239 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
240 if (!prox) /* out-prox */
241 wacom->id[0] = 0;
242 input_report_key(input, wacom->tool[0], prox);
243 input_report_abs(input, ABS_MISC, wacom->id[0]);
244 return 1;
245}
246
497ab1f2
PC
247static int wacom_dtus_irq(struct wacom_wac *wacom)
248{
249 char *data = wacom->data;
2a6cdbdd 250 struct input_dev *input = wacom->pen_input;
497ab1f2
PC
251 unsigned short prox, pressure = 0;
252
253 if (data[0] != WACOM_REPORT_DTUS && data[0] != WACOM_REPORT_DTUSPAD) {
254 dev_dbg(input->dev.parent,
255 "%s: received unknown report #%d", __func__, data[0]);
256 return 0;
257 } else if (data[0] == WACOM_REPORT_DTUSPAD) {
422b0314 258 input = wacom->pad_input;
497ab1f2
PC
259 input_report_key(input, BTN_0, (data[1] & 0x01));
260 input_report_key(input, BTN_1, (data[1] & 0x02));
261 input_report_key(input, BTN_2, (data[1] & 0x04));
262 input_report_key(input, BTN_3, (data[1] & 0x08));
263 input_report_abs(input, ABS_MISC,
264 data[1] & 0x0f ? PAD_DEVICE_ID : 0);
497ab1f2
PC
265 return 1;
266 } else {
267 prox = data[1] & 0x80;
268 if (prox) {
269 switch ((data[1] >> 3) & 3) {
270 case 1: /* Rubber */
271 wacom->tool[0] = BTN_TOOL_RUBBER;
272 wacom->id[0] = ERASER_DEVICE_ID;
273 break;
274
275 case 2: /* Pen */
276 wacom->tool[0] = BTN_TOOL_PEN;
277 wacom->id[0] = STYLUS_DEVICE_ID;
278 break;
279 }
280 }
281
282 input_report_key(input, BTN_STYLUS, data[1] & 0x20);
283 input_report_key(input, BTN_STYLUS2, data[1] & 0x40);
284 input_report_abs(input, ABS_X, get_unaligned_be16(&data[3]));
285 input_report_abs(input, ABS_Y, get_unaligned_be16(&data[5]));
286 pressure = ((data[1] & 0x03) << 8) | (data[2] & 0xff);
287 input_report_abs(input, ABS_PRESSURE, pressure);
288 input_report_key(input, BTN_TOUCH, pressure > 10);
289
290 if (!prox) /* out-prox */
291 wacom->id[0] = 0;
292 input_report_key(input, wacom->tool[0], prox);
293 input_report_abs(input, ABS_MISC, wacom->id[0]);
497ab1f2
PC
294 return 1;
295 }
296}
297
95dd3b30 298static int wacom_graphire_irq(struct wacom_wac *wacom)
3bea733a 299{
e33da8a5 300 struct wacom_features *features = &wacom->features;
3bea733a 301 unsigned char *data = wacom->data;
2a6cdbdd 302 struct input_dev *input = wacom->pen_input;
3813810c 303 struct input_dev *pad_input = wacom->pad_input;
387142bb 304 int battery_capacity, ps_connected;
252f7769 305 int prox;
3b57ca0f
PC
306 int rw = 0;
307 int retval = 0;
3bea733a 308
387142bb
BT
309 if (features->type == GRAPHIRE_BT) {
310 if (data[0] != WACOM_REPORT_PENABLED_BT) {
311 dev_dbg(input->dev.parent,
312 "%s: received unknown report #%d\n", __func__,
313 data[0]);
314 goto exit;
315 }
316 } else if (data[0] != WACOM_REPORT_PENABLED) {
eb71d1bb
DT
317 dev_dbg(input->dev.parent,
318 "%s: received unknown report #%d\n", __func__, data[0]);
3b57ca0f 319 goto exit;
3bea733a
PC
320 }
321
3b57ca0f
PC
322 prox = data[1] & 0x80;
323 if (prox || wacom->id[0]) {
324 if (prox) {
325 switch ((data[1] >> 5) & 3) {
3bea733a
PC
326
327 case 0: /* Pen */
328 wacom->tool[0] = BTN_TOOL_PEN;
e34b9d2f 329 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a
PC
330 break;
331
332 case 1: /* Rubber */
333 wacom->tool[0] = BTN_TOOL_RUBBER;
e34b9d2f 334 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a
PC
335 break;
336
337 case 2: /* Mouse with wheel */
8da23fc1 338 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
3bea733a
PC
339 /* fall through */
340
341 case 3: /* Mouse without wheel */
342 wacom->tool[0] = BTN_TOOL_MOUSE;
e34b9d2f 343 wacom->id[0] = CURSOR_DEVICE_ID;
3bea733a 344 break;
3b57ca0f 345 }
3bea733a 346 }
252f7769
DT
347 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
348 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
3bea733a 349 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
387142bb
BT
350 if (features->type == GRAPHIRE_BT)
351 input_report_abs(input, ABS_PRESSURE, data[6] |
352 (((__u16) (data[1] & 0x08)) << 5));
353 else
354 input_report_abs(input, ABS_PRESSURE, data[6] |
355 ((data[7] & 0x03) << 8));
8da23fc1
DT
356 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
357 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
358 input_report_key(input, BTN_STYLUS2, data[1] & 0x04);
afb567e3 359 } else {
8da23fc1
DT
360 input_report_key(input, BTN_LEFT, data[1] & 0x01);
361 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
3b57ca0f
PC
362 if (features->type == WACOM_G4 ||
363 features->type == WACOM_MO) {
8da23fc1 364 input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f);
d9f66c1a 365 rw = (data[7] & 0x04) - (data[7] & 0x03);
387142bb
BT
366 } else if (features->type == GRAPHIRE_BT) {
367 /* Compute distance between mouse and tablet */
368 rw = 44 - (data[6] >> 2);
369 rw = clamp_val(rw, 0, 31);
370 input_report_abs(input, ABS_DISTANCE, rw);
371 if (((data[1] >> 5) & 3) == 2) {
372 /* Mouse with wheel */
373 input_report_key(input, BTN_MIDDLE,
374 data[1] & 0x04);
375 rw = (data[6] & 0x01) ? -1 :
376 (data[6] & 0x02) ? 1 : 0;
377 } else {
378 rw = 0;
379 }
3b57ca0f 380 } else {
8da23fc1 381 input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f);
d9f66c1a 382 rw = -(signed char)data[6];
3b57ca0f 383 }
8da23fc1 384 input_report_rel(input, REL_WHEEL, rw);
afb567e3 385 }
3b57ca0f
PC
386
387 if (!prox)
388 wacom->id[0] = 0;
8da23fc1
DT
389 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
390 input_report_key(input, wacom->tool[0], prox);
391 input_sync(input); /* sync last event */
80d4e8e9 392 }
3bea733a
PC
393
394 /* send pad data */
e33da8a5 395 switch (features->type) {
73a97f4f 396 case WACOM_G4:
3b57ca0f
PC
397 prox = data[7] & 0xf8;
398 if (prox || wacom->id[1]) {
e34b9d2f 399 wacom->id[1] = PAD_DEVICE_ID;
3813810c
BT
400 input_report_key(pad_input, BTN_BACK, (data[7] & 0x40));
401 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x80));
3bea733a 402 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
3813810c 403 input_report_rel(pad_input, REL_WHEEL, rw);
3b57ca0f
PC
404 if (!prox)
405 wacom->id[1] = 0;
3813810c 406 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
ab687b18 407 retval = 1;
3bea733a 408 }
7ecfbfd3 409 break;
73a97f4f
DT
410
411 case WACOM_MO:
3b57ca0f
PC
412 prox = (data[7] & 0xf8) || data[8];
413 if (prox || wacom->id[1]) {
e34b9d2f 414 wacom->id[1] = PAD_DEVICE_ID;
3813810c
BT
415 input_report_key(pad_input, BTN_BACK, (data[7] & 0x08));
416 input_report_key(pad_input, BTN_LEFT, (data[7] & 0x20));
417 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x10));
418 input_report_key(pad_input, BTN_RIGHT, (data[7] & 0x40));
419 input_report_abs(pad_input, ABS_WHEEL, (data[8] & 0x7f));
3b57ca0f
PC
420 if (!prox)
421 wacom->id[1] = 0;
3813810c 422 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
84460014 423 retval = 1;
7ecfbfd3
PC
424 }
425 break;
387142bb
BT
426 case GRAPHIRE_BT:
427 prox = data[7] & 0x03;
428 if (prox || wacom->id[1]) {
429 wacom->id[1] = PAD_DEVICE_ID;
430 input_report_key(pad_input, BTN_0, (data[7] & 0x02));
431 input_report_key(pad_input, BTN_1, (data[7] & 0x01));
3b57ca0f
PC
432 if (!prox)
433 wacom->id[1] = 0;
387142bb 434 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
84460014 435 retval = 1;
7ecfbfd3
PC
436 }
437 break;
3bea733a 438 }
387142bb
BT
439
440 /* Store current battery capacity and power supply state */
441 if (features->type == GRAPHIRE_BT) {
442 rw = (data[7] >> 2 & 0x07);
443 battery_capacity = batcap_gr[rw];
444 ps_connected = rw == 7;
953f2c5f 445 wacom_notify_battery(wacom, battery_capacity, ps_connected,
71fa641e 446 1, ps_connected);
3bea733a 447 }
3b57ca0f
PC
448exit:
449 return retval;
3bea733a
PC
450}
451
5fcad167
BT
452static void wacom_intuos_schedule_prox_event(struct wacom_wac *wacom_wac)
453{
454 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
0bbfe28a 455 struct wacom_features *features = &wacom_wac->features;
5fcad167
BT
456 struct hid_report *r;
457 struct hid_report_enum *re;
458
459 re = &(wacom->hdev->report_enum[HID_FEATURE_REPORT]);
0bbfe28a
JG
460 if (features->type == INTUOSHT2)
461 r = re->report_id_hash[WACOM_REPORT_INTUOSHT2_ID];
462 else
463 r = re->report_id_hash[WACOM_REPORT_INTUOS_ID1];
5fcad167
BT
464 if (r) {
465 hid_hw_request(wacom->hdev, r, HID_REQ_GET_REPORT);
466 }
467}
468
fb013a01
JG
469static int wacom_intuos_pad(struct wacom_wac *wacom)
470{
471 struct wacom_features *features = &wacom->features;
472 unsigned char *data = wacom->data;
473 struct input_dev *input = wacom->pad_input;
c7f0522a
JG
474 int i;
475 int buttons = 0, nbuttons = features->numbered_buttons;
476 int keys = 0, nkeys = 0;
477 int ring1 = 0, ring2 = 0;
478 int strip1 = 0, strip2 = 0;
479 bool prox = false;
fb013a01
JG
480
481 /* pad packets. Works as a second tool and is always in prox */
482 if (!(data[0] == WACOM_REPORT_INTUOSPAD || data[0] == WACOM_REPORT_INTUOS5PAD ||
483 data[0] == WACOM_REPORT_CINTIQPAD))
484 return 0;
485
486 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
c7f0522a
JG
487 buttons = (data[3] << 1) | (data[2] & 0x01);
488 ring1 = data[1];
fb013a01 489 } else if (features->type == DTK) {
c7f0522a 490 buttons = data[6];
fb013a01 491 } else if (features->type == WACOM_13HD) {
c7f0522a 492 buttons = (data[4] << 1) | (data[3] & 0x01);
fb013a01 493 } else if (features->type == WACOM_24HD) {
c7f0522a
JG
494 buttons = (data[8] << 8) | data[6];
495 ring1 = data[1];
496 ring2 = data[2];
fb013a01
JG
497
498 /*
499 * Three "buttons" are available on the 24HD which are
500 * physically implemented as a touchstrip. Each button
501 * is approximately 3 bits wide with a 2 bit spacing.
502 * The raw touchstrip bits are stored at:
503 * ((data[3] & 0x1f) << 8) | data[4])
504 */
c7f0522a
JG
505 nkeys = 3;
506 keys = ((data[3] & 0x1C) ? 1<<2 : 0) |
507 ((data[4] & 0xE0) ? 1<<1 : 0) |
508 ((data[4] & 0x07) ? 1<<0 : 0);
fb013a01 509 } else if (features->type == WACOM_27QHD) {
c7f0522a
JG
510 nkeys = 3;
511 keys = data[2] & 0x07;
fb013a01
JG
512
513 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[4]));
514 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[6]));
515 input_report_abs(input, ABS_Z, be16_to_cpup((__be16 *)&data[8]));
fb013a01
JG
516 } else if (features->type == CINTIQ_HYBRID) {
517 /*
518 * Do not send hardware buttons under Android. They
519 * are already sent to the system through GPIO (and
520 * have different meaning).
c7f0522a
JG
521 *
522 * d-pad right -> data[4] & 0x10
523 * d-pad up -> data[4] & 0x20
524 * d-pad left -> data[4] & 0x40
525 * d-pad down -> data[4] & 0x80
526 * d-pad center -> data[3] & 0x01
fb013a01 527 */
c7f0522a 528 buttons = (data[4] << 1) | (data[3] & 0x01);
fb013a01 529 } else if (features->type == CINTIQ_COMPANION_2) {
c7f0522a
JG
530 /* d-pad right -> data[4] & 0x10
531 * d-pad up -> data[4] & 0x20
532 * d-pad left -> data[4] & 0x40
533 * d-pad down -> data[4] & 0x80
534 * d-pad center -> data[3] & 0x01
535 */
0402b6b7 536 buttons = ((data[2] >> 4) << 7) |
c7f0522a
JG
537 ((data[1] & 0x04) << 6) |
538 ((data[2] & 0x0F) << 2) |
539 (data[1] & 0x03);
fb013a01 540 } else if (features->type >= INTUOS5S && features->type <= INTUOSPL) {
fb013a01
JG
541 /*
542 * ExpressKeys on Intuos5/Intuos Pro have a capacitive sensor in
543 * addition to the mechanical switch. Switch data is
544 * stored in data[4], capacitive data in data[5].
c7f0522a
JG
545 *
546 * Touch ring mode switch (data[3]) has no capacitive sensor
fb013a01 547 */
c7f0522a
JG
548 buttons = (data[4] << 1) | (data[3] & 0x01);
549 ring1 = data[2];
fb013a01
JG
550 } else {
551 if (features->type == WACOM_21UX2 || features->type == WACOM_22HD) {
c7f0522a
JG
552 buttons = (data[8] << 10) | ((data[7] & 0x01) << 9) |
553 (data[6] << 1) | (data[5] & 0x01);
fb013a01
JG
554
555 if (features->type == WACOM_22HD) {
c7f0522a
JG
556 nkeys = 3;
557 keys = data[9] & 0x07;
fb013a01
JG
558 }
559 } else {
c7f0522a
JG
560 buttons = ((data[6] & 0x10) << 10) |
561 ((data[5] & 0x10) << 9) |
562 ((data[6] & 0x0F) << 4) |
563 (data[5] & 0x0F);
fb013a01 564 }
f73d08d0
JG
565 strip1 = ((data[1] & 0x1f) << 8) | data[2];
566 strip2 = ((data[3] & 0x1f) << 8) | data[4];
fb013a01 567 }
c7f0522a 568
8f9cfdd3
DC
569 prox = (buttons & ~(~0 << nbuttons)) | (keys & ~(~0 << nkeys)) |
570 (ring1 & 0x80) | (ring2 & 0x80) | strip1 | strip2;
c7f0522a
JG
571
572 wacom_report_numbered_buttons(input, nbuttons, buttons);
573
574 for (i = 0; i < nkeys; i++)
575 input_report_key(input, KEY_PROG1 + i, keys & (1 << i));
576
577 input_report_abs(input, ABS_RX, strip1);
03a0dc54 578 input_report_abs(input, ABS_RY, strip2);
c7f0522a 579
aaae03e4
JG
580 input_report_abs(input, ABS_WHEEL, (ring1 & 0x80) ? (ring1 & 0x7f) : 0);
581 input_report_abs(input, ABS_THROTTLE, (ring2 & 0x80) ? (ring2 & 0x7f) : 0);
c7f0522a
JG
582
583 input_report_key(input, wacom->tool[1], prox ? 1 : 0);
584 input_report_abs(input, ABS_MISC, prox ? PAD_DEVICE_ID : 0);
585
586 input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
587
fb013a01
JG
588 return 1;
589}
590
7e129783
BT
591static int wacom_intuos_get_tool_type(int tool_id)
592{
593 int tool_type;
594
595 switch (tool_id) {
596 case 0x812: /* Inking pen */
597 case 0x801: /* Intuos3 Inking pen */
598 case 0x120802: /* Intuos4/5 Inking Pen */
599 case 0x012:
600 tool_type = BTN_TOOL_PENCIL;
601 break;
602
603 case 0x822: /* Pen */
604 case 0x842:
605 case 0x852:
606 case 0x823: /* Intuos3 Grip Pen */
607 case 0x813: /* Intuos3 Classic Pen */
608 case 0x885: /* Intuos3 Marker Pen */
609 case 0x802: /* Intuos4/5 13HD/24HD General Pen */
610 case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */
611 case 0x8e2: /* IntuosHT2 pen */
612 case 0x022:
613 case 0x100804: /* Intuos4/5 13HD/24HD Art Pen */
614 case 0x140802: /* Intuos4/5 13HD/24HD Classic Pen */
615 case 0x160802: /* Cintiq 13HD Pro Pen */
616 case 0x180802: /* DTH2242 Pen */
617 case 0x100802: /* Intuos4/5 13HD/24HD General Pen */
618 tool_type = BTN_TOOL_PEN;
619 break;
620
621 case 0x832: /* Stroke pen */
622 case 0x032:
623 tool_type = BTN_TOOL_BRUSH;
624 break;
625
626 case 0x007: /* Mouse 4D and 2D */
627 case 0x09c:
628 case 0x094:
629 case 0x017: /* Intuos3 2D Mouse */
630 case 0x806: /* Intuos4 Mouse */
631 tool_type = BTN_TOOL_MOUSE;
632 break;
633
634 case 0x096: /* Lens cursor */
635 case 0x097: /* Intuos3 Lens cursor */
636 case 0x006: /* Intuos4 Lens cursor */
637 tool_type = BTN_TOOL_LENS;
638 break;
639
640 case 0x82a: /* Eraser */
641 case 0x85a:
642 case 0x91a:
643 case 0xd1a:
644 case 0x0fa:
645 case 0x82b: /* Intuos3 Grip Pen Eraser */
646 case 0x81b: /* Intuos3 Classic Pen Eraser */
647 case 0x91b: /* Intuos3 Airbrush Eraser */
648 case 0x80c: /* Intuos4/5 13HD/24HD Marker Pen Eraser */
649 case 0x80a: /* Intuos4/5 13HD/24HD General Pen Eraser */
650 case 0x90a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
651 case 0x14080a: /* Intuos4/5 13HD/24HD Classic Pen Eraser */
652 case 0x10090a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
653 case 0x10080c: /* Intuos4/5 13HD/24HD Art Pen Eraser */
654 case 0x16080a: /* Cintiq 13HD Pro Pen Eraser */
655 case 0x18080a: /* DTH2242 Eraser */
656 case 0x10080a: /* Intuos4/5 13HD/24HD General Pen Eraser */
657 tool_type = BTN_TOOL_RUBBER;
658 break;
659
660 case 0xd12:
661 case 0x912:
662 case 0x112:
663 case 0x913: /* Intuos3 Airbrush */
664 case 0x902: /* Intuos4/5 13HD/24HD Airbrush */
665 case 0x100902: /* Intuos4/5 13HD/24HD Airbrush */
666 tool_type = BTN_TOOL_AIRBRUSH;
667 break;
668
669 default: /* Unknown tool */
670 tool_type = BTN_TOOL_PEN;
671 break;
672 }
673 return tool_type;
674}
675
95dd3b30 676static int wacom_intuos_inout(struct wacom_wac *wacom)
3bea733a 677{
e33da8a5 678 struct wacom_features *features = &wacom->features;
3bea733a 679 unsigned char *data = wacom->data;
2a6cdbdd 680 struct input_dev *input = wacom->pen_input;
4750f5fe 681 int idx = (features->type == INTUOS) ? (data[1] & 0x01) : 0;
3bea733a 682
4750f5fe
PC
683 if (!(((data[1] & 0xfc) == 0xc0) || /* in prox */
684 ((data[1] & 0xfe) == 0x20) || /* in range */
685 ((data[1] & 0xfe) == 0x80))) /* out prox */
686 return 0;
3bea733a
PC
687
688 /* Enter report */
689 if ((data[1] & 0xfc) == 0xc0) {
690 /* serial number of the tool */
691 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
692 (data[4] << 20) + (data[5] << 12) +
693 (data[6] << 4) + (data[7] >> 4);
694
493630b2
PC
695 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
696 ((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12);
73a97f4f 697
7e129783
BT
698 wacom->tool[idx] = wacom_intuos_get_tool_type(wacom->id[idx]);
699
eff6ca97 700 wacom->shared->stylus_in_proximity = true;
3bea733a
PC
701 return 1;
702 }
703
c1b03f55
PC
704 /* in Range */
705 if ((data[1] & 0xfe) == 0x20) {
526d6e7b
PC
706 if (features->type != INTUOSHT2)
707 wacom->shared->stylus_in_proximity = true;
486b908d 708
c1b03f55
PC
709 /* in Range while exiting */
710 if (wacom->reporting_data) {
711 input_report_key(input, BTN_TOUCH, 0);
712 input_report_abs(input, ABS_PRESSURE, 0);
713 input_report_abs(input, ABS_DISTANCE, wacom->features.distance_max);
714 return 2;
715 }
716 return 1;
4eb1830b
JG
717 }
718
3bea733a
PC
719 /* Exit report */
720 if ((data[1] & 0xfe) == 0x80) {
f3586d2f 721 wacom->shared->stylus_in_proximity = false;
b3bd7ef3 722 wacom->reporting_data = false;
ae584ca4 723
373a5356
PC
724 /* don't report exit if we don't know the ID */
725 if (!wacom->id[idx])
726 return 1;
727
6f660f12
PC
728 /*
729 * Reset all states otherwise we lose the initial states
730 * when in-prox next time
731 */
8da23fc1
DT
732 input_report_abs(input, ABS_X, 0);
733 input_report_abs(input, ABS_Y, 0);
734 input_report_abs(input, ABS_DISTANCE, 0);
735 input_report_abs(input, ABS_TILT_X, 0);
736 input_report_abs(input, ABS_TILT_Y, 0);
80d4e8e9 737 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
8da23fc1
DT
738 input_report_key(input, BTN_LEFT, 0);
739 input_report_key(input, BTN_MIDDLE, 0);
740 input_report_key(input, BTN_RIGHT, 0);
741 input_report_key(input, BTN_SIDE, 0);
742 input_report_key(input, BTN_EXTRA, 0);
743 input_report_abs(input, ABS_THROTTLE, 0);
744 input_report_abs(input, ABS_RZ, 0);
7ecfbfd3 745 } else {
8da23fc1
DT
746 input_report_abs(input, ABS_PRESSURE, 0);
747 input_report_key(input, BTN_STYLUS, 0);
748 input_report_key(input, BTN_STYLUS2, 0);
749 input_report_key(input, BTN_TOUCH, 0);
750 input_report_abs(input, ABS_WHEEL, 0);
e33da8a5 751 if (features->type >= INTUOS3S)
8da23fc1 752 input_report_abs(input, ABS_Z, 0);
8d32e3ae 753 }
8da23fc1
DT
754 input_report_key(input, wacom->tool[idx], 0);
755 input_report_abs(input, ABS_MISC, 0); /* reset tool id */
756 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
6f660f12 757 wacom->id[idx] = 0;
80d4e8e9 758 return 2;
3bea733a 759 }
373a5356 760
3bea733a
PC
761 return 0;
762}
763
72b236d6
AS
764static int wacom_remote_irq(struct wacom_wac *wacom_wac, size_t len)
765{
766 unsigned char *data = wacom_wac->data;
7c35dc3c 767 struct input_dev *input;
72b236d6 768 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
83e6b40e 769 struct wacom_remote *remote = wacom->remote;
72b236d6
AS
770 int bat_charging, bat_percent, touch_ring_mode;
771 __u32 serial;
7c35dc3c
BT
772 int i, index = -1;
773 unsigned long flags;
72b236d6
AS
774
775 if (data[0] != WACOM_REPORT_REMOTE) {
7c35dc3c
BT
776 hid_dbg(wacom->hdev, "%s: received unknown report #%d",
777 __func__, data[0]);
72b236d6
AS
778 return 0;
779 }
780
781 serial = data[3] + (data[4] << 8) + (data[5] << 16);
782 wacom_wac->id[0] = PAD_DEVICE_ID;
783
7c35dc3c
BT
784 spin_lock_irqsave(&remote->remote_lock, flags);
785
786 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
787 if (remote->remotes[i].serial == serial) {
788 index = i;
789 break;
790 }
791 }
792
793 if (index < 0 || !remote->remotes[index].registered)
794 goto out;
795
796 input = remote->remotes[index].input;
797
72b236d6
AS
798 input_report_key(input, BTN_0, (data[9] & 0x01));
799 input_report_key(input, BTN_1, (data[9] & 0x02));
800 input_report_key(input, BTN_2, (data[9] & 0x04));
801 input_report_key(input, BTN_3, (data[9] & 0x08));
802 input_report_key(input, BTN_4, (data[9] & 0x10));
803 input_report_key(input, BTN_5, (data[9] & 0x20));
804 input_report_key(input, BTN_6, (data[9] & 0x40));
805 input_report_key(input, BTN_7, (data[9] & 0x80));
806
807 input_report_key(input, BTN_8, (data[10] & 0x01));
808 input_report_key(input, BTN_9, (data[10] & 0x02));
809 input_report_key(input, BTN_A, (data[10] & 0x04));
810 input_report_key(input, BTN_B, (data[10] & 0x08));
811 input_report_key(input, BTN_C, (data[10] & 0x10));
812 input_report_key(input, BTN_X, (data[10] & 0x20));
813 input_report_key(input, BTN_Y, (data[10] & 0x40));
814 input_report_key(input, BTN_Z, (data[10] & 0x80));
815
816 input_report_key(input, BTN_BASE, (data[11] & 0x01));
817 input_report_key(input, BTN_BASE2, (data[11] & 0x02));
818
819 if (data[12] & 0x80)
820 input_report_abs(input, ABS_WHEEL, (data[12] & 0x7f));
821 else
822 input_report_abs(input, ABS_WHEEL, 0);
823
824 bat_percent = data[7] & 0x7f;
825 bat_charging = !!(data[7] & 0x80);
826
827 if (data[9] | data[10] | (data[11] & 0x03) | data[12])
828 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
829 else
830 input_report_abs(input, ABS_MISC, 0);
831
832 input_event(input, EV_MSC, MSC_SERIAL, serial);
833
7c35dc3c
BT
834 input_sync(input);
835
72b236d6
AS
836 /*Which mode select (LED light) is currently on?*/
837 touch_ring_mode = (data[11] & 0xC0) >> 6;
838
839 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
e7749f6e 840 if (remote->remotes[i].serial == serial)
a50aac71 841 wacom->led.groups[i].select = touch_ring_mode;
72b236d6
AS
842 }
843
59d69bc8
BT
844 __wacom_notify_battery(&remote->remotes[index].battery, bat_percent,
845 bat_charging, 1, bat_charging);
72b236d6 846
7c35dc3c
BT
847out:
848 spin_unlock_irqrestore(&remote->remote_lock, flags);
849 return 0;
72b236d6
AS
850}
851
e6f2813a 852static void wacom_remote_status_irq(struct wacom_wac *wacom_wac, size_t len)
72b236d6
AS
853{
854 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
855 unsigned char *data = wacom_wac->data;
83e6b40e 856 struct wacom_remote *remote = wacom->remote;
e6f2813a
BT
857 struct wacom_remote_data remote_data;
858 unsigned long flags;
859 int i, ret;
72b236d6
AS
860
861 if (data[0] != WACOM_REPORT_DEVICE_LIST)
e6f2813a
BT
862 return;
863
864 memset(&remote_data, 0, sizeof(struct wacom_remote_data));
72b236d6
AS
865
866 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
867 int j = i * 6;
868 int serial = (data[j+6] << 16) + (data[j+5] << 8) + data[j+4];
869 bool connected = data[j+2];
870
e6f2813a
BT
871 remote_data.remote[i].serial = serial;
872 remote_data.remote[i].connected = connected;
873 }
72b236d6 874
83e6b40e 875 spin_lock_irqsave(&remote->remote_lock, flags);
72b236d6 876
83e6b40e 877 ret = kfifo_in(&remote->remote_fifo, &remote_data, sizeof(remote_data));
e6f2813a 878 if (ret != sizeof(remote_data)) {
83e6b40e 879 spin_unlock_irqrestore(&remote->remote_lock, flags);
e6f2813a
BT
880 hid_err(wacom->hdev, "Can't queue Remote status event.\n");
881 return;
72b236d6 882 }
72b236d6 883
83e6b40e 884 spin_unlock_irqrestore(&remote->remote_lock, flags);
72b236d6 885
e6f2813a 886 wacom_schedule_work(wacom_wac, WACOM_WORKER_REMOTE);
72b236d6 887}
72b236d6 888
1924e05e
PC
889static inline bool report_touch_events(struct wacom_wac *wacom)
890{
891 return (touch_arbitration ? !wacom->shared->stylus_in_proximity : 1);
892}
72b236d6 893
1924e05e
PC
894static inline bool delay_pen_events(struct wacom_wac *wacom)
895{
896 return (wacom->shared->touch_down && touch_arbitration);
72b236d6
AS
897}
898
16e0a6a0 899static int wacom_intuos_general(struct wacom_wac *wacom)
3bea733a 900{
e33da8a5 901 struct wacom_features *features = &wacom->features;
3bea733a 902 unsigned char *data = wacom->data;
2a6cdbdd 903 struct input_dev *input = wacom->pen_input;
16e0a6a0 904 int idx = (features->type == INTUOS) ? (data[1] & 0x01) : 0;
a8a09c85 905 unsigned char type = (data[1] >> 1) & 0x0F;
5f33f430 906 unsigned int x, y, distance, t;
3bea733a 907
16e0a6a0
JG
908 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_CINTIQ &&
909 data[0] != WACOM_REPORT_INTUOS_PEN)
910 return 0;
911
1924e05e 912 if (delay_pen_events(wacom))
c1b03f55
PC
913 return 1;
914
599b0820
PC
915 /* don't report events if we don't know the tool ID */
916 if (!wacom->id[idx]) {
917 /* but reschedule a read of the current tool */
918 wacom_intuos_schedule_prox_event(wacom);
919 return 1;
920 }
921
4750f5fe
PC
922 /*
923 * don't report events for invalid data
924 */
925 /* older I4 styli don't work with new Cintiqs */
926 if ((!((wacom->id[idx] >> 20) & 0x01) &&
927 (features->type == WACOM_21UX2)) ||
928 /* Only large Intuos support Lense Cursor */
929 (wacom->tool[idx] == BTN_TOOL_LENS &&
930 (features->type == INTUOS3 ||
931 features->type == INTUOS3S ||
932 features->type == INTUOS4 ||
933 features->type == INTUOS4S ||
934 features->type == INTUOS5 ||
935 features->type == INTUOS5S ||
936 features->type == INTUOSPM ||
937 features->type == INTUOSPS)) ||
938 /* Cintiq doesn't send data when RDY bit isn't set */
939 (features->type == CINTIQ && !(data[1] & 0x40)))
940 return 1;
941
5f33f430
JG
942 x = (be16_to_cpup((__be16 *)&data[2]) << 1) | ((data[9] >> 1) & 1);
943 y = (be16_to_cpup((__be16 *)&data[4]) << 1) | (data[9] & 1);
944 distance = data[9] >> 2;
945 if (features->type < INTUOS3S) {
946 x >>= 1;
947 y >>= 1;
948 distance >>= 1;
16e0a6a0 949 }
5f33f430
JG
950 input_report_abs(input, ABS_X, x);
951 input_report_abs(input, ABS_Y, y);
952 input_report_abs(input, ABS_DISTANCE, distance);
16e0a6a0 953
a8a09c85
JG
954 switch (type) {
955 case 0x00:
956 case 0x01:
957 case 0x02:
958 case 0x03:
959 /* general pen packet */
5f33f430
JG
960 t = (data[6] << 3) | ((data[7] & 0xC0) >> 5) | (data[1] & 1);
961 if (features->pressure_max < 2047)
962 t >>= 1;
8da23fc1 963 input_report_abs(input, ABS_PRESSURE, t);
eda01dab
PC
964 if (features->type != INTUOSHT2) {
965 input_report_abs(input, ABS_TILT_X,
ec5fc1c1 966 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
eda01dab
PC
967 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
968 }
8da23fc1
DT
969 input_report_key(input, BTN_STYLUS, data[1] & 2);
970 input_report_key(input, BTN_STYLUS2, data[1] & 4);
971 input_report_key(input, BTN_TOUCH, t > 10);
a8a09c85 972 break;
3bea733a 973
a8a09c85 974 case 0x0a:
a8a09c85 975 /* airbrush second packet */
8da23fc1 976 input_report_abs(input, ABS_WHEEL,
3bea733a 977 (data[6] << 2) | ((data[7] >> 6) & 3));
8da23fc1 978 input_report_abs(input, ABS_TILT_X,
ec5fc1c1
JG
979 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
980 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
a8a09c85 981 break;
3bea733a 982
a8a09c85 983 case 0x05:
a8a09c85
JG
984 /* Rotation packet */
985 if (features->type >= INTUOS3S) {
986 /* I3 marker pen rotation */
987 t = (data[6] << 3) | ((data[7] >> 5) & 7);
988 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
989 ((t-1) / 2 + 450)) : (450 - t / 2) ;
990 input_report_abs(input, ABS_Z, t);
991 } else {
571f572f 992 /* 4D mouse 2nd packet */
a8a09c85
JG
993 t = (data[6] << 3) | ((data[7] >> 5) & 7);
994 input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
995 ((t - 1) / 2) : -t / 2);
996 }
997 break;
3bea733a 998
a8a09c85 999 case 0x04:
571f572f
JG
1000 /* 4D mouse 1st packet */
1001 input_report_key(input, BTN_LEFT, data[8] & 0x01);
1002 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
1003 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
1004
1005 input_report_key(input, BTN_SIDE, data[8] & 0x20);
1006 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
1007 t = (data[6] << 2) | ((data[7] >> 6) & 3);
1008 input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
1009 break;
1010
a8a09c85 1011 case 0x06:
571f572f
JG
1012 /* I4 mouse */
1013 input_report_key(input, BTN_LEFT, data[6] & 0x01);
1014 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
1015 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
1016 input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
1017 - ((data[7] & 0x40) >> 6));
1018 input_report_key(input, BTN_SIDE, data[6] & 0x08);
1019 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
3bea733a 1020
571f572f
JG
1021 input_report_abs(input, ABS_TILT_X,
1022 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
1023 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
1024 break;
1025
1026 case 0x08:
1027 if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
1028 /* 2D mouse packet */
1029 input_report_key(input, BTN_LEFT, data[8] & 0x04);
1030 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
1031 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
1032 input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
1033 - ((data[8] & 0x02) >> 1));
1034
1035 /* I3 2D mouse side buttons */
1036 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
1037 input_report_key(input, BTN_SIDE, data[8] & 0x40);
1038 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
3bea733a 1039 }
a8a09c85 1040 }
571f572f 1041 else if (wacom->tool[idx] == BTN_TOOL_LENS) {
3bea733a 1042 /* Lens cursor packets */
8da23fc1
DT
1043 input_report_key(input, BTN_LEFT, data[8] & 0x01);
1044 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
1045 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
1046 input_report_key(input, BTN_SIDE, data[8] & 0x10);
1047 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
3bea733a 1048 }
a8a09c85
JG
1049 break;
1050
571f572f 1051 case 0x07:
a8a09c85 1052 case 0x09:
571f572f 1053 case 0x0b:
a8a09c85
JG
1054 case 0x0c:
1055 case 0x0d:
1056 case 0x0e:
1057 case 0x0f:
1058 /* unhandled */
1059 break;
3bea733a 1060 }
3bea733a 1061
8da23fc1
DT
1062 input_report_abs(input, ABS_MISC, wacom->id[idx]); /* report tool id */
1063 input_report_key(input, wacom->tool[idx], 1);
1064 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
b3bd7ef3 1065 wacom->reporting_data = true;
16e0a6a0 1066 return 2;
3bea733a
PC
1067}
1068
95dd3b30 1069static int wacom_intuos_irq(struct wacom_wac *wacom)
3bea733a
PC
1070{
1071 unsigned char *data = wacom->data;
2a6cdbdd 1072 struct input_dev *input = wacom->pen_input;
16e0a6a0 1073 int result;
3bea733a 1074
eb71d1bb 1075 if (data[0] != WACOM_REPORT_PENABLED &&
06109993
JG
1076 data[0] != WACOM_REPORT_INTUOS_ID1 &&
1077 data[0] != WACOM_REPORT_INTUOS_ID2 &&
eb71d1bb 1078 data[0] != WACOM_REPORT_INTUOSPAD &&
eda01dab 1079 data[0] != WACOM_REPORT_INTUOS_PEN &&
500d4160
PC
1080 data[0] != WACOM_REPORT_CINTIQ &&
1081 data[0] != WACOM_REPORT_CINTIQPAD &&
eb71d1bb
DT
1082 data[0] != WACOM_REPORT_INTUOS5PAD) {
1083 dev_dbg(input->dev.parent,
1084 "%s: received unknown report #%d\n", __func__, data[0]);
3bea733a
PC
1085 return 0;
1086 }
1087
16e0a6a0
JG
1088 /* process pad events */
1089 result = wacom_intuos_pad(wacom);
1090 if (result)
1091 return result;
3bea733a
PC
1092
1093 /* process in/out prox events */
95dd3b30 1094 result = wacom_intuos_inout(wacom);
3bea733a 1095 if (result)
16e0a6a0 1096 return result - 1;
3bea733a
PC
1097
1098 /* process general packets */
16e0a6a0
JG
1099 result = wacom_intuos_general(wacom);
1100 if (result)
1101 return result - 1;
3bea733a 1102
16e0a6a0 1103 return 0;
3bea733a
PC
1104}
1105
b1e4279e
JG
1106static int int_dist(int x1, int y1, int x2, int y2)
1107{
1108 int x = x2 - x1;
1109 int y = y2 - y1;
1110
1111 return int_sqrt(x*x + y*y);
1112}
1113
81af7e61
BT
1114static void wacom_intuos_bt_process_data(struct wacom_wac *wacom,
1115 unsigned char *data)
1116{
1117 memcpy(wacom->data, data, 10);
1118 wacom_intuos_irq(wacom);
1119
2a6cdbdd 1120 input_sync(wacom->pen_input);
81af7e61
BT
1121 if (wacom->pad_input)
1122 input_sync(wacom->pad_input);
1123}
1124
1125static int wacom_intuos_bt_irq(struct wacom_wac *wacom, size_t len)
1126{
1127 unsigned char data[WACOM_PKGLEN_MAX];
1128 int i = 1;
1129 unsigned power_raw, battery_capacity, bat_charging, ps_connected;
1130
1131 memcpy(data, wacom->data, len);
1132
1133 switch (data[0]) {
1134 case 0x04:
1135 wacom_intuos_bt_process_data(wacom, data + i);
1136 i += 10;
1137 /* fall through */
1138 case 0x03:
1139 wacom_intuos_bt_process_data(wacom, data + i);
1140 i += 10;
1141 wacom_intuos_bt_process_data(wacom, data + i);
1142 i += 10;
1143 power_raw = data[i];
1144 bat_charging = (power_raw & 0x08) ? 1 : 0;
1145 ps_connected = (power_raw & 0x10) ? 1 : 0;
1146 battery_capacity = batcap_i4[power_raw & 0x07];
953f2c5f 1147 wacom_notify_battery(wacom, battery_capacity, bat_charging,
71fa641e 1148 battery_capacity || bat_charging,
953f2c5f 1149 ps_connected);
81af7e61
BT
1150 break;
1151 default:
2a6cdbdd 1152 dev_dbg(wacom->pen_input->dev.parent,
81af7e61
BT
1153 "Unknown report: %d,%d size:%zu\n",
1154 data[0], data[1], len);
1155 return 0;
1156 }
1157 return 0;
1158}
1159
7d059ed0
PC
1160static int wacom_wac_finger_count_touches(struct wacom_wac *wacom)
1161{
2a6cdbdd 1162 struct input_dev *input = wacom->touch_input;
7d059ed0
PC
1163 unsigned touch_max = wacom->features.touch_max;
1164 int count = 0;
1165 int i;
1166
26ba61f8
PC
1167 if (!touch_max)
1168 return 0;
1169
71b5c476
JG
1170 if (touch_max == 1)
1171 return test_bit(BTN_TOUCH, input->key) &&
1924e05e 1172 report_touch_events(wacom);
7d059ed0
PC
1173
1174 for (i = 0; i < input->mt->num_slots; i++) {
1175 struct input_mt_slot *ps = &input->mt->slots[i];
1176 int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
1177 if (id >= 0)
1178 count++;
1179 }
1180
1181 return count;
1182}
1183
b1e4279e
JG
1184static int wacom_24hdt_irq(struct wacom_wac *wacom)
1185{
2a6cdbdd 1186 struct input_dev *input = wacom->touch_input;
74b63417 1187 unsigned char *data = wacom->data;
b1e4279e 1188 int i;
e0d41fd4 1189 int current_num_contacts = data[61];
b1e4279e 1190 int contacts_to_send = 0;
500d4160
PC
1191 int num_contacts_left = 4; /* maximum contacts per packet */
1192 int byte_per_packet = WACOM_BYTES_PER_24HDT_PACKET;
1193 int y_offset = 2;
1194
1195 if (wacom->features.type == WACOM_27QHDT) {
1196 current_num_contacts = data[63];
1197 num_contacts_left = 10;
1198 byte_per_packet = WACOM_BYTES_PER_QHDTHID_PACKET;
1199 y_offset = 0;
500d4160 1200 }
b1e4279e
JG
1201
1202 /*
1203 * First packet resets the counter since only the first
1204 * packet in series will have non-zero current_num_contacts.
1205 */
7d059ed0 1206 if (current_num_contacts)
b1e4279e
JG
1207 wacom->num_contacts_left = current_num_contacts;
1208
500d4160 1209 contacts_to_send = min(num_contacts_left, wacom->num_contacts_left);
b1e4279e
JG
1210
1211 for (i = 0; i < contacts_to_send; i++) {
500d4160 1212 int offset = (byte_per_packet * i) + 1;
1924e05e 1213 bool touch = (data[offset] & 0x1) && report_touch_events(wacom);
02295e68 1214 int slot = input_mt_get_slot_by_key(input, data[offset + 1]);
b1e4279e
JG
1215
1216 if (slot < 0)
1217 continue;
1218 input_mt_slot(input, slot);
1219 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1220
1221 if (touch) {
edc8e20a 1222 int t_x = get_unaligned_le16(&data[offset + 2]);
500d4160 1223 int t_y = get_unaligned_le16(&data[offset + 4 + y_offset]);
b1e4279e
JG
1224
1225 input_report_abs(input, ABS_MT_POSITION_X, t_x);
1226 input_report_abs(input, ABS_MT_POSITION_Y, t_y);
500d4160
PC
1227
1228 if (wacom->features.type != WACOM_27QHDT) {
1229 int c_x = get_unaligned_le16(&data[offset + 4]);
1230 int c_y = get_unaligned_le16(&data[offset + 8]);
1231 int w = get_unaligned_le16(&data[offset + 10]);
1232 int h = get_unaligned_le16(&data[offset + 12]);
1233
1234 input_report_abs(input, ABS_MT_TOUCH_MAJOR, min(w,h));
1235 input_report_abs(input, ABS_MT_WIDTH_MAJOR,
1236 min(w, h) + int_dist(t_x, t_y, c_x, c_y));
1237 input_report_abs(input, ABS_MT_WIDTH_MINOR, min(w, h));
1238 input_report_abs(input, ABS_MT_ORIENTATION, w > h);
1239 }
b1e4279e 1240 }
b1e4279e 1241 }
9a1c0012 1242 input_mt_sync_frame(input);
b1e4279e
JG
1243
1244 wacom->num_contacts_left -= contacts_to_send;
e0d41fd4 1245 if (wacom->num_contacts_left <= 0) {
b1e4279e 1246 wacom->num_contacts_left = 0;
7d059ed0 1247 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
e0d41fd4 1248 }
b1e4279e
JG
1249 return 1;
1250}
1251
1963518b
PC
1252static int wacom_mt_touch(struct wacom_wac *wacom)
1253{
2a6cdbdd 1254 struct input_dev *input = wacom->touch_input;
74b63417 1255 unsigned char *data = wacom->data;
1963518b
PC
1256 int i;
1257 int current_num_contacts = data[2];
1258 int contacts_to_send = 0;
6afdc289
PC
1259 int x_offset = 0;
1260
1261 /* MTTPC does not support Height and Width */
d51ddb2b 1262 if (wacom->features.type == MTTPC || wacom->features.type == MTTPC_B)
6afdc289 1263 x_offset = -4;
1963518b
PC
1264
1265 /*
1266 * First packet resets the counter since only the first
1267 * packet in series will have non-zero current_num_contacts.
1268 */
7d059ed0 1269 if (current_num_contacts)
1963518b
PC
1270 wacom->num_contacts_left = current_num_contacts;
1271
1272 /* There are at most 5 contacts per packet */
1273 contacts_to_send = min(5, wacom->num_contacts_left);
1274
1275 for (i = 0; i < contacts_to_send; i++) {
6afdc289 1276 int offset = (WACOM_BYTES_PER_MT_PACKET + x_offset) * i + 3;
1924e05e 1277 bool touch = (data[offset] & 0x1) && report_touch_events(wacom);
edc8e20a 1278 int id = get_unaligned_le16(&data[offset + 1]);
02295e68 1279 int slot = input_mt_get_slot_by_key(input, id);
1963518b
PC
1280
1281 if (slot < 0)
1282 continue;
1283
1284 input_mt_slot(input, slot);
1285 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1286 if (touch) {
edc8e20a
JG
1287 int x = get_unaligned_le16(&data[offset + x_offset + 7]);
1288 int y = get_unaligned_le16(&data[offset + x_offset + 9]);
1963518b
PC
1289 input_report_abs(input, ABS_MT_POSITION_X, x);
1290 input_report_abs(input, ABS_MT_POSITION_Y, y);
1291 }
1963518b 1292 }
9a1c0012 1293 input_mt_sync_frame(input);
1963518b
PC
1294
1295 wacom->num_contacts_left -= contacts_to_send;
e0d41fd4 1296 if (wacom->num_contacts_left <= 0) {
1963518b 1297 wacom->num_contacts_left = 0;
7d059ed0 1298 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
e0d41fd4 1299 }
1963518b
PC
1300 return 1;
1301}
1302
84eb5aa6
PC
1303static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
1304{
2a6cdbdd 1305 struct input_dev *input = wacom->touch_input;
84eb5aa6 1306 unsigned char *data = wacom->data;
84eb5aa6
PC
1307 int i;
1308
1309 for (i = 0; i < 2; i++) {
1310 int p = data[1] & (1 << i);
1924e05e 1311 bool touch = p && report_touch_events(wacom);
84eb5aa6
PC
1312
1313 input_mt_slot(input, i);
1314 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1315 if (touch) {
1316 int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
1317 int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
1318
1319 input_report_abs(input, ABS_MT_POSITION_X, x);
1320 input_report_abs(input, ABS_MT_POSITION_Y, y);
84eb5aa6
PC
1321 }
1322 }
9a1c0012 1323 input_mt_sync_frame(input);
84eb5aa6
PC
1324
1325 /* keep touch state for pen event */
7d059ed0 1326 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
84eb5aa6 1327
84eb5aa6
PC
1328 return 1;
1329}
1330
a43c7c53 1331static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
ec67bbed 1332{
74b63417 1333 unsigned char *data = wacom->data;
2a6cdbdd 1334 struct input_dev *input = wacom->touch_input;
1924e05e 1335 bool prox = report_touch_events(wacom);
a43c7c53 1336 int x = 0, y = 0;
ec67bbed 1337
1963518b
PC
1338 if (wacom->features.touch_max > 1 || len > WACOM_PKGLEN_TPC2FG)
1339 return 0;
1340
e0d41fd4
PC
1341 if (len == WACOM_PKGLEN_TPC1FG) {
1342 prox = prox && (data[0] & 0x01);
1343 x = get_unaligned_le16(&data[1]);
1344 y = get_unaligned_le16(&data[3]);
1345 } else if (len == WACOM_PKGLEN_TPC1FG_B) {
1346 prox = prox && (data[2] & 0x01);
1347 x = get_unaligned_le16(&data[3]);
1348 y = get_unaligned_le16(&data[5]);
1349 } else {
1350 prox = prox && (data[1] & 0x01);
1351 x = le16_to_cpup((__le16 *)&data[2]);
1352 y = le16_to_cpup((__le16 *)&data[4]);
1353 }
ec67bbed 1354
a43c7c53
PC
1355 if (prox) {
1356 input_report_abs(input, ABS_X, x);
1357 input_report_abs(input, ABS_Y, y);
1358 }
1359 input_report_key(input, BTN_TOUCH, prox);
73a97f4f 1360
a43c7c53
PC
1361 /* keep touch state for pen events */
1362 wacom->shared->touch_down = prox;
ec67bbed 1363
a43c7c53 1364 return 1;
ec67bbed
PC
1365}
1366
8aa9a9ac 1367static int wacom_tpc_pen(struct wacom_wac *wacom)
545f4e99 1368{
74b63417 1369 unsigned char *data = wacom->data;
2a6cdbdd 1370 struct input_dev *input = wacom->pen_input;
a43c7c53 1371 bool prox = data[1] & 0x20;
8aa9a9ac 1372
a43c7c53 1373 if (!wacom->shared->stylus_in_proximity) /* first in prox */
8aa9a9ac
PC
1374 /* Going into proximity select tool */
1375 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
8aa9a9ac 1376
a43c7c53
PC
1377 /* keep pen state for touch events */
1378 wacom->shared->stylus_in_proximity = prox;
1379
1924e05e
PC
1380 /* send pen events only when touch is up or forced out
1381 * or touch arbitration is off
1382 */
1383 if (!delay_pen_events(wacom)) {
a43c7c53
PC
1384 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
1385 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
1386 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
1387 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
0b335cad 1388 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x07) << 8) | data[6]);
a43c7c53
PC
1389 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
1390 input_report_key(input, wacom->tool[0], prox);
1391 return 1;
8aa9a9ac 1392 }
8aa9a9ac 1393
a43c7c53 1394 return 0;
8aa9a9ac
PC
1395}
1396
1397static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
1398{
74b63417 1399 unsigned char *data = wacom->data;
545f4e99 1400
2a6cdbdd
JG
1401 if (wacom->pen_input)
1402 dev_dbg(wacom->pen_input->dev.parent,
1403 "%s: received report #%d\n", __func__, data[0]);
1404 else if (wacom->touch_input)
1405 dev_dbg(wacom->touch_input->dev.parent,
1406 "%s: received report #%d\n", __func__, data[0]);
545f4e99 1407
31175a83
PC
1408 switch (len) {
1409 case WACOM_PKGLEN_TPC1FG:
1963518b 1410 return wacom_tpc_single_touch(wacom, len);
31175a83
PC
1411
1412 case WACOM_PKGLEN_TPC2FG:
1963518b 1413 return wacom_tpc_mt_touch(wacom);
31175a83 1414
d51ddb2b
JG
1415 case WACOM_PKGLEN_PENABLED:
1416 return wacom_tpc_pen(wacom);
1417
31175a83
PC
1418 default:
1419 switch (data[0]) {
1420 case WACOM_REPORT_TPC1FG:
1421 case WACOM_REPORT_TPCHID:
1422 case WACOM_REPORT_TPCST:
ac173837 1423 case WACOM_REPORT_TPC1FGE:
31175a83
PC
1424 return wacom_tpc_single_touch(wacom, len);
1425
1963518b 1426 case WACOM_REPORT_TPCMT:
d51ddb2b 1427 case WACOM_REPORT_TPCMT2:
1963518b
PC
1428 return wacom_mt_touch(wacom);
1429
31175a83
PC
1430 case WACOM_REPORT_PENABLED:
1431 return wacom_tpc_pen(wacom);
1432 }
1433 }
4492efff 1434
8aa9a9ac 1435 return 0;
545f4e99
PC
1436}
1437
c9c09587
JG
1438static int wacom_equivalent_usage(int usage)
1439{
1440 if ((usage & HID_USAGE_PAGE) == WACOM_HID_UP_WACOMDIGITIZER) {
1441 int subpage = (usage & 0xFF00) << 8;
1442 int subusage = (usage & 0xFF);
1443
1444 if (subpage == WACOM_HID_SP_DIGITIZER ||
b5c921e6 1445 subpage == WACOM_HID_SP_DIGITIZERINFO ||
61ce346a 1446 usage == WACOM_HID_WD_SENSE ||
b5c921e6 1447 usage == WACOM_HID_WD_DISTANCE) {
c9c09587
JG
1448 return usage;
1449 }
1450
1451 if (subpage == HID_UP_UNDEFINED)
1452 subpage = HID_UP_DIGITIZER;
1453
1454 return subpage | subusage;
1455 }
1456
1457 return usage;
1458}
1459
2a6cdbdd 1460static void wacom_map_usage(struct input_dev *input, struct hid_usage *usage,
7704ac93
BT
1461 struct hid_field *field, __u8 type, __u16 code, int fuzz)
1462{
7704ac93
BT
1463 int fmin = field->logical_minimum;
1464 int fmax = field->logical_maximum;
c9c09587 1465 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
50066a04
JG
1466 int resolution_code = code;
1467
c9c09587 1468 if (equivalent_usage == HID_DG_TWIST) {
50066a04
JG
1469 resolution_code = ABS_RZ;
1470 }
7704ac93
BT
1471
1472 usage->type = type;
1473 usage->code = code;
1474
1475 set_bit(type, input->evbit);
1476
1477 switch (type) {
1478 case EV_ABS:
1479 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
1480 input_abs_set_res(input, code,
50066a04 1481 hidinput_calc_abs_res(field, resolution_code));
7704ac93
BT
1482 break;
1483 case EV_KEY:
1484 input_set_capability(input, EV_KEY, code);
1485 break;
1486 case EV_MSC:
1487 input_set_capability(input, EV_MSC, code);
1488 break;
1489 }
1490}
1491
1492static void wacom_wac_pen_usage_mapping(struct hid_device *hdev,
1493 struct hid_field *field, struct hid_usage *usage)
1494{
1495 struct wacom *wacom = hid_get_drvdata(hdev);
2a6cdbdd 1496 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
61ce346a 1497 struct wacom_features *features = &wacom_wac->features;
2a6cdbdd 1498 struct input_dev *input = wacom_wac->pen_input;
c9c09587 1499 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
7704ac93 1500
c9c09587 1501 switch (equivalent_usage) {
7704ac93 1502 case HID_GD_X:
2a6cdbdd 1503 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
7704ac93
BT
1504 break;
1505 case HID_GD_Y:
2a6cdbdd 1506 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
7704ac93 1507 break;
b5c921e6 1508 case WACOM_HID_WD_DISTANCE:
50066a04
JG
1509 case HID_GD_Z:
1510 wacom_map_usage(input, usage, field, EV_ABS, ABS_DISTANCE, 0);
1511 break;
7704ac93 1512 case HID_DG_TIPPRESSURE:
2a6cdbdd 1513 wacom_map_usage(input, usage, field, EV_ABS, ABS_PRESSURE, 0);
7704ac93
BT
1514 break;
1515 case HID_DG_INRANGE:
2a6cdbdd 1516 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
7704ac93
BT
1517 break;
1518 case HID_DG_INVERT:
2a6cdbdd 1519 wacom_map_usage(input, usage, field, EV_KEY,
7704ac93
BT
1520 BTN_TOOL_RUBBER, 0);
1521 break;
50066a04
JG
1522 case HID_DG_TILT_X:
1523 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_X, 0);
1524 break;
1525 case HID_DG_TILT_Y:
1526 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_Y, 0);
1527 break;
1528 case HID_DG_TWIST:
1529 wacom_map_usage(input, usage, field, EV_ABS, ABS_Z, 0);
1530 break;
7704ac93
BT
1531 case HID_DG_ERASER:
1532 case HID_DG_TIPSWITCH:
2a6cdbdd 1533 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
7704ac93
BT
1534 break;
1535 case HID_DG_BARRELSWITCH:
2a6cdbdd 1536 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS, 0);
7704ac93
BT
1537 break;
1538 case HID_DG_BARRELSWITCH2:
2a6cdbdd 1539 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS2, 0);
7704ac93
BT
1540 break;
1541 case HID_DG_TOOLSERIALNUMBER:
2a6cdbdd 1542 wacom_map_usage(input, usage, field, EV_MSC, MSC_SERIAL, 0);
7704ac93 1543 break;
61ce346a
JG
1544 case WACOM_HID_WD_SENSE:
1545 features->quirks |= WACOM_QUIRK_SENSE;
1546 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
1547 break;
929d6d5d
JG
1548 case WACOM_HID_WD_FINGERWHEEL:
1549 wacom_map_usage(input, usage, field, EV_ABS, ABS_WHEEL, 0);
1550 break;
7704ac93
BT
1551 }
1552}
1553
1554static int wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field,
1555 struct hid_usage *usage, __s32 value)
1556{
1557 struct wacom *wacom = hid_get_drvdata(hdev);
1558 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
61ce346a 1559 struct wacom_features *features = &wacom_wac->features;
2a6cdbdd 1560 struct input_dev *input = wacom_wac->pen_input;
c9c09587 1561 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
7704ac93 1562
c9c09587 1563 switch (equivalent_usage) {
50066a04
JG
1564 case HID_GD_Z:
1565 /*
1566 * HID_GD_Z "should increase as the control's position is
1567 * moved from high to low", while ABS_DISTANCE instead
1568 * increases in value as the tool moves from low to high.
1569 */
1570 value = field->logical_maximum - value;
1571 break;
7704ac93
BT
1572 case HID_DG_INRANGE:
1573 wacom_wac->hid_data.inrange_state = value;
61ce346a
JG
1574 if (!(features->quirks & WACOM_QUIRK_SENSE))
1575 wacom_wac->hid_data.sense_state = value;
7704ac93
BT
1576 return 0;
1577 case HID_DG_INVERT:
1578 wacom_wac->hid_data.invert_state = value;
1579 return 0;
1580 case HID_DG_ERASER:
1581 case HID_DG_TIPSWITCH:
1582 wacom_wac->hid_data.tipswitch |= value;
1583 return 0;
61ce346a
JG
1584 case WACOM_HID_WD_SENSE:
1585 wacom_wac->hid_data.sense_state = value;
1586 return 0;
7704ac93
BT
1587 }
1588
1924e05e
PC
1589 /* send pen events only when touch is up or forced out
1590 * or touch arbitration is off
1591 */
1592 if (!usage->type || delay_pen_events(wacom_wac))
7704ac93
BT
1593 return 0;
1594
61ce346a
JG
1595 /* send pen events only when the pen is in/entering/leaving proximity */
1596 if (!wacom_wac->hid_data.inrange_state && !wacom_wac->tool[0])
1597 return 0;
1598
7704ac93
BT
1599 input_event(input, usage->type, usage->code, value);
1600
1601 return 0;
1602}
1603
06324e0c
JG
1604static void wacom_wac_pen_pre_report(struct hid_device *hdev,
1605 struct hid_report *report)
1606{
1607 return;
1608}
1609
7704ac93
BT
1610static void wacom_wac_pen_report(struct hid_device *hdev,
1611 struct hid_report *report)
1612{
1613 struct wacom *wacom = hid_get_drvdata(hdev);
1614 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 1615 struct input_dev *input = wacom_wac->pen_input;
7704ac93 1616 bool prox = wacom_wac->hid_data.inrange_state;
61ce346a 1617 bool range = wacom_wac->hid_data.sense_state;
7704ac93 1618
61ce346a 1619 if (!wacom_wac->tool[0] && prox) /* first in prox */
7704ac93
BT
1620 /* Going into proximity select tool */
1621 wacom_wac->tool[0] = wacom_wac->hid_data.invert_state ?
1622 BTN_TOOL_RUBBER : BTN_TOOL_PEN;
1623
1624 /* keep pen state for touch events */
61ce346a 1625 wacom_wac->shared->stylus_in_proximity = range;
7704ac93 1626
61ce346a 1627 if (!delay_pen_events(wacom_wac) && wacom_wac->tool[0]) {
7704ac93
BT
1628 input_report_key(input, BTN_TOUCH,
1629 wacom_wac->hid_data.tipswitch);
1630 input_report_key(input, wacom_wac->tool[0], prox);
1631
1632 wacom_wac->hid_data.tipswitch = false;
1633
1634 input_sync(input);
1635 }
61ce346a
JG
1636
1637 if (!prox)
1638 wacom_wac->tool[0] = 0;
7704ac93
BT
1639}
1640
5ae6e89f
BT
1641static void wacom_wac_finger_usage_mapping(struct hid_device *hdev,
1642 struct hid_field *field, struct hid_usage *usage)
1643{
1644 struct wacom *wacom = hid_get_drvdata(hdev);
1645 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 1646 struct input_dev *input = wacom_wac->touch_input;
5ae6e89f 1647 unsigned touch_max = wacom_wac->features.touch_max;
c9c09587 1648 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
5ae6e89f 1649
c9c09587 1650 switch (equivalent_usage) {
5ae6e89f
BT
1651 case HID_GD_X:
1652 if (touch_max == 1)
2a6cdbdd 1653 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
5ae6e89f 1654 else
2a6cdbdd 1655 wacom_map_usage(input, usage, field, EV_ABS,
5ae6e89f
BT
1656 ABS_MT_POSITION_X, 4);
1657 break;
1658 case HID_GD_Y:
1659 if (touch_max == 1)
2a6cdbdd 1660 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
5ae6e89f 1661 else
2a6cdbdd 1662 wacom_map_usage(input, usage, field, EV_ABS,
5ae6e89f
BT
1663 ABS_MT_POSITION_Y, 4);
1664 break;
488abb5c
JG
1665 case HID_DG_WIDTH:
1666 case HID_DG_HEIGHT:
488abb5c
JG
1667 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MAJOR, 0);
1668 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MINOR, 0);
1669 input_set_abs_params(input, ABS_MT_ORIENTATION, 0, 1, 0, 0);
1670 break;
5ae6e89f 1671 case HID_DG_TIPSWITCH:
2a6cdbdd 1672 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
5ae6e89f 1673 break;
1b5d514a 1674 case HID_DG_CONTACTCOUNT:
499522c8 1675 wacom_wac->hid_data.cc_report = field->report->id;
1b5d514a
JG
1676 wacom_wac->hid_data.cc_index = field->index;
1677 wacom_wac->hid_data.cc_value_index = usage->usage_index;
1678 break;
5ae6e89f
BT
1679 }
1680}
1681
601a22f3
JG
1682static void wacom_wac_finger_slot(struct wacom_wac *wacom_wac,
1683 struct input_dev *input)
1684{
1685 struct hid_data *hid_data = &wacom_wac->hid_data;
1686 bool mt = wacom_wac->features.touch_max > 1;
1687 bool prox = hid_data->tipswitch &&
1924e05e 1688 report_touch_events(wacom_wac);
601a22f3 1689
1b5d514a
JG
1690 wacom_wac->hid_data.num_received++;
1691 if (wacom_wac->hid_data.num_received > wacom_wac->hid_data.num_expected)
1692 return;
1693
601a22f3
JG
1694 if (mt) {
1695 int slot;
1696
1697 slot = input_mt_get_slot_by_key(input, hid_data->id);
1698 input_mt_slot(input, slot);
1699 input_mt_report_slot_state(input, MT_TOOL_FINGER, prox);
1700 }
1701 else {
1702 input_report_key(input, BTN_TOUCH, prox);
1703 }
1704
1705 if (prox) {
1706 input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X,
1707 hid_data->x);
1708 input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y,
1709 hid_data->y);
488abb5c
JG
1710
1711 if (test_bit(ABS_MT_TOUCH_MAJOR, input->absbit)) {
1712 input_report_abs(input, ABS_MT_TOUCH_MAJOR, max(hid_data->width, hid_data->height));
1713 input_report_abs(input, ABS_MT_TOUCH_MINOR, min(hid_data->width, hid_data->height));
1714 if (hid_data->width != hid_data->height)
1715 input_report_abs(input, ABS_MT_ORIENTATION, hid_data->width <= hid_data->height ? 0 : 1);
1716 }
601a22f3
JG
1717 }
1718}
1719
5ae6e89f
BT
1720static int wacom_wac_finger_event(struct hid_device *hdev,
1721 struct hid_field *field, struct hid_usage *usage, __s32 value)
1722{
1723 struct wacom *wacom = hid_get_drvdata(hdev);
1724 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
c9c09587 1725 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
5ae6e89f 1726
c9c09587 1727 switch (equivalent_usage) {
5ae6e89f
BT
1728 case HID_GD_X:
1729 wacom_wac->hid_data.x = value;
1730 break;
1731 case HID_GD_Y:
1732 wacom_wac->hid_data.y = value;
1733 break;
488abb5c
JG
1734 case HID_DG_WIDTH:
1735 wacom_wac->hid_data.width = value;
1736 break;
1737 case HID_DG_HEIGHT:
1738 wacom_wac->hid_data.height = value;
1739 break;
5ae6e89f
BT
1740 case HID_DG_CONTACTID:
1741 wacom_wac->hid_data.id = value;
1742 break;
1743 case HID_DG_TIPSWITCH:
1744 wacom_wac->hid_data.tipswitch = value;
1745 break;
1746 }
1747
1748
601a22f3 1749 if (usage->usage_index + 1 == field->report_count) {
c9c09587 1750 if (equivalent_usage == wacom_wac->hid_data.last_slot_field)
2a6cdbdd 1751 wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input);
601a22f3
JG
1752 }
1753
5ae6e89f
BT
1754 return 0;
1755}
1756
06324e0c
JG
1757static void wacom_wac_finger_pre_report(struct hid_device *hdev,
1758 struct hid_report *report)
1759{
1b5d514a
JG
1760 struct wacom *wacom = hid_get_drvdata(hdev);
1761 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1762 struct hid_data* hid_data = &wacom_wac->hid_data;
003f50ab 1763 int i;
1b5d514a 1764
003f50ab
JG
1765 for (i = 0; i < report->maxfield; i++) {
1766 struct hid_field *field = report->field[i];
1767 int j;
1768
1769 for (j = 0; j < field->maxusage; j++) {
1770 struct hid_usage *usage = &field->usage[j];
1771
1772 switch (usage->hid) {
1773 case HID_GD_X:
1774 case HID_GD_Y:
1775 case HID_DG_WIDTH:
1776 case HID_DG_HEIGHT:
1777 case HID_DG_CONTACTID:
1778 case HID_DG_INRANGE:
1779 case HID_DG_INVERT:
1780 case HID_DG_TIPSWITCH:
1781 hid_data->last_slot_field = usage->hid;
1782 break;
1783 case HID_DG_CONTACTCOUNT:
1784 hid_data->cc_report = report->id;
1785 hid_data->cc_index = i;
1786 hid_data->cc_value_index = j;
1787 break;
499522c8
JG
1788 }
1789 }
1790 }
003f50ab 1791
df707938
JG
1792 if (hid_data->cc_report != 0 &&
1793 hid_data->cc_index >= 0) {
1b5d514a
JG
1794 struct hid_field *field = report->field[hid_data->cc_index];
1795 int value = field->value[hid_data->cc_value_index];
1796 if (value)
1797 hid_data->num_expected = value;
1798 }
1799 else {
1800 hid_data->num_expected = wacom_wac->features.touch_max;
1801 }
06324e0c
JG
1802}
1803
5ae6e89f
BT
1804static void wacom_wac_finger_report(struct hid_device *hdev,
1805 struct hid_report *report)
1806{
1807 struct wacom *wacom = hid_get_drvdata(hdev);
1808 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 1809 struct input_dev *input = wacom_wac->touch_input;
5ae6e89f
BT
1810 unsigned touch_max = wacom_wac->features.touch_max;
1811
1b5d514a
JG
1812 /* If more packets of data are expected, give us a chance to
1813 * process them rather than immediately syncing a partial
1814 * update.
1815 */
1816 if (wacom_wac->hid_data.num_received < wacom_wac->hid_data.num_expected)
1817 return;
1818
5ae6e89f 1819 if (touch_max > 1)
601a22f3
JG
1820 input_mt_sync_frame(input);
1821
5ae6e89f 1822 input_sync(input);
1b5d514a 1823 wacom_wac->hid_data.num_received = 0;
5ae6e89f
BT
1824
1825 /* keep touch state for pen event */
7d059ed0 1826 wacom_wac->shared->touch_down = wacom_wac_finger_count_touches(wacom_wac);
5ae6e89f
BT
1827}
1828
7704ac93
BT
1829void wacom_wac_usage_mapping(struct hid_device *hdev,
1830 struct hid_field *field, struct hid_usage *usage)
1831{
1832 struct wacom *wacom = hid_get_drvdata(hdev);
1833 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
e5bc8eb1 1834 struct wacom_features *features = &wacom_wac->features;
7704ac93
BT
1835
1836 /* currently, only direct devices have proper hid report descriptors */
e5bc8eb1 1837 features->device_type |= WACOM_DEVICETYPE_DIRECT;
7704ac93
BT
1838
1839 if (WACOM_PEN_FIELD(field))
1840 return wacom_wac_pen_usage_mapping(hdev, field, usage);
5ae6e89f
BT
1841
1842 if (WACOM_FINGER_FIELD(field))
1843 return wacom_wac_finger_usage_mapping(hdev, field, usage);
7704ac93
BT
1844}
1845
1846int wacom_wac_event(struct hid_device *hdev, struct hid_field *field,
1847 struct hid_usage *usage, __s32 value)
1848{
1849 struct wacom *wacom = hid_get_drvdata(hdev);
1850
1851 if (wacom->wacom_wac.features.type != HID_GENERIC)
1852 return 0;
1853
1854 if (WACOM_PEN_FIELD(field))
1855 return wacom_wac_pen_event(hdev, field, usage, value);
1856
5ae6e89f
BT
1857 if (WACOM_FINGER_FIELD(field))
1858 return wacom_wac_finger_event(hdev, field, usage, value);
1859
7704ac93
BT
1860 return 0;
1861}
1862
06324e0c
JG
1863static void wacom_report_events(struct hid_device *hdev, struct hid_report *report)
1864{
1865 int r;
1866
1867 for (r = 0; r < report->maxfield; r++) {
1868 struct hid_field *field;
1869 unsigned count, n;
1870
1871 field = report->field[r];
1872 count = field->report_count;
1873
1874 if (!(HID_MAIN_ITEM_VARIABLE & field->flags))
1875 continue;
1876
1877 for (n = 0; n < count; n++)
1878 wacom_wac_event(hdev, field, &field->usage[n], field->value[n]);
1879 }
1880}
1881
7704ac93
BT
1882void wacom_wac_report(struct hid_device *hdev, struct hid_report *report)
1883{
1884 struct wacom *wacom = hid_get_drvdata(hdev);
1885 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1886 struct hid_field *field = report->field[0];
1887
1888 if (wacom_wac->features.type != HID_GENERIC)
1889 return;
1890
06324e0c
JG
1891 if (WACOM_PEN_FIELD(field))
1892 wacom_wac_pen_pre_report(hdev, report);
1893
1894 if (WACOM_FINGER_FIELD(field))
1895 wacom_wac_finger_pre_report(hdev, report);
1896
1897 wacom_report_events(hdev, report);
1898
7704ac93
BT
1899 if (WACOM_PEN_FIELD(field))
1900 return wacom_wac_pen_report(hdev, report);
5ae6e89f
BT
1901
1902 if (WACOM_FINGER_FIELD(field))
1903 return wacom_wac_finger_report(hdev, report);
7704ac93
BT
1904}
1905
e1d38e49 1906static int wacom_bpt_touch(struct wacom_wac *wacom)
cb734c03 1907{
f4ccbef2 1908 struct wacom_features *features = &wacom->features;
2a6cdbdd 1909 struct input_dev *input = wacom->touch_input;
3116871f 1910 struct input_dev *pad_input = wacom->pad_input;
cb734c03 1911 unsigned char *data = wacom->data;
cb734c03
HR
1912 int i;
1913
5a6c865d
CB
1914 if (data[0] != 0x02)
1915 return 0;
1916
cb734c03 1917 for (i = 0; i < 2; i++) {
8f906860 1918 int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
1924e05e
PC
1919 bool touch = report_touch_events(wacom)
1920 && (data[offset + 3] & 0x80);
8f906860
CB
1921
1922 input_mt_slot(input, i);
1923 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
c5f4dec1 1924 if (touch) {
8f906860
CB
1925 int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
1926 int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
f4ccbef2
HR
1927 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
1928 x <<= 5;
1929 y <<= 5;
1930 }
cb734c03
HR
1931 input_report_abs(input, ABS_MT_POSITION_X, x);
1932 input_report_abs(input, ABS_MT_POSITION_Y, y);
cb734c03 1933 }
cb734c03
HR
1934 }
1935
9a1c0012 1936 input_mt_sync_frame(input);
cb734c03 1937
3116871f
BT
1938 input_report_key(pad_input, BTN_LEFT, (data[1] & 0x08) != 0);
1939 input_report_key(pad_input, BTN_FORWARD, (data[1] & 0x04) != 0);
1940 input_report_key(pad_input, BTN_BACK, (data[1] & 0x02) != 0);
1941 input_report_key(pad_input, BTN_RIGHT, (data[1] & 0x01) != 0);
7d059ed0 1942 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
cb734c03 1943
3116871f 1944 return 1;
cb734c03
HR
1945}
1946
7d059ed0 1947static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
73149ab8 1948{
9a35c411 1949 struct wacom_features *features = &wacom->features;
2a6cdbdd 1950 struct input_dev *input = wacom->touch_input;
73149ab8 1951 bool touch = data[1] & 0x80;
02295e68
PC
1952 int slot = input_mt_get_slot_by_key(input, data[0]);
1953
1954 if (slot < 0)
7d059ed0 1955 return;
73149ab8 1956
1924e05e 1957 touch = touch && report_touch_events(wacom);
73149ab8 1958
02295e68 1959 input_mt_slot(input, slot);
73149ab8
CB
1960 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1961
1962 if (touch) {
1963 int x = (data[2] << 4) | (data[4] >> 4);
1964 int y = (data[3] << 4) | (data[4] & 0x0f);
9a35c411 1965 int width, height;
4e904954 1966
eda01dab 1967 if (features->type >= INTUOSPS && features->type <= INTUOSHT2) {
0b279da7
JG
1968 width = data[5] * 100;
1969 height = data[6] * 100;
9a35c411
PC
1970 } else {
1971 /*
1972 * "a" is a scaled-down area which we assume is
1973 * roughly circular and which can be described as:
1974 * a=(pi*r^2)/C.
1975 */
1976 int a = data[5];
d7da3a3c
PC
1977 int x_res = input_abs_get_res(input, ABS_MT_POSITION_X);
1978 int y_res = input_abs_get_res(input, ABS_MT_POSITION_Y);
1979 width = 2 * int_sqrt(a * WACOM_CONTACT_AREA_SCALE);
9a35c411
PC
1980 height = width * y_res / x_res;
1981 }
73149ab8
CB
1982
1983 input_report_abs(input, ABS_MT_POSITION_X, x);
1984 input_report_abs(input, ABS_MT_POSITION_Y, y);
4e904954
JG
1985 input_report_abs(input, ABS_MT_TOUCH_MAJOR, width);
1986 input_report_abs(input, ABS_MT_TOUCH_MINOR, height);
73149ab8
CB
1987 }
1988}
1989
1990static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
1991{
3116871f 1992 struct input_dev *input = wacom->pad_input;
b5fd2a3e 1993 struct wacom_features *features = &wacom->features;
73149ab8 1994
eda01dab 1995 if (features->type == INTUOSHT || features->type == INTUOSHT2) {
b5fd2a3e
PC
1996 input_report_key(input, BTN_LEFT, (data[1] & 0x02) != 0);
1997 input_report_key(input, BTN_BACK, (data[1] & 0x08) != 0);
1998 } else {
1999 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
2000 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
2001 }
73149ab8 2002 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
73149ab8
CB
2003 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
2004}
2005
2006static int wacom_bpt3_touch(struct wacom_wac *wacom)
2007{
73149ab8 2008 unsigned char *data = wacom->data;
19d57d3a 2009 int count = data[1] & 0x07;
eda01dab 2010 int touch_changed = 0, i;
73149ab8 2011
5a6c865d
CB
2012 if (data[0] != 0x02)
2013 return 0;
2014
73149ab8
CB
2015 /* data has up to 7 fixed sized 8-byte messages starting at data[2] */
2016 for (i = 0; i < count; i++) {
2017 int offset = (8 * i) + 2;
2018 int msg_id = data[offset];
2019
eda01dab 2020 if (msg_id >= 2 && msg_id <= 17) {
7d059ed0 2021 wacom_bpt3_touch_msg(wacom, data + offset);
eda01dab
PC
2022 touch_changed++;
2023 } else if (msg_id == 128)
73149ab8
CB
2024 wacom_bpt3_button_msg(wacom, data + offset);
2025
2026 }
2a6cdbdd 2027
eda01dab 2028 /* only update touch if we actually have a touchpad and touch data changed */
84dfbd7f 2029 if (wacom->touch_input && touch_changed) {
2a6cdbdd
JG
2030 input_mt_sync_frame(wacom->touch_input);
2031 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
2032 }
73149ab8 2033
3116871f 2034 return 1;
73149ab8
CB
2035}
2036
2aaacb15
CB
2037static int wacom_bpt_pen(struct wacom_wac *wacom)
2038{
961794a0 2039 struct wacom_features *features = &wacom->features;
2a6cdbdd 2040 struct input_dev *input = wacom->pen_input;
2aaacb15
CB
2041 unsigned char *data = wacom->data;
2042 int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
2043
4ca4ec71 2044 if (data[0] != WACOM_REPORT_PENABLED)
5a6c865d
CB
2045 return 0;
2046
c5981411 2047 prox = (data[1] & 0x20) == 0x20;
2aaacb15
CB
2048
2049 /*
2050 * All reports shared between PEN and RUBBER tool must be
2051 * forced to a known starting value (zero) when transitioning to
2052 * out-of-prox.
2053 *
2054 * If not reset then, to userspace, it will look like lost events
2055 * if new tool comes in-prox with same values as previous tool sent.
2056 *
2057 * Hardware does report zero in most out-of-prox cases but not all.
2058 */
0149931e
PC
2059 if (!wacom->shared->stylus_in_proximity) {
2060 if (data[1] & 0x08) {
2061 wacom->tool[0] = BTN_TOOL_RUBBER;
2062 wacom->id[0] = ERASER_DEVICE_ID;
2063 } else {
2064 wacom->tool[0] = BTN_TOOL_PEN;
2065 wacom->id[0] = STYLUS_DEVICE_ID;
2aaacb15 2066 }
0149931e
PC
2067 }
2068
2069 wacom->shared->stylus_in_proximity = prox;
1924e05e 2070 if (delay_pen_events(wacom))
0149931e
PC
2071 return 0;
2072
2073 if (prox) {
2aaacb15
CB
2074 x = le16_to_cpup((__le16 *)&data[2]);
2075 y = le16_to_cpup((__le16 *)&data[4]);
2076 p = le16_to_cpup((__le16 *)&data[6]);
c18c2cec
CB
2077 /*
2078 * Convert distance from out prox to distance from tablet.
2079 * distance will be greater than distance_max once
2080 * touching and applying pressure; do not report negative
2081 * distance.
2082 */
961794a0
PC
2083 if (data[8] <= features->distance_max)
2084 d = features->distance_max - data[8];
c18c2cec 2085
2aaacb15
CB
2086 pen = data[1] & 0x01;
2087 btn1 = data[1] & 0x02;
2088 btn2 = data[1] & 0x04;
0149931e
PC
2089 } else {
2090 wacom->id[0] = 0;
2aaacb15
CB
2091 }
2092
2093 input_report_key(input, BTN_TOUCH, pen);
2094 input_report_key(input, BTN_STYLUS, btn1);
2095 input_report_key(input, BTN_STYLUS2, btn2);
2096
2097 input_report_abs(input, ABS_X, x);
2098 input_report_abs(input, ABS_Y, y);
2099 input_report_abs(input, ABS_PRESSURE, p);
2100 input_report_abs(input, ABS_DISTANCE, d);
2101
2aaacb15
CB
2102 input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
2103 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
2104
2105 return 1;
2106}
2107
e1d38e49
CB
2108static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
2109{
eda01dab
PC
2110 struct wacom_features *features = &wacom->features;
2111
2112 if ((features->type == INTUOSHT2) &&
eda01dab
PC
2113 (features->device_type & WACOM_DEVICETYPE_PEN))
2114 return wacom_intuos_irq(wacom);
2115 else if (len == WACOM_PKGLEN_BBTOUCH)
e1d38e49 2116 return wacom_bpt_touch(wacom);
73149ab8
CB
2117 else if (len == WACOM_PKGLEN_BBTOUCH3)
2118 return wacom_bpt3_touch(wacom);
2119 else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
2aaacb15 2120 return wacom_bpt_pen(wacom);
e1d38e49
CB
2121
2122 return 0;
2123}
2124
8c97a765
BT
2125static void wacom_bamboo_pad_pen_event(struct wacom_wac *wacom,
2126 unsigned char *data)
2127{
2128 unsigned char prefix;
2129
2130 /*
2131 * We need to reroute the event from the debug interface to the
2132 * pen interface.
2133 * We need to add the report ID to the actual pen report, so we
2134 * temporary overwrite the first byte to prevent having to kzalloc/kfree
2135 * and memcpy the report.
2136 */
2137 prefix = data[0];
2138 data[0] = WACOM_REPORT_BPAD_PEN;
2139
2140 /*
2141 * actually reroute the event.
2142 * No need to check if wacom->shared->pen is valid, hid_input_report()
2143 * will check for us.
2144 */
2145 hid_input_report(wacom->shared->pen, HID_INPUT_REPORT, data,
2146 WACOM_PKGLEN_PENABLED, 1);
2147
2148 data[0] = prefix;
2149}
2150
2151static int wacom_bamboo_pad_touch_event(struct wacom_wac *wacom,
2152 unsigned char *data)
2153{
2a6cdbdd 2154 struct input_dev *input = wacom->touch_input;
8c97a765
BT
2155 unsigned char *finger_data, prefix;
2156 unsigned id;
2157 int x, y;
2158 bool valid;
2159
2160 prefix = data[0];
2161
2162 for (id = 0; id < wacom->features.touch_max; id++) {
2163 valid = !!(prefix & BIT(id)) &&
1924e05e 2164 report_touch_events(wacom);
8c97a765
BT
2165
2166 input_mt_slot(input, id);
2167 input_mt_report_slot_state(input, MT_TOOL_FINGER, valid);
2168
2169 if (!valid)
2170 continue;
2171
2172 finger_data = data + 1 + id * 3;
2173 x = finger_data[0] | ((finger_data[1] & 0x0f) << 8);
2174 y = (finger_data[2] << 4) | (finger_data[1] >> 4);
2175
2176 input_report_abs(input, ABS_MT_POSITION_X, x);
2177 input_report_abs(input, ABS_MT_POSITION_Y, y);
2178 }
2179
2180 input_mt_sync_frame(input);
2181
2182 input_report_key(input, BTN_LEFT, prefix & 0x40);
2183 input_report_key(input, BTN_RIGHT, prefix & 0x80);
2184
2185 /* keep touch state for pen event */
1924e05e 2186 wacom->shared->touch_down = !!prefix && report_touch_events(wacom);
8c97a765
BT
2187
2188 return 1;
2189}
2190
2191static int wacom_bamboo_pad_irq(struct wacom_wac *wacom, size_t len)
2192{
2193 unsigned char *data = wacom->data;
2194
2195 if (!((len == WACOM_PKGLEN_BPAD_TOUCH) ||
2196 (len == WACOM_PKGLEN_BPAD_TOUCH_USB)) ||
2197 (data[0] != WACOM_REPORT_BPAD_TOUCH))
2198 return 0;
2199
2200 if (data[1] & 0x01)
2201 wacom_bamboo_pad_pen_event(wacom, &data[1]);
2202
2203 if (data[1] & 0x02)
2204 return wacom_bamboo_pad_touch_event(wacom, &data[9]);
2205
2206 return 0;
2207}
2208
d3825d51
CB
2209static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
2210{
16bf288c
CB
2211 unsigned char *data = wacom->data;
2212 int connected;
2213
b5fd2a3e 2214 if (len != WACOM_PKGLEN_WIRELESS || data[0] != WACOM_REPORT_WL)
d3825d51
CB
2215 return 0;
2216
16bf288c
CB
2217 connected = data[1] & 0x01;
2218 if (connected) {
b0882cb7 2219 int pid, battery, charging;
16bf288c 2220
eda01dab
PC
2221 if ((wacom->shared->type == INTUOSHT ||
2222 wacom->shared->type == INTUOSHT2) &&
44b96838
PC
2223 wacom->shared->touch_input &&
2224 wacom->shared->touch_max) {
961794a0
PC
2225 input_report_switch(wacom->shared->touch_input,
2226 SW_MUTE_DEVICE, data[5] & 0x40);
2227 input_sync(wacom->shared->touch_input);
2228 }
2229
16bf288c 2230 pid = get_unaligned_be16(&data[6]);
ac8d1010 2231 battery = (data[5] & 0x3f) * 100 / 31;
b0882cb7 2232 charging = !!(data[5] & 0x80);
16bf288c
CB
2233 if (wacom->pid != pid) {
2234 wacom->pid = pid;
d17d1f17 2235 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
16bf288c 2236 }
ac8d1010 2237
59d69bc8 2238 wacom_notify_battery(wacom, battery, charging, 1, 0);
953f2c5f 2239
16bf288c
CB
2240 } else if (wacom->pid != 0) {
2241 /* disconnected while previously connected */
2242 wacom->pid = 0;
d17d1f17 2243 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
71fa641e 2244 wacom_notify_battery(wacom, 0, 0, 0, 0);
16bf288c
CB
2245 }
2246
d3825d51
CB
2247 return 0;
2248}
2249
4ca4ec71
JG
2250static int wacom_status_irq(struct wacom_wac *wacom_wac, size_t len)
2251{
8f93b0b2 2252 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
4ca4ec71
JG
2253 struct wacom_features *features = &wacom_wac->features;
2254 unsigned char *data = wacom_wac->data;
2255
2256 if (data[0] != WACOM_REPORT_USB)
2257 return 0;
2258
eda01dab
PC
2259 if ((features->type == INTUOSHT ||
2260 features->type == INTUOSHT2) &&
4ca4ec71
JG
2261 wacom_wac->shared->touch_input &&
2262 features->touch_max) {
2263 input_report_switch(wacom_wac->shared->touch_input,
2264 SW_MUTE_DEVICE, data[8] & 0x40);
2265 input_sync(wacom_wac->shared->touch_input);
16bf288c
CB
2266 }
2267
8f93b0b2
JG
2268 if (data[9] & 0x02) { /* wireless module is attached */
2269 int battery = (data[8] & 0x3f) * 100 / 31;
b0882cb7 2270 bool charging = !!(data[8] & 0x80);
8f93b0b2
JG
2271
2272 wacom_notify_battery(wacom_wac, battery, charging,
71fa641e 2273 battery || charging, 1);
8f93b0b2 2274
59d69bc8 2275 if (!wacom->battery.battery &&
8f93b0b2
JG
2276 !(features->quirks & WACOM_QUIRK_BATTERY)) {
2277 features->quirks |= WACOM_QUIRK_BATTERY;
d17d1f17 2278 wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
8f93b0b2
JG
2279 }
2280 }
2281 else if ((features->quirks & WACOM_QUIRK_BATTERY) &&
59d69bc8 2282 wacom->battery.battery) {
8f93b0b2 2283 features->quirks &= ~WACOM_QUIRK_BATTERY;
d17d1f17 2284 wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
71fa641e 2285 wacom_notify_battery(wacom_wac, 0, 0, 0, 0);
8f93b0b2 2286 }
d3825d51
CB
2287 return 0;
2288}
2289
95dd3b30 2290void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
3bea733a 2291{
95dd3b30
DT
2292 bool sync;
2293
e33da8a5 2294 switch (wacom_wac->features.type) {
73a97f4f 2295 case PENPARTNER:
95dd3b30
DT
2296 sync = wacom_penpartner_irq(wacom_wac);
2297 break;
73a97f4f
DT
2298
2299 case PL:
95dd3b30
DT
2300 sync = wacom_pl_irq(wacom_wac);
2301 break;
73a97f4f
DT
2302
2303 case WACOM_G4:
2304 case GRAPHIRE:
387142bb 2305 case GRAPHIRE_BT:
73a97f4f 2306 case WACOM_MO:
95dd3b30
DT
2307 sync = wacom_graphire_irq(wacom_wac);
2308 break;
73a97f4f
DT
2309
2310 case PTU:
95dd3b30
DT
2311 sync = wacom_ptu_irq(wacom_wac);
2312 break;
73a97f4f 2313
c8f2edc5
PC
2314 case DTU:
2315 sync = wacom_dtu_irq(wacom_wac);
2316 break;
2317
497ab1f2 2318 case DTUS:
fff00bf8 2319 case DTUSX:
497ab1f2
PC
2320 sync = wacom_dtus_irq(wacom_wac);
2321 break;
2322
73a97f4f
DT
2323 case INTUOS:
2324 case INTUOS3S:
2325 case INTUOS3:
2326 case INTUOS3L:
2327 case INTUOS4S:
2328 case INTUOS4:
2329 case INTUOS4L:
2330 case CINTIQ:
2331 case WACOM_BEE:
56218563 2332 case WACOM_13HD:
3a4b4aaa 2333 case WACOM_21UX2:
d838c644 2334 case WACOM_22HD:
803296b6 2335 case WACOM_24HD:
500d4160 2336 case WACOM_27QHD:
a112e9fd 2337 case DTK:
36d3c510 2338 case CINTIQ_HYBRID:
f7acb55c 2339 case CINTIQ_COMPANION_2:
95dd3b30
DT
2340 sync = wacom_intuos_irq(wacom_wac);
2341 break;
73a97f4f 2342
81af7e61
BT
2343 case INTUOS4WL:
2344 sync = wacom_intuos_bt_irq(wacom_wac, len);
2345 break;
2346
b1e4279e 2347 case WACOM_24HDT:
500d4160 2348 case WACOM_27QHDT:
b1e4279e
JG
2349 sync = wacom_24hdt_irq(wacom_wac);
2350 break;
2351
ae584ca4
JG
2352 case INTUOS5S:
2353 case INTUOS5:
2354 case INTUOS5L:
9a35c411
PC
2355 case INTUOSPS:
2356 case INTUOSPM:
2357 case INTUOSPL:
ae584ca4
JG
2358 if (len == WACOM_PKGLEN_BBTOUCH3)
2359 sync = wacom_bpt3_touch(wacom_wac);
2d13a438
JG
2360 else if (wacom_wac->data[0] == WACOM_REPORT_USB)
2361 sync = wacom_status_irq(wacom_wac, len);
ae584ca4
JG
2362 else
2363 sync = wacom_intuos_irq(wacom_wac);
2364 break;
2365
73a97f4f 2366 case TABLETPC:
ac173837 2367 case TABLETPCE:
73a97f4f 2368 case TABLETPC2FG:
1963518b 2369 case MTSCREEN:
6afdc289 2370 case MTTPC:
d51ddb2b 2371 case MTTPC_B:
95dd3b30
DT
2372 sync = wacom_tpc_irq(wacom_wac, len);
2373 break;
73a97f4f 2374
cb734c03 2375 case BAMBOO_PT:
3b164a00
PC
2376 case BAMBOO_PEN:
2377 case BAMBOO_TOUCH:
b5fd2a3e 2378 case INTUOSHT:
eda01dab 2379 case INTUOSHT2:
4ca4ec71
JG
2380 if (wacom_wac->data[0] == WACOM_REPORT_USB)
2381 sync = wacom_status_irq(wacom_wac, len);
2382 else
2383 sync = wacom_bpt_irq(wacom_wac, len);
cb734c03
HR
2384 break;
2385
8c97a765
BT
2386 case BAMBOO_PAD:
2387 sync = wacom_bamboo_pad_irq(wacom_wac, len);
cb734c03
HR
2388 break;
2389
d3825d51
CB
2390 case WIRELESS:
2391 sync = wacom_wireless_irq(wacom_wac, len);
2392 break;
2393
72b236d6 2394 case REMOTE:
e6f2813a 2395 sync = false;
72b236d6 2396 if (wacom_wac->data[0] == WACOM_REPORT_DEVICE_LIST)
e6f2813a 2397 wacom_remote_status_irq(wacom_wac, len);
72b236d6
AS
2398 else
2399 sync = wacom_remote_irq(wacom_wac, len);
2400 break;
2401
73a97f4f 2402 default:
95dd3b30
DT
2403 sync = false;
2404 break;
3bea733a 2405 }
95dd3b30 2406
d2d13f18 2407 if (sync) {
2a6cdbdd
JG
2408 if (wacom_wac->pen_input)
2409 input_sync(wacom_wac->pen_input);
2410 if (wacom_wac->touch_input)
2411 input_sync(wacom_wac->touch_input);
d2d13f18
BT
2412 if (wacom_wac->pad_input)
2413 input_sync(wacom_wac->pad_input);
2414 }
3bea733a
PC
2415}
2416
eda01dab 2417static void wacom_setup_basic_pro_pen(struct wacom_wac *wacom_wac)
8da23fc1 2418{
2a6cdbdd 2419 struct input_dev *input_dev = wacom_wac->pen_input;
8da23fc1
DT
2420
2421 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
8da23fc1 2422
8da23fc1 2423 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
8da23fc1
DT
2424 __set_bit(BTN_STYLUS, input_dev->keybit);
2425 __set_bit(BTN_STYLUS2, input_dev->keybit);
2426
2427 input_set_abs_params(input_dev, ABS_DISTANCE,
bef7e200 2428 0, wacom_wac->features.distance_max, wacom_wac->features.distance_fuzz, 0);
eda01dab
PC
2429}
2430
2431static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
2432{
2433 struct input_dev *input_dev = wacom_wac->pen_input;
bef7e200 2434 struct wacom_features *features = &wacom_wac->features;
eda01dab
PC
2435
2436 wacom_setup_basic_pro_pen(wacom_wac);
2437
2438 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2439 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
2440 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
2441 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
2442
8da23fc1 2443 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
bef7e200 2444 input_set_abs_params(input_dev, ABS_TILT_X, -64, 63, features->tilt_fuzz, 0);
26fe4124 2445 input_abs_set_res(input_dev, ABS_TILT_X, 57);
bef7e200 2446 input_set_abs_params(input_dev, ABS_TILT_Y, -64, 63, features->tilt_fuzz, 0);
26fe4124 2447 input_abs_set_res(input_dev, ABS_TILT_Y, 57);
6521d0bf
PC
2448}
2449
2450static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
2451{
2a6cdbdd 2452 struct input_dev *input_dev = wacom_wac->pen_input;
6521d0bf
PC
2453
2454 input_set_capability(input_dev, EV_REL, REL_WHEEL);
2455
2456 wacom_setup_cintiq(wacom_wac);
2457
2458 __set_bit(BTN_LEFT, input_dev->keybit);
2459 __set_bit(BTN_RIGHT, input_dev->keybit);
2460 __set_bit(BTN_MIDDLE, input_dev->keybit);
2461 __set_bit(BTN_SIDE, input_dev->keybit);
2462 __set_bit(BTN_EXTRA, input_dev->keybit);
2463 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2464 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
2465
8da23fc1 2466 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
26fe4124 2467 input_abs_set_res(input_dev, ABS_RZ, 287);
8da23fc1
DT
2468 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
2469}
2470
42f4f272 2471void wacom_setup_device_quirks(struct wacom *wacom)
bc73dd39 2472{
42f4f272 2473 struct wacom_features *features = &wacom->wacom_wac.features;
bc73dd39 2474
862cf553
JG
2475 /* The pen and pad share the same interface on most devices */
2476 if (features->type == GRAPHIRE_BT || features->type == WACOM_G4 ||
3b164a00
PC
2477 features->type == DTUS ||
2478 (features->type >= INTUOS3S && features->type <= WACOM_MO)) {
862cf553
JG
2479 if (features->device_type & WACOM_DEVICETYPE_PEN)
2480 features->device_type |= WACOM_DEVICETYPE_PAD;
2481 }
bc73dd39
HR
2482
2483 /* touch device found but size is not defined. use default */
aa86b18c 2484 if (features->device_type & WACOM_DEVICETYPE_TOUCH && !features->x_max) {
bc73dd39
HR
2485 features->x_max = 1023;
2486 features->y_max = 1023;
2487 }
2488
42f4f272
PC
2489 /*
2490 * Intuos5/Pro and Bamboo 3rd gen have no useful data about its
2491 * touch interface in its HID descriptor. If this is the touch
2492 * interface (PacketSize of WACOM_PKGLEN_BBTOUCH3), override the
2493 * tablet values.
2494 */
3b164a00
PC
2495 if ((features->type >= INTUOS5S && features->type <= INTUOSPL) ||
2496 (features->type >= INTUOSHT && features->type <= BAMBOO_PT)) {
42f4f272 2497 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
862cf553
JG
2498 if (features->touch_max)
2499 features->device_type |= WACOM_DEVICETYPE_TOUCH;
a3088abc 2500 if (features->type >= INTUOSHT && features->type <= BAMBOO_PT)
862cf553 2501 features->device_type |= WACOM_DEVICETYPE_PAD;
42f4f272
PC
2502
2503 features->x_max = 4096;
2504 features->y_max = 4096;
42f4f272 2505 }
9633920e
JG
2506 else if (features->pktlen == WACOM_PKGLEN_BBTOUCH) {
2507 features->device_type |= WACOM_DEVICETYPE_PAD;
2508 }
42f4f272
PC
2509 }
2510
580549ef
BT
2511 /*
2512 * Hack for the Bamboo One:
2513 * the device presents a PAD/Touch interface as most Bamboos and even
2514 * sends ghosts PAD data on it. However, later, we must disable this
2515 * ghost interface, and we can not detect it unless we set it here
2516 * to WACOM_DEVICETYPE_PAD or WACOM_DEVICETYPE_TOUCH.
2517 */
2518 if (features->type == BAMBOO_PEN &&
2519 features->pktlen == WACOM_PKGLEN_BBTOUCH3)
2520 features->device_type |= WACOM_DEVICETYPE_PAD;
2521
42f4f272 2522 /*
042628ab
JG
2523 * Raw Wacom-mode pen and touch events both come from interface
2524 * 0, whose HID descriptor has an application usage of 0xFF0D
8de82280 2525 * (i.e., WACOM_HID_WD_DIGITIZER). We route pen packets back
042628ab 2526 * out through the HID_GENERIC device created for interface 1,
70caee0a 2527 * so rewrite this one to be of type WACOM_DEVICETYPE_TOUCH.
42f4f272
PC
2528 */
2529 if (features->type == BAMBOO_PAD)
70caee0a 2530 features->device_type = WACOM_DEVICETYPE_TOUCH;
42f4f272 2531
72b236d6
AS
2532 if (features->type == REMOTE)
2533 features->device_type = WACOM_DEVICETYPE_PAD;
42f4f272 2534
e5bc8eb1
JG
2535 switch (features->type) {
2536 case PL:
2537 case DTU:
2538 case DTUS:
2539 case DTUSX:
2540 case WACOM_21UX2:
2541 case WACOM_22HD:
2542 case DTK:
2543 case WACOM_24HD:
2544 case WACOM_27QHD:
2545 case CINTIQ_HYBRID:
2546 case CINTIQ_COMPANION_2:
2547 case CINTIQ:
2548 case WACOM_BEE:
2549 case WACOM_13HD:
2550 case WACOM_24HDT:
2551 case WACOM_27QHDT:
2552 case TABLETPC:
2553 case TABLETPCE:
2554 case TABLETPC2FG:
2555 case MTSCREEN:
2556 case MTTPC:
2557 case MTTPC_B:
2558 features->device_type |= WACOM_DEVICETYPE_DIRECT;
2559 break;
2560 }
2561
42f4f272
PC
2562 if (wacom->hdev->bus == BUS_BLUETOOTH)
2563 features->quirks |= WACOM_QUIRK_BATTERY;
2564
73149ab8 2565 /* quirk for bamboo touch with 2 low res touches */
be853fd1 2566 if ((features->type == BAMBOO_PT || features->type == BAMBOO_TOUCH) &&
73149ab8 2567 features->pktlen == WACOM_PKGLEN_BBTOUCH) {
f4ccbef2
HR
2568 features->x_max <<= 5;
2569 features->y_max <<= 5;
2570 features->x_fuzz <<= 5;
2571 features->y_fuzz <<= 5;
f4ccbef2 2572 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
cb734c03 2573 }
d3825d51
CB
2574
2575 if (features->type == WIRELESS) {
ccad85cc 2576 if (features->device_type == WACOM_DEVICETYPE_WL_MONITOR) {
ac8d1010
BT
2577 features->quirks |= WACOM_QUIRK_BATTERY;
2578 }
d3825d51 2579 }
7c35dc3c
BT
2580
2581 if (features->type == REMOTE)
2582 features->device_type |= WACOM_DEVICETYPE_WL_MONITOR;
bc73dd39
HR
2583}
2584
2636a3f2 2585int wacom_setup_pen_input_capabilities(struct input_dev *input_dev,
8c0e0a4f
PC
2586 struct wacom_wac *wacom_wac)
2587{
2588 struct wacom_features *features = &wacom_wac->features;
8c0e0a4f
PC
2589
2590 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2591
2636a3f2
JG
2592 if (!(features->device_type & WACOM_DEVICETYPE_PEN))
2593 return -ENODEV;
2594
e5bc8eb1
JG
2595 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
2596 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2597 else
2598 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2599
7704ac93
BT
2600 if (features->type == HID_GENERIC)
2601 /* setup has already been done */
2602 return 0;
2603
8c0e0a4f 2604 __set_bit(BTN_TOUCH, input_dev->keybit);
8da23fc1
DT
2605 __set_bit(ABS_MISC, input_dev->absbit);
2606
2636a3f2
JG
2607 input_set_abs_params(input_dev, ABS_X, features->x_min,
2608 features->x_max, features->x_fuzz, 0);
2609 input_set_abs_params(input_dev, ABS_Y, features->y_min,
2610 features->y_max, features->y_fuzz, 0);
2611 input_set_abs_params(input_dev, ABS_PRESSURE, 0,
2612 features->pressure_max, features->pressure_fuzz, 0);
2613
2614 /* penabled devices have fixed resolution for each model */
2615 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
2616 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
2617
497ab1f2 2618 switch (features->type) {
387142bb
BT
2619 case GRAPHIRE_BT:
2620 __clear_bit(ABS_MISC, input_dev->absbit);
a2f71c6c
PC
2621
2622 case WACOM_MO:
2623 case WACOM_G4:
387142bb
BT
2624 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2625 features->distance_max,
bef7e200 2626 features->distance_fuzz, 0);
a2f71c6c 2627 /* fall through */
803296b6 2628
a2f71c6c 2629 case GRAPHIRE:
387142bb 2630 input_set_capability(input_dev, EV_REL, REL_WHEEL);
803296b6 2631
387142bb
BT
2632 __set_bit(BTN_LEFT, input_dev->keybit);
2633 __set_bit(BTN_RIGHT, input_dev->keybit);
2634 __set_bit(BTN_MIDDLE, input_dev->keybit);
2635
2636 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2637 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
2638 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2639 __set_bit(BTN_STYLUS, input_dev->keybit);
2640 __set_bit(BTN_STYLUS2, input_dev->keybit);
387142bb 2641 break;
c73a1afb 2642
500d4160 2643 case WACOM_27QHD:
803296b6 2644 case WACOM_24HD:
a112e9fd 2645 case DTK:
d838c644 2646 case WACOM_22HD:
3a4b4aaa 2647 case WACOM_21UX2:
73a97f4f 2648 case WACOM_BEE:
6521d0bf 2649 case CINTIQ:
56218563 2650 case WACOM_13HD:
a2f71c6c 2651 case CINTIQ_HYBRID:
f7acb55c 2652 case CINTIQ_COMPANION_2:
56218563 2653 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
26fe4124 2654 input_abs_set_res(input_dev, ABS_Z, 287);
56218563
PC
2655 wacom_setup_cintiq(wacom_wac);
2656 break;
2657
73a97f4f
DT
2658 case INTUOS3:
2659 case INTUOS3L:
73a97f4f 2660 case INTUOS3S:
a2f71c6c
PC
2661 case INTUOS4:
2662 case INTUOS4WL:
2663 case INTUOS4L:
2664 case INTUOS4S:
8da23fc1 2665 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
26fe4124 2666 input_abs_set_res(input_dev, ABS_Z, 287);
73a97f4f
DT
2667 /* fall through */
2668
2669 case INTUOS:
8da23fc1 2670 wacom_setup_intuos(wacom_wac);
73a97f4f
DT
2671 break;
2672
9fee6195
JG
2673 case INTUOS5:
2674 case INTUOS5L:
9a35c411
PC
2675 case INTUOSPM:
2676 case INTUOSPL:
ae584ca4 2677 case INTUOS5S:
9a35c411 2678 case INTUOSPS:
2636a3f2
JG
2679 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2680 features->distance_max,
bef7e200 2681 features->distance_fuzz, 0);
ae584ca4 2682
2636a3f2
JG
2683 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
2684 input_abs_set_res(input_dev, ABS_Z, 287);
ae584ca4 2685
2636a3f2 2686 wacom_setup_intuos(wacom_wac);
ae584ca4
JG
2687 break;
2688
b1e4279e 2689 case WACOM_24HDT:
500d4160 2690 case WACOM_27QHDT:
1963518b 2691 case MTSCREEN:
6afdc289 2692 case MTTPC:
d51ddb2b 2693 case MTTPC_B:
6795a524 2694 case TABLETPC2FG:
73a97f4f 2695 case TABLETPC:
ac173837 2696 case TABLETPCE:
a43c7c53 2697 __clear_bit(ABS_MISC, input_dev->absbit);
73a97f4f
DT
2698 /* fall through */
2699
497ab1f2 2700 case DTUS:
fff00bf8 2701 case DTUSX:
73a97f4f 2702 case PL:
c8f2edc5 2703 case DTU:
8da23fc1 2704 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
3512069e 2705 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
8da23fc1
DT
2706 __set_bit(BTN_STYLUS, input_dev->keybit);
2707 __set_bit(BTN_STYLUS2, input_dev->keybit);
3512069e
JG
2708 break;
2709
2710 case PTU:
8da23fc1 2711 __set_bit(BTN_STYLUS2, input_dev->keybit);
73a97f4f
DT
2712 /* fall through */
2713
2714 case PENPARTNER:
1fab84aa 2715 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
8da23fc1 2716 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1fab84aa 2717 __set_bit(BTN_STYLUS, input_dev->keybit);
73a97f4f 2718 break;
cb734c03 2719
b5fd2a3e 2720 case INTUOSHT:
cb734c03 2721 case BAMBOO_PT:
3b164a00 2722 case BAMBOO_PEN:
eda01dab 2723 case INTUOSHT2:
eda01dab
PC
2724 if (features->type == INTUOSHT2) {
2725 wacom_setup_basic_pro_pen(wacom_wac);
2726 } else {
2727 __clear_bit(ABS_MISC, input_dev->absbit);
2728 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
2729 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2730 __set_bit(BTN_STYLUS, input_dev->keybit);
2731 __set_bit(BTN_STYLUS2, input_dev->keybit);
2732 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2636a3f2 2733 features->distance_max,
bef7e200 2734 features->distance_fuzz, 0);
eda01dab 2735 }
2636a3f2
JG
2736 break;
2737 case BAMBOO_PAD:
2738 __clear_bit(ABS_MISC, input_dev->absbit);
2739 break;
2740 }
2741 return 0;
2742}
02295e68 2743
2636a3f2
JG
2744int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
2745 struct wacom_wac *wacom_wac)
2746{
2747 struct wacom_features *features = &wacom_wac->features;
30ebc1ae 2748
2636a3f2
JG
2749 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2750
2751 if (!(features->device_type & WACOM_DEVICETYPE_TOUCH))
2752 return -ENODEV;
2753
e5bc8eb1
JG
2754 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
2755 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2756 else
2757 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2758
2636a3f2
JG
2759 if (features->type == HID_GENERIC)
2760 /* setup has already been done */
2761 return 0;
2762
2763 __set_bit(BTN_TOUCH, input_dev->keybit);
2764
2765 if (features->touch_max == 1) {
2766 input_set_abs_params(input_dev, ABS_X, 0,
2767 features->x_max, features->x_fuzz, 0);
2768 input_set_abs_params(input_dev, ABS_Y, 0,
2769 features->y_max, features->y_fuzz, 0);
2770 input_abs_set_res(input_dev, ABS_X,
2771 features->x_resolution);
2772 input_abs_set_res(input_dev, ABS_Y,
2773 features->y_resolution);
2774 }
2775 else if (features->touch_max > 1) {
2776 input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0,
2777 features->x_max, features->x_fuzz, 0);
2778 input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0,
2779 features->y_max, features->y_fuzz, 0);
2780 input_abs_set_res(input_dev, ABS_MT_POSITION_X,
2781 features->x_resolution);
2782 input_abs_set_res(input_dev, ABS_MT_POSITION_Y,
2783 features->y_resolution);
2784 }
2785
2786 switch (features->type) {
2787 case INTUOS5:
2788 case INTUOS5L:
2789 case INTUOSPM:
2790 case INTUOSPL:
2791 case INTUOS5S:
2792 case INTUOSPS:
2636a3f2
JG
2793 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2794 input_set_abs_params(input_dev, ABS_MT_TOUCH_MINOR, 0, features->y_max, 0, 0);
2795 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
2796 break;
2797
2798 case WACOM_24HDT:
2799 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2800 input_set_abs_params(input_dev, ABS_MT_WIDTH_MAJOR, 0, features->x_max, 0, 0);
2801 input_set_abs_params(input_dev, ABS_MT_WIDTH_MINOR, 0, features->y_max, 0, 0);
2802 input_set_abs_params(input_dev, ABS_MT_ORIENTATION, 0, 1, 0, 0);
2803 /* fall through */
2804
2805 case WACOM_27QHDT:
2806 case MTSCREEN:
2807 case MTTPC:
2808 case MTTPC_B:
2809 case TABLETPC2FG:
2810 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_DIRECT);
2811 /*fall through */
2812
2813 case TABLETPC:
2814 case TABLETPCE:
2636a3f2
JG
2815 break;
2816
2817 case INTUOSHT:
eda01dab 2818 case INTUOSHT2:
2636a3f2
JG
2819 input_dev->evbit[0] |= BIT_MASK(EV_SW);
2820 __set_bit(SW_MUTE_DEVICE, input_dev->swbit);
2821 /* fall through */
2822
2823 case BAMBOO_PT:
3b164a00 2824 case BAMBOO_TOUCH:
2636a3f2
JG
2825 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
2826 input_set_abs_params(input_dev,
2827 ABS_MT_TOUCH_MAJOR,
2828 0, features->x_max, 0, 0);
2829 input_set_abs_params(input_dev,
2830 ABS_MT_TOUCH_MINOR,
2831 0, features->y_max, 0, 0);
cb734c03 2832 }
2636a3f2 2833 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
cb734c03 2834 break;
2636a3f2 2835
8c97a765 2836 case BAMBOO_PAD:
8c97a765
BT
2837 input_mt_init_slots(input_dev, features->touch_max,
2838 INPUT_MT_POINTER);
2839 __set_bit(BTN_LEFT, input_dev->keybit);
2840 __set_bit(BTN_RIGHT, input_dev->keybit);
2841 break;
3bea733a 2842 }
1963518b 2843 return 0;
3bea733a
PC
2844}
2845
49005b9f
JG
2846static int wacom_numbered_button_to_key(int n)
2847{
2848 if (n < 10)
2849 return BTN_0 + n;
2850 else if (n < 16)
2851 return BTN_A + (n-10);
2852 else if (n < 18)
2853 return BTN_BASE + (n-16);
2854 else
2855 return 0;
2856}
2857
5397df15 2858static void wacom_setup_numbered_buttons(struct input_dev *input_dev,
70ee06c5
AS
2859 int button_count)
2860{
2861 int i;
2862
49005b9f
JG
2863 for (i = 0; i < button_count; i++) {
2864 int key = wacom_numbered_button_to_key(i);
2865
2866 if (key)
2867 __set_bit(key, input_dev->keybit);
2868 }
70ee06c5
AS
2869}
2870
6a06281e
BT
2871static void wacom_24hd_update_leds(struct wacom *wacom, int mask, int group)
2872{
2873 struct wacom_led *led;
2874 int i;
2875 bool updated = false;
2876
2877 /*
2878 * 24HD has LED group 1 to the left and LED group 0 to the right.
2879 * So group 0 matches the second half of the buttons and thus the mask
2880 * needs to be shifted.
2881 */
2882 if (group == 0)
2883 mask >>= 8;
2884
2885 for (i = 0; i < 3; i++) {
2886 led = wacom_led_find(wacom, group, i);
2887 if (!led) {
2888 hid_err(wacom->hdev, "can't find LED %d in group %d\n",
2889 i, group);
2890 continue;
2891 }
2892 if (!updated && mask & BIT(i)) {
2893 led->held = true;
2894 led_trigger_event(&led->trigger, LED_FULL);
2895 } else {
2896 led->held = false;
2897 }
2898 }
2899}
2900
34736aa9
BT
2901static bool wacom_is_led_toggled(struct wacom *wacom, int button_count,
2902 int mask, int group)
2903{
2904 int button_per_group;
2905
5a0fe8ab 2906 /*
6a06281e 2907 * 21UX2 has LED group 1 to the left and LED group 0
5a0fe8ab
BT
2908 * to the right. We need to reverse the group to match this
2909 * historical behavior.
2910 */
6a06281e 2911 if (wacom->wacom_wac.features.type == WACOM_21UX2)
5a0fe8ab
BT
2912 group = 1 - group;
2913
34736aa9
BT
2914 button_per_group = button_count/wacom->led.count;
2915
2916 return mask & (1 << (group * button_per_group));
2917}
2918
2919static void wacom_update_led(struct wacom *wacom, int button_count, int mask,
2920 int group)
2921{
2922 struct wacom_led *led, *next_led;
2923 int cur;
2924 bool pressed;
2925
6a06281e
BT
2926 if (wacom->wacom_wac.features.type == WACOM_24HD)
2927 return wacom_24hd_update_leds(wacom, mask, group);
2928
34736aa9
BT
2929 pressed = wacom_is_led_toggled(wacom, button_count, mask, group);
2930 cur = wacom->led.groups[group].select;
2931
2932 led = wacom_led_find(wacom, group, cur);
2933 if (!led) {
2934 hid_err(wacom->hdev, "can't find current LED %d in group %d\n",
2935 cur, group);
2936 return;
2937 }
2938
2939 if (!pressed) {
2940 led->held = false;
2941 return;
2942 }
2943
2944 if (led->held && pressed)
2945 return;
2946
2947 next_led = wacom_led_next(wacom, led);
2948 if (!next_led) {
2949 hid_err(wacom->hdev, "can't find next LED in group %d\n",
2950 group);
2951 return;
2952 }
2953 if (next_led == led)
2954 return;
2955
2956 next_led->held = true;
2957 led_trigger_event(&next_led->trigger,
2958 wacom_leds_brightness_get(next_led));
2959}
2960
c7f0522a
JG
2961static void wacom_report_numbered_buttons(struct input_dev *input_dev,
2962 int button_count, int mask)
2963{
34736aa9 2964 struct wacom *wacom = input_get_drvdata(input_dev);
c7f0522a
JG
2965 int i;
2966
34736aa9
BT
2967 for (i = 0; i < wacom->led.count; i++)
2968 wacom_update_led(wacom, button_count, mask, i);
2969
49005b9f
JG
2970 for (i = 0; i < button_count; i++) {
2971 int key = wacom_numbered_button_to_key(i);
2972
2973 if (key)
2974 input_report_key(input_dev, key, mask & (1 << i));
2975 }
c7f0522a
JG
2976}
2977
d2d13f18
BT
2978int wacom_setup_pad_input_capabilities(struct input_dev *input_dev,
2979 struct wacom_wac *wacom_wac)
2980{
2981 struct wacom_features *features = &wacom_wac->features;
2982
862cf553
JG
2983 if (!(features->device_type & WACOM_DEVICETYPE_PAD))
2984 return -ENODEV;
2985
7c35dc3c
BT
2986 if (features->type == REMOTE && input_dev == wacom_wac->pad_input)
2987 return -ENODEV;
2988
d2d13f18
BT
2989 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2990
2991 /* kept for making legacy xf86-input-wacom working with the wheels */
2992 __set_bit(ABS_MISC, input_dev->absbit);
2993
2994 /* kept for making legacy xf86-input-wacom accepting the pad */
2995 input_set_abs_params(input_dev, ABS_X, 0, 1, 0, 0);
2996 input_set_abs_params(input_dev, ABS_Y, 0, 1, 0, 0);
2997
12969e3b
BT
2998 /* kept for making udev and libwacom accepting the pad */
2999 __set_bit(BTN_STYLUS, input_dev->keybit);
3000
70ee06c5
AS
3001 wacom_setup_numbered_buttons(input_dev, features->numbered_buttons);
3002
d2d13f18 3003 switch (features->type) {
70ee06c5
AS
3004
3005 case CINTIQ_HYBRID:
f7acb55c 3006 case CINTIQ_COMPANION_2:
70ee06c5
AS
3007 case DTK:
3008 case DTUS:
387142bb 3009 case GRAPHIRE_BT:
387142bb
BT
3010 break;
3011
3813810c
BT
3012 case WACOM_MO:
3013 __set_bit(BTN_BACK, input_dev->keybit);
3014 __set_bit(BTN_LEFT, input_dev->keybit);
3015 __set_bit(BTN_FORWARD, input_dev->keybit);
3016 __set_bit(BTN_RIGHT, input_dev->keybit);
3017 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3018 break;
3019
3020 case WACOM_G4:
3021 __set_bit(BTN_BACK, input_dev->keybit);
3813810c 3022 __set_bit(BTN_FORWARD, input_dev->keybit);
3813810c
BT
3023 input_set_capability(input_dev, EV_REL, REL_WHEEL);
3024 break;
3025
10059cdc 3026 case WACOM_24HD:
10059cdc
BT
3027 __set_bit(KEY_PROG1, input_dev->keybit);
3028 __set_bit(KEY_PROG2, input_dev->keybit);
3029 __set_bit(KEY_PROG3, input_dev->keybit);
3030
3031 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3032 input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0);
3033 break;
3034
500d4160
PC
3035 case WACOM_27QHD:
3036 __set_bit(KEY_PROG1, input_dev->keybit);
3037 __set_bit(KEY_PROG2, input_dev->keybit);
3038 __set_bit(KEY_PROG3, input_dev->keybit);
3039 input_set_abs_params(input_dev, ABS_X, -2048, 2048, 0, 0);
3040 input_abs_set_res(input_dev, ABS_X, 1024); /* points/g */
3041 input_set_abs_params(input_dev, ABS_Y, -2048, 2048, 0, 0);
3042 input_abs_set_res(input_dev, ABS_Y, 1024);
3043 input_set_abs_params(input_dev, ABS_Z, -2048, 2048, 0, 0);
3044 input_abs_set_res(input_dev, ABS_Z, 1024);
3045 __set_bit(INPUT_PROP_ACCELEROMETER, input_dev->propbit);
3046 break;
3047
10059cdc
BT
3048 case WACOM_22HD:
3049 __set_bit(KEY_PROG1, input_dev->keybit);
3050 __set_bit(KEY_PROG2, input_dev->keybit);
3051 __set_bit(KEY_PROG3, input_dev->keybit);
3052 /* fall through */
3053
3054 case WACOM_21UX2:
10059cdc 3055 case WACOM_BEE:
10059cdc 3056 case CINTIQ:
10059cdc
BT
3057 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
3058 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
3059 break;
3060
3061 case WACOM_13HD:
10059cdc
BT
3062 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3063 break;
3064
3065 case INTUOS3:
3066 case INTUOS3L:
10059cdc
BT
3067 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
3068 /* fall through */
3069
3070 case INTUOS3S:
10059cdc
BT
3071 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
3072 break;
36d3c510 3073
10059cdc
BT
3074 case INTUOS5:
3075 case INTUOS5L:
3076 case INTUOSPM:
3077 case INTUOSPL:
10059cdc
BT
3078 case INTUOS5S:
3079 case INTUOSPS:
10059cdc 3080 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
36d3c510 3081 break;
10059cdc 3082
81af7e61
BT
3083 case INTUOS4WL:
3084 /*
3085 * For Bluetooth devices, the udev rule does not work correctly
3086 * for pads unless we add a stylus capability, which forces
3087 * ID_INPUT_TABLET to be set.
3088 */
3089 __set_bit(BTN_STYLUS, input_dev->keybit);
3090 /* fall through */
3091
10059cdc
BT
3092 case INTUOS4:
3093 case INTUOS4L:
10059cdc 3094 case INTUOS4S:
10059cdc
BT
3095 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3096 break;
3097
3116871f
BT
3098 case INTUOSHT:
3099 case BAMBOO_PT:
3b164a00 3100 case BAMBOO_TOUCH:
eda01dab 3101 case INTUOSHT2:
3116871f
BT
3102 __clear_bit(ABS_MISC, input_dev->absbit);
3103
3104 __set_bit(BTN_LEFT, input_dev->keybit);
3105 __set_bit(BTN_FORWARD, input_dev->keybit);
3106 __set_bit(BTN_BACK, input_dev->keybit);
3107 __set_bit(BTN_RIGHT, input_dev->keybit);
3108
3109 break;
3110
72b236d6
AS
3111 case REMOTE:
3112 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
3113 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3114 break;
3115
d2d13f18
BT
3116 default:
3117 /* no pad supported */
b3c8e93f 3118 return -ENODEV;
3bea733a 3119 }
1963518b 3120 return 0;
3bea733a
PC
3121}
3122
e87a344d 3123static const struct wacom_features wacom_features_0x00 =
80befa93
BT
3124 { "Wacom Penpartner", 5040, 3780, 255, 0,
3125 PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
e87a344d 3126static const struct wacom_features wacom_features_0x10 =
80befa93
BT
3127 { "Wacom Graphire", 10206, 7422, 511, 63,
3128 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
387142bb
BT
3129static const struct wacom_features wacom_features_0x81 =
3130 { "Wacom Graphire BT", 16704, 12064, 511, 32,
70ee06c5 3131 GRAPHIRE_BT, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES, 2 };
e87a344d 3132static const struct wacom_features wacom_features_0x11 =
80befa93
BT
3133 { "Wacom Graphire2 4x5", 10206, 7422, 511, 63,
3134 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3135static const struct wacom_features wacom_features_0x12 =
80befa93
BT
3136 { "Wacom Graphire2 5x7", 13918, 10206, 511, 63,
3137 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3138static const struct wacom_features wacom_features_0x13 =
80befa93
BT
3139 { "Wacom Graphire3", 10208, 7424, 511, 63,
3140 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3141static const struct wacom_features wacom_features_0x14 =
80befa93
BT
3142 { "Wacom Graphire3 6x8", 16704, 12064, 511, 63,
3143 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3144static const struct wacom_features wacom_features_0x15 =
80befa93
BT
3145 { "Wacom Graphire4 4x5", 10208, 7424, 511, 63,
3146 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3147static const struct wacom_features wacom_features_0x16 =
80befa93
BT
3148 { "Wacom Graphire4 6x8", 16704, 12064, 511, 63,
3149 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3150static const struct wacom_features wacom_features_0x17 =
80befa93
BT
3151 { "Wacom BambooFun 4x5", 14760, 9225, 511, 63,
3152 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3153static const struct wacom_features wacom_features_0x18 =
80befa93
BT
3154 { "Wacom BambooFun 6x8", 21648, 13530, 511, 63,
3155 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3156static const struct wacom_features wacom_features_0x19 =
80befa93
BT
3157 { "Wacom Bamboo1 Medium", 16704, 12064, 511, 63,
3158 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3159static const struct wacom_features wacom_features_0x60 =
80befa93
BT
3160 { "Wacom Volito", 5104, 3712, 511, 63,
3161 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3162static const struct wacom_features wacom_features_0x61 =
80befa93
BT
3163 { "Wacom PenStation2", 3250, 2320, 255, 63,
3164 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3165static const struct wacom_features wacom_features_0x62 =
80befa93
BT
3166 { "Wacom Volito2 4x5", 5104, 3712, 511, 63,
3167 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3168static const struct wacom_features wacom_features_0x63 =
80befa93
BT
3169 { "Wacom Volito2 2x3", 3248, 2320, 511, 63,
3170 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3171static const struct wacom_features wacom_features_0x64 =
80befa93
BT
3172 { "Wacom PenPartner2", 3250, 2320, 511, 63,
3173 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3174static const struct wacom_features wacom_features_0x65 =
80befa93
BT
3175 { "Wacom Bamboo", 14760, 9225, 511, 63,
3176 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3177static const struct wacom_features wacom_features_0x69 =
80befa93
BT
3178 { "Wacom Bamboo1", 5104, 3712, 511, 63,
3179 GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
11d0cf88 3180static const struct wacom_features wacom_features_0x6A =
80befa93
BT
3181 { "Wacom Bamboo1 4x6", 14760, 9225, 1023, 63,
3182 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
11d0cf88 3183static const struct wacom_features wacom_features_0x6B =
80befa93
BT
3184 { "Wacom Bamboo1 5x8", 21648, 13530, 1023, 63,
3185 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3186static const struct wacom_features wacom_features_0x20 =
80befa93
BT
3187 { "Wacom Intuos 4x5", 12700, 10600, 1023, 31,
3188 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3189static const struct wacom_features wacom_features_0x21 =
80befa93
BT
3190 { "Wacom Intuos 6x8", 20320, 16240, 1023, 31,
3191 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3192static const struct wacom_features wacom_features_0x22 =
80befa93
BT
3193 { "Wacom Intuos 9x12", 30480, 24060, 1023, 31,
3194 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3195static const struct wacom_features wacom_features_0x23 =
80befa93
BT
3196 { "Wacom Intuos 12x12", 30480, 31680, 1023, 31,
3197 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3198static const struct wacom_features wacom_features_0x24 =
80befa93
BT
3199 { "Wacom Intuos 12x18", 45720, 31680, 1023, 31,
3200 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3201static const struct wacom_features wacom_features_0x30 =
80befa93
BT
3202 { "Wacom PL400", 5408, 4056, 255, 0,
3203 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3204static const struct wacom_features wacom_features_0x31 =
80befa93
BT
3205 { "Wacom PL500", 6144, 4608, 255, 0,
3206 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3207static const struct wacom_features wacom_features_0x32 =
80befa93
BT
3208 { "Wacom PL600", 6126, 4604, 255, 0,
3209 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3210static const struct wacom_features wacom_features_0x33 =
80befa93
BT
3211 { "Wacom PL600SX", 6260, 5016, 255, 0,
3212 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3213static const struct wacom_features wacom_features_0x34 =
80befa93
BT
3214 { "Wacom PL550", 6144, 4608, 511, 0,
3215 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3216static const struct wacom_features wacom_features_0x35 =
80befa93
BT
3217 { "Wacom PL800", 7220, 5780, 511, 0,
3218 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3219static const struct wacom_features wacom_features_0x37 =
80befa93
BT
3220 { "Wacom PL700", 6758, 5406, 511, 0,
3221 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3222static const struct wacom_features wacom_features_0x38 =
80befa93
BT
3223 { "Wacom PL510", 6282, 4762, 511, 0,
3224 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3225static const struct wacom_features wacom_features_0x39 =
80befa93
BT
3226 { "Wacom DTU710", 34080, 27660, 511, 0,
3227 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3228static const struct wacom_features wacom_features_0xC4 =
80befa93
BT
3229 { "Wacom DTF521", 6282, 4762, 511, 0,
3230 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3231static const struct wacom_features wacom_features_0xC0 =
80befa93
BT
3232 { "Wacom DTF720", 6858, 5506, 511, 0,
3233 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3234static const struct wacom_features wacom_features_0xC2 =
80befa93
BT
3235 { "Wacom DTF720a", 6858, 5506, 511, 0,
3236 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3237static const struct wacom_features wacom_features_0x03 =
80befa93
BT
3238 { "Wacom Cintiq Partner", 20480, 15360, 511, 0,
3239 PTU, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3240static const struct wacom_features wacom_features_0x41 =
80befa93
BT
3241 { "Wacom Intuos2 4x5", 12700, 10600, 1023, 31,
3242 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3243static const struct wacom_features wacom_features_0x42 =
80befa93
BT
3244 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3245 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3246static const struct wacom_features wacom_features_0x43 =
80befa93
BT
3247 { "Wacom Intuos2 9x12", 30480, 24060, 1023, 31,
3248 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3249static const struct wacom_features wacom_features_0x44 =
80befa93
BT
3250 { "Wacom Intuos2 12x12", 30480, 31680, 1023, 31,
3251 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3252static const struct wacom_features wacom_features_0x45 =
80befa93
BT
3253 { "Wacom Intuos2 12x18", 45720, 31680, 1023, 31,
3254 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3255static const struct wacom_features wacom_features_0xB0 =
80befa93 3256 { "Wacom Intuos3 4x5", 25400, 20320, 1023, 63,
70ee06c5 3257 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
e87a344d 3258static const struct wacom_features wacom_features_0xB1 =
80befa93 3259 { "Wacom Intuos3 6x8", 40640, 30480, 1023, 63,
70ee06c5 3260 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3261static const struct wacom_features wacom_features_0xB2 =
80befa93 3262 { "Wacom Intuos3 9x12", 60960, 45720, 1023, 63,
70ee06c5 3263 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3264static const struct wacom_features wacom_features_0xB3 =
80befa93 3265 { "Wacom Intuos3 12x12", 60960, 60960, 1023, 63,
70ee06c5 3266 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3267static const struct wacom_features wacom_features_0xB4 =
80befa93 3268 { "Wacom Intuos3 12x19", 97536, 60960, 1023, 63,
70ee06c5 3269 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3270static const struct wacom_features wacom_features_0xB5 =
80befa93 3271 { "Wacom Intuos3 6x11", 54204, 31750, 1023, 63,
70ee06c5 3272 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3273static const struct wacom_features wacom_features_0xB7 =
80befa93 3274 { "Wacom Intuos3 4x6", 31496, 19685, 1023, 63,
70ee06c5 3275 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
e87a344d 3276static const struct wacom_features wacom_features_0xB8 =
80befa93 3277 { "Wacom Intuos4 4x6", 31496, 19685, 2047, 63,
70ee06c5 3278 INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
e87a344d 3279static const struct wacom_features wacom_features_0xB9 =
80befa93 3280 { "Wacom Intuos4 6x9", 44704, 27940, 2047, 63,
70ee06c5 3281 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
e87a344d 3282static const struct wacom_features wacom_features_0xBA =
80befa93 3283 { "Wacom Intuos4 8x13", 65024, 40640, 2047, 63,
70ee06c5 3284 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
e87a344d 3285static const struct wacom_features wacom_features_0xBB =
80befa93 3286 { "Wacom Intuos4 12x19", 97536, 60960, 2047, 63,
70ee06c5 3287 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
3a4b4aaa 3288static const struct wacom_features wacom_features_0xBC =
80befa93 3289 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
70ee06c5 3290 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
81af7e61
BT
3291static const struct wacom_features wacom_features_0xBD =
3292 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
70ee06c5 3293 INTUOS4WL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
9fee6195 3294static const struct wacom_features wacom_features_0x26 =
80befa93 3295 { "Wacom Intuos5 touch S", 31496, 19685, 2047, 63,
70ee06c5 3296 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16 };
9fee6195 3297static const struct wacom_features wacom_features_0x27 =
80befa93 3298 { "Wacom Intuos5 touch M", 44704, 27940, 2047, 63,
70ee06c5 3299 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
9fee6195 3300static const struct wacom_features wacom_features_0x28 =
80befa93 3301 { "Wacom Intuos5 touch L", 65024, 40640, 2047, 63,
70ee06c5 3302 INTUOS5L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
9fee6195 3303static const struct wacom_features wacom_features_0x29 =
80befa93 3304 { "Wacom Intuos5 S", 31496, 19685, 2047, 63,
70ee06c5 3305 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
9fee6195 3306static const struct wacom_features wacom_features_0x2A =
80befa93 3307 { "Wacom Intuos5 M", 44704, 27940, 2047, 63,
70ee06c5 3308 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
9a35c411 3309static const struct wacom_features wacom_features_0x314 =
80befa93 3310 { "Wacom Intuos Pro S", 31496, 19685, 2047, 63,
70ee06c5 3311 INTUOSPS, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16,
29b47391 3312 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
9a35c411 3313static const struct wacom_features wacom_features_0x315 =
80befa93 3314 { "Wacom Intuos Pro M", 44704, 27940, 2047, 63,
70ee06c5 3315 INTUOSPM, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
29b47391 3316 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
9a35c411 3317static const struct wacom_features wacom_features_0x317 =
80befa93 3318 { "Wacom Intuos Pro L", 65024, 40640, 2047, 63,
70ee06c5 3319 INTUOSPL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
29b47391 3320 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
803296b6 3321static const struct wacom_features wacom_features_0xF4 =
ecd618dc 3322 { "Wacom Cintiq 24HD", 104080, 65200, 2047, 63,
70ee06c5 3323 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
fa770340 3324 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
6f4d0382 3325static const struct wacom_features wacom_features_0xF8 =
ecd618dc 3326 { "Wacom Cintiq 24HD touch", 104080, 65200, 2047, 63, /* Pen */
70ee06c5 3327 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
fa770340 3328 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3bd1f7e2 3329 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf6 };
b1e4279e
JG
3330static const struct wacom_features wacom_features_0xF6 =
3331 { "Wacom Cintiq 24HD touch", .type = WACOM_24HDT, /* Touch */
29b47391
BT
3332 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf8, .touch_max = 10,
3333 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
500d4160 3334static const struct wacom_features wacom_features_0x32A =
a7e6645e 3335 { "Wacom Cintiq 27QHD", 119740, 67520, 2047, 63,
70ee06c5 3336 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
a7e6645e 3337 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
500d4160
PC
3338static const struct wacom_features wacom_features_0x32B =
3339 { "Wacom Cintiq 27QHD touch", 119740, 67520, 2047, 63,
70ee06c5 3340 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
500d4160
PC
3341 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3342 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32C };
3343static const struct wacom_features wacom_features_0x32C =
3344 { "Wacom Cintiq 27QHD touch", .type = WACOM_27QHDT,
3345 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32B, .touch_max = 10 };
e87a344d 3346static const struct wacom_features wacom_features_0x3F =
80befa93 3347 { "Wacom Cintiq 21UX", 87200, 65600, 1023, 63,
70ee06c5 3348 CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3349static const struct wacom_features wacom_features_0xC5 =
80befa93 3350 { "Wacom Cintiq 20WSX", 86680, 54180, 1023, 63,
70ee06c5 3351 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
e87a344d 3352static const struct wacom_features wacom_features_0xC6 =
80befa93 3353 { "Wacom Cintiq 12WX", 53020, 33440, 1023, 63,
70ee06c5 3354 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
56218563 3355static const struct wacom_features wacom_features_0x304 =
ecd618dc 3356 { "Wacom Cintiq 13HD", 59152, 33448, 1023, 63,
70ee06c5 3357 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
fa770340 3358 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
b4bf2120
PC
3359static const struct wacom_features wacom_features_0x333 =
3360 { "Wacom Cintiq 13HD touch", 59152, 33448, 2047, 63,
70ee06c5 3361 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
b4bf2120
PC
3362 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3363 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x335 };
3364static const struct wacom_features wacom_features_0x335 =
3365 { "Wacom Cintiq 13HD touch", .type = WACOM_24HDT, /* Touch */
3366 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x333, .touch_max = 10,
3367 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
e87a344d 3368static const struct wacom_features wacom_features_0xC7 =
80befa93
BT
3369 { "Wacom DTU1931", 37832, 30305, 511, 0,
3370 PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
c8f2edc5 3371static const struct wacom_features wacom_features_0xCE =
80befa93
BT
3372 { "Wacom DTU2231", 47864, 27011, 511, 0,
3373 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
29b47391 3374 .check_for_hid_type = true, .hid_type = HID_TYPE_USBMOUSE };
c8f2edc5 3375static const struct wacom_features wacom_features_0xF0 =
80befa93
BT
3376 { "Wacom DTU1631", 34623, 19553, 511, 0,
3377 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
497ab1f2 3378static const struct wacom_features wacom_features_0xFB =
ecd618dc 3379 { "Wacom DTU1031", 21896, 13760, 511, 0,
70ee06c5 3380 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
fa770340 3381 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
fff00bf8
PC
3382static const struct wacom_features wacom_features_0x32F =
3383 { "Wacom DTU1031X", 22472, 12728, 511, 0,
70ee06c5 3384 DTUSX, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 0,
fff00bf8 3385 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
007760cf
AS
3386static const struct wacom_features wacom_features_0x336 =
3387 { "Wacom DTU1141", 23472, 13203, 1023, 0,
ff38e829
PC
3388 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
3389 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
56218563 3390static const struct wacom_features wacom_features_0x57 =
80befa93 3391 { "Wacom DTK2241", 95640, 54060, 2047, 63,
70ee06c5 3392 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
fa770340 3393 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
a112e9fd 3394static const struct wacom_features wacom_features_0x59 = /* Pen */
80befa93 3395 { "Wacom DTH2242", 95640, 54060, 2047, 63,
70ee06c5 3396 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
fa770340 3397 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
a112e9fd
PC
3398 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5D };
3399static const struct wacom_features wacom_features_0x5D = /* Touch */
3400 { "Wacom DTH2242", .type = WACOM_24HDT,
29b47391
BT
3401 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x59, .touch_max = 10,
3402 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3a4b4aaa 3403static const struct wacom_features wacom_features_0xCC =
ecd618dc 3404 { "Wacom Cintiq 21UX2", 86800, 65200, 2047, 63,
70ee06c5 3405 WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
fa770340 3406 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
d838c644 3407static const struct wacom_features wacom_features_0xFA =
ecd618dc 3408 { "Wacom Cintiq 22HD", 95440, 53860, 2047, 63,
70ee06c5 3409 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
fa770340 3410 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
56218563 3411static const struct wacom_features wacom_features_0x5B =
ecd618dc 3412 { "Wacom Cintiq 22HDT", 95440, 53860, 2047, 63,
70ee06c5 3413 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
fa770340 3414 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3bd1f7e2 3415 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5e };
56218563
PC
3416static const struct wacom_features wacom_features_0x5E =
3417 { "Wacom Cintiq 22HDT", .type = WACOM_24HDT,
29b47391
BT
3418 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5b, .touch_max = 10,
3419 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
e87a344d 3420static const struct wacom_features wacom_features_0x90 =
80befa93
BT
3421 { "Wacom ISDv4 90", 26202, 16325, 255, 0,
3422 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3423static const struct wacom_features wacom_features_0x93 =
80befa93
BT
3424 { "Wacom ISDv4 93", 26202, 16325, 255, 0,
3425 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
11d0cf88 3426static const struct wacom_features wacom_features_0x97 =
80befa93
BT
3427 { "Wacom ISDv4 97", 26202, 16325, 511, 0,
3428 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3429static const struct wacom_features wacom_features_0x9A =
80befa93
BT
3430 { "Wacom ISDv4 9A", 26202, 16325, 255, 0,
3431 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3432static const struct wacom_features wacom_features_0x9F =
80befa93
BT
3433 { "Wacom ISDv4 9F", 26202, 16325, 255, 0,
3434 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3435static const struct wacom_features wacom_features_0xE2 =
80befa93
BT
3436 { "Wacom ISDv4 E2", 26202, 16325, 255, 0,
3437 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
e87a344d 3438static const struct wacom_features wacom_features_0xE3 =
80befa93
BT
3439 { "Wacom ISDv4 E3", 26202, 16325, 255, 0,
3440 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
1963518b 3441static const struct wacom_features wacom_features_0xE5 =
80befa93
BT
3442 { "Wacom ISDv4 E5", 26202, 16325, 255, 0,
3443 MTSCREEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
26fcd2a7 3444static const struct wacom_features wacom_features_0xE6 =
80befa93
BT
3445 { "Wacom ISDv4 E6", 27760, 15694, 255, 0,
3446 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
0d0e3064 3447static const struct wacom_features wacom_features_0xEC =
80befa93
BT
3448 { "Wacom ISDv4 EC", 25710, 14500, 255, 0,
3449 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
ac173837 3450static const struct wacom_features wacom_features_0xED =
80befa93
BT
3451 { "Wacom ISDv4 ED", 26202, 16325, 255, 0,
3452 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
ac173837 3453static const struct wacom_features wacom_features_0xEF =
80befa93
BT
3454 { "Wacom ISDv4 EF", 26202, 16325, 255, 0,
3455 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
6afdc289 3456static const struct wacom_features wacom_features_0x100 =
80befa93
BT
3457 { "Wacom ISDv4 100", 26202, 16325, 255, 0,
3458 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
6afdc289 3459static const struct wacom_features wacom_features_0x101 =
80befa93
BT
3460 { "Wacom ISDv4 101", 26202, 16325, 255, 0,
3461 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
58694837 3462static const struct wacom_features wacom_features_0x10D =
80befa93
BT
3463 { "Wacom ISDv4 10D", 26202, 16325, 255, 0,
3464 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
2d3163f1 3465static const struct wacom_features wacom_features_0x10E =
80befa93
BT
3466 { "Wacom ISDv4 10E", 27760, 15694, 255, 0,
3467 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
9b4f60e5 3468static const struct wacom_features wacom_features_0x10F =
80befa93
BT
3469 { "Wacom ISDv4 10F", 27760, 15694, 255, 0,
3470 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
61616ed0 3471static const struct wacom_features wacom_features_0x116 =
80befa93
BT
3472 { "Wacom ISDv4 116", 26202, 16325, 255, 0,
3473 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
aeaf50d4
JG
3474static const struct wacom_features wacom_features_0x12C =
3475 { "Wacom ISDv4 12C", 27848, 15752, 2047, 0,
3476 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
edbe265d 3477static const struct wacom_features wacom_features_0x4001 =
80befa93
BT
3478 { "Wacom ISDv4 4001", 26202, 16325, 255, 0,
3479 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d51ddb2b 3480static const struct wacom_features wacom_features_0x4004 =
80befa93
BT
3481 { "Wacom ISDv4 4004", 11060, 6220, 255, 0,
3482 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d51ddb2b 3483static const struct wacom_features wacom_features_0x5000 =
80befa93
BT
3484 { "Wacom ISDv4 5000", 27848, 15752, 1023, 0,
3485 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d51ddb2b 3486static const struct wacom_features wacom_features_0x5002 =
80befa93
BT
3487 { "Wacom ISDv4 5002", 29576, 16724, 1023, 0,
3488 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3489static const struct wacom_features wacom_features_0x47 =
80befa93
BT
3490 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3491 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d3825d51 3492static const struct wacom_features wacom_features_0x84 =
3b164a00 3493 { "Wacom Wireless Receiver", .type = WIRELESS, .touch_max = 16 };
7b824bbd 3494static const struct wacom_features wacom_features_0xD0 =
80befa93 3495 { "Wacom Bamboo 2FG", 14720, 9200, 1023, 31,
3b164a00 3496 BAMBOO_TOUCH, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3497static const struct wacom_features wacom_features_0xD1 =
80befa93
BT
3498 { "Wacom Bamboo 2FG 4x5", 14720, 9200, 1023, 31,
3499 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3500static const struct wacom_features wacom_features_0xD2 =
80befa93
BT
3501 { "Wacom Bamboo Craft", 14720, 9200, 1023, 31,
3502 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3503static const struct wacom_features wacom_features_0xD3 =
80befa93
BT
3504 { "Wacom Bamboo 2FG 6x8", 21648, 13700, 1023, 31,
3505 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
57a7872f 3506static const struct wacom_features wacom_features_0xD4 =
80befa93 3507 { "Wacom Bamboo Pen", 14720, 9200, 1023, 31,
3b164a00 3508 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
18adad1c 3509static const struct wacom_features wacom_features_0xD5 =
80befa93 3510 { "Wacom Bamboo Pen 6x8", 21648, 13700, 1023, 31,
3b164a00 3511 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 3512static const struct wacom_features wacom_features_0xD6 =
80befa93
BT
3513 { "Wacom BambooPT 2FG 4x5", 14720, 9200, 1023, 31,
3514 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3515static const struct wacom_features wacom_features_0xD7 =
80befa93
BT
3516 { "Wacom BambooPT 2FG Small", 14720, 9200, 1023, 31,
3517 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3518static const struct wacom_features wacom_features_0xD8 =
80befa93
BT
3519 { "Wacom Bamboo Comic 2FG", 21648, 13700, 1023, 31,
3520 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3521static const struct wacom_features wacom_features_0xDA =
80befa93
BT
3522 { "Wacom Bamboo 2FG 4x5 SE", 14720, 9200, 1023, 31,
3523 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
f41a64ee 3524static const struct wacom_features wacom_features_0xDB =
80befa93
BT
3525 { "Wacom Bamboo 2FG 6x8 SE", 21648, 13700, 1023, 31,
3526 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
73149ab8 3527static const struct wacom_features wacom_features_0xDD =
80befa93
BT
3528 { "Wacom Bamboo Connect", 14720, 9200, 1023, 31,
3529 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
73149ab8 3530static const struct wacom_features wacom_features_0xDE =
80befa93
BT
3531 { "Wacom Bamboo 16FG 4x5", 14720, 9200, 1023, 31,
3532 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
73149ab8 3533static const struct wacom_features wacom_features_0xDF =
80befa93
BT
3534 { "Wacom Bamboo 16FG 6x8", 21648, 13700, 1023, 31,
3535 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
f41a64ee 3536static const struct wacom_features wacom_features_0x300 =
80befa93 3537 { "Wacom Bamboo One S", 14720, 9225, 1023, 31,
3b164a00 3538 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
f41a64ee 3539static const struct wacom_features wacom_features_0x301 =
80befa93
BT
3540 { "Wacom Bamboo One M", 21648, 13530, 1023, 31,
3541 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
b5fd2a3e 3542static const struct wacom_features wacom_features_0x302 =
80befa93
BT
3543 { "Wacom Intuos PT S", 15200, 9500, 1023, 31,
3544 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
29b47391 3545 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
b5fd2a3e 3546static const struct wacom_features wacom_features_0x303 =
80befa93
BT
3547 { "Wacom Intuos PT M", 21600, 13500, 1023, 31,
3548 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
29b47391 3549 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
b5fd2a3e 3550static const struct wacom_features wacom_features_0x30E =
80befa93
BT
3551 { "Wacom Intuos S", 15200, 9500, 1023, 31,
3552 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
29b47391 3553 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
7b4b3068 3554static const struct wacom_features wacom_features_0x6004 =
80befa93
BT
3555 { "ISD-V4", 12800, 8000, 255, 0,
3556 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
a3e6f654 3557static const struct wacom_features wacom_features_0x307 =
ecd618dc 3558 { "Wacom ISDv5 307", 59152, 33448, 2047, 63,
70ee06c5 3559 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
fa770340 3560 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
36d3c510 3561 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x309 };
a3e6f654 3562static const struct wacom_features wacom_features_0x309 =
36d3c510 3563 { "Wacom ISDv5 309", .type = WACOM_24HDT, /* Touch */
29b47391
BT
3564 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x0307, .touch_max = 10,
3565 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
89f2ab55 3566static const struct wacom_features wacom_features_0x30A =
ecd618dc 3567 { "Wacom ISDv5 30A", 59152, 33448, 2047, 63,
70ee06c5 3568 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
fa770340 3569 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
89f2ab55
BT
3570 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30C };
3571static const struct wacom_features wacom_features_0x30C =
3572 { "Wacom ISDv5 30C", .type = WACOM_24HDT, /* Touch */
3573 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30A, .touch_max = 10,
3574 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
8c97a765
BT
3575static const struct wacom_features wacom_features_0x318 =
3576 { "Wacom USB Bamboo PAD", 4095, 4095, /* Touch */
3577 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
3578static const struct wacom_features wacom_features_0x319 =
3579 { "Wacom Wireless Bamboo PAD", 4095, 4095, /* Touch */
3580 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
f7acb55c
JG
3581static const struct wacom_features wacom_features_0x325 =
3582 { "Wacom ISDv5 325", 59552, 33848, 2047, 63,
3583 CINTIQ_COMPANION_2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 11,
3584 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3585 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x326 };
3586static const struct wacom_features wacom_features_0x326 = /* Touch */
3587 { "Wacom ISDv5 326", .type = HID_GENERIC, .oVid = USB_VENDOR_ID_WACOM,
3588 .oPid = 0x325 };
fefb391f
PC
3589static const struct wacom_features wacom_features_0x323 =
3590 { "Wacom Intuos P M", 21600, 13500, 1023, 31,
3591 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3592 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
72b236d6 3593static const struct wacom_features wacom_features_0x331 =
3b164a00
PC
3594 { "Wacom Express Key Remote", .type = REMOTE,
3595 .numbered_buttons = 18, .check_for_hid_type = true,
72b236d6 3596 .hid_type = HID_TYPE_USBNONE };
eda01dab
PC
3597static const struct wacom_features wacom_features_0x33B =
3598 { "Wacom Intuos S 2", 15200, 9500, 2047, 63,
3599 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3600 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3601static const struct wacom_features wacom_features_0x33C =
3602 { "Wacom Intuos PT S 2", 15200, 9500, 2047, 63,
3603 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3604 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3605static const struct wacom_features wacom_features_0x33D =
3606 { "Wacom Intuos P M 2", 21600, 13500, 2047, 63,
3607 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3608 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3609static const struct wacom_features wacom_features_0x33E =
3610 { "Wacom Intuos PT M 2", 21600, 13500, 2047, 63,
3611 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3612 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
e1123fe9
PC
3613static const struct wacom_features wacom_features_0x343 =
3614 { "Wacom DTK1651", 34616, 19559, 1023, 0,
3615 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
3616 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
b036f6fb 3617
7704ac93 3618static const struct wacom_features wacom_features_HID_ANY_ID =
41372d5d 3619 { "Wacom HID", .type = HID_GENERIC, .oVid = HID_ANY_ID, .oPid = HID_ANY_ID };
7704ac93 3620
29b47391
BT
3621#define USB_DEVICE_WACOM(prod) \
3622 HID_DEVICE(BUS_USB, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3623 .driver_data = (kernel_ulong_t)&wacom_features_##prod
b036f6fb 3624
387142bb
BT
3625#define BT_DEVICE_WACOM(prod) \
3626 HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3627 .driver_data = (kernel_ulong_t)&wacom_features_##prod
1483f551 3628
eef23a84
MW
3629#define I2C_DEVICE_WACOM(prod) \
3630 HID_DEVICE(BUS_I2C, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3631 .driver_data = (kernel_ulong_t)&wacom_features_##prod
3632
7b4b3068 3633#define USB_DEVICE_LENOVO(prod) \
29b47391
BT
3634 HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
3635 .driver_data = (kernel_ulong_t)&wacom_features_##prod
7b4b3068 3636
29b47391 3637const struct hid_device_id wacom_ids[] = {
b036f6fb 3638 { USB_DEVICE_WACOM(0x00) },
a3e6f654 3639 { USB_DEVICE_WACOM(0x03) },
b036f6fb
BB
3640 { USB_DEVICE_WACOM(0x10) },
3641 { USB_DEVICE_WACOM(0x11) },
3642 { USB_DEVICE_WACOM(0x12) },
3643 { USB_DEVICE_WACOM(0x13) },
3644 { USB_DEVICE_WACOM(0x14) },
3645 { USB_DEVICE_WACOM(0x15) },
3646 { USB_DEVICE_WACOM(0x16) },
3647 { USB_DEVICE_WACOM(0x17) },
3648 { USB_DEVICE_WACOM(0x18) },
3649 { USB_DEVICE_WACOM(0x19) },
b036f6fb
BB
3650 { USB_DEVICE_WACOM(0x20) },
3651 { USB_DEVICE_WACOM(0x21) },
3652 { USB_DEVICE_WACOM(0x22) },
3653 { USB_DEVICE_WACOM(0x23) },
3654 { USB_DEVICE_WACOM(0x24) },
a3e6f654
BT
3655 { USB_DEVICE_WACOM(0x26) },
3656 { USB_DEVICE_WACOM(0x27) },
3657 { USB_DEVICE_WACOM(0x28) },
3658 { USB_DEVICE_WACOM(0x29) },
3659 { USB_DEVICE_WACOM(0x2A) },
b036f6fb
BB
3660 { USB_DEVICE_WACOM(0x30) },
3661 { USB_DEVICE_WACOM(0x31) },
3662 { USB_DEVICE_WACOM(0x32) },
3663 { USB_DEVICE_WACOM(0x33) },
3664 { USB_DEVICE_WACOM(0x34) },
3665 { USB_DEVICE_WACOM(0x35) },
3666 { USB_DEVICE_WACOM(0x37) },
3667 { USB_DEVICE_WACOM(0x38) },
3668 { USB_DEVICE_WACOM(0x39) },
a3e6f654 3669 { USB_DEVICE_WACOM(0x3F) },
b036f6fb
BB
3670 { USB_DEVICE_WACOM(0x41) },
3671 { USB_DEVICE_WACOM(0x42) },
3672 { USB_DEVICE_WACOM(0x43) },
3673 { USB_DEVICE_WACOM(0x44) },
3674 { USB_DEVICE_WACOM(0x45) },
a3e6f654 3675 { USB_DEVICE_WACOM(0x47) },
56218563 3676 { USB_DEVICE_WACOM(0x57) },
a112e9fd 3677 { USB_DEVICE_WACOM(0x59) },
56218563 3678 { USB_DEVICE_WACOM(0x5B) },
a3e6f654 3679 { USB_DEVICE_WACOM(0x5D) },
29b47391 3680 { USB_DEVICE_WACOM(0x5E) },
a3e6f654
BT
3681 { USB_DEVICE_WACOM(0x60) },
3682 { USB_DEVICE_WACOM(0x61) },
3683 { USB_DEVICE_WACOM(0x62) },
3684 { USB_DEVICE_WACOM(0x63) },
3685 { USB_DEVICE_WACOM(0x64) },
3686 { USB_DEVICE_WACOM(0x65) },
3687 { USB_DEVICE_WACOM(0x69) },
3688 { USB_DEVICE_WACOM(0x6A) },
3689 { USB_DEVICE_WACOM(0x6B) },
387142bb 3690 { BT_DEVICE_WACOM(0x81) },
a3e6f654
BT
3691 { USB_DEVICE_WACOM(0x84) },
3692 { USB_DEVICE_WACOM(0x90) },
3693 { USB_DEVICE_WACOM(0x93) },
3694 { USB_DEVICE_WACOM(0x97) },
3695 { USB_DEVICE_WACOM(0x9A) },
3696 { USB_DEVICE_WACOM(0x9F) },
b036f6fb
BB
3697 { USB_DEVICE_WACOM(0xB0) },
3698 { USB_DEVICE_WACOM(0xB1) },
3699 { USB_DEVICE_WACOM(0xB2) },
3700 { USB_DEVICE_WACOM(0xB3) },
3701 { USB_DEVICE_WACOM(0xB4) },
3702 { USB_DEVICE_WACOM(0xB5) },
3703 { USB_DEVICE_WACOM(0xB7) },
3704 { USB_DEVICE_WACOM(0xB8) },
3705 { USB_DEVICE_WACOM(0xB9) },
3706 { USB_DEVICE_WACOM(0xBA) },
3707 { USB_DEVICE_WACOM(0xBB) },
3a4b4aaa 3708 { USB_DEVICE_WACOM(0xBC) },
81af7e61 3709 { BT_DEVICE_WACOM(0xBD) },
a3e6f654
BT
3710 { USB_DEVICE_WACOM(0xC0) },
3711 { USB_DEVICE_WACOM(0xC2) },
3712 { USB_DEVICE_WACOM(0xC4) },
b036f6fb
BB
3713 { USB_DEVICE_WACOM(0xC5) },
3714 { USB_DEVICE_WACOM(0xC6) },
3715 { USB_DEVICE_WACOM(0xC7) },
a3e6f654 3716 { USB_DEVICE_WACOM(0xCC) },
29b47391 3717 { USB_DEVICE_WACOM(0xCE) },
cb734c03 3718 { USB_DEVICE_WACOM(0xD0) },
2aaacb15
CB
3719 { USB_DEVICE_WACOM(0xD1) },
3720 { USB_DEVICE_WACOM(0xD2) },
3721 { USB_DEVICE_WACOM(0xD3) },
57a7872f 3722 { USB_DEVICE_WACOM(0xD4) },
18adad1c 3723 { USB_DEVICE_WACOM(0xD5) },
d38acb49
PC
3724 { USB_DEVICE_WACOM(0xD6) },
3725 { USB_DEVICE_WACOM(0xD7) },
a318e6b1
DF
3726 { USB_DEVICE_WACOM(0xD8) },
3727 { USB_DEVICE_WACOM(0xDA) },
47d09235 3728 { USB_DEVICE_WACOM(0xDB) },
73149ab8
CB
3729 { USB_DEVICE_WACOM(0xDD) },
3730 { USB_DEVICE_WACOM(0xDE) },
3731 { USB_DEVICE_WACOM(0xDF) },
b036f6fb
BB
3732 { USB_DEVICE_WACOM(0xE2) },
3733 { USB_DEVICE_WACOM(0xE3) },
1963518b 3734 { USB_DEVICE_WACOM(0xE5) },
26fcd2a7 3735 { USB_DEVICE_WACOM(0xE6) },
0d0e3064 3736 { USB_DEVICE_WACOM(0xEC) },
ac173837
PC
3737 { USB_DEVICE_WACOM(0xED) },
3738 { USB_DEVICE_WACOM(0xEF) },
a3e6f654
BT
3739 { USB_DEVICE_WACOM(0xF0) },
3740 { USB_DEVICE_WACOM(0xF4) },
3741 { USB_DEVICE_WACOM(0xF6) },
3742 { USB_DEVICE_WACOM(0xF8) },
3743 { USB_DEVICE_WACOM(0xFA) },
3744 { USB_DEVICE_WACOM(0xFB) },
6afdc289
PC
3745 { USB_DEVICE_WACOM(0x100) },
3746 { USB_DEVICE_WACOM(0x101) },
58694837 3747 { USB_DEVICE_WACOM(0x10D) },
2d3163f1 3748 { USB_DEVICE_WACOM(0x10E) },
9b4f60e5 3749 { USB_DEVICE_WACOM(0x10F) },
61616ed0 3750 { USB_DEVICE_WACOM(0x116) },
aeaf50d4 3751 { USB_DEVICE_WACOM(0x12C) },
f41a64ee
PC
3752 { USB_DEVICE_WACOM(0x300) },
3753 { USB_DEVICE_WACOM(0x301) },
29b47391
BT
3754 { USB_DEVICE_WACOM(0x302) },
3755 { USB_DEVICE_WACOM(0x303) },
56218563 3756 { USB_DEVICE_WACOM(0x304) },
a3e6f654
BT
3757 { USB_DEVICE_WACOM(0x307) },
3758 { USB_DEVICE_WACOM(0x309) },
89f2ab55
BT
3759 { USB_DEVICE_WACOM(0x30A) },
3760 { USB_DEVICE_WACOM(0x30C) },
a3e6f654 3761 { USB_DEVICE_WACOM(0x30E) },
29b47391
BT
3762 { USB_DEVICE_WACOM(0x314) },
3763 { USB_DEVICE_WACOM(0x315) },
3764 { USB_DEVICE_WACOM(0x317) },
8c97a765
BT
3765 { USB_DEVICE_WACOM(0x318) },
3766 { USB_DEVICE_WACOM(0x319) },
fefb391f 3767 { USB_DEVICE_WACOM(0x323) },
f7acb55c
JG
3768 { USB_DEVICE_WACOM(0x325) },
3769 { USB_DEVICE_WACOM(0x326) },
500d4160
PC
3770 { USB_DEVICE_WACOM(0x32A) },
3771 { USB_DEVICE_WACOM(0x32B) },
3772 { USB_DEVICE_WACOM(0x32C) },
fff00bf8 3773 { USB_DEVICE_WACOM(0x32F) },
72b236d6 3774 { USB_DEVICE_WACOM(0x331) },
b4bf2120
PC
3775 { USB_DEVICE_WACOM(0x333) },
3776 { USB_DEVICE_WACOM(0x335) },
007760cf 3777 { USB_DEVICE_WACOM(0x336) },
eda01dab
PC
3778 { USB_DEVICE_WACOM(0x33B) },
3779 { USB_DEVICE_WACOM(0x33C) },
3780 { USB_DEVICE_WACOM(0x33D) },
3781 { USB_DEVICE_WACOM(0x33E) },
e1123fe9 3782 { USB_DEVICE_WACOM(0x343) },
edbe265d 3783 { USB_DEVICE_WACOM(0x4001) },
d51ddb2b
JG
3784 { USB_DEVICE_WACOM(0x4004) },
3785 { USB_DEVICE_WACOM(0x5000) },
3786 { USB_DEVICE_WACOM(0x5002) },
00d6f227 3787 { USB_DEVICE_LENOVO(0x6004) },
7704ac93
BT
3788
3789 { USB_DEVICE_WACOM(HID_ANY_ID) },
eef23a84 3790 { I2C_DEVICE_WACOM(HID_ANY_ID) },
3bea733a
PC
3791 { }
3792};
29b47391 3793MODULE_DEVICE_TABLE(hid, wacom_ids);