]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/input/tablet/wacom_wac.c
Input: add driver for Sharp gp2ap002a00f proximity sensor
[mirror_ubuntu-hirsute-kernel.git] / drivers / input / tablet / wacom_wac.c
CommitLineData
3bea733a 1/*
4104d13f 2 * drivers/input/tablet/wacom_wac.c
3bea733a 3 *
ee54500d 4 * USB Wacom tablet support - Wacom specific code
3bea733a
PC
5 *
6 */
7
8/*
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
51269fe8 14
3bea733a 15#include "wacom_wac.h"
51269fe8 16#include "wacom.h"
47c78e89 17#include <linux/input/mt.h>
1483f551 18#include <linux/hid.h>
3bea733a 19
e35fb8c1
PC
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
95dd3b30 28static int wacom_penpartner_irq(struct wacom_wac *wacom)
3bea733a
PC
29{
30 unsigned char *data = wacom->data;
8da23fc1 31 struct input_dev *input = wacom->input;
3bea733a
PC
32
33 switch (data[0]) {
73a97f4f
DT
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;
8da23fc1
DT
38 input_report_key(input, wacom->tool[0], 1);
39 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
252f7769
DT
40 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
41 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
8da23fc1
DT
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));
73a97f4f 45 } else {
8da23fc1
DT
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);
73a97f4f
DT
50 }
51 break;
8da23fc1 52
73a97f4f 53 case 2:
8da23fc1
DT
54 input_report_key(input, BTN_TOOL_PEN, 1);
55 input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
252f7769
DT
56 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
57 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
8da23fc1
DT
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));
73a97f4f 61 break;
8da23fc1 62
73a97f4f
DT
63 default:
64 printk(KERN_INFO "wacom_penpartner_irq: received unknown report #%d\n", data[0]);
65 return 0;
3bea733a 66 }
8da23fc1 67
3bea733a
PC
68 return 1;
69}
70
95dd3b30 71static int wacom_pl_irq(struct wacom_wac *wacom)
3bea733a 72{
e33da8a5 73 struct wacom_features *features = &wacom->features;
3bea733a 74 unsigned char *data = wacom->data;
8da23fc1 75 struct input_dev *input = wacom->input;
e34b9d2f 76 int prox, pressure;
3bea733a 77
cad74700 78 if (data[0] != WACOM_REPORT_PENABLED) {
3bea733a
PC
79 dbg("wacom_pl_irq: received unknown report #%d", data[0]);
80 return 0;
81 }
82
83 prox = data[1] & 0x40;
84
3bea733a 85 if (prox) {
ec67bbed 86 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a 87 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
e33da8a5 88 if (features->pressure_max > 255)
3bea733a 89 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
e33da8a5 90 pressure += (features->pressure_max + 1) / 2;
3bea733a
PC
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 */
8da23fc1
DT
109 input_report_key(input, wacom->tool[1], 0);
110 input_sync(input);
3bea733a
PC
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;
e34b9d2f 118 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a 119 }
8da23fc1
DT
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);
3bea733a 128 /* Only allow the stylus2 button to be reported for the pen tool. */
8da23fc1 129 input_report_key(input, BTN_STYLUS2, (wacom->tool[1] == BTN_TOOL_PEN) && (data[4] & 0x20));
3bea733a
PC
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 }
8da23fc1 136 input_report_key(input, wacom->tool[1], prox);
3bea733a
PC
137 }
138
139 wacom->tool[0] = prox; /* Save proximity state */
140 return 1;
141}
142
95dd3b30 143static int wacom_ptu_irq(struct wacom_wac *wacom)
3bea733a
PC
144{
145 unsigned char *data = wacom->data;
8da23fc1 146 struct input_dev *input = wacom->input;
3bea733a 147
cad74700 148 if (data[0] != WACOM_REPORT_PENABLED) {
3bea733a
PC
149 printk(KERN_INFO "wacom_ptu_irq: received unknown report #%d\n", data[0]);
150 return 0;
151 }
152
3bea733a 153 if (data[1] & 0x04) {
8da23fc1
DT
154 input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
155 input_report_key(input, BTN_TOUCH, data[1] & 0x08);
e34b9d2f 156 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a 157 } else {
8da23fc1
DT
158 input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
159 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
e34b9d2f 160 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a 161 }
8da23fc1 162 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
252f7769
DT
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]));
8da23fc1
DT
166 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
167 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
3bea733a
PC
168 return 1;
169}
170
c8f2edc5
PC
171static 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
95dd3b30 204static int wacom_graphire_irq(struct wacom_wac *wacom)
3bea733a 205{
e33da8a5 206 struct wacom_features *features = &wacom->features;
3bea733a 207 unsigned char *data = wacom->data;
8da23fc1 208 struct input_dev *input = wacom->input;
252f7769 209 int prox;
3b57ca0f
PC
210 int rw = 0;
211 int retval = 0;
3bea733a 212
cad74700 213 if (data[0] != WACOM_REPORT_PENABLED) {
3bea733a 214 dbg("wacom_graphire_irq: received unknown report #%d", data[0]);
3b57ca0f 215 goto exit;
3bea733a
PC
216 }
217
3b57ca0f
PC
218 prox = data[1] & 0x80;
219 if (prox || wacom->id[0]) {
220 if (prox) {
221 switch ((data[1] >> 5) & 3) {
3bea733a
PC
222
223 case 0: /* Pen */
224 wacom->tool[0] = BTN_TOOL_PEN;
e34b9d2f 225 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a
PC
226 break;
227
228 case 1: /* Rubber */
229 wacom->tool[0] = BTN_TOOL_RUBBER;
e34b9d2f 230 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a
PC
231 break;
232
233 case 2: /* Mouse with wheel */
8da23fc1 234 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
3bea733a
PC
235 /* fall through */
236
237 case 3: /* Mouse without wheel */
238 wacom->tool[0] = BTN_TOOL_MOUSE;
e34b9d2f 239 wacom->id[0] = CURSOR_DEVICE_ID;
3bea733a 240 break;
3b57ca0f 241 }
3bea733a 242 }
252f7769
DT
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]));
3bea733a 245 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
8da23fc1
DT
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);
afb567e3 250 } else {
8da23fc1
DT
251 input_report_key(input, BTN_LEFT, data[1] & 0x01);
252 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
3b57ca0f
PC
253 if (features->type == WACOM_G4 ||
254 features->type == WACOM_MO) {
8da23fc1 255 input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f);
d9f66c1a 256 rw = (data[7] & 0x04) - (data[7] & 0x03);
3b57ca0f 257 } else {
8da23fc1 258 input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f);
d9f66c1a 259 rw = -(signed char)data[6];
3b57ca0f 260 }
8da23fc1 261 input_report_rel(input, REL_WHEEL, rw);
afb567e3 262 }
3b57ca0f
PC
263
264 if (!prox)
265 wacom->id[0] = 0;
8da23fc1
DT
266 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
267 input_report_key(input, wacom->tool[0], prox);
998c454e 268 input_event(input, EV_MSC, MSC_SERIAL, 1);
8da23fc1 269 input_sync(input); /* sync last event */
80d4e8e9 270 }
3bea733a
PC
271
272 /* send pad data */
e33da8a5 273 switch (features->type) {
73a97f4f 274 case WACOM_G4:
3b57ca0f
PC
275 prox = data[7] & 0xf8;
276 if (prox || wacom->id[1]) {
e34b9d2f 277 wacom->id[1] = PAD_DEVICE_ID;
0bd10ef8
PC
278 input_report_key(input, BTN_BACK, (data[7] & 0x40));
279 input_report_key(input, BTN_FORWARD, (data[7] & 0x80));
3bea733a 280 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
8da23fc1 281 input_report_rel(input, REL_WHEEL, rw);
3b57ca0f
PC
282 if (!prox)
283 wacom->id[1] = 0;
8da23fc1
DT
284 input_report_abs(input, ABS_MISC, wacom->id[1]);
285 input_event(input, EV_MSC, MSC_SERIAL, 0xf0);
ab687b18 286 retval = 1;
3bea733a 287 }
7ecfbfd3 288 break;
73a97f4f
DT
289
290 case WACOM_MO:
3b57ca0f
PC
291 prox = (data[7] & 0xf8) || data[8];
292 if (prox || wacom->id[1]) {
e34b9d2f 293 wacom->id[1] = PAD_DEVICE_ID;
0bd10ef8
PC
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));
8da23fc1 298 input_report_abs(input, ABS_WHEEL, (data[8] & 0x7f));
3b57ca0f
PC
299 if (!prox)
300 wacom->id[1] = 0;
8da23fc1
DT
301 input_report_abs(input, ABS_MISC, wacom->id[1]);
302 input_event(input, EV_MSC, MSC_SERIAL, 0xf0);
84460014 303 retval = 1;
7ecfbfd3
PC
304 }
305 break;
3bea733a 306 }
3b57ca0f
PC
307exit:
308 return retval;
3bea733a
PC
309}
310
95dd3b30 311static int wacom_intuos_inout(struct wacom_wac *wacom)
3bea733a 312{
e33da8a5 313 struct wacom_features *features = &wacom->features;
3bea733a 314 unsigned char *data = wacom->data;
8da23fc1 315 struct input_dev *input = wacom->input;
6f660f12 316 int idx = 0;
3bea733a
PC
317
318 /* tool number */
e33da8a5 319 if (features->type == INTUOS)
6f660f12 320 idx = data[1] & 0x01;
3bea733a
PC
321
322 /* Enter report */
323 if ((data[1] & 0xfc) == 0xc0) {
324 /* serial number of the tool */
325 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
326 (data[4] << 20) + (data[5] << 12) +
327 (data[6] << 4) + (data[7] >> 4);
328
493630b2
PC
329 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
330 ((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12);
73a97f4f 331
493630b2 332 switch (wacom->id[idx] & 0xfffff) {
73a97f4f
DT
333 case 0x812: /* Inking pen */
334 case 0x801: /* Intuos3 Inking pen */
493630b2 335 case 0x20802: /* Intuos4 Inking Pen */
73a97f4f
DT
336 case 0x012:
337 wacom->tool[idx] = BTN_TOOL_PENCIL;
338 break;
339
340 case 0x822: /* Pen */
341 case 0x842:
342 case 0x852:
343 case 0x823: /* Intuos3 Grip Pen */
344 case 0x813: /* Intuos3 Classic Pen */
345 case 0x885: /* Intuos3 Marker Pen */
3a4b4aaa 346 case 0x802: /* Intuos4 General Pen */
73a97f4f
DT
347 case 0x804: /* Intuos4 Marker Pen */
348 case 0x40802: /* Intuos4 Classic Pen */
349 case 0x022:
350 wacom->tool[idx] = BTN_TOOL_PEN;
351 break;
352
353 case 0x832: /* Stroke pen */
354 case 0x032:
355 wacom->tool[idx] = BTN_TOOL_BRUSH;
356 break;
357
358 case 0x007: /* Mouse 4D and 2D */
359 case 0x09c:
360 case 0x094:
361 case 0x017: /* Intuos3 2D Mouse */
362 case 0x806: /* Intuos4 Mouse */
363 wacom->tool[idx] = BTN_TOOL_MOUSE;
364 break;
365
366 case 0x096: /* Lens cursor */
367 case 0x097: /* Intuos3 Lens cursor */
368 case 0x006: /* Intuos4 Lens cursor */
369 wacom->tool[idx] = BTN_TOOL_LENS;
370 break;
371
372 case 0x82a: /* Eraser */
373 case 0x85a:
374 case 0x91a:
375 case 0xd1a:
376 case 0x0fa:
377 case 0x82b: /* Intuos3 Grip Pen Eraser */
378 case 0x81b: /* Intuos3 Classic Pen Eraser */
379 case 0x91b: /* Intuos3 Airbrush Eraser */
380 case 0x80c: /* Intuos4 Marker Pen Eraser */
3a4b4aaa 381 case 0x80a: /* Intuos4 General Pen Eraser */
73a97f4f
DT
382 case 0x4080a: /* Intuos4 Classic Pen Eraser */
383 case 0x90a: /* Intuos4 Airbrush Eraser */
384 wacom->tool[idx] = BTN_TOOL_RUBBER;
385 break;
386
387 case 0xd12:
388 case 0x912:
389 case 0x112:
390 case 0x913: /* Intuos3 Airbrush */
391 case 0x902: /* Intuos4 Airbrush */
392 wacom->tool[idx] = BTN_TOOL_AIRBRUSH;
393 break;
394
395 default: /* Unknown tool */
396 wacom->tool[idx] = BTN_TOOL_PEN;
397 break;
3bea733a 398 }
3bea733a
PC
399 return 1;
400 }
401
3a4b4aaa
PC
402 /* older I4 styli don't work with new Cintiqs */
403 if (!((wacom->id[idx] >> 20) & 0x01) &&
404 (features->type == WACOM_21UX2))
405 return 1;
406
3bea733a
PC
407 /* Exit report */
408 if ((data[1] & 0xfe) == 0x80) {
6f660f12
PC
409 /*
410 * Reset all states otherwise we lose the initial states
411 * when in-prox next time
412 */
8da23fc1
DT
413 input_report_abs(input, ABS_X, 0);
414 input_report_abs(input, ABS_Y, 0);
415 input_report_abs(input, ABS_DISTANCE, 0);
416 input_report_abs(input, ABS_TILT_X, 0);
417 input_report_abs(input, ABS_TILT_Y, 0);
80d4e8e9 418 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
8da23fc1
DT
419 input_report_key(input, BTN_LEFT, 0);
420 input_report_key(input, BTN_MIDDLE, 0);
421 input_report_key(input, BTN_RIGHT, 0);
422 input_report_key(input, BTN_SIDE, 0);
423 input_report_key(input, BTN_EXTRA, 0);
424 input_report_abs(input, ABS_THROTTLE, 0);
425 input_report_abs(input, ABS_RZ, 0);
7ecfbfd3 426 } else {
8da23fc1
DT
427 input_report_abs(input, ABS_PRESSURE, 0);
428 input_report_key(input, BTN_STYLUS, 0);
429 input_report_key(input, BTN_STYLUS2, 0);
430 input_report_key(input, BTN_TOUCH, 0);
431 input_report_abs(input, ABS_WHEEL, 0);
e33da8a5 432 if (features->type >= INTUOS3S)
8da23fc1 433 input_report_abs(input, ABS_Z, 0);
8d32e3ae 434 }
8da23fc1
DT
435 input_report_key(input, wacom->tool[idx], 0);
436 input_report_abs(input, ABS_MISC, 0); /* reset tool id */
437 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
6f660f12 438 wacom->id[idx] = 0;
80d4e8e9 439 return 2;
3bea733a
PC
440 }
441 return 0;
442}
443
95dd3b30 444static void wacom_intuos_general(struct wacom_wac *wacom)
3bea733a 445{
e33da8a5 446 struct wacom_features *features = &wacom->features;
3bea733a 447 unsigned char *data = wacom->data;
8da23fc1 448 struct input_dev *input = wacom->input;
3bea733a
PC
449 unsigned int t;
450
451 /* general pen packet */
452 if ((data[1] & 0xb8) == 0xa0) {
453 t = (data[6] << 2) | ((data[7] >> 6) & 3);
ca047fed
AR
454 if ((features->type >= INTUOS4S && features->type <= INTUOS4L) ||
455 features->type == WACOM_21UX2) {
6f660f12 456 t = (t << 1) | (data[1] & 1);
ca047fed 457 }
8da23fc1
DT
458 input_report_abs(input, ABS_PRESSURE, t);
459 input_report_abs(input, ABS_TILT_X,
3bea733a 460 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
8da23fc1
DT
461 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
462 input_report_key(input, BTN_STYLUS, data[1] & 2);
463 input_report_key(input, BTN_STYLUS2, data[1] & 4);
464 input_report_key(input, BTN_TOUCH, t > 10);
3bea733a
PC
465 }
466
467 /* airbrush second packet */
468 if ((data[1] & 0xbc) == 0xb4) {
8da23fc1 469 input_report_abs(input, ABS_WHEEL,
3bea733a 470 (data[6] << 2) | ((data[7] >> 6) & 3));
8da23fc1 471 input_report_abs(input, ABS_TILT_X,
3bea733a 472 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
8da23fc1 473 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
3bea733a 474 }
3bea733a
PC
475}
476
95dd3b30 477static int wacom_intuos_irq(struct wacom_wac *wacom)
3bea733a 478{
e33da8a5 479 struct wacom_features *features = &wacom->features;
3bea733a 480 unsigned char *data = wacom->data;
8da23fc1 481 struct input_dev *input = wacom->input;
3bea733a 482 unsigned int t;
6f660f12 483 int idx = 0, result;
3bea733a 484
cad74700
PC
485 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD
486 && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) {
3bea733a
PC
487 dbg("wacom_intuos_irq: received unknown report #%d", data[0]);
488 return 0;
489 }
490
3bea733a 491 /* tool number */
e33da8a5 492 if (features->type == INTUOS)
6f660f12 493 idx = data[1] & 0x01;
3bea733a
PC
494
495 /* pad packets. Works as a second tool and is always in prox */
cad74700 496 if (data[0] == WACOM_REPORT_INTUOSPAD) {
e33da8a5 497 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
8da23fc1
DT
498 input_report_key(input, BTN_0, (data[2] & 0x01));
499 input_report_key(input, BTN_1, (data[3] & 0x01));
500 input_report_key(input, BTN_2, (data[3] & 0x02));
501 input_report_key(input, BTN_3, (data[3] & 0x04));
502 input_report_key(input, BTN_4, (data[3] & 0x08));
503 input_report_key(input, BTN_5, (data[3] & 0x10));
504 input_report_key(input, BTN_6, (data[3] & 0x20));
6f660f12 505 if (data[1] & 0x80) {
8da23fc1 506 input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
a8629528
PC
507 } else {
508 /* Out of proximity, clear wheel value. */
8da23fc1 509 input_report_abs(input, ABS_WHEEL, 0);
6f660f12 510 }
e33da8a5 511 if (features->type != INTUOS4S) {
8da23fc1
DT
512 input_report_key(input, BTN_7, (data[3] & 0x40));
513 input_report_key(input, BTN_8, (data[3] & 0x80));
6f660f12
PC
514 }
515 if (data[1] | (data[2] & 0x01) | data[3]) {
8da23fc1
DT
516 input_report_key(input, wacom->tool[1], 1);
517 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
6f660f12 518 } else {
8da23fc1
DT
519 input_report_key(input, wacom->tool[1], 0);
520 input_report_abs(input, ABS_MISC, 0);
6f660f12
PC
521 }
522 } else {
3a4b4aaa
PC
523 if (features->type == WACOM_21UX2) {
524 input_report_key(input, BTN_0, (data[5] & 0x01));
525 input_report_key(input, BTN_1, (data[6] & 0x01));
526 input_report_key(input, BTN_2, (data[6] & 0x02));
527 input_report_key(input, BTN_3, (data[6] & 0x04));
528 input_report_key(input, BTN_4, (data[6] & 0x08));
529 input_report_key(input, BTN_5, (data[6] & 0x10));
530 input_report_key(input, BTN_6, (data[6] & 0x20));
531 input_report_key(input, BTN_7, (data[6] & 0x40));
532 input_report_key(input, BTN_8, (data[6] & 0x80));
533 input_report_key(input, BTN_9, (data[7] & 0x01));
534 input_report_key(input, BTN_A, (data[8] & 0x01));
535 input_report_key(input, BTN_B, (data[8] & 0x02));
536 input_report_key(input, BTN_C, (data[8] & 0x04));
537 input_report_key(input, BTN_X, (data[8] & 0x08));
538 input_report_key(input, BTN_Y, (data[8] & 0x10));
539 input_report_key(input, BTN_Z, (data[8] & 0x20));
540 input_report_key(input, BTN_BASE, (data[8] & 0x40));
541 input_report_key(input, BTN_BASE2, (data[8] & 0x80));
542 } else {
543 input_report_key(input, BTN_0, (data[5] & 0x01));
544 input_report_key(input, BTN_1, (data[5] & 0x02));
545 input_report_key(input, BTN_2, (data[5] & 0x04));
546 input_report_key(input, BTN_3, (data[5] & 0x08));
547 input_report_key(input, BTN_4, (data[6] & 0x01));
548 input_report_key(input, BTN_5, (data[6] & 0x02));
549 input_report_key(input, BTN_6, (data[6] & 0x04));
550 input_report_key(input, BTN_7, (data[6] & 0x08));
551 input_report_key(input, BTN_8, (data[5] & 0x10));
552 input_report_key(input, BTN_9, (data[6] & 0x10));
553 }
8da23fc1
DT
554 input_report_abs(input, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]);
555 input_report_abs(input, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]);
6f660f12 556
493630b2 557 if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) |
3a4b4aaa
PC
558 data[2] | (data[3] & 0x1f) | data[4] | data[8] |
559 (data[7] & 0x01)) {
8da23fc1
DT
560 input_report_key(input, wacom->tool[1], 1);
561 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
6f660f12 562 } else {
8da23fc1
DT
563 input_report_key(input, wacom->tool[1], 0);
564 input_report_abs(input, ABS_MISC, 0);
6f660f12
PC
565 }
566 }
8da23fc1 567 input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
3bea733a
PC
568 return 1;
569 }
570
571 /* process in/out prox events */
95dd3b30 572 result = wacom_intuos_inout(wacom);
3bea733a 573 if (result)
73a97f4f 574 return result - 1;
3bea733a 575
6f660f12
PC
576 /* don't proceed if we don't know the ID */
577 if (!wacom->id[idx])
578 return 0;
579
580 /* Only large Intuos support Lense Cursor */
e33da8a5
JC
581 if (wacom->tool[idx] == BTN_TOOL_LENS &&
582 (features->type == INTUOS3 ||
583 features->type == INTUOS3S ||
584 features->type == INTUOS4 ||
585 features->type == INTUOS4S)) {
586
80d4e8e9 587 return 0;
e33da8a5 588 }
80d4e8e9 589
3bea733a 590 /* Cintiq doesn't send data when RDY bit isn't set */
e33da8a5 591 if (features->type == CINTIQ && !(data[1] & 0x40))
3bea733a
PC
592 return 0;
593
e33da8a5 594 if (features->type >= INTUOS3S) {
8da23fc1
DT
595 input_report_abs(input, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1));
596 input_report_abs(input, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1));
597 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 2) & 0x3f));
3bea733a 598 } else {
252f7769
DT
599 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[2]));
600 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[4]));
8da23fc1 601 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 3) & 0x1f));
3bea733a
PC
602 }
603
604 /* process general packets */
95dd3b30 605 wacom_intuos_general(wacom);
3bea733a 606
6f660f12
PC
607 /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */
608 if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0 || (data[1] & 0xbc) == 0xac) {
3bea733a
PC
609
610 if (data[1] & 0x02) {
611 /* Rotation packet */
e33da8a5 612 if (features->type >= INTUOS3S) {
0e1763f5 613 /* I3 marker pen rotation */
3bea733a
PC
614 t = (data[6] << 3) | ((data[7] >> 5) & 7);
615 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
616 ((t-1) / 2 + 450)) : (450 - t / 2) ;
8da23fc1 617 input_report_abs(input, ABS_Z, t);
3bea733a
PC
618 } else {
619 /* 4D mouse rotation packet */
620 t = (data[6] << 3) | ((data[7] >> 5) & 7);
8da23fc1 621 input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
3bea733a
PC
622 ((t - 1) / 2) : -t / 2);
623 }
624
e33da8a5 625 } else if (!(data[1] & 0x10) && features->type < INTUOS3S) {
3bea733a 626 /* 4D mouse packet */
8da23fc1
DT
627 input_report_key(input, BTN_LEFT, data[8] & 0x01);
628 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
629 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
3bea733a 630
8da23fc1
DT
631 input_report_key(input, BTN_SIDE, data[8] & 0x20);
632 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
3bea733a 633 t = (data[6] << 2) | ((data[7] >> 6) & 3);
8da23fc1 634 input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
3bea733a
PC
635
636 } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
6f660f12 637 /* I4 mouse */
e33da8a5 638 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
8da23fc1
DT
639 input_report_key(input, BTN_LEFT, data[6] & 0x01);
640 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
641 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
642 input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
6f660f12 643 - ((data[7] & 0x40) >> 6));
8da23fc1
DT
644 input_report_key(input, BTN_SIDE, data[6] & 0x08);
645 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
6f660f12 646
8da23fc1 647 input_report_abs(input, ABS_TILT_X,
6f660f12 648 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
8da23fc1 649 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
6f660f12
PC
650 } else {
651 /* 2D mouse packet */
8da23fc1
DT
652 input_report_key(input, BTN_LEFT, data[8] & 0x04);
653 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
654 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
655 input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
3bea733a
PC
656 - ((data[8] & 0x02) >> 1));
657
6f660f12 658 /* I3 2D mouse side buttons */
e33da8a5 659 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
8da23fc1
DT
660 input_report_key(input, BTN_SIDE, data[8] & 0x40);
661 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
6f660f12 662 }
3bea733a 663 }
e33da8a5
JC
664 } else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
665 features->type == INTUOS4L) &&
6f660f12 666 wacom->tool[idx] == BTN_TOOL_LENS) {
3bea733a 667 /* Lens cursor packets */
8da23fc1
DT
668 input_report_key(input, BTN_LEFT, data[8] & 0x01);
669 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
670 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
671 input_report_key(input, BTN_SIDE, data[8] & 0x10);
672 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
3bea733a
PC
673 }
674 }
675
8da23fc1
DT
676 input_report_abs(input, ABS_MISC, wacom->id[idx]); /* report tool id */
677 input_report_key(input, wacom->tool[idx], 1);
678 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
3bea733a
PC
679 return 1;
680}
681
84eb5aa6
PC
682static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
683{
684 struct input_dev *input = wacom->input;
685 unsigned char *data = wacom->data;
686 int contact_with_no_pen_down_count = 0;
687 int i;
688
689 for (i = 0; i < 2; i++) {
690 int p = data[1] & (1 << i);
691 bool touch = p && !wacom->shared->stylus_in_proximity;
692
693 input_mt_slot(input, i);
694 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
695 if (touch) {
696 int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
697 int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
698
699 input_report_abs(input, ABS_MT_POSITION_X, x);
700 input_report_abs(input, ABS_MT_POSITION_Y, y);
701 contact_with_no_pen_down_count++;
702 }
703 }
704
705 /* keep touch state for pen event */
706 wacom->shared->touch_down = (contact_with_no_pen_down_count > 0);
707
708 input_mt_report_pointer_emulation(input, true);
709
710 return 1;
711}
712
a43c7c53 713static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
ec67bbed
PC
714{
715 char *data = wacom->data;
8da23fc1 716 struct input_dev *input = wacom->input;
a43c7c53
PC
717 bool prox;
718 int x = 0, y = 0;
ec67bbed 719
a43c7c53
PC
720 if (!wacom->shared->stylus_in_proximity) {
721 if (len == WACOM_PKGLEN_TPC1FG) {
722 prox = data[0] & 0x01;
723 x = get_unaligned_le16(&data[1]);
724 y = get_unaligned_le16(&data[3]);
725 } else { /* with capacity */
726 prox = data[1] & 0x01;
727 x = le16_to_cpup((__le16 *)&data[2]);
728 y = le16_to_cpup((__le16 *)&data[4]);
729 }
730 } else
731 /* force touch out when pen is in prox */
732 prox = 0;
ec67bbed 733
a43c7c53
PC
734 if (prox) {
735 input_report_abs(input, ABS_X, x);
736 input_report_abs(input, ABS_Y, y);
737 }
738 input_report_key(input, BTN_TOUCH, prox);
73a97f4f 739
a43c7c53
PC
740 /* keep touch state for pen events */
741 wacom->shared->touch_down = prox;
ec67bbed 742
a43c7c53 743 return 1;
ec67bbed
PC
744}
745
8aa9a9ac 746static int wacom_tpc_pen(struct wacom_wac *wacom)
545f4e99 747{
e33da8a5 748 struct wacom_features *features = &wacom->features;
545f4e99 749 char *data = wacom->data;
8da23fc1 750 struct input_dev *input = wacom->input;
a43c7c53
PC
751 int pressure;
752 bool prox = data[1] & 0x20;
8aa9a9ac 753
a43c7c53 754 if (!wacom->shared->stylus_in_proximity) /* first in prox */
8aa9a9ac
PC
755 /* Going into proximity select tool */
756 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
8aa9a9ac 757
a43c7c53
PC
758 /* keep pen state for touch events */
759 wacom->shared->stylus_in_proximity = prox;
760
761 /* send pen events only when touch is up or forced out */
762 if (!wacom->shared->touch_down) {
763 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
764 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
765 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
766 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
767 pressure = ((data[7] & 0x01) << 8) | data[6];
768 if (pressure < 0)
769 pressure = features->pressure_max + pressure + 1;
770 input_report_abs(input, ABS_PRESSURE, pressure);
771 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
772 input_report_key(input, wacom->tool[0], prox);
773 return 1;
8aa9a9ac 774 }
8aa9a9ac 775
a43c7c53 776 return 0;
8aa9a9ac
PC
777}
778
779static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
780{
781 char *data = wacom->data;
545f4e99
PC
782
783 dbg("wacom_tpc_irq: received report #%d", data[0]);
784
a43c7c53
PC
785 if (len == WACOM_PKGLEN_TPC1FG || data[0] == WACOM_REPORT_TPC1FG)
786 return wacom_tpc_single_touch(wacom, len);
84eb5aa6
PC
787 else if (data[0] == WACOM_REPORT_TPC2FG)
788 return wacom_tpc_mt_touch(wacom);
a43c7c53 789 else if (data[0] == WACOM_REPORT_PENABLED)
8aa9a9ac 790 return wacom_tpc_pen(wacom);
4492efff 791
8aa9a9ac 792 return 0;
545f4e99
PC
793}
794
e1d38e49 795static int wacom_bpt_touch(struct wacom_wac *wacom)
cb734c03 796{
f4ccbef2 797 struct wacom_features *features = &wacom->features;
cb734c03
HR
798 struct input_dev *input = wacom->input;
799 unsigned char *data = wacom->data;
cb734c03
HR
800 int i;
801
5a6c865d
CB
802 if (data[0] != 0x02)
803 return 0;
804
cb734c03 805 for (i = 0; i < 2; i++) {
8f906860
CB
806 int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
807 bool touch = data[offset + 3] & 0x80;
c5f4dec1 808
33d5f713
CB
809 /*
810 * Touch events need to be disabled while stylus is
811 * in proximity because user's hand is resting on touchpad
812 * and sending unwanted events. User expects tablet buttons
813 * to continue working though.
814 */
8f906860
CB
815 touch = touch && !wacom->shared->stylus_in_proximity;
816
817 input_mt_slot(input, i);
818 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
c5f4dec1 819 if (touch) {
8f906860
CB
820 int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
821 int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
f4ccbef2
HR
822 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
823 x <<= 5;
824 y <<= 5;
825 }
cb734c03
HR
826 input_report_abs(input, ABS_MT_POSITION_X, x);
827 input_report_abs(input, ABS_MT_POSITION_Y, y);
cb734c03 828 }
cb734c03
HR
829 }
830
c5f4dec1 831 input_mt_report_pointer_emulation(input, true);
cb734c03
HR
832
833 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
834 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
835 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
836 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
837
838 input_sync(input);
839
840 return 0;
841}
842
73149ab8
CB
843static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
844{
845 struct input_dev *input = wacom->input;
846 int slot_id = data[0] - 2; /* data[0] is between 2 and 17 */
847 bool touch = data[1] & 0x80;
848
849 touch = touch && !wacom->shared->stylus_in_proximity;
850
851 input_mt_slot(input, slot_id);
852 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
853
854 if (touch) {
855 int x = (data[2] << 4) | (data[4] >> 4);
856 int y = (data[3] << 4) | (data[4] & 0x0f);
857 int w = data[6];
858
859 input_report_abs(input, ABS_MT_POSITION_X, x);
860 input_report_abs(input, ABS_MT_POSITION_Y, y);
861 input_report_abs(input, ABS_MT_TOUCH_MAJOR, w);
862 }
863}
864
865static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
866{
867 struct input_dev *input = wacom->input;
868
869 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
870 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
871 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
872 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
873}
874
875static int wacom_bpt3_touch(struct wacom_wac *wacom)
876{
877 struct input_dev *input = wacom->input;
878 unsigned char *data = wacom->data;
879 int count = data[1] & 0x03;
880 int i;
881
5a6c865d
CB
882 if (data[0] != 0x02)
883 return 0;
884
73149ab8
CB
885 /* data has up to 7 fixed sized 8-byte messages starting at data[2] */
886 for (i = 0; i < count; i++) {
887 int offset = (8 * i) + 2;
888 int msg_id = data[offset];
889
890 if (msg_id >= 2 && msg_id <= 17)
891 wacom_bpt3_touch_msg(wacom, data + offset);
892 else if (msg_id == 128)
893 wacom_bpt3_button_msg(wacom, data + offset);
894
895 }
896
897 input_mt_report_pointer_emulation(input, true);
898
899 input_sync(input);
900
901 return 0;
902}
903
2aaacb15
CB
904static int wacom_bpt_pen(struct wacom_wac *wacom)
905{
906 struct input_dev *input = wacom->input;
907 unsigned char *data = wacom->data;
908 int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
909
5a6c865d
CB
910 if (data[0] != 0x02)
911 return 0;
912
c5981411 913 prox = (data[1] & 0x20) == 0x20;
2aaacb15
CB
914
915 /*
916 * All reports shared between PEN and RUBBER tool must be
917 * forced to a known starting value (zero) when transitioning to
918 * out-of-prox.
919 *
920 * If not reset then, to userspace, it will look like lost events
921 * if new tool comes in-prox with same values as previous tool sent.
922 *
923 * Hardware does report zero in most out-of-prox cases but not all.
924 */
925 if (prox) {
926 if (!wacom->shared->stylus_in_proximity) {
927 if (data[1] & 0x08) {
928 wacom->tool[0] = BTN_TOOL_RUBBER;
929 wacom->id[0] = ERASER_DEVICE_ID;
930 } else {
931 wacom->tool[0] = BTN_TOOL_PEN;
932 wacom->id[0] = STYLUS_DEVICE_ID;
933 }
934 wacom->shared->stylus_in_proximity = true;
935 }
936 x = le16_to_cpup((__le16 *)&data[2]);
937 y = le16_to_cpup((__le16 *)&data[4]);
938 p = le16_to_cpup((__le16 *)&data[6]);
c18c2cec
CB
939 /*
940 * Convert distance from out prox to distance from tablet.
941 * distance will be greater than distance_max once
942 * touching and applying pressure; do not report negative
943 * distance.
944 */
945 if (data[8] <= wacom->features.distance_max)
946 d = wacom->features.distance_max - data[8];
947
2aaacb15
CB
948 pen = data[1] & 0x01;
949 btn1 = data[1] & 0x02;
950 btn2 = data[1] & 0x04;
951 }
952
953 input_report_key(input, BTN_TOUCH, pen);
954 input_report_key(input, BTN_STYLUS, btn1);
955 input_report_key(input, BTN_STYLUS2, btn2);
956
957 input_report_abs(input, ABS_X, x);
958 input_report_abs(input, ABS_Y, y);
959 input_report_abs(input, ABS_PRESSURE, p);
960 input_report_abs(input, ABS_DISTANCE, d);
961
962 if (!prox) {
963 wacom->id[0] = 0;
964 wacom->shared->stylus_in_proximity = false;
965 }
966
967 input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
968 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
969
970 return 1;
971}
972
e1d38e49
CB
973static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
974{
975 if (len == WACOM_PKGLEN_BBTOUCH)
976 return wacom_bpt_touch(wacom);
73149ab8
CB
977 else if (len == WACOM_PKGLEN_BBTOUCH3)
978 return wacom_bpt3_touch(wacom);
979 else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
2aaacb15 980 return wacom_bpt_pen(wacom);
e1d38e49
CB
981
982 return 0;
983}
984
95dd3b30 985void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
3bea733a 986{
95dd3b30
DT
987 bool sync;
988
e33da8a5 989 switch (wacom_wac->features.type) {
73a97f4f 990 case PENPARTNER:
95dd3b30
DT
991 sync = wacom_penpartner_irq(wacom_wac);
992 break;
73a97f4f
DT
993
994 case PL:
95dd3b30
DT
995 sync = wacom_pl_irq(wacom_wac);
996 break;
73a97f4f
DT
997
998 case WACOM_G4:
999 case GRAPHIRE:
1000 case WACOM_MO:
95dd3b30
DT
1001 sync = wacom_graphire_irq(wacom_wac);
1002 break;
73a97f4f
DT
1003
1004 case PTU:
95dd3b30
DT
1005 sync = wacom_ptu_irq(wacom_wac);
1006 break;
73a97f4f 1007
c8f2edc5
PC
1008 case DTU:
1009 sync = wacom_dtu_irq(wacom_wac);
1010 break;
1011
73a97f4f
DT
1012 case INTUOS:
1013 case INTUOS3S:
1014 case INTUOS3:
1015 case INTUOS3L:
1016 case INTUOS4S:
1017 case INTUOS4:
1018 case INTUOS4L:
1019 case CINTIQ:
1020 case WACOM_BEE:
3a4b4aaa 1021 case WACOM_21UX2:
95dd3b30
DT
1022 sync = wacom_intuos_irq(wacom_wac);
1023 break;
73a97f4f
DT
1024
1025 case TABLETPC:
1026 case TABLETPC2FG:
95dd3b30
DT
1027 sync = wacom_tpc_irq(wacom_wac, len);
1028 break;
73a97f4f 1029
cb734c03
HR
1030 case BAMBOO_PT:
1031 sync = wacom_bpt_irq(wacom_wac, len);
1032 break;
1033
73a97f4f 1034 default:
95dd3b30
DT
1035 sync = false;
1036 break;
3bea733a 1037 }
95dd3b30
DT
1038
1039 if (sync)
1040 input_sync(wacom_wac->input);
3bea733a
PC
1041}
1042
6521d0bf 1043static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
8da23fc1
DT
1044{
1045 struct input_dev *input_dev = wacom_wac->input;
1046
1047 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
8da23fc1
DT
1048
1049 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1050 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
8da23fc1
DT
1051 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
1052 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
1053 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
8da23fc1
DT
1054 __set_bit(BTN_STYLUS, input_dev->keybit);
1055 __set_bit(BTN_STYLUS2, input_dev->keybit);
1056
1057 input_set_abs_params(input_dev, ABS_DISTANCE,
1058 0, wacom_wac->features.distance_max, 0, 0);
1059 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
1060 input_set_abs_params(input_dev, ABS_TILT_X, 0, 127, 0, 0);
1061 input_set_abs_params(input_dev, ABS_TILT_Y, 0, 127, 0, 0);
6521d0bf
PC
1062}
1063
1064static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
1065{
1066 struct input_dev *input_dev = wacom_wac->input;
1067
1068 input_set_capability(input_dev, EV_REL, REL_WHEEL);
1069
1070 wacom_setup_cintiq(wacom_wac);
1071
1072 __set_bit(BTN_LEFT, input_dev->keybit);
1073 __set_bit(BTN_RIGHT, input_dev->keybit);
1074 __set_bit(BTN_MIDDLE, input_dev->keybit);
1075 __set_bit(BTN_SIDE, input_dev->keybit);
1076 __set_bit(BTN_EXTRA, input_dev->keybit);
1077 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
1078 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
1079
8da23fc1
DT
1080 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
1081 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
1082}
1083
bc73dd39
HR
1084void wacom_setup_device_quirks(struct wacom_features *features)
1085{
1086
1087 /* touch device found but size is not defined. use default */
84eb5aa6 1088 if (features->device_type == BTN_TOOL_FINGER && !features->x_max) {
bc73dd39
HR
1089 features->x_max = 1023;
1090 features->y_max = 1023;
1091 }
1092
1093 /* these device have multiple inputs */
1094 if (features->type == TABLETPC || features->type == TABLETPC2FG ||
1095 features->type == BAMBOO_PT)
1096 features->quirks |= WACOM_QUIRK_MULTI_INPUT;
cb734c03 1097
73149ab8 1098 /* quirk for bamboo touch with 2 low res touches */
cb734c03 1099 if (features->type == BAMBOO_PT &&
73149ab8 1100 features->pktlen == WACOM_PKGLEN_BBTOUCH) {
f4ccbef2
HR
1101 features->x_max <<= 5;
1102 features->y_max <<= 5;
1103 features->x_fuzz <<= 5;
1104 features->y_fuzz <<= 5;
f4ccbef2 1105 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
cb734c03 1106 }
bc73dd39
HR
1107}
1108
409550f2
PC
1109static unsigned int wacom_calculate_touch_res(unsigned int logical_max,
1110 unsigned int physical_max)
1111{
1112 /* Touch physical dimensions are in 100th of mm */
1113 return (logical_max * 100) / physical_max;
1114}
1115
8da23fc1
DT
1116void wacom_setup_input_capabilities(struct input_dev *input_dev,
1117 struct wacom_wac *wacom_wac)
3bea733a 1118{
8da23fc1
DT
1119 struct wacom_features *features = &wacom_wac->features;
1120 int i;
1121
1122 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1123
1124 __set_bit(BTN_TOUCH, input_dev->keybit);
1125
fed87e65
HR
1126 input_set_abs_params(input_dev, ABS_X, 0, features->x_max,
1127 features->x_fuzz, 0);
1128 input_set_abs_params(input_dev, ABS_Y, 0, features->y_max,
1129 features->y_fuzz, 0);
8da23fc1 1130
e35fb8c1 1131 if (features->device_type == BTN_TOOL_PEN) {
cfb7d557
PC
1132 input_set_abs_params(input_dev, ABS_PRESSURE, 0, features->pressure_max,
1133 features->pressure_fuzz, 0);
1134
e35fb8c1
PC
1135 /* penabled devices have fixed resolution for each model */
1136 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
1137 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
1138 } else {
1139 input_abs_set_res(input_dev, ABS_X,
1140 wacom_calculate_touch_res(features->x_max,
1141 features->x_phy));
1142 input_abs_set_res(input_dev, ABS_Y,
1143 wacom_calculate_touch_res(features->y_max,
1144 features->y_phy));
1145 }
1146
8da23fc1
DT
1147 __set_bit(ABS_MISC, input_dev->absbit);
1148
e33da8a5 1149 switch (wacom_wac->features.type) {
73a97f4f 1150 case WACOM_MO:
8da23fc1
DT
1151 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
1152 /* fall through */
73a97f4f
DT
1153
1154 case WACOM_G4:
8da23fc1
DT
1155 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
1156
0bd10ef8
PC
1157 __set_bit(BTN_BACK, input_dev->keybit);
1158 __set_bit(BTN_FORWARD, input_dev->keybit);
73a97f4f
DT
1159 /* fall through */
1160
1161 case GRAPHIRE:
8da23fc1
DT
1162 input_set_capability(input_dev, EV_REL, REL_WHEEL);
1163
1164 __set_bit(BTN_LEFT, input_dev->keybit);
1165 __set_bit(BTN_RIGHT, input_dev->keybit);
1166 __set_bit(BTN_MIDDLE, input_dev->keybit);
1167
1168 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1169 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1170 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
1171 __set_bit(BTN_STYLUS, input_dev->keybit);
1172 __set_bit(BTN_STYLUS2, input_dev->keybit);
3512069e
JG
1173
1174 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
73a97f4f
DT
1175 break;
1176
3a4b4aaa
PC
1177 case WACOM_21UX2:
1178 __set_bit(BTN_A, input_dev->keybit);
1179 __set_bit(BTN_B, input_dev->keybit);
1180 __set_bit(BTN_C, input_dev->keybit);
1181 __set_bit(BTN_X, input_dev->keybit);
1182 __set_bit(BTN_Y, input_dev->keybit);
1183 __set_bit(BTN_Z, input_dev->keybit);
1184 __set_bit(BTN_BASE, input_dev->keybit);
1185 __set_bit(BTN_BASE2, input_dev->keybit);
1186 /* fall through */
1187
73a97f4f 1188 case WACOM_BEE:
8da23fc1
DT
1189 __set_bit(BTN_8, input_dev->keybit);
1190 __set_bit(BTN_9, input_dev->keybit);
1191 /* fall through */
73a97f4f 1192
6521d0bf
PC
1193 case CINTIQ:
1194 for (i = 0; i < 8; i++)
1195 __set_bit(BTN_0 + i, input_dev->keybit);
6521d0bf 1196
d6069dae
JG
1197 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
1198 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
6521d0bf 1199 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
3512069e
JG
1200
1201 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
1202
6521d0bf
PC
1203 wacom_setup_cintiq(wacom_wac);
1204 break;
1205
73a97f4f
DT
1206 case INTUOS3:
1207 case INTUOS3L:
8da23fc1
DT
1208 __set_bit(BTN_4, input_dev->keybit);
1209 __set_bit(BTN_5, input_dev->keybit);
1210 __set_bit(BTN_6, input_dev->keybit);
1211 __set_bit(BTN_7, input_dev->keybit);
1212
1213 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
73a97f4f
DT
1214 /* fall through */
1215
1216 case INTUOS3S:
8da23fc1
DT
1217 __set_bit(BTN_0, input_dev->keybit);
1218 __set_bit(BTN_1, input_dev->keybit);
1219 __set_bit(BTN_2, input_dev->keybit);
1220 __set_bit(BTN_3, input_dev->keybit);
1221
8da23fc1
DT
1222 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
1223 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
73a97f4f
DT
1224 /* fall through */
1225
1226 case INTUOS:
3512069e
JG
1227 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1228
8da23fc1 1229 wacom_setup_intuos(wacom_wac);
73a97f4f
DT
1230 break;
1231
1232 case INTUOS4:
1233 case INTUOS4L:
8da23fc1
DT
1234 __set_bit(BTN_7, input_dev->keybit);
1235 __set_bit(BTN_8, input_dev->keybit);
73a97f4f
DT
1236 /* fall through */
1237
1238 case INTUOS4S:
8da23fc1
DT
1239 for (i = 0; i < 7; i++)
1240 __set_bit(BTN_0 + i, input_dev->keybit);
8da23fc1
DT
1241
1242 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1243 wacom_setup_intuos(wacom_wac);
3512069e
JG
1244
1245 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
73a97f4f
DT
1246 break;
1247
1248 case TABLETPC2FG:
84eb5aa6
PC
1249 if (features->device_type == BTN_TOOL_DOUBLETAP) {
1250
1251 input_mt_init_slots(input_dev, 2);
1252 input_set_abs_params(input_dev, ABS_MT_TOOL_TYPE,
1253 0, MT_TOOL_MAX, 0, 0);
1254 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
1255 0, features->x_max, 0, 0);
1256 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
1257 0, features->y_max, 0, 0);
8da23fc1 1258 }
73a97f4f
DT
1259 /* fall through */
1260
1261 case TABLETPC:
a43c7c53
PC
1262 __clear_bit(ABS_MISC, input_dev->absbit);
1263
3512069e
JG
1264 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
1265
e35fb8c1 1266 if (features->device_type != BTN_TOOL_PEN)
73a97f4f 1267 break; /* no need to process stylus stuff */
e35fb8c1 1268
73a97f4f
DT
1269 /* fall through */
1270
1271 case PL:
c8f2edc5 1272 case DTU:
8da23fc1 1273 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
3512069e 1274 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
8da23fc1
DT
1275 __set_bit(BTN_STYLUS, input_dev->keybit);
1276 __set_bit(BTN_STYLUS2, input_dev->keybit);
3512069e
JG
1277
1278 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
1279 break;
1280
1281 case PTU:
8da23fc1 1282 __set_bit(BTN_STYLUS2, input_dev->keybit);
73a97f4f
DT
1283 /* fall through */
1284
1285 case PENPARTNER:
1fab84aa 1286 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
8da23fc1 1287 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1fab84aa 1288 __set_bit(BTN_STYLUS, input_dev->keybit);
3512069e
JG
1289
1290 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
73a97f4f 1291 break;
cb734c03
HR
1292
1293 case BAMBOO_PT:
1294 __clear_bit(ABS_MISC, input_dev->absbit);
1295
3512069e
JG
1296 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1297
84eb5aa6 1298 if (features->device_type == BTN_TOOL_DOUBLETAP) {
cb734c03
HR
1299 __set_bit(BTN_LEFT, input_dev->keybit);
1300 __set_bit(BTN_FORWARD, input_dev->keybit);
1301 __set_bit(BTN_BACK, input_dev->keybit);
1302 __set_bit(BTN_RIGHT, input_dev->keybit);
1303
1304 __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
1305 __set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit);
1306
73149ab8
CB
1307 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
1308 __set_bit(BTN_TOOL_TRIPLETAP,
1309 input_dev->keybit);
1310 __set_bit(BTN_TOOL_QUADTAP,
1311 input_dev->keybit);
1312
1313 input_mt_init_slots(input_dev, 16);
1314
1315 input_set_abs_params(input_dev,
1316 ABS_MT_TOUCH_MAJOR,
1317 0, 255, 0, 0);
1318 } else {
1319 input_mt_init_slots(input_dev, 2);
1320 }
1321
cb734c03
HR
1322 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
1323 0, features->x_max,
1324 features->x_fuzz, 0);
1325 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
1326 0, features->y_max,
1327 features->y_fuzz, 0);
2aaacb15
CB
1328 } else if (features->device_type == BTN_TOOL_PEN) {
1329 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1330 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1331 __set_bit(BTN_STYLUS, input_dev->keybit);
1332 __set_bit(BTN_STYLUS2, input_dev->keybit);
c18c2cec
CB
1333 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
1334 features->distance_max,
1335 0, 0);
cb734c03
HR
1336 }
1337 break;
3bea733a 1338 }
3bea733a
PC
1339}
1340
e87a344d 1341static const struct wacom_features wacom_features_0x00 =
e35fb8c1
PC
1342 { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255,
1343 0, PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
e87a344d 1344static const struct wacom_features wacom_features_0x10 =
e35fb8c1
PC
1345 { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511,
1346 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 1347static const struct wacom_features wacom_features_0x11 =
e35fb8c1
PC
1348 { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511,
1349 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 1350static const struct wacom_features wacom_features_0x12 =
e35fb8c1
PC
1351 { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511,
1352 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 1353static const struct wacom_features wacom_features_0x13 =
e35fb8c1
PC
1354 { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511,
1355 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 1356static const struct wacom_features wacom_features_0x14 =
e35fb8c1
PC
1357 { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1358 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 1359static const struct wacom_features wacom_features_0x15 =
e35fb8c1
PC
1360 { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511,
1361 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 1362static const struct wacom_features wacom_features_0x16 =
e35fb8c1
PC
1363 { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1364 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 1365static const struct wacom_features wacom_features_0x17 =
e35fb8c1
PC
1366 { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511,
1367 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1368static const struct wacom_features wacom_features_0x18 =
e35fb8c1
PC
1369 { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511,
1370 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1371static const struct wacom_features wacom_features_0x19 =
e35fb8c1
PC
1372 { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1373 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
e87a344d 1374static const struct wacom_features wacom_features_0x60 =
e35fb8c1
PC
1375 { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1376 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 1377static const struct wacom_features wacom_features_0x61 =
e35fb8c1
PC
1378 { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255,
1379 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 1380static const struct wacom_features wacom_features_0x62 =
e35fb8c1
PC
1381 { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1382 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 1383static const struct wacom_features wacom_features_0x63 =
e35fb8c1
PC
1384 { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511,
1385 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 1386static const struct wacom_features wacom_features_0x64 =
e35fb8c1
PC
1387 { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511,
1388 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
e87a344d 1389static const struct wacom_features wacom_features_0x65 =
e35fb8c1
PC
1390 { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511,
1391 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1392static const struct wacom_features wacom_features_0x69 =
e35fb8c1
PC
1393 { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1394 63, GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
11d0cf88
PC
1395static const struct wacom_features wacom_features_0x6A =
1396 { "Wacom Bamboo1 4x6", WACOM_PKGLEN_GRAPHIRE, 14760, 9225, 1023,
1397 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1398static const struct wacom_features wacom_features_0x6B =
1399 { "Wacom Bamboo1 5x8", WACOM_PKGLEN_GRAPHIRE, 21648, 13530, 1023,
1400 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1401static const struct wacom_features wacom_features_0x20 =
e35fb8c1
PC
1402 { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023,
1403 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1404static const struct wacom_features wacom_features_0x21 =
e35fb8c1
PC
1405 { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1406 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1407static const struct wacom_features wacom_features_0x22 =
e35fb8c1
PC
1408 { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023,
1409 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1410static const struct wacom_features wacom_features_0x23 =
e35fb8c1
PC
1411 { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023,
1412 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1413static const struct wacom_features wacom_features_0x24 =
e35fb8c1
PC
1414 { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023,
1415 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1416static const struct wacom_features wacom_features_0x30 =
e35fb8c1
PC
1417 { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255,
1418 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1419static const struct wacom_features wacom_features_0x31 =
e35fb8c1
PC
1420 { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255,
1421 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1422static const struct wacom_features wacom_features_0x32 =
e35fb8c1
PC
1423 { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255,
1424 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1425static const struct wacom_features wacom_features_0x33 =
e35fb8c1
PC
1426 { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255,
1427 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1428static const struct wacom_features wacom_features_0x34 =
e35fb8c1
PC
1429 { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511,
1430 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1431static const struct wacom_features wacom_features_0x35 =
e35fb8c1
PC
1432 { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511,
1433 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1434static const struct wacom_features wacom_features_0x37 =
e35fb8c1
PC
1435 { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511,
1436 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1437static const struct wacom_features wacom_features_0x38 =
e35fb8c1
PC
1438 { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511,
1439 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1440static const struct wacom_features wacom_features_0x39 =
e35fb8c1
PC
1441 { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511,
1442 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1443static const struct wacom_features wacom_features_0xC4 =
e35fb8c1
PC
1444 { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511,
1445 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1446static const struct wacom_features wacom_features_0xC0 =
e35fb8c1
PC
1447 { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511,
1448 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1449static const struct wacom_features wacom_features_0xC2 =
e35fb8c1
PC
1450 { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511,
1451 0, PL, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1452static const struct wacom_features wacom_features_0x03 =
e35fb8c1
PC
1453 { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511,
1454 0, PTU, WACOM_PL_RES, WACOM_PL_RES };
e87a344d 1455static const struct wacom_features wacom_features_0x41 =
e35fb8c1
PC
1456 { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023,
1457 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1458static const struct wacom_features wacom_features_0x42 =
e35fb8c1
PC
1459 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1460 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1461static const struct wacom_features wacom_features_0x43 =
e35fb8c1
PC
1462 { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023,
1463 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1464static const struct wacom_features wacom_features_0x44 =
e35fb8c1
PC
1465 { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023,
1466 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1467static const struct wacom_features wacom_features_0x45 =
e35fb8c1
PC
1468 { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023,
1469 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1470static const struct wacom_features wacom_features_0xB0 =
e35fb8c1
PC
1471 { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023,
1472 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1473static const struct wacom_features wacom_features_0xB1 =
e35fb8c1
PC
1474 { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023,
1475 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1476static const struct wacom_features wacom_features_0xB2 =
e35fb8c1
PC
1477 { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023,
1478 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1479static const struct wacom_features wacom_features_0xB3 =
e35fb8c1
PC
1480 { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023,
1481 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1482static const struct wacom_features wacom_features_0xB4 =
e35fb8c1
PC
1483 { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023,
1484 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1485static const struct wacom_features wacom_features_0xB5 =
e35fb8c1
PC
1486 { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023,
1487 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1488static const struct wacom_features wacom_features_0xB7 =
e35fb8c1
PC
1489 { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023,
1490 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1491static const struct wacom_features wacom_features_0xB8 =
e35fb8c1
PC
1492 { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047,
1493 63, INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1494static const struct wacom_features wacom_features_0xB9 =
e35fb8c1
PC
1495 { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047,
1496 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1497static const struct wacom_features wacom_features_0xBA =
e35fb8c1
PC
1498 { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047,
1499 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1500static const struct wacom_features wacom_features_0xBB =
e35fb8c1
PC
1501 { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047,
1502 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
3a4b4aaa 1503static const struct wacom_features wacom_features_0xBC =
e35fb8c1
PC
1504 { "Wacom Intuos4 WL", WACOM_PKGLEN_INTUOS, 40840, 25400, 2047,
1505 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1506static const struct wacom_features wacom_features_0x3F =
e35fb8c1
PC
1507 { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023,
1508 63, CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1509static const struct wacom_features wacom_features_0xC5 =
e35fb8c1
PC
1510 { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023,
1511 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1512static const struct wacom_features wacom_features_0xC6 =
e35fb8c1
PC
1513 { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023,
1514 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1515static const struct wacom_features wacom_features_0xC7 =
e35fb8c1
PC
1516 { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511,
1517 0, PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
c8f2edc5 1518static const struct wacom_features wacom_features_0xCE =
e35fb8c1
PC
1519 { "Wacom DTU2231", WACOM_PKGLEN_GRAPHIRE, 47864, 27011, 511,
1520 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
c8f2edc5 1521static const struct wacom_features wacom_features_0xF0 =
e35fb8c1
PC
1522 { "Wacom DTU1631", WACOM_PKGLEN_GRAPHIRE, 34623, 19553, 511,
1523 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3a4b4aaa 1524static const struct wacom_features wacom_features_0xCC =
e35fb8c1
PC
1525 { "Wacom Cintiq 21UX2", WACOM_PKGLEN_INTUOS, 87200, 65600, 2047,
1526 63, WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
e87a344d 1527static const struct wacom_features wacom_features_0x90 =
e35fb8c1
PC
1528 { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1529 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1530static const struct wacom_features wacom_features_0x93 =
e35fb8c1
PC
1531 { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1532 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
11d0cf88
PC
1533static const struct wacom_features wacom_features_0x97 =
1534 { "Wacom ISDv4 97", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 511,
1535 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1536static const struct wacom_features wacom_features_0x9A =
e35fb8c1
PC
1537 { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1538 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1539static const struct wacom_features wacom_features_0x9F =
e35fb8c1
PC
1540 { "Wacom ISDv4 9F", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1541 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1542static const struct wacom_features wacom_features_0xE2 =
e35fb8c1
PC
1543 { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255,
1544 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1545static const struct wacom_features wacom_features_0xE3 =
e35fb8c1
PC
1546 { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255,
1547 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
26fcd2a7
MI
1548static const struct wacom_features wacom_features_0xE6 =
1549 { "Wacom ISDv4 E6", WACOM_PKGLEN_TPC2FG, 27760, 15694, 255,
1550 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
e87a344d 1551static const struct wacom_features wacom_features_0x47 =
e35fb8c1
PC
1552 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1553 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 1554static const struct wacom_features wacom_features_0xD0 =
e35fb8c1 1555 { "Wacom Bamboo 2FG", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
c18c2cec 1556 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 1557static const struct wacom_features wacom_features_0xD1 =
e35fb8c1 1558 { "Wacom Bamboo 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
c18c2cec 1559 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 1560static const struct wacom_features wacom_features_0xD2 =
e35fb8c1 1561 { "Wacom Bamboo Craft", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
c18c2cec 1562 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 1563static const struct wacom_features wacom_features_0xD3 =
ae927560 1564 { "Wacom Bamboo 2FG 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
c18c2cec 1565 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
57a7872f 1566static const struct wacom_features wacom_features_0xD4 =
a001a8f3 1567 { "Wacom Bamboo Pen", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
c18c2cec 1568 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
18adad1c 1569static const struct wacom_features wacom_features_0xD5 =
ae927560 1570 { "Wacom Bamboo Pen 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
c18c2cec 1571 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 1572static const struct wacom_features wacom_features_0xD6 =
e35fb8c1 1573 { "Wacom BambooPT 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
c18c2cec 1574 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 1575static const struct wacom_features wacom_features_0xD7 =
e35fb8c1 1576 { "Wacom BambooPT 2FG Small", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
c18c2cec 1577 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 1578static const struct wacom_features wacom_features_0xD8 =
ae927560 1579 { "Wacom Bamboo Comic 2FG", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
c18c2cec 1580 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b824bbd 1581static const struct wacom_features wacom_features_0xDA =
e35fb8c1 1582 { "Wacom Bamboo 2FG 4x5 SE", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
c18c2cec 1583 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
47d09235 1584static struct wacom_features wacom_features_0xDB =
ae927560 1585 { "Wacom Bamboo 2FG 6x8 SE", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
c18c2cec 1586 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
73149ab8
CB
1587static const struct wacom_features wacom_features_0xDD =
1588 { "Wacom Bamboo Connect", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023,
1589 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1590static const struct wacom_features wacom_features_0xDE =
1591 { "Wacom Bamboo 16FG 4x5", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023,
1592 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1593static const struct wacom_features wacom_features_0xDF =
1594 { "Wacom Bamboo 16FG 6x8", WACOM_PKGLEN_BBPEN, 21648, 13700, 1023,
1595 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
7b4b3068 1596static const struct wacom_features wacom_features_0x6004 =
e35fb8c1
PC
1597 { "ISD-V4", WACOM_PKGLEN_GRAPHIRE, 12800, 8000, 255,
1598 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
b036f6fb
BB
1599
1600#define USB_DEVICE_WACOM(prod) \
1601 USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \
1602 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1603
1483f551
AR
1604#define USB_DEVICE_DETAILED(prod, class, sub, proto) \
1605 USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_WACOM, prod, class, \
1606 sub, proto), \
1607 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1608
7b4b3068
AR
1609#define USB_DEVICE_LENOVO(prod) \
1610 USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
1611 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1612
b036f6fb
BB
1613const struct usb_device_id wacom_ids[] = {
1614 { USB_DEVICE_WACOM(0x00) },
1615 { USB_DEVICE_WACOM(0x10) },
1616 { USB_DEVICE_WACOM(0x11) },
1617 { USB_DEVICE_WACOM(0x12) },
1618 { USB_DEVICE_WACOM(0x13) },
1619 { USB_DEVICE_WACOM(0x14) },
1620 { USB_DEVICE_WACOM(0x15) },
1621 { USB_DEVICE_WACOM(0x16) },
1622 { USB_DEVICE_WACOM(0x17) },
1623 { USB_DEVICE_WACOM(0x18) },
1624 { USB_DEVICE_WACOM(0x19) },
1625 { USB_DEVICE_WACOM(0x60) },
1626 { USB_DEVICE_WACOM(0x61) },
1627 { USB_DEVICE_WACOM(0x62) },
1628 { USB_DEVICE_WACOM(0x63) },
1629 { USB_DEVICE_WACOM(0x64) },
1630 { USB_DEVICE_WACOM(0x65) },
1631 { USB_DEVICE_WACOM(0x69) },
11d0cf88
PC
1632 { USB_DEVICE_WACOM(0x6A) },
1633 { USB_DEVICE_WACOM(0x6B) },
b036f6fb
BB
1634 { USB_DEVICE_WACOM(0x20) },
1635 { USB_DEVICE_WACOM(0x21) },
1636 { USB_DEVICE_WACOM(0x22) },
1637 { USB_DEVICE_WACOM(0x23) },
1638 { USB_DEVICE_WACOM(0x24) },
1639 { USB_DEVICE_WACOM(0x30) },
1640 { USB_DEVICE_WACOM(0x31) },
1641 { USB_DEVICE_WACOM(0x32) },
1642 { USB_DEVICE_WACOM(0x33) },
1643 { USB_DEVICE_WACOM(0x34) },
1644 { USB_DEVICE_WACOM(0x35) },
1645 { USB_DEVICE_WACOM(0x37) },
1646 { USB_DEVICE_WACOM(0x38) },
1647 { USB_DEVICE_WACOM(0x39) },
1648 { USB_DEVICE_WACOM(0xC4) },
1649 { USB_DEVICE_WACOM(0xC0) },
1650 { USB_DEVICE_WACOM(0xC2) },
1651 { USB_DEVICE_WACOM(0x03) },
1652 { USB_DEVICE_WACOM(0x41) },
1653 { USB_DEVICE_WACOM(0x42) },
1654 { USB_DEVICE_WACOM(0x43) },
1655 { USB_DEVICE_WACOM(0x44) },
1656 { USB_DEVICE_WACOM(0x45) },
1657 { USB_DEVICE_WACOM(0xB0) },
1658 { USB_DEVICE_WACOM(0xB1) },
1659 { USB_DEVICE_WACOM(0xB2) },
1660 { USB_DEVICE_WACOM(0xB3) },
1661 { USB_DEVICE_WACOM(0xB4) },
1662 { USB_DEVICE_WACOM(0xB5) },
1663 { USB_DEVICE_WACOM(0xB7) },
1664 { USB_DEVICE_WACOM(0xB8) },
1665 { USB_DEVICE_WACOM(0xB9) },
1666 { USB_DEVICE_WACOM(0xBA) },
1667 { USB_DEVICE_WACOM(0xBB) },
3a4b4aaa 1668 { USB_DEVICE_WACOM(0xBC) },
b036f6fb
BB
1669 { USB_DEVICE_WACOM(0x3F) },
1670 { USB_DEVICE_WACOM(0xC5) },
1671 { USB_DEVICE_WACOM(0xC6) },
1672 { USB_DEVICE_WACOM(0xC7) },
1483f551
AR
1673 /*
1674 * DTU-2231 has two interfaces on the same configuration,
1675 * only one is used.
1676 */
1677 { USB_DEVICE_DETAILED(0xCE, USB_CLASS_HID,
1678 USB_INTERFACE_SUBCLASS_BOOT,
1679 USB_INTERFACE_PROTOCOL_MOUSE) },
cb734c03 1680 { USB_DEVICE_WACOM(0xD0) },
2aaacb15
CB
1681 { USB_DEVICE_WACOM(0xD1) },
1682 { USB_DEVICE_WACOM(0xD2) },
1683 { USB_DEVICE_WACOM(0xD3) },
57a7872f 1684 { USB_DEVICE_WACOM(0xD4) },
18adad1c 1685 { USB_DEVICE_WACOM(0xD5) },
d38acb49
PC
1686 { USB_DEVICE_WACOM(0xD6) },
1687 { USB_DEVICE_WACOM(0xD7) },
a318e6b1
DF
1688 { USB_DEVICE_WACOM(0xD8) },
1689 { USB_DEVICE_WACOM(0xDA) },
47d09235 1690 { USB_DEVICE_WACOM(0xDB) },
73149ab8
CB
1691 { USB_DEVICE_WACOM(0xDD) },
1692 { USB_DEVICE_WACOM(0xDE) },
1693 { USB_DEVICE_WACOM(0xDF) },
c8f2edc5 1694 { USB_DEVICE_WACOM(0xF0) },
3a4b4aaa 1695 { USB_DEVICE_WACOM(0xCC) },
b036f6fb
BB
1696 { USB_DEVICE_WACOM(0x90) },
1697 { USB_DEVICE_WACOM(0x93) },
11d0cf88 1698 { USB_DEVICE_WACOM(0x97) },
b036f6fb
BB
1699 { USB_DEVICE_WACOM(0x9A) },
1700 { USB_DEVICE_WACOM(0x9F) },
1701 { USB_DEVICE_WACOM(0xE2) },
1702 { USB_DEVICE_WACOM(0xE3) },
26fcd2a7 1703 { USB_DEVICE_WACOM(0xE6) },
b036f6fb 1704 { USB_DEVICE_WACOM(0x47) },
7b4b3068 1705 { USB_DEVICE_LENOVO(0x6004) },
3bea733a
PC
1706 { }
1707};
3bea733a 1708MODULE_DEVICE_TABLE(usb, wacom_ids);