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