Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
[linux-block.git] / drivers / hid / wacom_wac.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
3bea733a 2/*
ee54500d 3 * USB Wacom tablet support - Wacom specific code
3bea733a
PC
4 */
5
3bea733a 6#include "wacom_wac.h"
51269fe8 7#include "wacom.h"
47c78e89 8#include <linux/input/mt.h>
94b17905 9#include <linux/jiffies.h>
3bea733a 10
e35fb8c1
PC
11/* resolution for penabled devices */
12#define WACOM_PL_RES 20
13#define WACOM_PENPRTN_RES 40
14#define WACOM_VOLITO_RES 50
15#define WACOM_GRAPHIRE_RES 80
16#define WACOM_INTUOS_RES 100
17#define WACOM_INTUOS3_RES 200
18
fa770340
PC
19/* Newer Cintiq and DTU have an offset between tablet and screen areas */
20#define WACOM_DTU_OFFSET 200
21#define WACOM_CINTIQ_OFFSET 400
22
387142bb
BT
23/*
24 * Scale factor relating reported contact size to logical contact area.
4e904954
JG
25 * 2^14/pi is a good approximation on Intuos5 and 3rd-gen Bamboo
26 */
27#define WACOM_CONTACT_AREA_SCALE 2607
28
1924e05e
PC
29static bool touch_arbitration = 1;
30module_param(touch_arbitration, bool, 0644);
31MODULE_PARM_DESC(touch_arbitration, " on (Y) off (N)");
32
c7f0522a
JG
33static void wacom_report_numbered_buttons(struct input_dev *input_dev,
34 int button_count, int mask);
35
5922e613
JG
36static int wacom_numbered_button_to_key(int n);
37
10c55cac
AAS
38static void wacom_update_led(struct wacom *wacom, int button_count, int mask,
39 int group);
94b17905
JG
40
41static void wacom_force_proxout(struct wacom_wac *wacom_wac)
42{
43 struct input_dev *input = wacom_wac->pen_input;
44
45 wacom_wac->shared->stylus_in_proximity = 0;
46
47 input_report_key(input, BTN_TOUCH, 0);
48 input_report_key(input, BTN_STYLUS, 0);
49 input_report_key(input, BTN_STYLUS2, 0);
50 input_report_key(input, BTN_STYLUS3, 0);
51 input_report_key(input, wacom_wac->tool[0], 0);
52 if (wacom_wac->serial[0]) {
53 input_report_abs(input, ABS_MISC, 0);
54 }
55 input_report_abs(input, ABS_PRESSURE, 0);
56
57 wacom_wac->tool[0] = 0;
58 wacom_wac->id[0] = 0;
59 wacom_wac->serial[0] = 0;
60
61 input_sync(input);
62}
63
64void wacom_idleprox_timeout(struct timer_list *list)
65{
66 struct wacom *wacom = from_timer(wacom, list, idleprox_timer);
67 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
68
69 if (!wacom_wac->hid_data.sense_state) {
70 return;
71 }
72
73 hid_warn(wacom->hdev, "%s: tool appears to be hung in-prox. forcing it out.\n", __func__);
74 wacom_force_proxout(wacom_wac);
75}
76
387142bb
BT
77/*
78 * Percent of battery capacity for Graphire.
79 * 8th value means AC online and show 100% capacity.
80 */
81static unsigned short batcap_gr[8] = { 1, 15, 25, 35, 50, 70, 100, 100 };
82
81af7e61
BT
83/*
84 * Percent of battery capacity for Intuos4 WL, AC has a separate bit.
85 */
86static unsigned short batcap_i4[8] = { 1, 15, 30, 45, 60, 70, 85, 100 };
87
59d69bc8 88static void __wacom_notify_battery(struct wacom_battery *battery,
16e45989
JG
89 int bat_status, int bat_capacity,
90 bool bat_charging, bool bat_connected,
91 bool ps_connected)
59d69bc8 92{
16e45989
JG
93 bool changed = battery->bat_status != bat_status ||
94 battery->battery_capacity != bat_capacity ||
59d69bc8
BT
95 battery->bat_charging != bat_charging ||
96 battery->bat_connected != bat_connected ||
97 battery->ps_connected != ps_connected;
98
99 if (changed) {
16e45989 100 battery->bat_status = bat_status;
59d69bc8
BT
101 battery->battery_capacity = bat_capacity;
102 battery->bat_charging = bat_charging;
103 battery->bat_connected = bat_connected;
104 battery->ps_connected = ps_connected;
105
106 if (battery->battery)
107 power_supply_changed(battery->battery);
108 }
109}
110
953f2c5f 111static void wacom_notify_battery(struct wacom_wac *wacom_wac,
16e45989
JG
112 int bat_status, int bat_capacity, bool bat_charging,
113 bool bat_connected, bool ps_connected)
953f2c5f
JG
114{
115 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
7fc68653
JG
116 bool bat_initialized = wacom->battery.battery;
117 bool has_quirk = wacom_wac->features.quirks & WACOM_QUIRK_BATTERY;
118
119 if (bat_initialized != has_quirk)
120 wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
953f2c5f 121
16e45989
JG
122 __wacom_notify_battery(&wacom->battery, bat_status, bat_capacity,
123 bat_charging, bat_connected, ps_connected);
953f2c5f
JG
124}
125
95dd3b30 126static int wacom_penpartner_irq(struct wacom_wac *wacom)
3bea733a
PC
127{
128 unsigned char *data = wacom->data;
2a6cdbdd 129 struct input_dev *input = wacom->pen_input;
3bea733a
PC
130
131 switch (data[0]) {
73a97f4f
DT
132 case 1:
133 if (data[5] & 0x80) {
134 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
135 wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
8da23fc1
DT
136 input_report_key(input, wacom->tool[0], 1);
137 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
252f7769
DT
138 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
139 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
8da23fc1
DT
140 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
141 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -127));
142 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
73a97f4f 143 } else {
8da23fc1
DT
144 input_report_key(input, wacom->tool[0], 0);
145 input_report_abs(input, ABS_MISC, 0); /* report tool id */
146 input_report_abs(input, ABS_PRESSURE, -1);
147 input_report_key(input, BTN_TOUCH, 0);
73a97f4f
DT
148 }
149 break;
8da23fc1 150
73a97f4f 151 case 2:
8da23fc1
DT
152 input_report_key(input, BTN_TOOL_PEN, 1);
153 input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
252f7769
DT
154 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
155 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
8da23fc1
DT
156 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
157 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
158 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
73a97f4f 159 break;
8da23fc1 160
73a97f4f 161 default:
eb71d1bb
DT
162 dev_dbg(input->dev.parent,
163 "%s: received unknown report #%d\n", __func__, data[0]);
73a97f4f 164 return 0;
3bea733a 165 }
8da23fc1 166
3bea733a
PC
167 return 1;
168}
169
95dd3b30 170static int wacom_pl_irq(struct wacom_wac *wacom)
3bea733a 171{
e33da8a5 172 struct wacom_features *features = &wacom->features;
3bea733a 173 unsigned char *data = wacom->data;
2a6cdbdd 174 struct input_dev *input = wacom->pen_input;
e34b9d2f 175 int prox, pressure;
3bea733a 176
cad74700 177 if (data[0] != WACOM_REPORT_PENABLED) {
eb71d1bb
DT
178 dev_dbg(input->dev.parent,
179 "%s: received unknown report #%d\n", __func__, data[0]);
3bea733a
PC
180 return 0;
181 }
182
183 prox = data[1] & 0x40;
184
025bcc15
JG
185 if (!wacom->id[0]) {
186 if ((data[0] & 0x10) || (data[4] & 0x20)) {
187 wacom->tool[0] = BTN_TOOL_RUBBER;
188 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a 189 }
025bcc15
JG
190 else {
191 wacom->tool[0] = BTN_TOOL_PEN;
e34b9d2f 192 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a 193 }
3bea733a 194 }
8da23fc1 195
025bcc15
JG
196 /* If the eraser is in prox, STYLUS2 is always set. If we
197 * mis-detected the type and notice that STYLUS2 isn't set
198 * then force the eraser out of prox and let the pen in.
199 */
200 if (wacom->tool[0] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
201 input_report_key(input, BTN_TOOL_RUBBER, 0);
202 input_report_abs(input, ABS_MISC, 0);
203 input_sync(input);
204 wacom->tool[0] = BTN_TOOL_PEN;
205 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a
PC
206 }
207
282e4637
JG
208 if (prox) {
209 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
210 if (features->pressure_max > 255)
211 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
212 pressure += (features->pressure_max + 1) / 2;
213
214 input_report_abs(input, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
215 input_report_abs(input, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
216 input_report_abs(input, ABS_PRESSURE, pressure);
217
218 input_report_key(input, BTN_TOUCH, data[4] & 0x08);
219 input_report_key(input, BTN_STYLUS, data[4] & 0x10);
220 /* Only allow the stylus2 button to be reported for the pen tool. */
221 input_report_key(input, BTN_STYLUS2, (wacom->tool[0] == BTN_TOOL_PEN) && (data[4] & 0x20));
222 }
025bcc15
JG
223
224 if (!prox)
225 wacom->id[0] = 0;
226 input_report_key(input, wacom->tool[0], prox);
227 input_report_abs(input, ABS_MISC, wacom->id[0]);
3bea733a
PC
228 return 1;
229}
230
95dd3b30 231static int wacom_ptu_irq(struct wacom_wac *wacom)
3bea733a
PC
232{
233 unsigned char *data = wacom->data;
2a6cdbdd 234 struct input_dev *input = wacom->pen_input;
3bea733a 235
cad74700 236 if (data[0] != WACOM_REPORT_PENABLED) {
eb71d1bb
DT
237 dev_dbg(input->dev.parent,
238 "%s: received unknown report #%d\n", __func__, data[0]);
3bea733a
PC
239 return 0;
240 }
241
3bea733a 242 if (data[1] & 0x04) {
8da23fc1
DT
243 input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
244 input_report_key(input, BTN_TOUCH, data[1] & 0x08);
e34b9d2f 245 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a 246 } else {
8da23fc1
DT
247 input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
248 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
e34b9d2f 249 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a 250 }
8da23fc1 251 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
252f7769
DT
252 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
253 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
254 input_report_abs(input, ABS_PRESSURE, le16_to_cpup((__le16 *)&data[6]));
8da23fc1
DT
255 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
256 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
3bea733a
PC
257 return 1;
258}
259
c8f2edc5
PC
260static int wacom_dtu_irq(struct wacom_wac *wacom)
261{
74b63417 262 unsigned char *data = wacom->data;
2a6cdbdd 263 struct input_dev *input = wacom->pen_input;
74b63417 264 int prox = data[1] & 0x20;
c8f2edc5 265
eb71d1bb
DT
266 dev_dbg(input->dev.parent,
267 "%s: received report #%d", __func__, data[0]);
c8f2edc5
PC
268
269 if (prox) {
270 /* Going into proximity select tool */
271 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
272 if (wacom->tool[0] == BTN_TOOL_PEN)
273 wacom->id[0] = STYLUS_DEVICE_ID;
274 else
275 wacom->id[0] = ERASER_DEVICE_ID;
276 }
277 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
278 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
279 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
280 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
74b63417 281 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x01) << 8) | data[6]);
c8f2edc5
PC
282 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
283 if (!prox) /* out-prox */
284 wacom->id[0] = 0;
285 input_report_key(input, wacom->tool[0], prox);
286 input_report_abs(input, ABS_MISC, wacom->id[0]);
287 return 1;
288}
289
497ab1f2
PC
290static int wacom_dtus_irq(struct wacom_wac *wacom)
291{
073b50bc 292 unsigned char *data = wacom->data;
2a6cdbdd 293 struct input_dev *input = wacom->pen_input;
497ab1f2
PC
294 unsigned short prox, pressure = 0;
295
296 if (data[0] != WACOM_REPORT_DTUS && data[0] != WACOM_REPORT_DTUSPAD) {
297 dev_dbg(input->dev.parent,
298 "%s: received unknown report #%d", __func__, data[0]);
299 return 0;
300 } else if (data[0] == WACOM_REPORT_DTUSPAD) {
422b0314 301 input = wacom->pad_input;
497ab1f2
PC
302 input_report_key(input, BTN_0, (data[1] & 0x01));
303 input_report_key(input, BTN_1, (data[1] & 0x02));
304 input_report_key(input, BTN_2, (data[1] & 0x04));
305 input_report_key(input, BTN_3, (data[1] & 0x08));
306 input_report_abs(input, ABS_MISC,
307 data[1] & 0x0f ? PAD_DEVICE_ID : 0);
497ab1f2
PC
308 return 1;
309 } else {
310 prox = data[1] & 0x80;
311 if (prox) {
312 switch ((data[1] >> 3) & 3) {
313 case 1: /* Rubber */
314 wacom->tool[0] = BTN_TOOL_RUBBER;
315 wacom->id[0] = ERASER_DEVICE_ID;
316 break;
317
318 case 2: /* Pen */
319 wacom->tool[0] = BTN_TOOL_PEN;
320 wacom->id[0] = STYLUS_DEVICE_ID;
321 break;
322 }
323 }
324
325 input_report_key(input, BTN_STYLUS, data[1] & 0x20);
326 input_report_key(input, BTN_STYLUS2, data[1] & 0x40);
327 input_report_abs(input, ABS_X, get_unaligned_be16(&data[3]));
328 input_report_abs(input, ABS_Y, get_unaligned_be16(&data[5]));
329 pressure = ((data[1] & 0x03) << 8) | (data[2] & 0xff);
330 input_report_abs(input, ABS_PRESSURE, pressure);
331 input_report_key(input, BTN_TOUCH, pressure > 10);
332
333 if (!prox) /* out-prox */
334 wacom->id[0] = 0;
335 input_report_key(input, wacom->tool[0], prox);
336 input_report_abs(input, ABS_MISC, wacom->id[0]);
497ab1f2
PC
337 return 1;
338 }
339}
340
95dd3b30 341static int wacom_graphire_irq(struct wacom_wac *wacom)
3bea733a 342{
e33da8a5 343 struct wacom_features *features = &wacom->features;
3bea733a 344 unsigned char *data = wacom->data;
2a6cdbdd 345 struct input_dev *input = wacom->pen_input;
3813810c 346 struct input_dev *pad_input = wacom->pad_input;
387142bb 347 int battery_capacity, ps_connected;
252f7769 348 int prox;
3b57ca0f
PC
349 int rw = 0;
350 int retval = 0;
3bea733a 351
387142bb
BT
352 if (features->type == GRAPHIRE_BT) {
353 if (data[0] != WACOM_REPORT_PENABLED_BT) {
354 dev_dbg(input->dev.parent,
355 "%s: received unknown report #%d\n", __func__,
356 data[0]);
357 goto exit;
358 }
359 } else if (data[0] != WACOM_REPORT_PENABLED) {
eb71d1bb
DT
360 dev_dbg(input->dev.parent,
361 "%s: received unknown report #%d\n", __func__, data[0]);
3b57ca0f 362 goto exit;
3bea733a
PC
363 }
364
3b57ca0f
PC
365 prox = data[1] & 0x80;
366 if (prox || wacom->id[0]) {
367 if (prox) {
368 switch ((data[1] >> 5) & 3) {
3bea733a
PC
369
370 case 0: /* Pen */
371 wacom->tool[0] = BTN_TOOL_PEN;
e34b9d2f 372 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a
PC
373 break;
374
375 case 1: /* Rubber */
376 wacom->tool[0] = BTN_TOOL_RUBBER;
e34b9d2f 377 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a
PC
378 break;
379
380 case 2: /* Mouse with wheel */
8da23fc1 381 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
df561f66 382 fallthrough;
3bea733a
PC
383
384 case 3: /* Mouse without wheel */
385 wacom->tool[0] = BTN_TOOL_MOUSE;
e34b9d2f 386 wacom->id[0] = CURSOR_DEVICE_ID;
3bea733a 387 break;
3b57ca0f 388 }
3bea733a 389 }
252f7769
DT
390 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
391 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
3bea733a 392 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
387142bb
BT
393 if (features->type == GRAPHIRE_BT)
394 input_report_abs(input, ABS_PRESSURE, data[6] |
395 (((__u16) (data[1] & 0x08)) << 5));
396 else
397 input_report_abs(input, ABS_PRESSURE, data[6] |
398 ((data[7] & 0x03) << 8));
8da23fc1
DT
399 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
400 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
401 input_report_key(input, BTN_STYLUS2, data[1] & 0x04);
afb567e3 402 } else {
8da23fc1
DT
403 input_report_key(input, BTN_LEFT, data[1] & 0x01);
404 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
3b57ca0f
PC
405 if (features->type == WACOM_G4 ||
406 features->type == WACOM_MO) {
8da23fc1 407 input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f);
d9f66c1a 408 rw = (data[7] & 0x04) - (data[7] & 0x03);
387142bb
BT
409 } else if (features->type == GRAPHIRE_BT) {
410 /* Compute distance between mouse and tablet */
411 rw = 44 - (data[6] >> 2);
412 rw = clamp_val(rw, 0, 31);
413 input_report_abs(input, ABS_DISTANCE, rw);
414 if (((data[1] >> 5) & 3) == 2) {
415 /* Mouse with wheel */
416 input_report_key(input, BTN_MIDDLE,
417 data[1] & 0x04);
418 rw = (data[6] & 0x01) ? -1 :
419 (data[6] & 0x02) ? 1 : 0;
420 } else {
421 rw = 0;
422 }
3b57ca0f 423 } else {
8da23fc1 424 input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f);
d9f66c1a 425 rw = -(signed char)data[6];
3b57ca0f 426 }
8da23fc1 427 input_report_rel(input, REL_WHEEL, rw);
afb567e3 428 }
3b57ca0f
PC
429
430 if (!prox)
431 wacom->id[0] = 0;
8da23fc1
DT
432 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
433 input_report_key(input, wacom->tool[0], prox);
434 input_sync(input); /* sync last event */
80d4e8e9 435 }
3bea733a
PC
436
437 /* send pad data */
e33da8a5 438 switch (features->type) {
73a97f4f 439 case WACOM_G4:
3b57ca0f
PC
440 prox = data[7] & 0xf8;
441 if (prox || wacom->id[1]) {
e34b9d2f 442 wacom->id[1] = PAD_DEVICE_ID;
3813810c
BT
443 input_report_key(pad_input, BTN_BACK, (data[7] & 0x40));
444 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x80));
3bea733a 445 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
3813810c 446 input_report_rel(pad_input, REL_WHEEL, rw);
3b57ca0f
PC
447 if (!prox)
448 wacom->id[1] = 0;
3813810c 449 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
ab687b18 450 retval = 1;
3bea733a 451 }
7ecfbfd3 452 break;
73a97f4f
DT
453
454 case WACOM_MO:
3b57ca0f
PC
455 prox = (data[7] & 0xf8) || data[8];
456 if (prox || wacom->id[1]) {
e34b9d2f 457 wacom->id[1] = PAD_DEVICE_ID;
3813810c
BT
458 input_report_key(pad_input, BTN_BACK, (data[7] & 0x08));
459 input_report_key(pad_input, BTN_LEFT, (data[7] & 0x20));
460 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x10));
461 input_report_key(pad_input, BTN_RIGHT, (data[7] & 0x40));
462 input_report_abs(pad_input, ABS_WHEEL, (data[8] & 0x7f));
3b57ca0f
PC
463 if (!prox)
464 wacom->id[1] = 0;
3813810c 465 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
84460014 466 retval = 1;
7ecfbfd3
PC
467 }
468 break;
387142bb
BT
469 case GRAPHIRE_BT:
470 prox = data[7] & 0x03;
471 if (prox || wacom->id[1]) {
472 wacom->id[1] = PAD_DEVICE_ID;
473 input_report_key(pad_input, BTN_0, (data[7] & 0x02));
474 input_report_key(pad_input, BTN_1, (data[7] & 0x01));
3b57ca0f
PC
475 if (!prox)
476 wacom->id[1] = 0;
387142bb 477 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
84460014 478 retval = 1;
7ecfbfd3
PC
479 }
480 break;
3bea733a 481 }
387142bb
BT
482
483 /* Store current battery capacity and power supply state */
484 if (features->type == GRAPHIRE_BT) {
485 rw = (data[7] >> 2 & 0x07);
486 battery_capacity = batcap_gr[rw];
487 ps_connected = rw == 7;
16e45989
JG
488 wacom_notify_battery(wacom, WACOM_POWER_SUPPLY_STATUS_AUTO,
489 battery_capacity, ps_connected, 1,
490 ps_connected);
3bea733a 491 }
3b57ca0f
PC
492exit:
493 return retval;
3bea733a
PC
494}
495
5fcad167
BT
496static void wacom_intuos_schedule_prox_event(struct wacom_wac *wacom_wac)
497{
498 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
0bbfe28a 499 struct wacom_features *features = &wacom_wac->features;
5fcad167
BT
500 struct hid_report *r;
501 struct hid_report_enum *re;
502
503 re = &(wacom->hdev->report_enum[HID_FEATURE_REPORT]);
0bbfe28a
JG
504 if (features->type == INTUOSHT2)
505 r = re->report_id_hash[WACOM_REPORT_INTUOSHT2_ID];
506 else
507 r = re->report_id_hash[WACOM_REPORT_INTUOS_ID1];
5fcad167
BT
508 if (r) {
509 hid_hw_request(wacom->hdev, r, HID_REQ_GET_REPORT);
510 }
511}
512
fb013a01
JG
513static int wacom_intuos_pad(struct wacom_wac *wacom)
514{
515 struct wacom_features *features = &wacom->features;
516 unsigned char *data = wacom->data;
517 struct input_dev *input = wacom->pad_input;
c7f0522a
JG
518 int i;
519 int buttons = 0, nbuttons = features->numbered_buttons;
520 int keys = 0, nkeys = 0;
521 int ring1 = 0, ring2 = 0;
522 int strip1 = 0, strip2 = 0;
523 bool prox = false;
670e9092
AAS
524 bool wrench = false, keyboard = false, mute_touch = false, menu = false,
525 info = false;
fb013a01
JG
526
527 /* pad packets. Works as a second tool and is always in prox */
528 if (!(data[0] == WACOM_REPORT_INTUOSPAD || data[0] == WACOM_REPORT_INTUOS5PAD ||
529 data[0] == WACOM_REPORT_CINTIQPAD))
530 return 0;
531
532 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
c7f0522a
JG
533 buttons = (data[3] << 1) | (data[2] & 0x01);
534 ring1 = data[1];
fb013a01 535 } else if (features->type == DTK) {
c7f0522a 536 buttons = data[6];
fb013a01 537 } else if (features->type == WACOM_13HD) {
c7f0522a 538 buttons = (data[4] << 1) | (data[3] & 0x01);
fb013a01 539 } else if (features->type == WACOM_24HD) {
c7f0522a
JG
540 buttons = (data[8] << 8) | data[6];
541 ring1 = data[1];
542 ring2 = data[2];
fb013a01
JG
543
544 /*
545 * Three "buttons" are available on the 24HD which are
546 * physically implemented as a touchstrip. Each button
547 * is approximately 3 bits wide with a 2 bit spacing.
548 * The raw touchstrip bits are stored at:
549 * ((data[3] & 0x1f) << 8) | data[4])
550 */
c7f0522a
JG
551 nkeys = 3;
552 keys = ((data[3] & 0x1C) ? 1<<2 : 0) |
553 ((data[4] & 0xE0) ? 1<<1 : 0) |
554 ((data[4] & 0x07) ? 1<<0 : 0);
670e9092
AAS
555 keyboard = !!(data[4] & 0xE0);
556 info = !!(data[3] & 0x1C);
557
558 if (features->oPid) {
559 mute_touch = !!(data[4] & 0x07);
560 if (mute_touch)
561 wacom->shared->is_touch_on =
562 !wacom->shared->is_touch_on;
563 } else {
564 wrench = !!(data[4] & 0x07);
565 }
fb013a01 566 } else if (features->type == WACOM_27QHD) {
c7f0522a
JG
567 nkeys = 3;
568 keys = data[2] & 0x07;
fb013a01 569
670e9092
AAS
570 wrench = !!(data[2] & 0x01);
571 keyboard = !!(data[2] & 0x02);
572
573 if (features->oPid) {
574 mute_touch = !!(data[2] & 0x04);
575 if (mute_touch)
576 wacom->shared->is_touch_on =
577 !wacom->shared->is_touch_on;
578 } else {
579 menu = !!(data[2] & 0x04);
580 }
fb013a01
JG
581 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[4]));
582 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[6]));
583 input_report_abs(input, ABS_Z, be16_to_cpup((__be16 *)&data[8]));
fb013a01
JG
584 } else if (features->type == CINTIQ_HYBRID) {
585 /*
586 * Do not send hardware buttons under Android. They
587 * are already sent to the system through GPIO (and
588 * have different meaning).
c7f0522a
JG
589 *
590 * d-pad right -> data[4] & 0x10
591 * d-pad up -> data[4] & 0x20
592 * d-pad left -> data[4] & 0x40
593 * d-pad down -> data[4] & 0x80
594 * d-pad center -> data[3] & 0x01
fb013a01 595 */
c7f0522a 596 buttons = (data[4] << 1) | (data[3] & 0x01);
fb013a01 597 } else if (features->type == CINTIQ_COMPANION_2) {
693c3dab
AAS
598 /* d-pad right -> data[2] & 0x10
599 * d-pad up -> data[2] & 0x20
600 * d-pad left -> data[2] & 0x40
601 * d-pad down -> data[2] & 0x80
602 * d-pad center -> data[1] & 0x01
c7f0522a 603 */
0402b6b7 604 buttons = ((data[2] >> 4) << 7) |
693c3dab 605 ((data[1] & 0x04) << 4) |
c7f0522a
JG
606 ((data[2] & 0x0F) << 2) |
607 (data[1] & 0x03);
fb013a01 608 } else if (features->type >= INTUOS5S && features->type <= INTUOSPL) {
fb013a01
JG
609 /*
610 * ExpressKeys on Intuos5/Intuos Pro have a capacitive sensor in
611 * addition to the mechanical switch. Switch data is
612 * stored in data[4], capacitive data in data[5].
c7f0522a
JG
613 *
614 * Touch ring mode switch (data[3]) has no capacitive sensor
fb013a01 615 */
c7f0522a
JG
616 buttons = (data[4] << 1) | (data[3] & 0x01);
617 ring1 = data[2];
fb013a01
JG
618 } else {
619 if (features->type == WACOM_21UX2 || features->type == WACOM_22HD) {
c7f0522a
JG
620 buttons = (data[8] << 10) | ((data[7] & 0x01) << 9) |
621 (data[6] << 1) | (data[5] & 0x01);
fb013a01
JG
622
623 if (features->type == WACOM_22HD) {
c7f0522a
JG
624 nkeys = 3;
625 keys = data[9] & 0x07;
670e9092
AAS
626
627 info = !!(data[9] & 0x01);
628 wrench = !!(data[9] & 0x02);
fb013a01
JG
629 }
630 } else {
ce06760b
PC
631 buttons = ((data[6] & 0x10) << 5) |
632 ((data[5] & 0x10) << 4) |
c7f0522a
JG
633 ((data[6] & 0x0F) << 4) |
634 (data[5] & 0x0F);
fb013a01 635 }
f73d08d0
JG
636 strip1 = ((data[1] & 0x1f) << 8) | data[2];
637 strip2 = ((data[3] & 0x1f) << 8) | data[4];
fb013a01 638 }
c7f0522a 639
073b50bc 640 prox = (buttons & ~(~0U << nbuttons)) | (keys & ~(~0U << nkeys)) |
8f9cfdd3 641 (ring1 & 0x80) | (ring2 & 0x80) | strip1 | strip2;
c7f0522a
JG
642
643 wacom_report_numbered_buttons(input, nbuttons, buttons);
644
645 for (i = 0; i < nkeys; i++)
646 input_report_key(input, KEY_PROG1 + i, keys & (1 << i));
647
670e9092
AAS
648 input_report_key(input, KEY_BUTTONCONFIG, wrench);
649 input_report_key(input, KEY_ONSCREEN_KEYBOARD, keyboard);
650 input_report_key(input, KEY_CONTROLPANEL, menu);
651 input_report_key(input, KEY_INFO, info);
652
653 if (wacom->shared && wacom->shared->touch_input) {
654 input_report_switch(wacom->shared->touch_input,
655 SW_MUTE_DEVICE,
656 !wacom->shared->is_touch_on);
657 input_sync(wacom->shared->touch_input);
658 }
659
c7f0522a 660 input_report_abs(input, ABS_RX, strip1);
03a0dc54 661 input_report_abs(input, ABS_RY, strip2);
c7f0522a 662
aaae03e4
JG
663 input_report_abs(input, ABS_WHEEL, (ring1 & 0x80) ? (ring1 & 0x7f) : 0);
664 input_report_abs(input, ABS_THROTTLE, (ring2 & 0x80) ? (ring2 & 0x7f) : 0);
c7f0522a
JG
665
666 input_report_key(input, wacom->tool[1], prox ? 1 : 0);
667 input_report_abs(input, ABS_MISC, prox ? PAD_DEVICE_ID : 0);
668
669 input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
670
fb013a01
JG
671 return 1;
672}
673
82527da3
JG
674static int wacom_intuos_id_mangle(int tool_id)
675{
676 return (tool_id & ~0xFFF) << 4 | (tool_id & 0xFFF);
677}
678
7ccced33
PC
679static bool wacom_is_art_pen(int tool_id)
680{
681 bool is_art_pen = false;
682
683 switch (tool_id) {
684 case 0x885: /* Intuos3 Marker Pen */
685 case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */
686 case 0x10804: /* Intuos4/5 13HD/24HD Art Pen */
687 is_art_pen = true;
688 break;
689 }
690 return is_art_pen;
691}
692
7e129783
BT
693static int wacom_intuos_get_tool_type(int tool_id)
694{
7ccced33
PC
695 int tool_type = BTN_TOOL_PEN;
696
697 if (wacom_is_art_pen(tool_id))
698 return tool_type;
7e129783
BT
699
700 switch (tool_id) {
701 case 0x812: /* Inking pen */
702 case 0x801: /* Intuos3 Inking pen */
82527da3 703 case 0x12802: /* Intuos4/5 Inking Pen */
7e129783
BT
704 case 0x012:
705 tool_type = BTN_TOOL_PENCIL;
706 break;
707
708 case 0x822: /* Pen */
709 case 0x842:
710 case 0x852:
711 case 0x823: /* Intuos3 Grip Pen */
712 case 0x813: /* Intuos3 Classic Pen */
7e129783 713 case 0x802: /* Intuos4/5 13HD/24HD General Pen */
7e129783
BT
714 case 0x8e2: /* IntuosHT2 pen */
715 case 0x022:
bfdc750c
PC
716 case 0x200: /* Pro Pen 3 */
717 case 0x04200: /* Pro Pen 3 */
4e6e7d72 718 case 0x10842: /* MobileStudio Pro Pro Pen slim */
82527da3
JG
719 case 0x14802: /* Intuos4/5 13HD/24HD Classic Pen */
720 case 0x16802: /* Cintiq 13HD Pro Pen */
721 case 0x18802: /* DTH2242 Pen */
722 case 0x10802: /* Intuos4/5 13HD/24HD General Pen */
bfdc750c 723 case 0x80842: /* Intuos Pro and Cintiq Pro 3D Pen */
7e129783
BT
724 tool_type = BTN_TOOL_PEN;
725 break;
726
727 case 0x832: /* Stroke pen */
728 case 0x032:
729 tool_type = BTN_TOOL_BRUSH;
730 break;
731
732 case 0x007: /* Mouse 4D and 2D */
733 case 0x09c:
734 case 0x094:
735 case 0x017: /* Intuos3 2D Mouse */
736 case 0x806: /* Intuos4 Mouse */
737 tool_type = BTN_TOOL_MOUSE;
738 break;
739
740 case 0x096: /* Lens cursor */
741 case 0x097: /* Intuos3 Lens cursor */
742 case 0x006: /* Intuos4 Lens cursor */
743 tool_type = BTN_TOOL_LENS;
744 break;
745
746 case 0x82a: /* Eraser */
9ce9a123 747 case 0x84a:
7e129783
BT
748 case 0x85a:
749 case 0x91a:
750 case 0xd1a:
751 case 0x0fa:
752 case 0x82b: /* Intuos3 Grip Pen Eraser */
753 case 0x81b: /* Intuos3 Classic Pen Eraser */
754 case 0x91b: /* Intuos3 Airbrush Eraser */
755 case 0x80c: /* Intuos4/5 13HD/24HD Marker Pen Eraser */
756 case 0x80a: /* Intuos4/5 13HD/24HD General Pen Eraser */
757 case 0x90a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
82527da3
JG
758 case 0x1480a: /* Intuos4/5 13HD/24HD Classic Pen Eraser */
759 case 0x1090a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
760 case 0x1080c: /* Intuos4/5 13HD/24HD Art Pen Eraser */
4e6e7d72 761 case 0x1084a: /* MobileStudio Pro Pro Pen slim Eraser */
82527da3
JG
762 case 0x1680a: /* Cintiq 13HD Pro Pen Eraser */
763 case 0x1880a: /* DTH2242 Eraser */
764 case 0x1080a: /* Intuos4/5 13HD/24HD General Pen Eraser */
7e129783
BT
765 tool_type = BTN_TOOL_RUBBER;
766 break;
767
768 case 0xd12:
769 case 0x912:
770 case 0x112:
771 case 0x913: /* Intuos3 Airbrush */
772 case 0x902: /* Intuos4/5 13HD/24HD Airbrush */
82527da3 773 case 0x10902: /* Intuos4/5 13HD/24HD Airbrush */
7e129783
BT
774 tool_type = BTN_TOOL_AIRBRUSH;
775 break;
7e129783
BT
776 }
777 return tool_type;
778}
779
619d3a29
AAS
780static void wacom_exit_report(struct wacom_wac *wacom)
781{
782 struct input_dev *input = wacom->pen_input;
783 struct wacom_features *features = &wacom->features;
784 unsigned char *data = wacom->data;
785 int idx = (features->type == INTUOS) ? (data[1] & 0x01) : 0;
786
787 /*
788 * Reset all states otherwise we lose the initial states
789 * when in-prox next time
790 */
791 input_report_abs(input, ABS_X, 0);
792 input_report_abs(input, ABS_Y, 0);
793 input_report_abs(input, ABS_DISTANCE, 0);
794 input_report_abs(input, ABS_TILT_X, 0);
795 input_report_abs(input, ABS_TILT_Y, 0);
796 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
797 input_report_key(input, BTN_LEFT, 0);
798 input_report_key(input, BTN_MIDDLE, 0);
799 input_report_key(input, BTN_RIGHT, 0);
800 input_report_key(input, BTN_SIDE, 0);
801 input_report_key(input, BTN_EXTRA, 0);
802 input_report_abs(input, ABS_THROTTLE, 0);
803 input_report_abs(input, ABS_RZ, 0);
804 } else {
805 input_report_abs(input, ABS_PRESSURE, 0);
806 input_report_key(input, BTN_STYLUS, 0);
807 input_report_key(input, BTN_STYLUS2, 0);
808 input_report_key(input, BTN_TOUCH, 0);
809 input_report_abs(input, ABS_WHEEL, 0);
810 if (features->type >= INTUOS3S)
811 input_report_abs(input, ABS_Z, 0);
812 }
813 input_report_key(input, wacom->tool[idx], 0);
814 input_report_abs(input, ABS_MISC, 0); /* reset tool id */
815 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
816 wacom->id[idx] = 0;
817}
818
95dd3b30 819static int wacom_intuos_inout(struct wacom_wac *wacom)
3bea733a 820{
e33da8a5 821 struct wacom_features *features = &wacom->features;
3bea733a 822 unsigned char *data = wacom->data;
2a6cdbdd 823 struct input_dev *input = wacom->pen_input;
4750f5fe 824 int idx = (features->type == INTUOS) ? (data[1] & 0x01) : 0;
3bea733a 825
4750f5fe
PC
826 if (!(((data[1] & 0xfc) == 0xc0) || /* in prox */
827 ((data[1] & 0xfe) == 0x20) || /* in range */
828 ((data[1] & 0xfe) == 0x80))) /* out prox */
829 return 0;
3bea733a
PC
830
831 /* Enter report */
832 if ((data[1] & 0xfc) == 0xc0) {
833 /* serial number of the tool */
834 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
835 (data[4] << 20) + (data[5] << 12) +
836 (data[6] << 4) + (data[7] >> 4);
837
493630b2 838 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
82527da3 839 ((data[7] & 0x0f) << 16) | ((data[8] & 0xf0) << 8);
73a97f4f 840
7e129783
BT
841 wacom->tool[idx] = wacom_intuos_get_tool_type(wacom->id[idx]);
842
eff6ca97 843 wacom->shared->stylus_in_proximity = true;
3bea733a
PC
844 return 1;
845 }
846
c1b03f55
PC
847 /* in Range */
848 if ((data[1] & 0xfe) == 0x20) {
526d6e7b
PC
849 if (features->type != INTUOSHT2)
850 wacom->shared->stylus_in_proximity = true;
486b908d 851
c1b03f55
PC
852 /* in Range while exiting */
853 if (wacom->reporting_data) {
854 input_report_key(input, BTN_TOUCH, 0);
855 input_report_abs(input, ABS_PRESSURE, 0);
856 input_report_abs(input, ABS_DISTANCE, wacom->features.distance_max);
857 return 2;
858 }
859 return 1;
4eb1830b
JG
860 }
861
3bea733a
PC
862 /* Exit report */
863 if ((data[1] & 0xfe) == 0x80) {
f3586d2f 864 wacom->shared->stylus_in_proximity = false;
b3bd7ef3 865 wacom->reporting_data = false;
ae584ca4 866
373a5356
PC
867 /* don't report exit if we don't know the ID */
868 if (!wacom->id[idx])
869 return 1;
870
619d3a29 871 wacom_exit_report(wacom);
80d4e8e9 872 return 2;
3bea733a 873 }
373a5356 874
3bea733a
PC
875 return 0;
876}
877
9d339fe4
JG
878static inline bool touch_is_muted(struct wacom_wac *wacom_wac)
879{
880 return wacom_wac->probe_complete &&
881 wacom_wac->shared->has_mute_touch_switch &&
882 !wacom_wac->shared->is_touch_on;
883}
884
1924e05e
PC
885static inline bool report_touch_events(struct wacom_wac *wacom)
886{
887 return (touch_arbitration ? !wacom->shared->stylus_in_proximity : 1);
888}
72b236d6 889
1924e05e
PC
890static inline bool delay_pen_events(struct wacom_wac *wacom)
891{
892 return (wacom->shared->touch_down && touch_arbitration);
72b236d6
AS
893}
894
16e0a6a0 895static int wacom_intuos_general(struct wacom_wac *wacom)
3bea733a 896{
e33da8a5 897 struct wacom_features *features = &wacom->features;
3bea733a 898 unsigned char *data = wacom->data;
2a6cdbdd 899 struct input_dev *input = wacom->pen_input;
16e0a6a0 900 int idx = (features->type == INTUOS) ? (data[1] & 0x01) : 0;
a8a09c85 901 unsigned char type = (data[1] >> 1) & 0x0F;
5f33f430 902 unsigned int x, y, distance, t;
3bea733a 903
16e0a6a0
JG
904 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_CINTIQ &&
905 data[0] != WACOM_REPORT_INTUOS_PEN)
906 return 0;
907
1924e05e 908 if (delay_pen_events(wacom))
c1b03f55
PC
909 return 1;
910
599b0820
PC
911 /* don't report events if we don't know the tool ID */
912 if (!wacom->id[idx]) {
913 /* but reschedule a read of the current tool */
914 wacom_intuos_schedule_prox_event(wacom);
915 return 1;
916 }
917
4750f5fe
PC
918 /*
919 * don't report events for invalid data
920 */
921 /* older I4 styli don't work with new Cintiqs */
82527da3 922 if ((!((wacom->id[idx] >> 16) & 0x01) &&
4750f5fe
PC
923 (features->type == WACOM_21UX2)) ||
924 /* Only large Intuos support Lense Cursor */
925 (wacom->tool[idx] == BTN_TOOL_LENS &&
926 (features->type == INTUOS3 ||
927 features->type == INTUOS3S ||
928 features->type == INTUOS4 ||
929 features->type == INTUOS4S ||
930 features->type == INTUOS5 ||
931 features->type == INTUOS5S ||
932 features->type == INTUOSPM ||
933 features->type == INTUOSPS)) ||
934 /* Cintiq doesn't send data when RDY bit isn't set */
935 (features->type == CINTIQ && !(data[1] & 0x40)))
936 return 1;
937
5f33f430
JG
938 x = (be16_to_cpup((__be16 *)&data[2]) << 1) | ((data[9] >> 1) & 1);
939 y = (be16_to_cpup((__be16 *)&data[4]) << 1) | (data[9] & 1);
940 distance = data[9] >> 2;
941 if (features->type < INTUOS3S) {
942 x >>= 1;
943 y >>= 1;
944 distance >>= 1;
16e0a6a0 945 }
b72fb1dc
JG
946 if (features->type == INTUOSHT2)
947 distance = features->distance_max - distance;
5f33f430
JG
948 input_report_abs(input, ABS_X, x);
949 input_report_abs(input, ABS_Y, y);
950 input_report_abs(input, ABS_DISTANCE, distance);
16e0a6a0 951
a8a09c85
JG
952 switch (type) {
953 case 0x00:
954 case 0x01:
955 case 0x02:
956 case 0x03:
957 /* general pen packet */
5f33f430
JG
958 t = (data[6] << 3) | ((data[7] & 0xC0) >> 5) | (data[1] & 1);
959 if (features->pressure_max < 2047)
960 t >>= 1;
8da23fc1 961 input_report_abs(input, ABS_PRESSURE, t);
eda01dab
PC
962 if (features->type != INTUOSHT2) {
963 input_report_abs(input, ABS_TILT_X,
ec5fc1c1 964 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
eda01dab
PC
965 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
966 }
8da23fc1
DT
967 input_report_key(input, BTN_STYLUS, data[1] & 2);
968 input_report_key(input, BTN_STYLUS2, data[1] & 4);
969 input_report_key(input, BTN_TOUCH, t > 10);
a8a09c85 970 break;
3bea733a 971
a8a09c85 972 case 0x0a:
a8a09c85 973 /* airbrush second packet */
8da23fc1 974 input_report_abs(input, ABS_WHEEL,
3bea733a 975 (data[6] << 2) | ((data[7] >> 6) & 3));
8da23fc1 976 input_report_abs(input, ABS_TILT_X,
ec5fc1c1
JG
977 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
978 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
a8a09c85 979 break;
3bea733a 980
a8a09c85 981 case 0x05:
a8a09c85
JG
982 /* Rotation packet */
983 if (features->type >= INTUOS3S) {
984 /* I3 marker pen rotation */
985 t = (data[6] << 3) | ((data[7] >> 5) & 7);
986 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
987 ((t-1) / 2 + 450)) : (450 - t / 2) ;
988 input_report_abs(input, ABS_Z, t);
989 } else {
571f572f 990 /* 4D mouse 2nd packet */
a8a09c85
JG
991 t = (data[6] << 3) | ((data[7] >> 5) & 7);
992 input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
993 ((t - 1) / 2) : -t / 2);
994 }
995 break;
3bea733a 996
a8a09c85 997 case 0x04:
571f572f
JG
998 /* 4D mouse 1st packet */
999 input_report_key(input, BTN_LEFT, data[8] & 0x01);
1000 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
1001 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
1002
1003 input_report_key(input, BTN_SIDE, data[8] & 0x20);
1004 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
1005 t = (data[6] << 2) | ((data[7] >> 6) & 3);
1006 input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
1007 break;
1008
a8a09c85 1009 case 0x06:
571f572f
JG
1010 /* I4 mouse */
1011 input_report_key(input, BTN_LEFT, data[6] & 0x01);
1012 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
1013 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
1014 input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
1015 - ((data[7] & 0x40) >> 6));
1016 input_report_key(input, BTN_SIDE, data[6] & 0x08);
1017 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
3bea733a 1018
571f572f
JG
1019 input_report_abs(input, ABS_TILT_X,
1020 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
1021 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
1022 break;
1023
1024 case 0x08:
1025 if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
1026 /* 2D mouse packet */
1027 input_report_key(input, BTN_LEFT, data[8] & 0x04);
1028 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
1029 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
1030 input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
1031 - ((data[8] & 0x02) >> 1));
1032
1033 /* I3 2D mouse side buttons */
1034 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
1035 input_report_key(input, BTN_SIDE, data[8] & 0x40);
1036 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
3bea733a 1037 }
a8a09c85 1038 }
571f572f 1039 else if (wacom->tool[idx] == BTN_TOOL_LENS) {
3bea733a 1040 /* Lens cursor packets */
8da23fc1
DT
1041 input_report_key(input, BTN_LEFT, data[8] & 0x01);
1042 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
1043 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
1044 input_report_key(input, BTN_SIDE, data[8] & 0x10);
1045 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
3bea733a 1046 }
a8a09c85
JG
1047 break;
1048
571f572f 1049 case 0x07:
a8a09c85 1050 case 0x09:
571f572f 1051 case 0x0b:
a8a09c85
JG
1052 case 0x0c:
1053 case 0x0d:
1054 case 0x0e:
1055 case 0x0f:
1056 /* unhandled */
1057 break;
3bea733a 1058 }
3bea733a 1059
82527da3
JG
1060 input_report_abs(input, ABS_MISC,
1061 wacom_intuos_id_mangle(wacom->id[idx])); /* report tool id */
8da23fc1
DT
1062 input_report_key(input, wacom->tool[idx], 1);
1063 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
b3bd7ef3 1064 wacom->reporting_data = true;
16e0a6a0 1065 return 2;
3bea733a
PC
1066}
1067
95dd3b30 1068static int wacom_intuos_irq(struct wacom_wac *wacom)
3bea733a
PC
1069{
1070 unsigned char *data = wacom->data;
2a6cdbdd 1071 struct input_dev *input = wacom->pen_input;
16e0a6a0 1072 int result;
3bea733a 1073
eb71d1bb 1074 if (data[0] != WACOM_REPORT_PENABLED &&
06109993
JG
1075 data[0] != WACOM_REPORT_INTUOS_ID1 &&
1076 data[0] != WACOM_REPORT_INTUOS_ID2 &&
eb71d1bb 1077 data[0] != WACOM_REPORT_INTUOSPAD &&
eda01dab 1078 data[0] != WACOM_REPORT_INTUOS_PEN &&
500d4160
PC
1079 data[0] != WACOM_REPORT_CINTIQ &&
1080 data[0] != WACOM_REPORT_CINTIQPAD &&
eb71d1bb
DT
1081 data[0] != WACOM_REPORT_INTUOS5PAD) {
1082 dev_dbg(input->dev.parent,
1083 "%s: received unknown report #%d\n", __func__, data[0]);
3bea733a
PC
1084 return 0;
1085 }
1086
16e0a6a0
JG
1087 /* process pad events */
1088 result = wacom_intuos_pad(wacom);
1089 if (result)
1090 return result;
3bea733a
PC
1091
1092 /* process in/out prox events */
95dd3b30 1093 result = wacom_intuos_inout(wacom);
3bea733a 1094 if (result)
16e0a6a0 1095 return result - 1;
3bea733a
PC
1096
1097 /* process general packets */
16e0a6a0
JG
1098 result = wacom_intuos_general(wacom);
1099 if (result)
1100 return result - 1;
3bea733a 1101
16e0a6a0 1102 return 0;
3bea733a
PC
1103}
1104
149f6f6b
JG
1105static int wacom_remote_irq(struct wacom_wac *wacom_wac, size_t len)
1106{
1107 unsigned char *data = wacom_wac->data;
1108 struct input_dev *input;
1109 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
1110 struct wacom_remote *remote = wacom->remote;
1111 int bat_charging, bat_percent, touch_ring_mode;
1112 __u32 serial;
1113 int i, index = -1;
1114 unsigned long flags;
1115
1116 if (data[0] != WACOM_REPORT_REMOTE) {
1117 hid_dbg(wacom->hdev, "%s: received unknown report #%d",
1118 __func__, data[0]);
1119 return 0;
1120 }
1121
1122 serial = data[3] + (data[4] << 8) + (data[5] << 16);
1123 wacom_wac->id[0] = PAD_DEVICE_ID;
1124
1125 spin_lock_irqsave(&remote->remote_lock, flags);
1126
1127 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1128 if (remote->remotes[i].serial == serial) {
1129 index = i;
1130 break;
1131 }
1132 }
1133
1134 if (index < 0 || !remote->remotes[index].registered)
1135 goto out;
1136
1137 input = remote->remotes[index].input;
1138
1139 input_report_key(input, BTN_0, (data[9] & 0x01));
1140 input_report_key(input, BTN_1, (data[9] & 0x02));
1141 input_report_key(input, BTN_2, (data[9] & 0x04));
1142 input_report_key(input, BTN_3, (data[9] & 0x08));
1143 input_report_key(input, BTN_4, (data[9] & 0x10));
1144 input_report_key(input, BTN_5, (data[9] & 0x20));
1145 input_report_key(input, BTN_6, (data[9] & 0x40));
1146 input_report_key(input, BTN_7, (data[9] & 0x80));
1147
1148 input_report_key(input, BTN_8, (data[10] & 0x01));
1149 input_report_key(input, BTN_9, (data[10] & 0x02));
1150 input_report_key(input, BTN_A, (data[10] & 0x04));
1151 input_report_key(input, BTN_B, (data[10] & 0x08));
1152 input_report_key(input, BTN_C, (data[10] & 0x10));
1153 input_report_key(input, BTN_X, (data[10] & 0x20));
1154 input_report_key(input, BTN_Y, (data[10] & 0x40));
1155 input_report_key(input, BTN_Z, (data[10] & 0x80));
1156
1157 input_report_key(input, BTN_BASE, (data[11] & 0x01));
1158 input_report_key(input, BTN_BASE2, (data[11] & 0x02));
1159
1160 if (data[12] & 0x80)
fcf887e7 1161 input_report_abs(input, ABS_WHEEL, (data[12] & 0x7f) - 1);
149f6f6b
JG
1162 else
1163 input_report_abs(input, ABS_WHEEL, 0);
1164
1165 bat_percent = data[7] & 0x7f;
1166 bat_charging = !!(data[7] & 0x80);
1167
1168 if (data[9] | data[10] | (data[11] & 0x03) | data[12])
1169 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
1170 else
1171 input_report_abs(input, ABS_MISC, 0);
1172
1173 input_event(input, EV_MSC, MSC_SERIAL, serial);
1174
1175 input_sync(input);
1176
1177 /*Which mode select (LED light) is currently on?*/
1178 touch_ring_mode = (data[11] & 0xC0) >> 6;
1179
1180 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1181 if (remote->remotes[i].serial == serial)
1182 wacom->led.groups[i].select = touch_ring_mode;
1183 }
1184
16e45989
JG
1185 __wacom_notify_battery(&remote->remotes[index].battery,
1186 WACOM_POWER_SUPPLY_STATUS_AUTO, bat_percent,
149f6f6b
JG
1187 bat_charging, 1, bat_charging);
1188
1189out:
1190 spin_unlock_irqrestore(&remote->remote_lock, flags);
1191 return 0;
1192}
1193
1194static void wacom_remote_status_irq(struct wacom_wac *wacom_wac, size_t len)
1195{
1196 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
1197 unsigned char *data = wacom_wac->data;
1198 struct wacom_remote *remote = wacom->remote;
1199 struct wacom_remote_data remote_data;
1200 unsigned long flags;
1201 int i, ret;
1202
1203 if (data[0] != WACOM_REPORT_DEVICE_LIST)
1204 return;
1205
1206 memset(&remote_data, 0, sizeof(struct wacom_remote_data));
1207
1208 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1209 int j = i * 6;
1210 int serial = (data[j+6] << 16) + (data[j+5] << 8) + data[j+4];
1211 bool connected = data[j+2];
1212
1213 remote_data.remote[i].serial = serial;
1214 remote_data.remote[i].connected = connected;
1215 }
1216
1217 spin_lock_irqsave(&remote->remote_lock, flags);
1218
1219 ret = kfifo_in(&remote->remote_fifo, &remote_data, sizeof(remote_data));
1220 if (ret != sizeof(remote_data)) {
1221 spin_unlock_irqrestore(&remote->remote_lock, flags);
1222 hid_err(wacom->hdev, "Can't queue Remote status event.\n");
1223 return;
1224 }
1225
1226 spin_unlock_irqrestore(&remote->remote_lock, flags);
1227
1228 wacom_schedule_work(wacom_wac, WACOM_WORKER_REMOTE);
1229}
1230
b1e4279e
JG
1231static int int_dist(int x1, int y1, int x2, int y2)
1232{
1233 int x = x2 - x1;
1234 int y = y2 - y1;
1235
1236 return int_sqrt(x*x + y*y);
1237}
1238
81af7e61
BT
1239static void wacom_intuos_bt_process_data(struct wacom_wac *wacom,
1240 unsigned char *data)
1241{
1242 memcpy(wacom->data, data, 10);
1243 wacom_intuos_irq(wacom);
1244
2a6cdbdd 1245 input_sync(wacom->pen_input);
81af7e61
BT
1246 if (wacom->pad_input)
1247 input_sync(wacom->pad_input);
1248}
1249
1250static int wacom_intuos_bt_irq(struct wacom_wac *wacom, size_t len)
1251{
1252 unsigned char data[WACOM_PKGLEN_MAX];
1253 int i = 1;
1254 unsigned power_raw, battery_capacity, bat_charging, ps_connected;
1255
1256 memcpy(data, wacom->data, len);
1257
1258 switch (data[0]) {
1259 case 0x04:
1260 wacom_intuos_bt_process_data(wacom, data + i);
1261 i += 10;
df561f66 1262 fallthrough;
81af7e61
BT
1263 case 0x03:
1264 wacom_intuos_bt_process_data(wacom, data + i);
1265 i += 10;
1266 wacom_intuos_bt_process_data(wacom, data + i);
1267 i += 10;
1268 power_raw = data[i];
1269 bat_charging = (power_raw & 0x08) ? 1 : 0;
1270 ps_connected = (power_raw & 0x10) ? 1 : 0;
1271 battery_capacity = batcap_i4[power_raw & 0x07];
16e45989
JG
1272 wacom_notify_battery(wacom, WACOM_POWER_SUPPLY_STATUS_AUTO,
1273 battery_capacity, bat_charging,
71fa641e 1274 battery_capacity || bat_charging,
953f2c5f 1275 ps_connected);
81af7e61
BT
1276 break;
1277 default:
2a6cdbdd 1278 dev_dbg(wacom->pen_input->dev.parent,
81af7e61
BT
1279 "Unknown report: %d,%d size:%zu\n",
1280 data[0], data[1], len);
1281 return 0;
1282 }
1283 return 0;
1284}
1285
7d059ed0
PC
1286static int wacom_wac_finger_count_touches(struct wacom_wac *wacom)
1287{
2a6cdbdd 1288 struct input_dev *input = wacom->touch_input;
7d059ed0
PC
1289 unsigned touch_max = wacom->features.touch_max;
1290 int count = 0;
1291 int i;
1292
26ba61f8
PC
1293 if (!touch_max)
1294 return 0;
1295
71b5c476
JG
1296 if (touch_max == 1)
1297 return test_bit(BTN_TOUCH, input->key) &&
1924e05e 1298 report_touch_events(wacom);
7d059ed0
PC
1299
1300 for (i = 0; i < input->mt->num_slots; i++) {
1301 struct input_mt_slot *ps = &input->mt->slots[i];
1302 int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
1303 if (id >= 0)
1304 count++;
1305 }
1306
1307 return count;
1308}
1309
4922cd26
JG
1310static void wacom_intuos_pro2_bt_pen(struct wacom_wac *wacom)
1311{
87046b6c 1312 int pen_frame_len, pen_frames;
4922cd26
JG
1313
1314 struct input_dev *pen_input = wacom->pen_input;
1315 unsigned char *data = wacom->data;
17d793f3
PC
1316 int number_of_valid_frames = 0;
1317 int time_interval = 15000000;
1318 ktime_t time_packet_received = ktime_get();
4922cd26
JG
1319 int i;
1320
912c6aa6
AAS
1321 if (wacom->features.type == INTUOSP2_BT ||
1322 wacom->features.type == INTUOSP2S_BT) {
87046b6c
AAS
1323 wacom->serial[0] = get_unaligned_le64(&data[99]);
1324 wacom->id[0] = get_unaligned_le16(&data[107]);
1325 pen_frame_len = 14;
1326 pen_frames = 7;
1327 } else {
1328 wacom->serial[0] = get_unaligned_le64(&data[33]);
1329 wacom->id[0] = get_unaligned_le16(&data[41]);
1330 pen_frame_len = 8;
1331 pen_frames = 4;
1332 }
1333
4922cd26
JG
1334 if (wacom->serial[0] >> 52 == 1) {
1335 /* Add back in missing bits of ID for non-USI pens */
1336 wacom->id[0] |= (wacom->serial[0] >> 32) & 0xFFFFF;
1337 }
4922cd26 1338
17d793f3 1339 /* number of valid frames */
4922cd26
JG
1340 for (i = 0; i < pen_frames; i++) {
1341 unsigned char *frame = &data[i*pen_frame_len + 1];
a48324de 1342 bool valid = frame[0] & 0x80;
17d793f3
PC
1343
1344 if (valid)
1345 number_of_valid_frames++;
1346 }
1347
1348 if (number_of_valid_frames) {
1349 if (wacom->hid_data.time_delayed)
1350 time_interval = ktime_get() - wacom->hid_data.time_delayed;
1351 time_interval /= number_of_valid_frames;
1352 wacom->hid_data.time_delayed = time_packet_received;
1353 }
1354
1355 for (i = 0; i < number_of_valid_frames; i++) {
1356 unsigned char *frame = &data[i*pen_frame_len + 1];
1357 bool valid = frame[0] & 0x80;
a48324de
JG
1358 bool prox = frame[0] & 0x40;
1359 bool range = frame[0] & 0x20;
2cc08800 1360 bool invert = frame[0] & 0x10;
17d793f3
PC
1361 int frames_number_reversed = number_of_valid_frames - i - 1;
1362 int event_timestamp = time_packet_received - frames_number_reversed * time_interval;
4922cd26 1363
a48324de 1364 if (!valid)
4922cd26
JG
1365 continue;
1366
619d3a29
AAS
1367 if (!prox) {
1368 wacom->shared->stylus_in_proximity = false;
1369 wacom_exit_report(wacom);
1370 input_sync(pen_input);
2cc08800
JG
1371
1372 wacom->tool[0] = 0;
1373 wacom->id[0] = 0;
1374 wacom->serial[0] = 0;
17d793f3 1375 wacom->hid_data.time_delayed = 0;
619d3a29
AAS
1376 return;
1377 }
2cc08800 1378
a48324de 1379 if (range) {
2cc08800
JG
1380 if (!wacom->tool[0]) { /* first in range */
1381 /* Going into range select tool */
1382 if (invert)
1383 wacom->tool[0] = BTN_TOOL_RUBBER;
1384 else if (wacom->id[0])
1385 wacom->tool[0] = wacom_intuos_get_tool_type(wacom->id[0]);
1386 else
1387 wacom->tool[0] = BTN_TOOL_PEN;
1388 }
1389
a48324de
JG
1390 input_report_abs(pen_input, ABS_X, get_unaligned_le16(&frame[1]));
1391 input_report_abs(pen_input, ABS_Y, get_unaligned_le16(&frame[3]));
87046b6c 1392
912c6aa6
AAS
1393 if (wacom->features.type == INTUOSP2_BT ||
1394 wacom->features.type == INTUOSP2S_BT) {
87046b6c
AAS
1395 /* Fix rotation alignment: userspace expects zero at left */
1396 int16_t rotation =
1397 (int16_t)get_unaligned_le16(&frame[9]);
1398 rotation += 1800/4;
1399
1400 if (rotation > 899)
1401 rotation -= 1800;
1402
1403 input_report_abs(pen_input, ABS_TILT_X,
1404 (char)frame[7]);
1405 input_report_abs(pen_input, ABS_TILT_Y,
1406 (char)frame[8]);
1407 input_report_abs(pen_input, ABS_Z, rotation);
1408 input_report_abs(pen_input, ABS_WHEEL,
1409 get_unaligned_le16(&frame[11]));
1410 }
a48324de 1411 }
17d793f3 1412
e92a7be7
JG
1413 if (wacom->tool[0]) {
1414 input_report_abs(pen_input, ABS_PRESSURE, get_unaligned_le16(&frame[5]));
7cdf6e40
AAS
1415 if (wacom->features.type == INTUOSP2_BT ||
1416 wacom->features.type == INTUOSP2S_BT) {
e92a7be7
JG
1417 input_report_abs(pen_input, ABS_DISTANCE,
1418 range ? frame[13] : wacom->features.distance_max);
1419 } else {
1420 input_report_abs(pen_input, ABS_DISTANCE,
1421 range ? frame[7] : wacom->features.distance_max);
1422 }
1423
fe7f8d73 1424 input_report_key(pen_input, BTN_TOUCH, frame[0] & 0x09);
e92a7be7
JG
1425 input_report_key(pen_input, BTN_STYLUS, frame[0] & 0x02);
1426 input_report_key(pen_input, BTN_STYLUS2, frame[0] & 0x04);
4922cd26 1427
e92a7be7
JG
1428 input_report_key(pen_input, wacom->tool[0], prox);
1429 input_event(pen_input, EV_MSC, MSC_SERIAL, wacom->serial[0]);
1430 input_report_abs(pen_input, ABS_MISC,
1431 wacom_intuos_id_mangle(wacom->id[0])); /* report tool id */
1432 }
4922cd26 1433
a48324de 1434 wacom->shared->stylus_in_proximity = prox;
4922cd26 1435
17d793f3
PC
1436 /* add timestamp to unpack the frames */
1437 input_set_timestamp(pen_input, event_timestamp);
1438
4922cd26
JG
1439 input_sync(pen_input);
1440 }
1441}
1442
1443static void wacom_intuos_pro2_bt_touch(struct wacom_wac *wacom)
1444{
1445 const int finger_touch_len = 8;
1446 const int finger_frames = 4;
1447 const int finger_frame_len = 43;
1448
1449 struct input_dev *touch_input = wacom->touch_input;
1450 unsigned char *data = wacom->data;
1451 int num_contacts_left = 5;
1452 int i, j;
1453
1454 for (i = 0; i < finger_frames; i++) {
1455 unsigned char *frame = &data[i*finger_frame_len + 109];
1456 int current_num_contacts = frame[0] & 0x7F;
1457 int contacts_to_send;
1458
1459 if (!(frame[0] & 0x80))
1460 continue;
1461
1462 /*
1463 * First packet resets the counter since only the first
1464 * packet in series will have non-zero current_num_contacts.
1465 */
1466 if (current_num_contacts)
1467 wacom->num_contacts_left = current_num_contacts;
1468
1469 contacts_to_send = min(num_contacts_left, wacom->num_contacts_left);
1470
1471 for (j = 0; j < contacts_to_send; j++) {
1472 unsigned char *touch = &frame[j*finger_touch_len + 1];
1473 int slot = input_mt_get_slot_by_key(touch_input, touch[0]);
1474 int x = get_unaligned_le16(&touch[2]);
1475 int y = get_unaligned_le16(&touch[4]);
1476 int w = touch[6] * input_abs_get_res(touch_input, ABS_MT_POSITION_X);
1477 int h = touch[7] * input_abs_get_res(touch_input, ABS_MT_POSITION_Y);
1478
1479 if (slot < 0)
1480 continue;
1481
1482 input_mt_slot(touch_input, slot);
1483 input_mt_report_slot_state(touch_input, MT_TOOL_FINGER, touch[1] & 0x01);
1484 input_report_abs(touch_input, ABS_MT_POSITION_X, x);
1485 input_report_abs(touch_input, ABS_MT_POSITION_Y, y);
1486 input_report_abs(touch_input, ABS_MT_TOUCH_MAJOR, max(w, h));
1487 input_report_abs(touch_input, ABS_MT_TOUCH_MINOR, min(w, h));
1488 input_report_abs(touch_input, ABS_MT_ORIENTATION, w > h);
1489 }
1490
1491 input_mt_sync_frame(touch_input);
1492
1493 wacom->num_contacts_left -= contacts_to_send;
1494 if (wacom->num_contacts_left <= 0) {
1495 wacom->num_contacts_left = 0;
1496 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
69dbdfff 1497 input_sync(touch_input);
4922cd26
JG
1498 }
1499 }
1500
69dbdfff
JG
1501 if (wacom->num_contacts_left == 0) {
1502 // Be careful that we don't accidentally call input_sync with
1503 // only a partial set of fingers of processed
1504 input_report_switch(touch_input, SW_MUTE_DEVICE, !(data[281] >> 7));
1505 input_sync(touch_input);
1506 }
1507
4922cd26
JG
1508}
1509
1510static void wacom_intuos_pro2_bt_pad(struct wacom_wac *wacom)
1511{
1512 struct input_dev *pad_input = wacom->pad_input;
1513 unsigned char *data = wacom->data;
dcce8ef8 1514 int nbuttons = wacom->features.numbered_buttons;
4922cd26 1515
dcce8ef8
JG
1516 int expresskeys = data[282];
1517 int center = (data[281] & 0x40) >> 6;
d252f4a1
JG
1518 int ring = data[285] & 0x7F;
1519 bool ringstatus = data[285] & 0x80;
dcce8ef8 1520 bool prox = expresskeys || center || ringstatus;
d252f4a1
JG
1521
1522 /* Fix touchring data: userspace expects 0 at left and increasing clockwise */
1523 ring = 71 - ring;
1524 ring += 3*72/16;
1525 if (ring > 71)
1526 ring -= 72;
4922cd26 1527
dcce8ef8
JG
1528 wacom_report_numbered_buttons(pad_input, nbuttons,
1529 expresskeys | (center << (nbuttons - 1)));
4922cd26 1530
d252f4a1 1531 input_report_abs(pad_input, ABS_WHEEL, ringstatus ? ring : 0);
4922cd26
JG
1532
1533 input_report_key(pad_input, wacom->tool[1], prox ? 1 : 0);
1534 input_report_abs(pad_input, ABS_MISC, prox ? PAD_DEVICE_ID : 0);
1535 input_event(pad_input, EV_MSC, MSC_SERIAL, 0xffffffff);
1536
1537 input_sync(pad_input);
1538}
1539
1540static void wacom_intuos_pro2_bt_battery(struct wacom_wac *wacom)
1541{
1542 unsigned char *data = wacom->data;
1543
1544 bool chg = data[284] & 0x80;
1545 int battery_status = data[284] & 0x7F;
1546
16e45989
JG
1547 wacom_notify_battery(wacom, WACOM_POWER_SUPPLY_STATUS_AUTO,
1548 battery_status, chg, 1, chg);
4922cd26
JG
1549}
1550
87046b6c
AAS
1551static void wacom_intuos_gen3_bt_pad(struct wacom_wac *wacom)
1552{
1553 struct input_dev *pad_input = wacom->pad_input;
1554 unsigned char *data = wacom->data;
1555
1556 int buttons = data[44];
1557
1558 wacom_report_numbered_buttons(pad_input, 4, buttons);
1559
1560 input_report_key(pad_input, wacom->tool[1], buttons ? 1 : 0);
1561 input_report_abs(pad_input, ABS_MISC, buttons ? PAD_DEVICE_ID : 0);
1562 input_event(pad_input, EV_MSC, MSC_SERIAL, 0xffffffff);
1563
1564 input_sync(pad_input);
1565}
1566
1567static void wacom_intuos_gen3_bt_battery(struct wacom_wac *wacom)
1568{
1569 unsigned char *data = wacom->data;
1570
1571 bool chg = data[45] & 0x80;
1572 int battery_status = data[45] & 0x7F;
1573
1574 wacom_notify_battery(wacom, WACOM_POWER_SUPPLY_STATUS_AUTO,
1575 battery_status, chg, 1, chg);
1576}
1577
4922cd26
JG
1578static int wacom_intuos_pro2_bt_irq(struct wacom_wac *wacom, size_t len)
1579{
1580 unsigned char *data = wacom->data;
1581
87046b6c 1582 if (data[0] != 0x80 && data[0] != 0x81) {
4922cd26
JG
1583 dev_dbg(wacom->pen_input->dev.parent,
1584 "%s: received unknown report #%d\n", __func__, data[0]);
1585 return 0;
1586 }
1587
1588 wacom_intuos_pro2_bt_pen(wacom);
912c6aa6
AAS
1589 if (wacom->features.type == INTUOSP2_BT ||
1590 wacom->features.type == INTUOSP2S_BT) {
87046b6c
AAS
1591 wacom_intuos_pro2_bt_touch(wacom);
1592 wacom_intuos_pro2_bt_pad(wacom);
1593 wacom_intuos_pro2_bt_battery(wacom);
1594 } else {
1595 wacom_intuos_gen3_bt_pad(wacom);
1596 wacom_intuos_gen3_bt_battery(wacom);
1597 }
4922cd26
JG
1598 return 0;
1599}
1600
b1e4279e
JG
1601static int wacom_24hdt_irq(struct wacom_wac *wacom)
1602{
2a6cdbdd 1603 struct input_dev *input = wacom->touch_input;
74b63417 1604 unsigned char *data = wacom->data;
b1e4279e 1605 int i;
e0d41fd4 1606 int current_num_contacts = data[61];
b1e4279e 1607 int contacts_to_send = 0;
500d4160
PC
1608 int num_contacts_left = 4; /* maximum contacts per packet */
1609 int byte_per_packet = WACOM_BYTES_PER_24HDT_PACKET;
1610 int y_offset = 2;
1611
9d339fe4
JG
1612 if (touch_is_muted(wacom) && !wacom->shared->touch_down)
1613 return 0;
670e9092 1614
500d4160
PC
1615 if (wacom->features.type == WACOM_27QHDT) {
1616 current_num_contacts = data[63];
1617 num_contacts_left = 10;
1618 byte_per_packet = WACOM_BYTES_PER_QHDTHID_PACKET;
1619 y_offset = 0;
500d4160 1620 }
b1e4279e
JG
1621
1622 /*
1623 * First packet resets the counter since only the first
1624 * packet in series will have non-zero current_num_contacts.
1625 */
7d059ed0 1626 if (current_num_contacts)
b1e4279e
JG
1627 wacom->num_contacts_left = current_num_contacts;
1628
500d4160 1629 contacts_to_send = min(num_contacts_left, wacom->num_contacts_left);
b1e4279e
JG
1630
1631 for (i = 0; i < contacts_to_send; i++) {
500d4160 1632 int offset = (byte_per_packet * i) + 1;
1924e05e 1633 bool touch = (data[offset] & 0x1) && report_touch_events(wacom);
02295e68 1634 int slot = input_mt_get_slot_by_key(input, data[offset + 1]);
b1e4279e
JG
1635
1636 if (slot < 0)
1637 continue;
1638 input_mt_slot(input, slot);
1639 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1640
1641 if (touch) {
edc8e20a 1642 int t_x = get_unaligned_le16(&data[offset + 2]);
500d4160 1643 int t_y = get_unaligned_le16(&data[offset + 4 + y_offset]);
b1e4279e
JG
1644
1645 input_report_abs(input, ABS_MT_POSITION_X, t_x);
1646 input_report_abs(input, ABS_MT_POSITION_Y, t_y);
500d4160
PC
1647
1648 if (wacom->features.type != WACOM_27QHDT) {
1649 int c_x = get_unaligned_le16(&data[offset + 4]);
1650 int c_y = get_unaligned_le16(&data[offset + 8]);
1651 int w = get_unaligned_le16(&data[offset + 10]);
1652 int h = get_unaligned_le16(&data[offset + 12]);
1653
1654 input_report_abs(input, ABS_MT_TOUCH_MAJOR, min(w,h));
1655 input_report_abs(input, ABS_MT_WIDTH_MAJOR,
1656 min(w, h) + int_dist(t_x, t_y, c_x, c_y));
1657 input_report_abs(input, ABS_MT_WIDTH_MINOR, min(w, h));
1658 input_report_abs(input, ABS_MT_ORIENTATION, w > h);
1659 }
b1e4279e 1660 }
b1e4279e 1661 }
9a1c0012 1662 input_mt_sync_frame(input);
b1e4279e
JG
1663
1664 wacom->num_contacts_left -= contacts_to_send;
e0d41fd4 1665 if (wacom->num_contacts_left <= 0) {
b1e4279e 1666 wacom->num_contacts_left = 0;
7d059ed0 1667 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
e0d41fd4 1668 }
b1e4279e
JG
1669 return 1;
1670}
1671
1963518b
PC
1672static int wacom_mt_touch(struct wacom_wac *wacom)
1673{
2a6cdbdd 1674 struct input_dev *input = wacom->touch_input;
74b63417 1675 unsigned char *data = wacom->data;
1963518b
PC
1676 int i;
1677 int current_num_contacts = data[2];
1678 int contacts_to_send = 0;
6afdc289
PC
1679 int x_offset = 0;
1680
1681 /* MTTPC does not support Height and Width */
d51ddb2b 1682 if (wacom->features.type == MTTPC || wacom->features.type == MTTPC_B)
6afdc289 1683 x_offset = -4;
1963518b
PC
1684
1685 /*
1686 * First packet resets the counter since only the first
1687 * packet in series will have non-zero current_num_contacts.
1688 */
7d059ed0 1689 if (current_num_contacts)
1963518b
PC
1690 wacom->num_contacts_left = current_num_contacts;
1691
1692 /* There are at most 5 contacts per packet */
1693 contacts_to_send = min(5, wacom->num_contacts_left);
1694
1695 for (i = 0; i < contacts_to_send; i++) {
6afdc289 1696 int offset = (WACOM_BYTES_PER_MT_PACKET + x_offset) * i + 3;
1924e05e 1697 bool touch = (data[offset] & 0x1) && report_touch_events(wacom);
edc8e20a 1698 int id = get_unaligned_le16(&data[offset + 1]);
02295e68 1699 int slot = input_mt_get_slot_by_key(input, id);
1963518b
PC
1700
1701 if (slot < 0)
1702 continue;
1703
1704 input_mt_slot(input, slot);
1705 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1706 if (touch) {
edc8e20a
JG
1707 int x = get_unaligned_le16(&data[offset + x_offset + 7]);
1708 int y = get_unaligned_le16(&data[offset + x_offset + 9]);
1963518b
PC
1709 input_report_abs(input, ABS_MT_POSITION_X, x);
1710 input_report_abs(input, ABS_MT_POSITION_Y, y);
1711 }
1963518b 1712 }
9a1c0012 1713 input_mt_sync_frame(input);
1963518b
PC
1714
1715 wacom->num_contacts_left -= contacts_to_send;
e0d41fd4 1716 if (wacom->num_contacts_left <= 0) {
1963518b 1717 wacom->num_contacts_left = 0;
7d059ed0 1718 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
e0d41fd4 1719 }
1963518b
PC
1720 return 1;
1721}
1722
84eb5aa6
PC
1723static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
1724{
2a6cdbdd 1725 struct input_dev *input = wacom->touch_input;
84eb5aa6 1726 unsigned char *data = wacom->data;
84eb5aa6
PC
1727 int i;
1728
1729 for (i = 0; i < 2; i++) {
1730 int p = data[1] & (1 << i);
1924e05e 1731 bool touch = p && report_touch_events(wacom);
84eb5aa6
PC
1732
1733 input_mt_slot(input, i);
1734 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1735 if (touch) {
1736 int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
1737 int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
1738
1739 input_report_abs(input, ABS_MT_POSITION_X, x);
1740 input_report_abs(input, ABS_MT_POSITION_Y, y);
84eb5aa6
PC
1741 }
1742 }
9a1c0012 1743 input_mt_sync_frame(input);
84eb5aa6
PC
1744
1745 /* keep touch state for pen event */
7d059ed0 1746 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
84eb5aa6 1747
84eb5aa6
PC
1748 return 1;
1749}
1750
a43c7c53 1751static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
ec67bbed 1752{
74b63417 1753 unsigned char *data = wacom->data;
2a6cdbdd 1754 struct input_dev *input = wacom->touch_input;
1924e05e 1755 bool prox = report_touch_events(wacom);
a43c7c53 1756 int x = 0, y = 0;
ec67bbed 1757
1963518b
PC
1758 if (wacom->features.touch_max > 1 || len > WACOM_PKGLEN_TPC2FG)
1759 return 0;
1760
e0d41fd4
PC
1761 if (len == WACOM_PKGLEN_TPC1FG) {
1762 prox = prox && (data[0] & 0x01);
1763 x = get_unaligned_le16(&data[1]);
1764 y = get_unaligned_le16(&data[3]);
1765 } else if (len == WACOM_PKGLEN_TPC1FG_B) {
1766 prox = prox && (data[2] & 0x01);
1767 x = get_unaligned_le16(&data[3]);
1768 y = get_unaligned_le16(&data[5]);
1769 } else {
1770 prox = prox && (data[1] & 0x01);
1771 x = le16_to_cpup((__le16 *)&data[2]);
1772 y = le16_to_cpup((__le16 *)&data[4]);
1773 }
ec67bbed 1774
a43c7c53
PC
1775 if (prox) {
1776 input_report_abs(input, ABS_X, x);
1777 input_report_abs(input, ABS_Y, y);
1778 }
1779 input_report_key(input, BTN_TOUCH, prox);
73a97f4f 1780
a43c7c53
PC
1781 /* keep touch state for pen events */
1782 wacom->shared->touch_down = prox;
ec67bbed 1783
a43c7c53 1784 return 1;
ec67bbed
PC
1785}
1786
8aa9a9ac 1787static int wacom_tpc_pen(struct wacom_wac *wacom)
545f4e99 1788{
74b63417 1789 unsigned char *data = wacom->data;
2a6cdbdd 1790 struct input_dev *input = wacom->pen_input;
a43c7c53 1791 bool prox = data[1] & 0x20;
8aa9a9ac 1792
a43c7c53 1793 if (!wacom->shared->stylus_in_proximity) /* first in prox */
8aa9a9ac
PC
1794 /* Going into proximity select tool */
1795 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
8aa9a9ac 1796
a43c7c53
PC
1797 /* keep pen state for touch events */
1798 wacom->shared->stylus_in_proximity = prox;
1799
1924e05e
PC
1800 /* send pen events only when touch is up or forced out
1801 * or touch arbitration is off
1802 */
1803 if (!delay_pen_events(wacom)) {
a43c7c53
PC
1804 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
1805 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
1806 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
1807 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
0b335cad 1808 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x07) << 8) | data[6]);
a43c7c53
PC
1809 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
1810 input_report_key(input, wacom->tool[0], prox);
1811 return 1;
8aa9a9ac 1812 }
8aa9a9ac 1813
a43c7c53 1814 return 0;
8aa9a9ac
PC
1815}
1816
1817static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
1818{
74b63417 1819 unsigned char *data = wacom->data;
545f4e99 1820
2ac97f0f 1821 if (wacom->pen_input) {
2a6cdbdd
JG
1822 dev_dbg(wacom->pen_input->dev.parent,
1823 "%s: received report #%d\n", __func__, data[0]);
2ac97f0f
JG
1824
1825 if (len == WACOM_PKGLEN_PENABLED ||
1826 data[0] == WACOM_REPORT_PENABLED)
1827 return wacom_tpc_pen(wacom);
1828 }
1829 else if (wacom->touch_input) {
2a6cdbdd
JG
1830 dev_dbg(wacom->touch_input->dev.parent,
1831 "%s: received report #%d\n", __func__, data[0]);
545f4e99 1832
2ac97f0f
JG
1833 switch (len) {
1834 case WACOM_PKGLEN_TPC1FG:
1835 return wacom_tpc_single_touch(wacom, len);
31175a83 1836
2ac97f0f
JG
1837 case WACOM_PKGLEN_TPC2FG:
1838 return wacom_tpc_mt_touch(wacom);
31175a83 1839
2ac97f0f
JG
1840 default:
1841 switch (data[0]) {
1842 case WACOM_REPORT_TPC1FG:
1843 case WACOM_REPORT_TPCHID:
1844 case WACOM_REPORT_TPCST:
1845 case WACOM_REPORT_TPC1FGE:
1846 return wacom_tpc_single_touch(wacom, len);
d51ddb2b 1847
2ac97f0f
JG
1848 case WACOM_REPORT_TPCMT:
1849 case WACOM_REPORT_TPCMT2:
1850 return wacom_mt_touch(wacom);
1963518b 1851
2ac97f0f 1852 }
31175a83
PC
1853 }
1854 }
4492efff 1855
8aa9a9ac 1856 return 0;
545f4e99
PC
1857}
1858
d252f4a1
JG
1859static int wacom_offset_rotation(struct input_dev *input, struct hid_usage *usage,
1860 int value, int num, int denom)
1861{
1862 struct input_absinfo *abs = &input->absinfo[usage->code];
1863 int range = (abs->maximum - abs->minimum + 1);
1864
1865 value += num*range/denom;
1866 if (value > abs->maximum)
1867 value -= range;
1868 else if (value < abs->minimum)
1869 value += range;
1870 return value;
1871}
1872
ac2423c9 1873int wacom_equivalent_usage(int usage)
c9c09587
JG
1874{
1875 if ((usage & HID_USAGE_PAGE) == WACOM_HID_UP_WACOMDIGITIZER) {
1876 int subpage = (usage & 0xFF00) << 8;
1877 int subusage = (usage & 0xFF);
1878
5922e613
JG
1879 if (subpage == WACOM_HID_SP_PAD ||
1880 subpage == WACOM_HID_SP_BUTTON ||
1881 subpage == WACOM_HID_SP_DIGITIZER ||
b5c921e6 1882 subpage == WACOM_HID_SP_DIGITIZERINFO ||
61ce346a 1883 usage == WACOM_HID_WD_SENSE ||
f85c9dc6
JG
1884 usage == WACOM_HID_WD_SERIALHI ||
1885 usage == WACOM_HID_WD_TOOLTYPE ||
5922e613 1886 usage == WACOM_HID_WD_DISTANCE ||
bf78adcb
JG
1887 usage == WACOM_HID_WD_TOUCHSTRIP ||
1888 usage == WACOM_HID_WD_TOUCHSTRIP2 ||
5922e613 1889 usage == WACOM_HID_WD_TOUCHRING ||
b1f466a9 1890 usage == WACOM_HID_WD_TOUCHRINGSTATUS ||
6d09085b
JD
1891 usage == WACOM_HID_WD_REPORT_VALID ||
1892 usage == WACOM_HID_WD_BARRELSWITCH3 ||
1893 usage == WACOM_HID_WD_SEQUENCENUMBER) {
c9c09587
JG
1894 return usage;
1895 }
1896
1897 if (subpage == HID_UP_UNDEFINED)
1898 subpage = HID_UP_DIGITIZER;
1899
1900 return subpage | subusage;
1901 }
1902
ac2423c9
AAS
1903 if ((usage & HID_USAGE_PAGE) == WACOM_HID_UP_WACOMTOUCH) {
1904 int subpage = (usage & 0xFF00) << 8;
1905 int subusage = (usage & 0xFF);
1906
f4e11d59
AAS
1907 if (usage == WACOM_HID_WT_REPORT_VALID)
1908 return usage;
1909
ac2423c9
AAS
1910 if (subpage == HID_UP_UNDEFINED)
1911 subpage = WACOM_HID_SP_DIGITIZER;
1912
1913 return subpage | subusage;
1914 }
1915
c9c09587
JG
1916 return usage;
1917}
1918
2a6cdbdd 1919static void wacom_map_usage(struct input_dev *input, struct hid_usage *usage,
7704ac93
BT
1920 struct hid_field *field, __u8 type, __u16 code, int fuzz)
1921{
345857bb
JG
1922 struct wacom *wacom = input_get_drvdata(input);
1923 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1924 struct wacom_features *features = &wacom_wac->features;
7704ac93
BT
1925 int fmin = field->logical_minimum;
1926 int fmax = field->logical_maximum;
c9c09587 1927 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
50066a04 1928 int resolution_code = code;
08a46b41 1929 int resolution = hidinput_calc_abs_res(field, resolution_code);
50066a04 1930
c9c09587 1931 if (equivalent_usage == HID_DG_TWIST) {
50066a04
JG
1932 resolution_code = ABS_RZ;
1933 }
7704ac93 1934
345857bb
JG
1935 if (equivalent_usage == HID_GD_X) {
1936 fmin += features->offset_left;
1937 fmax -= features->offset_right;
1938 }
1939 if (equivalent_usage == HID_GD_Y) {
1940 fmin += features->offset_top;
1941 fmax -= features->offset_bottom;
1942 }
1943
7704ac93
BT
1944 usage->type = type;
1945 usage->code = code;
1946
7704ac93
BT
1947 switch (type) {
1948 case EV_ABS:
1949 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
08a46b41
PC
1950
1951 /* older tablet may miss physical usage */
1952 if ((code == ABS_X || code == ABS_Y) && !resolution) {
1953 resolution = WACOM_INTUOS_RES;
1954 hid_warn(input,
1955 "Wacom usage (%d) missing resolution \n",
1956 code);
1957 }
1958 input_abs_set_res(input, code, resolution);
7704ac93
BT
1959 break;
1960 case EV_KEY:
7704ac93 1961 case EV_MSC:
bf78adcb 1962 case EV_SW:
46fc466e 1963 input_set_capability(input, type, code);
bf78adcb 1964 break;
7704ac93
BT
1965 }
1966}
1967
5ac3d4ae 1968static void wacom_wac_battery_usage_mapping(struct hid_device *hdev,
5922e613
JG
1969 struct hid_field *field, struct hid_usage *usage)
1970{
bea407a4 1971 return;
5ac3d4ae
JG
1972}
1973
1974static void wacom_wac_battery_event(struct hid_device *hdev, struct hid_field *field,
1975 struct hid_usage *usage, __s32 value)
1976{
1977 struct wacom *wacom = hid_get_drvdata(hdev);
1978 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1979 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
1980
1981 switch (equivalent_usage) {
1982 case HID_DG_BATTERYSTRENGTH:
1983 if (value == 0) {
1984 wacom_wac->hid_data.bat_status = POWER_SUPPLY_STATUS_UNKNOWN;
1985 }
1986 else {
1987 value = value * 100 / (field->logical_maximum - field->logical_minimum);
1988 wacom_wac->hid_data.battery_capacity = value;
1989 wacom_wac->hid_data.bat_connected = 1;
1990 wacom_wac->hid_data.bat_status = WACOM_POWER_SUPPLY_STATUS_AUTO;
1991 }
bea407a4 1992 wacom_wac->features.quirks |= WACOM_QUIRK_BATTERY;
5ac3d4ae
JG
1993 break;
1994 case WACOM_HID_WD_BATTERY_LEVEL:
1995 value = value * 100 / (field->logical_maximum - field->logical_minimum);
1996 wacom_wac->hid_data.battery_capacity = value;
1997 wacom_wac->hid_data.bat_connected = 1;
1998 wacom_wac->hid_data.bat_status = WACOM_POWER_SUPPLY_STATUS_AUTO;
bea407a4 1999 wacom_wac->features.quirks |= WACOM_QUIRK_BATTERY;
5ac3d4ae
JG
2000 break;
2001 case WACOM_HID_WD_BATTERY_CHARGING:
2002 wacom_wac->hid_data.bat_charging = value;
2003 wacom_wac->hid_data.ps_connected = value;
2004 wacom_wac->hid_data.bat_connected = 1;
2005 wacom_wac->hid_data.bat_status = WACOM_POWER_SUPPLY_STATUS_AUTO;
bea407a4 2006 wacom_wac->features.quirks |= WACOM_QUIRK_BATTERY;
5ac3d4ae
JG
2007 break;
2008 }
2009}
2010
2011static void wacom_wac_battery_pre_report(struct hid_device *hdev,
2012 struct hid_report *report)
2013{
2014 return;
2015}
2016
2017static void wacom_wac_battery_report(struct hid_device *hdev,
2018 struct hid_report *report)
2019{
2020 struct wacom *wacom = hid_get_drvdata(hdev);
2021 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
5ac3d4ae 2022
bea407a4
JG
2023 int status = wacom_wac->hid_data.bat_status;
2024 int capacity = wacom_wac->hid_data.battery_capacity;
2025 bool charging = wacom_wac->hid_data.bat_charging;
2026 bool connected = wacom_wac->hid_data.bat_connected;
2027 bool powered = wacom_wac->hid_data.ps_connected;
5ac3d4ae 2028
bea407a4
JG
2029 wacom_notify_battery(wacom_wac, status, capacity, charging,
2030 connected, powered);
5ac3d4ae
JG
2031}
2032
2033static void wacom_wac_pad_usage_mapping(struct hid_device *hdev,
2034 struct hid_field *field, struct hid_usage *usage)
2035{
2036 struct wacom *wacom = hid_get_drvdata(hdev);
2037 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2038 struct wacom_features *features = &wacom_wac->features;
2039 struct input_dev *input = wacom_wac->pad_input;
2040 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
2041
2042 switch (equivalent_usage) {
5922e613
JG
2043 case WACOM_HID_WD_ACCELEROMETER_X:
2044 __set_bit(INPUT_PROP_ACCELEROMETER, input->propbit);
2045 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 0);
f3f24e7b 2046 features->device_type |= WACOM_DEVICETYPE_PAD;
5922e613
JG
2047 break;
2048 case WACOM_HID_WD_ACCELEROMETER_Y:
2049 __set_bit(INPUT_PROP_ACCELEROMETER, input->propbit);
2050 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 0);
f3f24e7b 2051 features->device_type |= WACOM_DEVICETYPE_PAD;
5922e613
JG
2052 break;
2053 case WACOM_HID_WD_ACCELEROMETER_Z:
2054 __set_bit(INPUT_PROP_ACCELEROMETER, input->propbit);
2055 wacom_map_usage(input, usage, field, EV_ABS, ABS_Z, 0);
f3f24e7b 2056 features->device_type |= WACOM_DEVICETYPE_PAD;
5922e613 2057 break;
10c55cac 2058 case WACOM_HID_WD_BUTTONCENTER:
5922e613
JG
2059 case WACOM_HID_WD_BUTTONHOME:
2060 case WACOM_HID_WD_BUTTONUP:
2061 case WACOM_HID_WD_BUTTONDOWN:
2062 case WACOM_HID_WD_BUTTONLEFT:
2063 case WACOM_HID_WD_BUTTONRIGHT:
2064 wacom_map_usage(input, usage, field, EV_KEY,
2065 wacom_numbered_button_to_key(features->numbered_buttons),
2066 0);
2067 features->numbered_buttons++;
f3f24e7b 2068 features->device_type |= WACOM_DEVICETYPE_PAD;
5922e613 2069 break;
d793ff81 2070 case WACOM_HID_WD_MUTE_DEVICE:
dc9dc864
PC
2071 /* softkey touch switch */
2072 wacom_wac->is_soft_touch_switch = true;
2073 fallthrough;
2074 case WACOM_HID_WD_TOUCHONOFF:
d2ec58ae 2075 /*
dc9dc864
PC
2076 * These two usages, which are used to mute touch events, come
2077 * from the pad packet, but are reported on the touch
d2ec58ae
AAS
2078 * interface. Because the touch interface may not have
2079 * been created yet, we cannot call wacom_map_usage(). In
dc9dc864 2080 * order to process the usages when we receive them, we set
d2ec58ae
AAS
2081 * the usage type and code directly.
2082 */
2083 wacom_wac->has_mute_touch_switch = true;
2084 usage->type = EV_SW;
2085 usage->code = SW_MUTE_DEVICE;
bf78adcb
JG
2086 break;
2087 case WACOM_HID_WD_TOUCHSTRIP:
2088 wacom_map_usage(input, usage, field, EV_ABS, ABS_RX, 0);
f3f24e7b 2089 features->device_type |= WACOM_DEVICETYPE_PAD;
bf78adcb
JG
2090 break;
2091 case WACOM_HID_WD_TOUCHSTRIP2:
2092 wacom_map_usage(input, usage, field, EV_ABS, ABS_RY, 0);
f3f24e7b 2093 features->device_type |= WACOM_DEVICETYPE_PAD;
bf78adcb 2094 break;
5922e613
JG
2095 case WACOM_HID_WD_TOUCHRING:
2096 wacom_map_usage(input, usage, field, EV_ABS, ABS_WHEEL, 0);
f3f24e7b 2097 features->device_type |= WACOM_DEVICETYPE_PAD;
5922e613 2098 break;
60a22186 2099 case WACOM_HID_WD_TOUCHRINGSTATUS:
8d411cbf
JG
2100 /*
2101 * Only set up type/code association. Completely mapping
2102 * this usage may overwrite the axis resolution and range.
2103 */
2104 usage->type = EV_ABS;
2105 usage->code = ABS_WHEEL;
2106 set_bit(EV_ABS, input->evbit);
60a22186
AAS
2107 features->device_type |= WACOM_DEVICETYPE_PAD;
2108 break;
4eb220cb
PC
2109 case WACOM_HID_WD_BUTTONCONFIG:
2110 wacom_map_usage(input, usage, field, EV_KEY, KEY_BUTTONCONFIG, 0);
2111 features->device_type |= WACOM_DEVICETYPE_PAD;
2112 break;
2113 case WACOM_HID_WD_ONSCREEN_KEYBOARD:
2114 wacom_map_usage(input, usage, field, EV_KEY, KEY_ONSCREEN_KEYBOARD, 0);
2115 features->device_type |= WACOM_DEVICETYPE_PAD;
2116 break;
2117 case WACOM_HID_WD_CONTROLPANEL:
2118 wacom_map_usage(input, usage, field, EV_KEY, KEY_CONTROLPANEL, 0);
2119 features->device_type |= WACOM_DEVICETYPE_PAD;
2120 break;
4082da80
BT
2121 case WACOM_HID_WD_MODE_CHANGE:
2122 /* do not overwrite previous data */
2123 if (!wacom_wac->has_mode_change) {
2124 wacom_wac->has_mode_change = true;
2125 wacom_wac->is_direct_mode = true;
2126 }
2127 features->device_type |= WACOM_DEVICETYPE_PAD;
2128 break;
5922e613
JG
2129 }
2130
2131 switch (equivalent_usage & 0xfffffff0) {
2132 case WACOM_HID_WD_EXPRESSKEY00:
2133 wacom_map_usage(input, usage, field, EV_KEY,
2134 wacom_numbered_button_to_key(features->numbered_buttons),
2135 0);
2136 features->numbered_buttons++;
f3f24e7b 2137 features->device_type |= WACOM_DEVICETYPE_PAD;
5922e613
JG
2138 break;
2139 }
2140}
2141
c9cfb2ac
PC
2142static void wacom_wac_pad_event(struct hid_device *hdev, struct hid_field *field,
2143 struct hid_usage *usage, __s32 value)
2144{
2145 struct wacom *wacom = hid_get_drvdata(hdev);
2146 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2147 struct input_dev *input = wacom_wac->pad_input;
2148 struct wacom_features *features = &wacom_wac->features;
2149 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
10c55cac 2150 int i;
d252f4a1 2151 bool do_report = false;
c9cfb2ac 2152
60a22186
AAS
2153 /*
2154 * Avoid reporting this event and setting inrange_state if this usage
2155 * hasn't been mapped.
2156 */
4082da80 2157 if (!usage->type && equivalent_usage != WACOM_HID_WD_MODE_CHANGE)
60a22186 2158 return;
c9cfb2ac
PC
2159
2160 if (wacom_equivalent_usage(field->physical) == HID_DG_TABLETFUNCTIONKEY) {
60a22186
AAS
2161 if (usage->hid != WACOM_HID_WD_TOUCHRING)
2162 wacom_wac->hid_data.inrange_state |= value;
c9cfb2ac
PC
2163 }
2164
d6b67568
PC
2165 /* Process touch switch state first since it is reported through touch interface,
2166 * which is indepentent of pad interface. In the case when there are no other pad
2167 * events, the pad interface will not even be created.
2168 */
2169 if ((equivalent_usage == WACOM_HID_WD_MUTE_DEVICE) ||
2170 (equivalent_usage == WACOM_HID_WD_TOUCHONOFF)) {
2171 if (wacom_wac->shared->touch_input) {
2172 bool *is_touch_on = &wacom_wac->shared->is_touch_on;
2173
2174 if (equivalent_usage == WACOM_HID_WD_MUTE_DEVICE && value)
2175 *is_touch_on = !(*is_touch_on);
2176 else if (equivalent_usage == WACOM_HID_WD_TOUCHONOFF)
2177 *is_touch_on = value;
2178
2179 input_report_switch(wacom_wac->shared->touch_input,
2180 SW_MUTE_DEVICE, !(*is_touch_on));
2181 input_sync(wacom_wac->shared->touch_input);
2182 }
2183 return;
2184 }
2185
2186 if (!input)
2187 return;
2188
c9cfb2ac 2189 switch (equivalent_usage) {
d252f4a1
JG
2190 case WACOM_HID_WD_TOUCHRING:
2191 /*
2192 * Userspace expects touchrings to increase in value with
2193 * clockwise gestures and have their zero point at the
2194 * tablet's left. HID events "should" be clockwise-
2195 * increasing and zero at top, though the MobileStudio
2196 * Pro and 2nd-gen Intuos Pro don't do this...
2197 */
2198 if (hdev->vendor == 0x56a &&
2199 (hdev->product == 0x34d || hdev->product == 0x34e || /* MobileStudio Pro */
384225c2 2200 hdev->product == 0x357 || hdev->product == 0x358 || /* Intuos Pro 2 */
6e2abc68 2201 hdev->product == 0x392 || /* Intuos Pro 2 */
fe4e940f
JG
2202 hdev->product == 0x398 || hdev->product == 0x399 || /* MobileStudio Pro */
2203 hdev->product == 0x3AA)) { /* MobileStudio Pro */
d252f4a1
JG
2204 value = (field->logical_maximum - value);
2205
6e2abc68
AAS
2206 if (hdev->product == 0x357 || hdev->product == 0x358 ||
2207 hdev->product == 0x392)
d252f4a1 2208 value = wacom_offset_rotation(input, usage, value, 3, 16);
384225c2 2209 else if (hdev->product == 0x34d || hdev->product == 0x34e ||
fe4e940f
JG
2210 hdev->product == 0x398 || hdev->product == 0x399 ||
2211 hdev->product == 0x3AA)
d252f4a1
JG
2212 value = wacom_offset_rotation(input, usage, value, 1, 2);
2213 }
2214 else {
2215 value = wacom_offset_rotation(input, usage, value, 1, 4);
2216 }
2217 do_report = true;
2218 break;
93aab7fa 2219 case WACOM_HID_WD_TOUCHRINGSTATUS:
60a22186
AAS
2220 if (!value)
2221 input_event(input, usage->type, usage->code, 0);
354a3298 2222 break;
93aab7fa 2223
4082da80
BT
2224 case WACOM_HID_WD_MODE_CHANGE:
2225 if (wacom_wac->is_direct_mode != value) {
2226 wacom_wac->is_direct_mode = value;
2227 wacom_schedule_work(&wacom->wacom_wac, WACOM_WORKER_MODE_CHANGE);
2228 }
2229 break;
2230
10c55cac
AAS
2231 case WACOM_HID_WD_BUTTONCENTER:
2232 for (i = 0; i < wacom->led.count; i++)
2233 wacom_update_led(wacom, features->numbered_buttons,
2234 value, i);
df561f66 2235 fallthrough;
93aab7fa 2236 default:
d252f4a1
JG
2237 do_report = true;
2238 break;
2239 }
2240
2241 if (do_report) {
5922e613 2242 input_event(input, usage->type, usage->code, value);
ed1fa736
PC
2243 if (value)
2244 wacom_wac->hid_data.pad_input_event_flag = true;
93aab7fa 2245 }
5922e613
JG
2246}
2247
2248static void wacom_wac_pad_pre_report(struct hid_device *hdev,
2249 struct hid_report *report)
2250{
2251 struct wacom *wacom = hid_get_drvdata(hdev);
2252 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2253
2254 wacom_wac->hid_data.inrange_state = 0;
2255}
2256
c9cfb2ac 2257static void wacom_wac_pad_report(struct hid_device *hdev,
f8b6a747 2258 struct hid_report *report, struct hid_field *field)
c9cfb2ac
PC
2259{
2260 struct wacom *wacom = hid_get_drvdata(hdev);
2261 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
c9cfb2ac
PC
2262 struct input_dev *input = wacom_wac->pad_input;
2263 bool active = wacom_wac->hid_data.inrange_state != 0;
2264
2265 /* report prox for expresskey events */
d4b8efeb 2266 if (wacom_wac->hid_data.pad_input_event_flag) {
c9cfb2ac 2267 input_event(input, EV_ABS, ABS_MISC, active ? PAD_DEVICE_ID : 0);
c9cfb2ac 2268 input_sync(input);
ed1fa736
PC
2269 if (!active)
2270 wacom_wac->hid_data.pad_input_event_flag = false;
c9cfb2ac 2271 }
5922e613
JG
2272}
2273
46fc466e
PC
2274static void wacom_set_barrel_switch3_usage(struct wacom_wac *wacom_wac)
2275{
2276 struct input_dev *input = wacom_wac->pen_input;
2277 struct wacom_features *features = &wacom_wac->features;
2278
2279 if (!(features->quirks & WACOM_QUIRK_AESPEN) &&
2280 wacom_wac->hid_data.barrelswitch &&
2281 wacom_wac->hid_data.barrelswitch2 &&
6d09085b
JD
2282 wacom_wac->hid_data.serialhi &&
2283 !wacom_wac->hid_data.barrelswitch3) {
46fc466e 2284 input_set_capability(input, EV_KEY, BTN_STYLUS3);
6d09085b
JD
2285 features->quirks |= WACOM_QUIRK_PEN_BUTTON3;
2286 }
46fc466e
PC
2287}
2288
7704ac93
BT
2289static void wacom_wac_pen_usage_mapping(struct hid_device *hdev,
2290 struct hid_field *field, struct hid_usage *usage)
2291{
2292 struct wacom *wacom = hid_get_drvdata(hdev);
2a6cdbdd 2293 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
61ce346a 2294 struct wacom_features *features = &wacom_wac->features;
2a6cdbdd 2295 struct input_dev *input = wacom_wac->pen_input;
c9c09587 2296 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
7704ac93 2297
c9c09587 2298 switch (equivalent_usage) {
7704ac93 2299 case HID_GD_X:
2a6cdbdd 2300 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
7704ac93
BT
2301 break;
2302 case HID_GD_Y:
2a6cdbdd 2303 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
7704ac93 2304 break;
b5c921e6 2305 case WACOM_HID_WD_DISTANCE:
50066a04
JG
2306 case HID_GD_Z:
2307 wacom_map_usage(input, usage, field, EV_ABS, ABS_DISTANCE, 0);
2308 break;
7704ac93 2309 case HID_DG_TIPPRESSURE:
2a6cdbdd 2310 wacom_map_usage(input, usage, field, EV_ABS, ABS_PRESSURE, 0);
7704ac93
BT
2311 break;
2312 case HID_DG_INRANGE:
2a6cdbdd 2313 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
7704ac93
BT
2314 break;
2315 case HID_DG_INVERT:
2a6cdbdd 2316 wacom_map_usage(input, usage, field, EV_KEY,
7704ac93
BT
2317 BTN_TOOL_RUBBER, 0);
2318 break;
50066a04
JG
2319 case HID_DG_TILT_X:
2320 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_X, 0);
2321 break;
2322 case HID_DG_TILT_Y:
2323 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_Y, 0);
2324 break;
2325 case HID_DG_TWIST:
2326 wacom_map_usage(input, usage, field, EV_ABS, ABS_Z, 0);
2327 break;
7704ac93 2328 case HID_DG_ERASER:
46fc466e
PC
2329 input_set_capability(input, EV_KEY, BTN_TOOL_RUBBER);
2330 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
2331 break;
7704ac93 2332 case HID_DG_TIPSWITCH:
46fc466e 2333 input_set_capability(input, EV_KEY, BTN_TOOL_PEN);
2a6cdbdd 2334 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
7704ac93
BT
2335 break;
2336 case HID_DG_BARRELSWITCH:
46fc466e
PC
2337 wacom_wac->hid_data.barrelswitch = true;
2338 wacom_set_barrel_switch3_usage(wacom_wac);
2a6cdbdd 2339 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS, 0);
7704ac93
BT
2340 break;
2341 case HID_DG_BARRELSWITCH2:
46fc466e
PC
2342 wacom_wac->hid_data.barrelswitch2 = true;
2343 wacom_set_barrel_switch3_usage(wacom_wac);
2a6cdbdd 2344 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS2, 0);
7704ac93
BT
2345 break;
2346 case HID_DG_TOOLSERIALNUMBER:
83417206 2347 features->quirks |= WACOM_QUIRK_TOOLSERIAL;
2a6cdbdd 2348 wacom_map_usage(input, usage, field, EV_MSC, MSC_SERIAL, 0);
7704ac93 2349 break;
6d09085b
JD
2350 case HID_DG_SCANTIME:
2351 wacom_map_usage(input, usage, field, EV_MSC, MSC_TIMESTAMP, 0);
2352 break;
61ce346a
JG
2353 case WACOM_HID_WD_SENSE:
2354 features->quirks |= WACOM_QUIRK_SENSE;
2355 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
2356 break;
f85c9dc6 2357 case WACOM_HID_WD_SERIALHI:
46fc466e
PC
2358 wacom_wac->hid_data.serialhi = true;
2359 wacom_set_barrel_switch3_usage(wacom_wac);
f85c9dc6 2360 wacom_map_usage(input, usage, field, EV_ABS, ABS_MISC, 0);
f85c9dc6 2361 break;
929d6d5d 2362 case WACOM_HID_WD_FINGERWHEEL:
46fc466e 2363 input_set_capability(input, EV_KEY, BTN_TOOL_AIRBRUSH);
929d6d5d
JG
2364 wacom_map_usage(input, usage, field, EV_ABS, ABS_WHEEL, 0);
2365 break;
6d09085b
JD
2366 case WACOM_HID_WD_BARRELSWITCH3:
2367 wacom_wac->hid_data.barrelswitch3 = true;
2368 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS3, 0);
2369 features->quirks &= ~WACOM_QUIRK_PEN_BUTTON3;
2370 break;
7704ac93
BT
2371 }
2372}
2373
354a3298 2374static void wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field,
7704ac93
BT
2375 struct hid_usage *usage, __s32 value)
2376{
2377 struct wacom *wacom = hid_get_drvdata(hdev);
2378 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
61ce346a 2379 struct wacom_features *features = &wacom_wac->features;
2a6cdbdd 2380 struct input_dev *input = wacom_wac->pen_input;
c9c09587 2381 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
7704ac93 2382
b1f466a9
AAS
2383 if (wacom_wac->is_invalid_bt_frame)
2384 return;
2385
c9c09587 2386 switch (equivalent_usage) {
50066a04
JG
2387 case HID_GD_Z:
2388 /*
2389 * HID_GD_Z "should increase as the control's position is
2390 * moved from high to low", while ABS_DISTANCE instead
2391 * increases in value as the tool moves from low to high.
2392 */
2393 value = field->logical_maximum - value;
2394 break;
7704ac93 2395 case HID_DG_INRANGE:
94b17905 2396 mod_timer(&wacom->idleprox_timer, jiffies + msecs_to_jiffies(100));
7704ac93 2397 wacom_wac->hid_data.inrange_state = value;
61ce346a
JG
2398 if (!(features->quirks & WACOM_QUIRK_SENSE))
2399 wacom_wac->hid_data.sense_state = value;
354a3298 2400 return;
7704ac93
BT
2401 case HID_DG_INVERT:
2402 wacom_wac->hid_data.invert_state = value;
354a3298 2403 return;
7704ac93
BT
2404 case HID_DG_ERASER:
2405 case HID_DG_TIPSWITCH:
2406 wacom_wac->hid_data.tipswitch |= value;
354a3298 2407 return;
9e429d56
JG
2408 case HID_DG_BARRELSWITCH:
2409 wacom_wac->hid_data.barrelswitch = value;
2410 return;
2411 case HID_DG_BARRELSWITCH2:
2412 wacom_wac->hid_data.barrelswitch2 = value;
2413 return;
f85c9dc6 2414 case HID_DG_TOOLSERIALNUMBER:
993f0d93
JG
2415 if (value) {
2416 wacom_wac->serial[0] = (wacom_wac->serial[0] & ~0xFFFFFFFFULL);
ff479731 2417 wacom_wac->serial[0] |= wacom_s32tou(value, field->report_size);
993f0d93 2418 }
354a3298 2419 return;
d252f4a1 2420 case HID_DG_TWIST:
7ccced33
PC
2421 /* don't modify the value if the pen doesn't support the feature */
2422 if (!wacom_is_art_pen(wacom_wac->id[0])) return;
2423
d252f4a1
JG
2424 /*
2425 * Userspace expects pen twist to have its zero point when
2426 * the buttons/finger is on the tablet's left. HID values
2427 * are zero when buttons are toward the top.
2428 */
2429 value = wacom_offset_rotation(input, usage, value, 1, 4);
2430 break;
61ce346a
JG
2431 case WACOM_HID_WD_SENSE:
2432 wacom_wac->hid_data.sense_state = value;
354a3298 2433 return;
f85c9dc6 2434 case WACOM_HID_WD_SERIALHI:
993f0d93 2435 if (value) {
ff479731
JG
2436 __u32 raw_value = wacom_s32tou(value, field->report_size);
2437
993f0d93 2438 wacom_wac->serial[0] = (wacom_wac->serial[0] & 0xFFFFFFFF);
ff479731 2439 wacom_wac->serial[0] |= ((__u64)raw_value) << 32;
993f0d93
JG
2440 /*
2441 * Non-USI EMR devices may contain additional tool type
2442 * information here. See WACOM_HID_WD_TOOLTYPE case for
2443 * more details.
2444 */
2445 if (value >> 20 == 1) {
ff479731 2446 wacom_wac->id[0] |= raw_value & 0xFFFFF;
993f0d93 2447 }
f85c9dc6 2448 }
354a3298 2449 return;
f85c9dc6
JG
2450 case WACOM_HID_WD_TOOLTYPE:
2451 /*
2452 * Some devices (MobileStudio Pro, and possibly later
2453 * devices as well) do not return the complete tool
2454 * type in their WACOM_HID_WD_TOOLTYPE usage. Use a
2455 * bitwise OR so the complete value can be built
2456 * up over time :(
2457 */
ff479731 2458 wacom_wac->id[0] |= wacom_s32tou(value, field->report_size);
354a3298 2459 return;
345857bb
JG
2460 case WACOM_HID_WD_OFFSETLEFT:
2461 if (features->offset_left && value != features->offset_left)
75a5f3ac 2462 hid_warn(hdev, "%s: overriding existing left offset "
345857bb
JG
2463 "%d -> %d\n", __func__, value,
2464 features->offset_left);
2465 features->offset_left = value;
354a3298 2466 return;
345857bb
JG
2467 case WACOM_HID_WD_OFFSETRIGHT:
2468 if (features->offset_right && value != features->offset_right)
75a5f3ac 2469 hid_warn(hdev, "%s: overriding existing right offset "
345857bb
JG
2470 "%d -> %d\n", __func__, value,
2471 features->offset_right);
2472 features->offset_right = value;
354a3298 2473 return;
345857bb
JG
2474 case WACOM_HID_WD_OFFSETTOP:
2475 if (features->offset_top && value != features->offset_top)
75a5f3ac 2476 hid_warn(hdev, "%s: overriding existing top offset "
345857bb
JG
2477 "%d -> %d\n", __func__, value,
2478 features->offset_top);
2479 features->offset_top = value;
354a3298 2480 return;
345857bb
JG
2481 case WACOM_HID_WD_OFFSETBOTTOM:
2482 if (features->offset_bottom && value != features->offset_bottom)
75a5f3ac 2483 hid_warn(hdev, "%s: overriding existing bottom offset "
345857bb
JG
2484 "%d -> %d\n", __func__, value,
2485 features->offset_bottom);
2486 features->offset_bottom = value;
354a3298 2487 return;
b1f466a9
AAS
2488 case WACOM_HID_WD_REPORT_VALID:
2489 wacom_wac->is_invalid_bt_frame = !value;
2490 return;
6d09085b
JD
2491 case WACOM_HID_WD_BARRELSWITCH3:
2492 wacom_wac->hid_data.barrelswitch3 = value;
2493 return;
2494 case WACOM_HID_WD_SEQUENCENUMBER:
2495 if (wacom_wac->hid_data.sequence_number != value)
d88591a5 2496 hid_warn(hdev, "Dropped %hu packets", (unsigned short)(value - wacom_wac->hid_data.sequence_number));
6d09085b
JD
2497 wacom_wac->hid_data.sequence_number = value + 1;
2498 return;
7704ac93
BT
2499 }
2500
1924e05e
PC
2501 /* send pen events only when touch is up or forced out
2502 * or touch arbitration is off
2503 */
2504 if (!usage->type || delay_pen_events(wacom_wac))
354a3298 2505 return;
7704ac93 2506
4affc233 2507 /* send pen events only when the pen is in range */
5b40104e
JG
2508 if (wacom_wac->hid_data.inrange_state)
2509 input_event(input, usage->type, usage->code, value);
2510 else if (wacom_wac->shared->stylus_in_proximity && !wacom_wac->hid_data.sense_state)
2511 input_event(input, usage->type, usage->code, 0);
7704ac93
BT
2512}
2513
06324e0c
JG
2514static void wacom_wac_pen_pre_report(struct hid_device *hdev,
2515 struct hid_report *report)
2516{
b1f466a9
AAS
2517 struct wacom *wacom = hid_get_drvdata(hdev);
2518 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2519
2520 wacom_wac->is_invalid_bt_frame = false;
06324e0c
JG
2521 return;
2522}
2523
7704ac93
BT
2524static void wacom_wac_pen_report(struct hid_device *hdev,
2525 struct hid_report *report)
2526{
2527 struct wacom *wacom = hid_get_drvdata(hdev);
2528 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 2529 struct input_dev *input = wacom_wac->pen_input;
7690dd18
JG
2530 bool range = wacom_wac->hid_data.inrange_state;
2531 bool sense = wacom_wac->hid_data.sense_state;
7704ac93 2532
b1f466a9
AAS
2533 if (wacom_wac->is_invalid_bt_frame)
2534 return;
2535
7690dd18
JG
2536 if (!wacom_wac->tool[0] && range) { /* first in range */
2537 /* Going into range select tool */
f85c9dc6
JG
2538 if (wacom_wac->hid_data.invert_state)
2539 wacom_wac->tool[0] = BTN_TOOL_RUBBER;
2540 else if (wacom_wac->id[0])
2541 wacom_wac->tool[0] = wacom_intuos_get_tool_type(wacom_wac->id[0]);
2542 else
2543 wacom_wac->tool[0] = BTN_TOOL_PEN;
2544 }
7704ac93
BT
2545
2546 /* keep pen state for touch events */
7690dd18 2547 wacom_wac->shared->stylus_in_proximity = sense;
7704ac93 2548
61ce346a 2549 if (!delay_pen_events(wacom_wac) && wacom_wac->tool[0]) {
f85c9dc6 2550 int id = wacom_wac->id[0];
f77810f7
JG
2551 if (wacom_wac->features.quirks & WACOM_QUIRK_PEN_BUTTON3) {
2552 int sw_state = wacom_wac->hid_data.barrelswitch |
2553 (wacom_wac->hid_data.barrelswitch2 << 1);
2554 wacom_wac->hid_data.barrelswitch = sw_state == 1;
2555 wacom_wac->hid_data.barrelswitch2 = sw_state == 2;
2556 wacom_wac->hid_data.barrelswitch3 = sw_state == 3;
6d09085b
JD
2557 }
2558 input_report_key(input, BTN_STYLUS, wacom_wac->hid_data.barrelswitch);
2559 input_report_key(input, BTN_STYLUS2, wacom_wac->hid_data.barrelswitch2);
2560 input_report_key(input, BTN_STYLUS3, wacom_wac->hid_data.barrelswitch3);
f85c9dc6
JG
2561
2562 /*
2563 * Non-USI EMR tools should have their IDs mangled to
2564 * match the legacy behavior of wacom_intuos_general
2565 */
2566 if (wacom_wac->serial[0] >> 52 == 1)
2567 id = wacom_intuos_id_mangle(id);
2568
2569 /*
2570 * To ensure compatibility with xf86-input-wacom, we should
2571 * report the BTN_TOOL_* event prior to the ABS_MISC or
2572 * MSC_SERIAL events.
2573 */
7704ac93
BT
2574 input_report_key(input, BTN_TOUCH,
2575 wacom_wac->hid_data.tipswitch);
4affc233 2576 input_report_key(input, wacom_wac->tool[0], sense);
f85c9dc6
JG
2577 if (wacom_wac->serial[0]) {
2578 input_event(input, EV_MSC, MSC_SERIAL, wacom_wac->serial[0]);
4affc233 2579 input_report_abs(input, ABS_MISC, sense ? id : 0);
f85c9dc6 2580 }
7704ac93
BT
2581
2582 wacom_wac->hid_data.tipswitch = false;
2583
2584 input_sync(input);
2585 }
61ce346a 2586
4affc233 2587 if (!sense) {
61ce346a 2588 wacom_wac->tool[0] = 0;
f85c9dc6 2589 wacom_wac->id[0] = 0;
993f0d93 2590 wacom_wac->serial[0] = 0;
f85c9dc6 2591 }
7704ac93
BT
2592}
2593
5ae6e89f
BT
2594static void wacom_wac_finger_usage_mapping(struct hid_device *hdev,
2595 struct hid_field *field, struct hid_usage *usage)
2596{
2597 struct wacom *wacom = hid_get_drvdata(hdev);
2598 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 2599 struct input_dev *input = wacom_wac->touch_input;
5ae6e89f 2600 unsigned touch_max = wacom_wac->features.touch_max;
c9c09587 2601 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
5ae6e89f 2602
c9c09587 2603 switch (equivalent_usage) {
5ae6e89f
BT
2604 case HID_GD_X:
2605 if (touch_max == 1)
2a6cdbdd 2606 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
5ae6e89f 2607 else
2a6cdbdd 2608 wacom_map_usage(input, usage, field, EV_ABS,
5ae6e89f
BT
2609 ABS_MT_POSITION_X, 4);
2610 break;
2611 case HID_GD_Y:
2612 if (touch_max == 1)
2a6cdbdd 2613 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
5ae6e89f 2614 else
2a6cdbdd 2615 wacom_map_usage(input, usage, field, EV_ABS,
5ae6e89f
BT
2616 ABS_MT_POSITION_Y, 4);
2617 break;
488abb5c
JG
2618 case HID_DG_WIDTH:
2619 case HID_DG_HEIGHT:
488abb5c
JG
2620 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MAJOR, 0);
2621 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MINOR, 0);
2622 input_set_abs_params(input, ABS_MT_ORIENTATION, 0, 1, 0, 0);
2623 break;
5ae6e89f 2624 case HID_DG_TIPSWITCH:
2a6cdbdd 2625 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
5ae6e89f 2626 break;
1b5d514a 2627 case HID_DG_CONTACTCOUNT:
499522c8 2628 wacom_wac->hid_data.cc_report = field->report->id;
1b5d514a
JG
2629 wacom_wac->hid_data.cc_index = field->index;
2630 wacom_wac->hid_data.cc_value_index = usage->usage_index;
2631 break;
6f107fab
JG
2632 case HID_DG_CONTACTID:
2633 if ((field->logical_maximum - field->logical_minimum) < touch_max) {
2634 /*
2635 * The HID descriptor for G11 sensors leaves logical
2636 * maximum set to '1' despite it being a multitouch
2637 * device. Override to a sensible number.
2638 */
2639 field->logical_maximum = 255;
2640 }
2641 break;
6d09085b
JD
2642 case HID_DG_SCANTIME:
2643 wacom_map_usage(input, usage, field, EV_MSC, MSC_TIMESTAMP, 0);
2644 break;
5ae6e89f
BT
2645 }
2646}
2647
601a22f3
JG
2648static void wacom_wac_finger_slot(struct wacom_wac *wacom_wac,
2649 struct input_dev *input)
2650{
2651 struct hid_data *hid_data = &wacom_wac->hid_data;
2652 bool mt = wacom_wac->features.touch_max > 1;
2653 bool prox = hid_data->tipswitch &&
1924e05e 2654 report_touch_events(wacom_wac);
601a22f3 2655
9d339fe4 2656 if (touch_is_muted(wacom_wac)) {
d793ff81
PC
2657 if (!wacom_wac->shared->touch_down)
2658 return;
e29c62ff 2659 prox = false;
d793ff81 2660 }
601a22f3 2661
1b5d514a
JG
2662 wacom_wac->hid_data.num_received++;
2663 if (wacom_wac->hid_data.num_received > wacom_wac->hid_data.num_expected)
2664 return;
2665
601a22f3
JG
2666 if (mt) {
2667 int slot;
2668
2669 slot = input_mt_get_slot_by_key(input, hid_data->id);
ccb51c2e 2670 if (slot < 0) {
7cc8524f 2671 return;
ccb51c2e
JG
2672 } else {
2673 struct input_mt_slot *ps = &input->mt->slots[slot];
2674 int mt_id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
2675
2676 if (!prox && mt_id < 0) {
2677 // No data to send for this slot; short-circuit
2678 return;
2679 }
2680 }
7cc8524f 2681
601a22f3
JG
2682 input_mt_slot(input, slot);
2683 input_mt_report_slot_state(input, MT_TOOL_FINGER, prox);
2684 }
2685 else {
2686 input_report_key(input, BTN_TOUCH, prox);
2687 }
2688
2689 if (prox) {
2690 input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X,
2691 hid_data->x);
2692 input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y,
2693 hid_data->y);
488abb5c
JG
2694
2695 if (test_bit(ABS_MT_TOUCH_MAJOR, input->absbit)) {
2696 input_report_abs(input, ABS_MT_TOUCH_MAJOR, max(hid_data->width, hid_data->height));
2697 input_report_abs(input, ABS_MT_TOUCH_MINOR, min(hid_data->width, hid_data->height));
2698 if (hid_data->width != hid_data->height)
2699 input_report_abs(input, ABS_MT_ORIENTATION, hid_data->width <= hid_data->height ? 0 : 1);
2700 }
601a22f3
JG
2701 }
2702}
2703
df03e9bd
JG
2704static bool wacom_wac_slot_is_active(struct input_dev *dev, int key)
2705{
2706 struct input_mt *mt = dev->mt;
2707 struct input_mt_slot *s;
2708
2709 if (!mt)
2710 return false;
2711
2712 for (s = mt->slots; s != mt->slots + mt->num_slots; s++) {
2713 if (s->key == key &&
2714 input_mt_get_value(s, ABS_MT_TRACKING_ID) >= 0) {
2715 return true;
2716 }
2717 }
2718
2719 return false;
2720}
2721
354a3298 2722static void wacom_wac_finger_event(struct hid_device *hdev,
5ae6e89f
BT
2723 struct hid_field *field, struct hid_usage *usage, __s32 value)
2724{
2725 struct wacom *wacom = hid_get_drvdata(hdev);
2726 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
c9c09587 2727 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
184eccd4 2728 struct wacom_features *features = &wacom->wacom_wac.features;
5ae6e89f 2729
9d339fe4 2730 if (touch_is_muted(wacom_wac) && !wacom_wac->shared->touch_down)
5bed0128
JG
2731 return;
2732
f4e11d59
AAS
2733 if (wacom_wac->is_invalid_bt_frame)
2734 return;
5ae6e89f 2735
c9c09587 2736 switch (equivalent_usage) {
7fb0413b
JG
2737 case HID_DG_CONFIDENCE:
2738 wacom_wac->hid_data.confidence = value;
2739 break;
5ae6e89f
BT
2740 case HID_GD_X:
2741 wacom_wac->hid_data.x = value;
2742 break;
2743 case HID_GD_Y:
2744 wacom_wac->hid_data.y = value;
2745 break;
488abb5c
JG
2746 case HID_DG_WIDTH:
2747 wacom_wac->hid_data.width = value;
2748 break;
2749 case HID_DG_HEIGHT:
2750 wacom_wac->hid_data.height = value;
2751 break;
5ae6e89f
BT
2752 case HID_DG_CONTACTID:
2753 wacom_wac->hid_data.id = value;
2754 break;
2755 case HID_DG_TIPSWITCH:
2756 wacom_wac->hid_data.tipswitch = value;
2757 break;
f4e11d59
AAS
2758 case WACOM_HID_WT_REPORT_VALID:
2759 wacom_wac->is_invalid_bt_frame = !value;
2760 return;
184eccd4 2761 case HID_DG_CONTACTMAX:
88f38846
JG
2762 if (!features->touch_max) {
2763 features->touch_max = value;
2764 } else {
2765 hid_warn(hdev, "%s: ignoring attempt to overwrite non-zero touch_max "
2766 "%d -> %d\n", __func__, features->touch_max, value);
2767 }
184eccd4 2768 return;
5ae6e89f
BT
2769 }
2770
601a22f3 2771 if (usage->usage_index + 1 == field->report_count) {
df03e9bd
JG
2772 if (equivalent_usage == wacom_wac->hid_data.last_slot_field) {
2773 bool touch_removed = wacom_wac_slot_is_active(wacom_wac->touch_input,
2774 wacom_wac->hid_data.id) && !wacom_wac->hid_data.tipswitch;
2775
2776 if (wacom_wac->hid_data.confidence || touch_removed) {
2777 wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input);
2778 }
2779 }
601a22f3 2780 }
5ae6e89f
BT
2781}
2782
06324e0c
JG
2783static void wacom_wac_finger_pre_report(struct hid_device *hdev,
2784 struct hid_report *report)
2785{
1b5d514a
JG
2786 struct wacom *wacom = hid_get_drvdata(hdev);
2787 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2788 struct hid_data* hid_data = &wacom_wac->hid_data;
003f50ab 2789 int i;
1b5d514a 2790
9d339fe4 2791 if (touch_is_muted(wacom_wac) && !wacom_wac->shared->touch_down)
5bed0128
JG
2792 return;
2793
f4e11d59 2794 wacom_wac->is_invalid_bt_frame = false;
7fb0413b
JG
2795
2796 hid_data->confidence = true;
f4e11d59 2797
20f3cf5f
JG
2798 hid_data->cc_report = 0;
2799 hid_data->cc_index = -1;
2800 hid_data->cc_value_index = -1;
2801
003f50ab
JG
2802 for (i = 0; i < report->maxfield; i++) {
2803 struct hid_field *field = report->field[i];
2804 int j;
2805
2806 for (j = 0; j < field->maxusage; j++) {
2807 struct hid_usage *usage = &field->usage[j];
ac2423c9
AAS
2808 unsigned int equivalent_usage =
2809 wacom_equivalent_usage(usage->hid);
003f50ab 2810
ac2423c9 2811 switch (equivalent_usage) {
003f50ab
JG
2812 case HID_GD_X:
2813 case HID_GD_Y:
2814 case HID_DG_WIDTH:
2815 case HID_DG_HEIGHT:
2816 case HID_DG_CONTACTID:
2817 case HID_DG_INRANGE:
2818 case HID_DG_INVERT:
2819 case HID_DG_TIPSWITCH:
ac2423c9 2820 hid_data->last_slot_field = equivalent_usage;
003f50ab 2821 break;
b43f977d
JG
2822 case HID_DG_CONTACTCOUNT:
2823 hid_data->cc_report = report->id;
2824 hid_data->cc_index = i;
2825 hid_data->cc_value_index = j;
2826 break;
499522c8
JG
2827 }
2828 }
2829 }
b43f977d
JG
2830
2831 if (hid_data->cc_report != 0 &&
2832 hid_data->cc_index >= 0) {
2833 struct hid_field *field = report->field[hid_data->cc_index];
2834 int value = field->value[hid_data->cc_value_index];
546e41ac 2835 if (value) {
b43f977d 2836 hid_data->num_expected = value;
546e41ac
JG
2837 hid_data->num_received = 0;
2838 }
b43f977d
JG
2839 }
2840 else {
2841 hid_data->num_expected = wacom_wac->features.touch_max;
546e41ac 2842 hid_data->num_received = 0;
b43f977d 2843 }
06324e0c
JG
2844}
2845
5ae6e89f
BT
2846static void wacom_wac_finger_report(struct hid_device *hdev,
2847 struct hid_report *report)
2848{
2849 struct wacom *wacom = hid_get_drvdata(hdev);
2850 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2a6cdbdd 2851 struct input_dev *input = wacom_wac->touch_input;
5ae6e89f
BT
2852 unsigned touch_max = wacom_wac->features.touch_max;
2853
ccb51c2e
JG
2854 /* if there was nothing to process, don't send an empty sync */
2855 if (wacom_wac->hid_data.num_expected == 0)
2856 return;
2857
1b5d514a
JG
2858 /* If more packets of data are expected, give us a chance to
2859 * process them rather than immediately syncing a partial
2860 * update.
2861 */
2862 if (wacom_wac->hid_data.num_received < wacom_wac->hid_data.num_expected)
2863 return;
2864
5ae6e89f 2865 if (touch_max > 1)
601a22f3
JG
2866 input_mt_sync_frame(input);
2867
5ae6e89f 2868 input_sync(input);
1b5d514a 2869 wacom_wac->hid_data.num_received = 0;
546e41ac 2870 wacom_wac->hid_data.num_expected = 0;
5ae6e89f
BT
2871
2872 /* keep touch state for pen event */
7d059ed0 2873 wacom_wac->shared->touch_down = wacom_wac_finger_count_touches(wacom_wac);
5ae6e89f
BT
2874}
2875
7704ac93
BT
2876void wacom_wac_usage_mapping(struct hid_device *hdev,
2877 struct hid_field *field, struct hid_usage *usage)
2878{
2879 struct wacom *wacom = hid_get_drvdata(hdev);
2880 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
e5bc8eb1 2881 struct wacom_features *features = &wacom_wac->features;
7704ac93 2882
ac2423c9
AAS
2883 if (WACOM_DIRECT_DEVICE(field))
2884 features->device_type |= WACOM_DEVICETYPE_DIRECT;
7704ac93 2885
5ac3d4ae
JG
2886 /* usage tests must precede field tests */
2887 if (WACOM_BATTERY_USAGE(usage))
2888 wacom_wac_battery_usage_mapping(hdev, field, usage);
2889 else if (WACOM_PAD_FIELD(field))
354a3298 2890 wacom_wac_pad_usage_mapping(hdev, field, usage);
5922e613 2891 else if (WACOM_PEN_FIELD(field))
354a3298 2892 wacom_wac_pen_usage_mapping(hdev, field, usage);
5922e613 2893 else if (WACOM_FINGER_FIELD(field))
354a3298 2894 wacom_wac_finger_usage_mapping(hdev, field, usage);
7704ac93
BT
2895}
2896
354a3298 2897void wacom_wac_event(struct hid_device *hdev, struct hid_field *field,
7704ac93
BT
2898 struct hid_usage *usage, __s32 value)
2899{
2900 struct wacom *wacom = hid_get_drvdata(hdev);
2901
2902 if (wacom->wacom_wac.features.type != HID_GENERIC)
354a3298 2903 return;
7704ac93 2904
60a22186
AAS
2905 if (value > field->logical_maximum || value < field->logical_minimum)
2906 return;
2907
5ac3d4ae
JG
2908 /* usage tests must precede field tests */
2909 if (WACOM_BATTERY_USAGE(usage))
2910 wacom_wac_battery_event(hdev, field, usage, value);
d6b67568 2911 else if (WACOM_PAD_FIELD(field))
5ac3d4ae
JG
2912 wacom_wac_pad_event(hdev, field, usage, value);
2913 else if (WACOM_PEN_FIELD(field) && wacom->wacom_wac.pen_input)
354a3298 2914 wacom_wac_pen_event(hdev, field, usage, value);
6f46cf9b 2915 else if (WACOM_FINGER_FIELD(field) && wacom->wacom_wac.touch_input)
354a3298 2916 wacom_wac_finger_event(hdev, field, usage, value);
7704ac93
BT
2917}
2918
f8b6a747
AAS
2919static void wacom_report_events(struct hid_device *hdev,
2920 struct hid_report *report, int collection_index,
2921 int field_index)
06324e0c
JG
2922{
2923 int r;
2924
f8b6a747 2925 for (r = field_index; r < report->maxfield; r++) {
06324e0c
JG
2926 struct hid_field *field;
2927 unsigned count, n;
2928
2929 field = report->field[r];
2930 count = field->report_count;
2931
2932 if (!(HID_MAIN_ITEM_VARIABLE & field->flags))
2933 continue;
2934
f8b6a747
AAS
2935 for (n = 0 ; n < count; n++) {
2936 if (field->usage[n].collection_index == collection_index)
2937 wacom_wac_event(hdev, field, &field->usage[n],
2938 field->value[n]);
2939 else
2940 return;
2941 }
06324e0c
JG
2942 }
2943}
2944
7ba8fc09 2945static int wacom_wac_collection(struct hid_device *hdev, struct hid_report *report,
f8b6a747
AAS
2946 int collection_index, struct hid_field *field,
2947 int field_index)
7704ac93
BT
2948{
2949 struct wacom *wacom = hid_get_drvdata(hdev);
06324e0c 2950
f8b6a747 2951 wacom_report_events(hdev, report, collection_index, field_index);
06324e0c 2952
a9ce7856
JG
2953 /*
2954 * Non-input reports may be sent prior to the device being
2955 * completely initialized. Since only their events need
2956 * to be processed, exit after 'wacom_report_events' has
2957 * been called to prevent potential crashes in the report-
2958 * processing functions.
2959 */
2960 if (report->type != HID_INPUT_REPORT)
f8b6a747 2961 return -1;
5ac3d4ae 2962
d9216d75
JG
2963 if (WACOM_PAD_FIELD(field))
2964 return 0;
2965 else if (WACOM_PEN_FIELD(field) && wacom->wacom_wac.pen_input)
c9cfb2ac 2966 wacom_wac_pen_report(hdev, report);
6f46cf9b 2967 else if (WACOM_FINGER_FIELD(field) && wacom->wacom_wac.touch_input)
c9cfb2ac 2968 wacom_wac_finger_report(hdev, report);
f8b6a747
AAS
2969
2970 return 0;
2971}
2972
2973void wacom_wac_report(struct hid_device *hdev, struct hid_report *report)
2974{
2975 struct wacom *wacom = hid_get_drvdata(hdev);
2976 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2977 struct hid_field *field;
2978 bool pad_in_hid_field = false, pen_in_hid_field = false,
d4b8efeb 2979 finger_in_hid_field = false, true_pad = false;
f8b6a747
AAS
2980 int r;
2981 int prev_collection = -1;
2982
2983 if (wacom_wac->features.type != HID_GENERIC)
2984 return;
2985
2986 for (r = 0; r < report->maxfield; r++) {
2987 field = report->field[r];
2988
2989 if (WACOM_PAD_FIELD(field))
2990 pad_in_hid_field = true;
2991 if (WACOM_PEN_FIELD(field))
2992 pen_in_hid_field = true;
2993 if (WACOM_FINGER_FIELD(field))
2994 finger_in_hid_field = true;
d4b8efeb
AAS
2995 if (wacom_equivalent_usage(field->physical) == HID_DG_TABLETFUNCTIONKEY)
2996 true_pad = true;
f8b6a747
AAS
2997 }
2998
2999 wacom_wac_battery_pre_report(hdev, report);
3000
3001 if (pad_in_hid_field && wacom->wacom_wac.pad_input)
3002 wacom_wac_pad_pre_report(hdev, report);
3003 if (pen_in_hid_field && wacom->wacom_wac.pen_input)
3004 wacom_wac_pen_pre_report(hdev, report);
3005 if (finger_in_hid_field && wacom->wacom_wac.touch_input)
3006 wacom_wac_finger_pre_report(hdev, report);
3007
3008 for (r = 0; r < report->maxfield; r++) {
3009 field = report->field[r];
3010
3011 if (field->usage[0].collection_index != prev_collection) {
3012 if (wacom_wac_collection(hdev, report,
3013 field->usage[0].collection_index, field, r) < 0)
3014 return;
3015 prev_collection = field->usage[0].collection_index;
3016 }
3017 }
3018
3019 wacom_wac_battery_report(hdev, report);
d4b8efeb
AAS
3020
3021 if (true_pad && wacom->wacom_wac.pad_input)
3022 wacom_wac_pad_report(hdev, report, field);
7704ac93
BT
3023}
3024
e1d38e49 3025static int wacom_bpt_touch(struct wacom_wac *wacom)
cb734c03 3026{
f4ccbef2 3027 struct wacom_features *features = &wacom->features;
2a6cdbdd 3028 struct input_dev *input = wacom->touch_input;
3116871f 3029 struct input_dev *pad_input = wacom->pad_input;
cb734c03 3030 unsigned char *data = wacom->data;
cb734c03
HR
3031 int i;
3032
5a6c865d
CB
3033 if (data[0] != 0x02)
3034 return 0;
3035
cb734c03 3036 for (i = 0; i < 2; i++) {
8f906860 3037 int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
1924e05e
PC
3038 bool touch = report_touch_events(wacom)
3039 && (data[offset + 3] & 0x80);
8f906860
CB
3040
3041 input_mt_slot(input, i);
3042 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
c5f4dec1 3043 if (touch) {
8f906860
CB
3044 int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
3045 int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
f4ccbef2
HR
3046 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
3047 x <<= 5;
3048 y <<= 5;
3049 }
cb734c03
HR
3050 input_report_abs(input, ABS_MT_POSITION_X, x);
3051 input_report_abs(input, ABS_MT_POSITION_Y, y);
cb734c03 3052 }
cb734c03
HR
3053 }
3054
9a1c0012 3055 input_mt_sync_frame(input);
cb734c03 3056
3116871f
BT
3057 input_report_key(pad_input, BTN_LEFT, (data[1] & 0x08) != 0);
3058 input_report_key(pad_input, BTN_FORWARD, (data[1] & 0x04) != 0);
3059 input_report_key(pad_input, BTN_BACK, (data[1] & 0x02) != 0);
3060 input_report_key(pad_input, BTN_RIGHT, (data[1] & 0x01) != 0);
7d059ed0 3061 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
cb734c03 3062
3116871f 3063 return 1;
cb734c03
HR
3064}
3065
7d059ed0 3066static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
73149ab8 3067{
9a35c411 3068 struct wacom_features *features = &wacom->features;
2a6cdbdd 3069 struct input_dev *input = wacom->touch_input;
73149ab8 3070 bool touch = data[1] & 0x80;
02295e68
PC
3071 int slot = input_mt_get_slot_by_key(input, data[0]);
3072
3073 if (slot < 0)
7d059ed0 3074 return;
73149ab8 3075
1924e05e 3076 touch = touch && report_touch_events(wacom);
73149ab8 3077
02295e68 3078 input_mt_slot(input, slot);
73149ab8
CB
3079 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
3080
3081 if (touch) {
3082 int x = (data[2] << 4) | (data[4] >> 4);
3083 int y = (data[3] << 4) | (data[4] & 0x0f);
9a35c411 3084 int width, height;
4e904954 3085
eda01dab 3086 if (features->type >= INTUOSPS && features->type <= INTUOSHT2) {
0b279da7
JG
3087 width = data[5] * 100;
3088 height = data[6] * 100;
9a35c411
PC
3089 } else {
3090 /*
3091 * "a" is a scaled-down area which we assume is
3092 * roughly circular and which can be described as:
3093 * a=(pi*r^2)/C.
3094 */
3095 int a = data[5];
d7da3a3c
PC
3096 int x_res = input_abs_get_res(input, ABS_MT_POSITION_X);
3097 int y_res = input_abs_get_res(input, ABS_MT_POSITION_Y);
3098 width = 2 * int_sqrt(a * WACOM_CONTACT_AREA_SCALE);
9a35c411
PC
3099 height = width * y_res / x_res;
3100 }
73149ab8
CB
3101
3102 input_report_abs(input, ABS_MT_POSITION_X, x);
3103 input_report_abs(input, ABS_MT_POSITION_Y, y);
4e904954
JG
3104 input_report_abs(input, ABS_MT_TOUCH_MAJOR, width);
3105 input_report_abs(input, ABS_MT_TOUCH_MINOR, height);
73149ab8
CB
3106 }
3107}
3108
3109static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
3110{
3116871f 3111 struct input_dev *input = wacom->pad_input;
b5fd2a3e 3112 struct wacom_features *features = &wacom->features;
73149ab8 3113
eda01dab 3114 if (features->type == INTUOSHT || features->type == INTUOSHT2) {
b5fd2a3e
PC
3115 input_report_key(input, BTN_LEFT, (data[1] & 0x02) != 0);
3116 input_report_key(input, BTN_BACK, (data[1] & 0x08) != 0);
3117 } else {
3118 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
3119 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
3120 }
73149ab8 3121 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
73149ab8
CB
3122 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
3123}
3124
3125static int wacom_bpt3_touch(struct wacom_wac *wacom)
3126{
73149ab8 3127 unsigned char *data = wacom->data;
19d57d3a 3128 int count = data[1] & 0x07;
eda01dab 3129 int touch_changed = 0, i;
73149ab8 3130
5a6c865d
CB
3131 if (data[0] != 0x02)
3132 return 0;
3133
73149ab8
CB
3134 /* data has up to 7 fixed sized 8-byte messages starting at data[2] */
3135 for (i = 0; i < count; i++) {
3136 int offset = (8 * i) + 2;
3137 int msg_id = data[offset];
3138
eda01dab 3139 if (msg_id >= 2 && msg_id <= 17) {
7d059ed0 3140 wacom_bpt3_touch_msg(wacom, data + offset);
eda01dab
PC
3141 touch_changed++;
3142 } else if (msg_id == 128)
73149ab8
CB
3143 wacom_bpt3_button_msg(wacom, data + offset);
3144
3145 }
2a6cdbdd 3146
eda01dab 3147 /* only update touch if we actually have a touchpad and touch data changed */
84dfbd7f 3148 if (wacom->touch_input && touch_changed) {
2a6cdbdd
JG
3149 input_mt_sync_frame(wacom->touch_input);
3150 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
3151 }
73149ab8 3152
3116871f 3153 return 1;
73149ab8
CB
3154}
3155
2aaacb15
CB
3156static int wacom_bpt_pen(struct wacom_wac *wacom)
3157{
961794a0 3158 struct wacom_features *features = &wacom->features;
2a6cdbdd 3159 struct input_dev *input = wacom->pen_input;
2aaacb15 3160 unsigned char *data = wacom->data;
8947b0cf
JG
3161 int x = 0, y = 0, p = 0, d = 0;
3162 bool pen = false, btn1 = false, btn2 = false;
3163 bool range, prox, rdy;
2aaacb15 3164
4ca4ec71 3165 if (data[0] != WACOM_REPORT_PENABLED)
5a6c865d
CB
3166 return 0;
3167
8947b0cf
JG
3168 range = (data[1] & 0x80) == 0x80;
3169 prox = (data[1] & 0x40) == 0x40;
3170 rdy = (data[1] & 0x20) == 0x20;
3171
3172 wacom->shared->stylus_in_proximity = range;
3173 if (delay_pen_events(wacom))
3174 return 0;
3175
3176 if (rdy) {
3177 p = le16_to_cpup((__le16 *)&data[6]);
3178 pen = data[1] & 0x01;
3179 btn1 = data[1] & 0x02;
3180 btn2 = data[1] & 0x04;
3181 }
3182 if (prox) {
3183 x = le16_to_cpup((__le16 *)&data[2]);
3184 y = le16_to_cpup((__le16 *)&data[4]);
2aaacb15 3185
0149931e
PC
3186 if (data[1] & 0x08) {
3187 wacom->tool[0] = BTN_TOOL_RUBBER;
3188 wacom->id[0] = ERASER_DEVICE_ID;
3189 } else {
3190 wacom->tool[0] = BTN_TOOL_PEN;
3191 wacom->id[0] = STYLUS_DEVICE_ID;
2aaacb15 3192 }
8947b0cf 3193 wacom->reporting_data = true;
0149931e 3194 }
8947b0cf 3195 if (range) {
c18c2cec
CB
3196 /*
3197 * Convert distance from out prox to distance from tablet.
3198 * distance will be greater than distance_max once
3199 * touching and applying pressure; do not report negative
3200 * distance.
3201 */
961794a0
PC
3202 if (data[8] <= features->distance_max)
3203 d = features->distance_max - data[8];
0149931e
PC
3204 } else {
3205 wacom->id[0] = 0;
2aaacb15
CB
3206 }
3207
8947b0cf
JG
3208 if (wacom->reporting_data) {
3209 input_report_key(input, BTN_TOUCH, pen);
3210 input_report_key(input, BTN_STYLUS, btn1);
3211 input_report_key(input, BTN_STYLUS2, btn2);
2aaacb15 3212
8947b0cf
JG
3213 if (prox || !range) {
3214 input_report_abs(input, ABS_X, x);
3215 input_report_abs(input, ABS_Y, y);
3216 }
3217 input_report_abs(input, ABS_PRESSURE, p);
3218 input_report_abs(input, ABS_DISTANCE, d);
2aaacb15 3219
8947b0cf
JG
3220 input_report_key(input, wacom->tool[0], range); /* PEN or RUBBER */
3221 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
3222 }
3223
3224 if (!range) {
3225 wacom->reporting_data = false;
3226 }
2aaacb15
CB
3227
3228 return 1;
3229}
3230
e1d38e49
CB
3231static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
3232{
eda01dab
PC
3233 struct wacom_features *features = &wacom->features;
3234
3235 if ((features->type == INTUOSHT2) &&
eda01dab
PC
3236 (features->device_type & WACOM_DEVICETYPE_PEN))
3237 return wacom_intuos_irq(wacom);
3238 else if (len == WACOM_PKGLEN_BBTOUCH)
e1d38e49 3239 return wacom_bpt_touch(wacom);
73149ab8
CB
3240 else if (len == WACOM_PKGLEN_BBTOUCH3)
3241 return wacom_bpt3_touch(wacom);
3242 else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
2aaacb15 3243 return wacom_bpt_pen(wacom);
e1d38e49
CB
3244
3245 return 0;
3246}
3247
8c97a765
BT
3248static void wacom_bamboo_pad_pen_event(struct wacom_wac *wacom,
3249 unsigned char *data)
3250{
3251 unsigned char prefix;
3252
3253 /*
3254 * We need to reroute the event from the debug interface to the
3255 * pen interface.
3256 * We need to add the report ID to the actual pen report, so we
3257 * temporary overwrite the first byte to prevent having to kzalloc/kfree
3258 * and memcpy the report.
3259 */
3260 prefix = data[0];
3261 data[0] = WACOM_REPORT_BPAD_PEN;
3262
3263 /*
3264 * actually reroute the event.
3265 * No need to check if wacom->shared->pen is valid, hid_input_report()
3266 * will check for us.
3267 */
3268 hid_input_report(wacom->shared->pen, HID_INPUT_REPORT, data,
3269 WACOM_PKGLEN_PENABLED, 1);
3270
3271 data[0] = prefix;
3272}
3273
3274static int wacom_bamboo_pad_touch_event(struct wacom_wac *wacom,
3275 unsigned char *data)
3276{
2a6cdbdd 3277 struct input_dev *input = wacom->touch_input;
8c97a765
BT
3278 unsigned char *finger_data, prefix;
3279 unsigned id;
3280 int x, y;
3281 bool valid;
3282
3283 prefix = data[0];
3284
3285 for (id = 0; id < wacom->features.touch_max; id++) {
3286 valid = !!(prefix & BIT(id)) &&
1924e05e 3287 report_touch_events(wacom);
8c97a765
BT
3288
3289 input_mt_slot(input, id);
3290 input_mt_report_slot_state(input, MT_TOOL_FINGER, valid);
3291
3292 if (!valid)
3293 continue;
3294
3295 finger_data = data + 1 + id * 3;
3296 x = finger_data[0] | ((finger_data[1] & 0x0f) << 8);
3297 y = (finger_data[2] << 4) | (finger_data[1] >> 4);
3298
3299 input_report_abs(input, ABS_MT_POSITION_X, x);
3300 input_report_abs(input, ABS_MT_POSITION_Y, y);
3301 }
3302
3303 input_mt_sync_frame(input);
3304
3305 input_report_key(input, BTN_LEFT, prefix & 0x40);
3306 input_report_key(input, BTN_RIGHT, prefix & 0x80);
3307
3308 /* keep touch state for pen event */
1924e05e 3309 wacom->shared->touch_down = !!prefix && report_touch_events(wacom);
8c97a765
BT
3310
3311 return 1;
3312}
3313
3314static int wacom_bamboo_pad_irq(struct wacom_wac *wacom, size_t len)
3315{
3316 unsigned char *data = wacom->data;
3317
3318 if (!((len == WACOM_PKGLEN_BPAD_TOUCH) ||
3319 (len == WACOM_PKGLEN_BPAD_TOUCH_USB)) ||
3320 (data[0] != WACOM_REPORT_BPAD_TOUCH))
3321 return 0;
3322
3323 if (data[1] & 0x01)
3324 wacom_bamboo_pad_pen_event(wacom, &data[1]);
3325
3326 if (data[1] & 0x02)
3327 return wacom_bamboo_pad_touch_event(wacom, &data[9]);
3328
3329 return 0;
3330}
3331
d3825d51
CB
3332static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
3333{
16bf288c
CB
3334 unsigned char *data = wacom->data;
3335 int connected;
3336
b5fd2a3e 3337 if (len != WACOM_PKGLEN_WIRELESS || data[0] != WACOM_REPORT_WL)
d3825d51
CB
3338 return 0;
3339
16bf288c
CB
3340 connected = data[1] & 0x01;
3341 if (connected) {
b0882cb7 3342 int pid, battery, charging;
16bf288c 3343
eda01dab
PC
3344 if ((wacom->shared->type == INTUOSHT ||
3345 wacom->shared->type == INTUOSHT2) &&
44b96838
PC
3346 wacom->shared->touch_input &&
3347 wacom->shared->touch_max) {
961794a0
PC
3348 input_report_switch(wacom->shared->touch_input,
3349 SW_MUTE_DEVICE, data[5] & 0x40);
3350 input_sync(wacom->shared->touch_input);
3351 }
3352
16bf288c 3353 pid = get_unaligned_be16(&data[6]);
ac8d1010 3354 battery = (data[5] & 0x3f) * 100 / 31;
b0882cb7 3355 charging = !!(data[5] & 0x80);
16bf288c
CB
3356 if (wacom->pid != pid) {
3357 wacom->pid = pid;
d17d1f17 3358 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
16bf288c 3359 }
ac8d1010 3360
16e45989
JG
3361 wacom_notify_battery(wacom, WACOM_POWER_SUPPLY_STATUS_AUTO,
3362 battery, charging, 1, 0);
953f2c5f 3363
16bf288c
CB
3364 } else if (wacom->pid != 0) {
3365 /* disconnected while previously connected */
3366 wacom->pid = 0;
d17d1f17 3367 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
16e45989 3368 wacom_notify_battery(wacom, POWER_SUPPLY_STATUS_UNKNOWN, 0, 0, 0, 0);
16bf288c
CB
3369 }
3370
d3825d51
CB
3371 return 0;
3372}
3373
4ca4ec71
JG
3374static int wacom_status_irq(struct wacom_wac *wacom_wac, size_t len)
3375{
8f93b0b2 3376 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
4ca4ec71
JG
3377 struct wacom_features *features = &wacom_wac->features;
3378 unsigned char *data = wacom_wac->data;
3379
3380 if (data[0] != WACOM_REPORT_USB)
3381 return 0;
3382
eda01dab
PC
3383 if ((features->type == INTUOSHT ||
3384 features->type == INTUOSHT2) &&
4ca4ec71
JG
3385 wacom_wac->shared->touch_input &&
3386 features->touch_max) {
3387 input_report_switch(wacom_wac->shared->touch_input,
3388 SW_MUTE_DEVICE, data[8] & 0x40);
3389 input_sync(wacom_wac->shared->touch_input);
16bf288c
CB
3390 }
3391
8f93b0b2
JG
3392 if (data[9] & 0x02) { /* wireless module is attached */
3393 int battery = (data[8] & 0x3f) * 100 / 31;
b0882cb7 3394 bool charging = !!(data[8] & 0x80);
8f93b0b2 3395
7fc68653 3396 features->quirks |= WACOM_QUIRK_BATTERY;
16e45989
JG
3397 wacom_notify_battery(wacom_wac, WACOM_POWER_SUPPLY_STATUS_AUTO,
3398 battery, charging, battery || charging, 1);
8f93b0b2
JG
3399 }
3400 else if ((features->quirks & WACOM_QUIRK_BATTERY) &&
59d69bc8 3401 wacom->battery.battery) {
8f93b0b2 3402 features->quirks &= ~WACOM_QUIRK_BATTERY;
16e45989 3403 wacom_notify_battery(wacom_wac, POWER_SUPPLY_STATUS_UNKNOWN, 0, 0, 0, 0);
8f93b0b2 3404 }
d3825d51
CB
3405 return 0;
3406}
3407
95dd3b30 3408void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
3bea733a 3409{
95dd3b30
DT
3410 bool sync;
3411
e33da8a5 3412 switch (wacom_wac->features.type) {
73a97f4f 3413 case PENPARTNER:
95dd3b30
DT
3414 sync = wacom_penpartner_irq(wacom_wac);
3415 break;
73a97f4f
DT
3416
3417 case PL:
95dd3b30
DT
3418 sync = wacom_pl_irq(wacom_wac);
3419 break;
73a97f4f
DT
3420
3421 case WACOM_G4:
3422 case GRAPHIRE:
387142bb 3423 case GRAPHIRE_BT:
73a97f4f 3424 case WACOM_MO:
95dd3b30
DT
3425 sync = wacom_graphire_irq(wacom_wac);
3426 break;
73a97f4f
DT
3427
3428 case PTU:
95dd3b30
DT
3429 sync = wacom_ptu_irq(wacom_wac);
3430 break;
73a97f4f 3431
c8f2edc5
PC
3432 case DTU:
3433 sync = wacom_dtu_irq(wacom_wac);
3434 break;
3435
497ab1f2 3436 case DTUS:
fff00bf8 3437 case DTUSX:
497ab1f2
PC
3438 sync = wacom_dtus_irq(wacom_wac);
3439 break;
3440
73a97f4f
DT
3441 case INTUOS:
3442 case INTUOS3S:
3443 case INTUOS3:
3444 case INTUOS3L:
3445 case INTUOS4S:
3446 case INTUOS4:
3447 case INTUOS4L:
3448 case CINTIQ:
3449 case WACOM_BEE:
56218563 3450 case WACOM_13HD:
3a4b4aaa 3451 case WACOM_21UX2:
d838c644 3452 case WACOM_22HD:
803296b6 3453 case WACOM_24HD:
500d4160 3454 case WACOM_27QHD:
a112e9fd 3455 case DTK:
36d3c510 3456 case CINTIQ_HYBRID:
f7acb55c 3457 case CINTIQ_COMPANION_2:
95dd3b30
DT
3458 sync = wacom_intuos_irq(wacom_wac);
3459 break;
73a97f4f 3460
81af7e61
BT
3461 case INTUOS4WL:
3462 sync = wacom_intuos_bt_irq(wacom_wac, len);
3463 break;
3464
b1e4279e 3465 case WACOM_24HDT:
500d4160 3466 case WACOM_27QHDT:
b1e4279e
JG
3467 sync = wacom_24hdt_irq(wacom_wac);
3468 break;
3469
ae584ca4
JG
3470 case INTUOS5S:
3471 case INTUOS5:
3472 case INTUOS5L:
9a35c411
PC
3473 case INTUOSPS:
3474 case INTUOSPM:
3475 case INTUOSPL:
ae584ca4
JG
3476 if (len == WACOM_PKGLEN_BBTOUCH3)
3477 sync = wacom_bpt3_touch(wacom_wac);
2d13a438
JG
3478 else if (wacom_wac->data[0] == WACOM_REPORT_USB)
3479 sync = wacom_status_irq(wacom_wac, len);
ae584ca4
JG
3480 else
3481 sync = wacom_intuos_irq(wacom_wac);
3482 break;
3483
4922cd26 3484 case INTUOSP2_BT:
912c6aa6 3485 case INTUOSP2S_BT:
87046b6c 3486 case INTUOSHT3_BT:
4922cd26
JG
3487 sync = wacom_intuos_pro2_bt_irq(wacom_wac, len);
3488 break;
3489
73a97f4f 3490 case TABLETPC:
ac173837 3491 case TABLETPCE:
73a97f4f 3492 case TABLETPC2FG:
1963518b 3493 case MTSCREEN:
6afdc289 3494 case MTTPC:
d51ddb2b 3495 case MTTPC_B:
95dd3b30
DT
3496 sync = wacom_tpc_irq(wacom_wac, len);
3497 break;
73a97f4f 3498
cb734c03 3499 case BAMBOO_PT:
3b164a00
PC
3500 case BAMBOO_PEN:
3501 case BAMBOO_TOUCH:
b5fd2a3e 3502 case INTUOSHT:
eda01dab 3503 case INTUOSHT2:
4ca4ec71
JG
3504 if (wacom_wac->data[0] == WACOM_REPORT_USB)
3505 sync = wacom_status_irq(wacom_wac, len);
3506 else
3507 sync = wacom_bpt_irq(wacom_wac, len);
cb734c03
HR
3508 break;
3509
8c97a765
BT
3510 case BAMBOO_PAD:
3511 sync = wacom_bamboo_pad_irq(wacom_wac, len);
cb734c03
HR
3512 break;
3513
d3825d51
CB
3514 case WIRELESS:
3515 sync = wacom_wireless_irq(wacom_wac, len);
3516 break;
3517
72b236d6 3518 case REMOTE:
e6f2813a 3519 sync = false;
72b236d6 3520 if (wacom_wac->data[0] == WACOM_REPORT_DEVICE_LIST)
e6f2813a 3521 wacom_remote_status_irq(wacom_wac, len);
72b236d6
AS
3522 else
3523 sync = wacom_remote_irq(wacom_wac, len);
3524 break;
3525
73a97f4f 3526 default:
95dd3b30
DT
3527 sync = false;
3528 break;
3bea733a 3529 }
95dd3b30 3530
d2d13f18 3531 if (sync) {
2a6cdbdd
JG
3532 if (wacom_wac->pen_input)
3533 input_sync(wacom_wac->pen_input);
3534 if (wacom_wac->touch_input)
3535 input_sync(wacom_wac->touch_input);
d2d13f18
BT
3536 if (wacom_wac->pad_input)
3537 input_sync(wacom_wac->pad_input);
3538 }
3bea733a
PC
3539}
3540
eda01dab 3541static void wacom_setup_basic_pro_pen(struct wacom_wac *wacom_wac)
8da23fc1 3542{
2a6cdbdd 3543 struct input_dev *input_dev = wacom_wac->pen_input;
8da23fc1
DT
3544
3545 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
8da23fc1 3546
8da23fc1 3547 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
8da23fc1
DT
3548 __set_bit(BTN_STYLUS, input_dev->keybit);
3549 __set_bit(BTN_STYLUS2, input_dev->keybit);
3550
3551 input_set_abs_params(input_dev, ABS_DISTANCE,
bef7e200 3552 0, wacom_wac->features.distance_max, wacom_wac->features.distance_fuzz, 0);
eda01dab
PC
3553}
3554
3555static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
3556{
3557 struct input_dev *input_dev = wacom_wac->pen_input;
bef7e200 3558 struct wacom_features *features = &wacom_wac->features;
eda01dab
PC
3559
3560 wacom_setup_basic_pro_pen(wacom_wac);
3561
3562 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
3563 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
3564 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
3565 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
3566
8da23fc1 3567 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
bef7e200 3568 input_set_abs_params(input_dev, ABS_TILT_X, -64, 63, features->tilt_fuzz, 0);
26fe4124 3569 input_abs_set_res(input_dev, ABS_TILT_X, 57);
bef7e200 3570 input_set_abs_params(input_dev, ABS_TILT_Y, -64, 63, features->tilt_fuzz, 0);
26fe4124 3571 input_abs_set_res(input_dev, ABS_TILT_Y, 57);
6521d0bf
PC
3572}
3573
3574static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
3575{
2a6cdbdd 3576 struct input_dev *input_dev = wacom_wac->pen_input;
6521d0bf
PC
3577
3578 input_set_capability(input_dev, EV_REL, REL_WHEEL);
3579
3580 wacom_setup_cintiq(wacom_wac);
3581
3582 __set_bit(BTN_LEFT, input_dev->keybit);
3583 __set_bit(BTN_RIGHT, input_dev->keybit);
3584 __set_bit(BTN_MIDDLE, input_dev->keybit);
3585 __set_bit(BTN_SIDE, input_dev->keybit);
3586 __set_bit(BTN_EXTRA, input_dev->keybit);
3587 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
3588 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
3589
8da23fc1 3590 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
26fe4124 3591 input_abs_set_res(input_dev, ABS_RZ, 287);
8da23fc1
DT
3592 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
3593}
3594
42f4f272 3595void wacom_setup_device_quirks(struct wacom *wacom)
bc73dd39 3596{
11db8173 3597 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
42f4f272 3598 struct wacom_features *features = &wacom->wacom_wac.features;
bc73dd39 3599
862cf553
JG
3600 /* The pen and pad share the same interface on most devices */
3601 if (features->type == GRAPHIRE_BT || features->type == WACOM_G4 ||
3b164a00
PC
3602 features->type == DTUS ||
3603 (features->type >= INTUOS3S && features->type <= WACOM_MO)) {
862cf553
JG
3604 if (features->device_type & WACOM_DEVICETYPE_PEN)
3605 features->device_type |= WACOM_DEVICETYPE_PAD;
3606 }
bc73dd39
HR
3607
3608 /* touch device found but size is not defined. use default */
aa86b18c 3609 if (features->device_type & WACOM_DEVICETYPE_TOUCH && !features->x_max) {
bc73dd39
HR
3610 features->x_max = 1023;
3611 features->y_max = 1023;
3612 }
3613
42f4f272
PC
3614 /*
3615 * Intuos5/Pro and Bamboo 3rd gen have no useful data about its
3616 * touch interface in its HID descriptor. If this is the touch
3617 * interface (PacketSize of WACOM_PKGLEN_BBTOUCH3), override the
3618 * tablet values.
3619 */
3b164a00
PC
3620 if ((features->type >= INTUOS5S && features->type <= INTUOSPL) ||
3621 (features->type >= INTUOSHT && features->type <= BAMBOO_PT)) {
42f4f272 3622 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
862cf553
JG
3623 if (features->touch_max)
3624 features->device_type |= WACOM_DEVICETYPE_TOUCH;
a3088abc 3625 if (features->type >= INTUOSHT && features->type <= BAMBOO_PT)
862cf553 3626 features->device_type |= WACOM_DEVICETYPE_PAD;
42f4f272 3627
3b8d5735
JG
3628 if (features->type == INTUOSHT2) {
3629 features->x_max = features->x_max / 10;
3630 features->y_max = features->y_max / 10;
3631 }
3632 else {
3633 features->x_max = 4096;
3634 features->y_max = 4096;
3635 }
42f4f272 3636 }
9633920e
JG
3637 else if (features->pktlen == WACOM_PKGLEN_BBTOUCH) {
3638 features->device_type |= WACOM_DEVICETYPE_PAD;
3639 }
42f4f272
PC
3640 }
3641
580549ef
BT
3642 /*
3643 * Hack for the Bamboo One:
3644 * the device presents a PAD/Touch interface as most Bamboos and even
3645 * sends ghosts PAD data on it. However, later, we must disable this
3646 * ghost interface, and we can not detect it unless we set it here
3647 * to WACOM_DEVICETYPE_PAD or WACOM_DEVICETYPE_TOUCH.
3648 */
3649 if (features->type == BAMBOO_PEN &&
3650 features->pktlen == WACOM_PKGLEN_BBTOUCH3)
3651 features->device_type |= WACOM_DEVICETYPE_PAD;
3652
42f4f272 3653 /*
042628ab
JG
3654 * Raw Wacom-mode pen and touch events both come from interface
3655 * 0, whose HID descriptor has an application usage of 0xFF0D
8de82280 3656 * (i.e., WACOM_HID_WD_DIGITIZER). We route pen packets back
042628ab 3657 * out through the HID_GENERIC device created for interface 1,
70caee0a 3658 * so rewrite this one to be of type WACOM_DEVICETYPE_TOUCH.
42f4f272
PC
3659 */
3660 if (features->type == BAMBOO_PAD)
70caee0a 3661 features->device_type = WACOM_DEVICETYPE_TOUCH;
42f4f272 3662
72b236d6
AS
3663 if (features->type == REMOTE)
3664 features->device_type = WACOM_DEVICETYPE_PAD;
42f4f272 3665
912c6aa6
AAS
3666 if (features->type == INTUOSP2_BT ||
3667 features->type == INTUOSP2S_BT) {
4922cd26
JG
3668 features->device_type |= WACOM_DEVICETYPE_PEN |
3669 WACOM_DEVICETYPE_PAD |
3670 WACOM_DEVICETYPE_TOUCH;
3671 features->quirks |= WACOM_QUIRK_BATTERY;
3672 }
3673
87046b6c
AAS
3674 if (features->type == INTUOSHT3_BT) {
3675 features->device_type |= WACOM_DEVICETYPE_PEN |
3676 WACOM_DEVICETYPE_PAD;
3677 features->quirks |= WACOM_QUIRK_BATTERY;
3678 }
3679
e5bc8eb1
JG
3680 switch (features->type) {
3681 case PL:
3682 case DTU:
3683 case DTUS:
3684 case DTUSX:
3685 case WACOM_21UX2:
3686 case WACOM_22HD:
3687 case DTK:
3688 case WACOM_24HD:
3689 case WACOM_27QHD:
3690 case CINTIQ_HYBRID:
3691 case CINTIQ_COMPANION_2:
3692 case CINTIQ:
3693 case WACOM_BEE:
3694 case WACOM_13HD:
3695 case WACOM_24HDT:
3696 case WACOM_27QHDT:
3697 case TABLETPC:
3698 case TABLETPCE:
3699 case TABLETPC2FG:
3700 case MTSCREEN:
3701 case MTTPC:
3702 case MTTPC_B:
3703 features->device_type |= WACOM_DEVICETYPE_DIRECT;
3704 break;
3705 }
3706
42f4f272
PC
3707 if (wacom->hdev->bus == BUS_BLUETOOTH)
3708 features->quirks |= WACOM_QUIRK_BATTERY;
3709
73149ab8 3710 /* quirk for bamboo touch with 2 low res touches */
be853fd1 3711 if ((features->type == BAMBOO_PT || features->type == BAMBOO_TOUCH) &&
73149ab8 3712 features->pktlen == WACOM_PKGLEN_BBTOUCH) {
f4ccbef2
HR
3713 features->x_max <<= 5;
3714 features->y_max <<= 5;
3715 features->x_fuzz <<= 5;
3716 features->y_fuzz <<= 5;
f4ccbef2 3717 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
cb734c03 3718 }
d3825d51
CB
3719
3720 if (features->type == WIRELESS) {
ccad85cc 3721 if (features->device_type == WACOM_DEVICETYPE_WL_MONITOR) {
ac8d1010
BT
3722 features->quirks |= WACOM_QUIRK_BATTERY;
3723 }
d3825d51 3724 }
7c35dc3c
BT
3725
3726 if (features->type == REMOTE)
3727 features->device_type |= WACOM_DEVICETYPE_WL_MONITOR;
11db8173
JG
3728
3729 /* HID descriptor for DTK-2451 / DTH-2452 claims to report lots
3730 * of things it shouldn't. Lets fix up the damage...
3731 */
3732 if (wacom->hdev->product == 0x382 || wacom->hdev->product == 0x37d) {
3733 features->quirks &= ~WACOM_QUIRK_TOOLSERIAL;
3734 __clear_bit(BTN_TOOL_BRUSH, wacom_wac->pen_input->keybit);
3735 __clear_bit(BTN_TOOL_PENCIL, wacom_wac->pen_input->keybit);
3736 __clear_bit(BTN_TOOL_AIRBRUSH, wacom_wac->pen_input->keybit);
3737 __clear_bit(ABS_Z, wacom_wac->pen_input->absbit);
3738 __clear_bit(ABS_DISTANCE, wacom_wac->pen_input->absbit);
3739 __clear_bit(ABS_TILT_X, wacom_wac->pen_input->absbit);
3740 __clear_bit(ABS_TILT_Y, wacom_wac->pen_input->absbit);
3741 __clear_bit(ABS_WHEEL, wacom_wac->pen_input->absbit);
3742 __clear_bit(ABS_MISC, wacom_wac->pen_input->absbit);
3743 __clear_bit(MSC_SERIAL, wacom_wac->pen_input->mscbit);
3744 __clear_bit(EV_MSC, wacom_wac->pen_input->evbit);
3745 }
bc73dd39
HR
3746}
3747
2636a3f2 3748int wacom_setup_pen_input_capabilities(struct input_dev *input_dev,
8c0e0a4f
PC
3749 struct wacom_wac *wacom_wac)
3750{
3751 struct wacom_features *features = &wacom_wac->features;
8c0e0a4f 3752
2636a3f2
JG
3753 if (!(features->device_type & WACOM_DEVICETYPE_PEN))
3754 return -ENODEV;
3755
e5bc8eb1
JG
3756 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
3757 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
3758 else
3759 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
3760
46fc466e
PC
3761 if (features->type == HID_GENERIC)
3762 /* setup has already been done */
7704ac93
BT
3763 return 0;
3764
276559d8 3765 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
8c0e0a4f 3766 __set_bit(BTN_TOUCH, input_dev->keybit);
8da23fc1
DT
3767 __set_bit(ABS_MISC, input_dev->absbit);
3768
e779ef23
JG
3769 input_set_abs_params(input_dev, ABS_X, 0 + features->offset_left,
3770 features->x_max - features->offset_right,
3771 features->x_fuzz, 0);
3772 input_set_abs_params(input_dev, ABS_Y, 0 + features->offset_top,
3773 features->y_max - features->offset_bottom,
3774 features->y_fuzz, 0);
2636a3f2
JG
3775 input_set_abs_params(input_dev, ABS_PRESSURE, 0,
3776 features->pressure_max, features->pressure_fuzz, 0);
3777
3778 /* penabled devices have fixed resolution for each model */
3779 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
3780 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
3781
497ab1f2 3782 switch (features->type) {
387142bb
BT
3783 case GRAPHIRE_BT:
3784 __clear_bit(ABS_MISC, input_dev->absbit);
df561f66 3785 fallthrough;
a2f71c6c
PC
3786
3787 case WACOM_MO:
3788 case WACOM_G4:
387142bb
BT
3789 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
3790 features->distance_max,
bef7e200 3791 features->distance_fuzz, 0);
df561f66 3792 fallthrough;
803296b6 3793
a2f71c6c 3794 case GRAPHIRE:
387142bb 3795 input_set_capability(input_dev, EV_REL, REL_WHEEL);
803296b6 3796
387142bb
BT
3797 __set_bit(BTN_LEFT, input_dev->keybit);
3798 __set_bit(BTN_RIGHT, input_dev->keybit);
3799 __set_bit(BTN_MIDDLE, input_dev->keybit);
3800
3801 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
3802 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
3803 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
3804 __set_bit(BTN_STYLUS, input_dev->keybit);
3805 __set_bit(BTN_STYLUS2, input_dev->keybit);
387142bb 3806 break;
c73a1afb 3807
500d4160 3808 case WACOM_27QHD:
803296b6 3809 case WACOM_24HD:
a112e9fd 3810 case DTK:
d838c644 3811 case WACOM_22HD:
3a4b4aaa 3812 case WACOM_21UX2:
73a97f4f 3813 case WACOM_BEE:
6521d0bf 3814 case CINTIQ:
56218563 3815 case WACOM_13HD:
a2f71c6c 3816 case CINTIQ_HYBRID:
f7acb55c 3817 case CINTIQ_COMPANION_2:
56218563 3818 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
26fe4124 3819 input_abs_set_res(input_dev, ABS_Z, 287);
56218563
PC
3820 wacom_setup_cintiq(wacom_wac);
3821 break;
3822
73a97f4f
DT
3823 case INTUOS3:
3824 case INTUOS3L:
73a97f4f 3825 case INTUOS3S:
a2f71c6c
PC
3826 case INTUOS4:
3827 case INTUOS4WL:
3828 case INTUOS4L:
3829 case INTUOS4S:
8da23fc1 3830 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
26fe4124 3831 input_abs_set_res(input_dev, ABS_Z, 287);
df561f66 3832 fallthrough;
73a97f4f
DT
3833
3834 case INTUOS:
8da23fc1 3835 wacom_setup_intuos(wacom_wac);
73a97f4f
DT
3836 break;
3837
9fee6195
JG
3838 case INTUOS5:
3839 case INTUOS5L:
9a35c411
PC
3840 case INTUOSPM:
3841 case INTUOSPL:
ae584ca4 3842 case INTUOS5S:
9a35c411 3843 case INTUOSPS:
4922cd26 3844 case INTUOSP2_BT:
912c6aa6 3845 case INTUOSP2S_BT:
2636a3f2
JG
3846 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
3847 features->distance_max,
bef7e200 3848 features->distance_fuzz, 0);
ae584ca4 3849
2636a3f2
JG
3850 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
3851 input_abs_set_res(input_dev, ABS_Z, 287);
ae584ca4 3852
2636a3f2 3853 wacom_setup_intuos(wacom_wac);
ae584ca4
JG
3854 break;
3855
b1e4279e 3856 case WACOM_24HDT:
500d4160 3857 case WACOM_27QHDT:
1963518b 3858 case MTSCREEN:
6afdc289 3859 case MTTPC:
d51ddb2b 3860 case MTTPC_B:
6795a524 3861 case TABLETPC2FG:
73a97f4f 3862 case TABLETPC:
ac173837 3863 case TABLETPCE:
a43c7c53 3864 __clear_bit(ABS_MISC, input_dev->absbit);
df561f66 3865 fallthrough;
73a97f4f 3866
497ab1f2 3867 case DTUS:
fff00bf8 3868 case DTUSX:
73a97f4f 3869 case PL:
c8f2edc5 3870 case DTU:
8da23fc1 3871 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
3512069e 3872 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
8da23fc1
DT
3873 __set_bit(BTN_STYLUS, input_dev->keybit);
3874 __set_bit(BTN_STYLUS2, input_dev->keybit);
3512069e
JG
3875 break;
3876
3877 case PTU:
8da23fc1 3878 __set_bit(BTN_STYLUS2, input_dev->keybit);
df561f66 3879 fallthrough;
73a97f4f
DT
3880
3881 case PENPARTNER:
1fab84aa 3882 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
8da23fc1 3883 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1fab84aa 3884 __set_bit(BTN_STYLUS, input_dev->keybit);
73a97f4f 3885 break;
cb734c03 3886
b5fd2a3e 3887 case INTUOSHT:
cb734c03 3888 case BAMBOO_PT:
3b164a00 3889 case BAMBOO_PEN:
eda01dab 3890 case INTUOSHT2:
87046b6c
AAS
3891 case INTUOSHT3_BT:
3892 if (features->type == INTUOSHT2 ||
3893 features->type == INTUOSHT3_BT) {
eda01dab
PC
3894 wacom_setup_basic_pro_pen(wacom_wac);
3895 } else {
3896 __clear_bit(ABS_MISC, input_dev->absbit);
3897 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
3898 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
3899 __set_bit(BTN_STYLUS, input_dev->keybit);
3900 __set_bit(BTN_STYLUS2, input_dev->keybit);
3901 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2636a3f2 3902 features->distance_max,
bef7e200 3903 features->distance_fuzz, 0);
eda01dab 3904 }
2636a3f2
JG
3905 break;
3906 case BAMBOO_PAD:
3907 __clear_bit(ABS_MISC, input_dev->absbit);
3908 break;
3909 }
3910 return 0;
3911}
02295e68 3912
2636a3f2
JG
3913int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
3914 struct wacom_wac *wacom_wac)
3915{
3916 struct wacom_features *features = &wacom_wac->features;
30ebc1ae 3917
2636a3f2
JG
3918 if (!(features->device_type & WACOM_DEVICETYPE_TOUCH))
3919 return -ENODEV;
3920
e5bc8eb1
JG
3921 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
3922 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
3923 else
3924 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
3925
2636a3f2
JG
3926 if (features->type == HID_GENERIC)
3927 /* setup has already been done */
3928 return 0;
3929
276559d8 3930 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2636a3f2
JG
3931 __set_bit(BTN_TOUCH, input_dev->keybit);
3932
3933 if (features->touch_max == 1) {
3934 input_set_abs_params(input_dev, ABS_X, 0,
3935 features->x_max, features->x_fuzz, 0);
3936 input_set_abs_params(input_dev, ABS_Y, 0,
3937 features->y_max, features->y_fuzz, 0);
3938 input_abs_set_res(input_dev, ABS_X,
3939 features->x_resolution);
3940 input_abs_set_res(input_dev, ABS_Y,
3941 features->y_resolution);
3942 }
3943 else if (features->touch_max > 1) {
3944 input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0,
3945 features->x_max, features->x_fuzz, 0);
3946 input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0,
3947 features->y_max, features->y_fuzz, 0);
3948 input_abs_set_res(input_dev, ABS_MT_POSITION_X,
3949 features->x_resolution);
3950 input_abs_set_res(input_dev, ABS_MT_POSITION_Y,
3951 features->y_resolution);
3952 }
3953
3954 switch (features->type) {
4922cd26 3955 case INTUOSP2_BT:
912c6aa6 3956 case INTUOSP2S_BT:
4922cd26
JG
3957 input_dev->evbit[0] |= BIT_MASK(EV_SW);
3958 __set_bit(SW_MUTE_DEVICE, input_dev->swbit);
3959
3960 if (wacom_wac->shared->touch->product == 0x361) {
3961 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
3962 0, 12440, 4, 0);
3963 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
3964 0, 8640, 4, 0);
3965 }
3966 else if (wacom_wac->shared->touch->product == 0x360) {
3967 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
3968 0, 8960, 4, 0);
3969 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
3970 0, 5920, 4, 0);
3971 }
912c6aa6
AAS
3972 else if (wacom_wac->shared->touch->product == 0x393) {
3973 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
3974 0, 6400, 4, 0);
3975 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
3976 0, 4000, 4, 0);
3977 }
4922cd26 3978 input_abs_set_res(input_dev, ABS_MT_POSITION_X, 40);
68c20cc2 3979 input_abs_set_res(input_dev, ABS_MT_POSITION_Y, 40);
4922cd26 3980
df561f66 3981 fallthrough;
4922cd26 3982
2636a3f2
JG
3983 case INTUOS5:
3984 case INTUOS5L:
3985 case INTUOSPM:
3986 case INTUOSPL:
3987 case INTUOS5S:
3988 case INTUOSPS:
2636a3f2
JG
3989 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
3990 input_set_abs_params(input_dev, ABS_MT_TOUCH_MINOR, 0, features->y_max, 0, 0);
3991 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
3992 break;
3993
3994 case WACOM_24HDT:
3995 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
3996 input_set_abs_params(input_dev, ABS_MT_WIDTH_MAJOR, 0, features->x_max, 0, 0);
3997 input_set_abs_params(input_dev, ABS_MT_WIDTH_MINOR, 0, features->y_max, 0, 0);
3998 input_set_abs_params(input_dev, ABS_MT_ORIENTATION, 0, 1, 0, 0);
df561f66 3999 fallthrough;
2636a3f2
JG
4000
4001 case WACOM_27QHDT:
670e9092
AAS
4002 if (wacom_wac->shared->touch->product == 0x32C ||
4003 wacom_wac->shared->touch->product == 0xF6) {
4004 input_dev->evbit[0] |= BIT_MASK(EV_SW);
4005 __set_bit(SW_MUTE_DEVICE, input_dev->swbit);
6ca2350e 4006 wacom_wac->has_mute_touch_switch = true;
dc9dc864 4007 wacom_wac->is_soft_touch_switch = true;
670e9092 4008 }
df561f66 4009 fallthrough;
670e9092 4010
2636a3f2
JG
4011 case MTSCREEN:
4012 case MTTPC:
4013 case MTTPC_B:
4014 case TABLETPC2FG:
4015 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_DIRECT);
df561f66 4016 fallthrough;
2636a3f2
JG
4017
4018 case TABLETPC:
4019 case TABLETPCE:
2636a3f2
JG
4020 break;
4021
4022 case INTUOSHT:
eda01dab 4023 case INTUOSHT2:
2636a3f2
JG
4024 input_dev->evbit[0] |= BIT_MASK(EV_SW);
4025 __set_bit(SW_MUTE_DEVICE, input_dev->swbit);
df561f66 4026 fallthrough;
2636a3f2
JG
4027
4028 case BAMBOO_PT:
3b164a00 4029 case BAMBOO_TOUCH:
2636a3f2
JG
4030 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
4031 input_set_abs_params(input_dev,
4032 ABS_MT_TOUCH_MAJOR,
4033 0, features->x_max, 0, 0);
4034 input_set_abs_params(input_dev,
4035 ABS_MT_TOUCH_MINOR,
4036 0, features->y_max, 0, 0);
cb734c03 4037 }
2636a3f2 4038 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
cb734c03 4039 break;
2636a3f2 4040
8c97a765 4041 case BAMBOO_PAD:
8c97a765
BT
4042 input_mt_init_slots(input_dev, features->touch_max,
4043 INPUT_MT_POINTER);
4044 __set_bit(BTN_LEFT, input_dev->keybit);
4045 __set_bit(BTN_RIGHT, input_dev->keybit);
4046 break;
3bea733a 4047 }
1963518b 4048 return 0;
3bea733a
PC
4049}
4050
49005b9f
JG
4051static int wacom_numbered_button_to_key(int n)
4052{
4053 if (n < 10)
4054 return BTN_0 + n;
4055 else if (n < 16)
4056 return BTN_A + (n-10);
4057 else if (n < 18)
4058 return BTN_BASE + (n-16);
4059 else
4060 return 0;
4061}
4062
5397df15 4063static void wacom_setup_numbered_buttons(struct input_dev *input_dev,
70ee06c5
AS
4064 int button_count)
4065{
4066 int i;
4067
49005b9f
JG
4068 for (i = 0; i < button_count; i++) {
4069 int key = wacom_numbered_button_to_key(i);
4070
4071 if (key)
4072 __set_bit(key, input_dev->keybit);
4073 }
70ee06c5
AS
4074}
4075
6a06281e
BT
4076static void wacom_24hd_update_leds(struct wacom *wacom, int mask, int group)
4077{
4078 struct wacom_led *led;
4079 int i;
4080 bool updated = false;
4081
4082 /*
4083 * 24HD has LED group 1 to the left and LED group 0 to the right.
4084 * So group 0 matches the second half of the buttons and thus the mask
4085 * needs to be shifted.
4086 */
4087 if (group == 0)
4088 mask >>= 8;
4089
4090 for (i = 0; i < 3; i++) {
4091 led = wacom_led_find(wacom, group, i);
4092 if (!led) {
4093 hid_err(wacom->hdev, "can't find LED %d in group %d\n",
4094 i, group);
4095 continue;
4096 }
4097 if (!updated && mask & BIT(i)) {
4098 led->held = true;
4099 led_trigger_event(&led->trigger, LED_FULL);
4100 } else {
4101 led->held = false;
4102 }
4103 }
4104}
4105
34736aa9
BT
4106static bool wacom_is_led_toggled(struct wacom *wacom, int button_count,
4107 int mask, int group)
4108{
6441fc78 4109 int group_button;
34736aa9 4110
5a0fe8ab 4111 /*
6a06281e 4112 * 21UX2 has LED group 1 to the left and LED group 0
5a0fe8ab
BT
4113 * to the right. We need to reverse the group to match this
4114 * historical behavior.
4115 */
6a06281e 4116 if (wacom->wacom_wac.features.type == WACOM_21UX2)
5a0fe8ab
BT
4117 group = 1 - group;
4118
6441fc78 4119 group_button = group * (button_count/wacom->led.count);
34736aa9 4120
6441fc78
JG
4121 if (wacom->wacom_wac.features.type == INTUOSP2_BT)
4122 group_button = 8;
4123
4124 return mask & (1 << group_button);
34736aa9
BT
4125}
4126
4127static void wacom_update_led(struct wacom *wacom, int button_count, int mask,
4128 int group)
4129{
4130 struct wacom_led *led, *next_led;
4131 int cur;
4132 bool pressed;
4133
6a06281e
BT
4134 if (wacom->wacom_wac.features.type == WACOM_24HD)
4135 return wacom_24hd_update_leds(wacom, mask, group);
4136
34736aa9
BT
4137 pressed = wacom_is_led_toggled(wacom, button_count, mask, group);
4138 cur = wacom->led.groups[group].select;
4139
4140 led = wacom_led_find(wacom, group, cur);
4141 if (!led) {
4142 hid_err(wacom->hdev, "can't find current LED %d in group %d\n",
4143 cur, group);
4144 return;
4145 }
4146
4147 if (!pressed) {
4148 led->held = false;
4149 return;
4150 }
4151
4152 if (led->held && pressed)
4153 return;
4154
4155 next_led = wacom_led_next(wacom, led);
4156 if (!next_led) {
4157 hid_err(wacom->hdev, "can't find next LED in group %d\n",
4158 group);
4159 return;
4160 }
4161 if (next_led == led)
4162 return;
4163
4164 next_led->held = true;
4165 led_trigger_event(&next_led->trigger,
4166 wacom_leds_brightness_get(next_led));
4167}
4168
c7f0522a
JG
4169static void wacom_report_numbered_buttons(struct input_dev *input_dev,
4170 int button_count, int mask)
4171{
34736aa9 4172 struct wacom *wacom = input_get_drvdata(input_dev);
c7f0522a
JG
4173 int i;
4174
34736aa9
BT
4175 for (i = 0; i < wacom->led.count; i++)
4176 wacom_update_led(wacom, button_count, mask, i);
4177
49005b9f
JG
4178 for (i = 0; i < button_count; i++) {
4179 int key = wacom_numbered_button_to_key(i);
4180
4181 if (key)
4182 input_report_key(input_dev, key, mask & (1 << i));
4183 }
c7f0522a
JG
4184}
4185
d2d13f18
BT
4186int wacom_setup_pad_input_capabilities(struct input_dev *input_dev,
4187 struct wacom_wac *wacom_wac)
4188{
4189 struct wacom_features *features = &wacom_wac->features;
4190
e7deb157
PC
4191 if ((features->type == HID_GENERIC) && features->numbered_buttons > 0)
4192 features->device_type |= WACOM_DEVICETYPE_PAD;
4193
862cf553
JG
4194 if (!(features->device_type & WACOM_DEVICETYPE_PAD))
4195 return -ENODEV;
4196
7c35dc3c
BT
4197 if (features->type == REMOTE && input_dev == wacom_wac->pad_input)
4198 return -ENODEV;
4199
d2d13f18
BT
4200 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
4201
4202 /* kept for making legacy xf86-input-wacom working with the wheels */
4203 __set_bit(ABS_MISC, input_dev->absbit);
4204
4205 /* kept for making legacy xf86-input-wacom accepting the pad */
5922e613
JG
4206 if (!(input_dev->absinfo && (input_dev->absinfo[ABS_X].minimum ||
4207 input_dev->absinfo[ABS_X].maximum)))
4208 input_set_abs_params(input_dev, ABS_X, 0, 1, 0, 0);
4209 if (!(input_dev->absinfo && (input_dev->absinfo[ABS_Y].minimum ||
4210 input_dev->absinfo[ABS_Y].maximum)))
4211 input_set_abs_params(input_dev, ABS_Y, 0, 1, 0, 0);
d2d13f18 4212
12969e3b
BT
4213 /* kept for making udev and libwacom accepting the pad */
4214 __set_bit(BTN_STYLUS, input_dev->keybit);
4215
70ee06c5
AS
4216 wacom_setup_numbered_buttons(input_dev, features->numbered_buttons);
4217
d2d13f18 4218 switch (features->type) {
70ee06c5
AS
4219
4220 case CINTIQ_HYBRID:
f7acb55c 4221 case CINTIQ_COMPANION_2:
70ee06c5
AS
4222 case DTK:
4223 case DTUS:
387142bb 4224 case GRAPHIRE_BT:
387142bb
BT
4225 break;
4226
3813810c
BT
4227 case WACOM_MO:
4228 __set_bit(BTN_BACK, input_dev->keybit);
4229 __set_bit(BTN_LEFT, input_dev->keybit);
4230 __set_bit(BTN_FORWARD, input_dev->keybit);
4231 __set_bit(BTN_RIGHT, input_dev->keybit);
4232 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
4233 break;
4234
4235 case WACOM_G4:
4236 __set_bit(BTN_BACK, input_dev->keybit);
3813810c 4237 __set_bit(BTN_FORWARD, input_dev->keybit);
3813810c
BT
4238 input_set_capability(input_dev, EV_REL, REL_WHEEL);
4239 break;
4240
10059cdc 4241 case WACOM_24HD:
10059cdc
BT
4242 __set_bit(KEY_PROG1, input_dev->keybit);
4243 __set_bit(KEY_PROG2, input_dev->keybit);
4244 __set_bit(KEY_PROG3, input_dev->keybit);
4245
670e9092
AAS
4246 __set_bit(KEY_ONSCREEN_KEYBOARD, input_dev->keybit);
4247 __set_bit(KEY_INFO, input_dev->keybit);
4248
4249 if (!features->oPid)
4250 __set_bit(KEY_BUTTONCONFIG, input_dev->keybit);
4251
10059cdc
BT
4252 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
4253 input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0);
4254 break;
4255
500d4160
PC
4256 case WACOM_27QHD:
4257 __set_bit(KEY_PROG1, input_dev->keybit);
4258 __set_bit(KEY_PROG2, input_dev->keybit);
4259 __set_bit(KEY_PROG3, input_dev->keybit);
670e9092
AAS
4260
4261 __set_bit(KEY_ONSCREEN_KEYBOARD, input_dev->keybit);
4262 __set_bit(KEY_BUTTONCONFIG, input_dev->keybit);
4263
4264 if (!features->oPid)
4265 __set_bit(KEY_CONTROLPANEL, input_dev->keybit);
500d4160
PC
4266 input_set_abs_params(input_dev, ABS_X, -2048, 2048, 0, 0);
4267 input_abs_set_res(input_dev, ABS_X, 1024); /* points/g */
4268 input_set_abs_params(input_dev, ABS_Y, -2048, 2048, 0, 0);
4269 input_abs_set_res(input_dev, ABS_Y, 1024);
4270 input_set_abs_params(input_dev, ABS_Z, -2048, 2048, 0, 0);
4271 input_abs_set_res(input_dev, ABS_Z, 1024);
4272 __set_bit(INPUT_PROP_ACCELEROMETER, input_dev->propbit);
4273 break;
4274
10059cdc
BT
4275 case WACOM_22HD:
4276 __set_bit(KEY_PROG1, input_dev->keybit);
4277 __set_bit(KEY_PROG2, input_dev->keybit);
4278 __set_bit(KEY_PROG3, input_dev->keybit);
670e9092
AAS
4279
4280 __set_bit(KEY_BUTTONCONFIG, input_dev->keybit);
4281 __set_bit(KEY_INFO, input_dev->keybit);
df561f66 4282 fallthrough;
10059cdc
BT
4283
4284 case WACOM_21UX2:
10059cdc 4285 case WACOM_BEE:
10059cdc 4286 case CINTIQ:
10059cdc
BT
4287 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
4288 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
4289 break;
4290
4291 case WACOM_13HD:
10059cdc
BT
4292 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
4293 break;
4294
4295 case INTUOS3:
4296 case INTUOS3L:
10059cdc 4297 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
df561f66 4298 fallthrough;
10059cdc
BT
4299
4300 case INTUOS3S:
10059cdc
BT
4301 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
4302 break;
36d3c510 4303
10059cdc
BT
4304 case INTUOS5:
4305 case INTUOS5L:
4306 case INTUOSPM:
4307 case INTUOSPL:
10059cdc
BT
4308 case INTUOS5S:
4309 case INTUOSPS:
4922cd26 4310 case INTUOSP2_BT:
912c6aa6 4311 case INTUOSP2S_BT:
10059cdc 4312 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
36d3c510 4313 break;
10059cdc 4314
81af7e61
BT
4315 case INTUOS4WL:
4316 /*
4317 * For Bluetooth devices, the udev rule does not work correctly
4318 * for pads unless we add a stylus capability, which forces
4319 * ID_INPUT_TABLET to be set.
4320 */
4321 __set_bit(BTN_STYLUS, input_dev->keybit);
df561f66 4322 fallthrough;
81af7e61 4323
10059cdc
BT
4324 case INTUOS4:
4325 case INTUOS4L:
10059cdc 4326 case INTUOS4S:
10059cdc
BT
4327 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
4328 break;
4329
3116871f
BT
4330 case INTUOSHT:
4331 case BAMBOO_PT:
3b164a00 4332 case BAMBOO_TOUCH:
eda01dab 4333 case INTUOSHT2:
3116871f
BT
4334 __clear_bit(ABS_MISC, input_dev->absbit);
4335
4336 __set_bit(BTN_LEFT, input_dev->keybit);
4337 __set_bit(BTN_FORWARD, input_dev->keybit);
4338 __set_bit(BTN_BACK, input_dev->keybit);
4339 __set_bit(BTN_RIGHT, input_dev->keybit);
4340
4341 break;
4342
72b236d6
AS
4343 case REMOTE:
4344 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
4345 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
4346 break;
4347
87046b6c 4348 case INTUOSHT3_BT:
5922e613
JG
4349 case HID_GENERIC:
4350 break;
4351
d2d13f18
BT
4352 default:
4353 /* no pad supported */
b3c8e93f 4354 return -ENODEV;
3bea733a 4355 }
1963518b 4356 return 0;
3bea733a
PC
4357}
4358
e87a344d 4359static const struct wacom_features wacom_features_0x00 =
80befa93
BT
4360 { "Wacom Penpartner", 5040, 3780, 255, 0,
4361 PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
e87a344d 4362static const struct wacom_features wacom_features_0x10 =
80befa93
BT
4363 { "Wacom Graphire", 10206, 7422, 511, 63,
4364 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
387142bb
BT
4365static const struct wacom_features wacom_features_0x81 =
4366 { "Wacom Graphire BT", 16704, 12064, 511, 32,
70ee06c5 4367 GRAPHIRE_BT, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES, 2 };
e87a344d 4368static const struct wacom_features wacom_features_0x11 =
80befa93
BT
4369 { "Wacom Graphire2 4x5", 10206, 7422, 511, 63,
4370 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 4371static const struct wacom_features wacom_features_0x12 =
80befa93
BT
4372 { "Wacom Graphire2 5x7", 13918, 10206, 511, 63,
4373 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 4374static const struct wacom_features wacom_features_0x13 =
80befa93
BT
4375 { "Wacom Graphire3", 10208, 7424, 511, 63,
4376 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 4377static const struct wacom_features wacom_features_0x14 =
80befa93
BT
4378 { "Wacom Graphire3 6x8", 16704, 12064, 511, 63,
4379 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 4380static const struct wacom_features wacom_features_0x15 =
80befa93
BT
4381 { "Wacom Graphire4 4x5", 10208, 7424, 511, 63,
4382 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 4383static const struct wacom_features wacom_features_0x16 =
80befa93
BT
4384 { "Wacom Graphire4 6x8", 16704, 12064, 511, 63,
4385 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 4386static const struct wacom_features wacom_features_0x17 =
80befa93
BT
4387 { "Wacom BambooFun 4x5", 14760, 9225, 511, 63,
4388 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4389static const struct wacom_features wacom_features_0x18 =
80befa93
BT
4390 { "Wacom BambooFun 6x8", 21648, 13530, 511, 63,
4391 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4392static const struct wacom_features wacom_features_0x19 =
80befa93
BT
4393 { "Wacom Bamboo1 Medium", 16704, 12064, 511, 63,
4394 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 4395static const struct wacom_features wacom_features_0x60 =
80befa93
BT
4396 { "Wacom Volito", 5104, 3712, 511, 63,
4397 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 4398static const struct wacom_features wacom_features_0x61 =
80befa93
BT
4399 { "Wacom PenStation2", 3250, 2320, 255, 63,
4400 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 4401static const struct wacom_features wacom_features_0x62 =
80befa93
BT
4402 { "Wacom Volito2 4x5", 5104, 3712, 511, 63,
4403 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 4404static const struct wacom_features wacom_features_0x63 =
80befa93
BT
4405 { "Wacom Volito2 2x3", 3248, 2320, 511, 63,
4406 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 4407static const struct wacom_features wacom_features_0x64 =
80befa93
BT
4408 { "Wacom PenPartner2", 3250, 2320, 511, 63,
4409 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 4410static const struct wacom_features wacom_features_0x65 =
80befa93
BT
4411 { "Wacom Bamboo", 14760, 9225, 511, 63,
4412 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4413static const struct wacom_features wacom_features_0x69 =
80befa93
BT
4414 { "Wacom Bamboo1", 5104, 3712, 511, 63,
4415 GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
11d0cf88 4416static const struct wacom_features wacom_features_0x6A =
80befa93
BT
4417 { "Wacom Bamboo1 4x6", 14760, 9225, 1023, 63,
4418 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
11d0cf88 4419static const struct wacom_features wacom_features_0x6B =
80befa93
BT
4420 { "Wacom Bamboo1 5x8", 21648, 13530, 1023, 63,
4421 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4422static const struct wacom_features wacom_features_0x20 =
80befa93
BT
4423 { "Wacom Intuos 4x5", 12700, 10600, 1023, 31,
4424 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4425static const struct wacom_features wacom_features_0x21 =
80befa93
BT
4426 { "Wacom Intuos 6x8", 20320, 16240, 1023, 31,
4427 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4428static const struct wacom_features wacom_features_0x22 =
80befa93
BT
4429 { "Wacom Intuos 9x12", 30480, 24060, 1023, 31,
4430 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4431static const struct wacom_features wacom_features_0x23 =
80befa93
BT
4432 { "Wacom Intuos 12x12", 30480, 31680, 1023, 31,
4433 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4434static const struct wacom_features wacom_features_0x24 =
80befa93
BT
4435 { "Wacom Intuos 12x18", 45720, 31680, 1023, 31,
4436 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4437static const struct wacom_features wacom_features_0x30 =
80befa93
BT
4438 { "Wacom PL400", 5408, 4056, 255, 0,
4439 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4440static const struct wacom_features wacom_features_0x31 =
80befa93
BT
4441 { "Wacom PL500", 6144, 4608, 255, 0,
4442 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4443static const struct wacom_features wacom_features_0x32 =
80befa93
BT
4444 { "Wacom PL600", 6126, 4604, 255, 0,
4445 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4446static const struct wacom_features wacom_features_0x33 =
80befa93
BT
4447 { "Wacom PL600SX", 6260, 5016, 255, 0,
4448 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4449static const struct wacom_features wacom_features_0x34 =
80befa93
BT
4450 { "Wacom PL550", 6144, 4608, 511, 0,
4451 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4452static const struct wacom_features wacom_features_0x35 =
80befa93
BT
4453 { "Wacom PL800", 7220, 5780, 511, 0,
4454 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4455static const struct wacom_features wacom_features_0x37 =
80befa93
BT
4456 { "Wacom PL700", 6758, 5406, 511, 0,
4457 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4458static const struct wacom_features wacom_features_0x38 =
80befa93
BT
4459 { "Wacom PL510", 6282, 4762, 511, 0,
4460 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4461static const struct wacom_features wacom_features_0x39 =
80befa93
BT
4462 { "Wacom DTU710", 34080, 27660, 511, 0,
4463 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4464static const struct wacom_features wacom_features_0xC4 =
80befa93
BT
4465 { "Wacom DTF521", 6282, 4762, 511, 0,
4466 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4467static const struct wacom_features wacom_features_0xC0 =
80befa93
BT
4468 { "Wacom DTF720", 6858, 5506, 511, 0,
4469 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4470static const struct wacom_features wacom_features_0xC2 =
80befa93
BT
4471 { "Wacom DTF720a", 6858, 5506, 511, 0,
4472 PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4473static const struct wacom_features wacom_features_0x03 =
80befa93
BT
4474 { "Wacom Cintiq Partner", 20480, 15360, 511, 0,
4475 PTU, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 4476static const struct wacom_features wacom_features_0x41 =
80befa93
BT
4477 { "Wacom Intuos2 4x5", 12700, 10600, 1023, 31,
4478 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4479static const struct wacom_features wacom_features_0x42 =
80befa93
BT
4480 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
4481 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4482static const struct wacom_features wacom_features_0x43 =
80befa93
BT
4483 { "Wacom Intuos2 9x12", 30480, 24060, 1023, 31,
4484 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4485static const struct wacom_features wacom_features_0x44 =
80befa93
BT
4486 { "Wacom Intuos2 12x12", 30480, 31680, 1023, 31,
4487 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4488static const struct wacom_features wacom_features_0x45 =
80befa93
BT
4489 { "Wacom Intuos2 12x18", 45720, 31680, 1023, 31,
4490 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4491static const struct wacom_features wacom_features_0xB0 =
80befa93 4492 { "Wacom Intuos3 4x5", 25400, 20320, 1023, 63,
70ee06c5 4493 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
e87a344d 4494static const struct wacom_features wacom_features_0xB1 =
80befa93 4495 { "Wacom Intuos3 6x8", 40640, 30480, 1023, 63,
70ee06c5 4496 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 4497static const struct wacom_features wacom_features_0xB2 =
80befa93 4498 { "Wacom Intuos3 9x12", 60960, 45720, 1023, 63,
70ee06c5 4499 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 4500static const struct wacom_features wacom_features_0xB3 =
80befa93 4501 { "Wacom Intuos3 12x12", 60960, 60960, 1023, 63,
70ee06c5 4502 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 4503static const struct wacom_features wacom_features_0xB4 =
80befa93 4504 { "Wacom Intuos3 12x19", 97536, 60960, 1023, 63,
70ee06c5 4505 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 4506static const struct wacom_features wacom_features_0xB5 =
80befa93 4507 { "Wacom Intuos3 6x11", 54204, 31750, 1023, 63,
70ee06c5 4508 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 4509static const struct wacom_features wacom_features_0xB7 =
80befa93 4510 { "Wacom Intuos3 4x6", 31496, 19685, 1023, 63,
70ee06c5 4511 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
e87a344d 4512static const struct wacom_features wacom_features_0xB8 =
80befa93 4513 { "Wacom Intuos4 4x6", 31496, 19685, 2047, 63,
70ee06c5 4514 INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
e87a344d 4515static const struct wacom_features wacom_features_0xB9 =
80befa93 4516 { "Wacom Intuos4 6x9", 44704, 27940, 2047, 63,
70ee06c5 4517 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
e87a344d 4518static const struct wacom_features wacom_features_0xBA =
80befa93 4519 { "Wacom Intuos4 8x13", 65024, 40640, 2047, 63,
70ee06c5 4520 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
e87a344d 4521static const struct wacom_features wacom_features_0xBB =
80befa93 4522 { "Wacom Intuos4 12x19", 97536, 60960, 2047, 63,
70ee06c5 4523 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
3a4b4aaa 4524static const struct wacom_features wacom_features_0xBC =
80befa93 4525 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
70ee06c5 4526 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
81af7e61
BT
4527static const struct wacom_features wacom_features_0xBD =
4528 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
70ee06c5 4529 INTUOS4WL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
9fee6195 4530static const struct wacom_features wacom_features_0x26 =
80befa93 4531 { "Wacom Intuos5 touch S", 31496, 19685, 2047, 63,
70ee06c5 4532 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16 };
9fee6195 4533static const struct wacom_features wacom_features_0x27 =
80befa93 4534 { "Wacom Intuos5 touch M", 44704, 27940, 2047, 63,
70ee06c5 4535 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
9fee6195 4536static const struct wacom_features wacom_features_0x28 =
80befa93 4537 { "Wacom Intuos5 touch L", 65024, 40640, 2047, 63,
70ee06c5 4538 INTUOS5L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
9fee6195 4539static const struct wacom_features wacom_features_0x29 =
80befa93 4540 { "Wacom Intuos5 S", 31496, 19685, 2047, 63,
70ee06c5 4541 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
9fee6195 4542static const struct wacom_features wacom_features_0x2A =
80befa93 4543 { "Wacom Intuos5 M", 44704, 27940, 2047, 63,
70ee06c5 4544 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
9a35c411 4545static const struct wacom_features wacom_features_0x314 =
80befa93 4546 { "Wacom Intuos Pro S", 31496, 19685, 2047, 63,
70ee06c5 4547 INTUOSPS, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16,
29b47391 4548 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
9a35c411 4549static const struct wacom_features wacom_features_0x315 =
80befa93 4550 { "Wacom Intuos Pro M", 44704, 27940, 2047, 63,
70ee06c5 4551 INTUOSPM, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
29b47391 4552 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
9a35c411 4553static const struct wacom_features wacom_features_0x317 =
80befa93 4554 { "Wacom Intuos Pro L", 65024, 40640, 2047, 63,
70ee06c5 4555 INTUOSPL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
29b47391 4556 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
803296b6 4557static const struct wacom_features wacom_features_0xF4 =
e779ef23 4558 { "Wacom Cintiq 24HD", 104480, 65600, 2047, 63,
70ee06c5 4559 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
e779ef23 4560 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
fa770340 4561 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
6f4d0382 4562static const struct wacom_features wacom_features_0xF8 =
e779ef23 4563 { "Wacom Cintiq 24HD touch", 104480, 65600, 2047, 63, /* Pen */
70ee06c5 4564 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
fa770340 4565 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
e779ef23 4566 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3bd1f7e2 4567 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf6 };
b1e4279e
JG
4568static const struct wacom_features wacom_features_0xF6 =
4569 { "Wacom Cintiq 24HD touch", .type = WACOM_24HDT, /* Touch */
29b47391
BT
4570 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf8, .touch_max = 10,
4571 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
500d4160 4572static const struct wacom_features wacom_features_0x32A =
e779ef23 4573 { "Wacom Cintiq 27QHD", 120140, 67920, 2047, 63,
70ee06c5 4574 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
e779ef23 4575 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
a7e6645e 4576 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
500d4160 4577static const struct wacom_features wacom_features_0x32B =
e779ef23 4578 { "Wacom Cintiq 27QHD touch", 120140, 67920, 2047, 63,
70ee06c5 4579 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
500d4160 4580 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
e779ef23 4581 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
500d4160
PC
4582 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32C };
4583static const struct wacom_features wacom_features_0x32C =
4584 { "Wacom Cintiq 27QHD touch", .type = WACOM_27QHDT,
4585 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32B, .touch_max = 10 };
e87a344d 4586static const struct wacom_features wacom_features_0x3F =
80befa93 4587 { "Wacom Cintiq 21UX", 87200, 65600, 1023, 63,
70ee06c5 4588 CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
e87a344d 4589static const struct wacom_features wacom_features_0xC5 =
80befa93 4590 { "Wacom Cintiq 20WSX", 86680, 54180, 1023, 63,
70ee06c5 4591 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
e87a344d 4592static const struct wacom_features wacom_features_0xC6 =
80befa93 4593 { "Wacom Cintiq 12WX", 53020, 33440, 1023, 63,
70ee06c5 4594 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
56218563 4595static const struct wacom_features wacom_features_0x304 =
e779ef23 4596 { "Wacom Cintiq 13HD", 59552, 33848, 1023, 63,
70ee06c5 4597 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
e779ef23 4598 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
fa770340 4599 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
b4bf2120 4600static const struct wacom_features wacom_features_0x333 =
e779ef23 4601 { "Wacom Cintiq 13HD touch", 59552, 33848, 2047, 63,
70ee06c5 4602 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
b4bf2120 4603 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
e779ef23 4604 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
b4bf2120
PC
4605 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x335 };
4606static const struct wacom_features wacom_features_0x335 =
4607 { "Wacom Cintiq 13HD touch", .type = WACOM_24HDT, /* Touch */
4608 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x333, .touch_max = 10,
4609 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
e87a344d 4610static const struct wacom_features wacom_features_0xC7 =
80befa93
BT
4611 { "Wacom DTU1931", 37832, 30305, 511, 0,
4612 PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
c8f2edc5 4613static const struct wacom_features wacom_features_0xCE =
80befa93
BT
4614 { "Wacom DTU2231", 47864, 27011, 511, 0,
4615 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
29b47391 4616 .check_for_hid_type = true, .hid_type = HID_TYPE_USBMOUSE };
c8f2edc5 4617static const struct wacom_features wacom_features_0xF0 =
80befa93
BT
4618 { "Wacom DTU1631", 34623, 19553, 511, 0,
4619 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
497ab1f2 4620static const struct wacom_features wacom_features_0xFB =
e779ef23 4621 { "Wacom DTU1031", 22096, 13960, 511, 0,
70ee06c5 4622 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
e779ef23 4623 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
fa770340 4624 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
fff00bf8 4625static const struct wacom_features wacom_features_0x32F =
e779ef23 4626 { "Wacom DTU1031X", 22672, 12928, 511, 0,
70ee06c5 4627 DTUSX, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 0,
e779ef23 4628 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
fff00bf8 4629 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
007760cf 4630static const struct wacom_features wacom_features_0x336 =
e779ef23 4631 { "Wacom DTU1141", 23672, 13403, 1023, 0,
ff38e829 4632 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
e779ef23 4633 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
ff38e829 4634 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
56218563 4635static const struct wacom_features wacom_features_0x57 =
e779ef23 4636 { "Wacom DTK2241", 95840, 54260, 2047, 63,
70ee06c5 4637 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
e779ef23 4638 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
fa770340 4639 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
a112e9fd 4640static const struct wacom_features wacom_features_0x59 = /* Pen */
e779ef23 4641 { "Wacom DTH2242", 95840, 54260, 2047, 63,
70ee06c5 4642 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
fa770340 4643 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
e779ef23 4644 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
a112e9fd
PC
4645 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5D };
4646static const struct wacom_features wacom_features_0x5D = /* Touch */
4647 { "Wacom DTH2242", .type = WACOM_24HDT,
29b47391
BT
4648 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x59, .touch_max = 10,
4649 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3a4b4aaa 4650static const struct wacom_features wacom_features_0xCC =
e779ef23 4651 { "Wacom Cintiq 21UX2", 87200, 65600, 2047, 63,
70ee06c5 4652 WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
e779ef23 4653 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
fa770340 4654 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
d838c644 4655static const struct wacom_features wacom_features_0xFA =
e779ef23 4656 { "Wacom Cintiq 22HD", 95840, 54260, 2047, 63,
70ee06c5 4657 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
e779ef23 4658 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
fa770340 4659 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
56218563 4660static const struct wacom_features wacom_features_0x5B =
e779ef23 4661 { "Wacom Cintiq 22HDT", 95840, 54260, 2047, 63,
70ee06c5 4662 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
fa770340 4663 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
e779ef23 4664 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3bd1f7e2 4665 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5e };
56218563
PC
4666static const struct wacom_features wacom_features_0x5E =
4667 { "Wacom Cintiq 22HDT", .type = WACOM_24HDT,
29b47391
BT
4668 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5b, .touch_max = 10,
4669 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
e87a344d 4670static const struct wacom_features wacom_features_0x90 =
80befa93 4671 { "Wacom ISDv4 90", 26202, 16325, 255, 0,
29b9e148 4672 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; /* Pen-only */
e87a344d 4673static const struct wacom_features wacom_features_0x93 =
80befa93 4674 { "Wacom ISDv4 93", 26202, 16325, 255, 0,
29b9e148 4675 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 1 };
11d0cf88 4676static const struct wacom_features wacom_features_0x97 =
80befa93 4677 { "Wacom ISDv4 97", 26202, 16325, 511, 0,
29b9e148 4678 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; /* Pen-only */
e87a344d 4679static const struct wacom_features wacom_features_0x9A =
80befa93 4680 { "Wacom ISDv4 9A", 26202, 16325, 255, 0,
29b9e148 4681 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 1 };
e87a344d 4682static const struct wacom_features wacom_features_0x9F =
80befa93 4683 { "Wacom ISDv4 9F", 26202, 16325, 255, 0,
29b9e148 4684 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 1 };
e87a344d 4685static const struct wacom_features wacom_features_0xE2 =
80befa93
BT
4686 { "Wacom ISDv4 E2", 26202, 16325, 255, 0,
4687 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
e87a344d 4688static const struct wacom_features wacom_features_0xE3 =
80befa93
BT
4689 { "Wacom ISDv4 E3", 26202, 16325, 255, 0,
4690 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
1963518b 4691static const struct wacom_features wacom_features_0xE5 =
80befa93
BT
4692 { "Wacom ISDv4 E5", 26202, 16325, 255, 0,
4693 MTSCREEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
26fcd2a7 4694static const struct wacom_features wacom_features_0xE6 =
80befa93
BT
4695 { "Wacom ISDv4 E6", 27760, 15694, 255, 0,
4696 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
0d0e3064 4697static const struct wacom_features wacom_features_0xEC =
80befa93 4698 { "Wacom ISDv4 EC", 25710, 14500, 255, 0,
29b9e148 4699 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; /* Pen-only */
ac173837 4700static const struct wacom_features wacom_features_0xED =
80befa93 4701 { "Wacom ISDv4 ED", 26202, 16325, 255, 0,
29b9e148 4702 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 1 };
ac173837 4703static const struct wacom_features wacom_features_0xEF =
80befa93 4704 { "Wacom ISDv4 EF", 26202, 16325, 255, 0,
29b9e148 4705 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; /* Pen-only */
6afdc289 4706static const struct wacom_features wacom_features_0x100 =
80befa93
BT
4707 { "Wacom ISDv4 100", 26202, 16325, 255, 0,
4708 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
6afdc289 4709static const struct wacom_features wacom_features_0x101 =
80befa93
BT
4710 { "Wacom ISDv4 101", 26202, 16325, 255, 0,
4711 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
58694837 4712static const struct wacom_features wacom_features_0x10D =
80befa93
BT
4713 { "Wacom ISDv4 10D", 26202, 16325, 255, 0,
4714 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
2d3163f1 4715static const struct wacom_features wacom_features_0x10E =
80befa93
BT
4716 { "Wacom ISDv4 10E", 27760, 15694, 255, 0,
4717 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
9b4f60e5 4718static const struct wacom_features wacom_features_0x10F =
80befa93
BT
4719 { "Wacom ISDv4 10F", 27760, 15694, 255, 0,
4720 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
61616ed0 4721static const struct wacom_features wacom_features_0x116 =
80befa93 4722 { "Wacom ISDv4 116", 26202, 16325, 255, 0,
29b9e148 4723 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 1 };
aeaf50d4
JG
4724static const struct wacom_features wacom_features_0x12C =
4725 { "Wacom ISDv4 12C", 27848, 15752, 2047, 0,
29b9e148 4726 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; /* Pen-only */
edbe265d 4727static const struct wacom_features wacom_features_0x4001 =
80befa93
BT
4728 { "Wacom ISDv4 4001", 26202, 16325, 255, 0,
4729 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d51ddb2b 4730static const struct wacom_features wacom_features_0x4004 =
80befa93
BT
4731 { "Wacom ISDv4 4004", 11060, 6220, 255, 0,
4732 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d51ddb2b 4733static const struct wacom_features wacom_features_0x5000 =
80befa93
BT
4734 { "Wacom ISDv4 5000", 27848, 15752, 1023, 0,
4735 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d51ddb2b 4736static const struct wacom_features wacom_features_0x5002 =
80befa93
BT
4737 { "Wacom ISDv4 5002", 29576, 16724, 1023, 0,
4738 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 4739static const struct wacom_features wacom_features_0x47 =
80befa93
BT
4740 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
4741 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
d3825d51 4742static const struct wacom_features wacom_features_0x84 =
3b164a00 4743 { "Wacom Wireless Receiver", .type = WIRELESS, .touch_max = 16 };
7b824bbd 4744static const struct wacom_features wacom_features_0xD0 =
80befa93 4745 { "Wacom Bamboo 2FG", 14720, 9200, 1023, 31,
3b164a00 4746 BAMBOO_TOUCH, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 4747static const struct wacom_features wacom_features_0xD1 =
80befa93
BT
4748 { "Wacom Bamboo 2FG 4x5", 14720, 9200, 1023, 31,
4749 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 4750static const struct wacom_features wacom_features_0xD2 =
80befa93
BT
4751 { "Wacom Bamboo Craft", 14720, 9200, 1023, 31,
4752 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 4753static const struct wacom_features wacom_features_0xD3 =
80befa93
BT
4754 { "Wacom Bamboo 2FG 6x8", 21648, 13700, 1023, 31,
4755 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
57a7872f 4756static const struct wacom_features wacom_features_0xD4 =
80befa93 4757 { "Wacom Bamboo Pen", 14720, 9200, 1023, 31,
3b164a00 4758 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
18adad1c 4759static const struct wacom_features wacom_features_0xD5 =
80befa93 4760 { "Wacom Bamboo Pen 6x8", 21648, 13700, 1023, 31,
3b164a00 4761 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 4762static const struct wacom_features wacom_features_0xD6 =
80befa93
BT
4763 { "Wacom BambooPT 2FG 4x5", 14720, 9200, 1023, 31,
4764 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 4765static const struct wacom_features wacom_features_0xD7 =
80befa93
BT
4766 { "Wacom BambooPT 2FG Small", 14720, 9200, 1023, 31,
4767 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 4768static const struct wacom_features wacom_features_0xD8 =
80befa93
BT
4769 { "Wacom Bamboo Comic 2FG", 21648, 13700, 1023, 31,
4770 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
7b824bbd 4771static const struct wacom_features wacom_features_0xDA =
80befa93
BT
4772 { "Wacom Bamboo 2FG 4x5 SE", 14720, 9200, 1023, 31,
4773 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
f41a64ee 4774static const struct wacom_features wacom_features_0xDB =
80befa93
BT
4775 { "Wacom Bamboo 2FG 6x8 SE", 21648, 13700, 1023, 31,
4776 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
73149ab8 4777static const struct wacom_features wacom_features_0xDD =
80befa93
BT
4778 { "Wacom Bamboo Connect", 14720, 9200, 1023, 31,
4779 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
73149ab8 4780static const struct wacom_features wacom_features_0xDE =
80befa93
BT
4781 { "Wacom Bamboo 16FG 4x5", 14720, 9200, 1023, 31,
4782 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
73149ab8 4783static const struct wacom_features wacom_features_0xDF =
80befa93
BT
4784 { "Wacom Bamboo 16FG 6x8", 21648, 13700, 1023, 31,
4785 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
f41a64ee 4786static const struct wacom_features wacom_features_0x300 =
80befa93 4787 { "Wacom Bamboo One S", 14720, 9225, 1023, 31,
3b164a00 4788 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
f41a64ee 4789static const struct wacom_features wacom_features_0x301 =
80befa93 4790 { "Wacom Bamboo One M", 21648, 13530, 1023, 31,
b79cbc55 4791 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
b5fd2a3e 4792static const struct wacom_features wacom_features_0x302 =
80befa93
BT
4793 { "Wacom Intuos PT S", 15200, 9500, 1023, 31,
4794 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
29b47391 4795 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
b5fd2a3e 4796static const struct wacom_features wacom_features_0x303 =
80befa93
BT
4797 { "Wacom Intuos PT M", 21600, 13500, 1023, 31,
4798 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
29b47391 4799 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
b5fd2a3e 4800static const struct wacom_features wacom_features_0x30E =
80befa93
BT
4801 { "Wacom Intuos S", 15200, 9500, 1023, 31,
4802 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
29b47391 4803 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
7b4b3068 4804static const struct wacom_features wacom_features_0x6004 =
80befa93
BT
4805 { "ISD-V4", 12800, 8000, 255, 0,
4806 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
a3e6f654 4807static const struct wacom_features wacom_features_0x307 =
e779ef23 4808 { "Wacom ISDv5 307", 59552, 33848, 2047, 63,
70ee06c5 4809 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
fa770340 4810 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
e779ef23 4811 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
36d3c510 4812 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x309 };
a3e6f654 4813static const struct wacom_features wacom_features_0x309 =
36d3c510 4814 { "Wacom ISDv5 309", .type = WACOM_24HDT, /* Touch */
29b47391
BT
4815 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x0307, .touch_max = 10,
4816 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
89f2ab55 4817static const struct wacom_features wacom_features_0x30A =
e779ef23 4818 { "Wacom ISDv5 30A", 59552, 33848, 2047, 63,
70ee06c5 4819 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
fa770340 4820 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
e779ef23 4821 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
89f2ab55
BT
4822 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30C };
4823static const struct wacom_features wacom_features_0x30C =
4824 { "Wacom ISDv5 30C", .type = WACOM_24HDT, /* Touch */
4825 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30A, .touch_max = 10,
4826 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
8c97a765
BT
4827static const struct wacom_features wacom_features_0x318 =
4828 { "Wacom USB Bamboo PAD", 4095, 4095, /* Touch */
4829 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
4830static const struct wacom_features wacom_features_0x319 =
4831 { "Wacom Wireless Bamboo PAD", 4095, 4095, /* Touch */
4832 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
f7acb55c
JG
4833static const struct wacom_features wacom_features_0x325 =
4834 { "Wacom ISDv5 325", 59552, 33848, 2047, 63,
4835 CINTIQ_COMPANION_2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 11,
4836 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
e779ef23 4837 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
f7acb55c
JG
4838 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x326 };
4839static const struct wacom_features wacom_features_0x326 = /* Touch */
4840 { "Wacom ISDv5 326", .type = HID_GENERIC, .oVid = USB_VENDOR_ID_WACOM,
4841 .oPid = 0x325 };
fefb391f
PC
4842static const struct wacom_features wacom_features_0x323 =
4843 { "Wacom Intuos P M", 21600, 13500, 1023, 31,
4844 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
4845 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
72b236d6 4846static const struct wacom_features wacom_features_0x331 =
3b164a00
PC
4847 { "Wacom Express Key Remote", .type = REMOTE,
4848 .numbered_buttons = 18, .check_for_hid_type = true,
72b236d6 4849 .hid_type = HID_TYPE_USBNONE };
eda01dab
PC
4850static const struct wacom_features wacom_features_0x33B =
4851 { "Wacom Intuos S 2", 15200, 9500, 2047, 63,
4852 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
4853 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
4854static const struct wacom_features wacom_features_0x33C =
4855 { "Wacom Intuos PT S 2", 15200, 9500, 2047, 63,
4856 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
4857 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
4858static const struct wacom_features wacom_features_0x33D =
4859 { "Wacom Intuos P M 2", 21600, 13500, 2047, 63,
4860 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
4861 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
4862static const struct wacom_features wacom_features_0x33E =
4863 { "Wacom Intuos PT M 2", 21600, 13500, 2047, 63,
4864 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
4865 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
e1123fe9 4866static const struct wacom_features wacom_features_0x343 =
e779ef23 4867 { "Wacom DTK1651", 34816, 19759, 1023, 0,
e1123fe9 4868 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
e779ef23 4869 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
e1123fe9 4870 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
4922cd26
JG
4871static const struct wacom_features wacom_features_0x360 =
4872 { "Wacom Intuos Pro M", 44800, 29600, 8191, 63,
49cc4c21 4873 INTUOSP2_BT, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 10 };
4922cd26
JG
4874static const struct wacom_features wacom_features_0x361 =
4875 { "Wacom Intuos Pro L", 62200, 43200, 8191, 63,
49cc4c21 4876 INTUOSP2_BT, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 10 };
87046b6c
AAS
4877static const struct wacom_features wacom_features_0x377 =
4878 { "Wacom Intuos BT S", 15200, 9500, 4095, 63,
4879 INTUOSHT3_BT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4 };
4880static const struct wacom_features wacom_features_0x379 =
4881 { "Wacom Intuos BT M", 21600, 13500, 4095, 63,
4882 INTUOSHT3_BT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4 };
c9472189
JG
4883static const struct wacom_features wacom_features_0x37A =
4884 { "Wacom One by Wacom S", 15200, 9500, 2047, 63,
4885 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
4886static const struct wacom_features wacom_features_0x37B =
4887 { "Wacom One by Wacom M", 21600, 13500, 2047, 63,
4888 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
912c6aa6
AAS
4889static const struct wacom_features wacom_features_0x393 =
4890 { "Wacom Intuos Pro S", 31920, 19950, 8191, 63,
4891 INTUOSP2S_BT, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7,
4892 .touch_max = 10 };
0c8fbaa5
JD
4893static const struct wacom_features wacom_features_0x3c6 =
4894 { "Wacom Intuos BT S", 15200, 9500, 4095, 63,
4895 INTUOSHT3_BT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4 };
4896static const struct wacom_features wacom_features_0x3c8 =
4897 { "Wacom Intuos BT M", 21600, 13500, 4095, 63,
4898 INTUOSHT3_BT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4 };
0627f3df
PC
4899static const struct wacom_features wacom_features_0x3dd =
4900 { "Wacom Intuos Pro S", 31920, 19950, 8191, 63,
4901 INTUOSP2S_BT, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7,
4902 .touch_max = 10 };
b036f6fb 4903
7704ac93 4904static const struct wacom_features wacom_features_HID_ANY_ID =
41372d5d 4905 { "Wacom HID", .type = HID_GENERIC, .oVid = HID_ANY_ID, .oPid = HID_ANY_ID };
7704ac93 4906
1db1f392
JG
4907static const struct wacom_features wacom_features_0x94 =
4908 { "Wacom Bootloader", .type = BOOTLOADER };
4909
29b47391
BT
4910#define USB_DEVICE_WACOM(prod) \
4911 HID_DEVICE(BUS_USB, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
4912 .driver_data = (kernel_ulong_t)&wacom_features_##prod
b036f6fb 4913
387142bb
BT
4914#define BT_DEVICE_WACOM(prod) \
4915 HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
4916 .driver_data = (kernel_ulong_t)&wacom_features_##prod
1483f551 4917
eef23a84
MW
4918#define I2C_DEVICE_WACOM(prod) \
4919 HID_DEVICE(BUS_I2C, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
4920 .driver_data = (kernel_ulong_t)&wacom_features_##prod
4921
7b4b3068 4922#define USB_DEVICE_LENOVO(prod) \
29b47391
BT
4923 HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
4924 .driver_data = (kernel_ulong_t)&wacom_features_##prod
7b4b3068 4925
29b47391 4926const struct hid_device_id wacom_ids[] = {
b036f6fb 4927 { USB_DEVICE_WACOM(0x00) },
a3e6f654 4928 { USB_DEVICE_WACOM(0x03) },
b036f6fb
BB
4929 { USB_DEVICE_WACOM(0x10) },
4930 { USB_DEVICE_WACOM(0x11) },
4931 { USB_DEVICE_WACOM(0x12) },
4932 { USB_DEVICE_WACOM(0x13) },
4933 { USB_DEVICE_WACOM(0x14) },
4934 { USB_DEVICE_WACOM(0x15) },
4935 { USB_DEVICE_WACOM(0x16) },
4936 { USB_DEVICE_WACOM(0x17) },
4937 { USB_DEVICE_WACOM(0x18) },
4938 { USB_DEVICE_WACOM(0x19) },
b036f6fb
BB
4939 { USB_DEVICE_WACOM(0x20) },
4940 { USB_DEVICE_WACOM(0x21) },
4941 { USB_DEVICE_WACOM(0x22) },
4942 { USB_DEVICE_WACOM(0x23) },
4943 { USB_DEVICE_WACOM(0x24) },
a3e6f654
BT
4944 { USB_DEVICE_WACOM(0x26) },
4945 { USB_DEVICE_WACOM(0x27) },
4946 { USB_DEVICE_WACOM(0x28) },
4947 { USB_DEVICE_WACOM(0x29) },
4948 { USB_DEVICE_WACOM(0x2A) },
b036f6fb
BB
4949 { USB_DEVICE_WACOM(0x30) },
4950 { USB_DEVICE_WACOM(0x31) },
4951 { USB_DEVICE_WACOM(0x32) },
4952 { USB_DEVICE_WACOM(0x33) },
4953 { USB_DEVICE_WACOM(0x34) },
4954 { USB_DEVICE_WACOM(0x35) },
4955 { USB_DEVICE_WACOM(0x37) },
4956 { USB_DEVICE_WACOM(0x38) },
4957 { USB_DEVICE_WACOM(0x39) },
a3e6f654 4958 { USB_DEVICE_WACOM(0x3F) },
b036f6fb
BB
4959 { USB_DEVICE_WACOM(0x41) },
4960 { USB_DEVICE_WACOM(0x42) },
4961 { USB_DEVICE_WACOM(0x43) },
4962 { USB_DEVICE_WACOM(0x44) },
4963 { USB_DEVICE_WACOM(0x45) },
a3e6f654 4964 { USB_DEVICE_WACOM(0x47) },
56218563 4965 { USB_DEVICE_WACOM(0x57) },
a112e9fd 4966 { USB_DEVICE_WACOM(0x59) },
56218563 4967 { USB_DEVICE_WACOM(0x5B) },
a3e6f654 4968 { USB_DEVICE_WACOM(0x5D) },
29b47391 4969 { USB_DEVICE_WACOM(0x5E) },
a3e6f654
BT
4970 { USB_DEVICE_WACOM(0x60) },
4971 { USB_DEVICE_WACOM(0x61) },
4972 { USB_DEVICE_WACOM(0x62) },
4973 { USB_DEVICE_WACOM(0x63) },
4974 { USB_DEVICE_WACOM(0x64) },
4975 { USB_DEVICE_WACOM(0x65) },
4976 { USB_DEVICE_WACOM(0x69) },
4977 { USB_DEVICE_WACOM(0x6A) },
4978 { USB_DEVICE_WACOM(0x6B) },
387142bb 4979 { BT_DEVICE_WACOM(0x81) },
a3e6f654
BT
4980 { USB_DEVICE_WACOM(0x84) },
4981 { USB_DEVICE_WACOM(0x90) },
4982 { USB_DEVICE_WACOM(0x93) },
1db1f392 4983 { USB_DEVICE_WACOM(0x94) },
a3e6f654
BT
4984 { USB_DEVICE_WACOM(0x97) },
4985 { USB_DEVICE_WACOM(0x9A) },
4986 { USB_DEVICE_WACOM(0x9F) },
b036f6fb
BB
4987 { USB_DEVICE_WACOM(0xB0) },
4988 { USB_DEVICE_WACOM(0xB1) },
4989 { USB_DEVICE_WACOM(0xB2) },
4990 { USB_DEVICE_WACOM(0xB3) },
4991 { USB_DEVICE_WACOM(0xB4) },
4992 { USB_DEVICE_WACOM(0xB5) },
4993 { USB_DEVICE_WACOM(0xB7) },
4994 { USB_DEVICE_WACOM(0xB8) },
4995 { USB_DEVICE_WACOM(0xB9) },
4996 { USB_DEVICE_WACOM(0xBA) },
4997 { USB_DEVICE_WACOM(0xBB) },
3a4b4aaa 4998 { USB_DEVICE_WACOM(0xBC) },
81af7e61 4999 { BT_DEVICE_WACOM(0xBD) },
a3e6f654
BT
5000 { USB_DEVICE_WACOM(0xC0) },
5001 { USB_DEVICE_WACOM(0xC2) },
5002 { USB_DEVICE_WACOM(0xC4) },
b036f6fb
BB
5003 { USB_DEVICE_WACOM(0xC5) },
5004 { USB_DEVICE_WACOM(0xC6) },
5005 { USB_DEVICE_WACOM(0xC7) },
a3e6f654 5006 { USB_DEVICE_WACOM(0xCC) },
29b47391 5007 { USB_DEVICE_WACOM(0xCE) },
cb734c03 5008 { USB_DEVICE_WACOM(0xD0) },
2aaacb15
CB
5009 { USB_DEVICE_WACOM(0xD1) },
5010 { USB_DEVICE_WACOM(0xD2) },
5011 { USB_DEVICE_WACOM(0xD3) },
57a7872f 5012 { USB_DEVICE_WACOM(0xD4) },
18adad1c 5013 { USB_DEVICE_WACOM(0xD5) },
d38acb49
PC
5014 { USB_DEVICE_WACOM(0xD6) },
5015 { USB_DEVICE_WACOM(0xD7) },
a318e6b1
DF
5016 { USB_DEVICE_WACOM(0xD8) },
5017 { USB_DEVICE_WACOM(0xDA) },
47d09235 5018 { USB_DEVICE_WACOM(0xDB) },
73149ab8
CB
5019 { USB_DEVICE_WACOM(0xDD) },
5020 { USB_DEVICE_WACOM(0xDE) },
5021 { USB_DEVICE_WACOM(0xDF) },
b036f6fb
BB
5022 { USB_DEVICE_WACOM(0xE2) },
5023 { USB_DEVICE_WACOM(0xE3) },
1963518b 5024 { USB_DEVICE_WACOM(0xE5) },
26fcd2a7 5025 { USB_DEVICE_WACOM(0xE6) },
0d0e3064 5026 { USB_DEVICE_WACOM(0xEC) },
ac173837
PC
5027 { USB_DEVICE_WACOM(0xED) },
5028 { USB_DEVICE_WACOM(0xEF) },
a3e6f654
BT
5029 { USB_DEVICE_WACOM(0xF0) },
5030 { USB_DEVICE_WACOM(0xF4) },
5031 { USB_DEVICE_WACOM(0xF6) },
5032 { USB_DEVICE_WACOM(0xF8) },
5033 { USB_DEVICE_WACOM(0xFA) },
5034 { USB_DEVICE_WACOM(0xFB) },
6afdc289
PC
5035 { USB_DEVICE_WACOM(0x100) },
5036 { USB_DEVICE_WACOM(0x101) },
58694837 5037 { USB_DEVICE_WACOM(0x10D) },
2d3163f1 5038 { USB_DEVICE_WACOM(0x10E) },
9b4f60e5 5039 { USB_DEVICE_WACOM(0x10F) },
61616ed0 5040 { USB_DEVICE_WACOM(0x116) },
aeaf50d4 5041 { USB_DEVICE_WACOM(0x12C) },
f41a64ee
PC
5042 { USB_DEVICE_WACOM(0x300) },
5043 { USB_DEVICE_WACOM(0x301) },
29b47391
BT
5044 { USB_DEVICE_WACOM(0x302) },
5045 { USB_DEVICE_WACOM(0x303) },
56218563 5046 { USB_DEVICE_WACOM(0x304) },
a3e6f654
BT
5047 { USB_DEVICE_WACOM(0x307) },
5048 { USB_DEVICE_WACOM(0x309) },
89f2ab55
BT
5049 { USB_DEVICE_WACOM(0x30A) },
5050 { USB_DEVICE_WACOM(0x30C) },
a3e6f654 5051 { USB_DEVICE_WACOM(0x30E) },
29b47391
BT
5052 { USB_DEVICE_WACOM(0x314) },
5053 { USB_DEVICE_WACOM(0x315) },
5054 { USB_DEVICE_WACOM(0x317) },
8c97a765
BT
5055 { USB_DEVICE_WACOM(0x318) },
5056 { USB_DEVICE_WACOM(0x319) },
fefb391f 5057 { USB_DEVICE_WACOM(0x323) },
f7acb55c
JG
5058 { USB_DEVICE_WACOM(0x325) },
5059 { USB_DEVICE_WACOM(0x326) },
500d4160
PC
5060 { USB_DEVICE_WACOM(0x32A) },
5061 { USB_DEVICE_WACOM(0x32B) },
5062 { USB_DEVICE_WACOM(0x32C) },
fff00bf8 5063 { USB_DEVICE_WACOM(0x32F) },
72b236d6 5064 { USB_DEVICE_WACOM(0x331) },
b4bf2120
PC
5065 { USB_DEVICE_WACOM(0x333) },
5066 { USB_DEVICE_WACOM(0x335) },
007760cf 5067 { USB_DEVICE_WACOM(0x336) },
eda01dab
PC
5068 { USB_DEVICE_WACOM(0x33B) },
5069 { USB_DEVICE_WACOM(0x33C) },
5070 { USB_DEVICE_WACOM(0x33D) },
5071 { USB_DEVICE_WACOM(0x33E) },
e1123fe9 5072 { USB_DEVICE_WACOM(0x343) },
4922cd26
JG
5073 { BT_DEVICE_WACOM(0x360) },
5074 { BT_DEVICE_WACOM(0x361) },
87046b6c
AAS
5075 { BT_DEVICE_WACOM(0x377) },
5076 { BT_DEVICE_WACOM(0x379) },
c9472189
JG
5077 { USB_DEVICE_WACOM(0x37A) },
5078 { USB_DEVICE_WACOM(0x37B) },
912c6aa6 5079 { BT_DEVICE_WACOM(0x393) },
0c8fbaa5
JD
5080 { BT_DEVICE_WACOM(0x3c6) },
5081 { BT_DEVICE_WACOM(0x3c8) },
0627f3df 5082 { BT_DEVICE_WACOM(0x3dd) },
edbe265d 5083 { USB_DEVICE_WACOM(0x4001) },
d51ddb2b
JG
5084 { USB_DEVICE_WACOM(0x4004) },
5085 { USB_DEVICE_WACOM(0x5000) },
5086 { USB_DEVICE_WACOM(0x5002) },
00d6f227 5087 { USB_DEVICE_LENOVO(0x6004) },
7704ac93
BT
5088
5089 { USB_DEVICE_WACOM(HID_ANY_ID) },
eef23a84 5090 { I2C_DEVICE_WACOM(HID_ANY_ID) },
b9e06256 5091 { BT_DEVICE_WACOM(HID_ANY_ID) },
3bea733a
PC
5092 { }
5093};
29b47391 5094MODULE_DEVICE_TABLE(hid, wacom_ids);