]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - drivers/input/tablet/wacom_wac.c
10e5cf8703593cf519c4d077b058749a00f5d50d
[mirror_ubuntu-focal-kernel.git] / drivers / input / tablet / wacom_wac.c
1 /*
2 * drivers/input/tablet/wacom_wac.c
3 *
4 * USB Wacom tablet support - Wacom specific code
5 *
6 */
7
8 /*
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
14
15 #include "wacom_wac.h"
16 #include "wacom.h"
17 #include <linux/input/mt.h>
18 #include <linux/hid.h>
19
20 /* resolution for penabled devices */
21 #define WACOM_PL_RES 20
22 #define WACOM_PENPRTN_RES 40
23 #define WACOM_VOLITO_RES 50
24 #define WACOM_GRAPHIRE_RES 80
25 #define WACOM_INTUOS_RES 100
26 #define WACOM_INTUOS3_RES 200
27
28 static int wacom_penpartner_irq(struct wacom_wac *wacom)
29 {
30 unsigned char *data = wacom->data;
31 struct input_dev *input = wacom->input;
32
33 switch (data[0]) {
34 case 1:
35 if (data[5] & 0x80) {
36 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
37 wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
38 input_report_key(input, wacom->tool[0], 1);
39 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
40 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
41 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
42 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
43 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -127));
44 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
45 } else {
46 input_report_key(input, wacom->tool[0], 0);
47 input_report_abs(input, ABS_MISC, 0); /* report tool id */
48 input_report_abs(input, ABS_PRESSURE, -1);
49 input_report_key(input, BTN_TOUCH, 0);
50 }
51 break;
52
53 case 2:
54 input_report_key(input, BTN_TOOL_PEN, 1);
55 input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
56 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
57 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
58 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
59 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
60 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
61 break;
62
63 default:
64 printk(KERN_INFO "wacom_penpartner_irq: received unknown report #%d\n", data[0]);
65 return 0;
66 }
67
68 return 1;
69 }
70
71 static int wacom_pl_irq(struct wacom_wac *wacom)
72 {
73 struct wacom_features *features = &wacom->features;
74 unsigned char *data = wacom->data;
75 struct input_dev *input = wacom->input;
76 int prox, pressure;
77
78 if (data[0] != WACOM_REPORT_PENABLED) {
79 dbg("wacom_pl_irq: received unknown report #%d", data[0]);
80 return 0;
81 }
82
83 prox = data[1] & 0x40;
84
85 if (prox) {
86 wacom->id[0] = ERASER_DEVICE_ID;
87 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
88 if (features->pressure_max > 255)
89 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
90 pressure += (features->pressure_max + 1) / 2;
91
92 /*
93 * if going from out of proximity into proximity select between the eraser
94 * and the pen based on the state of the stylus2 button, choose eraser if
95 * pressed else choose pen. if not a proximity change from out to in, send
96 * an out of proximity for previous tool then a in for new tool.
97 */
98 if (!wacom->tool[0]) {
99 /* Eraser bit set for DTF */
100 if (data[1] & 0x10)
101 wacom->tool[1] = BTN_TOOL_RUBBER;
102 else
103 /* Going into proximity select tool */
104 wacom->tool[1] = (data[4] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
105 } else {
106 /* was entered with stylus2 pressed */
107 if (wacom->tool[1] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
108 /* report out proximity for previous tool */
109 input_report_key(input, wacom->tool[1], 0);
110 input_sync(input);
111 wacom->tool[1] = BTN_TOOL_PEN;
112 return 0;
113 }
114 }
115 if (wacom->tool[1] != BTN_TOOL_RUBBER) {
116 /* Unknown tool selected default to pen tool */
117 wacom->tool[1] = BTN_TOOL_PEN;
118 wacom->id[0] = STYLUS_DEVICE_ID;
119 }
120 input_report_key(input, wacom->tool[1], prox); /* report in proximity for tool */
121 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
122 input_report_abs(input, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
123 input_report_abs(input, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
124 input_report_abs(input, ABS_PRESSURE, pressure);
125
126 input_report_key(input, BTN_TOUCH, data[4] & 0x08);
127 input_report_key(input, BTN_STYLUS, data[4] & 0x10);
128 /* Only allow the stylus2 button to be reported for the pen tool. */
129 input_report_key(input, BTN_STYLUS2, (wacom->tool[1] == BTN_TOOL_PEN) && (data[4] & 0x20));
130 } else {
131 /* report proximity-out of a (valid) tool */
132 if (wacom->tool[1] != BTN_TOOL_RUBBER) {
133 /* Unknown tool selected default to pen tool */
134 wacom->tool[1] = BTN_TOOL_PEN;
135 }
136 input_report_key(input, wacom->tool[1], prox);
137 }
138
139 wacom->tool[0] = prox; /* Save proximity state */
140 return 1;
141 }
142
143 static int wacom_ptu_irq(struct wacom_wac *wacom)
144 {
145 unsigned char *data = wacom->data;
146 struct input_dev *input = wacom->input;
147
148 if (data[0] != WACOM_REPORT_PENABLED) {
149 printk(KERN_INFO "wacom_ptu_irq: received unknown report #%d\n", data[0]);
150 return 0;
151 }
152
153 if (data[1] & 0x04) {
154 input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
155 input_report_key(input, BTN_TOUCH, data[1] & 0x08);
156 wacom->id[0] = ERASER_DEVICE_ID;
157 } else {
158 input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
159 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
160 wacom->id[0] = STYLUS_DEVICE_ID;
161 }
162 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
163 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
164 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
165 input_report_abs(input, ABS_PRESSURE, le16_to_cpup((__le16 *)&data[6]));
166 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
167 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
168 return 1;
169 }
170
171 static int wacom_dtu_irq(struct wacom_wac *wacom)
172 {
173 struct wacom_features *features = &wacom->features;
174 char *data = wacom->data;
175 struct input_dev *input = wacom->input;
176 int prox = data[1] & 0x20, pressure;
177
178 dbg("wacom_dtu_irq: received report #%d", data[0]);
179
180 if (prox) {
181 /* Going into proximity select tool */
182 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
183 if (wacom->tool[0] == BTN_TOOL_PEN)
184 wacom->id[0] = STYLUS_DEVICE_ID;
185 else
186 wacom->id[0] = ERASER_DEVICE_ID;
187 }
188 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
189 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
190 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
191 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
192 pressure = ((data[7] & 0x01) << 8) | data[6];
193 if (pressure < 0)
194 pressure = features->pressure_max + pressure + 1;
195 input_report_abs(input, ABS_PRESSURE, pressure);
196 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
197 if (!prox) /* out-prox */
198 wacom->id[0] = 0;
199 input_report_key(input, wacom->tool[0], prox);
200 input_report_abs(input, ABS_MISC, wacom->id[0]);
201 return 1;
202 }
203
204 static int wacom_graphire_irq(struct wacom_wac *wacom)
205 {
206 struct wacom_features *features = &wacom->features;
207 unsigned char *data = wacom->data;
208 struct input_dev *input = wacom->input;
209 int prox;
210 int rw = 0;
211 int retval = 0;
212
213 if (data[0] != WACOM_REPORT_PENABLED) {
214 dbg("wacom_graphire_irq: received unknown report #%d", data[0]);
215 goto exit;
216 }
217
218 prox = data[1] & 0x80;
219 if (prox || wacom->id[0]) {
220 if (prox) {
221 switch ((data[1] >> 5) & 3) {
222
223 case 0: /* Pen */
224 wacom->tool[0] = BTN_TOOL_PEN;
225 wacom->id[0] = STYLUS_DEVICE_ID;
226 break;
227
228 case 1: /* Rubber */
229 wacom->tool[0] = BTN_TOOL_RUBBER;
230 wacom->id[0] = ERASER_DEVICE_ID;
231 break;
232
233 case 2: /* Mouse with wheel */
234 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
235 /* fall through */
236
237 case 3: /* Mouse without wheel */
238 wacom->tool[0] = BTN_TOOL_MOUSE;
239 wacom->id[0] = CURSOR_DEVICE_ID;
240 break;
241 }
242 }
243 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
244 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
245 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
246 input_report_abs(input, ABS_PRESSURE, data[6] | ((data[7] & 0x01) << 8));
247 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
248 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
249 input_report_key(input, BTN_STYLUS2, data[1] & 0x04);
250 } else {
251 input_report_key(input, BTN_LEFT, data[1] & 0x01);
252 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
253 if (features->type == WACOM_G4 ||
254 features->type == WACOM_MO) {
255 input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f);
256 rw = (data[7] & 0x04) - (data[7] & 0x03);
257 } else {
258 input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f);
259 rw = -(signed char)data[6];
260 }
261 input_report_rel(input, REL_WHEEL, rw);
262 }
263
264 if (!prox)
265 wacom->id[0] = 0;
266 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
267 input_report_key(input, wacom->tool[0], prox);
268 input_event(input, EV_MSC, MSC_SERIAL, 1);
269 input_sync(input); /* sync last event */
270 }
271
272 /* send pad data */
273 switch (features->type) {
274 case WACOM_G4:
275 prox = data[7] & 0xf8;
276 if (prox || wacom->id[1]) {
277 wacom->id[1] = PAD_DEVICE_ID;
278 input_report_key(input, BTN_BACK, (data[7] & 0x40));
279 input_report_key(input, BTN_FORWARD, (data[7] & 0x80));
280 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
281 input_report_rel(input, REL_WHEEL, rw);
282 if (!prox)
283 wacom->id[1] = 0;
284 input_report_abs(input, ABS_MISC, wacom->id[1]);
285 input_event(input, EV_MSC, MSC_SERIAL, 0xf0);
286 retval = 1;
287 }
288 break;
289
290 case WACOM_MO:
291 prox = (data[7] & 0xf8) || data[8];
292 if (prox || wacom->id[1]) {
293 wacom->id[1] = PAD_DEVICE_ID;
294 input_report_key(input, BTN_BACK, (data[7] & 0x08));
295 input_report_key(input, BTN_LEFT, (data[7] & 0x20));
296 input_report_key(input, BTN_FORWARD, (data[7] & 0x10));
297 input_report_key(input, BTN_RIGHT, (data[7] & 0x40));
298 input_report_abs(input, ABS_WHEEL, (data[8] & 0x7f));
299 if (!prox)
300 wacom->id[1] = 0;
301 input_report_abs(input, ABS_MISC, wacom->id[1]);
302 input_event(input, EV_MSC, MSC_SERIAL, 0xf0);
303 retval = 1;
304 }
305 break;
306 }
307 exit:
308 return retval;
309 }
310
311 static int wacom_intuos_inout(struct wacom_wac *wacom)
312 {
313 struct wacom_features *features = &wacom->features;
314 unsigned char *data = wacom->data;
315 struct input_dev *input = wacom->input;
316 int idx = 0;
317
318 /* tool number */
319 if (features->type == INTUOS)
320 idx = data[1] & 0x01;
321
322 /* Enter report */
323 if ((data[1] & 0xfc) == 0xc0) {
324 if (features->type >= INTUOS5S && features->type <= INTUOS5L)
325 wacom->shared->stylus_in_proximity = true;
326
327 /* serial number of the tool */
328 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
329 (data[4] << 20) + (data[5] << 12) +
330 (data[6] << 4) + (data[7] >> 4);
331
332 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
333 ((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12);
334
335 switch (wacom->id[idx] & 0xfffff) {
336 case 0x812: /* Inking pen */
337 case 0x801: /* Intuos3 Inking pen */
338 case 0x20802: /* Intuos4 Inking Pen */
339 case 0x012:
340 wacom->tool[idx] = BTN_TOOL_PENCIL;
341 break;
342
343 case 0x822: /* Pen */
344 case 0x842:
345 case 0x852:
346 case 0x823: /* Intuos3 Grip Pen */
347 case 0x813: /* Intuos3 Classic Pen */
348 case 0x885: /* Intuos3 Marker Pen */
349 case 0x802: /* Intuos4 General Pen */
350 case 0x804: /* Intuos4 Marker Pen */
351 case 0x40802: /* Intuos4 Classic Pen */
352 case 0x022:
353 wacom->tool[idx] = BTN_TOOL_PEN;
354 break;
355
356 case 0x832: /* Stroke pen */
357 case 0x032:
358 wacom->tool[idx] = BTN_TOOL_BRUSH;
359 break;
360
361 case 0x007: /* Mouse 4D and 2D */
362 case 0x09c:
363 case 0x094:
364 case 0x017: /* Intuos3 2D Mouse */
365 case 0x806: /* Intuos4 Mouse */
366 wacom->tool[idx] = BTN_TOOL_MOUSE;
367 break;
368
369 case 0x096: /* Lens cursor */
370 case 0x097: /* Intuos3 Lens cursor */
371 case 0x006: /* Intuos4 Lens cursor */
372 wacom->tool[idx] = BTN_TOOL_LENS;
373 break;
374
375 case 0x82a: /* Eraser */
376 case 0x85a:
377 case 0x91a:
378 case 0xd1a:
379 case 0x0fa:
380 case 0x82b: /* Intuos3 Grip Pen Eraser */
381 case 0x81b: /* Intuos3 Classic Pen Eraser */
382 case 0x91b: /* Intuos3 Airbrush Eraser */
383 case 0x80c: /* Intuos4 Marker Pen Eraser */
384 case 0x80a: /* Intuos4 General Pen Eraser */
385 case 0x4080a: /* Intuos4 Classic Pen Eraser */
386 case 0x90a: /* Intuos4 Airbrush Eraser */
387 wacom->tool[idx] = BTN_TOOL_RUBBER;
388 break;
389
390 case 0xd12:
391 case 0x912:
392 case 0x112:
393 case 0x913: /* Intuos3 Airbrush */
394 case 0x902: /* Intuos4 Airbrush */
395 wacom->tool[idx] = BTN_TOOL_AIRBRUSH;
396 break;
397
398 default: /* Unknown tool */
399 wacom->tool[idx] = BTN_TOOL_PEN;
400 break;
401 }
402 return 1;
403 }
404
405 /* older I4 styli don't work with new Cintiqs */
406 if (!((wacom->id[idx] >> 20) & 0x01) &&
407 (features->type == WACOM_21UX2))
408 return 1;
409
410 /* Exit report */
411 if ((data[1] & 0xfe) == 0x80) {
412 if (features->type >= INTUOS5S && features->type <= INTUOS5L)
413 wacom->shared->stylus_in_proximity = false;
414
415 /*
416 * Reset all states otherwise we lose the initial states
417 * when in-prox next time
418 */
419 input_report_abs(input, ABS_X, 0);
420 input_report_abs(input, ABS_Y, 0);
421 input_report_abs(input, ABS_DISTANCE, 0);
422 input_report_abs(input, ABS_TILT_X, 0);
423 input_report_abs(input, ABS_TILT_Y, 0);
424 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
425 input_report_key(input, BTN_LEFT, 0);
426 input_report_key(input, BTN_MIDDLE, 0);
427 input_report_key(input, BTN_RIGHT, 0);
428 input_report_key(input, BTN_SIDE, 0);
429 input_report_key(input, BTN_EXTRA, 0);
430 input_report_abs(input, ABS_THROTTLE, 0);
431 input_report_abs(input, ABS_RZ, 0);
432 } else {
433 input_report_abs(input, ABS_PRESSURE, 0);
434 input_report_key(input, BTN_STYLUS, 0);
435 input_report_key(input, BTN_STYLUS2, 0);
436 input_report_key(input, BTN_TOUCH, 0);
437 input_report_abs(input, ABS_WHEEL, 0);
438 if (features->type >= INTUOS3S)
439 input_report_abs(input, ABS_Z, 0);
440 }
441 input_report_key(input, wacom->tool[idx], 0);
442 input_report_abs(input, ABS_MISC, 0); /* reset tool id */
443 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
444 wacom->id[idx] = 0;
445 return 2;
446 }
447 return 0;
448 }
449
450 static void wacom_intuos_general(struct wacom_wac *wacom)
451 {
452 struct wacom_features *features = &wacom->features;
453 unsigned char *data = wacom->data;
454 struct input_dev *input = wacom->input;
455 unsigned int t;
456
457 /* general pen packet */
458 if ((data[1] & 0xb8) == 0xa0) {
459 t = (data[6] << 2) | ((data[7] >> 6) & 3);
460 if ((features->type >= INTUOS4S && features->type <= INTUOS4L) ||
461 (features->type >= INTUOS5S && features->type <= INTUOS5L) ||
462 features->type == WACOM_21UX2 || features->type == WACOM_24HD) {
463 t = (t << 1) | (data[1] & 1);
464 }
465 input_report_abs(input, ABS_PRESSURE, t);
466 input_report_abs(input, ABS_TILT_X,
467 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
468 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
469 input_report_key(input, BTN_STYLUS, data[1] & 2);
470 input_report_key(input, BTN_STYLUS2, data[1] & 4);
471 input_report_key(input, BTN_TOUCH, t > 10);
472 }
473
474 /* airbrush second packet */
475 if ((data[1] & 0xbc) == 0xb4) {
476 input_report_abs(input, ABS_WHEEL,
477 (data[6] << 2) | ((data[7] >> 6) & 3));
478 input_report_abs(input, ABS_TILT_X,
479 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
480 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
481 }
482 }
483
484 static int wacom_intuos_irq(struct wacom_wac *wacom)
485 {
486 struct wacom_features *features = &wacom->features;
487 unsigned char *data = wacom->data;
488 struct input_dev *input = wacom->input;
489 unsigned int t;
490 int idx = 0, result;
491
492 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD
493 && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD
494 && data[0] != WACOM_REPORT_INTUOS5PAD) {
495 dbg("wacom_intuos_irq: received unknown report #%d", data[0]);
496 return 0;
497 }
498
499 /* tool number */
500 if (features->type == INTUOS)
501 idx = data[1] & 0x01;
502
503 /* pad packets. Works as a second tool and is always in prox */
504 if (data[0] == WACOM_REPORT_INTUOSPAD || data[0] == WACOM_REPORT_INTUOS5PAD) {
505 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
506 input_report_key(input, BTN_0, (data[2] & 0x01));
507 input_report_key(input, BTN_1, (data[3] & 0x01));
508 input_report_key(input, BTN_2, (data[3] & 0x02));
509 input_report_key(input, BTN_3, (data[3] & 0x04));
510 input_report_key(input, BTN_4, (data[3] & 0x08));
511 input_report_key(input, BTN_5, (data[3] & 0x10));
512 input_report_key(input, BTN_6, (data[3] & 0x20));
513 if (data[1] & 0x80) {
514 input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
515 } else {
516 /* Out of proximity, clear wheel value. */
517 input_report_abs(input, ABS_WHEEL, 0);
518 }
519 if (features->type != INTUOS4S) {
520 input_report_key(input, BTN_7, (data[3] & 0x40));
521 input_report_key(input, BTN_8, (data[3] & 0x80));
522 }
523 if (data[1] | (data[2] & 0x01) | data[3]) {
524 input_report_key(input, wacom->tool[1], 1);
525 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
526 } else {
527 input_report_key(input, wacom->tool[1], 0);
528 input_report_abs(input, ABS_MISC, 0);
529 }
530 } else if (features->type == WACOM_24HD) {
531 input_report_key(input, BTN_0, (data[6] & 0x01));
532 input_report_key(input, BTN_1, (data[6] & 0x02));
533 input_report_key(input, BTN_2, (data[6] & 0x04));
534 input_report_key(input, BTN_3, (data[6] & 0x08));
535 input_report_key(input, BTN_4, (data[6] & 0x10));
536 input_report_key(input, BTN_5, (data[6] & 0x20));
537 input_report_key(input, BTN_6, (data[6] & 0x40));
538 input_report_key(input, BTN_7, (data[6] & 0x80));
539 input_report_key(input, BTN_8, (data[8] & 0x01));
540 input_report_key(input, BTN_9, (data[8] & 0x02));
541 input_report_key(input, BTN_A, (data[8] & 0x04));
542 input_report_key(input, BTN_B, (data[8] & 0x08));
543 input_report_key(input, BTN_C, (data[8] & 0x10));
544 input_report_key(input, BTN_X, (data[8] & 0x20));
545 input_report_key(input, BTN_Y, (data[8] & 0x40));
546 input_report_key(input, BTN_Z, (data[8] & 0x80));
547
548 /*
549 * Three "buttons" are available on the 24HD which are
550 * physically implemented as a touchstrip. Each button
551 * is approximately 3 bits wide with a 2 bit spacing.
552 * The raw touchstrip bits are stored at:
553 * ((data[3] & 0x1f) << 8) | data[4])
554 */
555 input_report_key(input, KEY_PROG1, data[4] & 0x07);
556 input_report_key(input, KEY_PROG2, data[4] & 0xE0);
557 input_report_key(input, KEY_PROG3, data[3] & 0x1C);
558
559 if (data[1] & 0x80) {
560 input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
561 } else {
562 /* Out of proximity, clear wheel value. */
563 input_report_abs(input, ABS_WHEEL, 0);
564 }
565
566 if (data[2] & 0x80) {
567 input_report_abs(input, ABS_THROTTLE, (data[2] & 0x7f));
568 } else {
569 /* Out of proximity, clear second wheel value. */
570 input_report_abs(input, ABS_THROTTLE, 0);
571 }
572
573 if (data[1] | data[2] | (data[3] & 0x1f) | data[4] | data[6] | data[8]) {
574 input_report_key(input, wacom->tool[1], 1);
575 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
576 } else {
577 input_report_key(input, wacom->tool[1], 0);
578 input_report_abs(input, ABS_MISC, 0);
579 }
580 } else if (features->type >= INTUOS5S && features->type <= INTUOS5L) {
581 int i;
582
583 /* Touch ring mode switch has no capacitive sensor */
584 input_report_key(input, BTN_0, (data[3] & 0x01));
585
586 /*
587 * ExpressKeys on Intuos5 have a capacitive sensor in
588 * addition to the mechanical switch. Switch data is
589 * stored in data[4], capacitive data in data[5].
590 */
591 for (i = 0; i < 8; i++)
592 input_report_key(input, BTN_1 + i, data[4] & (1 << i));
593
594 if (data[2] & 0x80) {
595 input_report_abs(input, ABS_WHEEL, (data[2] & 0x7f));
596 } else {
597 /* Out of proximity, clear wheel value. */
598 input_report_abs(input, ABS_WHEEL, 0);
599 }
600
601 if (data[2] | (data[3] & 0x01) | data[4]) {
602 input_report_key(input, wacom->tool[1], 1);
603 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
604 } else {
605 input_report_key(input, wacom->tool[1], 0);
606 input_report_abs(input, ABS_MISC, 0);
607 }
608 } else {
609 if (features->type == WACOM_21UX2) {
610 input_report_key(input, BTN_0, (data[5] & 0x01));
611 input_report_key(input, BTN_1, (data[6] & 0x01));
612 input_report_key(input, BTN_2, (data[6] & 0x02));
613 input_report_key(input, BTN_3, (data[6] & 0x04));
614 input_report_key(input, BTN_4, (data[6] & 0x08));
615 input_report_key(input, BTN_5, (data[6] & 0x10));
616 input_report_key(input, BTN_6, (data[6] & 0x20));
617 input_report_key(input, BTN_7, (data[6] & 0x40));
618 input_report_key(input, BTN_8, (data[6] & 0x80));
619 input_report_key(input, BTN_9, (data[7] & 0x01));
620 input_report_key(input, BTN_A, (data[8] & 0x01));
621 input_report_key(input, BTN_B, (data[8] & 0x02));
622 input_report_key(input, BTN_C, (data[8] & 0x04));
623 input_report_key(input, BTN_X, (data[8] & 0x08));
624 input_report_key(input, BTN_Y, (data[8] & 0x10));
625 input_report_key(input, BTN_Z, (data[8] & 0x20));
626 input_report_key(input, BTN_BASE, (data[8] & 0x40));
627 input_report_key(input, BTN_BASE2, (data[8] & 0x80));
628 } else {
629 input_report_key(input, BTN_0, (data[5] & 0x01));
630 input_report_key(input, BTN_1, (data[5] & 0x02));
631 input_report_key(input, BTN_2, (data[5] & 0x04));
632 input_report_key(input, BTN_3, (data[5] & 0x08));
633 input_report_key(input, BTN_4, (data[6] & 0x01));
634 input_report_key(input, BTN_5, (data[6] & 0x02));
635 input_report_key(input, BTN_6, (data[6] & 0x04));
636 input_report_key(input, BTN_7, (data[6] & 0x08));
637 input_report_key(input, BTN_8, (data[5] & 0x10));
638 input_report_key(input, BTN_9, (data[6] & 0x10));
639 }
640 input_report_abs(input, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]);
641 input_report_abs(input, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]);
642
643 if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) |
644 data[2] | (data[3] & 0x1f) | data[4] | data[8] |
645 (data[7] & 0x01)) {
646 input_report_key(input, wacom->tool[1], 1);
647 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
648 } else {
649 input_report_key(input, wacom->tool[1], 0);
650 input_report_abs(input, ABS_MISC, 0);
651 }
652 }
653 input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
654 return 1;
655 }
656
657 /* process in/out prox events */
658 result = wacom_intuos_inout(wacom);
659 if (result)
660 return result - 1;
661
662 /* don't proceed if we don't know the ID */
663 if (!wacom->id[idx])
664 return 0;
665
666 /* Only large Intuos support Lense Cursor */
667 if (wacom->tool[idx] == BTN_TOOL_LENS &&
668 (features->type == INTUOS3 ||
669 features->type == INTUOS3S ||
670 features->type == INTUOS4 ||
671 features->type == INTUOS4S ||
672 features->type == INTUOS5 ||
673 features->type == INTUOS5S)) {
674
675 return 0;
676 }
677
678 /* Cintiq doesn't send data when RDY bit isn't set */
679 if (features->type == CINTIQ && !(data[1] & 0x40))
680 return 0;
681
682 if (features->type >= INTUOS3S) {
683 input_report_abs(input, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1));
684 input_report_abs(input, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1));
685 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 2) & 0x3f));
686 } else {
687 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[2]));
688 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[4]));
689 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 3) & 0x1f));
690 }
691
692 /* process general packets */
693 wacom_intuos_general(wacom);
694
695 /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */
696 if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0 || (data[1] & 0xbc) == 0xac) {
697
698 if (data[1] & 0x02) {
699 /* Rotation packet */
700 if (features->type >= INTUOS3S) {
701 /* I3 marker pen rotation */
702 t = (data[6] << 3) | ((data[7] >> 5) & 7);
703 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
704 ((t-1) / 2 + 450)) : (450 - t / 2) ;
705 input_report_abs(input, ABS_Z, t);
706 } else {
707 /* 4D mouse rotation packet */
708 t = (data[6] << 3) | ((data[7] >> 5) & 7);
709 input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
710 ((t - 1) / 2) : -t / 2);
711 }
712
713 } else if (!(data[1] & 0x10) && features->type < INTUOS3S) {
714 /* 4D mouse packet */
715 input_report_key(input, BTN_LEFT, data[8] & 0x01);
716 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
717 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
718
719 input_report_key(input, BTN_SIDE, data[8] & 0x20);
720 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
721 t = (data[6] << 2) | ((data[7] >> 6) & 3);
722 input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
723
724 } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
725 /* I4 mouse */
726 if ((features->type >= INTUOS4S && features->type <= INTUOS4L) ||
727 (features->type >= INTUOS5S && features->type <= INTUOS5L)) {
728 input_report_key(input, BTN_LEFT, data[6] & 0x01);
729 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
730 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
731 input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
732 - ((data[7] & 0x40) >> 6));
733 input_report_key(input, BTN_SIDE, data[6] & 0x08);
734 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
735
736 input_report_abs(input, ABS_TILT_X,
737 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
738 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
739 } else {
740 /* 2D mouse packet */
741 input_report_key(input, BTN_LEFT, data[8] & 0x04);
742 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
743 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
744 input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
745 - ((data[8] & 0x02) >> 1));
746
747 /* I3 2D mouse side buttons */
748 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
749 input_report_key(input, BTN_SIDE, data[8] & 0x40);
750 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
751 }
752 }
753 } else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
754 features->type == INTUOS4L || features->type == INTUOS5L) &&
755 wacom->tool[idx] == BTN_TOOL_LENS) {
756 /* Lens cursor packets */
757 input_report_key(input, BTN_LEFT, data[8] & 0x01);
758 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
759 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
760 input_report_key(input, BTN_SIDE, data[8] & 0x10);
761 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
762 }
763 }
764
765 input_report_abs(input, ABS_MISC, wacom->id[idx]); /* report tool id */
766 input_report_key(input, wacom->tool[idx], 1);
767 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
768 return 1;
769 }
770
771 static int find_slot_from_contactid(struct wacom_wac *wacom, int contactid)
772 {
773 int touch_max = wacom->features.touch_max;
774 int i;
775
776 if (!wacom->slots)
777 return -1;
778
779 for (i = 0; i < touch_max; ++i) {
780 if (wacom->slots[i] == contactid)
781 return i;
782 }
783 for (i = 0; i < touch_max; ++i) {
784 if (wacom->slots[i] == -1)
785 return i;
786 }
787 return -1;
788 }
789
790 static int wacom_mt_touch(struct wacom_wac *wacom)
791 {
792 struct input_dev *input = wacom->input;
793 char *data = wacom->data;
794 int i;
795 int current_num_contacts = data[2];
796 int contacts_to_send = 0;
797
798 /*
799 * First packet resets the counter since only the first
800 * packet in series will have non-zero current_num_contacts.
801 */
802 if (current_num_contacts)
803 wacom->num_contacts_left = current_num_contacts;
804
805 /* There are at most 5 contacts per packet */
806 contacts_to_send = min(5, wacom->num_contacts_left);
807
808 for (i = 0; i < contacts_to_send; i++) {
809 int offset = (WACOM_BYTES_PER_MT_PACKET * i) + 3;
810 bool touch = data[offset] & 0x1;
811 int id = le16_to_cpup((__le16 *)&data[offset + 1]);
812 int slot = find_slot_from_contactid(wacom, id);
813
814 if (slot < 0)
815 continue;
816
817 input_mt_slot(input, slot);
818 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
819 if (touch) {
820 int x = le16_to_cpup((__le16 *)&data[offset + 7]);
821 int y = le16_to_cpup((__le16 *)&data[offset + 9]);
822 input_report_abs(input, ABS_MT_POSITION_X, x);
823 input_report_abs(input, ABS_MT_POSITION_Y, y);
824 }
825 wacom->slots[slot] = touch ? id : -1;
826 }
827
828 input_mt_report_pointer_emulation(input, true);
829
830 wacom->num_contacts_left -= contacts_to_send;
831 if (wacom->num_contacts_left < 0)
832 wacom->num_contacts_left = 0;
833
834 return 1;
835 }
836
837 static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
838 {
839 struct input_dev *input = wacom->input;
840 unsigned char *data = wacom->data;
841 int contact_with_no_pen_down_count = 0;
842 int i;
843
844 for (i = 0; i < 2; i++) {
845 int p = data[1] & (1 << i);
846 bool touch = p && !wacom->shared->stylus_in_proximity;
847
848 input_mt_slot(input, i);
849 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
850 if (touch) {
851 int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
852 int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
853
854 input_report_abs(input, ABS_MT_POSITION_X, x);
855 input_report_abs(input, ABS_MT_POSITION_Y, y);
856 contact_with_no_pen_down_count++;
857 }
858 }
859
860 /* keep touch state for pen event */
861 wacom->shared->touch_down = (contact_with_no_pen_down_count > 0);
862
863 input_mt_report_pointer_emulation(input, true);
864
865 return 1;
866 }
867
868 static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
869 {
870 char *data = wacom->data;
871 struct input_dev *input = wacom->input;
872 bool prox;
873 int x = 0, y = 0;
874
875 if (wacom->features.touch_max > 1 || len > WACOM_PKGLEN_TPC2FG)
876 return 0;
877
878 if (!wacom->shared->stylus_in_proximity) {
879 if (len == WACOM_PKGLEN_TPC1FG) {
880 prox = data[0] & 0x01;
881 x = get_unaligned_le16(&data[1]);
882 y = get_unaligned_le16(&data[3]);
883 } else { /* with capacity */
884 prox = data[1] & 0x01;
885 x = le16_to_cpup((__le16 *)&data[2]);
886 y = le16_to_cpup((__le16 *)&data[4]);
887 }
888 } else
889 /* force touch out when pen is in prox */
890 prox = 0;
891
892 if (prox) {
893 input_report_abs(input, ABS_X, x);
894 input_report_abs(input, ABS_Y, y);
895 }
896 input_report_key(input, BTN_TOUCH, prox);
897
898 /* keep touch state for pen events */
899 wacom->shared->touch_down = prox;
900
901 return 1;
902 }
903
904 static int wacom_tpc_pen(struct wacom_wac *wacom)
905 {
906 struct wacom_features *features = &wacom->features;
907 char *data = wacom->data;
908 struct input_dev *input = wacom->input;
909 int pressure;
910 bool prox = data[1] & 0x20;
911
912 if (!wacom->shared->stylus_in_proximity) /* first in prox */
913 /* Going into proximity select tool */
914 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
915
916 /* keep pen state for touch events */
917 wacom->shared->stylus_in_proximity = prox;
918
919 /* send pen events only when touch is up or forced out */
920 if (!wacom->shared->touch_down) {
921 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
922 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
923 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
924 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
925 pressure = ((data[7] & 0x01) << 8) | data[6];
926 if (pressure < 0)
927 pressure = features->pressure_max + pressure + 1;
928 input_report_abs(input, ABS_PRESSURE, pressure);
929 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
930 input_report_key(input, wacom->tool[0], prox);
931 return 1;
932 }
933
934 return 0;
935 }
936
937 static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
938 {
939 char *data = wacom->data;
940
941 dbg("wacom_tpc_irq: received report #%d", data[0]);
942
943 switch (len) {
944 case WACOM_PKGLEN_TPC1FG:
945 return wacom_tpc_single_touch(wacom, len);
946
947 case WACOM_PKGLEN_TPC2FG:
948 return wacom_tpc_mt_touch(wacom);
949
950 default:
951 switch (data[0]) {
952 case WACOM_REPORT_TPC1FG:
953 case WACOM_REPORT_TPCHID:
954 case WACOM_REPORT_TPCST:
955 return wacom_tpc_single_touch(wacom, len);
956
957 case WACOM_REPORT_TPCMT:
958 return wacom_mt_touch(wacom);
959
960 case WACOM_REPORT_PENABLED:
961 return wacom_tpc_pen(wacom);
962 }
963 }
964
965 return 0;
966 }
967
968 static int wacom_bpt_touch(struct wacom_wac *wacom)
969 {
970 struct wacom_features *features = &wacom->features;
971 struct input_dev *input = wacom->input;
972 unsigned char *data = wacom->data;
973 int i;
974
975 if (data[0] != 0x02)
976 return 0;
977
978 for (i = 0; i < 2; i++) {
979 int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
980 bool touch = data[offset + 3] & 0x80;
981
982 /*
983 * Touch events need to be disabled while stylus is
984 * in proximity because user's hand is resting on touchpad
985 * and sending unwanted events. User expects tablet buttons
986 * to continue working though.
987 */
988 touch = touch && !wacom->shared->stylus_in_proximity;
989
990 input_mt_slot(input, i);
991 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
992 if (touch) {
993 int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
994 int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
995 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
996 x <<= 5;
997 y <<= 5;
998 }
999 input_report_abs(input, ABS_MT_POSITION_X, x);
1000 input_report_abs(input, ABS_MT_POSITION_Y, y);
1001 }
1002 }
1003
1004 input_mt_report_pointer_emulation(input, true);
1005
1006 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
1007 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
1008 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
1009 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
1010
1011 input_sync(input);
1012
1013 return 0;
1014 }
1015
1016 static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
1017 {
1018 struct input_dev *input = wacom->input;
1019 int slot_id = data[0] - 2; /* data[0] is between 2 and 17 */
1020 bool touch = data[1] & 0x80;
1021
1022 touch = touch && !wacom->shared->stylus_in_proximity;
1023
1024 input_mt_slot(input, slot_id);
1025 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1026
1027 if (touch) {
1028 int x = (data[2] << 4) | (data[4] >> 4);
1029 int y = (data[3] << 4) | (data[4] & 0x0f);
1030 int w = data[6];
1031
1032 input_report_abs(input, ABS_MT_POSITION_X, x);
1033 input_report_abs(input, ABS_MT_POSITION_Y, y);
1034 input_report_abs(input, ABS_MT_TOUCH_MAJOR, w);
1035 }
1036 }
1037
1038 static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
1039 {
1040 struct input_dev *input = wacom->input;
1041
1042 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
1043 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
1044 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
1045 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
1046 }
1047
1048 static int wacom_bpt3_touch(struct wacom_wac *wacom)
1049 {
1050 struct input_dev *input = wacom->input;
1051 unsigned char *data = wacom->data;
1052 int count = data[1] & 0x07;
1053 int i;
1054
1055 if (data[0] != 0x02)
1056 return 0;
1057
1058 /* data has up to 7 fixed sized 8-byte messages starting at data[2] */
1059 for (i = 0; i < count; i++) {
1060 int offset = (8 * i) + 2;
1061 int msg_id = data[offset];
1062
1063 if (msg_id >= 2 && msg_id <= 17)
1064 wacom_bpt3_touch_msg(wacom, data + offset);
1065 else if (msg_id == 128)
1066 wacom_bpt3_button_msg(wacom, data + offset);
1067
1068 }
1069
1070 input_mt_report_pointer_emulation(input, true);
1071
1072 input_sync(input);
1073
1074 return 0;
1075 }
1076
1077 static int wacom_bpt_pen(struct wacom_wac *wacom)
1078 {
1079 struct input_dev *input = wacom->input;
1080 unsigned char *data = wacom->data;
1081 int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
1082
1083 if (data[0] != 0x02)
1084 return 0;
1085
1086 prox = (data[1] & 0x20) == 0x20;
1087
1088 /*
1089 * All reports shared between PEN and RUBBER tool must be
1090 * forced to a known starting value (zero) when transitioning to
1091 * out-of-prox.
1092 *
1093 * If not reset then, to userspace, it will look like lost events
1094 * if new tool comes in-prox with same values as previous tool sent.
1095 *
1096 * Hardware does report zero in most out-of-prox cases but not all.
1097 */
1098 if (prox) {
1099 if (!wacom->shared->stylus_in_proximity) {
1100 if (data[1] & 0x08) {
1101 wacom->tool[0] = BTN_TOOL_RUBBER;
1102 wacom->id[0] = ERASER_DEVICE_ID;
1103 } else {
1104 wacom->tool[0] = BTN_TOOL_PEN;
1105 wacom->id[0] = STYLUS_DEVICE_ID;
1106 }
1107 wacom->shared->stylus_in_proximity = true;
1108 }
1109 x = le16_to_cpup((__le16 *)&data[2]);
1110 y = le16_to_cpup((__le16 *)&data[4]);
1111 p = le16_to_cpup((__le16 *)&data[6]);
1112 /*
1113 * Convert distance from out prox to distance from tablet.
1114 * distance will be greater than distance_max once
1115 * touching and applying pressure; do not report negative
1116 * distance.
1117 */
1118 if (data[8] <= wacom->features.distance_max)
1119 d = wacom->features.distance_max - data[8];
1120
1121 pen = data[1] & 0x01;
1122 btn1 = data[1] & 0x02;
1123 btn2 = data[1] & 0x04;
1124 }
1125
1126 input_report_key(input, BTN_TOUCH, pen);
1127 input_report_key(input, BTN_STYLUS, btn1);
1128 input_report_key(input, BTN_STYLUS2, btn2);
1129
1130 input_report_abs(input, ABS_X, x);
1131 input_report_abs(input, ABS_Y, y);
1132 input_report_abs(input, ABS_PRESSURE, p);
1133 input_report_abs(input, ABS_DISTANCE, d);
1134
1135 if (!prox) {
1136 wacom->id[0] = 0;
1137 wacom->shared->stylus_in_proximity = false;
1138 }
1139
1140 input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
1141 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
1142
1143 return 1;
1144 }
1145
1146 static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
1147 {
1148 if (len == WACOM_PKGLEN_BBTOUCH)
1149 return wacom_bpt_touch(wacom);
1150 else if (len == WACOM_PKGLEN_BBTOUCH3)
1151 return wacom_bpt3_touch(wacom);
1152 else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
1153 return wacom_bpt_pen(wacom);
1154
1155 return 0;
1156 }
1157
1158 static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
1159 {
1160 unsigned char *data = wacom->data;
1161 int connected;
1162
1163 if (len != WACOM_PKGLEN_WIRELESS || data[0] != 0x80)
1164 return 0;
1165
1166 connected = data[1] & 0x01;
1167 if (connected) {
1168 int pid, battery;
1169
1170 pid = get_unaligned_be16(&data[6]);
1171 battery = data[5] & 0x3f;
1172 if (wacom->pid != pid) {
1173 wacom->pid = pid;
1174 wacom_schedule_work(wacom);
1175 }
1176 wacom->battery_capacity = battery;
1177 } else if (wacom->pid != 0) {
1178 /* disconnected while previously connected */
1179 wacom->pid = 0;
1180 wacom_schedule_work(wacom);
1181 wacom->battery_capacity = 0;
1182 }
1183
1184 return 0;
1185 }
1186
1187 void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
1188 {
1189 bool sync;
1190
1191 switch (wacom_wac->features.type) {
1192 case PENPARTNER:
1193 sync = wacom_penpartner_irq(wacom_wac);
1194 break;
1195
1196 case PL:
1197 sync = wacom_pl_irq(wacom_wac);
1198 break;
1199
1200 case WACOM_G4:
1201 case GRAPHIRE:
1202 case WACOM_MO:
1203 sync = wacom_graphire_irq(wacom_wac);
1204 break;
1205
1206 case PTU:
1207 sync = wacom_ptu_irq(wacom_wac);
1208 break;
1209
1210 case DTU:
1211 sync = wacom_dtu_irq(wacom_wac);
1212 break;
1213
1214 case INTUOS:
1215 case INTUOS3S:
1216 case INTUOS3:
1217 case INTUOS3L:
1218 case INTUOS4S:
1219 case INTUOS4:
1220 case INTUOS4L:
1221 case CINTIQ:
1222 case WACOM_BEE:
1223 case WACOM_21UX2:
1224 case WACOM_24HD:
1225 sync = wacom_intuos_irq(wacom_wac);
1226 break;
1227
1228 case INTUOS5S:
1229 case INTUOS5:
1230 case INTUOS5L:
1231 if (len == WACOM_PKGLEN_BBTOUCH3)
1232 sync = wacom_bpt3_touch(wacom_wac);
1233 else
1234 sync = wacom_intuos_irq(wacom_wac);
1235 break;
1236
1237 case TABLETPC:
1238 case TABLETPC2FG:
1239 case MTSCREEN:
1240 sync = wacom_tpc_irq(wacom_wac, len);
1241 break;
1242
1243 case BAMBOO_PT:
1244 sync = wacom_bpt_irq(wacom_wac, len);
1245 break;
1246
1247 case WIRELESS:
1248 sync = wacom_wireless_irq(wacom_wac, len);
1249 break;
1250
1251 default:
1252 sync = false;
1253 break;
1254 }
1255
1256 if (sync)
1257 input_sync(wacom_wac->input);
1258 }
1259
1260 static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
1261 {
1262 struct input_dev *input_dev = wacom_wac->input;
1263
1264 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
1265
1266 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1267 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1268 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
1269 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
1270 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
1271 __set_bit(BTN_STYLUS, input_dev->keybit);
1272 __set_bit(BTN_STYLUS2, input_dev->keybit);
1273
1274 input_set_abs_params(input_dev, ABS_DISTANCE,
1275 0, wacom_wac->features.distance_max, 0, 0);
1276 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
1277 input_set_abs_params(input_dev, ABS_TILT_X, 0, 127, 0, 0);
1278 input_set_abs_params(input_dev, ABS_TILT_Y, 0, 127, 0, 0);
1279 }
1280
1281 static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
1282 {
1283 struct input_dev *input_dev = wacom_wac->input;
1284
1285 input_set_capability(input_dev, EV_REL, REL_WHEEL);
1286
1287 wacom_setup_cintiq(wacom_wac);
1288
1289 __set_bit(BTN_LEFT, input_dev->keybit);
1290 __set_bit(BTN_RIGHT, input_dev->keybit);
1291 __set_bit(BTN_MIDDLE, input_dev->keybit);
1292 __set_bit(BTN_SIDE, input_dev->keybit);
1293 __set_bit(BTN_EXTRA, input_dev->keybit);
1294 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
1295 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
1296
1297 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
1298 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
1299 }
1300
1301 void wacom_setup_device_quirks(struct wacom_features *features)
1302 {
1303
1304 /* touch device found but size is not defined. use default */
1305 if (features->device_type == BTN_TOOL_FINGER && !features->x_max) {
1306 features->x_max = 1023;
1307 features->y_max = 1023;
1308 }
1309
1310 /* these device have multiple inputs */
1311 if (features->type == TABLETPC || features->type == TABLETPC2FG ||
1312 features->type == BAMBOO_PT || features->type == WIRELESS ||
1313 (features->type >= INTUOS5S && features->type <= INTUOS5L) ||
1314 features->type == MTSCREEN)
1315 features->quirks |= WACOM_QUIRK_MULTI_INPUT;
1316
1317 /* quirk for bamboo touch with 2 low res touches */
1318 if (features->type == BAMBOO_PT &&
1319 features->pktlen == WACOM_PKGLEN_BBTOUCH) {
1320 features->x_max <<= 5;
1321 features->y_max <<= 5;
1322 features->x_fuzz <<= 5;
1323 features->y_fuzz <<= 5;
1324 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
1325 }
1326
1327 if (features->type == WIRELESS) {
1328
1329 /* monitor never has input and pen/touch have delayed create */
1330 features->quirks |= WACOM_QUIRK_NO_INPUT;
1331
1332 /* must be monitor interface if no device_type set */
1333 if (!features->device_type)
1334 features->quirks |= WACOM_QUIRK_MONITOR;
1335 }
1336 }
1337
1338 static unsigned int wacom_calculate_touch_res(unsigned int logical_max,
1339 unsigned int physical_max)
1340 {
1341 /* Touch physical dimensions are in 100th of mm */
1342 return (logical_max * 100) / physical_max;
1343 }
1344
1345 int wacom_setup_input_capabilities(struct input_dev *input_dev,
1346 struct wacom_wac *wacom_wac)
1347 {
1348 struct wacom_features *features = &wacom_wac->features;
1349 int i;
1350
1351 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1352
1353 __set_bit(BTN_TOUCH, input_dev->keybit);
1354
1355 input_set_abs_params(input_dev, ABS_X, 0, features->x_max,
1356 features->x_fuzz, 0);
1357 input_set_abs_params(input_dev, ABS_Y, 0, features->y_max,
1358 features->y_fuzz, 0);
1359
1360 if (features->device_type == BTN_TOOL_PEN) {
1361 input_set_abs_params(input_dev, ABS_PRESSURE, 0, features->pressure_max,
1362 features->pressure_fuzz, 0);
1363
1364 /* penabled devices have fixed resolution for each model */
1365 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
1366 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
1367 } else {
1368 input_abs_set_res(input_dev, ABS_X,
1369 wacom_calculate_touch_res(features->x_max,
1370 features->x_phy));
1371 input_abs_set_res(input_dev, ABS_Y,
1372 wacom_calculate_touch_res(features->y_max,
1373 features->y_phy));
1374 }
1375
1376 __set_bit(ABS_MISC, input_dev->absbit);
1377
1378 switch (wacom_wac->features.type) {
1379 case WACOM_MO:
1380 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
1381 /* fall through */
1382
1383 case WACOM_G4:
1384 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
1385
1386 __set_bit(BTN_BACK, input_dev->keybit);
1387 __set_bit(BTN_FORWARD, input_dev->keybit);
1388 /* fall through */
1389
1390 case GRAPHIRE:
1391 input_set_capability(input_dev, EV_REL, REL_WHEEL);
1392
1393 __set_bit(BTN_LEFT, input_dev->keybit);
1394 __set_bit(BTN_RIGHT, input_dev->keybit);
1395 __set_bit(BTN_MIDDLE, input_dev->keybit);
1396
1397 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1398 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1399 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
1400 __set_bit(BTN_STYLUS, input_dev->keybit);
1401 __set_bit(BTN_STYLUS2, input_dev->keybit);
1402
1403 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1404 break;
1405
1406 case WACOM_24HD:
1407 __set_bit(BTN_A, input_dev->keybit);
1408 __set_bit(BTN_B, input_dev->keybit);
1409 __set_bit(BTN_C, input_dev->keybit);
1410 __set_bit(BTN_X, input_dev->keybit);
1411 __set_bit(BTN_Y, input_dev->keybit);
1412 __set_bit(BTN_Z, input_dev->keybit);
1413
1414 for (i = 0; i < 10; i++)
1415 __set_bit(BTN_0 + i, input_dev->keybit);
1416
1417 __set_bit(KEY_PROG1, input_dev->keybit);
1418 __set_bit(KEY_PROG2, input_dev->keybit);
1419 __set_bit(KEY_PROG3, input_dev->keybit);
1420
1421 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1422 input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0);
1423 wacom_setup_cintiq(wacom_wac);
1424 break;
1425
1426 case WACOM_21UX2:
1427 __set_bit(BTN_A, input_dev->keybit);
1428 __set_bit(BTN_B, input_dev->keybit);
1429 __set_bit(BTN_C, input_dev->keybit);
1430 __set_bit(BTN_X, input_dev->keybit);
1431 __set_bit(BTN_Y, input_dev->keybit);
1432 __set_bit(BTN_Z, input_dev->keybit);
1433 __set_bit(BTN_BASE, input_dev->keybit);
1434 __set_bit(BTN_BASE2, input_dev->keybit);
1435 /* fall through */
1436
1437 case WACOM_BEE:
1438 __set_bit(BTN_8, input_dev->keybit);
1439 __set_bit(BTN_9, input_dev->keybit);
1440 /* fall through */
1441
1442 case CINTIQ:
1443 for (i = 0; i < 8; i++)
1444 __set_bit(BTN_0 + i, input_dev->keybit);
1445
1446 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
1447 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
1448 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1449
1450 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
1451
1452 wacom_setup_cintiq(wacom_wac);
1453 break;
1454
1455 case INTUOS3:
1456 case INTUOS3L:
1457 __set_bit(BTN_4, input_dev->keybit);
1458 __set_bit(BTN_5, input_dev->keybit);
1459 __set_bit(BTN_6, input_dev->keybit);
1460 __set_bit(BTN_7, input_dev->keybit);
1461
1462 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
1463 /* fall through */
1464
1465 case INTUOS3S:
1466 __set_bit(BTN_0, input_dev->keybit);
1467 __set_bit(BTN_1, input_dev->keybit);
1468 __set_bit(BTN_2, input_dev->keybit);
1469 __set_bit(BTN_3, input_dev->keybit);
1470
1471 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
1472 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1473 /* fall through */
1474
1475 case INTUOS:
1476 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1477
1478 wacom_setup_intuos(wacom_wac);
1479 break;
1480
1481 case INTUOS5:
1482 case INTUOS5L:
1483 if (features->device_type == BTN_TOOL_PEN) {
1484 __set_bit(BTN_7, input_dev->keybit);
1485 __set_bit(BTN_8, input_dev->keybit);
1486 }
1487 /* fall through */
1488
1489 case INTUOS5S:
1490 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1491
1492 if (features->device_type == BTN_TOOL_PEN) {
1493 for (i = 0; i < 7; i++)
1494 __set_bit(BTN_0 + i, input_dev->keybit);
1495
1496 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
1497 features->distance_max,
1498 0, 0);
1499
1500 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1501
1502 wacom_setup_intuos(wacom_wac);
1503 } else if (features->device_type == BTN_TOOL_FINGER) {
1504 __clear_bit(ABS_MISC, input_dev->absbit);
1505
1506 __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
1507 __set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit);
1508 __set_bit(BTN_TOOL_TRIPLETAP, input_dev->keybit);
1509 __set_bit(BTN_TOOL_QUADTAP, input_dev->keybit);
1510
1511 input_mt_init_slots(input_dev, features->touch_max);
1512
1513 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR,
1514 0, 255, 0, 0);
1515
1516 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
1517 0, features->x_max,
1518 features->x_fuzz, 0);
1519 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
1520 0, features->y_max,
1521 features->y_fuzz, 0);
1522 }
1523 break;
1524
1525 case INTUOS4:
1526 case INTUOS4L:
1527 __set_bit(BTN_7, input_dev->keybit);
1528 __set_bit(BTN_8, input_dev->keybit);
1529 /* fall through */
1530
1531 case INTUOS4S:
1532 for (i = 0; i < 7; i++)
1533 __set_bit(BTN_0 + i, input_dev->keybit);
1534
1535 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1536 wacom_setup_intuos(wacom_wac);
1537
1538 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1539 break;
1540
1541 case TABLETPC2FG:
1542 case MTSCREEN:
1543 if (features->device_type == BTN_TOOL_FINGER) {
1544
1545 wacom_wac->slots = kmalloc(features->touch_max *
1546 sizeof(int),
1547 GFP_KERNEL);
1548 if (!wacom_wac->slots)
1549 return -ENOMEM;
1550
1551 for (i = 0; i < features->touch_max; i++)
1552 wacom_wac->slots[i] = -1;
1553
1554 input_mt_init_slots(input_dev, features->touch_max);
1555 input_set_abs_params(input_dev, ABS_MT_TOOL_TYPE,
1556 0, MT_TOOL_MAX, 0, 0);
1557 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
1558 0, features->x_max, 0, 0);
1559 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
1560 0, features->y_max, 0, 0);
1561 }
1562 /* fall through */
1563
1564 case TABLETPC:
1565 __clear_bit(ABS_MISC, input_dev->absbit);
1566
1567 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
1568
1569 if (features->device_type != BTN_TOOL_PEN)
1570 break; /* no need to process stylus stuff */
1571
1572 /* fall through */
1573
1574 case PL:
1575 case DTU:
1576 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1577 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1578 __set_bit(BTN_STYLUS, input_dev->keybit);
1579 __set_bit(BTN_STYLUS2, input_dev->keybit);
1580
1581 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
1582 break;
1583
1584 case PTU:
1585 __set_bit(BTN_STYLUS2, input_dev->keybit);
1586 /* fall through */
1587
1588 case PENPARTNER:
1589 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1590 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1591 __set_bit(BTN_STYLUS, input_dev->keybit);
1592
1593 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1594 break;
1595
1596 case BAMBOO_PT:
1597 __clear_bit(ABS_MISC, input_dev->absbit);
1598
1599 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1600
1601 if (features->device_type == BTN_TOOL_FINGER) {
1602 __set_bit(BTN_LEFT, input_dev->keybit);
1603 __set_bit(BTN_FORWARD, input_dev->keybit);
1604 __set_bit(BTN_BACK, input_dev->keybit);
1605 __set_bit(BTN_RIGHT, input_dev->keybit);
1606
1607 __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
1608 __set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit);
1609 input_mt_init_slots(input_dev, features->touch_max);
1610
1611 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
1612 __set_bit(BTN_TOOL_TRIPLETAP,
1613 input_dev->keybit);
1614 __set_bit(BTN_TOOL_QUADTAP,
1615 input_dev->keybit);
1616
1617 input_set_abs_params(input_dev,
1618 ABS_MT_TOUCH_MAJOR,
1619 0, 255, 0, 0);
1620 }
1621
1622 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
1623 0, features->x_max,
1624 features->x_fuzz, 0);
1625 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
1626 0, features->y_max,
1627 features->y_fuzz, 0);
1628 } else if (features->device_type == BTN_TOOL_PEN) {
1629 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1630 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1631 __set_bit(BTN_STYLUS, input_dev->keybit);
1632 __set_bit(BTN_STYLUS2, input_dev->keybit);
1633 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
1634 features->distance_max,
1635 0, 0);
1636 }
1637 break;
1638 }
1639 return 0;
1640 }
1641
1642 static const struct wacom_features wacom_features_0x00 =
1643 { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255,
1644 0, PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
1645 static const struct wacom_features wacom_features_0x10 =
1646 { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511,
1647 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
1648 static const struct wacom_features wacom_features_0x11 =
1649 { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511,
1650 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
1651 static const struct wacom_features wacom_features_0x12 =
1652 { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511,
1653 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
1654 static const struct wacom_features wacom_features_0x13 =
1655 { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511,
1656 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
1657 static const struct wacom_features wacom_features_0x14 =
1658 { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1659 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
1660 static const struct wacom_features wacom_features_0x15 =
1661 { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511,
1662 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
1663 static const struct wacom_features wacom_features_0x16 =
1664 { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1665 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
1666 static const struct wacom_features wacom_features_0x17 =
1667 { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511,
1668 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1669 static const struct wacom_features wacom_features_0x18 =
1670 { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511,
1671 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1672 static const struct wacom_features wacom_features_0x19 =
1673 { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1674 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
1675 static const struct wacom_features wacom_features_0x60 =
1676 { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1677 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
1678 static const struct wacom_features wacom_features_0x61 =
1679 { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255,
1680 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
1681 static const struct wacom_features wacom_features_0x62 =
1682 { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1683 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
1684 static const struct wacom_features wacom_features_0x63 =
1685 { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511,
1686 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
1687 static const struct wacom_features wacom_features_0x64 =
1688 { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511,
1689 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
1690 static const struct wacom_features wacom_features_0x65 =
1691 { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511,
1692 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1693 static const struct wacom_features wacom_features_0x69 =
1694 { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1695 63, GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
1696 static const struct wacom_features wacom_features_0x6A =
1697 { "Wacom Bamboo1 4x6", WACOM_PKGLEN_GRAPHIRE, 14760, 9225, 1023,
1698 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1699 static const struct wacom_features wacom_features_0x6B =
1700 { "Wacom Bamboo1 5x8", WACOM_PKGLEN_GRAPHIRE, 21648, 13530, 1023,
1701 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1702 static const struct wacom_features wacom_features_0x20 =
1703 { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023,
1704 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1705 static const struct wacom_features wacom_features_0x21 =
1706 { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1707 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1708 static const struct wacom_features wacom_features_0x22 =
1709 { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023,
1710 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1711 static const struct wacom_features wacom_features_0x23 =
1712 { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023,
1713 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1714 static const struct wacom_features wacom_features_0x24 =
1715 { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023,
1716 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1717 static const struct wacom_features wacom_features_0x30 =
1718 { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255,
1719 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1720 static const struct wacom_features wacom_features_0x31 =
1721 { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255,
1722 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1723 static const struct wacom_features wacom_features_0x32 =
1724 { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255,
1725 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1726 static const struct wacom_features wacom_features_0x33 =
1727 { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255,
1728 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1729 static const struct wacom_features wacom_features_0x34 =
1730 { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511,
1731 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1732 static const struct wacom_features wacom_features_0x35 =
1733 { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511,
1734 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1735 static const struct wacom_features wacom_features_0x37 =
1736 { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511,
1737 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1738 static const struct wacom_features wacom_features_0x38 =
1739 { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511,
1740 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1741 static const struct wacom_features wacom_features_0x39 =
1742 { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511,
1743 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1744 static const struct wacom_features wacom_features_0xC4 =
1745 { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511,
1746 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1747 static const struct wacom_features wacom_features_0xC0 =
1748 { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511,
1749 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1750 static const struct wacom_features wacom_features_0xC2 =
1751 { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511,
1752 0, PL, WACOM_PL_RES, WACOM_PL_RES };
1753 static const struct wacom_features wacom_features_0x03 =
1754 { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511,
1755 0, PTU, WACOM_PL_RES, WACOM_PL_RES };
1756 static const struct wacom_features wacom_features_0x41 =
1757 { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023,
1758 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1759 static const struct wacom_features wacom_features_0x42 =
1760 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1761 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1762 static const struct wacom_features wacom_features_0x43 =
1763 { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023,
1764 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1765 static const struct wacom_features wacom_features_0x44 =
1766 { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023,
1767 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1768 static const struct wacom_features wacom_features_0x45 =
1769 { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023,
1770 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1771 static const struct wacom_features wacom_features_0xB0 =
1772 { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023,
1773 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1774 static const struct wacom_features wacom_features_0xB1 =
1775 { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023,
1776 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1777 static const struct wacom_features wacom_features_0xB2 =
1778 { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023,
1779 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1780 static const struct wacom_features wacom_features_0xB3 =
1781 { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023,
1782 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1783 static const struct wacom_features wacom_features_0xB4 =
1784 { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023,
1785 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1786 static const struct wacom_features wacom_features_0xB5 =
1787 { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023,
1788 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1789 static const struct wacom_features wacom_features_0xB7 =
1790 { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023,
1791 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1792 static const struct wacom_features wacom_features_0xB8 =
1793 { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047,
1794 63, INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1795 static const struct wacom_features wacom_features_0xB9 =
1796 { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047,
1797 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1798 static const struct wacom_features wacom_features_0xBA =
1799 { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047,
1800 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1801 static const struct wacom_features wacom_features_0xBB =
1802 { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047,
1803 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1804 static const struct wacom_features wacom_features_0xBC =
1805 { "Wacom Intuos4 WL", WACOM_PKGLEN_INTUOS, 40840, 25400, 2047,
1806 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1807 static const struct wacom_features wacom_features_0x26 =
1808 { "Wacom Intuos5 touch S", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047,
1809 63, INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
1810 .touch_max = 16 };
1811 static const struct wacom_features wacom_features_0x27 =
1812 { "Wacom Intuos5 touch M", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047,
1813 63, INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
1814 .touch_max = 16 };
1815 static const struct wacom_features wacom_features_0x28 =
1816 { "Wacom Intuos5 touch L", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047,
1817 63, INTUOS5L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
1818 .touch_max = 16 };
1819 static const struct wacom_features wacom_features_0x29 =
1820 { "Wacom Intuos5 S", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047,
1821 63, INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1822 static const struct wacom_features wacom_features_0x2A =
1823 { "Wacom Intuos5 M", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047,
1824 63, INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1825 static const struct wacom_features wacom_features_0xF4 =
1826 { "Wacom Cintiq 24HD", WACOM_PKGLEN_INTUOS, 104480, 65600, 2047,
1827 63, WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1828 static const struct wacom_features wacom_features_0x3F =
1829 { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023,
1830 63, CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1831 static const struct wacom_features wacom_features_0xC5 =
1832 { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023,
1833 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1834 static const struct wacom_features wacom_features_0xC6 =
1835 { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023,
1836 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1837 static const struct wacom_features wacom_features_0xC7 =
1838 { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511,
1839 0, PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1840 static const struct wacom_features wacom_features_0xCE =
1841 { "Wacom DTU2231", WACOM_PKGLEN_GRAPHIRE, 47864, 27011, 511,
1842 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1843 static const struct wacom_features wacom_features_0xF0 =
1844 { "Wacom DTU1631", WACOM_PKGLEN_GRAPHIRE, 34623, 19553, 511,
1845 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1846 static const struct wacom_features wacom_features_0xCC =
1847 { "Wacom Cintiq 21UX2", WACOM_PKGLEN_INTUOS, 87200, 65600, 2047,
1848 63, WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
1849 static const struct wacom_features wacom_features_0x90 =
1850 { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1851 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1852 static const struct wacom_features wacom_features_0x93 =
1853 { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1854 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1855 static const struct wacom_features wacom_features_0x97 =
1856 { "Wacom ISDv4 97", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 511,
1857 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1858 static const struct wacom_features wacom_features_0x9A =
1859 { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1860 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1861 static const struct wacom_features wacom_features_0x9F =
1862 { "Wacom ISDv4 9F", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1863 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1864 static const struct wacom_features wacom_features_0xE2 =
1865 { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255,
1866 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1867 .touch_max = 2 };
1868 static const struct wacom_features wacom_features_0xE3 =
1869 { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255,
1870 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1871 .touch_max = 2 };
1872 static const struct wacom_features wacom_features_0xE5 =
1873 { "Wacom ISDv4 E5", WACOM_PKGLEN_MTOUCH, 26202, 16325, 255,
1874 0, MTSCREEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1875 static const struct wacom_features wacom_features_0xE6 =
1876 { "Wacom ISDv4 E6", WACOM_PKGLEN_TPC2FG, 27760, 15694, 255,
1877 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1878 .touch_max = 2 };
1879 static const struct wacom_features wacom_features_0xEC =
1880 { "Wacom ISDv4 EC", WACOM_PKGLEN_GRAPHIRE, 25710, 14500, 255,
1881 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1882 static const struct wacom_features wacom_features_0x47 =
1883 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1884 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1885 static const struct wacom_features wacom_features_0x84 =
1886 { "Wacom Wireless Receiver", WACOM_PKGLEN_WIRELESS, 0, 0, 0,
1887 0, WIRELESS, 0, 0, .touch_max = 16 };
1888 static const struct wacom_features wacom_features_0xD0 =
1889 { "Wacom Bamboo 2FG", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1890 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1891 .touch_max = 2 };
1892 static const struct wacom_features wacom_features_0xD1 =
1893 { "Wacom Bamboo 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1894 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1895 .touch_max = 2 };
1896 static const struct wacom_features wacom_features_0xD2 =
1897 { "Wacom Bamboo Craft", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1898 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1899 static const struct wacom_features wacom_features_0xD3 =
1900 { "Wacom Bamboo 2FG 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
1901 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1902 .touch_max = 2 };
1903 static const struct wacom_features wacom_features_0xD4 =
1904 { "Wacom Bamboo Pen", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1905 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1906 static const struct wacom_features wacom_features_0xD5 =
1907 { "Wacom Bamboo Pen 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
1908 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1909 static const struct wacom_features wacom_features_0xD6 =
1910 { "Wacom BambooPT 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1911 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1912 .touch_max = 2 };
1913 static const struct wacom_features wacom_features_0xD7 =
1914 { "Wacom BambooPT 2FG Small", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1915 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1916 .touch_max = 2 };
1917 static const struct wacom_features wacom_features_0xD8 =
1918 { "Wacom Bamboo Comic 2FG", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
1919 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1920 .touch_max = 2 };
1921 static const struct wacom_features wacom_features_0xDA =
1922 { "Wacom Bamboo 2FG 4x5 SE", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1923 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1924 .touch_max = 2 };
1925 static struct wacom_features wacom_features_0xDB =
1926 { "Wacom Bamboo 2FG 6x8 SE", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
1927 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1928 .touch_max = 2 };
1929 static const struct wacom_features wacom_features_0xDD =
1930 { "Wacom Bamboo Connect", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023,
1931 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1932 static const struct wacom_features wacom_features_0xDE =
1933 { "Wacom Bamboo 16FG 4x5", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023,
1934 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1935 .touch_max = 16 };
1936 static const struct wacom_features wacom_features_0xDF =
1937 { "Wacom Bamboo 16FG 6x8", WACOM_PKGLEN_BBPEN, 21648, 13700, 1023,
1938 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
1939 .touch_max = 16 };
1940 static const struct wacom_features wacom_features_0x6004 =
1941 { "ISD-V4", WACOM_PKGLEN_GRAPHIRE, 12800, 8000, 255,
1942 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1943
1944 #define USB_DEVICE_WACOM(prod) \
1945 USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \
1946 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1947
1948 #define USB_DEVICE_DETAILED(prod, class, sub, proto) \
1949 USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_WACOM, prod, class, \
1950 sub, proto), \
1951 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1952
1953 #define USB_DEVICE_LENOVO(prod) \
1954 USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
1955 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1956
1957 const struct usb_device_id wacom_ids[] = {
1958 { USB_DEVICE_WACOM(0x00) },
1959 { USB_DEVICE_WACOM(0x10) },
1960 { USB_DEVICE_WACOM(0x11) },
1961 { USB_DEVICE_WACOM(0x12) },
1962 { USB_DEVICE_WACOM(0x13) },
1963 { USB_DEVICE_WACOM(0x14) },
1964 { USB_DEVICE_WACOM(0x15) },
1965 { USB_DEVICE_WACOM(0x16) },
1966 { USB_DEVICE_WACOM(0x17) },
1967 { USB_DEVICE_WACOM(0x18) },
1968 { USB_DEVICE_WACOM(0x19) },
1969 { USB_DEVICE_WACOM(0x60) },
1970 { USB_DEVICE_WACOM(0x61) },
1971 { USB_DEVICE_WACOM(0x62) },
1972 { USB_DEVICE_WACOM(0x63) },
1973 { USB_DEVICE_WACOM(0x64) },
1974 { USB_DEVICE_WACOM(0x65) },
1975 { USB_DEVICE_WACOM(0x69) },
1976 { USB_DEVICE_WACOM(0x6A) },
1977 { USB_DEVICE_WACOM(0x6B) },
1978 { USB_DEVICE_WACOM(0x20) },
1979 { USB_DEVICE_WACOM(0x21) },
1980 { USB_DEVICE_WACOM(0x22) },
1981 { USB_DEVICE_WACOM(0x23) },
1982 { USB_DEVICE_WACOM(0x24) },
1983 { USB_DEVICE_WACOM(0x30) },
1984 { USB_DEVICE_WACOM(0x31) },
1985 { USB_DEVICE_WACOM(0x32) },
1986 { USB_DEVICE_WACOM(0x33) },
1987 { USB_DEVICE_WACOM(0x34) },
1988 { USB_DEVICE_WACOM(0x35) },
1989 { USB_DEVICE_WACOM(0x37) },
1990 { USB_DEVICE_WACOM(0x38) },
1991 { USB_DEVICE_WACOM(0x39) },
1992 { USB_DEVICE_WACOM(0xC4) },
1993 { USB_DEVICE_WACOM(0xC0) },
1994 { USB_DEVICE_WACOM(0xC2) },
1995 { USB_DEVICE_WACOM(0x03) },
1996 { USB_DEVICE_WACOM(0x41) },
1997 { USB_DEVICE_WACOM(0x42) },
1998 { USB_DEVICE_WACOM(0x43) },
1999 { USB_DEVICE_WACOM(0x44) },
2000 { USB_DEVICE_WACOM(0x45) },
2001 { USB_DEVICE_WACOM(0xB0) },
2002 { USB_DEVICE_WACOM(0xB1) },
2003 { USB_DEVICE_WACOM(0xB2) },
2004 { USB_DEVICE_WACOM(0xB3) },
2005 { USB_DEVICE_WACOM(0xB4) },
2006 { USB_DEVICE_WACOM(0xB5) },
2007 { USB_DEVICE_WACOM(0xB7) },
2008 { USB_DEVICE_WACOM(0xB8) },
2009 { USB_DEVICE_WACOM(0xB9) },
2010 { USB_DEVICE_WACOM(0xBA) },
2011 { USB_DEVICE_WACOM(0xBB) },
2012 { USB_DEVICE_WACOM(0xBC) },
2013 { USB_DEVICE_WACOM(0x26) },
2014 { USB_DEVICE_WACOM(0x27) },
2015 { USB_DEVICE_WACOM(0x28) },
2016 { USB_DEVICE_WACOM(0x29) },
2017 { USB_DEVICE_WACOM(0x2A) },
2018 { USB_DEVICE_WACOM(0x3F) },
2019 { USB_DEVICE_WACOM(0xC5) },
2020 { USB_DEVICE_WACOM(0xC6) },
2021 { USB_DEVICE_WACOM(0xC7) },
2022 /*
2023 * DTU-2231 has two interfaces on the same configuration,
2024 * only one is used.
2025 */
2026 { USB_DEVICE_DETAILED(0xCE, USB_CLASS_HID,
2027 USB_INTERFACE_SUBCLASS_BOOT,
2028 USB_INTERFACE_PROTOCOL_MOUSE) },
2029 { USB_DEVICE_WACOM(0x84) },
2030 { USB_DEVICE_WACOM(0xD0) },
2031 { USB_DEVICE_WACOM(0xD1) },
2032 { USB_DEVICE_WACOM(0xD2) },
2033 { USB_DEVICE_WACOM(0xD3) },
2034 { USB_DEVICE_WACOM(0xD4) },
2035 { USB_DEVICE_WACOM(0xD5) },
2036 { USB_DEVICE_WACOM(0xD6) },
2037 { USB_DEVICE_WACOM(0xD7) },
2038 { USB_DEVICE_WACOM(0xD8) },
2039 { USB_DEVICE_WACOM(0xDA) },
2040 { USB_DEVICE_WACOM(0xDB) },
2041 { USB_DEVICE_WACOM(0xDD) },
2042 { USB_DEVICE_WACOM(0xDE) },
2043 { USB_DEVICE_WACOM(0xDF) },
2044 { USB_DEVICE_WACOM(0xF0) },
2045 { USB_DEVICE_WACOM(0xCC) },
2046 { USB_DEVICE_WACOM(0x90) },
2047 { USB_DEVICE_WACOM(0x93) },
2048 { USB_DEVICE_WACOM(0x97) },
2049 { USB_DEVICE_WACOM(0x9A) },
2050 { USB_DEVICE_WACOM(0x9F) },
2051 { USB_DEVICE_WACOM(0xE2) },
2052 { USB_DEVICE_WACOM(0xE3) },
2053 { USB_DEVICE_WACOM(0xE5) },
2054 { USB_DEVICE_WACOM(0xE6) },
2055 { USB_DEVICE_WACOM(0xEC) },
2056 { USB_DEVICE_WACOM(0x47) },
2057 { USB_DEVICE_WACOM(0xF4) },
2058 { USB_DEVICE_LENOVO(0x6004) },
2059 { }
2060 };
2061 MODULE_DEVICE_TABLE(usb, wacom_ids);