blob: 2d7aee0bd2891d288e4e2447a4ac0a77fe0da3e4 [file] [log] [blame]
Ping Cheng3bea7332006-07-13 18:01:36 -07001/*
Dmitry Torokhov4104d132007-05-07 16:16:29 -04002 * drivers/input/tablet/wacom_wac.c
Ping Cheng3bea7332006-07-13 18:01:36 -07003 *
Ping Chengee545002009-12-15 00:35:24 -08004 * USB Wacom tablet support - Wacom specific code
Ping Cheng3bea7332006-07-13 18:01:36 -07005 *
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 */
Dmitry Torokhov51269fe2010-03-19 22:18:15 -070014
Ping Cheng3bea7332006-07-13 18:01:36 -070015#include "wacom_wac.h"
Dmitry Torokhov51269fe2010-03-19 22:18:15 -070016#include "wacom.h"
Ping Cheng3bea7332006-07-13 18:01:36 -070017
18static int wacom_penpartner_irq(struct wacom_wac *wacom, void *wcombo)
19{
20 unsigned char *data = wacom->data;
21
22 switch (data[0]) {
23 case 1:
Ping Cheng3bea7332006-07-13 18:01:36 -070024 if (data[5] & 0x80) {
25 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
26 wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
27 wacom_report_key(wcombo, wacom->tool[0], 1);
28 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
29 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[1]));
30 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[3]));
31 wacom_report_abs(wcombo, ABS_PRESSURE, (signed char)data[6] + 127);
32 wacom_report_key(wcombo, BTN_TOUCH, ((signed char)data[6] > -127));
33 wacom_report_key(wcombo, BTN_STYLUS, (data[5] & 0x40));
34 } else {
35 wacom_report_key(wcombo, wacom->tool[0], 0);
36 wacom_report_abs(wcombo, ABS_MISC, 0); /* report tool id */
37 wacom_report_abs(wcombo, ABS_PRESSURE, -1);
38 wacom_report_key(wcombo, BTN_TOUCH, 0);
39 }
40 break;
41 case 2:
Ping Cheng3bea7332006-07-13 18:01:36 -070042 wacom_report_key(wcombo, BTN_TOOL_PEN, 1);
43 wacom_report_abs(wcombo, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
44 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[1]));
45 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[3]));
46 wacom_report_abs(wcombo, ABS_PRESSURE, (signed char)data[6] + 127);
47 wacom_report_key(wcombo, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
48 wacom_report_key(wcombo, BTN_STYLUS, (data[5] & 0x40));
49 break;
50 default:
51 printk(KERN_INFO "wacom_penpartner_irq: received unknown report #%d\n", data[0]);
52 return 0;
53 }
54 return 1;
55}
56
57static int wacom_pl_irq(struct wacom_wac *wacom, void *wcombo)
58{
Jason Childse33da8a2010-02-17 22:38:31 -080059 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -070060 unsigned char *data = wacom->data;
Ping Chenge34b9d22008-05-05 11:36:41 -040061 int prox, pressure;
Ping Cheng3bea7332006-07-13 18:01:36 -070062
Ping Chengcad74702009-12-15 00:35:25 -080063 if (data[0] != WACOM_REPORT_PENABLED) {
Ping Cheng3bea7332006-07-13 18:01:36 -070064 dbg("wacom_pl_irq: received unknown report #%d", data[0]);
65 return 0;
66 }
67
68 prox = data[1] & 0x40;
69
Ping Cheng3bea7332006-07-13 18:01:36 -070070 if (prox) {
Ping Chengec67bbe2009-12-15 00:35:24 -080071 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -070072 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
Jason Childse33da8a2010-02-17 22:38:31 -080073 if (features->pressure_max > 255)
Ping Cheng3bea7332006-07-13 18:01:36 -070074 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
Jason Childse33da8a2010-02-17 22:38:31 -080075 pressure += (features->pressure_max + 1) / 2;
Ping Cheng3bea7332006-07-13 18:01:36 -070076
77 /*
78 * if going from out of proximity into proximity select between the eraser
79 * and the pen based on the state of the stylus2 button, choose eraser if
80 * pressed else choose pen. if not a proximity change from out to in, send
81 * an out of proximity for previous tool then a in for new tool.
82 */
83 if (!wacom->tool[0]) {
84 /* Eraser bit set for DTF */
85 if (data[1] & 0x10)
86 wacom->tool[1] = BTN_TOOL_RUBBER;
87 else
88 /* Going into proximity select tool */
89 wacom->tool[1] = (data[4] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
90 } else {
91 /* was entered with stylus2 pressed */
92 if (wacom->tool[1] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
93 /* report out proximity for previous tool */
94 wacom_report_key(wcombo, wacom->tool[1], 0);
95 wacom_input_sync(wcombo);
96 wacom->tool[1] = BTN_TOOL_PEN;
97 return 0;
98 }
99 }
100 if (wacom->tool[1] != BTN_TOOL_RUBBER) {
101 /* Unknown tool selected default to pen tool */
102 wacom->tool[1] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400103 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700104 }
105 wacom_report_key(wcombo, wacom->tool[1], prox); /* report in proximity for tool */
Ping Chenge34b9d22008-05-05 11:36:41 -0400106 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
Ping Cheng3bea7332006-07-13 18:01:36 -0700107 wacom_report_abs(wcombo, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
108 wacom_report_abs(wcombo, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
109 wacom_report_abs(wcombo, ABS_PRESSURE, pressure);
110
111 wacom_report_key(wcombo, BTN_TOUCH, data[4] & 0x08);
112 wacom_report_key(wcombo, BTN_STYLUS, data[4] & 0x10);
113 /* Only allow the stylus2 button to be reported for the pen tool. */
114 wacom_report_key(wcombo, BTN_STYLUS2, (wacom->tool[1] == BTN_TOOL_PEN) && (data[4] & 0x20));
115 } else {
116 /* report proximity-out of a (valid) tool */
117 if (wacom->tool[1] != BTN_TOOL_RUBBER) {
118 /* Unknown tool selected default to pen tool */
119 wacom->tool[1] = BTN_TOOL_PEN;
120 }
121 wacom_report_key(wcombo, wacom->tool[1], prox);
122 }
123
124 wacom->tool[0] = prox; /* Save proximity state */
125 return 1;
126}
127
128static int wacom_ptu_irq(struct wacom_wac *wacom, void *wcombo)
129{
130 unsigned char *data = wacom->data;
Ping Cheng3bea7332006-07-13 18:01:36 -0700131
Ping Chengcad74702009-12-15 00:35:25 -0800132 if (data[0] != WACOM_REPORT_PENABLED) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700133 printk(KERN_INFO "wacom_ptu_irq: received unknown report #%d\n", data[0]);
134 return 0;
135 }
136
Ping Cheng3bea7332006-07-13 18:01:36 -0700137 if (data[1] & 0x04) {
138 wacom_report_key(wcombo, BTN_TOOL_RUBBER, data[1] & 0x20);
139 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x08);
Ping Chenge34b9d22008-05-05 11:36:41 -0400140 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700141 } else {
142 wacom_report_key(wcombo, BTN_TOOL_PEN, data[1] & 0x20);
143 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x01);
Ping Chenge34b9d22008-05-05 11:36:41 -0400144 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700145 }
Ping Chenge34b9d22008-05-05 11:36:41 -0400146 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
Ping Cheng3bea7332006-07-13 18:01:36 -0700147 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[2]));
148 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[4]));
149 wacom_report_abs(wcombo, ABS_PRESSURE, wacom_le16_to_cpu(&data[6]));
150 wacom_report_key(wcombo, BTN_STYLUS, data[1] & 0x02);
151 wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 0x10);
152 return 1;
153}
154
155static int wacom_graphire_irq(struct wacom_wac *wacom, void *wcombo)
156{
Jason Childse33da8a2010-02-17 22:38:31 -0800157 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700158 unsigned char *data = wacom->data;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800159 int x, y, prox;
160 int rw = 0;
161 int retval = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700162
Ping Chengcad74702009-12-15 00:35:25 -0800163 if (data[0] != WACOM_REPORT_PENABLED) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700164 dbg("wacom_graphire_irq: received unknown report #%d", data[0]);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800165 goto exit;
Ping Cheng3bea7332006-07-13 18:01:36 -0700166 }
167
Ping Cheng3b57ca02010-03-04 21:50:59 -0800168 prox = data[1] & 0x80;
169 if (prox || wacom->id[0]) {
170 if (prox) {
171 switch ((data[1] >> 5) & 3) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700172
173 case 0: /* Pen */
174 wacom->tool[0] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400175 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700176 break;
177
178 case 1: /* Rubber */
179 wacom->tool[0] = BTN_TOOL_RUBBER;
Ping Chenge34b9d22008-05-05 11:36:41 -0400180 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700181 break;
182
183 case 2: /* Mouse with wheel */
184 wacom_report_key(wcombo, BTN_MIDDLE, data[1] & 0x04);
Ping Cheng3bea7332006-07-13 18:01:36 -0700185 /* fall through */
186
187 case 3: /* Mouse without wheel */
188 wacom->tool[0] = BTN_TOOL_MOUSE;
Ping Chenge34b9d22008-05-05 11:36:41 -0400189 wacom->id[0] = CURSOR_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700190 break;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800191 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700192 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700193 x = wacom_le16_to_cpu(&data[2]);
194 y = wacom_le16_to_cpu(&data[4]);
195 wacom_report_abs(wcombo, ABS_X, x);
196 wacom_report_abs(wcombo, ABS_Y, y);
197 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
198 wacom_report_abs(wcombo, ABS_PRESSURE, data[6] | ((data[7] & 0x01) << 8));
199 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x01);
200 wacom_report_key(wcombo, BTN_STYLUS, data[1] & 0x02);
201 wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 0x04);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700202 } else {
Ping Cheng3b57ca02010-03-04 21:50:59 -0800203 wacom_report_key(wcombo, BTN_LEFT, data[1] & 0x01);
204 wacom_report_key(wcombo, BTN_RIGHT, data[1] & 0x02);
205 if (features->type == WACOM_G4 ||
206 features->type == WACOM_MO) {
207 wacom_report_abs(wcombo, ABS_DISTANCE, data[6] & 0x3f);
208 rw = (signed)(data[7] & 0x04) - (data[7] & 0x03);
209 } else {
210 wacom_report_abs(wcombo, ABS_DISTANCE, data[7] & 0x3f);
211 rw = -(signed)data[6];
212 }
213 wacom_report_rel(wcombo, REL_WHEEL, rw);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700214 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800215
216 if (!prox)
217 wacom->id[0] = 0;
218 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
219 wacom_report_key(wcombo, wacom->tool[0], prox);
220 wacom_input_sync(wcombo); /* sync last event */
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800221 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700222
223 /* send pad data */
Jason Childse33da8a2010-02-17 22:38:31 -0800224 switch (features->type) {
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400225 case WACOM_G4:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800226 prox = data[7] & 0xf8;
227 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400228 wacom->id[1] = PAD_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700229 wacom_report_key(wcombo, BTN_0, (data[7] & 0x40));
230 wacom_report_key(wcombo, BTN_4, (data[7] & 0x80));
231 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
232 wacom_report_rel(wcombo, REL_WHEEL, rw);
233 wacom_report_key(wcombo, BTN_TOOL_FINGER, 0xf0);
Ping Chenge34b9d22008-05-05 11:36:41 -0400234 wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800235 if (!prox)
236 wacom->id[1] = 0;
237 wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700238 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
239 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800240 retval = 1;
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400241 break;
242 case WACOM_MO:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800243 prox = (data[7] & 0xf8) || data[8];
244 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400245 wacom->id[1] = PAD_DEVICE_ID;
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400246 wacom_report_key(wcombo, BTN_0, (data[7] & 0x08));
247 wacom_report_key(wcombo, BTN_1, (data[7] & 0x20));
248 wacom_report_key(wcombo, BTN_4, (data[7] & 0x10));
249 wacom_report_key(wcombo, BTN_5, (data[7] & 0x40));
250 wacom_report_abs(wcombo, ABS_WHEEL, (data[8] & 0x7f));
251 wacom_report_key(wcombo, BTN_TOOL_FINGER, 0xf0);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800252 if (!prox)
253 wacom->id[1] = 0;
Ping Chenge34b9d22008-05-05 11:36:41 -0400254 wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400255 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400256 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800257 retval = 1;
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400258 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700259 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800260exit:
261 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -0700262}
263
264static int wacom_intuos_inout(struct wacom_wac *wacom, void *wcombo)
265{
Jason Childse33da8a2010-02-17 22:38:31 -0800266 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700267 unsigned char *data = wacom->data;
Ping Cheng6f660f12009-05-08 18:30:33 -0700268 int idx = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700269
270 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800271 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700272 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700273
274 /* Enter report */
275 if ((data[1] & 0xfc) == 0xc0) {
276 /* serial number of the tool */
277 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
278 (data[4] << 20) + (data[5] << 12) +
279 (data[6] << 4) + (data[7] >> 4);
280
281 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4);
282 switch (wacom->id[idx]) {
283 case 0x812: /* Inking pen */
284 case 0x801: /* Intuos3 Inking pen */
Ping Cheng6f660f12009-05-08 18:30:33 -0700285 case 0x20802: /* Intuos4 Classic Pen */
Ping Cheng3bea7332006-07-13 18:01:36 -0700286 case 0x012:
287 wacom->tool[idx] = BTN_TOOL_PENCIL;
288 break;
289 case 0x822: /* Pen */
290 case 0x842:
291 case 0x852:
292 case 0x823: /* Intuos3 Grip Pen */
293 case 0x813: /* Intuos3 Classic Pen */
294 case 0x885: /* Intuos3 Marker Pen */
Ping Cheng6f660f12009-05-08 18:30:33 -0700295 case 0x802: /* Intuos4 Grip Pen Eraser */
296 case 0x804: /* Intuos4 Marker Pen */
297 case 0x40802: /* Intuos4 Classic Pen */
Ping Cheng3bea7332006-07-13 18:01:36 -0700298 case 0x022:
299 wacom->tool[idx] = BTN_TOOL_PEN;
300 break;
301 case 0x832: /* Stroke pen */
302 case 0x032:
303 wacom->tool[idx] = BTN_TOOL_BRUSH;
304 break;
305 case 0x007: /* Mouse 4D and 2D */
306 case 0x09c:
307 case 0x094:
308 case 0x017: /* Intuos3 2D Mouse */
Ping Cheng6f660f12009-05-08 18:30:33 -0700309 case 0x806: /* Intuos4 Mouse */
Ping Cheng3bea7332006-07-13 18:01:36 -0700310 wacom->tool[idx] = BTN_TOOL_MOUSE;
311 break;
312 case 0x096: /* Lens cursor */
313 case 0x097: /* Intuos3 Lens cursor */
Ping Cheng6f660f12009-05-08 18:30:33 -0700314 case 0x006: /* Intuos4 Lens cursor */
Ping Cheng3bea7332006-07-13 18:01:36 -0700315 wacom->tool[idx] = BTN_TOOL_LENS;
316 break;
317 case 0x82a: /* Eraser */
318 case 0x85a:
319 case 0x91a:
320 case 0xd1a:
321 case 0x0fa:
322 case 0x82b: /* Intuos3 Grip Pen Eraser */
323 case 0x81b: /* Intuos3 Classic Pen Eraser */
324 case 0x91b: /* Intuos3 Airbrush Eraser */
Ping Cheng6f660f12009-05-08 18:30:33 -0700325 case 0x80c: /* Intuos4 Marker Pen Eraser */
326 case 0x80a: /* Intuos4 Grip Pen Eraser */
327 case 0x4080a: /* Intuos4 Classic Pen Eraser */
328 case 0x90a: /* Intuos4 Airbrush Eraser */
Ping Cheng3bea7332006-07-13 18:01:36 -0700329 wacom->tool[idx] = BTN_TOOL_RUBBER;
330 break;
331 case 0xd12:
332 case 0x912:
333 case 0x112:
334 case 0x913: /* Intuos3 Airbrush */
Ping Cheng6f660f12009-05-08 18:30:33 -0700335 case 0x902: /* Intuos4 Airbrush */
Ping Cheng3bea7332006-07-13 18:01:36 -0700336 wacom->tool[idx] = BTN_TOOL_AIRBRUSH;
337 break;
338 default: /* Unknown tool */
339 wacom->tool[idx] = BTN_TOOL_PEN;
340 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700341 return 1;
342 }
343
344 /* Exit report */
345 if ((data[1] & 0xfe) == 0x80) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700346 /*
347 * Reset all states otherwise we lose the initial states
348 * when in-prox next time
349 */
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800350 wacom_report_abs(wcombo, ABS_X, 0);
351 wacom_report_abs(wcombo, ABS_Y, 0);
352 wacom_report_abs(wcombo, ABS_DISTANCE, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700353 wacom_report_abs(wcombo, ABS_TILT_X, 0);
354 wacom_report_abs(wcombo, ABS_TILT_Y, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800355 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
356 wacom_report_key(wcombo, BTN_LEFT, 0);
357 wacom_report_key(wcombo, BTN_MIDDLE, 0);
358 wacom_report_key(wcombo, BTN_RIGHT, 0);
359 wacom_report_key(wcombo, BTN_SIDE, 0);
360 wacom_report_key(wcombo, BTN_EXTRA, 0);
361 wacom_report_abs(wcombo, ABS_THROTTLE, 0);
362 wacom_report_abs(wcombo, ABS_RZ, 0);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400363 } else {
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800364 wacom_report_abs(wcombo, ABS_PRESSURE, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800365 wacom_report_key(wcombo, BTN_STYLUS, 0);
366 wacom_report_key(wcombo, BTN_STYLUS2, 0);
367 wacom_report_key(wcombo, BTN_TOUCH, 0);
368 wacom_report_abs(wcombo, ABS_WHEEL, 0);
Jason Childse33da8a2010-02-17 22:38:31 -0800369 if (features->type >= INTUOS3S)
Ping Chengc413ec42009-06-28 22:50:58 -0700370 wacom_report_abs(wcombo, ABS_Z, 0);
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700371 }
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800372 wacom_report_key(wcombo, wacom->tool[idx], 0);
373 wacom_report_abs(wcombo, ABS_MISC, 0); /* reset tool id */
374 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Cheng6f660f12009-05-08 18:30:33 -0700375 wacom->id[idx] = 0;
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800376 return 2;
Ping Cheng3bea7332006-07-13 18:01:36 -0700377 }
378 return 0;
379}
380
381static void wacom_intuos_general(struct wacom_wac *wacom, void *wcombo)
382{
Jason Childse33da8a2010-02-17 22:38:31 -0800383 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700384 unsigned char *data = wacom->data;
385 unsigned int t;
386
387 /* general pen packet */
388 if ((data[1] & 0xb8) == 0xa0) {
389 t = (data[6] << 2) | ((data[7] >> 6) & 3);
Jason Childse33da8a2010-02-17 22:38:31 -0800390 if (features->type >= INTUOS4S && features->type <= INTUOS4L)
Ping Cheng6f660f12009-05-08 18:30:33 -0700391 t = (t << 1) | (data[1] & 1);
Ping Cheng3bea7332006-07-13 18:01:36 -0700392 wacom_report_abs(wcombo, ABS_PRESSURE, t);
393 wacom_report_abs(wcombo, ABS_TILT_X,
394 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
395 wacom_report_abs(wcombo, ABS_TILT_Y, data[8] & 0x7f);
396 wacom_report_key(wcombo, BTN_STYLUS, data[1] & 2);
397 wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 4);
398 wacom_report_key(wcombo, BTN_TOUCH, t > 10);
399 }
400
401 /* airbrush second packet */
402 if ((data[1] & 0xbc) == 0xb4) {
403 wacom_report_abs(wcombo, ABS_WHEEL,
404 (data[6] << 2) | ((data[7] >> 6) & 3));
405 wacom_report_abs(wcombo, ABS_TILT_X,
406 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
407 wacom_report_abs(wcombo, ABS_TILT_Y, data[8] & 0x7f);
408 }
409 return;
410}
411
412static int wacom_intuos_irq(struct wacom_wac *wacom, void *wcombo)
413{
Jason Childse33da8a2010-02-17 22:38:31 -0800414 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700415 unsigned char *data = wacom->data;
416 unsigned int t;
Ping Cheng6f660f12009-05-08 18:30:33 -0700417 int idx = 0, result;
Ping Cheng3bea7332006-07-13 18:01:36 -0700418
Ping Chengcad74702009-12-15 00:35:25 -0800419 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD
420 && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700421 dbg("wacom_intuos_irq: received unknown report #%d", data[0]);
422 return 0;
423 }
424
Ping Cheng3bea7332006-07-13 18:01:36 -0700425 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800426 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700427 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700428
429 /* pad packets. Works as a second tool and is always in prox */
Ping Chengcad74702009-12-15 00:35:25 -0800430 if (data[0] == WACOM_REPORT_INTUOSPAD) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700431 /* initiate the pad as a device */
432 if (wacom->tool[1] != BTN_TOOL_FINGER)
433 wacom->tool[1] = BTN_TOOL_FINGER;
434
Jason Childse33da8a2010-02-17 22:38:31 -0800435 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700436 wacom_report_key(wcombo, BTN_0, (data[2] & 0x01));
437 wacom_report_key(wcombo, BTN_1, (data[3] & 0x01));
438 wacom_report_key(wcombo, BTN_2, (data[3] & 0x02));
439 wacom_report_key(wcombo, BTN_3, (data[3] & 0x04));
440 wacom_report_key(wcombo, BTN_4, (data[3] & 0x08));
441 wacom_report_key(wcombo, BTN_5, (data[3] & 0x10));
442 wacom_report_key(wcombo, BTN_6, (data[3] & 0x20));
443 if (data[1] & 0x80) {
444 wacom_report_abs(wcombo, ABS_WHEEL, (data[1] & 0x7f));
Ping Chenga8629522009-06-02 16:59:58 -0700445 } else {
446 /* Out of proximity, clear wheel value. */
447 wacom_report_abs(wcombo, ABS_WHEEL, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700448 }
Jason Childse33da8a2010-02-17 22:38:31 -0800449 if (features->type != INTUOS4S) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700450 wacom_report_key(wcombo, BTN_7, (data[3] & 0x40));
451 wacom_report_key(wcombo, BTN_8, (data[3] & 0x80));
452 }
453 if (data[1] | (data[2] & 0x01) | data[3]) {
454 wacom_report_key(wcombo, wacom->tool[1], 1);
455 wacom_report_abs(wcombo, ABS_MISC, PAD_DEVICE_ID);
456 } else {
457 wacom_report_key(wcombo, wacom->tool[1], 0);
458 wacom_report_abs(wcombo, ABS_MISC, 0);
459 }
460 } else {
461 wacom_report_key(wcombo, BTN_0, (data[5] & 0x01));
462 wacom_report_key(wcombo, BTN_1, (data[5] & 0x02));
463 wacom_report_key(wcombo, BTN_2, (data[5] & 0x04));
464 wacom_report_key(wcombo, BTN_3, (data[5] & 0x08));
465 wacom_report_key(wcombo, BTN_4, (data[6] & 0x01));
466 wacom_report_key(wcombo, BTN_5, (data[6] & 0x02));
467 wacom_report_key(wcombo, BTN_6, (data[6] & 0x04));
468 wacom_report_key(wcombo, BTN_7, (data[6] & 0x08));
469 wacom_report_key(wcombo, BTN_8, (data[5] & 0x10));
470 wacom_report_key(wcombo, BTN_9, (data[6] & 0x10));
471 wacom_report_abs(wcombo, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]);
472 wacom_report_abs(wcombo, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700473
Ping Cheng6f660f12009-05-08 18:30:33 -0700474 if ((data[5] & 0x1f) | (data[6] & 0x1f) | (data[1] & 0x1f) |
475 data[2] | (data[3] & 0x1f) | data[4]) {
476 wacom_report_key(wcombo, wacom->tool[1], 1);
477 wacom_report_abs(wcombo, ABS_MISC, PAD_DEVICE_ID);
478 } else {
479 wacom_report_key(wcombo, wacom->tool[1], 0);
480 wacom_report_abs(wcombo, ABS_MISC, 0);
481 }
482 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700483 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xffffffff);
484 return 1;
485 }
486
487 /* process in/out prox events */
488 result = wacom_intuos_inout(wacom, wcombo);
489 if (result)
490 return result-1;
491
Ping Cheng6f660f12009-05-08 18:30:33 -0700492 /* don't proceed if we don't know the ID */
493 if (!wacom->id[idx])
494 return 0;
495
496 /* Only large Intuos support Lense Cursor */
Jason Childse33da8a2010-02-17 22:38:31 -0800497 if (wacom->tool[idx] == BTN_TOOL_LENS &&
498 (features->type == INTUOS3 ||
499 features->type == INTUOS3S ||
500 features->type == INTUOS4 ||
501 features->type == INTUOS4S)) {
502
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800503 return 0;
Jason Childse33da8a2010-02-17 22:38:31 -0800504 }
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800505
Ping Cheng3bea7332006-07-13 18:01:36 -0700506 /* Cintiq doesn't send data when RDY bit isn't set */
Jason Childse33da8a2010-02-17 22:38:31 -0800507 if (features->type == CINTIQ && !(data[1] & 0x40))
Ping Cheng3bea7332006-07-13 18:01:36 -0700508 return 0;
509
Jason Childse33da8a2010-02-17 22:38:31 -0800510 if (features->type >= INTUOS3S) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700511 wacom_report_abs(wcombo, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1));
512 wacom_report_abs(wcombo, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1));
513 wacom_report_abs(wcombo, ABS_DISTANCE, ((data[9] >> 2) & 0x3f));
514 } else {
515 wacom_report_abs(wcombo, ABS_X, wacom_be16_to_cpu(&data[2]));
516 wacom_report_abs(wcombo, ABS_Y, wacom_be16_to_cpu(&data[4]));
517 wacom_report_abs(wcombo, ABS_DISTANCE, ((data[9] >> 3) & 0x1f));
518 }
519
520 /* process general packets */
521 wacom_intuos_general(wacom, wcombo);
522
Ping Cheng6f660f12009-05-08 18:30:33 -0700523 /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */
524 if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0 || (data[1] & 0xbc) == 0xac) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700525
526 if (data[1] & 0x02) {
527 /* Rotation packet */
Jason Childse33da8a2010-02-17 22:38:31 -0800528 if (features->type >= INTUOS3S) {
Ping Cheng0e1763f2008-03-13 16:46:46 -0400529 /* I3 marker pen rotation */
Ping Cheng3bea7332006-07-13 18:01:36 -0700530 t = (data[6] << 3) | ((data[7] >> 5) & 7);
531 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
532 ((t-1) / 2 + 450)) : (450 - t / 2) ;
Ping Cheng0e1763f2008-03-13 16:46:46 -0400533 wacom_report_abs(wcombo, ABS_Z, t);
Ping Cheng3bea7332006-07-13 18:01:36 -0700534 } else {
535 /* 4D mouse rotation packet */
536 t = (data[6] << 3) | ((data[7] >> 5) & 7);
537 wacom_report_abs(wcombo, ABS_RZ, (data[7] & 0x20) ?
538 ((t - 1) / 2) : -t / 2);
539 }
540
Jason Childse33da8a2010-02-17 22:38:31 -0800541 } else if (!(data[1] & 0x10) && features->type < INTUOS3S) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700542 /* 4D mouse packet */
543 wacom_report_key(wcombo, BTN_LEFT, data[8] & 0x01);
544 wacom_report_key(wcombo, BTN_MIDDLE, data[8] & 0x02);
545 wacom_report_key(wcombo, BTN_RIGHT, data[8] & 0x04);
546
547 wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x20);
548 wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x10);
549 t = (data[6] << 2) | ((data[7] >> 6) & 3);
550 wacom_report_abs(wcombo, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
551
552 } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700553 /* I4 mouse */
Jason Childse33da8a2010-02-17 22:38:31 -0800554 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700555 wacom_report_key(wcombo, BTN_LEFT, data[6] & 0x01);
556 wacom_report_key(wcombo, BTN_MIDDLE, data[6] & 0x02);
557 wacom_report_key(wcombo, BTN_RIGHT, data[6] & 0x04);
558 wacom_report_rel(wcombo, REL_WHEEL, ((data[7] & 0x80) >> 7)
559 - ((data[7] & 0x40) >> 6));
560 wacom_report_key(wcombo, BTN_SIDE, data[6] & 0x08);
561 wacom_report_key(wcombo, BTN_EXTRA, data[6] & 0x10);
562
563 wacom_report_abs(wcombo, ABS_TILT_X,
564 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
565 wacom_report_abs(wcombo, ABS_TILT_Y, data[8] & 0x7f);
566 } else {
567 /* 2D mouse packet */
568 wacom_report_key(wcombo, BTN_LEFT, data[8] & 0x04);
569 wacom_report_key(wcombo, BTN_MIDDLE, data[8] & 0x08);
570 wacom_report_key(wcombo, BTN_RIGHT, data[8] & 0x10);
571 wacom_report_rel(wcombo, REL_WHEEL, (data[8] & 0x01)
Ping Cheng3bea7332006-07-13 18:01:36 -0700572 - ((data[8] & 0x02) >> 1));
573
Ping Cheng6f660f12009-05-08 18:30:33 -0700574 /* I3 2D mouse side buttons */
Jason Childse33da8a2010-02-17 22:38:31 -0800575 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700576 wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x40);
577 wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x20);
578 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700579 }
Jason Childse33da8a2010-02-17 22:38:31 -0800580 } else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
581 features->type == INTUOS4L) &&
Ping Cheng6f660f12009-05-08 18:30:33 -0700582 wacom->tool[idx] == BTN_TOOL_LENS) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700583 /* Lens cursor packets */
584 wacom_report_key(wcombo, BTN_LEFT, data[8] & 0x01);
585 wacom_report_key(wcombo, BTN_MIDDLE, data[8] & 0x02);
586 wacom_report_key(wcombo, BTN_RIGHT, data[8] & 0x04);
587 wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x10);
588 wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x08);
589 }
590 }
591
592 wacom_report_abs(wcombo, ABS_MISC, wacom->id[idx]); /* report tool id */
593 wacom_report_key(wcombo, wacom->tool[idx], 1);
594 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
595 return 1;
596}
597
Ping Chengec67bbe2009-12-15 00:35:24 -0800598
599static void wacom_tpc_finger_in(struct wacom_wac *wacom, void *wcombo, char *data, int idx)
600{
601 wacom_report_abs(wcombo, ABS_X,
Ping Cheng3b57ca02010-03-04 21:50:59 -0800602 data[2 + idx * 2] | ((data[3 + idx * 2] & 0x7f) << 8));
Ping Chengec67bbe2009-12-15 00:35:24 -0800603 wacom_report_abs(wcombo, ABS_Y,
Ping Cheng3b57ca02010-03-04 21:50:59 -0800604 data[6 + idx * 2] | ((data[7 + idx * 2] & 0x7f) << 8));
Ping Chengec67bbe2009-12-15 00:35:24 -0800605 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]);
606 wacom_report_key(wcombo, wacom->tool[idx], 1);
607 if (idx)
608 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
609 else
610 wacom_report_key(wcombo, BTN_TOUCH, 1);
611}
612
613static void wacom_tpc_touch_out(struct wacom_wac *wacom, void *wcombo, int idx)
614{
615 wacom_report_abs(wcombo, ABS_X, 0);
616 wacom_report_abs(wcombo, ABS_Y, 0);
617 wacom_report_abs(wcombo, ABS_MISC, 0);
618 wacom_report_key(wcombo, wacom->tool[idx], 0);
619 if (idx)
620 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
621 else
622 wacom_report_key(wcombo, BTN_TOUCH, 0);
623 return;
624}
625
626static void wacom_tpc_touch_in(struct wacom_wac *wacom, void *wcombo)
627{
628 char *data = wacom->data;
629 struct urb *urb = ((struct wacom_combo *)wcombo)->urb;
630 static int firstFinger = 0;
631 static int secondFinger = 0;
632
633 wacom->tool[0] = BTN_TOOL_DOUBLETAP;
634 wacom->id[0] = TOUCH_DEVICE_ID;
635 wacom->tool[1] = BTN_TOOL_TRIPLETAP;
636
637 if (urb->actual_length != WACOM_PKGLEN_TPC1FG) {
638 switch (data[0]) {
Ping Chengcad74702009-12-15 00:35:25 -0800639 case WACOM_REPORT_TPC1FG:
Ping Chengec67bbe2009-12-15 00:35:24 -0800640 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[2]));
641 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[4]));
642 wacom_report_abs(wcombo, ABS_PRESSURE, wacom_le16_to_cpu(&data[6]));
643 wacom_report_key(wcombo, BTN_TOUCH, wacom_le16_to_cpu(&data[6]));
644 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]);
645 wacom_report_key(wcombo, wacom->tool[0], 1);
646 break;
Ping Chengcad74702009-12-15 00:35:25 -0800647 case WACOM_REPORT_TPC2FG:
Ping Chengec67bbe2009-12-15 00:35:24 -0800648 /* keep this byte to send proper out-prox event */
649 wacom->id[1] = data[1] & 0x03;
650
651 if (data[1] & 0x01) {
652 wacom_tpc_finger_in(wacom, wcombo, data, 0);
653 firstFinger = 1;
654 } else if (firstFinger) {
655 wacom_tpc_touch_out(wacom, wcombo, 0);
656 }
657
658 if (data[1] & 0x02) {
659 /* sync first finger data */
660 if (firstFinger)
661 wacom_input_sync(wcombo);
662
663 wacom_tpc_finger_in(wacom, wcombo, data, 1);
664 secondFinger = 1;
665 } else if (secondFinger) {
666 /* sync first finger data */
667 if (firstFinger)
668 wacom_input_sync(wcombo);
669
670 wacom_tpc_touch_out(wacom, wcombo, 1);
671 secondFinger = 0;
672 }
673 if (!(data[1] & 0x01))
674 firstFinger = 0;
675 break;
676 }
677 } else {
678 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[1]));
679 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[3]));
680 wacom_report_key(wcombo, BTN_TOUCH, 1);
681 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]);
682 wacom_report_key(wcombo, wacom->tool[0], 1);
683 }
684 return;
685}
686
Roel Kluin0de048a2008-12-20 05:19:43 -0500687static int wacom_tpc_irq(struct wacom_wac *wacom, void *wcombo)
Ping Cheng545f4e92008-11-24 11:44:27 -0500688{
Jason Childse33da8a2010-02-17 22:38:31 -0800689 struct wacom_features *features = &wacom->features;
Ping Cheng545f4e92008-11-24 11:44:27 -0500690 char *data = wacom->data;
Ping Chengec67bbe2009-12-15 00:35:24 -0800691 int prox = 0, pressure, idx = -1;
Ping Cheng545f4e92008-11-24 11:44:27 -0500692 struct urb *urb = ((struct wacom_combo *)wcombo)->urb;
693
694 dbg("wacom_tpc_irq: received report #%d", data[0]);
695
Ping Chengcad74702009-12-15 00:35:25 -0800696 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 */
Ping Chengee545002009-12-15 00:35:24 -0800699 if (urb->actual_length == WACOM_PKGLEN_TPC1FG) { /* with touch */
Ping Chengec67bbe2009-12-15 00:35:24 -0800700 prox = data[0] & 0x01;
Ping Cheng545f4e92008-11-24 11:44:27 -0500701 } else { /* with capacity */
Ping Chengcad74702009-12-15 00:35:25 -0800702 if (data[0] == WACOM_REPORT_TPC1FG)
Ping Chengec67bbe2009-12-15 00:35:24 -0800703 /* single touch */
704 prox = data[1] & 0x01;
705 else
706 /* 2FG touch data */
707 prox = data[1] & 0x03;
Ping Cheng545f4e92008-11-24 11:44:27 -0500708 }
709
Ping Cheng4492eff2010-03-19 22:18:15 -0700710 if (!wacom->shared->stylus_in_proximity) {
Ping Cheng545f4e92008-11-24 11:44:27 -0500711 if (prox) {
Ping Cheng4492eff2010-03-19 22:18:15 -0700712 wacom_tpc_touch_in(wacom, wcombo);
Ping Cheng545f4e92008-11-24 11:44:27 -0500713 } else {
Ping Chengcad74702009-12-15 00:35:25 -0800714 if (data[0] == WACOM_REPORT_TPC2FG) {
Ping Cheng4492eff2010-03-19 22:18:15 -0700715 /* 2FGT out-prox */
Ping Chengec67bbe2009-12-15 00:35:24 -0800716 idx = (wacom->id[1] & 0x01) - 1;
717 if (idx == 0) {
718 wacom_tpc_touch_out(wacom, wcombo, idx);
719 /* sync first finger event */
720 if (wacom->id[1] & 0x02)
721 wacom_input_sync(wcombo);
722 }
723 idx = (wacom->id[1] & 0x02) - 1;
724 if (idx == 1)
725 wacom_tpc_touch_out(wacom, wcombo, idx);
Ping Cheng4492eff2010-03-19 22:18:15 -0700726 } else {
727 /* one finger touch */
Ping Chengec67bbe2009-12-15 00:35:24 -0800728 wacom_tpc_touch_out(wacom, wcombo, 0);
Ping Cheng4492eff2010-03-19 22:18:15 -0700729 }
730 wacom->id[0] = 0;
Ping Cheng545f4e92008-11-24 11:44:27 -0500731 }
Ping Cheng4492eff2010-03-19 22:18:15 -0700732 } else if (wacom->id[0]) { /* force touch out-prox */
Ping Chengec67bbe2009-12-15 00:35:24 -0800733 wacom_tpc_touch_out(wacom, wcombo, 0);
Ping Cheng545f4e92008-11-24 11:44:27 -0500734 }
Ping Cheng4492eff2010-03-19 22:18:15 -0700735 return 1;
Ping Chengcad74702009-12-15 00:35:25 -0800736 } else if (data[0] == WACOM_REPORT_PENABLED) { /* Penabled */
Ping Cheng545f4e92008-11-24 11:44:27 -0500737 prox = data[1] & 0x20;
738
Ping Cheng3b57ca02010-03-04 21:50:59 -0800739 if (!wacom->id[0]) { /* first in prox */
740 /* Going into proximity select tool */
741 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
742 if (wacom->tool[0] == BTN_TOOL_PEN)
743 wacom->id[0] = STYLUS_DEVICE_ID;
744 else
745 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng4492eff2010-03-19 22:18:15 -0700746
747 wacom->shared->stylus_in_proximity = true;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800748 }
749 wacom_report_key(wcombo, BTN_STYLUS, data[1] & 0x02);
750 wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 0x10);
751 wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[2]));
752 wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[4]));
753 pressure = ((data[7] & 0x01) << 8) | data[6];
754 if (pressure < 0)
755 pressure = features->pressure_max + pressure + 1;
756 wacom_report_abs(wcombo, ABS_PRESSURE, pressure);
757 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x05);
758 if (!prox) { /* out-prox */
Ping Chengec67bbe2009-12-15 00:35:24 -0800759 wacom->id[0] = 0;
Ping Cheng4492eff2010-03-19 22:18:15 -0700760 wacom->shared->stylus_in_proximity = false;
Ping Cheng545f4e92008-11-24 11:44:27 -0500761 }
Ping Chengec67bbe2009-12-15 00:35:24 -0800762 wacom_report_key(wcombo, wacom->tool[0], prox);
Ping Cheng545f4e92008-11-24 11:44:27 -0500763 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]);
Ping Cheng545f4e92008-11-24 11:44:27 -0500764 return 1;
765 }
766 return 0;
767}
768
Ping Cheng3bea7332006-07-13 18:01:36 -0700769int wacom_wac_irq(struct wacom_wac *wacom_wac, void *wcombo)
770{
Jason Childse33da8a2010-02-17 22:38:31 -0800771 switch (wacom_wac->features.type) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700772 case PENPARTNER:
Ping Cheng545f4e92008-11-24 11:44:27 -0500773 return wacom_penpartner_irq(wacom_wac, wcombo);
774
Ping Cheng3bea7332006-07-13 18:01:36 -0700775 case PL:
Ping Cheng545f4e92008-11-24 11:44:27 -0500776 return wacom_pl_irq(wacom_wac, wcombo);
777
Ping Cheng3bea7332006-07-13 18:01:36 -0700778 case WACOM_G4:
779 case GRAPHIRE:
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400780 case WACOM_MO:
Ping Cheng545f4e92008-11-24 11:44:27 -0500781 return wacom_graphire_irq(wacom_wac, wcombo);
782
Ping Cheng3bea7332006-07-13 18:01:36 -0700783 case PTU:
Ping Cheng545f4e92008-11-24 11:44:27 -0500784 return wacom_ptu_irq(wacom_wac, wcombo);
785
Ping Cheng3bea7332006-07-13 18:01:36 -0700786 case INTUOS:
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700787 case INTUOS3S:
Ping Cheng3bea7332006-07-13 18:01:36 -0700788 case INTUOS3:
789 case INTUOS3L:
Ping Cheng6f660f12009-05-08 18:30:33 -0700790 case INTUOS4S:
791 case INTUOS4:
792 case INTUOS4L:
Ping Cheng3bea7332006-07-13 18:01:36 -0700793 case CINTIQ:
Ping Cheng0e1763f2008-03-13 16:46:46 -0400794 case WACOM_BEE:
Ping Cheng545f4e92008-11-24 11:44:27 -0500795 return wacom_intuos_irq(wacom_wac, wcombo);
796
797 case TABLETPC:
Ping Chengec67bbe2009-12-15 00:35:24 -0800798 case TABLETPC2FG:
Ping Cheng545f4e92008-11-24 11:44:27 -0500799 return wacom_tpc_irq(wacom_wac, wcombo);
800
Ping Cheng3bea7332006-07-13 18:01:36 -0700801 default:
802 return 0;
803 }
804 return 0;
805}
806
807void wacom_init_input_dev(struct input_dev *input_dev, struct wacom_wac *wacom_wac)
808{
Jason Childse33da8a2010-02-17 22:38:31 -0800809 switch (wacom_wac->features.type) {
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400810 case WACOM_MO:
811 input_dev_mo(input_dev, wacom_wac);
Ping Cheng3bea7332006-07-13 18:01:36 -0700812 case WACOM_G4:
813 input_dev_g4(input_dev, wacom_wac);
814 /* fall through */
815 case GRAPHIRE:
816 input_dev_g(input_dev, wacom_wac);
817 break;
Ping Cheng0e1763f2008-03-13 16:46:46 -0400818 case WACOM_BEE:
819 input_dev_bee(input_dev, wacom_wac);
Ping Cheng3bea7332006-07-13 18:01:36 -0700820 case INTUOS3:
821 case INTUOS3L:
822 case CINTIQ:
823 input_dev_i3(input_dev, wacom_wac);
824 /* fall through */
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700825 case INTUOS3S:
826 input_dev_i3s(input_dev, wacom_wac);
Ping Cheng545f4e92008-11-24 11:44:27 -0500827 /* fall through */
Ping Cheng3bea7332006-07-13 18:01:36 -0700828 case INTUOS:
829 input_dev_i(input_dev, wacom_wac);
830 break;
Ping Cheng6f660f12009-05-08 18:30:33 -0700831 case INTUOS4:
832 case INTUOS4L:
833 input_dev_i4(input_dev, wacom_wac);
834 /* fall through */
835 case INTUOS4S:
836 input_dev_i4s(input_dev, wacom_wac);
837 input_dev_i(input_dev, wacom_wac);
838 break;
Ping Chengec67bbe2009-12-15 00:35:24 -0800839 case TABLETPC2FG:
840 input_dev_tpc2fg(input_dev, wacom_wac);
841 /* fall through */
842 case TABLETPC:
843 input_dev_tpc(input_dev, wacom_wac);
Jason Childse33da8a2010-02-17 22:38:31 -0800844 if (wacom_wac->features.device_type != BTN_TOOL_PEN)
Ping Chengec67bbe2009-12-15 00:35:24 -0800845 break; /* no need to process stylus stuff */
846
847 /* fall through */
Ping Cheng3bea7332006-07-13 18:01:36 -0700848 case PL:
849 case PTU:
850 input_dev_pl(input_dev, wacom_wac);
Ping Cheng545f4e92008-11-24 11:44:27 -0500851 /* fall through */
Ping Cheng3bea7332006-07-13 18:01:36 -0700852 case PENPARTNER:
853 input_dev_pt(input_dev, wacom_wac);
854 break;
855 }
856 return;
857}
858
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800859static const struct wacom_features wacom_features_0x00 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800860 { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255, 0, PENPARTNER };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800861static const struct wacom_features wacom_features_0x10 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800862 { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800863static const struct wacom_features wacom_features_0x11 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800864 { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800865static const struct wacom_features wacom_features_0x12 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800866 { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800867static const struct wacom_features wacom_features_0x13 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800868 { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800869static const struct wacom_features wacom_features_0x14 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800870 { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800871static const struct wacom_features wacom_features_0x15 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800872 { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, 63, WACOM_G4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800873static const struct wacom_features wacom_features_0x16 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800874 { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, WACOM_G4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800875static const struct wacom_features wacom_features_0x17 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800876 { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, 63, WACOM_MO };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800877static const struct wacom_features wacom_features_0x18 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800878 { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511, 63, WACOM_MO };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800879static const struct wacom_features wacom_features_0x19 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800880 { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800881static const struct wacom_features wacom_features_0x60 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800882 { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800883static const struct wacom_features wacom_features_0x61 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800884 { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800885static const struct wacom_features wacom_features_0x62 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800886 { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800887static const struct wacom_features wacom_features_0x63 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800888 { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800889static const struct wacom_features wacom_features_0x64 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800890 { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800891static const struct wacom_features wacom_features_0x65 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800892 { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, 63, WACOM_MO };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800893static const struct wacom_features wacom_features_0x69 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800894 { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800895static const struct wacom_features wacom_features_0x20 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800896 { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800897static const struct wacom_features wacom_features_0x21 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800898 { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800899static const struct wacom_features wacom_features_0x22 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800900 { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800901static const struct wacom_features wacom_features_0x23 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800902 { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800903static const struct wacom_features wacom_features_0x24 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800904 { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800905static const struct wacom_features wacom_features_0x30 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800906 { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800907static const struct wacom_features wacom_features_0x31 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800908 { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800909static const struct wacom_features wacom_features_0x32 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800910 { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800911static const struct wacom_features wacom_features_0x33 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800912 { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800913static const struct wacom_features wacom_features_0x34 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800914 { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800915static const struct wacom_features wacom_features_0x35 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800916 { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800917static const struct wacom_features wacom_features_0x37 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800918 { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800919static const struct wacom_features wacom_features_0x38 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800920 { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800921static const struct wacom_features wacom_features_0x39 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800922 { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800923static const struct wacom_features wacom_features_0xC4 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800924 { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800925static const struct wacom_features wacom_features_0xC0 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800926 { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800927static const struct wacom_features wacom_features_0xC2 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800928 { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800929static const struct wacom_features wacom_features_0x03 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800930 { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511, 0, PTU };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800931static const struct wacom_features wacom_features_0x41 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800932 { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800933static const struct wacom_features wacom_features_0x42 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800934 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800935static const struct wacom_features wacom_features_0x43 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800936 { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800937static const struct wacom_features wacom_features_0x44 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800938 { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800939static const struct wacom_features wacom_features_0x45 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800940 { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800941static const struct wacom_features wacom_features_0xB0 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800942 { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023, 63, INTUOS3S };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800943static const struct wacom_features wacom_features_0xB1 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800944 { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023, 63, INTUOS3 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800945static const struct wacom_features wacom_features_0xB2 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800946 { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023, 63, INTUOS3 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800947static const struct wacom_features wacom_features_0xB3 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800948 { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023, 63, INTUOS3L };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800949static const struct wacom_features wacom_features_0xB4 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800950 { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023, 63, INTUOS3L };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800951static const struct wacom_features wacom_features_0xB5 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800952 { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023, 63, INTUOS3 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800953static const struct wacom_features wacom_features_0xB7 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800954 { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023, 63, INTUOS3S };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800955static const struct wacom_features wacom_features_0xB8 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800956 { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047, 63, INTUOS4S };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800957static const struct wacom_features wacom_features_0xB9 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800958 { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047, 63, INTUOS4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800959static const struct wacom_features wacom_features_0xBA =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800960 { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047, 63, INTUOS4L };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800961static const struct wacom_features wacom_features_0xBB =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800962 { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047, 63, INTUOS4L };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800963static const struct wacom_features wacom_features_0x3F =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800964 { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023, 63, CINTIQ };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800965static const struct wacom_features wacom_features_0xC5 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800966 { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023, 63, WACOM_BEE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800967static const struct wacom_features wacom_features_0xC6 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800968 { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023, 63, WACOM_BEE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800969static const struct wacom_features wacom_features_0xC7 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800970 { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800971static const struct wacom_features wacom_features_0x90 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800972 { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800973static const struct wacom_features wacom_features_0x93 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800974 { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800975static const struct wacom_features wacom_features_0x9A =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800976 { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800977static const struct wacom_features wacom_features_0x9F =
Ping Cheng57e413d2010-03-01 23:50:24 -0800978 { "Wacom ISDv4 9F", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800979static const struct wacom_features wacom_features_0xE2 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800980 { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, 0, TABLETPC2FG };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800981static const struct wacom_features wacom_features_0xE3 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800982 { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, 0, TABLETPC2FG };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800983static const struct wacom_features wacom_features_0x47 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800984 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS };
985
986#define USB_DEVICE_WACOM(prod) \
987 USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \
988 .driver_info = (kernel_ulong_t)&wacom_features_##prod
989
990const struct usb_device_id wacom_ids[] = {
991 { USB_DEVICE_WACOM(0x00) },
992 { USB_DEVICE_WACOM(0x10) },
993 { USB_DEVICE_WACOM(0x11) },
994 { USB_DEVICE_WACOM(0x12) },
995 { USB_DEVICE_WACOM(0x13) },
996 { USB_DEVICE_WACOM(0x14) },
997 { USB_DEVICE_WACOM(0x15) },
998 { USB_DEVICE_WACOM(0x16) },
999 { USB_DEVICE_WACOM(0x17) },
1000 { USB_DEVICE_WACOM(0x18) },
1001 { USB_DEVICE_WACOM(0x19) },
1002 { USB_DEVICE_WACOM(0x60) },
1003 { USB_DEVICE_WACOM(0x61) },
1004 { USB_DEVICE_WACOM(0x62) },
1005 { USB_DEVICE_WACOM(0x63) },
1006 { USB_DEVICE_WACOM(0x64) },
1007 { USB_DEVICE_WACOM(0x65) },
1008 { USB_DEVICE_WACOM(0x69) },
1009 { USB_DEVICE_WACOM(0x20) },
1010 { USB_DEVICE_WACOM(0x21) },
1011 { USB_DEVICE_WACOM(0x22) },
1012 { USB_DEVICE_WACOM(0x23) },
1013 { USB_DEVICE_WACOM(0x24) },
1014 { USB_DEVICE_WACOM(0x30) },
1015 { USB_DEVICE_WACOM(0x31) },
1016 { USB_DEVICE_WACOM(0x32) },
1017 { USB_DEVICE_WACOM(0x33) },
1018 { USB_DEVICE_WACOM(0x34) },
1019 { USB_DEVICE_WACOM(0x35) },
1020 { USB_DEVICE_WACOM(0x37) },
1021 { USB_DEVICE_WACOM(0x38) },
1022 { USB_DEVICE_WACOM(0x39) },
1023 { USB_DEVICE_WACOM(0xC4) },
1024 { USB_DEVICE_WACOM(0xC0) },
1025 { USB_DEVICE_WACOM(0xC2) },
1026 { USB_DEVICE_WACOM(0x03) },
1027 { USB_DEVICE_WACOM(0x41) },
1028 { USB_DEVICE_WACOM(0x42) },
1029 { USB_DEVICE_WACOM(0x43) },
1030 { USB_DEVICE_WACOM(0x44) },
1031 { USB_DEVICE_WACOM(0x45) },
1032 { USB_DEVICE_WACOM(0xB0) },
1033 { USB_DEVICE_WACOM(0xB1) },
1034 { USB_DEVICE_WACOM(0xB2) },
1035 { USB_DEVICE_WACOM(0xB3) },
1036 { USB_DEVICE_WACOM(0xB4) },
1037 { USB_DEVICE_WACOM(0xB5) },
1038 { USB_DEVICE_WACOM(0xB7) },
1039 { USB_DEVICE_WACOM(0xB8) },
1040 { USB_DEVICE_WACOM(0xB9) },
1041 { USB_DEVICE_WACOM(0xBA) },
1042 { USB_DEVICE_WACOM(0xBB) },
1043 { USB_DEVICE_WACOM(0x3F) },
1044 { USB_DEVICE_WACOM(0xC5) },
1045 { USB_DEVICE_WACOM(0xC6) },
1046 { USB_DEVICE_WACOM(0xC7) },
1047 { USB_DEVICE_WACOM(0x90) },
1048 { USB_DEVICE_WACOM(0x93) },
1049 { USB_DEVICE_WACOM(0x9A) },
1050 { USB_DEVICE_WACOM(0x9F) },
1051 { USB_DEVICE_WACOM(0xE2) },
1052 { USB_DEVICE_WACOM(0xE3) },
1053 { USB_DEVICE_WACOM(0x47) },
Ping Cheng3bea7332006-07-13 18:01:36 -07001054 { }
1055};
Ping Cheng3bea7332006-07-13 18:01:36 -07001056MODULE_DEVICE_TABLE(usb, wacom_ids);