blob: 3d81443e683ab4d49a107a656ac6048601825909 [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 */
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:
Ping Cheng3bea7332006-07-13 18:01:36 -070023 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:
Ping Cheng3bea7332006-07-13 18:01:36 -070041 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{
Jason Childse33da8a2010-02-17 22:38:31 -080058 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -070059 unsigned char *data = wacom->data;
Ping Chenge34b9d22008-05-05 11:36:41 -040060 int prox, pressure;
Ping Cheng3bea7332006-07-13 18:01:36 -070061
Ping Chengcad74702009-12-15 00:35:25 -080062 if (data[0] != WACOM_REPORT_PENABLED) {
Ping Cheng3bea7332006-07-13 18:01:36 -070063 dbg("wacom_pl_irq: received unknown report #%d", data[0]);
64 return 0;
65 }
66
67 prox = data[1] & 0x40;
68
Ping Cheng3bea7332006-07-13 18:01:36 -070069 if (prox) {
Ping Chengec67bbe2009-12-15 00:35:24 -080070 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -070071 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
Jason Childse33da8a2010-02-17 22:38:31 -080072 if (features->pressure_max > 255)
Ping Cheng3bea7332006-07-13 18:01:36 -070073 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
Jason Childse33da8a2010-02-17 22:38:31 -080074 pressure += (features->pressure_max + 1) / 2;
Ping Cheng3bea7332006-07-13 18:01:36 -070075
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;
Ping Chenge34b9d22008-05-05 11:36:41 -0400102 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700103 }
104 wacom_report_key(wcombo, wacom->tool[1], prox); /* report in proximity for tool */
Ping Chenge34b9d22008-05-05 11:36:41 -0400105 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
Ping Cheng3bea7332006-07-13 18:01:36 -0700106 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;
Ping Cheng3bea7332006-07-13 18:01:36 -0700130
Ping Chengcad74702009-12-15 00:35:25 -0800131 if (data[0] != WACOM_REPORT_PENABLED) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700132 printk(KERN_INFO "wacom_ptu_irq: received unknown report #%d\n", data[0]);
133 return 0;
134 }
135
Ping Cheng3bea7332006-07-13 18:01:36 -0700136 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);
Ping Chenge34b9d22008-05-05 11:36:41 -0400139 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700140 } else {
141 wacom_report_key(wcombo, BTN_TOOL_PEN, data[1] & 0x20);
142 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x01);
Ping Chenge34b9d22008-05-05 11:36:41 -0400143 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700144 }
Ping Chenge34b9d22008-05-05 11:36:41 -0400145 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
Ping Cheng3bea7332006-07-13 18:01:36 -0700146 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{
Jason Childse33da8a2010-02-17 22:38:31 -0800156 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700157 unsigned char *data = wacom->data;
Ping Chenge34b9d22008-05-05 11:36:41 -0400158 int x, y, rw;
Ping Cheng0f5e1822009-12-15 00:35:25 -0800159 static int penData = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700160
Ping Chengcad74702009-12-15 00:35:25 -0800161 if (data[0] != WACOM_REPORT_PENABLED) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700162 dbg("wacom_graphire_irq: received unknown report #%d", data[0]);
163 return 0;
164 }
165
Ping Chenge34b9d22008-05-05 11:36:41 -0400166 if (data[1] & 0x80) {
Ping Cheng0e1763f2008-03-13 16:46:46 -0400167 /* in prox and not a pad data */
Ping Cheng0f5e1822009-12-15 00:35:25 -0800168 penData = 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700169
170 switch ((data[1] >> 5) & 3) {
171
172 case 0: /* Pen */
173 wacom->tool[0] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400174 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700175 break;
176
177 case 1: /* Rubber */
178 wacom->tool[0] = BTN_TOOL_RUBBER;
Ping Chenge34b9d22008-05-05 11:36:41 -0400179 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700180 break;
181
182 case 2: /* Mouse with wheel */
183 wacom_report_key(wcombo, BTN_MIDDLE, data[1] & 0x04);
Jason Childse33da8a2010-02-17 22:38:31 -0800184 if (features->type == WACOM_G4 || features->type == WACOM_MO) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700185 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]);
189 /* fall through */
190
191 case 3: /* Mouse without wheel */
192 wacom->tool[0] = BTN_TOOL_MOUSE;
Ping Chenge34b9d22008-05-05 11:36:41 -0400193 wacom->id[0] = CURSOR_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700194 wacom_report_key(wcombo, BTN_LEFT, data[1] & 0x01);
195 wacom_report_key(wcombo, BTN_RIGHT, data[1] & 0x02);
Jason Childse33da8a2010-02-17 22:38:31 -0800196 if (features->type == WACOM_G4 || features->type == WACOM_MO)
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700197 wacom_report_abs(wcombo, ABS_DISTANCE, data[6] & 0x3f);
Ping Cheng3bea7332006-07-13 18:01:36 -0700198 else
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700199 wacom_report_abs(wcombo, ABS_DISTANCE, data[7] & 0x3f);
Ping Cheng3bea7332006-07-13 18:01:36 -0700200 break;
201 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700202 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);
211 }
Ping Chenge34b9d22008-05-05 11:36:41 -0400212 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */
Ping Cheng071e0a22006-12-05 17:09:51 -0800213 wacom_report_key(wcombo, wacom->tool[0], 1);
Ping Chenge34b9d22008-05-05 11:36:41 -0400214 } else if (wacom->id[0]) {
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800215 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 }
Ping Chenge34b9d22008-05-05 11:36:41 -0400227 wacom->id[0] = 0;
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800228 wacom_report_abs(wcombo, ABS_MISC, 0); /* reset tool id */
Ping Cheng071e0a22006-12-05 17:09:51 -0800229 wacom_report_key(wcombo, wacom->tool[0], 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800230 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700231
232 /* send pad data */
Jason Childse33da8a2010-02-17 22:38:31 -0800233 switch (features->type) {
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400234 case WACOM_G4:
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800235 if (data[7] & 0xf8) {
Ping Cheng0f5e1822009-12-15 00:35:25 -0800236 if (penData) {
237 wacom_input_sync(wcombo); /* sync last event */
238 if (!wacom->id[0])
239 penData = 0;
240 }
Ping Chenge34b9d22008-05-05 11:36:41 -0400241 wacom->id[1] = PAD_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700242 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);
Ping Chenge34b9d22008-05-05 11:36:41 -0400247 wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700248 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
249 } else if (wacom->id[1]) {
Ping Cheng0f5e1822009-12-15 00:35:25 -0800250 if (penData) {
251 wacom_input_sync(wcombo); /* sync last event */
252 if (!wacom->id[0])
253 penData = 0;
254 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700255 wacom->id[1] = 0;
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800256 wacom_report_key(wcombo, BTN_0, (data[7] & 0x40));
257 wacom_report_key(wcombo, BTN_4, (data[7] & 0x80));
Ping Cheng0f5e1822009-12-15 00:35:25 -0800258 wacom_report_rel(wcombo, REL_WHEEL, 0);
Ping Cheng3bea7332006-07-13 18:01:36 -0700259 wacom_report_key(wcombo, BTN_TOOL_FINGER, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800260 wacom_report_abs(wcombo, ABS_MISC, 0);
Ping Cheng3bea7332006-07-13 18:01:36 -0700261 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
262 }
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400263 break;
264 case WACOM_MO:
Ping Cheng0e1763f2008-03-13 16:46:46 -0400265 if ((data[7] & 0xf8) || (data[8] & 0xff)) {
Ping Cheng0f5e1822009-12-15 00:35:25 -0800266 if (penData) {
267 wacom_input_sync(wcombo); /* sync last event */
268 if (!wacom->id[0])
269 penData = 0;
270 }
Ping Chenge34b9d22008-05-05 11:36:41 -0400271 wacom->id[1] = PAD_DEVICE_ID;
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400272 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);
Ping Chenge34b9d22008-05-05 11:36:41 -0400278 wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400279 wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0);
280 } else if (wacom->id[1]) {
Ping Cheng0f5e1822009-12-15 00:35:25 -0800281 if (penData) {
282 wacom_input_sync(wcombo); /* sync last event */
283 if (!wacom->id[0])
284 penData = 0;
285 }
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400286 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);
295 }
296 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700297 }
298 return 1;
299}
300
301static int wacom_intuos_inout(struct wacom_wac *wacom, void *wcombo)
302{
Jason Childse33da8a2010-02-17 22:38:31 -0800303 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700304 unsigned char *data = wacom->data;
Ping Cheng6f660f12009-05-08 18:30:33 -0700305 int idx = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700306
307 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800308 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700309 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700310
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 */
Ping Cheng6f660f12009-05-08 18:30:33 -0700322 case 0x20802: /* Intuos4 Classic Pen */
Ping Cheng3bea7332006-07-13 18:01:36 -0700323 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 */
Ping Cheng6f660f12009-05-08 18:30:33 -0700332 case 0x802: /* Intuos4 Grip Pen Eraser */
333 case 0x804: /* Intuos4 Marker Pen */
334 case 0x40802: /* Intuos4 Classic Pen */
Ping Cheng3bea7332006-07-13 18:01:36 -0700335 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 */
Ping Cheng6f660f12009-05-08 18:30:33 -0700346 case 0x806: /* Intuos4 Mouse */
Ping Cheng3bea7332006-07-13 18:01:36 -0700347 wacom->tool[idx] = BTN_TOOL_MOUSE;
348 break;
349 case 0x096: /* Lens cursor */
350 case 0x097: /* Intuos3 Lens cursor */
Ping Cheng6f660f12009-05-08 18:30:33 -0700351 case 0x006: /* Intuos4 Lens cursor */
Ping Cheng3bea7332006-07-13 18:01:36 -0700352 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 */
Ping Cheng6f660f12009-05-08 18:30:33 -0700362 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 */
Ping Cheng3bea7332006-07-13 18:01:36 -0700366 wacom->tool[idx] = BTN_TOOL_RUBBER;
367 break;
368 case 0xd12:
369 case 0x912:
370 case 0x112:
371 case 0x913: /* Intuos3 Airbrush */
Ping Cheng6f660f12009-05-08 18:30:33 -0700372 case 0x902: /* Intuos4 Airbrush */
Ping Cheng3bea7332006-07-13 18:01:36 -0700373 wacom->tool[idx] = BTN_TOOL_AIRBRUSH;
374 break;
375 default: /* Unknown tool */
376 wacom->tool[idx] = BTN_TOOL_PEN;
377 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700378 return 1;
379 }
380
381 /* Exit report */
382 if ((data[1] & 0xfe) == 0x80) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700383 /*
384 * Reset all states otherwise we lose the initial states
385 * when in-prox next time
386 */
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800387 wacom_report_abs(wcombo, ABS_X, 0);
388 wacom_report_abs(wcombo, ABS_Y, 0);
389 wacom_report_abs(wcombo, ABS_DISTANCE, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700390 wacom_report_abs(wcombo, ABS_TILT_X, 0);
391 wacom_report_abs(wcombo, ABS_TILT_Y, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800392 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);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400400 } else {
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800401 wacom_report_abs(wcombo, ABS_PRESSURE, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800402 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);
Jason Childse33da8a2010-02-17 22:38:31 -0800406 if (features->type >= INTUOS3S)
Ping Chengc413ec42009-06-28 22:50:58 -0700407 wacom_report_abs(wcombo, ABS_Z, 0);
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700408 }
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800409 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]);
Ping Cheng6f660f12009-05-08 18:30:33 -0700412 wacom->id[idx] = 0;
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800413 return 2;
Ping Cheng3bea7332006-07-13 18:01:36 -0700414 }
415 return 0;
416}
417
418static void wacom_intuos_general(struct wacom_wac *wacom, void *wcombo)
419{
Jason Childse33da8a2010-02-17 22:38:31 -0800420 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700421 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);
Jason Childse33da8a2010-02-17 22:38:31 -0800427 if (features->type >= INTUOS4S && features->type <= INTUOS4L)
Ping Cheng6f660f12009-05-08 18:30:33 -0700428 t = (t << 1) | (data[1] & 1);
Ping Cheng3bea7332006-07-13 18:01:36 -0700429 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{
Jason Childse33da8a2010-02-17 22:38:31 -0800451 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700452 unsigned char *data = wacom->data;
453 unsigned int t;
Ping Cheng6f660f12009-05-08 18:30:33 -0700454 int idx = 0, result;
Ping Cheng3bea7332006-07-13 18:01:36 -0700455
Ping Chengcad74702009-12-15 00:35:25 -0800456 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD
457 && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700458 dbg("wacom_intuos_irq: received unknown report #%d", data[0]);
459 return 0;
460 }
461
Ping Cheng3bea7332006-07-13 18:01:36 -0700462 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800463 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700464 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700465
466 /* pad packets. Works as a second tool and is always in prox */
Ping Chengcad74702009-12-15 00:35:25 -0800467 if (data[0] == WACOM_REPORT_INTUOSPAD) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700468 /* initiate the pad as a device */
469 if (wacom->tool[1] != BTN_TOOL_FINGER)
470 wacom->tool[1] = BTN_TOOL_FINGER;
471
Jason Childse33da8a2010-02-17 22:38:31 -0800472 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700473 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));
Ping Chenga8629522009-06-02 16:59:58 -0700482 } else {
483 /* Out of proximity, clear wheel value. */
484 wacom_report_abs(wcombo, ABS_WHEEL, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700485 }
Jason Childse33da8a2010-02-17 22:38:31 -0800486 if (features->type != INTUOS4S) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700487 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]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700510
Ping Cheng6f660f12009-05-08 18:30:33 -0700511 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 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700520 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
Ping Cheng6f660f12009-05-08 18:30:33 -0700529 /* 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 */
Jason Childse33da8a2010-02-17 22:38:31 -0800534 if (wacom->tool[idx] == BTN_TOOL_LENS &&
535 (features->type == INTUOS3 ||
536 features->type == INTUOS3S ||
537 features->type == INTUOS4 ||
538 features->type == INTUOS4S)) {
539
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800540 return 0;
Jason Childse33da8a2010-02-17 22:38:31 -0800541 }
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800542
Ping Cheng3bea7332006-07-13 18:01:36 -0700543 /* Cintiq doesn't send data when RDY bit isn't set */
Jason Childse33da8a2010-02-17 22:38:31 -0800544 if (features->type == CINTIQ && !(data[1] & 0x40))
Ping Cheng3bea7332006-07-13 18:01:36 -0700545 return 0;
546
Jason Childse33da8a2010-02-17 22:38:31 -0800547 if (features->type >= INTUOS3S) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700548 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
Ping Cheng6f660f12009-05-08 18:30:33 -0700560 /* 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) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700562
563 if (data[1] & 0x02) {
564 /* Rotation packet */
Jason Childse33da8a2010-02-17 22:38:31 -0800565 if (features->type >= INTUOS3S) {
Ping Cheng0e1763f2008-03-13 16:46:46 -0400566 /* I3 marker pen rotation */
Ping Cheng3bea7332006-07-13 18:01:36 -0700567 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) ;
Ping Cheng0e1763f2008-03-13 16:46:46 -0400570 wacom_report_abs(wcombo, ABS_Z, t);
Ping Cheng3bea7332006-07-13 18:01:36 -0700571 } 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
Jason Childse33da8a2010-02-17 22:38:31 -0800578 } else if (!(data[1] & 0x10) && features->type < INTUOS3S) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700579 /* 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) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700590 /* I4 mouse */
Jason Childse33da8a2010-02-17 22:38:31 -0800591 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700592 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)
Ping Cheng3bea7332006-07-13 18:01:36 -0700609 - ((data[8] & 0x02) >> 1));
610
Ping Cheng6f660f12009-05-08 18:30:33 -0700611 /* I3 2D mouse side buttons */
Jason Childse33da8a2010-02-17 22:38:31 -0800612 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700613 wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x40);
614 wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x20);
615 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700616 }
Jason Childse33da8a2010-02-17 22:38:31 -0800617 } else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
618 features->type == INTUOS4L) &&
Ping Cheng6f660f12009-05-08 18:30:33 -0700619 wacom->tool[idx] == BTN_TOOL_LENS) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700620 /* 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
Ping Chengec67bbe2009-12-15 00:35:24 -0800635
636static void wacom_tpc_finger_in(struct wacom_wac *wacom, void *wcombo, char *data, int idx)
637{
638 wacom_report_abs(wcombo, ABS_X,
639 (data[2 + idx * 2] & 0xff) | ((data[3 + idx * 2] & 0x7f) << 8));
640 wacom_report_abs(wcombo, ABS_Y,
641 (data[6 + idx * 2] & 0xff) | ((data[7 + idx * 2] & 0x7f) << 8));
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]) {
Ping Chengcad74702009-12-15 00:35:25 -0800676 case WACOM_REPORT_TPC1FG:
Ping Chengec67bbe2009-12-15 00:35:24 -0800677 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;
Ping Chengcad74702009-12-15 00:35:25 -0800684 case WACOM_REPORT_TPC2FG:
Ping Chengec67bbe2009-12-15 00:35:24 -0800685 /* 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
Roel Kluin0de048a2008-12-20 05:19:43 -0500724static int wacom_tpc_irq(struct wacom_wac *wacom, void *wcombo)
Ping Cheng545f4e92008-11-24 11:44:27 -0500725{
Jason Childse33da8a2010-02-17 22:38:31 -0800726 struct wacom_features *features = &wacom->features;
Ping Cheng545f4e92008-11-24 11:44:27 -0500727 char *data = wacom->data;
Ping Chengec67bbe2009-12-15 00:35:24 -0800728 int prox = 0, pressure, idx = -1;
Ping Cheng545f4e92008-11-24 11:44:27 -0500729 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
Ping Chengcad74702009-12-15 00:35:25 -0800734 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 */
Ping Chengee545002009-12-15 00:35:24 -0800737 if (urb->actual_length == WACOM_PKGLEN_TPC1FG) { /* with touch */
Ping Chengec67bbe2009-12-15 00:35:24 -0800738 prox = data[0] & 0x01;
Ping Cheng545f4e92008-11-24 11:44:27 -0500739 } else { /* with capacity */
Ping Chengcad74702009-12-15 00:35:25 -0800740 if (data[0] == WACOM_REPORT_TPC1FG)
Ping Chengec67bbe2009-12-15 00:35:24 -0800741 /* single touch */
742 prox = data[1] & 0x01;
743 else
744 /* 2FG touch data */
745 prox = data[1] & 0x03;
Ping Cheng545f4e92008-11-24 11:44:27 -0500746 }
747
748 if (!stylusInProx) { /* stylus not in prox */
749 if (prox) {
750 if (touchInProx) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800751 wacom_tpc_touch_in(wacom, wcombo);
Ping Cheng545f4e92008-11-24 11:44:27 -0500752 touchOut = 1;
753 return 1;
754 }
755 } else {
Ping Chengec67bbe2009-12-15 00:35:24 -0800756 /* 2FGT out-prox */
Ping Chengcad74702009-12-15 00:35:25 -0800757 if (data[0] == WACOM_REPORT_TPC2FG) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800758 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);
Ping Cheng545f4e92008-11-24 11:44:27 -0500770 touchOut = 0;
771 touchInProx = 1;
772 return 1;
773 }
774 } else if (touchOut || !prox) { /* force touch out-prox */
Ping Chengec67bbe2009-12-15 00:35:24 -0800775 wacom_tpc_touch_out(wacom, wcombo, 0);
Ping Cheng545f4e92008-11-24 11:44:27 -0500776 touchOut = 0;
777 touchInProx = 1;
778 return 1;
779 }
Ping Chengcad74702009-12-15 00:35:25 -0800780 } else if (data[0] == WACOM_REPORT_PENABLED) { /* Penabled */
Ping Cheng545f4e92008-11-24 11:44:27 -0500781 prox = data[1] & 0x20;
782
783 touchInProx = 0;
784
Ping Cheng545f4e92008-11-24 11:44:27 -0500785 if (prox) { /* in prox */
Ping Chengec67bbe2009-12-15 00:35:24 -0800786 if (!wacom->id[0]) {
Ping Cheng545f4e92008-11-24 11:44:27 -0500787 /* Going into proximity select tool */
Ping Chengec67bbe2009-12-15 00:35:24 -0800788 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
789 if (wacom->tool[0] == BTN_TOOL_PEN)
Ping Cheng545f4e92008-11-24 11:44:27 -0500790 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Chengec67bbe2009-12-15 00:35:24 -0800791 else
792 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng545f4e92008-11-24 11:44:27 -0500793 }
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)
Jason Childse33da8a2010-02-17 22:38:31 -0800800 pressure = features->pressure_max + pressure + 1;
Ping Cheng545f4e92008-11-24 11:44:27 -0500801 wacom_report_abs(wcombo, ABS_PRESSURE, pressure);
Ping Chengec67bbe2009-12-15 00:35:24 -0800802 wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x05);
Ping Cheng545f4e92008-11-24 11:44:27 -0500803 } else {
Ping Chengec67bbe2009-12-15 00:35:24 -0800804 wacom_report_abs(wcombo, ABS_X, 0);
805 wacom_report_abs(wcombo, ABS_Y, 0);
Ping Cheng545f4e92008-11-24 11:44:27 -0500806 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);
Ping Chengec67bbe2009-12-15 00:35:24 -0800810 wacom->id[0] = 0;
811 /* pen is out so touch can be enabled now */
812 touchInProx = 1;
Ping Cheng545f4e92008-11-24 11:44:27 -0500813 }
Ping Chengec67bbe2009-12-15 00:35:24 -0800814 wacom_report_key(wcombo, wacom->tool[0], prox);
Ping Cheng545f4e92008-11-24 11:44:27 -0500815 wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]);
816 stylusInProx = prox;
Ping Cheng545f4e92008-11-24 11:44:27 -0500817 return 1;
818 }
819 return 0;
820}
821
Ping Cheng3bea7332006-07-13 18:01:36 -0700822int wacom_wac_irq(struct wacom_wac *wacom_wac, void *wcombo)
823{
Jason Childse33da8a2010-02-17 22:38:31 -0800824 switch (wacom_wac->features.type) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700825 case PENPARTNER:
Ping Cheng545f4e92008-11-24 11:44:27 -0500826 return wacom_penpartner_irq(wacom_wac, wcombo);
827
Ping Cheng3bea7332006-07-13 18:01:36 -0700828 case PL:
Ping Cheng545f4e92008-11-24 11:44:27 -0500829 return wacom_pl_irq(wacom_wac, wcombo);
830
Ping Cheng3bea7332006-07-13 18:01:36 -0700831 case WACOM_G4:
832 case GRAPHIRE:
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400833 case WACOM_MO:
Ping Cheng545f4e92008-11-24 11:44:27 -0500834 return wacom_graphire_irq(wacom_wac, wcombo);
835
Ping Cheng3bea7332006-07-13 18:01:36 -0700836 case PTU:
Ping Cheng545f4e92008-11-24 11:44:27 -0500837 return wacom_ptu_irq(wacom_wac, wcombo);
838
Ping Cheng3bea7332006-07-13 18:01:36 -0700839 case INTUOS:
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700840 case INTUOS3S:
Ping Cheng3bea7332006-07-13 18:01:36 -0700841 case INTUOS3:
842 case INTUOS3L:
Ping Cheng6f660f12009-05-08 18:30:33 -0700843 case INTUOS4S:
844 case INTUOS4:
845 case INTUOS4L:
Ping Cheng3bea7332006-07-13 18:01:36 -0700846 case CINTIQ:
Ping Cheng0e1763f2008-03-13 16:46:46 -0400847 case WACOM_BEE:
Ping Cheng545f4e92008-11-24 11:44:27 -0500848 return wacom_intuos_irq(wacom_wac, wcombo);
849
850 case TABLETPC:
Ping Chengec67bbe2009-12-15 00:35:24 -0800851 case TABLETPC2FG:
Ping Cheng545f4e92008-11-24 11:44:27 -0500852 return wacom_tpc_irq(wacom_wac, wcombo);
853
Ping Cheng3bea7332006-07-13 18:01:36 -0700854 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{
Jason Childse33da8a2010-02-17 22:38:31 -0800862 switch (wacom_wac->features.type) {
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400863 case WACOM_MO:
864 input_dev_mo(input_dev, wacom_wac);
Ping Cheng3bea7332006-07-13 18:01:36 -0700865 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;
Ping Cheng0e1763f2008-03-13 16:46:46 -0400871 case WACOM_BEE:
872 input_dev_bee(input_dev, wacom_wac);
Ping Cheng3bea7332006-07-13 18:01:36 -0700873 case INTUOS3:
874 case INTUOS3L:
875 case CINTIQ:
876 input_dev_i3(input_dev, wacom_wac);
877 /* fall through */
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700878 case INTUOS3S:
879 input_dev_i3s(input_dev, wacom_wac);
Ping Cheng545f4e92008-11-24 11:44:27 -0500880 /* fall through */
Ping Cheng3bea7332006-07-13 18:01:36 -0700881 case INTUOS:
882 input_dev_i(input_dev, wacom_wac);
883 break;
Ping Cheng6f660f12009-05-08 18:30:33 -0700884 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;
Ping Chengec67bbe2009-12-15 00:35:24 -0800892 case TABLETPC2FG:
893 input_dev_tpc2fg(input_dev, wacom_wac);
894 /* fall through */
895 case TABLETPC:
896 input_dev_tpc(input_dev, wacom_wac);
Jason Childse33da8a2010-02-17 22:38:31 -0800897 if (wacom_wac->features.device_type != BTN_TOOL_PEN)
Ping Chengec67bbe2009-12-15 00:35:24 -0800898 break; /* no need to process stylus stuff */
899
900 /* fall through */
Ping Cheng3bea7332006-07-13 18:01:36 -0700901 case PL:
902 case PTU:
903 input_dev_pl(input_dev, wacom_wac);
Ping Cheng545f4e92008-11-24 11:44:27 -0500904 /* fall through */
Ping Cheng3bea7332006-07-13 18:01:36 -0700905 case PENPARTNER:
906 input_dev_pt(input_dev, wacom_wac);
907 break;
908 }
909 return;
910}
911
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800912static const struct wacom_features wacom_features_0x00 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800913 { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255, 0, PENPARTNER };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800914static const struct wacom_features wacom_features_0x10 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800915 { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800916static const struct wacom_features wacom_features_0x11 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800917 { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800918static const struct wacom_features wacom_features_0x12 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800919 { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800920static const struct wacom_features wacom_features_0x13 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800921 { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800922static const struct wacom_features wacom_features_0x14 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800923 { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800924static const struct wacom_features wacom_features_0x15 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800925 { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, 63, WACOM_G4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800926static const struct wacom_features wacom_features_0x16 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800927 { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, WACOM_G4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800928static const struct wacom_features wacom_features_0x17 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800929 { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, 63, WACOM_MO };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800930static const struct wacom_features wacom_features_0x18 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800931 { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511, 63, WACOM_MO };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800932static const struct wacom_features wacom_features_0x19 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800933 { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800934static const struct wacom_features wacom_features_0x60 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800935 { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800936static const struct wacom_features wacom_features_0x61 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800937 { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800938static const struct wacom_features wacom_features_0x62 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800939 { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800940static const struct wacom_features wacom_features_0x63 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800941 { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800942static const struct wacom_features wacom_features_0x64 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800943 { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800944static const struct wacom_features wacom_features_0x65 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800945 { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, 63, WACOM_MO };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800946static const struct wacom_features wacom_features_0x69 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800947 { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800948static const struct wacom_features wacom_features_0x20 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800949 { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800950static const struct wacom_features wacom_features_0x21 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800951 { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800952static const struct wacom_features wacom_features_0x22 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800953 { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800954static const struct wacom_features wacom_features_0x23 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800955 { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800956static const struct wacom_features wacom_features_0x24 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800957 { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800958static const struct wacom_features wacom_features_0x30 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800959 { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800960static const struct wacom_features wacom_features_0x31 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800961 { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800962static const struct wacom_features wacom_features_0x32 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800963 { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800964static const struct wacom_features wacom_features_0x33 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800965 { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800966static const struct wacom_features wacom_features_0x34 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800967 { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800968static const struct wacom_features wacom_features_0x35 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800969 { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800970static const struct wacom_features wacom_features_0x37 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800971 { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800972static const struct wacom_features wacom_features_0x38 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800973 { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800974static const struct wacom_features wacom_features_0x39 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800975 { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800976static const struct wacom_features wacom_features_0xC4 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800977 { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800978static const struct wacom_features wacom_features_0xC0 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800979 { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800980static const struct wacom_features wacom_features_0xC2 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800981 { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800982static const struct wacom_features wacom_features_0x03 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800983 { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511, 0, PTU };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800984static const struct wacom_features wacom_features_0x41 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800985 { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800986static const struct wacom_features wacom_features_0x42 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800987 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800988static const struct wacom_features wacom_features_0x43 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800989 { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800990static const struct wacom_features wacom_features_0x44 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800991 { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800992static const struct wacom_features wacom_features_0x45 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800993 { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, 31, INTUOS };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800994static const struct wacom_features wacom_features_0xB0 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800995 { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023, 63, INTUOS3S };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800996static const struct wacom_features wacom_features_0xB1 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800997 { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023, 63, INTUOS3 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -0800998static const struct wacom_features wacom_features_0xB2 =
Bastian Blankb036f6f2010-02-10 23:06:23 -0800999 { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023, 63, INTUOS3 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001000static const struct wacom_features wacom_features_0xB3 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001001 { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023, 63, INTUOS3L };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001002static const struct wacom_features wacom_features_0xB4 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001003 { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023, 63, INTUOS3L };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001004static const struct wacom_features wacom_features_0xB5 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001005 { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023, 63, INTUOS3 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001006static const struct wacom_features wacom_features_0xB7 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001007 { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023, 63, INTUOS3S };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001008static const struct wacom_features wacom_features_0xB8 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001009 { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047, 63, INTUOS4S };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001010static const struct wacom_features wacom_features_0xB9 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001011 { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047, 63, INTUOS4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001012static const struct wacom_features wacom_features_0xBA =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001013 { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047, 63, INTUOS4L };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001014static const struct wacom_features wacom_features_0xBB =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001015 { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047, 63, INTUOS4L };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001016static const struct wacom_features wacom_features_0x3F =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001017 { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023, 63, CINTIQ };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001018static const struct wacom_features wacom_features_0xC5 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001019 { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023, 63, WACOM_BEE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001020static const struct wacom_features wacom_features_0xC6 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001021 { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023, 63, WACOM_BEE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001022static const struct wacom_features wacom_features_0xC7 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001023 { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511, 0, PL };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001024static const struct wacom_features wacom_features_0x90 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001025 { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001026static const struct wacom_features wacom_features_0x93 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001027 { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001028static const struct wacom_features wacom_features_0x9A =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001029 { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001030static const struct wacom_features wacom_features_0x9F =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001031 { "Wacom ISDv4 9F", WACOM_PKGLEN_PENABLED, 26202, 16325, 255, 0, TABLETPC };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001032static const struct wacom_features wacom_features_0xE2 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001033 { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, 0, TABLETPC2FG };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001034static const struct wacom_features wacom_features_0xE3 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001035 { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, 0, TABLETPC2FG };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001036static const struct wacom_features wacom_features_0x47 =
Bastian Blankb036f6f2010-02-10 23:06:23 -08001037 { "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) },
Ping Cheng3bea7332006-07-13 18:01:36 -07001107 { }
1108};
Ping Cheng3bea7332006-07-13 18:01:36 -07001109MODULE_DEVICE_TABLE(usb, wacom_ids);