]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/input/tablet/wacom_wac.c
Input: wacom - merge out and in prox events
[mirror_ubuntu-artful-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 */
14#include "wacom.h"
15#include "wacom_wac.h"
16
17static int wacom_penpartner_irq(struct wacom_wac *wacom, void *wcombo)
18{
19 unsigned char *data = wacom->data;
20
21 switch (data[0]) {
22 case 1:
3bea733a
PC
23 if (data[5] & 0x80) {
24 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
25 wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
26 wacom_report_key(wcombo, wacom->tool[0], 1);
27 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
28 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[1]));
29 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[3]));
30 wacom_report_abs(wcombo, ABS_PRESSURE, (signed char)data[6] + 127);
31 wacom_report_key(wcombo, BTN_TOUCH, ((signed char)data[6] > -127));
32 wacom_report_key(wcombo, BTN_STYLUS, (data[5] & 0x40));
33 } else {
34 wacom_report_key(wcombo, wacom->tool[0], 0);
35 wacom_report_abs(wcombo, ABS_MISC, 0); /* report tool id */
36 wacom_report_abs(wcombo, ABS_PRESSURE, -1);
37 wacom_report_key(wcombo, BTN_TOUCH, 0);
38 }
39 break;
40 case 2:
3bea733a
PC
41 wacom_report_key(wcombo, BTN_TOOL_PEN, 1);
42 wacom_report_abs(wcombo, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
43 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[1]));
44 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[3]));
45 wacom_report_abs(wcombo, ABS_PRESSURE, (signed char)data[6] + 127);
46 wacom_report_key(wcombo, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
47 wacom_report_key(wcombo, BTN_STYLUS, (data[5] & 0x40));
48 break;
49 default:
50 printk(KERN_INFO "wacom_penpartner_irq: received unknown report #%d\n", data[0]);
51 return 0;
52 }
53 return 1;
54}
55
56static int wacom_pl_irq(struct wacom_wac *wacom, void *wcombo)
57{
e33da8a5 58 struct wacom_features *features = &wacom->features;
3bea733a 59 unsigned char *data = wacom->data;
e34b9d2f 60 int prox, pressure;
3bea733a 61
cad74700 62 if (data[0] != WACOM_REPORT_PENABLED) {
3bea733a
PC
63 dbg("wacom_pl_irq: received unknown report #%d", data[0]);
64 return 0;
65 }
66
67 prox = data[1] & 0x40;
68
3bea733a 69 if (prox) {
ec67bbed 70 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a 71 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
e33da8a5 72 if (features->pressure_max > 255)
3bea733a 73 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
e33da8a5 74 pressure += (features->pressure_max + 1) / 2;
3bea733a
PC
75
76 /*
77 * if going from out of proximity into proximity select between the eraser
78 * and the pen based on the state of the stylus2 button, choose eraser if
79 * pressed else choose pen. if not a proximity change from out to in, send
80 * an out of proximity for previous tool then a in for new tool.
81 */
82 if (!wacom->tool[0]) {
83 /* Eraser bit set for DTF */
84 if (data[1] & 0x10)
85 wacom->tool[1] = BTN_TOOL_RUBBER;
86 else
87 /* Going into proximity select tool */
88 wacom->tool[1] = (data[4] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
89 } else {
90 /* was entered with stylus2 pressed */
91 if (wacom->tool[1] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
92 /* report out proximity for previous tool */
93 wacom_report_key(wcombo, wacom->tool[1], 0);
94 wacom_input_sync(wcombo);
95 wacom->tool[1] = BTN_TOOL_PEN;
96 return 0;
97 }
98 }
99 if (wacom->tool[1] != BTN_TOOL_RUBBER) {
100 /* Unknown tool selected default to pen tool */
101 wacom->tool[1] = BTN_TOOL_PEN;
e34b9d2f 102 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a
PC
103 }
104 wacom_report_key(wcombo, wacom->tool[1], prox); /* report in proximity for tool */
e34b9d2f 105 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
3bea733a
PC
106 wacom_report_abs(wcombo, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
107 wacom_report_abs(wcombo, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
108 wacom_report_abs(wcombo, ABS_PRESSURE, pressure);
109
110 wacom_report_key(wcombo, BTN_TOUCH, data[4] & 0x08);
111 wacom_report_key(wcombo, BTN_STYLUS, data[4] & 0x10);
112 /* Only allow the stylus2 button to be reported for the pen tool. */
113 wacom_report_key(wcombo, BTN_STYLUS2, (wacom->tool[1] == BTN_TOOL_PEN) && (data[4] & 0x20));
114 } else {
115 /* report proximity-out of a (valid) tool */
116 if (wacom->tool[1] != BTN_TOOL_RUBBER) {
117 /* Unknown tool selected default to pen tool */
118 wacom->tool[1] = BTN_TOOL_PEN;
119 }
120 wacom_report_key(wcombo, wacom->tool[1], prox);
121 }
122
123 wacom->tool[0] = prox; /* Save proximity state */
124 return 1;
125}
126
127static int wacom_ptu_irq(struct wacom_wac *wacom, void *wcombo)
128{
129 unsigned char *data = wacom->data;
3bea733a 130
cad74700 131 if (data[0] != WACOM_REPORT_PENABLED) {
3bea733a
PC
132 printk(KERN_INFO "wacom_ptu_irq: received unknown report #%d\n", data[0]);
133 return 0;
134 }
135
3bea733a
PC
136 if (data[1] & 0x04) {
137 wacom_report_key(wcombo, BTN_TOOL_RUBBER, data[1] & 0x20);
138 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x08);
e34b9d2f 139 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a
PC
140 } else {
141 wacom_report_key(wcombo, BTN_TOOL_PEN, data[1] & 0x20);
142 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x01);
e34b9d2f 143 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a 144 }
e34b9d2f 145 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
3bea733a
PC
146 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[2]));
147 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[4]));
148 wacom_report_abs(wcombo, ABS_PRESSURE, wacom_le16_to_cpu(&data[6]));
149 wacom_report_key(wcombo, BTN_STYLUS, data[1] & 0x02);
150 wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 0x10);
151 return 1;
152}
153
154static int wacom_graphire_irq(struct wacom_wac *wacom, void *wcombo)
155{
e33da8a5 156 struct wacom_features *features = &wacom->features;
3bea733a 157 unsigned char *data = wacom->data;
3b57ca0f
PC
158 int x, y, prox;
159 int rw = 0;
160 int retval = 0;
3bea733a 161
cad74700 162 if (data[0] != WACOM_REPORT_PENABLED) {
3bea733a 163 dbg("wacom_graphire_irq: received unknown report #%d", data[0]);
3b57ca0f 164 goto exit;
3bea733a
PC
165 }
166
3b57ca0f
PC
167 prox = data[1] & 0x80;
168 if (prox || wacom->id[0]) {
169 if (prox) {
170 switch ((data[1] >> 5) & 3) {
3bea733a
PC
171
172 case 0: /* Pen */
173 wacom->tool[0] = BTN_TOOL_PEN;
e34b9d2f 174 wacom->id[0] = STYLUS_DEVICE_ID;
3bea733a
PC
175 break;
176
177 case 1: /* Rubber */
178 wacom->tool[0] = BTN_TOOL_RUBBER;
e34b9d2f 179 wacom->id[0] = ERASER_DEVICE_ID;
3bea733a
PC
180 break;
181
182 case 2: /* Mouse with wheel */
183 wacom_report_key(wcombo, BTN_MIDDLE, data[1] & 0x04);
3bea733a
PC
184 /* fall through */
185
186 case 3: /* Mouse without wheel */
187 wacom->tool[0] = BTN_TOOL_MOUSE;
e34b9d2f 188 wacom->id[0] = CURSOR_DEVICE_ID;
3bea733a 189 break;
3b57ca0f 190 }
3bea733a 191 }
3bea733a
PC
192 x = wacom_le16_to_cpu(&data[2]);
193 y = wacom_le16_to_cpu(&data[4]);
194 wacom_report_abs(wcombo, ABS_X, x);
195 wacom_report_abs(wcombo, ABS_Y, y);
196 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
197 wacom_report_abs(wcombo, ABS_PRESSURE, data[6] | ((data[7] & 0x01) << 8));
198 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x01);
199 wacom_report_key(wcombo, BTN_STYLUS, data[1] & 0x02);
200 wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 0x04);
afb567e3 201 } else {
3b57ca0f
PC
202 wacom_report_key(wcombo, BTN_LEFT, data[1] & 0x01);
203 wacom_report_key(wcombo, BTN_RIGHT, data[1] & 0x02);
204 if (features->type == WACOM_G4 ||
205 features->type == WACOM_MO) {
206 wacom_report_abs(wcombo, ABS_DISTANCE, data[6] & 0x3f);
207 rw = (signed)(data[7] & 0x04) - (data[7] & 0x03);
208 } else {
209 wacom_report_abs(wcombo, ABS_DISTANCE, data[7] & 0x3f);
210 rw = -(signed)data[6];
211 }
212 wacom_report_rel(wcombo, REL_WHEEL, rw);
afb567e3 213 }
3b57ca0f
PC
214
215 if (!prox)
216 wacom->id[0] = 0;
217 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
218 wacom_report_key(wcombo, wacom->tool[0], prox);
219 wacom_input_sync(wcombo); /* sync last event */
80d4e8e9 220 }
3bea733a
PC
221
222 /* send pad data */
e33da8a5 223 switch (features->type) {
7ecfbfd3 224 case WACOM_G4:
3b57ca0f
PC
225 prox = data[7] & 0xf8;
226 if (prox || wacom->id[1]) {
e34b9d2f 227 wacom->id[1] = PAD_DEVICE_ID;
3bea733a
PC
228 wacom_report_key(wcombo, BTN_0, (data[7] & 0x40));
229 wacom_report_key(wcombo, BTN_4, (data[7] & 0x80));
230 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
231 wacom_report_rel(wcombo, REL_WHEEL, rw);
232 wacom_report_key(wcombo, BTN_TOOL_FINGER, 0xf0);
e34b9d2f 233 wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]);
3b57ca0f
PC
234 if (!prox)
235 wacom->id[1] = 0;
236 wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]);
3bea733a
PC
237 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
238 }
3b57ca0f 239 retval = 1;
7ecfbfd3
PC
240 break;
241 case WACOM_MO:
3b57ca0f
PC
242 prox = (data[7] & 0xf8) || data[8];
243 if (prox || wacom->id[1]) {
e34b9d2f 244 wacom->id[1] = PAD_DEVICE_ID;
7ecfbfd3
PC
245 wacom_report_key(wcombo, BTN_0, (data[7] & 0x08));
246 wacom_report_key(wcombo, BTN_1, (data[7] & 0x20));
247 wacom_report_key(wcombo, BTN_4, (data[7] & 0x10));
248 wacom_report_key(wcombo, BTN_5, (data[7] & 0x40));
249 wacom_report_abs(wcombo, ABS_WHEEL, (data[8] & 0x7f));
250 wacom_report_key(wcombo, BTN_TOOL_FINGER, 0xf0);
3b57ca0f
PC
251 if (!prox)
252 wacom->id[1] = 0;
e34b9d2f 253 wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]);
7ecfbfd3 254 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
7ecfbfd3 255 }
3b57ca0f 256 retval = 1;
7ecfbfd3 257 break;
3bea733a 258 }
3b57ca0f
PC
259exit:
260 return retval;
3bea733a
PC
261}
262
263static int wacom_intuos_inout(struct wacom_wac *wacom, void *wcombo)
264{
e33da8a5 265 struct wacom_features *features = &wacom->features;
3bea733a 266 unsigned char *data = wacom->data;
6f660f12 267 int idx = 0;
3bea733a
PC
268
269 /* tool number */
e33da8a5 270 if (features->type == INTUOS)
6f660f12 271 idx = data[1] & 0x01;
3bea733a
PC
272
273 /* Enter report */
274 if ((data[1] & 0xfc) == 0xc0) {
275 /* serial number of the tool */
276 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
277 (data[4] << 20) + (data[5] << 12) +
278 (data[6] << 4) + (data[7] >> 4);
279
280 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4);
281 switch (wacom->id[idx]) {
282 case 0x812: /* Inking pen */
283 case 0x801: /* Intuos3 Inking pen */
6f660f12 284 case 0x20802: /* Intuos4 Classic Pen */
3bea733a
PC
285 case 0x012:
286 wacom->tool[idx] = BTN_TOOL_PENCIL;
287 break;
288 case 0x822: /* Pen */
289 case 0x842:
290 case 0x852:
291 case 0x823: /* Intuos3 Grip Pen */
292 case 0x813: /* Intuos3 Classic Pen */
293 case 0x885: /* Intuos3 Marker Pen */
6f660f12
PC
294 case 0x802: /* Intuos4 Grip Pen Eraser */
295 case 0x804: /* Intuos4 Marker Pen */
296 case 0x40802: /* Intuos4 Classic Pen */
3bea733a
PC
297 case 0x022:
298 wacom->tool[idx] = BTN_TOOL_PEN;
299 break;
300 case 0x832: /* Stroke pen */
301 case 0x032:
302 wacom->tool[idx] = BTN_TOOL_BRUSH;
303 break;
304 case 0x007: /* Mouse 4D and 2D */
305 case 0x09c:
306 case 0x094:
307 case 0x017: /* Intuos3 2D Mouse */
6f660f12 308 case 0x806: /* Intuos4 Mouse */
3bea733a
PC
309 wacom->tool[idx] = BTN_TOOL_MOUSE;
310 break;
311 case 0x096: /* Lens cursor */
312 case 0x097: /* Intuos3 Lens cursor */
6f660f12 313 case 0x006: /* Intuos4 Lens cursor */
3bea733a
PC
314 wacom->tool[idx] = BTN_TOOL_LENS;
315 break;
316 case 0x82a: /* Eraser */
317 case 0x85a:
318 case 0x91a:
319 case 0xd1a:
320 case 0x0fa:
321 case 0x82b: /* Intuos3 Grip Pen Eraser */
322 case 0x81b: /* Intuos3 Classic Pen Eraser */
323 case 0x91b: /* Intuos3 Airbrush Eraser */
6f660f12
PC
324 case 0x80c: /* Intuos4 Marker Pen Eraser */
325 case 0x80a: /* Intuos4 Grip Pen Eraser */
326 case 0x4080a: /* Intuos4 Classic Pen Eraser */
327 case 0x90a: /* Intuos4 Airbrush Eraser */
3bea733a
PC
328 wacom->tool[idx] = BTN_TOOL_RUBBER;
329 break;
330 case 0xd12:
331 case 0x912:
332 case 0x112:
333 case 0x913: /* Intuos3 Airbrush */
6f660f12 334 case 0x902: /* Intuos4 Airbrush */
3bea733a
PC
335 wacom->tool[idx] = BTN_TOOL_AIRBRUSH;
336 break;
337 default: /* Unknown tool */
338 wacom->tool[idx] = BTN_TOOL_PEN;
339 }
3bea733a
PC
340 return 1;
341 }
342
343 /* Exit report */
344 if ((data[1] & 0xfe) == 0x80) {
6f660f12
PC
345 /*
346 * Reset all states otherwise we lose the initial states
347 * when in-prox next time
348 */
80d4e8e9
PC
349 wacom_report_abs(wcombo, ABS_X, 0);
350 wacom_report_abs(wcombo, ABS_Y, 0);
351 wacom_report_abs(wcombo, ABS_DISTANCE, 0);
6f660f12
PC
352 wacom_report_abs(wcombo, ABS_TILT_X, 0);
353 wacom_report_abs(wcombo, ABS_TILT_Y, 0);
80d4e8e9
PC
354 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
355 wacom_report_key(wcombo, BTN_LEFT, 0);
356 wacom_report_key(wcombo, BTN_MIDDLE, 0);
357 wacom_report_key(wcombo, BTN_RIGHT, 0);
358 wacom_report_key(wcombo, BTN_SIDE, 0);
359 wacom_report_key(wcombo, BTN_EXTRA, 0);
360 wacom_report_abs(wcombo, ABS_THROTTLE, 0);
361 wacom_report_abs(wcombo, ABS_RZ, 0);
7ecfbfd3 362 } else {
80d4e8e9 363 wacom_report_abs(wcombo, ABS_PRESSURE, 0);
80d4e8e9
PC
364 wacom_report_key(wcombo, BTN_STYLUS, 0);
365 wacom_report_key(wcombo, BTN_STYLUS2, 0);
366 wacom_report_key(wcombo, BTN_TOUCH, 0);
367 wacom_report_abs(wcombo, ABS_WHEEL, 0);
e33da8a5 368 if (features->type >= INTUOS3S)
c413ec44 369 wacom_report_abs(wcombo, ABS_Z, 0);
8d32e3ae 370 }
80d4e8e9
PC
371 wacom_report_key(wcombo, wacom->tool[idx], 0);
372 wacom_report_abs(wcombo, ABS_MISC, 0); /* reset tool id */
373 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
6f660f12 374 wacom->id[idx] = 0;
80d4e8e9 375 return 2;
3bea733a
PC
376 }
377 return 0;
378}
379
380static void wacom_intuos_general(struct wacom_wac *wacom, void *wcombo)
381{
e33da8a5 382 struct wacom_features *features = &wacom->features;
3bea733a
PC
383 unsigned char *data = wacom->data;
384 unsigned int t;
385
386 /* general pen packet */
387 if ((data[1] & 0xb8) == 0xa0) {
388 t = (data[6] << 2) | ((data[7] >> 6) & 3);
e33da8a5 389 if (features->type >= INTUOS4S && features->type <= INTUOS4L)
6f660f12 390 t = (t << 1) | (data[1] & 1);
3bea733a
PC
391 wacom_report_abs(wcombo, ABS_PRESSURE, t);
392 wacom_report_abs(wcombo, ABS_TILT_X,
393 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
394 wacom_report_abs(wcombo, ABS_TILT_Y, data[8] & 0x7f);
395 wacom_report_key(wcombo, BTN_STYLUS, data[1] & 2);
396 wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 4);
397 wacom_report_key(wcombo, BTN_TOUCH, t > 10);
398 }
399
400 /* airbrush second packet */
401 if ((data[1] & 0xbc) == 0xb4) {
402 wacom_report_abs(wcombo, ABS_WHEEL,
403 (data[6] << 2) | ((data[7] >> 6) & 3));
404 wacom_report_abs(wcombo, ABS_TILT_X,
405 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
406 wacom_report_abs(wcombo, ABS_TILT_Y, data[8] & 0x7f);
407 }
408 return;
409}
410
411static int wacom_intuos_irq(struct wacom_wac *wacom, void *wcombo)
412{
e33da8a5 413 struct wacom_features *features = &wacom->features;
3bea733a
PC
414 unsigned char *data = wacom->data;
415 unsigned int t;
6f660f12 416 int idx = 0, result;
3bea733a 417
cad74700
PC
418 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD
419 && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) {
3bea733a
PC
420 dbg("wacom_intuos_irq: received unknown report #%d", data[0]);
421 return 0;
422 }
423
3bea733a 424 /* tool number */
e33da8a5 425 if (features->type == INTUOS)
6f660f12 426 idx = data[1] & 0x01;
3bea733a
PC
427
428 /* pad packets. Works as a second tool and is always in prox */
cad74700 429 if (data[0] == WACOM_REPORT_INTUOSPAD) {
3bea733a
PC
430 /* initiate the pad as a device */
431 if (wacom->tool[1] != BTN_TOOL_FINGER)
432 wacom->tool[1] = BTN_TOOL_FINGER;
433
e33da8a5 434 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
6f660f12
PC
435 wacom_report_key(wcombo, BTN_0, (data[2] & 0x01));
436 wacom_report_key(wcombo, BTN_1, (data[3] & 0x01));
437 wacom_report_key(wcombo, BTN_2, (data[3] & 0x02));
438 wacom_report_key(wcombo, BTN_3, (data[3] & 0x04));
439 wacom_report_key(wcombo, BTN_4, (data[3] & 0x08));
440 wacom_report_key(wcombo, BTN_5, (data[3] & 0x10));
441 wacom_report_key(wcombo, BTN_6, (data[3] & 0x20));
442 if (data[1] & 0x80) {
443 wacom_report_abs(wcombo, ABS_WHEEL, (data[1] & 0x7f));
a8629528
PC
444 } else {
445 /* Out of proximity, clear wheel value. */
446 wacom_report_abs(wcombo, ABS_WHEEL, 0);
6f660f12 447 }
e33da8a5 448 if (features->type != INTUOS4S) {
6f660f12
PC
449 wacom_report_key(wcombo, BTN_7, (data[3] & 0x40));
450 wacom_report_key(wcombo, BTN_8, (data[3] & 0x80));
451 }
452 if (data[1] | (data[2] & 0x01) | data[3]) {
453 wacom_report_key(wcombo, wacom->tool[1], 1);
454 wacom_report_abs(wcombo, ABS_MISC, PAD_DEVICE_ID);
455 } else {
456 wacom_report_key(wcombo, wacom->tool[1], 0);
457 wacom_report_abs(wcombo, ABS_MISC, 0);
458 }
459 } else {
460 wacom_report_key(wcombo, BTN_0, (data[5] & 0x01));
461 wacom_report_key(wcombo, BTN_1, (data[5] & 0x02));
462 wacom_report_key(wcombo, BTN_2, (data[5] & 0x04));
463 wacom_report_key(wcombo, BTN_3, (data[5] & 0x08));
464 wacom_report_key(wcombo, BTN_4, (data[6] & 0x01));
465 wacom_report_key(wcombo, BTN_5, (data[6] & 0x02));
466 wacom_report_key(wcombo, BTN_6, (data[6] & 0x04));
467 wacom_report_key(wcombo, BTN_7, (data[6] & 0x08));
468 wacom_report_key(wcombo, BTN_8, (data[5] & 0x10));
469 wacom_report_key(wcombo, BTN_9, (data[6] & 0x10));
470 wacom_report_abs(wcombo, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]);
471 wacom_report_abs(wcombo, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]);
472
473 if ((data[5] & 0x1f) | (data[6] & 0x1f) | (data[1] & 0x1f) |
474 data[2] | (data[3] & 0x1f) | data[4]) {
475 wacom_report_key(wcombo, wacom->tool[1], 1);
476 wacom_report_abs(wcombo, ABS_MISC, PAD_DEVICE_ID);
477 } else {
478 wacom_report_key(wcombo, wacom->tool[1], 0);
479 wacom_report_abs(wcombo, ABS_MISC, 0);
480 }
481 }
3bea733a
PC
482 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xffffffff);
483 return 1;
484 }
485
486 /* process in/out prox events */
487 result = wacom_intuos_inout(wacom, wcombo);
488 if (result)
489 return result-1;
490
6f660f12
PC
491 /* don't proceed if we don't know the ID */
492 if (!wacom->id[idx])
493 return 0;
494
495 /* Only large Intuos support Lense Cursor */
e33da8a5
JC
496 if (wacom->tool[idx] == BTN_TOOL_LENS &&
497 (features->type == INTUOS3 ||
498 features->type == INTUOS3S ||
499 features->type == INTUOS4 ||
500 features->type == INTUOS4S)) {
501
80d4e8e9 502 return 0;
e33da8a5 503 }
80d4e8e9 504
3bea733a 505 /* Cintiq doesn't send data when RDY bit isn't set */
e33da8a5 506 if (features->type == CINTIQ && !(data[1] & 0x40))
3bea733a
PC
507 return 0;
508
e33da8a5 509 if (features->type >= INTUOS3S) {
3bea733a
PC
510 wacom_report_abs(wcombo, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1));
511 wacom_report_abs(wcombo, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1));
512 wacom_report_abs(wcombo, ABS_DISTANCE, ((data[9] >> 2) & 0x3f));
513 } else {
514 wacom_report_abs(wcombo, ABS_X, wacom_be16_to_cpu(&data[2]));
515 wacom_report_abs(wcombo, ABS_Y, wacom_be16_to_cpu(&data[4]));
516 wacom_report_abs(wcombo, ABS_DISTANCE, ((data[9] >> 3) & 0x1f));
517 }
518
519 /* process general packets */
520 wacom_intuos_general(wacom, wcombo);
521
6f660f12
PC
522 /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */
523 if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0 || (data[1] & 0xbc) == 0xac) {
3bea733a
PC
524
525 if (data[1] & 0x02) {
526 /* Rotation packet */
e33da8a5 527 if (features->type >= INTUOS3S) {
0e1763f5 528 /* I3 marker pen rotation */
3bea733a
PC
529 t = (data[6] << 3) | ((data[7] >> 5) & 7);
530 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
531 ((t-1) / 2 + 450)) : (450 - t / 2) ;
0e1763f5 532 wacom_report_abs(wcombo, ABS_Z, t);
3bea733a
PC
533 } else {
534 /* 4D mouse rotation packet */
535 t = (data[6] << 3) | ((data[7] >> 5) & 7);
536 wacom_report_abs(wcombo, ABS_RZ, (data[7] & 0x20) ?
537 ((t - 1) / 2) : -t / 2);
538 }
539
e33da8a5 540 } else if (!(data[1] & 0x10) && features->type < INTUOS3S) {
3bea733a
PC
541 /* 4D mouse packet */
542 wacom_report_key(wcombo, BTN_LEFT, data[8] & 0x01);
543 wacom_report_key(wcombo, BTN_MIDDLE, data[8] & 0x02);
544 wacom_report_key(wcombo, BTN_RIGHT, data[8] & 0x04);
545
546 wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x20);
547 wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x10);
548 t = (data[6] << 2) | ((data[7] >> 6) & 3);
549 wacom_report_abs(wcombo, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
550
551 } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
6f660f12 552 /* I4 mouse */
e33da8a5 553 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
6f660f12
PC
554 wacom_report_key(wcombo, BTN_LEFT, data[6] & 0x01);
555 wacom_report_key(wcombo, BTN_MIDDLE, data[6] & 0x02);
556 wacom_report_key(wcombo, BTN_RIGHT, data[6] & 0x04);
557 wacom_report_rel(wcombo, REL_WHEEL, ((data[7] & 0x80) >> 7)
558 - ((data[7] & 0x40) >> 6));
559 wacom_report_key(wcombo, BTN_SIDE, data[6] & 0x08);
560 wacom_report_key(wcombo, BTN_EXTRA, data[6] & 0x10);
561
562 wacom_report_abs(wcombo, ABS_TILT_X,
563 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
564 wacom_report_abs(wcombo, ABS_TILT_Y, data[8] & 0x7f);
565 } else {
566 /* 2D mouse packet */
567 wacom_report_key(wcombo, BTN_LEFT, data[8] & 0x04);
568 wacom_report_key(wcombo, BTN_MIDDLE, data[8] & 0x08);
569 wacom_report_key(wcombo, BTN_RIGHT, data[8] & 0x10);
570 wacom_report_rel(wcombo, REL_WHEEL, (data[8] & 0x01)
3bea733a
PC
571 - ((data[8] & 0x02) >> 1));
572
6f660f12 573 /* I3 2D mouse side buttons */
e33da8a5 574 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
6f660f12
PC
575 wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x40);
576 wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x20);
577 }
3bea733a 578 }
e33da8a5
JC
579 } else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
580 features->type == INTUOS4L) &&
6f660f12 581 wacom->tool[idx] == BTN_TOOL_LENS) {
3bea733a
PC
582 /* Lens cursor packets */
583 wacom_report_key(wcombo, BTN_LEFT, data[8] & 0x01);
584 wacom_report_key(wcombo, BTN_MIDDLE, data[8] & 0x02);
585 wacom_report_key(wcombo, BTN_RIGHT, data[8] & 0x04);
586 wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x10);
587 wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x08);
588 }
589 }
590
591 wacom_report_abs(wcombo, ABS_MISC, wacom->id[idx]); /* report tool id */
592 wacom_report_key(wcombo, wacom->tool[idx], 1);
593 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
594 return 1;
595}
596
ec67bbed
PC
597
598static void wacom_tpc_finger_in(struct wacom_wac *wacom, void *wcombo, char *data, int idx)
599{
600 wacom_report_abs(wcombo, ABS_X,
3b57ca0f 601 data[2 + idx * 2] | ((data[3 + idx * 2] & 0x7f) << 8));
ec67bbed 602 wacom_report_abs(wcombo, ABS_Y,
3b57ca0f 603 data[6 + idx * 2] | ((data[7 + idx * 2] & 0x7f) << 8));
ec67bbed
PC
604 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]);
605 wacom_report_key(wcombo, wacom->tool[idx], 1);
606 if (idx)
607 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
608 else
609 wacom_report_key(wcombo, BTN_TOUCH, 1);
610}
611
612static void wacom_tpc_touch_out(struct wacom_wac *wacom, void *wcombo, int idx)
613{
614 wacom_report_abs(wcombo, ABS_X, 0);
615 wacom_report_abs(wcombo, ABS_Y, 0);
616 wacom_report_abs(wcombo, ABS_MISC, 0);
617 wacom_report_key(wcombo, wacom->tool[idx], 0);
618 if (idx)
619 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
620 else
621 wacom_report_key(wcombo, BTN_TOUCH, 0);
622 return;
623}
624
625static void wacom_tpc_touch_in(struct wacom_wac *wacom, void *wcombo)
626{
627 char *data = wacom->data;
628 struct urb *urb = ((struct wacom_combo *)wcombo)->urb;
629 static int firstFinger = 0;
630 static int secondFinger = 0;
631
632 wacom->tool[0] = BTN_TOOL_DOUBLETAP;
633 wacom->id[0] = TOUCH_DEVICE_ID;
634 wacom->tool[1] = BTN_TOOL_TRIPLETAP;
635
636 if (urb->actual_length != WACOM_PKGLEN_TPC1FG) {
637 switch (data[0]) {
cad74700 638 case WACOM_REPORT_TPC1FG:
ec67bbed
PC
639 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[2]));
640 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[4]));
641 wacom_report_abs(wcombo, ABS_PRESSURE, wacom_le16_to_cpu(&data[6]));
642 wacom_report_key(wcombo, BTN_TOUCH, wacom_le16_to_cpu(&data[6]));
643 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]);
644 wacom_report_key(wcombo, wacom->tool[0], 1);
645 break;
cad74700 646 case WACOM_REPORT_TPC2FG:
ec67bbed
PC
647 /* keep this byte to send proper out-prox event */
648 wacom->id[1] = data[1] & 0x03;
649
650 if (data[1] & 0x01) {
651 wacom_tpc_finger_in(wacom, wcombo, data, 0);
652 firstFinger = 1;
653 } else if (firstFinger) {
654 wacom_tpc_touch_out(wacom, wcombo, 0);
655 }
656
657 if (data[1] & 0x02) {
658 /* sync first finger data */
659 if (firstFinger)
660 wacom_input_sync(wcombo);
661
662 wacom_tpc_finger_in(wacom, wcombo, data, 1);
663 secondFinger = 1;
664 } else if (secondFinger) {
665 /* sync first finger data */
666 if (firstFinger)
667 wacom_input_sync(wcombo);
668
669 wacom_tpc_touch_out(wacom, wcombo, 1);
670 secondFinger = 0;
671 }
672 if (!(data[1] & 0x01))
673 firstFinger = 0;
674 break;
675 }
676 } else {
677 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[1]));
678 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[3]));
679 wacom_report_key(wcombo, BTN_TOUCH, 1);
680 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]);
681 wacom_report_key(wcombo, wacom->tool[0], 1);
682 }
683 return;
684}
685
0de048ab 686static int wacom_tpc_irq(struct wacom_wac *wacom, void *wcombo)
545f4e99 687{
e33da8a5 688 struct wacom_features *features = &wacom->features;
545f4e99 689 char *data = wacom->data;
ec67bbed 690 int prox = 0, pressure, idx = -1;
545f4e99
PC
691 static int stylusInProx, touchInProx = 1, touchOut;
692 struct urb *urb = ((struct wacom_combo *)wcombo)->urb;
693
694 dbg("wacom_tpc_irq: received report #%d", data[0]);
695
cad74700
PC
696 if (urb->actual_length == WACOM_PKGLEN_TPC1FG || /* single touch */
697 data[0] == WACOM_REPORT_TPC1FG || /* single touch */
698 data[0] == WACOM_REPORT_TPC2FG) { /* 2FG touch */
ee54500d 699 if (urb->actual_length == WACOM_PKGLEN_TPC1FG) { /* with touch */
ec67bbed 700 prox = data[0] & 0x01;
545f4e99 701 } else { /* with capacity */
cad74700 702 if (data[0] == WACOM_REPORT_TPC1FG)
ec67bbed
PC
703 /* single touch */
704 prox = data[1] & 0x01;
705 else
706 /* 2FG touch data */
707 prox = data[1] & 0x03;
545f4e99
PC
708 }
709
710 if (!stylusInProx) { /* stylus not in prox */
711 if (prox) {
712 if (touchInProx) {
ec67bbed 713 wacom_tpc_touch_in(wacom, wcombo);
545f4e99
PC
714 touchOut = 1;
715 return 1;
716 }
717 } else {
ec67bbed 718 /* 2FGT out-prox */
cad74700 719 if (data[0] == WACOM_REPORT_TPC2FG) {
ec67bbed
PC
720 idx = (wacom->id[1] & 0x01) - 1;
721 if (idx == 0) {
722 wacom_tpc_touch_out(wacom, wcombo, idx);
723 /* sync first finger event */
724 if (wacom->id[1] & 0x02)
725 wacom_input_sync(wcombo);
726 }
727 idx = (wacom->id[1] & 0x02) - 1;
728 if (idx == 1)
729 wacom_tpc_touch_out(wacom, wcombo, idx);
730 } else /* one finger touch */
731 wacom_tpc_touch_out(wacom, wcombo, 0);
545f4e99
PC
732 touchOut = 0;
733 touchInProx = 1;
734 return 1;
735 }
736 } else if (touchOut || !prox) { /* force touch out-prox */
ec67bbed 737 wacom_tpc_touch_out(wacom, wcombo, 0);
545f4e99
PC
738 touchOut = 0;
739 touchInProx = 1;
740 return 1;
741 }
cad74700 742 } else if (data[0] == WACOM_REPORT_PENABLED) { /* Penabled */
545f4e99
PC
743 prox = data[1] & 0x20;
744
745 touchInProx = 0;
746
3b57ca0f
PC
747 if (!wacom->id[0]) { /* first in prox */
748 /* Going into proximity select tool */
749 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
750 if (wacom->tool[0] == BTN_TOOL_PEN)
751 wacom->id[0] = STYLUS_DEVICE_ID;
752 else
753 wacom->id[0] = ERASER_DEVICE_ID;
754 }
755 wacom_report_key(wcombo, BTN_STYLUS, data[1] & 0x02);
756 wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 0x10);
757 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[2]));
758 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[4]));
759 pressure = ((data[7] & 0x01) << 8) | data[6];
760 if (pressure < 0)
761 pressure = features->pressure_max + pressure + 1;
762 wacom_report_abs(wcombo, ABS_PRESSURE, pressure);
763 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x05);
764 if (!prox) { /* out-prox */
ec67bbed
PC
765 wacom->id[0] = 0;
766 /* pen is out so touch can be enabled now */
767 touchInProx = 1;
545f4e99 768 }
ec67bbed 769 wacom_report_key(wcombo, wacom->tool[0], prox);
545f4e99
PC
770 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]);
771 stylusInProx = prox;
545f4e99
PC
772 return 1;
773 }
774 return 0;
775}
776
3bea733a
PC
777int wacom_wac_irq(struct wacom_wac *wacom_wac, void *wcombo)
778{
e33da8a5 779 switch (wacom_wac->features.type) {
3bea733a 780 case PENPARTNER:
545f4e99
PC
781 return wacom_penpartner_irq(wacom_wac, wcombo);
782
3bea733a 783 case PL:
545f4e99
PC
784 return wacom_pl_irq(wacom_wac, wcombo);
785
3bea733a
PC
786 case WACOM_G4:
787 case GRAPHIRE:
7ecfbfd3 788 case WACOM_MO:
545f4e99
PC
789 return wacom_graphire_irq(wacom_wac, wcombo);
790
3bea733a 791 case PTU:
545f4e99
PC
792 return wacom_ptu_irq(wacom_wac, wcombo);
793
3bea733a 794 case INTUOS:
8d32e3ae 795 case INTUOS3S:
3bea733a
PC
796 case INTUOS3:
797 case INTUOS3L:
6f660f12
PC
798 case INTUOS4S:
799 case INTUOS4:
800 case INTUOS4L:
3bea733a 801 case CINTIQ:
0e1763f5 802 case WACOM_BEE:
545f4e99
PC
803 return wacom_intuos_irq(wacom_wac, wcombo);
804
805 case TABLETPC:
ec67bbed 806 case TABLETPC2FG:
545f4e99
PC
807 return wacom_tpc_irq(wacom_wac, wcombo);
808
3bea733a
PC
809 default:
810 return 0;
811 }
812 return 0;
813}
814
815void wacom_init_input_dev(struct input_dev *input_dev, struct wacom_wac *wacom_wac)
816{
e33da8a5 817 switch (wacom_wac->features.type) {
7ecfbfd3
PC
818 case WACOM_MO:
819 input_dev_mo(input_dev, wacom_wac);
3bea733a
PC
820 case WACOM_G4:
821 input_dev_g4(input_dev, wacom_wac);
822 /* fall through */
823 case GRAPHIRE:
824 input_dev_g(input_dev, wacom_wac);
825 break;
0e1763f5
PC
826 case WACOM_BEE:
827 input_dev_bee(input_dev, wacom_wac);
3bea733a
PC
828 case INTUOS3:
829 case INTUOS3L:
830 case CINTIQ:
831 input_dev_i3(input_dev, wacom_wac);
832 /* fall through */
8d32e3ae
PC
833 case INTUOS3S:
834 input_dev_i3s(input_dev, wacom_wac);
545f4e99 835 /* fall through */
3bea733a
PC
836 case INTUOS:
837 input_dev_i(input_dev, wacom_wac);
838 break;
6f660f12
PC
839 case INTUOS4:
840 case INTUOS4L:
841 input_dev_i4(input_dev, wacom_wac);
842 /* fall through */
843 case INTUOS4S:
844 input_dev_i4s(input_dev, wacom_wac);
845 input_dev_i(input_dev, wacom_wac);
846 break;
ec67bbed
PC
847 case TABLETPC2FG:
848 input_dev_tpc2fg(input_dev, wacom_wac);
849 /* fall through */
850 case TABLETPC:
851 input_dev_tpc(input_dev, wacom_wac);
e33da8a5 852 if (wacom_wac->features.device_type != BTN_TOOL_PEN)
ec67bbed
PC
853 break; /* no need to process stylus stuff */
854
855 /* fall through */
3bea733a
PC
856 case PL:
857 case PTU:
858 input_dev_pl(input_dev, wacom_wac);
545f4e99 859 /* fall through */
3bea733a
PC
860 case PENPARTNER:
861 input_dev_pt(input_dev, wacom_wac);
862 break;
863 }
864 return;
865}
866
e87a344d 867static const struct wacom_features wacom_features_0x00 =
b036f6fb 868 { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255, 0, PENPARTNER };
e87a344d 869static const struct wacom_features wacom_features_0x10 =
b036f6fb 870 { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, 63, GRAPHIRE };
e87a344d 871static const struct wacom_features wacom_features_0x11 =
b036f6fb 872 { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, 63, GRAPHIRE };
e87a344d 873static const struct wacom_features wacom_features_0x12 =
b036f6fb 874 { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511, 63, GRAPHIRE };
e87a344d 875static const struct wacom_features wacom_features_0x13 =
b036f6fb 876 { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, 63, GRAPHIRE };
e87a344d 877static const struct wacom_features wacom_features_0x14 =
b036f6fb 878 { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, GRAPHIRE };
e87a344d 879static const struct wacom_features wacom_features_0x15 =
b036f6fb 880 { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, 63, WACOM_G4 };
e87a344d 881static const struct wacom_features wacom_features_0x16 =
b036f6fb 882 { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, WACOM_G4 };
e87a344d 883static const struct wacom_features wacom_features_0x17 =
b036f6fb 884 { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, 63, WACOM_MO };
e87a344d 885static const struct wacom_features wacom_features_0x18 =
b036f6fb 886 { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511, 63, WACOM_MO };
e87a344d 887static const struct wacom_features wacom_features_0x19 =
b036f6fb 888 { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, GRAPHIRE };
e87a344d 889static const struct wacom_features wacom_features_0x60 =
b036f6fb 890 { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE };
e87a344d 891static const struct wacom_features wacom_features_0x61 =
b036f6fb 892 { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255, 63, GRAPHIRE };
e87a344d 893static const struct wacom_features wacom_features_0x62 =
b036f6fb 894 { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE };
e87a344d 895static const struct wacom_features wacom_features_0x63 =
b036f6fb 896 { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511, 63, GRAPHIRE };
e87a344d 897static const struct wacom_features wacom_features_0x64 =
b036f6fb 898 { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511, 63, GRAPHIRE };
e87a344d 899static const struct wacom_features wacom_features_0x65 =
b036f6fb 900 { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, 63, WACOM_MO };
e87a344d 901static const struct wacom_features wacom_features_0x69 =
b036f6fb 902 { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE };
e87a344d 903static const struct wacom_features wacom_features_0x20 =
b036f6fb 904 { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, 31, INTUOS };
e87a344d 905static const struct wacom_features wacom_features_0x21 =
b036f6fb 906 { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS };
e87a344d 907static const struct wacom_features wacom_features_0x22 =
b036f6fb 908 { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, 31, INTUOS };
e87a344d 909static const struct wacom_features wacom_features_0x23 =
b036f6fb 910 { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, 31, INTUOS };
e87a344d 911static const struct wacom_features wacom_features_0x24 =
b036f6fb 912 { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, 31, INTUOS };
e87a344d 913static const struct wacom_features wacom_features_0x30 =
b036f6fb 914 { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255, 0, PL };
e87a344d 915static const struct wacom_features wacom_features_0x31 =
b036f6fb 916 { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255, 0, PL };
e87a344d 917static const struct wacom_features wacom_features_0x32 =
b036f6fb 918 { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255, 0, PL };
e87a344d 919static const struct wacom_features wacom_features_0x33 =
b036f6fb 920 { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255, 0, PL };
e87a344d 921static const struct wacom_features wacom_features_0x34 =
b036f6fb 922 { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511, 0, PL };
e87a344d 923static const struct wacom_features wacom_features_0x35 =
b036f6fb 924 { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511, 0, PL };
e87a344d 925static const struct wacom_features wacom_features_0x37 =
b036f6fb 926 { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511, 0, PL };
e87a344d 927static const struct wacom_features wacom_features_0x38 =
b036f6fb 928 { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, 0, PL };
e87a344d 929static const struct wacom_features wacom_features_0x39 =
b036f6fb 930 { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511, 0, PL };
e87a344d 931static const struct wacom_features wacom_features_0xC4 =
b036f6fb 932 { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, 0, PL };
e87a344d 933static const struct wacom_features wacom_features_0xC0 =
b036f6fb 934 { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, 0, PL };
e87a344d 935static const struct wacom_features wacom_features_0xC2 =
b036f6fb 936 { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, 0, PL };
e87a344d 937static const struct wacom_features wacom_features_0x03 =
b036f6fb 938 { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511, 0, PTU };
e87a344d 939static const struct wacom_features wacom_features_0x41 =
b036f6fb 940 { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, 31, INTUOS };
e87a344d 941static const struct wacom_features wacom_features_0x42 =
b036f6fb 942 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS };
e87a344d 943static const struct wacom_features wacom_features_0x43 =
b036f6fb 944 { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, 31, INTUOS };
e87a344d 945static const struct wacom_features wacom_features_0x44 =
b036f6fb 946 { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, 31, INTUOS };
e87a344d 947static const struct wacom_features wacom_features_0x45 =
b036f6fb 948 { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, 31, INTUOS };
e87a344d 949static const struct wacom_features wacom_features_0xB0 =
b036f6fb 950 { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023, 63, INTUOS3S };
e87a344d 951static const struct wacom_features wacom_features_0xB1 =
b036f6fb 952 { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023, 63, INTUOS3 };
e87a344d 953static const struct wacom_features wacom_features_0xB2 =
b036f6fb 954 { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023, 63, INTUOS3 };
e87a344d 955static const struct wacom_features wacom_features_0xB3 =
b036f6fb 956 { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023, 63, INTUOS3L };
e87a344d 957static const struct wacom_features wacom_features_0xB4 =
b036f6fb 958 { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023, 63, INTUOS3L };
e87a344d 959static const struct wacom_features wacom_features_0xB5 =
b036f6fb 960 { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023, 63, INTUOS3 };
e87a344d 961static const struct wacom_features wacom_features_0xB7 =
b036f6fb 962 { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023, 63, INTUOS3S };
e87a344d 963static const struct wacom_features wacom_features_0xB8 =
b036f6fb 964 { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047, 63, INTUOS4S };
e87a344d 965static const struct wacom_features wacom_features_0xB9 =
b036f6fb 966 { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047, 63, INTUOS4 };
e87a344d 967static const struct wacom_features wacom_features_0xBA =
b036f6fb 968 { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047, 63, INTUOS4L };
e87a344d 969static const struct wacom_features wacom_features_0xBB =
b036f6fb 970 { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047, 63, INTUOS4L };
e87a344d 971static const struct wacom_features wacom_features_0x3F =
b036f6fb 972 { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023, 63, CINTIQ };
e87a344d 973static const struct wacom_features wacom_features_0xC5 =
b036f6fb 974 { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023, 63, WACOM_BEE };
e87a344d 975static const struct wacom_features wacom_features_0xC6 =
b036f6fb 976 { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023, 63, WACOM_BEE };
e87a344d 977static const struct wacom_features wacom_features_0xC7 =
b036f6fb 978 { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511, 0, PL };
e87a344d 979static const struct wacom_features wacom_features_0x90 =
b036f6fb 980 { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
e87a344d 981static const struct wacom_features wacom_features_0x93 =
b036f6fb 982 { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
e87a344d 983static const struct wacom_features wacom_features_0x9A =
b036f6fb 984 { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
e87a344d 985static const struct wacom_features wacom_features_0x9F =
57e413d9 986 { "Wacom ISDv4 9F", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
e87a344d 987static const struct wacom_features wacom_features_0xE2 =
b036f6fb 988 { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, 0, TABLETPC2FG };
e87a344d 989static const struct wacom_features wacom_features_0xE3 =
b036f6fb 990 { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, 0, TABLETPC2FG };
e87a344d 991static const struct wacom_features wacom_features_0x47 =
b036f6fb
BB
992 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS };
993
994#define USB_DEVICE_WACOM(prod) \
995 USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \
996 .driver_info = (kernel_ulong_t)&wacom_features_##prod
997
998const struct usb_device_id wacom_ids[] = {
999 { USB_DEVICE_WACOM(0x00) },
1000 { USB_DEVICE_WACOM(0x10) },
1001 { USB_DEVICE_WACOM(0x11) },
1002 { USB_DEVICE_WACOM(0x12) },
1003 { USB_DEVICE_WACOM(0x13) },
1004 { USB_DEVICE_WACOM(0x14) },
1005 { USB_DEVICE_WACOM(0x15) },
1006 { USB_DEVICE_WACOM(0x16) },
1007 { USB_DEVICE_WACOM(0x17) },
1008 { USB_DEVICE_WACOM(0x18) },
1009 { USB_DEVICE_WACOM(0x19) },
1010 { USB_DEVICE_WACOM(0x60) },
1011 { USB_DEVICE_WACOM(0x61) },
1012 { USB_DEVICE_WACOM(0x62) },
1013 { USB_DEVICE_WACOM(0x63) },
1014 { USB_DEVICE_WACOM(0x64) },
1015 { USB_DEVICE_WACOM(0x65) },
1016 { USB_DEVICE_WACOM(0x69) },
1017 { USB_DEVICE_WACOM(0x20) },
1018 { USB_DEVICE_WACOM(0x21) },
1019 { USB_DEVICE_WACOM(0x22) },
1020 { USB_DEVICE_WACOM(0x23) },
1021 { USB_DEVICE_WACOM(0x24) },
1022 { USB_DEVICE_WACOM(0x30) },
1023 { USB_DEVICE_WACOM(0x31) },
1024 { USB_DEVICE_WACOM(0x32) },
1025 { USB_DEVICE_WACOM(0x33) },
1026 { USB_DEVICE_WACOM(0x34) },
1027 { USB_DEVICE_WACOM(0x35) },
1028 { USB_DEVICE_WACOM(0x37) },
1029 { USB_DEVICE_WACOM(0x38) },
1030 { USB_DEVICE_WACOM(0x39) },
1031 { USB_DEVICE_WACOM(0xC4) },
1032 { USB_DEVICE_WACOM(0xC0) },
1033 { USB_DEVICE_WACOM(0xC2) },
1034 { USB_DEVICE_WACOM(0x03) },
1035 { USB_DEVICE_WACOM(0x41) },
1036 { USB_DEVICE_WACOM(0x42) },
1037 { USB_DEVICE_WACOM(0x43) },
1038 { USB_DEVICE_WACOM(0x44) },
1039 { USB_DEVICE_WACOM(0x45) },
1040 { USB_DEVICE_WACOM(0xB0) },
1041 { USB_DEVICE_WACOM(0xB1) },
1042 { USB_DEVICE_WACOM(0xB2) },
1043 { USB_DEVICE_WACOM(0xB3) },
1044 { USB_DEVICE_WACOM(0xB4) },
1045 { USB_DEVICE_WACOM(0xB5) },
1046 { USB_DEVICE_WACOM(0xB7) },
1047 { USB_DEVICE_WACOM(0xB8) },
1048 { USB_DEVICE_WACOM(0xB9) },
1049 { USB_DEVICE_WACOM(0xBA) },
1050 { USB_DEVICE_WACOM(0xBB) },
1051 { USB_DEVICE_WACOM(0x3F) },
1052 { USB_DEVICE_WACOM(0xC5) },
1053 { USB_DEVICE_WACOM(0xC6) },
1054 { USB_DEVICE_WACOM(0xC7) },
1055 { USB_DEVICE_WACOM(0x90) },
1056 { USB_DEVICE_WACOM(0x93) },
1057 { USB_DEVICE_WACOM(0x9A) },
1058 { USB_DEVICE_WACOM(0x9F) },
1059 { USB_DEVICE_WACOM(0xE2) },
1060 { USB_DEVICE_WACOM(0xE3) },
1061 { USB_DEVICE_WACOM(0x47) },
3bea733a
PC
1062 { }
1063};
3bea733a 1064MODULE_DEVICE_TABLE(usb, wacom_ids);