]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/hid/wacom_wac.c
HID: wacom: generic: Support and use 'Custom HID' mode and usages
[mirror_ubuntu-bionic-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 ||
1445 subpage == WACOM_HID_SP_DIGITIZERINFO) {
1446 return usage;
1447 }
1448
1449 if (subpage == HID_UP_UNDEFINED)
1450 subpage = HID_UP_DIGITIZER;
1451
1452 return subpage | subusage;
1453 }
1454
1455 return usage;
1456}
1457
2a6cdbdd 1458static void wacom_map_usage(struct input_dev *input, struct hid_usage *usage,
7704ac93
BT
1459 struct hid_field *field, __u8 type, __u16 code, int fuzz)
1460{
7704ac93
BT
1461 int fmin = field->logical_minimum;
1462 int fmax = field->logical_maximum;
c9c09587 1463 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
50066a04
JG
1464 int resolution_code = code;
1465
c9c09587 1466 if (equivalent_usage == HID_DG_TWIST) {
50066a04
JG
1467 resolution_code = ABS_RZ;
1468 }
7704ac93
BT
1469
1470 usage->type = type;
1471 usage->code = code;
1472
1473 set_bit(type, input->evbit);
1474
1475 switch (type) {
1476 case EV_ABS:
1477 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
1478 input_abs_set_res(input, code,
50066a04 1479 hidinput_calc_abs_res(field, resolution_code));
7704ac93
BT
1480 break;
1481 case EV_KEY:
1482 input_set_capability(input, EV_KEY, code);
1483 break;
1484 case EV_MSC:
1485 input_set_capability(input, EV_MSC, code);
1486 break;
1487 }
1488}
1489
1490static void wacom_wac_pen_usage_mapping(struct hid_device *hdev,
1491 struct hid_field *field, struct hid_usage *usage)
1492{
1493 struct wacom *wacom = hid_get_drvdata(hdev);
2a6cdbdd
JG
1494 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1495 struct input_dev *input = wacom_wac->pen_input;
c9c09587 1496 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
7704ac93 1497
c9c09587 1498 switch (equivalent_usage) {
7704ac93 1499 case HID_GD_X:
2a6cdbdd 1500 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
7704ac93
BT
1501 break;
1502 case HID_GD_Y:
2a6cdbdd 1503 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
7704ac93 1504 break;
50066a04
JG
1505 case HID_GD_Z:
1506 wacom_map_usage(input, usage, field, EV_ABS, ABS_DISTANCE, 0);
1507 break;
7704ac93 1508 case HID_DG_TIPPRESSURE:
2a6cdbdd 1509 wacom_map_usage(input, usage, field, EV_ABS, ABS_PRESSURE, 0);
7704ac93
BT
1510 break;
1511 case HID_DG_INRANGE:
2a6cdbdd 1512 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
7704ac93
BT
1513 break;
1514 case HID_DG_INVERT:
2a6cdbdd 1515 wacom_map_usage(input, usage, field, EV_KEY,
7704ac93
BT
1516 BTN_TOOL_RUBBER, 0);
1517 break;
50066a04
JG
1518 case HID_DG_TILT_X:
1519 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_X, 0);
1520 break;
1521 case HID_DG_TILT_Y:
1522 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_Y, 0);
1523 break;
1524 case HID_DG_TWIST:
1525 wacom_map_usage(input, usage, field, EV_ABS, ABS_Z, 0);
1526 break;
7704ac93
BT
1527 case HID_DG_ERASER:
1528 case HID_DG_TIPSWITCH:
2a6cdbdd 1529 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
7704ac93
BT
1530 break;
1531 case HID_DG_BARRELSWITCH:
2a6cdbdd 1532 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS, 0);
7704ac93
BT
1533 break;
1534 case HID_DG_BARRELSWITCH2:
2a6cdbdd 1535 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS2, 0);
7704ac93
BT
1536 break;
1537 case HID_DG_TOOLSERIALNUMBER:
2a6cdbdd 1538 wacom_map_usage(input, usage, field, EV_MSC, MSC_SERIAL, 0);
7704ac93
BT
1539 break;
1540 }
1541}
1542
1543static int wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field,
1544 struct hid_usage *usage, __s32 value)
1545{
1546 struct wacom *wacom = hid_get_drvdata(hdev);
1547 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 1548 struct input_dev *input = wacom_wac->pen_input;
c9c09587 1549 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
7704ac93 1550
c9c09587 1551 switch (equivalent_usage) {
50066a04
JG
1552 case HID_GD_Z:
1553 /*
1554 * HID_GD_Z "should increase as the control's position is
1555 * moved from high to low", while ABS_DISTANCE instead
1556 * increases in value as the tool moves from low to high.
1557 */
1558 value = field->logical_maximum - value;
1559 break;
7704ac93
BT
1560 case HID_DG_INRANGE:
1561 wacom_wac->hid_data.inrange_state = value;
1562 return 0;
1563 case HID_DG_INVERT:
1564 wacom_wac->hid_data.invert_state = value;
1565 return 0;
1566 case HID_DG_ERASER:
1567 case HID_DG_TIPSWITCH:
1568 wacom_wac->hid_data.tipswitch |= value;
1569 return 0;
1570 }
1571
1924e05e
PC
1572 /* send pen events only when touch is up or forced out
1573 * or touch arbitration is off
1574 */
1575 if (!usage->type || delay_pen_events(wacom_wac))
7704ac93
BT
1576 return 0;
1577
1578 input_event(input, usage->type, usage->code, value);
1579
1580 return 0;
1581}
1582
06324e0c
JG
1583static void wacom_wac_pen_pre_report(struct hid_device *hdev,
1584 struct hid_report *report)
1585{
1586 return;
1587}
1588
7704ac93
BT
1589static void wacom_wac_pen_report(struct hid_device *hdev,
1590 struct hid_report *report)
1591{
1592 struct wacom *wacom = hid_get_drvdata(hdev);
1593 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 1594 struct input_dev *input = wacom_wac->pen_input;
7704ac93
BT
1595 bool prox = wacom_wac->hid_data.inrange_state;
1596
1597 if (!wacom_wac->shared->stylus_in_proximity) /* first in prox */
1598 /* Going into proximity select tool */
1599 wacom_wac->tool[0] = wacom_wac->hid_data.invert_state ?
1600 BTN_TOOL_RUBBER : BTN_TOOL_PEN;
1601
1602 /* keep pen state for touch events */
1603 wacom_wac->shared->stylus_in_proximity = prox;
1604
1924e05e 1605 if (!delay_pen_events(wacom_wac)) {
7704ac93
BT
1606 input_report_key(input, BTN_TOUCH,
1607 wacom_wac->hid_data.tipswitch);
1608 input_report_key(input, wacom_wac->tool[0], prox);
1609
1610 wacom_wac->hid_data.tipswitch = false;
1611
1612 input_sync(input);
1613 }
1614}
1615
5ae6e89f
BT
1616static void wacom_wac_finger_usage_mapping(struct hid_device *hdev,
1617 struct hid_field *field, struct hid_usage *usage)
1618{
1619 struct wacom *wacom = hid_get_drvdata(hdev);
1620 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 1621 struct input_dev *input = wacom_wac->touch_input;
5ae6e89f 1622 unsigned touch_max = wacom_wac->features.touch_max;
c9c09587 1623 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
5ae6e89f 1624
c9c09587 1625 switch (equivalent_usage) {
5ae6e89f
BT
1626 case HID_GD_X:
1627 if (touch_max == 1)
2a6cdbdd 1628 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
5ae6e89f 1629 else
2a6cdbdd 1630 wacom_map_usage(input, usage, field, EV_ABS,
5ae6e89f
BT
1631 ABS_MT_POSITION_X, 4);
1632 break;
1633 case HID_GD_Y:
1634 if (touch_max == 1)
2a6cdbdd 1635 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
5ae6e89f 1636 else
2a6cdbdd 1637 wacom_map_usage(input, usage, field, EV_ABS,
5ae6e89f
BT
1638 ABS_MT_POSITION_Y, 4);
1639 break;
488abb5c
JG
1640 case HID_DG_WIDTH:
1641 case HID_DG_HEIGHT:
488abb5c
JG
1642 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MAJOR, 0);
1643 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MINOR, 0);
1644 input_set_abs_params(input, ABS_MT_ORIENTATION, 0, 1, 0, 0);
1645 break;
5ae6e89f 1646 case HID_DG_TIPSWITCH:
2a6cdbdd 1647 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
5ae6e89f 1648 break;
1b5d514a 1649 case HID_DG_CONTACTCOUNT:
499522c8 1650 wacom_wac->hid_data.cc_report = field->report->id;
1b5d514a
JG
1651 wacom_wac->hid_data.cc_index = field->index;
1652 wacom_wac->hid_data.cc_value_index = usage->usage_index;
1653 break;
5ae6e89f
BT
1654 }
1655}
1656
601a22f3
JG
1657static void wacom_wac_finger_slot(struct wacom_wac *wacom_wac,
1658 struct input_dev *input)
1659{
1660 struct hid_data *hid_data = &wacom_wac->hid_data;
1661 bool mt = wacom_wac->features.touch_max > 1;
1662 bool prox = hid_data->tipswitch &&
1924e05e 1663 report_touch_events(wacom_wac);
601a22f3 1664
1b5d514a
JG
1665 wacom_wac->hid_data.num_received++;
1666 if (wacom_wac->hid_data.num_received > wacom_wac->hid_data.num_expected)
1667 return;
1668
601a22f3
JG
1669 if (mt) {
1670 int slot;
1671
1672 slot = input_mt_get_slot_by_key(input, hid_data->id);
1673 input_mt_slot(input, slot);
1674 input_mt_report_slot_state(input, MT_TOOL_FINGER, prox);
1675 }
1676 else {
1677 input_report_key(input, BTN_TOUCH, prox);
1678 }
1679
1680 if (prox) {
1681 input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X,
1682 hid_data->x);
1683 input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y,
1684 hid_data->y);
488abb5c
JG
1685
1686 if (test_bit(ABS_MT_TOUCH_MAJOR, input->absbit)) {
1687 input_report_abs(input, ABS_MT_TOUCH_MAJOR, max(hid_data->width, hid_data->height));
1688 input_report_abs(input, ABS_MT_TOUCH_MINOR, min(hid_data->width, hid_data->height));
1689 if (hid_data->width != hid_data->height)
1690 input_report_abs(input, ABS_MT_ORIENTATION, hid_data->width <= hid_data->height ? 0 : 1);
1691 }
601a22f3
JG
1692 }
1693}
1694
5ae6e89f
BT
1695static int wacom_wac_finger_event(struct hid_device *hdev,
1696 struct hid_field *field, struct hid_usage *usage, __s32 value)
1697{
1698 struct wacom *wacom = hid_get_drvdata(hdev);
1699 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
c9c09587 1700 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
5ae6e89f 1701
c9c09587 1702 switch (equivalent_usage) {
5ae6e89f
BT
1703 case HID_GD_X:
1704 wacom_wac->hid_data.x = value;
1705 break;
1706 case HID_GD_Y:
1707 wacom_wac->hid_data.y = value;
1708 break;
488abb5c
JG
1709 case HID_DG_WIDTH:
1710 wacom_wac->hid_data.width = value;
1711 break;
1712 case HID_DG_HEIGHT:
1713 wacom_wac->hid_data.height = value;
1714 break;
5ae6e89f
BT
1715 case HID_DG_CONTACTID:
1716 wacom_wac->hid_data.id = value;
1717 break;
1718 case HID_DG_TIPSWITCH:
1719 wacom_wac->hid_data.tipswitch = value;
1720 break;
1721 }
1722
1723
601a22f3 1724 if (usage->usage_index + 1 == field->report_count) {
c9c09587 1725 if (equivalent_usage == wacom_wac->hid_data.last_slot_field)
2a6cdbdd 1726 wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input);
601a22f3
JG
1727 }
1728
5ae6e89f
BT
1729 return 0;
1730}
1731
06324e0c
JG
1732static void wacom_wac_finger_pre_report(struct hid_device *hdev,
1733 struct hid_report *report)
1734{
1b5d514a
JG
1735 struct wacom *wacom = hid_get_drvdata(hdev);
1736 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1737 struct hid_data* hid_data = &wacom_wac->hid_data;
003f50ab 1738 int i;
1b5d514a 1739
003f50ab
JG
1740 for (i = 0; i < report->maxfield; i++) {
1741 struct hid_field *field = report->field[i];
1742 int j;
1743
1744 for (j = 0; j < field->maxusage; j++) {
1745 struct hid_usage *usage = &field->usage[j];
1746
1747 switch (usage->hid) {
1748 case HID_GD_X:
1749 case HID_GD_Y:
1750 case HID_DG_WIDTH:
1751 case HID_DG_HEIGHT:
1752 case HID_DG_CONTACTID:
1753 case HID_DG_INRANGE:
1754 case HID_DG_INVERT:
1755 case HID_DG_TIPSWITCH:
1756 hid_data->last_slot_field = usage->hid;
1757 break;
1758 case HID_DG_CONTACTCOUNT:
1759 hid_data->cc_report = report->id;
1760 hid_data->cc_index = i;
1761 hid_data->cc_value_index = j;
1762 break;
499522c8
JG
1763 }
1764 }
1765 }
003f50ab 1766
df707938
JG
1767 if (hid_data->cc_report != 0 &&
1768 hid_data->cc_index >= 0) {
1b5d514a
JG
1769 struct hid_field *field = report->field[hid_data->cc_index];
1770 int value = field->value[hid_data->cc_value_index];
1771 if (value)
1772 hid_data->num_expected = value;
1773 }
1774 else {
1775 hid_data->num_expected = wacom_wac->features.touch_max;
1776 }
06324e0c
JG
1777}
1778
5ae6e89f
BT
1779static void wacom_wac_finger_report(struct hid_device *hdev,
1780 struct hid_report *report)
1781{
1782 struct wacom *wacom = hid_get_drvdata(hdev);
1783 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 1784 struct input_dev *input = wacom_wac->touch_input;
5ae6e89f
BT
1785 unsigned touch_max = wacom_wac->features.touch_max;
1786
1b5d514a
JG
1787 /* If more packets of data are expected, give us a chance to
1788 * process them rather than immediately syncing a partial
1789 * update.
1790 */
1791 if (wacom_wac->hid_data.num_received < wacom_wac->hid_data.num_expected)
1792 return;
1793
5ae6e89f 1794 if (touch_max > 1)
601a22f3
JG
1795 input_mt_sync_frame(input);
1796
5ae6e89f 1797 input_sync(input);
1b5d514a 1798 wacom_wac->hid_data.num_received = 0;
5ae6e89f
BT
1799
1800 /* keep touch state for pen event */
7d059ed0 1801 wacom_wac->shared->touch_down = wacom_wac_finger_count_touches(wacom_wac);
5ae6e89f
BT
1802}
1803
7704ac93
BT
1804void wacom_wac_usage_mapping(struct hid_device *hdev,
1805 struct hid_field *field, struct hid_usage *usage)
1806{
1807 struct wacom *wacom = hid_get_drvdata(hdev);
1808 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
e5bc8eb1 1809 struct wacom_features *features = &wacom_wac->features;
7704ac93
BT
1810
1811 /* currently, only direct devices have proper hid report descriptors */
e5bc8eb1 1812 features->device_type |= WACOM_DEVICETYPE_DIRECT;
7704ac93
BT
1813
1814 if (WACOM_PEN_FIELD(field))
1815 return wacom_wac_pen_usage_mapping(hdev, field, usage);
5ae6e89f
BT
1816
1817 if (WACOM_FINGER_FIELD(field))
1818 return wacom_wac_finger_usage_mapping(hdev, field, usage);
7704ac93
BT
1819}
1820
1821int wacom_wac_event(struct hid_device *hdev, struct hid_field *field,
1822 struct hid_usage *usage, __s32 value)
1823{
1824 struct wacom *wacom = hid_get_drvdata(hdev);
1825
1826 if (wacom->wacom_wac.features.type != HID_GENERIC)
1827 return 0;
1828
1829 if (WACOM_PEN_FIELD(field))
1830 return wacom_wac_pen_event(hdev, field, usage, value);
1831
5ae6e89f
BT
1832 if (WACOM_FINGER_FIELD(field))
1833 return wacom_wac_finger_event(hdev, field, usage, value);
1834
7704ac93
BT
1835 return 0;
1836}
1837
06324e0c
JG
1838static void wacom_report_events(struct hid_device *hdev, struct hid_report *report)
1839{
1840 int r;
1841
1842 for (r = 0; r < report->maxfield; r++) {
1843 struct hid_field *field;
1844 unsigned count, n;
1845
1846 field = report->field[r];
1847 count = field->report_count;
1848
1849 if (!(HID_MAIN_ITEM_VARIABLE & field->flags))
1850 continue;
1851
1852 for (n = 0; n < count; n++)
1853 wacom_wac_event(hdev, field, &field->usage[n], field->value[n]);
1854 }
1855}
1856
7704ac93
BT
1857void wacom_wac_report(struct hid_device *hdev, struct hid_report *report)
1858{
1859 struct wacom *wacom = hid_get_drvdata(hdev);
1860 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1861 struct hid_field *field = report->field[0];
1862
1863 if (wacom_wac->features.type != HID_GENERIC)
1864 return;
1865
06324e0c
JG
1866 if (WACOM_PEN_FIELD(field))
1867 wacom_wac_pen_pre_report(hdev, report);
1868
1869 if (WACOM_FINGER_FIELD(field))
1870 wacom_wac_finger_pre_report(hdev, report);
1871
1872 wacom_report_events(hdev, report);
1873
7704ac93
BT
1874 if (WACOM_PEN_FIELD(field))
1875 return wacom_wac_pen_report(hdev, report);
5ae6e89f
BT
1876
1877 if (WACOM_FINGER_FIELD(field))
1878 return wacom_wac_finger_report(hdev, report);
7704ac93
BT
1879}
1880
e1d38e49 1881static int wacom_bpt_touch(struct wacom_wac *wacom)
cb734c03 1882{
f4ccbef2 1883 struct wacom_features *features = &wacom->features;
2a6cdbdd 1884 struct input_dev *input = wacom->touch_input;
3116871f 1885 struct input_dev *pad_input = wacom->pad_input;
cb734c03 1886 unsigned char *data = wacom->data;
cb734c03
HR
1887 int i;
1888
5a6c865d
CB
1889 if (data[0] != 0x02)
1890 return 0;
1891
cb734c03 1892 for (i = 0; i < 2; i++) {
8f906860 1893 int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
1924e05e
PC
1894 bool touch = report_touch_events(wacom)
1895 && (data[offset + 3] & 0x80);
8f906860
CB
1896
1897 input_mt_slot(input, i);
1898 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
c5f4dec1 1899 if (touch) {
8f906860
CB
1900 int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
1901 int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
f4ccbef2
HR
1902 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
1903 x <<= 5;
1904 y <<= 5;
1905 }
cb734c03
HR
1906 input_report_abs(input, ABS_MT_POSITION_X, x);
1907 input_report_abs(input, ABS_MT_POSITION_Y, y);
cb734c03 1908 }
cb734c03
HR
1909 }
1910
9a1c0012 1911 input_mt_sync_frame(input);
cb734c03 1912
3116871f
BT
1913 input_report_key(pad_input, BTN_LEFT, (data[1] & 0x08) != 0);
1914 input_report_key(pad_input, BTN_FORWARD, (data[1] & 0x04) != 0);
1915 input_report_key(pad_input, BTN_BACK, (data[1] & 0x02) != 0);
1916 input_report_key(pad_input, BTN_RIGHT, (data[1] & 0x01) != 0);
7d059ed0 1917 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
cb734c03 1918
3116871f 1919 return 1;
cb734c03
HR
1920}
1921
7d059ed0 1922static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
73149ab8 1923{
9a35c411 1924 struct wacom_features *features = &wacom->features;
2a6cdbdd 1925 struct input_dev *input = wacom->touch_input;
73149ab8 1926 bool touch = data[1] & 0x80;
02295e68
PC
1927 int slot = input_mt_get_slot_by_key(input, data[0]);
1928
1929 if (slot < 0)
7d059ed0 1930 return;
73149ab8 1931
1924e05e 1932 touch = touch && report_touch_events(wacom);
73149ab8 1933
02295e68 1934 input_mt_slot(input, slot);
73149ab8
CB
1935 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1936
1937 if (touch) {
1938 int x = (data[2] << 4) | (data[4] >> 4);
1939 int y = (data[3] << 4) | (data[4] & 0x0f);
9a35c411 1940 int width, height;
4e904954 1941
eda01dab 1942 if (features->type >= INTUOSPS && features->type <= INTUOSHT2) {
0b279da7
JG
1943 width = data[5] * 100;
1944 height = data[6] * 100;
9a35c411
PC
1945 } else {
1946 /*
1947 * "a" is a scaled-down area which we assume is
1948 * roughly circular and which can be described as:
1949 * a=(pi*r^2)/C.
1950 */
1951 int a = data[5];
d7da3a3c
PC
1952 int x_res = input_abs_get_res(input, ABS_MT_POSITION_X);
1953 int y_res = input_abs_get_res(input, ABS_MT_POSITION_Y);
1954 width = 2 * int_sqrt(a * WACOM_CONTACT_AREA_SCALE);
9a35c411
PC
1955 height = width * y_res / x_res;
1956 }
73149ab8
CB
1957
1958 input_report_abs(input, ABS_MT_POSITION_X, x);
1959 input_report_abs(input, ABS_MT_POSITION_Y, y);
4e904954
JG
1960 input_report_abs(input, ABS_MT_TOUCH_MAJOR, width);
1961 input_report_abs(input, ABS_MT_TOUCH_MINOR, height);
73149ab8
CB
1962 }
1963}
1964
1965static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
1966{
3116871f 1967 struct input_dev *input = wacom->pad_input;
b5fd2a3e 1968 struct wacom_features *features = &wacom->features;
73149ab8 1969
eda01dab 1970 if (features->type == INTUOSHT || features->type == INTUOSHT2) {
b5fd2a3e
PC
1971 input_report_key(input, BTN_LEFT, (data[1] & 0x02) != 0);
1972 input_report_key(input, BTN_BACK, (data[1] & 0x08) != 0);
1973 } else {
1974 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
1975 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
1976 }
73149ab8 1977 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
73149ab8
CB
1978 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
1979}
1980
1981static int wacom_bpt3_touch(struct wacom_wac *wacom)
1982{
73149ab8 1983 unsigned char *data = wacom->data;
19d57d3a 1984 int count = data[1] & 0x07;
eda01dab 1985 int touch_changed = 0, i;
73149ab8 1986
5a6c865d
CB
1987 if (data[0] != 0x02)
1988 return 0;
1989
73149ab8
CB
1990 /* data has up to 7 fixed sized 8-byte messages starting at data[2] */
1991 for (i = 0; i < count; i++) {
1992 int offset = (8 * i) + 2;
1993 int msg_id = data[offset];
1994
eda01dab 1995 if (msg_id >= 2 && msg_id <= 17) {
7d059ed0 1996 wacom_bpt3_touch_msg(wacom, data + offset);
eda01dab
PC
1997 touch_changed++;
1998 } else if (msg_id == 128)
73149ab8
CB
1999 wacom_bpt3_button_msg(wacom, data + offset);
2000
2001 }
2a6cdbdd 2002
eda01dab 2003 /* only update touch if we actually have a touchpad and touch data changed */
84dfbd7f 2004 if (wacom->touch_input && touch_changed) {
2a6cdbdd
JG
2005 input_mt_sync_frame(wacom->touch_input);
2006 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
2007 }
73149ab8 2008
3116871f 2009 return 1;
73149ab8
CB
2010}
2011
2aaacb15
CB
2012static int wacom_bpt_pen(struct wacom_wac *wacom)
2013{
961794a0 2014 struct wacom_features *features = &wacom->features;
2a6cdbdd 2015 struct input_dev *input = wacom->pen_input;
2aaacb15
CB
2016 unsigned char *data = wacom->data;
2017 int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
2018
4ca4ec71 2019 if (data[0] != WACOM_REPORT_PENABLED)
5a6c865d
CB
2020 return 0;
2021
c5981411 2022 prox = (data[1] & 0x20) == 0x20;
2aaacb15
CB
2023
2024 /*
2025 * All reports shared between PEN and RUBBER tool must be
2026 * forced to a known starting value (zero) when transitioning to
2027 * out-of-prox.
2028 *
2029 * If not reset then, to userspace, it will look like lost events
2030 * if new tool comes in-prox with same values as previous tool sent.
2031 *
2032 * Hardware does report zero in most out-of-prox cases but not all.
2033 */
0149931e
PC
2034 if (!wacom->shared->stylus_in_proximity) {
2035 if (data[1] & 0x08) {
2036 wacom->tool[0] = BTN_TOOL_RUBBER;
2037 wacom->id[0] = ERASER_DEVICE_ID;
2038 } else {
2039 wacom->tool[0] = BTN_TOOL_PEN;
2040 wacom->id[0] = STYLUS_DEVICE_ID;
2aaacb15 2041 }
0149931e
PC
2042 }
2043
2044 wacom->shared->stylus_in_proximity = prox;
1924e05e 2045 if (delay_pen_events(wacom))
0149931e
PC
2046 return 0;
2047
2048 if (prox) {
2aaacb15
CB
2049 x = le16_to_cpup((__le16 *)&data[2]);
2050 y = le16_to_cpup((__le16 *)&data[4]);
2051 p = le16_to_cpup((__le16 *)&data[6]);
c18c2cec
CB
2052 /*
2053 * Convert distance from out prox to distance from tablet.
2054 * distance will be greater than distance_max once
2055 * touching and applying pressure; do not report negative
2056 * distance.
2057 */
961794a0
PC
2058 if (data[8] <= features->distance_max)
2059 d = features->distance_max - data[8];
c18c2cec 2060
2aaacb15
CB
2061 pen = data[1] & 0x01;
2062 btn1 = data[1] & 0x02;
2063 btn2 = data[1] & 0x04;
0149931e
PC
2064 } else {
2065 wacom->id[0] = 0;
2aaacb15
CB
2066 }
2067
2068 input_report_key(input, BTN_TOUCH, pen);
2069 input_report_key(input, BTN_STYLUS, btn1);
2070 input_report_key(input, BTN_STYLUS2, btn2);
2071
2072 input_report_abs(input, ABS_X, x);
2073 input_report_abs(input, ABS_Y, y);
2074 input_report_abs(input, ABS_PRESSURE, p);
2075 input_report_abs(input, ABS_DISTANCE, d);
2076
2aaacb15
CB
2077 input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
2078 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
2079
2080 return 1;
2081}
2082
e1d38e49
CB
2083static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
2084{
eda01dab
PC
2085 struct wacom_features *features = &wacom->features;
2086
2087 if ((features->type == INTUOSHT2) &&
eda01dab
PC
2088 (features->device_type & WACOM_DEVICETYPE_PEN))
2089 return wacom_intuos_irq(wacom);
2090 else if (len == WACOM_PKGLEN_BBTOUCH)
e1d38e49 2091 return wacom_bpt_touch(wacom);
73149ab8
CB
2092 else if (len == WACOM_PKGLEN_BBTOUCH3)
2093 return wacom_bpt3_touch(wacom);
2094 else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
2aaacb15 2095 return wacom_bpt_pen(wacom);
e1d38e49
CB
2096
2097 return 0;
2098}
2099
8c97a765
BT
2100static void wacom_bamboo_pad_pen_event(struct wacom_wac *wacom,
2101 unsigned char *data)
2102{
2103 unsigned char prefix;
2104
2105 /*
2106 * We need to reroute the event from the debug interface to the
2107 * pen interface.
2108 * We need to add the report ID to the actual pen report, so we
2109 * temporary overwrite the first byte to prevent having to kzalloc/kfree
2110 * and memcpy the report.
2111 */
2112 prefix = data[0];
2113 data[0] = WACOM_REPORT_BPAD_PEN;
2114
2115 /*
2116 * actually reroute the event.
2117 * No need to check if wacom->shared->pen is valid, hid_input_report()
2118 * will check for us.
2119 */
2120 hid_input_report(wacom->shared->pen, HID_INPUT_REPORT, data,
2121 WACOM_PKGLEN_PENABLED, 1);
2122
2123 data[0] = prefix;
2124}
2125
2126static int wacom_bamboo_pad_touch_event(struct wacom_wac *wacom,
2127 unsigned char *data)
2128{
2a6cdbdd 2129 struct input_dev *input = wacom->touch_input;
8c97a765
BT
2130 unsigned char *finger_data, prefix;
2131 unsigned id;
2132 int x, y;
2133 bool valid;
2134
2135 prefix = data[0];
2136
2137 for (id = 0; id < wacom->features.touch_max; id++) {
2138 valid = !!(prefix & BIT(id)) &&
1924e05e 2139 report_touch_events(wacom);
8c97a765
BT
2140
2141 input_mt_slot(input, id);
2142 input_mt_report_slot_state(input, MT_TOOL_FINGER, valid);
2143
2144 if (!valid)
2145 continue;
2146
2147 finger_data = data + 1 + id * 3;
2148 x = finger_data[0] | ((finger_data[1] & 0x0f) << 8);
2149 y = (finger_data[2] << 4) | (finger_data[1] >> 4);
2150
2151 input_report_abs(input, ABS_MT_POSITION_X, x);
2152 input_report_abs(input, ABS_MT_POSITION_Y, y);
2153 }
2154
2155 input_mt_sync_frame(input);
2156
2157 input_report_key(input, BTN_LEFT, prefix & 0x40);
2158 input_report_key(input, BTN_RIGHT, prefix & 0x80);
2159
2160 /* keep touch state for pen event */
1924e05e 2161 wacom->shared->touch_down = !!prefix && report_touch_events(wacom);
8c97a765
BT
2162
2163 return 1;
2164}
2165
2166static int wacom_bamboo_pad_irq(struct wacom_wac *wacom, size_t len)
2167{
2168 unsigned char *data = wacom->data;
2169
2170 if (!((len == WACOM_PKGLEN_BPAD_TOUCH) ||
2171 (len == WACOM_PKGLEN_BPAD_TOUCH_USB)) ||
2172 (data[0] != WACOM_REPORT_BPAD_TOUCH))
2173 return 0;
2174
2175 if (data[1] & 0x01)
2176 wacom_bamboo_pad_pen_event(wacom, &data[1]);
2177
2178 if (data[1] & 0x02)
2179 return wacom_bamboo_pad_touch_event(wacom, &data[9]);
2180
2181 return 0;
2182}
2183
d3825d51
CB
2184static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
2185{
16bf288c
CB
2186 unsigned char *data = wacom->data;
2187 int connected;
2188
b5fd2a3e 2189 if (len != WACOM_PKGLEN_WIRELESS || data[0] != WACOM_REPORT_WL)
d3825d51
CB
2190 return 0;
2191
16bf288c
CB
2192 connected = data[1] & 0x01;
2193 if (connected) {
b0882cb7 2194 int pid, battery, charging;
16bf288c 2195
eda01dab
PC
2196 if ((wacom->shared->type == INTUOSHT ||
2197 wacom->shared->type == INTUOSHT2) &&
44b96838
PC
2198 wacom->shared->touch_input &&
2199 wacom->shared->touch_max) {
961794a0
PC
2200 input_report_switch(wacom->shared->touch_input,
2201 SW_MUTE_DEVICE, data[5] & 0x40);
2202 input_sync(wacom->shared->touch_input);
2203 }
2204
16bf288c 2205 pid = get_unaligned_be16(&data[6]);
ac8d1010 2206 battery = (data[5] & 0x3f) * 100 / 31;
b0882cb7 2207 charging = !!(data[5] & 0x80);
16bf288c
CB
2208 if (wacom->pid != pid) {
2209 wacom->pid = pid;
d17d1f17 2210 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
16bf288c 2211 }
ac8d1010 2212
59d69bc8 2213 wacom_notify_battery(wacom, battery, charging, 1, 0);
953f2c5f 2214
16bf288c
CB
2215 } else if (wacom->pid != 0) {
2216 /* disconnected while previously connected */
2217 wacom->pid = 0;
d17d1f17 2218 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
71fa641e 2219 wacom_notify_battery(wacom, 0, 0, 0, 0);
16bf288c
CB
2220 }
2221
d3825d51
CB
2222 return 0;
2223}
2224
4ca4ec71
JG
2225static int wacom_status_irq(struct wacom_wac *wacom_wac, size_t len)
2226{
8f93b0b2 2227 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
4ca4ec71
JG
2228 struct wacom_features *features = &wacom_wac->features;
2229 unsigned char *data = wacom_wac->data;
2230
2231 if (data[0] != WACOM_REPORT_USB)
2232 return 0;
2233
eda01dab
PC
2234 if ((features->type == INTUOSHT ||
2235 features->type == INTUOSHT2) &&
4ca4ec71
JG
2236 wacom_wac->shared->touch_input &&
2237 features->touch_max) {
2238 input_report_switch(wacom_wac->shared->touch_input,
2239 SW_MUTE_DEVICE, data[8] & 0x40);
2240 input_sync(wacom_wac->shared->touch_input);
16bf288c
CB
2241 }
2242
8f93b0b2
JG
2243 if (data[9] & 0x02) { /* wireless module is attached */
2244 int battery = (data[8] & 0x3f) * 100 / 31;
b0882cb7 2245 bool charging = !!(data[8] & 0x80);
8f93b0b2
JG
2246
2247 wacom_notify_battery(wacom_wac, battery, charging,
71fa641e 2248 battery || charging, 1);
8f93b0b2 2249
59d69bc8 2250 if (!wacom->battery.battery &&
8f93b0b2
JG
2251 !(features->quirks & WACOM_QUIRK_BATTERY)) {
2252 features->quirks |= WACOM_QUIRK_BATTERY;
d17d1f17 2253 wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
8f93b0b2
JG
2254 }
2255 }
2256 else if ((features->quirks & WACOM_QUIRK_BATTERY) &&
59d69bc8 2257 wacom->battery.battery) {
8f93b0b2 2258 features->quirks &= ~WACOM_QUIRK_BATTERY;
d17d1f17 2259 wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
71fa641e 2260 wacom_notify_battery(wacom_wac, 0, 0, 0, 0);
8f93b0b2 2261 }
d3825d51
CB
2262 return 0;
2263}
2264
95dd3b30 2265void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
3bea733a 2266{
95dd3b30
DT
2267 bool sync;
2268
e33da8a5 2269 switch (wacom_wac->features.type) {
73a97f4f 2270 case PENPARTNER:
95dd3b30
DT
2271 sync = wacom_penpartner_irq(wacom_wac);
2272 break;
73a97f4f
DT
2273
2274 case PL:
95dd3b30
DT
2275 sync = wacom_pl_irq(wacom_wac);
2276 break;
73a97f4f
DT
2277
2278 case WACOM_G4:
2279 case GRAPHIRE:
387142bb 2280 case GRAPHIRE_BT:
73a97f4f 2281 case WACOM_MO:
95dd3b30
DT
2282 sync = wacom_graphire_irq(wacom_wac);
2283 break;
73a97f4f
DT
2284
2285 case PTU:
95dd3b30
DT
2286 sync = wacom_ptu_irq(wacom_wac);
2287 break;
73a97f4f 2288
c8f2edc5
PC
2289 case DTU:
2290 sync = wacom_dtu_irq(wacom_wac);
2291 break;
2292
497ab1f2 2293 case DTUS:
fff00bf8 2294 case DTUSX:
497ab1f2
PC
2295 sync = wacom_dtus_irq(wacom_wac);
2296 break;
2297
73a97f4f
DT
2298 case INTUOS:
2299 case INTUOS3S:
2300 case INTUOS3:
2301 case INTUOS3L:
2302 case INTUOS4S:
2303 case INTUOS4:
2304 case INTUOS4L:
2305 case CINTIQ:
2306 case WACOM_BEE:
56218563 2307 case WACOM_13HD:
3a4b4aaa 2308 case WACOM_21UX2:
d838c644 2309 case WACOM_22HD:
803296b6 2310 case WACOM_24HD:
500d4160 2311 case WACOM_27QHD:
a112e9fd 2312 case DTK:
36d3c510 2313 case CINTIQ_HYBRID:
f7acb55c 2314 case CINTIQ_COMPANION_2:
95dd3b30
DT
2315 sync = wacom_intuos_irq(wacom_wac);
2316 break;
73a97f4f 2317
81af7e61
BT
2318 case INTUOS4WL:
2319 sync = wacom_intuos_bt_irq(wacom_wac, len);
2320 break;
2321
b1e4279e 2322 case WACOM_24HDT:
500d4160 2323 case WACOM_27QHDT:
b1e4279e
JG
2324 sync = wacom_24hdt_irq(wacom_wac);
2325 break;
2326
ae584ca4
JG
2327 case INTUOS5S:
2328 case INTUOS5:
2329 case INTUOS5L:
9a35c411
PC
2330 case INTUOSPS:
2331 case INTUOSPM:
2332 case INTUOSPL:
ae584ca4
JG
2333 if (len == WACOM_PKGLEN_BBTOUCH3)
2334 sync = wacom_bpt3_touch(wacom_wac);
2d13a438
JG
2335 else if (wacom_wac->data[0] == WACOM_REPORT_USB)
2336 sync = wacom_status_irq(wacom_wac, len);
ae584ca4
JG
2337 else
2338 sync = wacom_intuos_irq(wacom_wac);
2339 break;
2340
73a97f4f 2341 case TABLETPC:
ac173837 2342 case TABLETPCE:
73a97f4f 2343 case TABLETPC2FG:
1963518b 2344 case MTSCREEN:
6afdc289 2345 case MTTPC:
d51ddb2b 2346 case MTTPC_B:
95dd3b30
DT
2347 sync = wacom_tpc_irq(wacom_wac, len);
2348 break;
73a97f4f 2349
cb734c03 2350 case BAMBOO_PT:
3b164a00
PC
2351 case BAMBOO_PEN:
2352 case BAMBOO_TOUCH:
b5fd2a3e 2353 case INTUOSHT:
eda01dab 2354 case INTUOSHT2:
4ca4ec71
JG
2355 if (wacom_wac->data[0] == WACOM_REPORT_USB)
2356 sync = wacom_status_irq(wacom_wac, len);
2357 else
2358 sync = wacom_bpt_irq(wacom_wac, len);
cb734c03
HR
2359 break;
2360
8c97a765
BT
2361 case BAMBOO_PAD:
2362 sync = wacom_bamboo_pad_irq(wacom_wac, len);
cb734c03
HR
2363 break;
2364
d3825d51
CB
2365 case WIRELESS:
2366 sync = wacom_wireless_irq(wacom_wac, len);
2367 break;
2368
72b236d6 2369 case REMOTE:
e6f2813a 2370 sync = false;
72b236d6 2371 if (wacom_wac->data[0] == WACOM_REPORT_DEVICE_LIST)
e6f2813a 2372 wacom_remote_status_irq(wacom_wac, len);
72b236d6
AS
2373 else
2374 sync = wacom_remote_irq(wacom_wac, len);
2375 break;
2376
73a97f4f 2377 default:
95dd3b30
DT
2378 sync = false;
2379 break;
3bea733a 2380 }
95dd3b30 2381
d2d13f18 2382 if (sync) {
2a6cdbdd
JG
2383 if (wacom_wac->pen_input)
2384 input_sync(wacom_wac->pen_input);
2385 if (wacom_wac->touch_input)
2386 input_sync(wacom_wac->touch_input);
d2d13f18
BT
2387 if (wacom_wac->pad_input)
2388 input_sync(wacom_wac->pad_input);
2389 }
3bea733a
PC
2390}
2391
eda01dab 2392static void wacom_setup_basic_pro_pen(struct wacom_wac *wacom_wac)
8da23fc1 2393{
2a6cdbdd 2394 struct input_dev *input_dev = wacom_wac->pen_input;
8da23fc1
DT
2395
2396 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
8da23fc1 2397
8da23fc1 2398 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
8da23fc1
DT
2399 __set_bit(BTN_STYLUS, input_dev->keybit);
2400 __set_bit(BTN_STYLUS2, input_dev->keybit);
2401
2402 input_set_abs_params(input_dev, ABS_DISTANCE,
bef7e200 2403 0, wacom_wac->features.distance_max, wacom_wac->features.distance_fuzz, 0);
eda01dab
PC
2404}
2405
2406static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
2407{
2408 struct input_dev *input_dev = wacom_wac->pen_input;
bef7e200 2409 struct wacom_features *features = &wacom_wac->features;
eda01dab
PC
2410
2411 wacom_setup_basic_pro_pen(wacom_wac);
2412
2413 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2414 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
2415 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
2416 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
2417
8da23fc1 2418 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
bef7e200 2419 input_set_abs_params(input_dev, ABS_TILT_X, -64, 63, features->tilt_fuzz, 0);
26fe4124 2420 input_abs_set_res(input_dev, ABS_TILT_X, 57);
bef7e200 2421 input_set_abs_params(input_dev, ABS_TILT_Y, -64, 63, features->tilt_fuzz, 0);
26fe4124 2422 input_abs_set_res(input_dev, ABS_TILT_Y, 57);
6521d0bf
PC
2423}
2424
2425static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
2426{
2a6cdbdd 2427 struct input_dev *input_dev = wacom_wac->pen_input;
6521d0bf
PC
2428
2429 input_set_capability(input_dev, EV_REL, REL_WHEEL);
2430
2431 wacom_setup_cintiq(wacom_wac);
2432
2433 __set_bit(BTN_LEFT, input_dev->keybit);
2434 __set_bit(BTN_RIGHT, input_dev->keybit);
2435 __set_bit(BTN_MIDDLE, input_dev->keybit);
2436 __set_bit(BTN_SIDE, input_dev->keybit);
2437 __set_bit(BTN_EXTRA, input_dev->keybit);
2438 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2439 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
2440
8da23fc1 2441 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
26fe4124 2442 input_abs_set_res(input_dev, ABS_RZ, 287);
8da23fc1
DT
2443 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
2444}
2445
42f4f272 2446void wacom_setup_device_quirks(struct wacom *wacom)
bc73dd39 2447{
42f4f272 2448 struct wacom_features *features = &wacom->wacom_wac.features;
bc73dd39 2449
862cf553
JG
2450 /* The pen and pad share the same interface on most devices */
2451 if (features->type == GRAPHIRE_BT || features->type == WACOM_G4 ||
3b164a00
PC
2452 features->type == DTUS ||
2453 (features->type >= INTUOS3S && features->type <= WACOM_MO)) {
862cf553
JG
2454 if (features->device_type & WACOM_DEVICETYPE_PEN)
2455 features->device_type |= WACOM_DEVICETYPE_PAD;
2456 }
bc73dd39
HR
2457
2458 /* touch device found but size is not defined. use default */
aa86b18c 2459 if (features->device_type & WACOM_DEVICETYPE_TOUCH && !features->x_max) {
bc73dd39
HR
2460 features->x_max = 1023;
2461 features->y_max = 1023;
2462 }
2463
42f4f272
PC
2464 /*
2465 * Intuos5/Pro and Bamboo 3rd gen have no useful data about its
2466 * touch interface in its HID descriptor. If this is the touch
2467 * interface (PacketSize of WACOM_PKGLEN_BBTOUCH3), override the
2468 * tablet values.
2469 */
3b164a00
PC
2470 if ((features->type >= INTUOS5S && features->type <= INTUOSPL) ||
2471 (features->type >= INTUOSHT && features->type <= BAMBOO_PT)) {
42f4f272 2472 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
862cf553
JG
2473 if (features->touch_max)
2474 features->device_type |= WACOM_DEVICETYPE_TOUCH;
a3088abc 2475 if (features->type >= INTUOSHT && features->type <= BAMBOO_PT)
862cf553 2476 features->device_type |= WACOM_DEVICETYPE_PAD;
42f4f272
PC
2477
2478 features->x_max = 4096;
2479 features->y_max = 4096;
42f4f272 2480 }
9633920e
JG
2481 else if (features->pktlen == WACOM_PKGLEN_BBTOUCH) {
2482 features->device_type |= WACOM_DEVICETYPE_PAD;
2483 }
42f4f272
PC
2484 }
2485
580549ef
BT
2486 /*
2487 * Hack for the Bamboo One:
2488 * the device presents a PAD/Touch interface as most Bamboos and even
2489 * sends ghosts PAD data on it. However, later, we must disable this
2490 * ghost interface, and we can not detect it unless we set it here
2491 * to WACOM_DEVICETYPE_PAD or WACOM_DEVICETYPE_TOUCH.
2492 */
2493 if (features->type == BAMBOO_PEN &&
2494 features->pktlen == WACOM_PKGLEN_BBTOUCH3)
2495 features->device_type |= WACOM_DEVICETYPE_PAD;
2496
42f4f272 2497 /*
042628ab
JG
2498 * Raw Wacom-mode pen and touch events both come from interface
2499 * 0, whose HID descriptor has an application usage of 0xFF0D
8de82280 2500 * (i.e., WACOM_HID_WD_DIGITIZER). We route pen packets back
042628ab 2501 * out through the HID_GENERIC device created for interface 1,
70caee0a 2502 * so rewrite this one to be of type WACOM_DEVICETYPE_TOUCH.
42f4f272
PC
2503 */
2504 if (features->type == BAMBOO_PAD)
70caee0a 2505 features->device_type = WACOM_DEVICETYPE_TOUCH;
42f4f272 2506
72b236d6
AS
2507 if (features->type == REMOTE)
2508 features->device_type = WACOM_DEVICETYPE_PAD;
42f4f272 2509
e5bc8eb1
JG
2510 switch (features->type) {
2511 case PL:
2512 case DTU:
2513 case DTUS:
2514 case DTUSX:
2515 case WACOM_21UX2:
2516 case WACOM_22HD:
2517 case DTK:
2518 case WACOM_24HD:
2519 case WACOM_27QHD:
2520 case CINTIQ_HYBRID:
2521 case CINTIQ_COMPANION_2:
2522 case CINTIQ:
2523 case WACOM_BEE:
2524 case WACOM_13HD:
2525 case WACOM_24HDT:
2526 case WACOM_27QHDT:
2527 case TABLETPC:
2528 case TABLETPCE:
2529 case TABLETPC2FG:
2530 case MTSCREEN:
2531 case MTTPC:
2532 case MTTPC_B:
2533 features->device_type |= WACOM_DEVICETYPE_DIRECT;
2534 break;
2535 }
2536
42f4f272
PC
2537 if (wacom->hdev->bus == BUS_BLUETOOTH)
2538 features->quirks |= WACOM_QUIRK_BATTERY;
2539
73149ab8 2540 /* quirk for bamboo touch with 2 low res touches */
be853fd1 2541 if ((features->type == BAMBOO_PT || features->type == BAMBOO_TOUCH) &&
73149ab8 2542 features->pktlen == WACOM_PKGLEN_BBTOUCH) {
f4ccbef2
HR
2543 features->x_max <<= 5;
2544 features->y_max <<= 5;
2545 features->x_fuzz <<= 5;
2546 features->y_fuzz <<= 5;
f4ccbef2 2547 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
cb734c03 2548 }
d3825d51
CB
2549
2550 if (features->type == WIRELESS) {
ccad85cc 2551 if (features->device_type == WACOM_DEVICETYPE_WL_MONITOR) {
ac8d1010
BT
2552 features->quirks |= WACOM_QUIRK_BATTERY;
2553 }
d3825d51 2554 }
7c35dc3c
BT
2555
2556 if (features->type == REMOTE)
2557 features->device_type |= WACOM_DEVICETYPE_WL_MONITOR;
bc73dd39
HR
2558}
2559
2636a3f2 2560int wacom_setup_pen_input_capabilities(struct input_dev *input_dev,
8c0e0a4f
PC
2561 struct wacom_wac *wacom_wac)
2562{
2563 struct wacom_features *features = &wacom_wac->features;
8c0e0a4f
PC
2564
2565 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2566
2636a3f2
JG
2567 if (!(features->device_type & WACOM_DEVICETYPE_PEN))
2568 return -ENODEV;
2569
e5bc8eb1
JG
2570 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
2571 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2572 else
2573 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2574
7704ac93
BT
2575 if (features->type == HID_GENERIC)
2576 /* setup has already been done */
2577 return 0;
2578
8c0e0a4f 2579 __set_bit(BTN_TOUCH, input_dev->keybit);
8da23fc1
DT
2580 __set_bit(ABS_MISC, input_dev->absbit);
2581
2636a3f2
JG
2582 input_set_abs_params(input_dev, ABS_X, features->x_min,
2583 features->x_max, features->x_fuzz, 0);
2584 input_set_abs_params(input_dev, ABS_Y, features->y_min,
2585 features->y_max, features->y_fuzz, 0);
2586 input_set_abs_params(input_dev, ABS_PRESSURE, 0,
2587 features->pressure_max, features->pressure_fuzz, 0);
2588
2589 /* penabled devices have fixed resolution for each model */
2590 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
2591 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
2592
497ab1f2 2593 switch (features->type) {
387142bb
BT
2594 case GRAPHIRE_BT:
2595 __clear_bit(ABS_MISC, input_dev->absbit);
a2f71c6c
PC
2596
2597 case WACOM_MO:
2598 case WACOM_G4:
387142bb
BT
2599 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2600 features->distance_max,
bef7e200 2601 features->distance_fuzz, 0);
a2f71c6c 2602 /* fall through */
803296b6 2603
a2f71c6c 2604 case GRAPHIRE:
387142bb 2605 input_set_capability(input_dev, EV_REL, REL_WHEEL);
803296b6 2606
387142bb
BT
2607 __set_bit(BTN_LEFT, input_dev->keybit);
2608 __set_bit(BTN_RIGHT, input_dev->keybit);
2609 __set_bit(BTN_MIDDLE, input_dev->keybit);
2610
2611 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2612 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
2613 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2614 __set_bit(BTN_STYLUS, input_dev->keybit);
2615 __set_bit(BTN_STYLUS2, input_dev->keybit);
387142bb 2616 break;
c73a1afb 2617
500d4160 2618 case WACOM_27QHD:
803296b6 2619 case WACOM_24HD:
a112e9fd 2620 case DTK:
d838c644 2621 case WACOM_22HD:
3a4b4aaa 2622 case WACOM_21UX2:
73a97f4f 2623 case WACOM_BEE:
6521d0bf 2624 case CINTIQ:
56218563 2625 case WACOM_13HD:
a2f71c6c 2626 case CINTIQ_HYBRID:
f7acb55c 2627 case CINTIQ_COMPANION_2:
56218563 2628 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
26fe4124 2629 input_abs_set_res(input_dev, ABS_Z, 287);
56218563
PC
2630 wacom_setup_cintiq(wacom_wac);
2631 break;
2632
73a97f4f
DT
2633 case INTUOS3:
2634 case INTUOS3L:
73a97f4f 2635 case INTUOS3S:
a2f71c6c
PC
2636 case INTUOS4:
2637 case INTUOS4WL:
2638 case INTUOS4L:
2639 case INTUOS4S:
8da23fc1 2640 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
26fe4124 2641 input_abs_set_res(input_dev, ABS_Z, 287);
73a97f4f
DT
2642 /* fall through */
2643
2644 case INTUOS:
8da23fc1 2645 wacom_setup_intuos(wacom_wac);
73a97f4f
DT
2646 break;
2647
9fee6195
JG
2648 case INTUOS5:
2649 case INTUOS5L:
9a35c411
PC
2650 case INTUOSPM:
2651 case INTUOSPL:
ae584ca4 2652 case INTUOS5S:
9a35c411 2653 case INTUOSPS:
2636a3f2
JG
2654 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2655 features->distance_max,
bef7e200 2656 features->distance_fuzz, 0);
ae584ca4 2657
2636a3f2
JG
2658 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
2659 input_abs_set_res(input_dev, ABS_Z, 287);
ae584ca4 2660
2636a3f2 2661 wacom_setup_intuos(wacom_wac);
ae584ca4
JG
2662 break;
2663
b1e4279e 2664 case WACOM_24HDT:
500d4160 2665 case WACOM_27QHDT:
1963518b 2666 case MTSCREEN:
6afdc289 2667 case MTTPC:
d51ddb2b 2668 case MTTPC_B:
6795a524 2669 case TABLETPC2FG:
73a97f4f 2670 case TABLETPC:
ac173837 2671 case TABLETPCE:
a43c7c53 2672 __clear_bit(ABS_MISC, input_dev->absbit);
73a97f4f
DT
2673 /* fall through */
2674
497ab1f2 2675 case DTUS:
fff00bf8 2676 case DTUSX:
73a97f4f 2677 case PL:
c8f2edc5 2678 case DTU:
8da23fc1 2679 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
3512069e 2680 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
8da23fc1
DT
2681 __set_bit(BTN_STYLUS, input_dev->keybit);
2682 __set_bit(BTN_STYLUS2, input_dev->keybit);
3512069e
JG
2683 break;
2684
2685 case PTU:
8da23fc1 2686 __set_bit(BTN_STYLUS2, input_dev->keybit);
73a97f4f
DT
2687 /* fall through */
2688
2689 case PENPARTNER:
1fab84aa 2690 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
8da23fc1 2691 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1fab84aa 2692 __set_bit(BTN_STYLUS, input_dev->keybit);
73a97f4f 2693 break;
cb734c03 2694
b5fd2a3e 2695 case INTUOSHT:
cb734c03 2696 case BAMBOO_PT:
3b164a00 2697 case BAMBOO_PEN:
eda01dab 2698 case INTUOSHT2:
eda01dab
PC
2699 if (features->type == INTUOSHT2) {
2700 wacom_setup_basic_pro_pen(wacom_wac);
2701 } else {
2702 __clear_bit(ABS_MISC, input_dev->absbit);
2703 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
2704 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2705 __set_bit(BTN_STYLUS, input_dev->keybit);
2706 __set_bit(BTN_STYLUS2, input_dev->keybit);
2707 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2636a3f2 2708 features->distance_max,
bef7e200 2709 features->distance_fuzz, 0);
eda01dab 2710 }
2636a3f2
JG
2711 break;
2712 case BAMBOO_PAD:
2713 __clear_bit(ABS_MISC, input_dev->absbit);
2714 break;
2715 }
2716 return 0;
2717}
02295e68 2718
2636a3f2
JG
2719int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
2720 struct wacom_wac *wacom_wac)
2721{
2722 struct wacom_features *features = &wacom_wac->features;
30ebc1ae 2723
2636a3f2
JG
2724 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2725
2726 if (!(features->device_type & WACOM_DEVICETYPE_TOUCH))
2727 return -ENODEV;
2728
e5bc8eb1
JG
2729 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
2730 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2731 else
2732 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2733
2636a3f2
JG
2734 if (features->type == HID_GENERIC)
2735 /* setup has already been done */
2736 return 0;
2737
2738 __set_bit(BTN_TOUCH, input_dev->keybit);
2739
2740 if (features->touch_max == 1) {
2741 input_set_abs_params(input_dev, ABS_X, 0,
2742 features->x_max, features->x_fuzz, 0);
2743 input_set_abs_params(input_dev, ABS_Y, 0,
2744 features->y_max, features->y_fuzz, 0);
2745 input_abs_set_res(input_dev, ABS_X,
2746 features->x_resolution);
2747 input_abs_set_res(input_dev, ABS_Y,
2748 features->y_resolution);
2749 }
2750 else if (features->touch_max > 1) {
2751 input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0,
2752 features->x_max, features->x_fuzz, 0);
2753 input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0,
2754 features->y_max, features->y_fuzz, 0);
2755 input_abs_set_res(input_dev, ABS_MT_POSITION_X,
2756 features->x_resolution);
2757 input_abs_set_res(input_dev, ABS_MT_POSITION_Y,
2758 features->y_resolution);
2759 }
2760
2761 switch (features->type) {
2762 case INTUOS5:
2763 case INTUOS5L:
2764 case INTUOSPM:
2765 case INTUOSPL:
2766 case INTUOS5S:
2767 case INTUOSPS:
2636a3f2
JG
2768 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2769 input_set_abs_params(input_dev, ABS_MT_TOUCH_MINOR, 0, features->y_max, 0, 0);
2770 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
2771 break;
2772
2773 case WACOM_24HDT:
2774 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2775 input_set_abs_params(input_dev, ABS_MT_WIDTH_MAJOR, 0, features->x_max, 0, 0);
2776 input_set_abs_params(input_dev, ABS_MT_WIDTH_MINOR, 0, features->y_max, 0, 0);
2777 input_set_abs_params(input_dev, ABS_MT_ORIENTATION, 0, 1, 0, 0);
2778 /* fall through */
2779
2780 case WACOM_27QHDT:
2781 case MTSCREEN:
2782 case MTTPC:
2783 case MTTPC_B:
2784 case TABLETPC2FG:
2785 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_DIRECT);
2786 /*fall through */
2787
2788 case TABLETPC:
2789 case TABLETPCE:
2636a3f2
JG
2790 break;
2791
2792 case INTUOSHT:
eda01dab 2793 case INTUOSHT2:
2636a3f2
JG
2794 input_dev->evbit[0] |= BIT_MASK(EV_SW);
2795 __set_bit(SW_MUTE_DEVICE, input_dev->swbit);
2796 /* fall through */
2797
2798 case BAMBOO_PT:
3b164a00 2799 case BAMBOO_TOUCH:
2636a3f2
JG
2800 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
2801 input_set_abs_params(input_dev,
2802 ABS_MT_TOUCH_MAJOR,
2803 0, features->x_max, 0, 0);
2804 input_set_abs_params(input_dev,
2805 ABS_MT_TOUCH_MINOR,
2806 0, features->y_max, 0, 0);
cb734c03 2807 }
2636a3f2 2808 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
cb734c03 2809 break;
2636a3f2 2810
8c97a765 2811 case BAMBOO_PAD:
8c97a765
BT
2812 input_mt_init_slots(input_dev, features->touch_max,
2813 INPUT_MT_POINTER);
2814 __set_bit(BTN_LEFT, input_dev->keybit);
2815 __set_bit(BTN_RIGHT, input_dev->keybit);
2816 break;
3bea733a 2817 }
1963518b 2818 return 0;
3bea733a
PC
2819}
2820
49005b9f
JG
2821static int wacom_numbered_button_to_key(int n)
2822{
2823 if (n < 10)
2824 return BTN_0 + n;
2825 else if (n < 16)
2826 return BTN_A + (n-10);
2827 else if (n < 18)
2828 return BTN_BASE + (n-16);
2829 else
2830 return 0;
2831}
2832
5397df15 2833static void wacom_setup_numbered_buttons(struct input_dev *input_dev,
70ee06c5
AS
2834 int button_count)
2835{
2836 int i;
2837
49005b9f
JG
2838 for (i = 0; i < button_count; i++) {
2839 int key = wacom_numbered_button_to_key(i);
2840
2841 if (key)
2842 __set_bit(key, input_dev->keybit);
2843 }
70ee06c5
AS
2844}
2845
6a06281e
BT
2846static void wacom_24hd_update_leds(struct wacom *wacom, int mask, int group)
2847{
2848 struct wacom_led *led;
2849 int i;
2850 bool updated = false;
2851
2852 /*
2853 * 24HD has LED group 1 to the left and LED group 0 to the right.
2854 * So group 0 matches the second half of the buttons and thus the mask
2855 * needs to be shifted.
2856 */
2857 if (group == 0)
2858 mask >>= 8;
2859
2860 for (i = 0; i < 3; i++) {
2861 led = wacom_led_find(wacom, group, i);
2862 if (!led) {
2863 hid_err(wacom->hdev, "can't find LED %d in group %d\n",
2864 i, group);
2865 continue;
2866 }
2867 if (!updated && mask & BIT(i)) {
2868 led->held = true;
2869 led_trigger_event(&led->trigger, LED_FULL);
2870 } else {
2871 led->held = false;
2872 }
2873 }
2874}
2875
34736aa9
BT
2876static bool wacom_is_led_toggled(struct wacom *wacom, int button_count,
2877 int mask, int group)
2878{
2879 int button_per_group;
2880
5a0fe8ab 2881 /*
6a06281e 2882 * 21UX2 has LED group 1 to the left and LED group 0
5a0fe8ab
BT
2883 * to the right. We need to reverse the group to match this
2884 * historical behavior.
2885 */
6a06281e 2886 if (wacom->wacom_wac.features.type == WACOM_21UX2)
5a0fe8ab
BT
2887 group = 1 - group;
2888
34736aa9
BT
2889 button_per_group = button_count/wacom->led.count;
2890
2891 return mask & (1 << (group * button_per_group));
2892}
2893
2894static void wacom_update_led(struct wacom *wacom, int button_count, int mask,
2895 int group)
2896{
2897 struct wacom_led *led, *next_led;
2898 int cur;
2899 bool pressed;
2900
6a06281e
BT
2901 if (wacom->wacom_wac.features.type == WACOM_24HD)
2902 return wacom_24hd_update_leds(wacom, mask, group);
2903
34736aa9
BT
2904 pressed = wacom_is_led_toggled(wacom, button_count, mask, group);
2905 cur = wacom->led.groups[group].select;
2906
2907 led = wacom_led_find(wacom, group, cur);
2908 if (!led) {
2909 hid_err(wacom->hdev, "can't find current LED %d in group %d\n",
2910 cur, group);
2911 return;
2912 }
2913
2914 if (!pressed) {
2915 led->held = false;
2916 return;
2917 }
2918
2919 if (led->held && pressed)
2920 return;
2921
2922 next_led = wacom_led_next(wacom, led);
2923 if (!next_led) {
2924 hid_err(wacom->hdev, "can't find next LED in group %d\n",
2925 group);
2926 return;
2927 }
2928 if (next_led == led)
2929 return;
2930
2931 next_led->held = true;
2932 led_trigger_event(&next_led->trigger,
2933 wacom_leds_brightness_get(next_led));
2934}
2935
c7f0522a
JG
2936static void wacom_report_numbered_buttons(struct input_dev *input_dev,
2937 int button_count, int mask)
2938{
34736aa9 2939 struct wacom *wacom = input_get_drvdata(input_dev);
c7f0522a
JG
2940 int i;
2941
34736aa9
BT
2942 for (i = 0; i < wacom->led.count; i++)
2943 wacom_update_led(wacom, button_count, mask, i);
2944
49005b9f
JG
2945 for (i = 0; i < button_count; i++) {
2946 int key = wacom_numbered_button_to_key(i);
2947
2948 if (key)
2949 input_report_key(input_dev, key, mask & (1 << i));
2950 }
c7f0522a
JG
2951}
2952
d2d13f18
BT
2953int wacom_setup_pad_input_capabilities(struct input_dev *input_dev,
2954 struct wacom_wac *wacom_wac)
2955{
2956 struct wacom_features *features = &wacom_wac->features;
2957
862cf553
JG
2958 if (!(features->device_type & WACOM_DEVICETYPE_PAD))
2959 return -ENODEV;
2960
7c35dc3c
BT
2961 if (features->type == REMOTE && input_dev == wacom_wac->pad_input)
2962 return -ENODEV;
2963
d2d13f18
BT
2964 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2965
2966 /* kept for making legacy xf86-input-wacom working with the wheels */
2967 __set_bit(ABS_MISC, input_dev->absbit);
2968
2969 /* kept for making legacy xf86-input-wacom accepting the pad */
2970 input_set_abs_params(input_dev, ABS_X, 0, 1, 0, 0);
2971 input_set_abs_params(input_dev, ABS_Y, 0, 1, 0, 0);
2972
12969e3b
BT
2973 /* kept for making udev and libwacom accepting the pad */
2974 __set_bit(BTN_STYLUS, input_dev->keybit);
2975
70ee06c5
AS
2976 wacom_setup_numbered_buttons(input_dev, features->numbered_buttons);
2977
d2d13f18 2978 switch (features->type) {
70ee06c5
AS
2979
2980 case CINTIQ_HYBRID:
f7acb55c 2981 case CINTIQ_COMPANION_2:
70ee06c5
AS
2982 case DTK:
2983 case DTUS:
387142bb 2984 case GRAPHIRE_BT:
387142bb
BT
2985 break;
2986
3813810c
BT
2987 case WACOM_MO:
2988 __set_bit(BTN_BACK, input_dev->keybit);
2989 __set_bit(BTN_LEFT, input_dev->keybit);
2990 __set_bit(BTN_FORWARD, input_dev->keybit);
2991 __set_bit(BTN_RIGHT, input_dev->keybit);
2992 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2993 break;
2994
2995 case WACOM_G4:
2996 __set_bit(BTN_BACK, input_dev->keybit);
3813810c 2997 __set_bit(BTN_FORWARD, input_dev->keybit);
3813810c
BT
2998 input_set_capability(input_dev, EV_REL, REL_WHEEL);
2999 break;
3000
10059cdc 3001 case WACOM_24HD:
10059cdc
BT
3002 __set_bit(KEY_PROG1, input_dev->keybit);
3003 __set_bit(KEY_PROG2, input_dev->keybit);
3004 __set_bit(KEY_PROG3, input_dev->keybit);
3005
3006 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3007 input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0);
3008 break;
3009
500d4160
PC
3010 case WACOM_27QHD:
3011 __set_bit(KEY_PROG1, input_dev->keybit);
3012 __set_bit(KEY_PROG2, input_dev->keybit);
3013 __set_bit(KEY_PROG3, input_dev->keybit);
3014 input_set_abs_params(input_dev, ABS_X, -2048, 2048, 0, 0);
3015 input_abs_set_res(input_dev, ABS_X, 1024); /* points/g */
3016 input_set_abs_params(input_dev, ABS_Y, -2048, 2048, 0, 0);
3017 input_abs_set_res(input_dev, ABS_Y, 1024);
3018 input_set_abs_params(input_dev, ABS_Z, -2048, 2048, 0, 0);
3019 input_abs_set_res(input_dev, ABS_Z, 1024);
3020 __set_bit(INPUT_PROP_ACCELEROMETER, input_dev->propbit);
3021 break;
3022
10059cdc
BT
3023 case WACOM_22HD:
3024 __set_bit(KEY_PROG1, input_dev->keybit);
3025 __set_bit(KEY_PROG2, input_dev->keybit);
3026 __set_bit(KEY_PROG3, input_dev->keybit);
3027 /* fall through */
3028
3029 case WACOM_21UX2:
10059cdc 3030 case WACOM_BEE:
10059cdc 3031 case CINTIQ:
10059cdc
BT
3032 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
3033 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
3034 break;
3035
3036 case WACOM_13HD:
10059cdc
BT
3037 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3038 break;
3039
3040 case INTUOS3:
3041 case INTUOS3L:
10059cdc
BT
3042 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
3043 /* fall through */
3044
3045 case INTUOS3S:
10059cdc
BT
3046 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
3047 break;
36d3c510 3048
10059cdc
BT
3049 case INTUOS5:
3050 case INTUOS5L:
3051 case INTUOSPM:
3052 case INTUOSPL:
10059cdc
BT
3053 case INTUOS5S:
3054 case INTUOSPS:
10059cdc 3055 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
36d3c510 3056 break;
10059cdc 3057
81af7e61
BT
3058 case INTUOS4WL:
3059 /*
3060 * For Bluetooth devices, the udev rule does not work correctly
3061 * for pads unless we add a stylus capability, which forces
3062 * ID_INPUT_TABLET to be set.
3063 */
3064 __set_bit(BTN_STYLUS, input_dev->keybit);
3065 /* fall through */
3066
10059cdc
BT
3067 case INTUOS4:
3068 case INTUOS4L:
10059cdc 3069 case INTUOS4S:
10059cdc
BT
3070 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3071 break;
3072
3116871f
BT
3073 case INTUOSHT:
3074 case BAMBOO_PT:
3b164a00 3075 case BAMBOO_TOUCH:
eda01dab 3076 case INTUOSHT2:
3116871f
BT
3077 __clear_bit(ABS_MISC, input_dev->absbit);
3078
3079 __set_bit(BTN_LEFT, input_dev->keybit);
3080 __set_bit(BTN_FORWARD, input_dev->keybit);
3081 __set_bit(BTN_BACK, input_dev->keybit);
3082 __set_bit(BTN_RIGHT, input_dev->keybit);
3083
3084 break;
3085
72b236d6
AS
3086 case REMOTE:
3087 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
3088 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3089 break;
3090
d2d13f18
BT
3091 default:
3092 /* no pad supported */
b3c8e93f 3093 return -ENODEV;
3bea733a 3094 }
1963518b 3095 return 0;
3bea733a
PC
3096}
3097
e87a344d 3098static const struct wacom_features wacom_features_0x00 =
80befa93
BT
3099 { "Wacom Penpartner", 5040, 3780, 255, 0,
3100 PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
e87a344d 3101static const struct wacom_features wacom_features_0x10 =
80befa93
BT
3102 { "Wacom Graphire", 10206, 7422, 511, 63,
3103 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
387142bb
BT
3104static const struct wacom_features wacom_features_0x81 =
3105 { "Wacom Graphire BT", 16704, 12064, 511, 32,
70ee06c5 3106 GRAPHIRE_BT, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES, 2 };
e87a344d 3107static const struct wacom_features wacom_features_0x11 =
80befa93
BT
3108 { "Wacom Graphire2 4x5", 10206, 7422, 511, 63,
3109 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3110static const struct wacom_features wacom_features_0x12 =
80befa93
BT
3111 { "Wacom Graphire2 5x7", 13918, 10206, 511, 63,
3112 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3113static const struct wacom_features wacom_features_0x13 =
80befa93
BT
3114 { "Wacom Graphire3", 10208, 7424, 511, 63,
3115 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3116static const struct wacom_features wacom_features_0x14 =
80befa93
BT
3117 { "Wacom Graphire3 6x8", 16704, 12064, 511, 63,
3118 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3119static const struct wacom_features wacom_features_0x15 =
80befa93
BT
3120 { "Wacom Graphire4 4x5", 10208, 7424, 511, 63,
3121 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3122static const struct wacom_features wacom_features_0x16 =
80befa93
BT
3123 { "Wacom Graphire4 6x8", 16704, 12064, 511, 63,
3124 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3125static const struct wacom_features wacom_features_0x17 =
80befa93
BT
3126 { "Wacom BambooFun 4x5", 14760, 9225, 511, 63,
3127 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3128static const struct wacom_features wacom_features_0x18 =
80befa93
BT
3129 { "Wacom BambooFun 6x8", 21648, 13530, 511, 63,
3130 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3131static const struct wacom_features wacom_features_0x19 =
80befa93
BT
3132 { "Wacom Bamboo1 Medium", 16704, 12064, 511, 63,
3133 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 3134static const struct wacom_features wacom_features_0x60 =
80befa93
BT
3135 { "Wacom Volito", 5104, 3712, 511, 63,
3136 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3137static const struct wacom_features wacom_features_0x61 =
80befa93
BT
3138 { "Wacom PenStation2", 3250, 2320, 255, 63,
3139 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3140static const struct wacom_features wacom_features_0x62 =
80befa93
BT
3141 { "Wacom Volito2 4x5", 5104, 3712, 511, 63,
3142 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3143static const struct wacom_features wacom_features_0x63 =
80befa93
BT
3144 { "Wacom Volito2 2x3", 3248, 2320, 511, 63,
3145 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3146static const struct wacom_features wacom_features_0x64 =
80befa93
BT
3147 { "Wacom PenPartner2", 3250, 2320, 511, 63,
3148 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 3149static const struct wacom_features wacom_features_0x65 =
80befa93
BT
3150 { "Wacom Bamboo", 14760, 9225, 511, 63,
3151 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3152static const struct wacom_features wacom_features_0x69 =
80befa93
BT
3153 { "Wacom Bamboo1", 5104, 3712, 511, 63,
3154 GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
11d0cf88 3155static const struct wacom_features wacom_features_0x6A =
80befa93
BT
3156 { "Wacom Bamboo1 4x6", 14760, 9225, 1023, 63,
3157 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
11d0cf88 3158static const struct wacom_features wacom_features_0x6B =
80befa93
BT
3159 { "Wacom Bamboo1 5x8", 21648, 13530, 1023, 63,
3160 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3161static const struct wacom_features wacom_features_0x20 =
80befa93
BT
3162 { "Wacom Intuos 4x5", 12700, 10600, 1023, 31,
3163 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3164static const struct wacom_features wacom_features_0x21 =
80befa93
BT
3165 { "Wacom Intuos 6x8", 20320, 16240, 1023, 31,
3166 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3167static const struct wacom_features wacom_features_0x22 =
80befa93
BT
3168 { "Wacom Intuos 9x12", 30480, 24060, 1023, 31,
3169 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3170static const struct wacom_features wacom_features_0x23 =
80befa93
BT
3171 { "Wacom Intuos 12x12", 30480, 31680, 1023, 31,
3172 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3173static const struct wacom_features wacom_features_0x24 =
80befa93
BT
3174 { "Wacom Intuos 12x18", 45720, 31680, 1023, 31,
3175 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3176static const struct wacom_features wacom_features_0x30 =
80befa93
BT
3177 { "Wacom PL400", 5408, 4056, 255, 0,
3178 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3179static const struct wacom_features wacom_features_0x31 =
80befa93
BT
3180 { "Wacom PL500", 6144, 4608, 255, 0,
3181 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3182static const struct wacom_features wacom_features_0x32 =
80befa93
BT
3183 { "Wacom PL600", 6126, 4604, 255, 0,
3184 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3185static const struct wacom_features wacom_features_0x33 =
80befa93
BT
3186 { "Wacom PL600SX", 6260, 5016, 255, 0,
3187 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3188static const struct wacom_features wacom_features_0x34 =
80befa93
BT
3189 { "Wacom PL550", 6144, 4608, 511, 0,
3190 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3191static const struct wacom_features wacom_features_0x35 =
80befa93
BT
3192 { "Wacom PL800", 7220, 5780, 511, 0,
3193 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3194static const struct wacom_features wacom_features_0x37 =
80befa93
BT
3195 { "Wacom PL700", 6758, 5406, 511, 0,
3196 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3197static const struct wacom_features wacom_features_0x38 =
80befa93
BT
3198 { "Wacom PL510", 6282, 4762, 511, 0,
3199 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3200static const struct wacom_features wacom_features_0x39 =
80befa93
BT
3201 { "Wacom DTU710", 34080, 27660, 511, 0,
3202 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3203static const struct wacom_features wacom_features_0xC4 =
80befa93
BT
3204 { "Wacom DTF521", 6282, 4762, 511, 0,
3205 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3206static const struct wacom_features wacom_features_0xC0 =
80befa93
BT
3207 { "Wacom DTF720", 6858, 5506, 511, 0,
3208 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3209static const struct wacom_features wacom_features_0xC2 =
80befa93
BT
3210 { "Wacom DTF720a", 6858, 5506, 511, 0,
3211 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3212static const struct wacom_features wacom_features_0x03 =
80befa93
BT
3213 { "Wacom Cintiq Partner", 20480, 15360, 511, 0,
3214 PTU, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 3215static const struct wacom_features wacom_features_0x41 =
80befa93
BT
3216 { "Wacom Intuos2 4x5", 12700, 10600, 1023, 31,
3217 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3218static const struct wacom_features wacom_features_0x42 =
80befa93
BT
3219 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3220 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3221static const struct wacom_features wacom_features_0x43 =
80befa93
BT
3222 { "Wacom Intuos2 9x12", 30480, 24060, 1023, 31,
3223 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3224static const struct wacom_features wacom_features_0x44 =
80befa93
BT
3225 { "Wacom Intuos2 12x12", 30480, 31680, 1023, 31,
3226 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3227static const struct wacom_features wacom_features_0x45 =
80befa93
BT
3228 { "Wacom Intuos2 12x18", 45720, 31680, 1023, 31,
3229 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3230static const struct wacom_features wacom_features_0xB0 =
80befa93 3231 { "Wacom Intuos3 4x5", 25400, 20320, 1023, 63,
70ee06c5 3232 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
e87a344d 3233static const struct wacom_features wacom_features_0xB1 =
80befa93 3234 { "Wacom Intuos3 6x8", 40640, 30480, 1023, 63,
70ee06c5 3235 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3236static const struct wacom_features wacom_features_0xB2 =
80befa93 3237 { "Wacom Intuos3 9x12", 60960, 45720, 1023, 63,
70ee06c5 3238 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3239static const struct wacom_features wacom_features_0xB3 =
80befa93 3240 { "Wacom Intuos3 12x12", 60960, 60960, 1023, 63,
70ee06c5 3241 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3242static const struct wacom_features wacom_features_0xB4 =
80befa93 3243 { "Wacom Intuos3 12x19", 97536, 60960, 1023, 63,
70ee06c5 3244 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3245static const struct wacom_features wacom_features_0xB5 =
80befa93 3246 { "Wacom Intuos3 6x11", 54204, 31750, 1023, 63,
70ee06c5 3247 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3248static const struct wacom_features wacom_features_0xB7 =
80befa93 3249 { "Wacom Intuos3 4x6", 31496, 19685, 1023, 63,
70ee06c5 3250 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
e87a344d 3251static const struct wacom_features wacom_features_0xB8 =
80befa93 3252 { "Wacom Intuos4 4x6", 31496, 19685, 2047, 63,
70ee06c5 3253 INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
e87a344d 3254static const struct wacom_features wacom_features_0xB9 =
80befa93 3255 { "Wacom Intuos4 6x9", 44704, 27940, 2047, 63,
70ee06c5 3256 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
e87a344d 3257static const struct wacom_features wacom_features_0xBA =
80befa93 3258 { "Wacom Intuos4 8x13", 65024, 40640, 2047, 63,
70ee06c5 3259 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
e87a344d 3260static const struct wacom_features wacom_features_0xBB =
80befa93 3261 { "Wacom Intuos4 12x19", 97536, 60960, 2047, 63,
70ee06c5 3262 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
3a4b4aaa 3263static const struct wacom_features wacom_features_0xBC =
80befa93 3264 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
70ee06c5 3265 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
81af7e61
BT
3266static const struct wacom_features wacom_features_0xBD =
3267 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
70ee06c5 3268 INTUOS4WL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
9fee6195 3269static const struct wacom_features wacom_features_0x26 =
80befa93 3270 { "Wacom Intuos5 touch S", 31496, 19685, 2047, 63,
70ee06c5 3271 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16 };
9fee6195 3272static const struct wacom_features wacom_features_0x27 =
80befa93 3273 { "Wacom Intuos5 touch M", 44704, 27940, 2047, 63,
70ee06c5 3274 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
9fee6195 3275static const struct wacom_features wacom_features_0x28 =
80befa93 3276 { "Wacom Intuos5 touch L", 65024, 40640, 2047, 63,
70ee06c5 3277 INTUOS5L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
9fee6195 3278static const struct wacom_features wacom_features_0x29 =
80befa93 3279 { "Wacom Intuos5 S", 31496, 19685, 2047, 63,
70ee06c5 3280 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
9fee6195 3281static const struct wacom_features wacom_features_0x2A =
80befa93 3282 { "Wacom Intuos5 M", 44704, 27940, 2047, 63,
70ee06c5 3283 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
9a35c411 3284static const struct wacom_features wacom_features_0x314 =
80befa93 3285 { "Wacom Intuos Pro S", 31496, 19685, 2047, 63,
70ee06c5 3286 INTUOSPS, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16,
29b47391 3287 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
9a35c411 3288static const struct wacom_features wacom_features_0x315 =
80befa93 3289 { "Wacom Intuos Pro M", 44704, 27940, 2047, 63,
70ee06c5 3290 INTUOSPM, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
29b47391 3291 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
9a35c411 3292static const struct wacom_features wacom_features_0x317 =
80befa93 3293 { "Wacom Intuos Pro L", 65024, 40640, 2047, 63,
70ee06c5 3294 INTUOSPL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
29b47391 3295 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
803296b6 3296static const struct wacom_features wacom_features_0xF4 =
ecd618dc 3297 { "Wacom Cintiq 24HD", 104080, 65200, 2047, 63,
70ee06c5 3298 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
fa770340 3299 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
6f4d0382 3300static const struct wacom_features wacom_features_0xF8 =
ecd618dc 3301 { "Wacom Cintiq 24HD touch", 104080, 65200, 2047, 63, /* Pen */
70ee06c5 3302 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
fa770340 3303 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3bd1f7e2 3304 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf6 };
b1e4279e
JG
3305static const struct wacom_features wacom_features_0xF6 =
3306 { "Wacom Cintiq 24HD touch", .type = WACOM_24HDT, /* Touch */
29b47391
BT
3307 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf8, .touch_max = 10,
3308 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
500d4160 3309static const struct wacom_features wacom_features_0x32A =
a7e6645e 3310 { "Wacom Cintiq 27QHD", 119740, 67520, 2047, 63,
70ee06c5 3311 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
a7e6645e 3312 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
500d4160
PC
3313static const struct wacom_features wacom_features_0x32B =
3314 { "Wacom Cintiq 27QHD touch", 119740, 67520, 2047, 63,
70ee06c5 3315 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
500d4160
PC
3316 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3317 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32C };
3318static const struct wacom_features wacom_features_0x32C =
3319 { "Wacom Cintiq 27QHD touch", .type = WACOM_27QHDT,
3320 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32B, .touch_max = 10 };
e87a344d 3321static const struct wacom_features wacom_features_0x3F =
80befa93 3322 { "Wacom Cintiq 21UX", 87200, 65600, 1023, 63,
70ee06c5 3323 CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 3324static const struct wacom_features wacom_features_0xC5 =
80befa93 3325 { "Wacom Cintiq 20WSX", 86680, 54180, 1023, 63,
70ee06c5 3326 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
e87a344d 3327static const struct wacom_features wacom_features_0xC6 =
80befa93 3328 { "Wacom Cintiq 12WX", 53020, 33440, 1023, 63,
70ee06c5 3329 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
56218563 3330static const struct wacom_features wacom_features_0x304 =
ecd618dc 3331 { "Wacom Cintiq 13HD", 59152, 33448, 1023, 63,
70ee06c5 3332 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
fa770340 3333 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
b4bf2120
PC
3334static const struct wacom_features wacom_features_0x333 =
3335 { "Wacom Cintiq 13HD touch", 59152, 33448, 2047, 63,
70ee06c5 3336 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
b4bf2120
PC
3337 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3338 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x335 };
3339static const struct wacom_features wacom_features_0x335 =
3340 { "Wacom Cintiq 13HD touch", .type = WACOM_24HDT, /* Touch */
3341 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x333, .touch_max = 10,
3342 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
e87a344d 3343static const struct wacom_features wacom_features_0xC7 =
80befa93
BT
3344 { "Wacom DTU1931", 37832, 30305, 511, 0,
3345 PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
c8f2edc5 3346static const struct wacom_features wacom_features_0xCE =
80befa93
BT
3347 { "Wacom DTU2231", 47864, 27011, 511, 0,
3348 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
29b47391 3349 .check_for_hid_type = true, .hid_type = HID_TYPE_USBMOUSE };
c8f2edc5 3350static const struct wacom_features wacom_features_0xF0 =
80befa93
BT
3351 { "Wacom DTU1631", 34623, 19553, 511, 0,
3352 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
497ab1f2 3353static const struct wacom_features wacom_features_0xFB =
ecd618dc 3354 { "Wacom DTU1031", 21896, 13760, 511, 0,
70ee06c5 3355 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
fa770340 3356 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
fff00bf8
PC
3357static const struct wacom_features wacom_features_0x32F =
3358 { "Wacom DTU1031X", 22472, 12728, 511, 0,
70ee06c5 3359 DTUSX, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 0,
fff00bf8 3360 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
007760cf
AS
3361static const struct wacom_features wacom_features_0x336 =
3362 { "Wacom DTU1141", 23472, 13203, 1023, 0,
ff38e829
PC
3363 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
3364 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
56218563 3365static const struct wacom_features wacom_features_0x57 =
80befa93 3366 { "Wacom DTK2241", 95640, 54060, 2047, 63,
70ee06c5 3367 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
fa770340 3368 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
a112e9fd 3369static const struct wacom_features wacom_features_0x59 = /* Pen */
80befa93 3370 { "Wacom DTH2242", 95640, 54060, 2047, 63,
70ee06c5 3371 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
fa770340 3372 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
a112e9fd
PC
3373 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5D };
3374static const struct wacom_features wacom_features_0x5D = /* Touch */
3375 { "Wacom DTH2242", .type = WACOM_24HDT,
29b47391
BT
3376 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x59, .touch_max = 10,
3377 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3a4b4aaa 3378static const struct wacom_features wacom_features_0xCC =
ecd618dc 3379 { "Wacom Cintiq 21UX2", 86800, 65200, 2047, 63,
70ee06c5 3380 WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
fa770340 3381 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
d838c644 3382static const struct wacom_features wacom_features_0xFA =
ecd618dc 3383 { "Wacom Cintiq 22HD", 95440, 53860, 2047, 63,
70ee06c5 3384 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
fa770340 3385 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
56218563 3386static const struct wacom_features wacom_features_0x5B =
ecd618dc 3387 { "Wacom Cintiq 22HDT", 95440, 53860, 2047, 63,
70ee06c5 3388 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
fa770340 3389 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3bd1f7e2 3390 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5e };
56218563
PC
3391static const struct wacom_features wacom_features_0x5E =
3392 { "Wacom Cintiq 22HDT", .type = WACOM_24HDT,
29b47391
BT
3393 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5b, .touch_max = 10,
3394 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
e87a344d 3395static const struct wacom_features wacom_features_0x90 =
80befa93
BT
3396 { "Wacom ISDv4 90", 26202, 16325, 255, 0,
3397 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3398static const struct wacom_features wacom_features_0x93 =
80befa93
BT
3399 { "Wacom ISDv4 93", 26202, 16325, 255, 0,
3400 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
11d0cf88 3401static const struct wacom_features wacom_features_0x97 =
80befa93
BT
3402 { "Wacom ISDv4 97", 26202, 16325, 511, 0,
3403 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3404static const struct wacom_features wacom_features_0x9A =
80befa93
BT
3405 { "Wacom ISDv4 9A", 26202, 16325, 255, 0,
3406 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3407static const struct wacom_features wacom_features_0x9F =
80befa93
BT
3408 { "Wacom ISDv4 9F", 26202, 16325, 255, 0,
3409 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3410static const struct wacom_features wacom_features_0xE2 =
80befa93
BT
3411 { "Wacom ISDv4 E2", 26202, 16325, 255, 0,
3412 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
e87a344d 3413static const struct wacom_features wacom_features_0xE3 =
80befa93
BT
3414 { "Wacom ISDv4 E3", 26202, 16325, 255, 0,
3415 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
1963518b 3416static const struct wacom_features wacom_features_0xE5 =
80befa93
BT
3417 { "Wacom ISDv4 E5", 26202, 16325, 255, 0,
3418 MTSCREEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
26fcd2a7 3419static const struct wacom_features wacom_features_0xE6 =
80befa93
BT
3420 { "Wacom ISDv4 E6", 27760, 15694, 255, 0,
3421 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
0d0e3064 3422static const struct wacom_features wacom_features_0xEC =
80befa93
BT
3423 { "Wacom ISDv4 EC", 25710, 14500, 255, 0,
3424 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
ac173837 3425static const struct wacom_features wacom_features_0xED =
80befa93
BT
3426 { "Wacom ISDv4 ED", 26202, 16325, 255, 0,
3427 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
ac173837 3428static const struct wacom_features wacom_features_0xEF =
80befa93
BT
3429 { "Wacom ISDv4 EF", 26202, 16325, 255, 0,
3430 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
6afdc289 3431static const struct wacom_features wacom_features_0x100 =
80befa93
BT
3432 { "Wacom ISDv4 100", 26202, 16325, 255, 0,
3433 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
6afdc289 3434static const struct wacom_features wacom_features_0x101 =
80befa93
BT
3435 { "Wacom ISDv4 101", 26202, 16325, 255, 0,
3436 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
58694837 3437static const struct wacom_features wacom_features_0x10D =
80befa93
BT
3438 { "Wacom ISDv4 10D", 26202, 16325, 255, 0,
3439 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
2d3163f1 3440static const struct wacom_features wacom_features_0x10E =
80befa93
BT
3441 { "Wacom ISDv4 10E", 27760, 15694, 255, 0,
3442 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
9b4f60e5 3443static const struct wacom_features wacom_features_0x10F =
80befa93
BT
3444 { "Wacom ISDv4 10F", 27760, 15694, 255, 0,
3445 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
61616ed0 3446static const struct wacom_features wacom_features_0x116 =
80befa93
BT
3447 { "Wacom ISDv4 116", 26202, 16325, 255, 0,
3448 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
aeaf50d4
JG
3449static const struct wacom_features wacom_features_0x12C =
3450 { "Wacom ISDv4 12C", 27848, 15752, 2047, 0,
3451 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
edbe265d 3452static const struct wacom_features wacom_features_0x4001 =
80befa93
BT
3453 { "Wacom ISDv4 4001", 26202, 16325, 255, 0,
3454 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d51ddb2b 3455static const struct wacom_features wacom_features_0x4004 =
80befa93
BT
3456 { "Wacom ISDv4 4004", 11060, 6220, 255, 0,
3457 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d51ddb2b 3458static const struct wacom_features wacom_features_0x5000 =
80befa93
BT
3459 { "Wacom ISDv4 5000", 27848, 15752, 1023, 0,
3460 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d51ddb2b 3461static const struct wacom_features wacom_features_0x5002 =
80befa93
BT
3462 { "Wacom ISDv4 5002", 29576, 16724, 1023, 0,
3463 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 3464static const struct wacom_features wacom_features_0x47 =
80befa93
BT
3465 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3466 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d3825d51 3467static const struct wacom_features wacom_features_0x84 =
3b164a00 3468 { "Wacom Wireless Receiver", .type = WIRELESS, .touch_max = 16 };
7b824bbd 3469static const struct wacom_features wacom_features_0xD0 =
80befa93 3470 { "Wacom Bamboo 2FG", 14720, 9200, 1023, 31,
3b164a00 3471 BAMBOO_TOUCH, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3472static const struct wacom_features wacom_features_0xD1 =
80befa93
BT
3473 { "Wacom Bamboo 2FG 4x5", 14720, 9200, 1023, 31,
3474 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3475static const struct wacom_features wacom_features_0xD2 =
80befa93
BT
3476 { "Wacom Bamboo Craft", 14720, 9200, 1023, 31,
3477 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3478static const struct wacom_features wacom_features_0xD3 =
80befa93
BT
3479 { "Wacom Bamboo 2FG 6x8", 21648, 13700, 1023, 31,
3480 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
57a7872f 3481static const struct wacom_features wacom_features_0xD4 =
80befa93 3482 { "Wacom Bamboo Pen", 14720, 9200, 1023, 31,
3b164a00 3483 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
18adad1c 3484static const struct wacom_features wacom_features_0xD5 =
80befa93 3485 { "Wacom Bamboo Pen 6x8", 21648, 13700, 1023, 31,
3b164a00 3486 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 3487static const struct wacom_features wacom_features_0xD6 =
80befa93
BT
3488 { "Wacom BambooPT 2FG 4x5", 14720, 9200, 1023, 31,
3489 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3490static const struct wacom_features wacom_features_0xD7 =
80befa93
BT
3491 { "Wacom BambooPT 2FG Small", 14720, 9200, 1023, 31,
3492 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3493static const struct wacom_features wacom_features_0xD8 =
80befa93
BT
3494 { "Wacom Bamboo Comic 2FG", 21648, 13700, 1023, 31,
3495 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 3496static const struct wacom_features wacom_features_0xDA =
80befa93
BT
3497 { "Wacom Bamboo 2FG 4x5 SE", 14720, 9200, 1023, 31,
3498 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
f41a64ee 3499static const struct wacom_features wacom_features_0xDB =
80befa93
BT
3500 { "Wacom Bamboo 2FG 6x8 SE", 21648, 13700, 1023, 31,
3501 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
73149ab8 3502static const struct wacom_features wacom_features_0xDD =
80befa93
BT
3503 { "Wacom Bamboo Connect", 14720, 9200, 1023, 31,
3504 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
73149ab8 3505static const struct wacom_features wacom_features_0xDE =
80befa93
BT
3506 { "Wacom Bamboo 16FG 4x5", 14720, 9200, 1023, 31,
3507 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
73149ab8 3508static const struct wacom_features wacom_features_0xDF =
80befa93
BT
3509 { "Wacom Bamboo 16FG 6x8", 21648, 13700, 1023, 31,
3510 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
f41a64ee 3511static const struct wacom_features wacom_features_0x300 =
80befa93 3512 { "Wacom Bamboo One S", 14720, 9225, 1023, 31,
3b164a00 3513 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
f41a64ee 3514static const struct wacom_features wacom_features_0x301 =
80befa93
BT
3515 { "Wacom Bamboo One M", 21648, 13530, 1023, 31,
3516 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
b5fd2a3e 3517static const struct wacom_features wacom_features_0x302 =
80befa93
BT
3518 { "Wacom Intuos PT S", 15200, 9500, 1023, 31,
3519 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
29b47391 3520 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
b5fd2a3e 3521static const struct wacom_features wacom_features_0x303 =
80befa93
BT
3522 { "Wacom Intuos PT M", 21600, 13500, 1023, 31,
3523 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
29b47391 3524 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
b5fd2a3e 3525static const struct wacom_features wacom_features_0x30E =
80befa93
BT
3526 { "Wacom Intuos S", 15200, 9500, 1023, 31,
3527 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
29b47391 3528 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
7b4b3068 3529static const struct wacom_features wacom_features_0x6004 =
80befa93
BT
3530 { "ISD-V4", 12800, 8000, 255, 0,
3531 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
a3e6f654 3532static const struct wacom_features wacom_features_0x307 =
ecd618dc 3533 { "Wacom ISDv5 307", 59152, 33448, 2047, 63,
70ee06c5 3534 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
fa770340 3535 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
36d3c510 3536 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x309 };
a3e6f654 3537static const struct wacom_features wacom_features_0x309 =
36d3c510 3538 { "Wacom ISDv5 309", .type = WACOM_24HDT, /* Touch */
29b47391
BT
3539 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x0307, .touch_max = 10,
3540 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
89f2ab55 3541static const struct wacom_features wacom_features_0x30A =
ecd618dc 3542 { "Wacom ISDv5 30A", 59152, 33448, 2047, 63,
70ee06c5 3543 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
fa770340 3544 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
89f2ab55
BT
3545 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30C };
3546static const struct wacom_features wacom_features_0x30C =
3547 { "Wacom ISDv5 30C", .type = WACOM_24HDT, /* Touch */
3548 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30A, .touch_max = 10,
3549 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
8c97a765
BT
3550static const struct wacom_features wacom_features_0x318 =
3551 { "Wacom USB Bamboo PAD", 4095, 4095, /* Touch */
3552 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
3553static const struct wacom_features wacom_features_0x319 =
3554 { "Wacom Wireless Bamboo PAD", 4095, 4095, /* Touch */
3555 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
f7acb55c
JG
3556static const struct wacom_features wacom_features_0x325 =
3557 { "Wacom ISDv5 325", 59552, 33848, 2047, 63,
3558 CINTIQ_COMPANION_2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 11,
3559 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3560 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x326 };
3561static const struct wacom_features wacom_features_0x326 = /* Touch */
3562 { "Wacom ISDv5 326", .type = HID_GENERIC, .oVid = USB_VENDOR_ID_WACOM,
3563 .oPid = 0x325 };
fefb391f
PC
3564static const struct wacom_features wacom_features_0x323 =
3565 { "Wacom Intuos P M", 21600, 13500, 1023, 31,
3566 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3567 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
72b236d6 3568static const struct wacom_features wacom_features_0x331 =
3b164a00
PC
3569 { "Wacom Express Key Remote", .type = REMOTE,
3570 .numbered_buttons = 18, .check_for_hid_type = true,
72b236d6 3571 .hid_type = HID_TYPE_USBNONE };
eda01dab
PC
3572static const struct wacom_features wacom_features_0x33B =
3573 { "Wacom Intuos S 2", 15200, 9500, 2047, 63,
3574 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3575 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3576static const struct wacom_features wacom_features_0x33C =
3577 { "Wacom Intuos PT S 2", 15200, 9500, 2047, 63,
3578 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3579 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3580static const struct wacom_features wacom_features_0x33D =
3581 { "Wacom Intuos P M 2", 21600, 13500, 2047, 63,
3582 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3583 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3584static const struct wacom_features wacom_features_0x33E =
3585 { "Wacom Intuos PT M 2", 21600, 13500, 2047, 63,
3586 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3587 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
e1123fe9
PC
3588static const struct wacom_features wacom_features_0x343 =
3589 { "Wacom DTK1651", 34616, 19559, 1023, 0,
3590 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
3591 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
b036f6fb 3592
7704ac93 3593static const struct wacom_features wacom_features_HID_ANY_ID =
41372d5d 3594 { "Wacom HID", .type = HID_GENERIC, .oVid = HID_ANY_ID, .oPid = HID_ANY_ID };
7704ac93 3595
29b47391
BT
3596#define USB_DEVICE_WACOM(prod) \
3597 HID_DEVICE(BUS_USB, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3598 .driver_data = (kernel_ulong_t)&wacom_features_##prod
b036f6fb 3599
387142bb
BT
3600#define BT_DEVICE_WACOM(prod) \
3601 HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3602 .driver_data = (kernel_ulong_t)&wacom_features_##prod
1483f551 3603
eef23a84
MW
3604#define I2C_DEVICE_WACOM(prod) \
3605 HID_DEVICE(BUS_I2C, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3606 .driver_data = (kernel_ulong_t)&wacom_features_##prod
3607
7b4b3068 3608#define USB_DEVICE_LENOVO(prod) \
29b47391
BT
3609 HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
3610 .driver_data = (kernel_ulong_t)&wacom_features_##prod
7b4b3068 3611
29b47391 3612const struct hid_device_id wacom_ids[] = {
b036f6fb 3613 { USB_DEVICE_WACOM(0x00) },
a3e6f654 3614 { USB_DEVICE_WACOM(0x03) },
b036f6fb
BB
3615 { USB_DEVICE_WACOM(0x10) },
3616 { USB_DEVICE_WACOM(0x11) },
3617 { USB_DEVICE_WACOM(0x12) },
3618 { USB_DEVICE_WACOM(0x13) },
3619 { USB_DEVICE_WACOM(0x14) },
3620 { USB_DEVICE_WACOM(0x15) },
3621 { USB_DEVICE_WACOM(0x16) },
3622 { USB_DEVICE_WACOM(0x17) },
3623 { USB_DEVICE_WACOM(0x18) },
3624 { USB_DEVICE_WACOM(0x19) },
b036f6fb
BB
3625 { USB_DEVICE_WACOM(0x20) },
3626 { USB_DEVICE_WACOM(0x21) },
3627 { USB_DEVICE_WACOM(0x22) },
3628 { USB_DEVICE_WACOM(0x23) },
3629 { USB_DEVICE_WACOM(0x24) },
a3e6f654
BT
3630 { USB_DEVICE_WACOM(0x26) },
3631 { USB_DEVICE_WACOM(0x27) },
3632 { USB_DEVICE_WACOM(0x28) },
3633 { USB_DEVICE_WACOM(0x29) },
3634 { USB_DEVICE_WACOM(0x2A) },
b036f6fb
BB
3635 { USB_DEVICE_WACOM(0x30) },
3636 { USB_DEVICE_WACOM(0x31) },
3637 { USB_DEVICE_WACOM(0x32) },
3638 { USB_DEVICE_WACOM(0x33) },
3639 { USB_DEVICE_WACOM(0x34) },
3640 { USB_DEVICE_WACOM(0x35) },
3641 { USB_DEVICE_WACOM(0x37) },
3642 { USB_DEVICE_WACOM(0x38) },
3643 { USB_DEVICE_WACOM(0x39) },
a3e6f654 3644 { USB_DEVICE_WACOM(0x3F) },
b036f6fb
BB
3645 { USB_DEVICE_WACOM(0x41) },
3646 { USB_DEVICE_WACOM(0x42) },
3647 { USB_DEVICE_WACOM(0x43) },
3648 { USB_DEVICE_WACOM(0x44) },
3649 { USB_DEVICE_WACOM(0x45) },
a3e6f654 3650 { USB_DEVICE_WACOM(0x47) },
56218563 3651 { USB_DEVICE_WACOM(0x57) },
a112e9fd 3652 { USB_DEVICE_WACOM(0x59) },
56218563 3653 { USB_DEVICE_WACOM(0x5B) },
a3e6f654 3654 { USB_DEVICE_WACOM(0x5D) },
29b47391 3655 { USB_DEVICE_WACOM(0x5E) },
a3e6f654
BT
3656 { USB_DEVICE_WACOM(0x60) },
3657 { USB_DEVICE_WACOM(0x61) },
3658 { USB_DEVICE_WACOM(0x62) },
3659 { USB_DEVICE_WACOM(0x63) },
3660 { USB_DEVICE_WACOM(0x64) },
3661 { USB_DEVICE_WACOM(0x65) },
3662 { USB_DEVICE_WACOM(0x69) },
3663 { USB_DEVICE_WACOM(0x6A) },
3664 { USB_DEVICE_WACOM(0x6B) },
387142bb 3665 { BT_DEVICE_WACOM(0x81) },
a3e6f654
BT
3666 { USB_DEVICE_WACOM(0x84) },
3667 { USB_DEVICE_WACOM(0x90) },
3668 { USB_DEVICE_WACOM(0x93) },
3669 { USB_DEVICE_WACOM(0x97) },
3670 { USB_DEVICE_WACOM(0x9A) },
3671 { USB_DEVICE_WACOM(0x9F) },
b036f6fb
BB
3672 { USB_DEVICE_WACOM(0xB0) },
3673 { USB_DEVICE_WACOM(0xB1) },
3674 { USB_DEVICE_WACOM(0xB2) },
3675 { USB_DEVICE_WACOM(0xB3) },
3676 { USB_DEVICE_WACOM(0xB4) },
3677 { USB_DEVICE_WACOM(0xB5) },
3678 { USB_DEVICE_WACOM(0xB7) },
3679 { USB_DEVICE_WACOM(0xB8) },
3680 { USB_DEVICE_WACOM(0xB9) },
3681 { USB_DEVICE_WACOM(0xBA) },
3682 { USB_DEVICE_WACOM(0xBB) },
3a4b4aaa 3683 { USB_DEVICE_WACOM(0xBC) },
81af7e61 3684 { BT_DEVICE_WACOM(0xBD) },
a3e6f654
BT
3685 { USB_DEVICE_WACOM(0xC0) },
3686 { USB_DEVICE_WACOM(0xC2) },
3687 { USB_DEVICE_WACOM(0xC4) },
b036f6fb
BB
3688 { USB_DEVICE_WACOM(0xC5) },
3689 { USB_DEVICE_WACOM(0xC6) },
3690 { USB_DEVICE_WACOM(0xC7) },
a3e6f654 3691 { USB_DEVICE_WACOM(0xCC) },
29b47391 3692 { USB_DEVICE_WACOM(0xCE) },
cb734c03 3693 { USB_DEVICE_WACOM(0xD0) },
2aaacb15
CB
3694 { USB_DEVICE_WACOM(0xD1) },
3695 { USB_DEVICE_WACOM(0xD2) },
3696 { USB_DEVICE_WACOM(0xD3) },
57a7872f 3697 { USB_DEVICE_WACOM(0xD4) },
18adad1c 3698 { USB_DEVICE_WACOM(0xD5) },
d38acb49
PC
3699 { USB_DEVICE_WACOM(0xD6) },
3700 { USB_DEVICE_WACOM(0xD7) },
a318e6b1
DF
3701 { USB_DEVICE_WACOM(0xD8) },
3702 { USB_DEVICE_WACOM(0xDA) },
47d09235 3703 { USB_DEVICE_WACOM(0xDB) },
73149ab8
CB
3704 { USB_DEVICE_WACOM(0xDD) },
3705 { USB_DEVICE_WACOM(0xDE) },
3706 { USB_DEVICE_WACOM(0xDF) },
b036f6fb
BB
3707 { USB_DEVICE_WACOM(0xE2) },
3708 { USB_DEVICE_WACOM(0xE3) },
1963518b 3709 { USB_DEVICE_WACOM(0xE5) },
26fcd2a7 3710 { USB_DEVICE_WACOM(0xE6) },
0d0e3064 3711 { USB_DEVICE_WACOM(0xEC) },
ac173837
PC
3712 { USB_DEVICE_WACOM(0xED) },
3713 { USB_DEVICE_WACOM(0xEF) },
a3e6f654
BT
3714 { USB_DEVICE_WACOM(0xF0) },
3715 { USB_DEVICE_WACOM(0xF4) },
3716 { USB_DEVICE_WACOM(0xF6) },
3717 { USB_DEVICE_WACOM(0xF8) },
3718 { USB_DEVICE_WACOM(0xFA) },
3719 { USB_DEVICE_WACOM(0xFB) },
6afdc289
PC
3720 { USB_DEVICE_WACOM(0x100) },
3721 { USB_DEVICE_WACOM(0x101) },
58694837 3722 { USB_DEVICE_WACOM(0x10D) },
2d3163f1 3723 { USB_DEVICE_WACOM(0x10E) },
9b4f60e5 3724 { USB_DEVICE_WACOM(0x10F) },
61616ed0 3725 { USB_DEVICE_WACOM(0x116) },
aeaf50d4 3726 { USB_DEVICE_WACOM(0x12C) },
f41a64ee
PC
3727 { USB_DEVICE_WACOM(0x300) },
3728 { USB_DEVICE_WACOM(0x301) },
29b47391
BT
3729 { USB_DEVICE_WACOM(0x302) },
3730 { USB_DEVICE_WACOM(0x303) },
56218563 3731 { USB_DEVICE_WACOM(0x304) },
a3e6f654
BT
3732 { USB_DEVICE_WACOM(0x307) },
3733 { USB_DEVICE_WACOM(0x309) },
89f2ab55
BT
3734 { USB_DEVICE_WACOM(0x30A) },
3735 { USB_DEVICE_WACOM(0x30C) },
a3e6f654 3736 { USB_DEVICE_WACOM(0x30E) },
29b47391
BT
3737 { USB_DEVICE_WACOM(0x314) },
3738 { USB_DEVICE_WACOM(0x315) },
3739 { USB_DEVICE_WACOM(0x317) },
8c97a765
BT
3740 { USB_DEVICE_WACOM(0x318) },
3741 { USB_DEVICE_WACOM(0x319) },
fefb391f 3742 { USB_DEVICE_WACOM(0x323) },
f7acb55c
JG
3743 { USB_DEVICE_WACOM(0x325) },
3744 { USB_DEVICE_WACOM(0x326) },
500d4160
PC
3745 { USB_DEVICE_WACOM(0x32A) },
3746 { USB_DEVICE_WACOM(0x32B) },
3747 { USB_DEVICE_WACOM(0x32C) },
fff00bf8 3748 { USB_DEVICE_WACOM(0x32F) },
72b236d6 3749 { USB_DEVICE_WACOM(0x331) },
b4bf2120
PC
3750 { USB_DEVICE_WACOM(0x333) },
3751 { USB_DEVICE_WACOM(0x335) },
007760cf 3752 { USB_DEVICE_WACOM(0x336) },
eda01dab
PC
3753 { USB_DEVICE_WACOM(0x33B) },
3754 { USB_DEVICE_WACOM(0x33C) },
3755 { USB_DEVICE_WACOM(0x33D) },
3756 { USB_DEVICE_WACOM(0x33E) },
e1123fe9 3757 { USB_DEVICE_WACOM(0x343) },
edbe265d 3758 { USB_DEVICE_WACOM(0x4001) },
d51ddb2b
JG
3759 { USB_DEVICE_WACOM(0x4004) },
3760 { USB_DEVICE_WACOM(0x5000) },
3761 { USB_DEVICE_WACOM(0x5002) },
00d6f227 3762 { USB_DEVICE_LENOVO(0x6004) },
7704ac93
BT
3763
3764 { USB_DEVICE_WACOM(HID_ANY_ID) },
eef23a84 3765 { I2C_DEVICE_WACOM(HID_ANY_ID) },
3bea733a
PC
3766 { }
3767};
29b47391 3768MODULE_DEVICE_TABLE(hid, wacom_ids);