blob: 6264e6a8d513744209b4d9caf16bcf01b1c60d35 [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"
Henrik Rydberg47c78e82010-11-27 09:16:48 +010017#include <linux/input/mt.h>
Aristeu Rozanski1483f552011-06-22 01:17:17 -070018#include <linux/hid.h>
Ping Cheng3bea7332006-07-13 18:01:36 -070019
Ping Chenge35fb8c2011-03-26 21:16:05 -070020/* resolution for penabled devices */
21#define WACOM_PL_RES 20
22#define WACOM_PENPRTN_RES 40
23#define WACOM_VOLITO_RES 50
24#define WACOM_GRAPHIRE_RES 80
25#define WACOM_INTUOS_RES 100
26#define WACOM_INTUOS3_RES 200
27
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -070028static int wacom_penpartner_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -070029{
30 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070031 struct input_dev *input = wacom->input;
Ping Cheng3bea7332006-07-13 18:01:36 -070032
33 switch (data[0]) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070034 case 1:
35 if (data[5] & 0x80) {
36 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
37 wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070038 input_report_key(input, wacom->tool[0], 1);
39 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -070040 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
41 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070042 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
43 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -127));
44 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070045 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070046 input_report_key(input, wacom->tool[0], 0);
47 input_report_abs(input, ABS_MISC, 0); /* report tool id */
48 input_report_abs(input, ABS_PRESSURE, -1);
49 input_report_key(input, BTN_TOUCH, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070050 }
51 break;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070052
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070053 case 2:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070054 input_report_key(input, BTN_TOOL_PEN, 1);
55 input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -070056 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
57 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070058 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
59 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
60 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070061 break;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070062
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070063 default:
64 printk(KERN_INFO "wacom_penpartner_irq: received unknown report #%d\n", data[0]);
65 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -070066 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070067
Ping Cheng3bea7332006-07-13 18:01:36 -070068 return 1;
69}
70
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -070071static int wacom_pl_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -070072{
Jason Childse33da8a2010-02-17 22:38:31 -080073 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -070074 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070075 struct input_dev *input = wacom->input;
Ping Chenge34b9d22008-05-05 11:36:41 -040076 int prox, pressure;
Ping Cheng3bea7332006-07-13 18:01:36 -070077
Ping Chengcad74702009-12-15 00:35:25 -080078 if (data[0] != WACOM_REPORT_PENABLED) {
Ping Cheng3bea7332006-07-13 18:01:36 -070079 dbg("wacom_pl_irq: received unknown report #%d", data[0]);
80 return 0;
81 }
82
83 prox = data[1] & 0x40;
84
Ping Cheng3bea7332006-07-13 18:01:36 -070085 if (prox) {
Ping Chengec67bbe2009-12-15 00:35:24 -080086 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -070087 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
Jason Childse33da8a2010-02-17 22:38:31 -080088 if (features->pressure_max > 255)
Ping Cheng3bea7332006-07-13 18:01:36 -070089 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
Jason Childse33da8a2010-02-17 22:38:31 -080090 pressure += (features->pressure_max + 1) / 2;
Ping Cheng3bea7332006-07-13 18:01:36 -070091
92 /*
93 * if going from out of proximity into proximity select between the eraser
94 * and the pen based on the state of the stylus2 button, choose eraser if
95 * pressed else choose pen. if not a proximity change from out to in, send
96 * an out of proximity for previous tool then a in for new tool.
97 */
98 if (!wacom->tool[0]) {
99 /* Eraser bit set for DTF */
100 if (data[1] & 0x10)
101 wacom->tool[1] = BTN_TOOL_RUBBER;
102 else
103 /* Going into proximity select tool */
104 wacom->tool[1] = (data[4] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
105 } else {
106 /* was entered with stylus2 pressed */
107 if (wacom->tool[1] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
108 /* report out proximity for previous tool */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700109 input_report_key(input, wacom->tool[1], 0);
110 input_sync(input);
Ping Cheng3bea7332006-07-13 18:01:36 -0700111 wacom->tool[1] = BTN_TOOL_PEN;
112 return 0;
113 }
114 }
115 if (wacom->tool[1] != BTN_TOOL_RUBBER) {
116 /* Unknown tool selected default to pen tool */
117 wacom->tool[1] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400118 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700119 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700120 input_report_key(input, wacom->tool[1], prox); /* report in proximity for tool */
121 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
122 input_report_abs(input, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
123 input_report_abs(input, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
124 input_report_abs(input, ABS_PRESSURE, pressure);
Ping Cheng3bea7332006-07-13 18:01:36 -0700125
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700126 input_report_key(input, BTN_TOUCH, data[4] & 0x08);
127 input_report_key(input, BTN_STYLUS, data[4] & 0x10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700128 /* Only allow the stylus2 button to be reported for the pen tool. */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700129 input_report_key(input, BTN_STYLUS2, (wacom->tool[1] == BTN_TOOL_PEN) && (data[4] & 0x20));
Ping Cheng3bea7332006-07-13 18:01:36 -0700130 } else {
131 /* report proximity-out of a (valid) tool */
132 if (wacom->tool[1] != BTN_TOOL_RUBBER) {
133 /* Unknown tool selected default to pen tool */
134 wacom->tool[1] = BTN_TOOL_PEN;
135 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700136 input_report_key(input, wacom->tool[1], prox);
Ping Cheng3bea7332006-07-13 18:01:36 -0700137 }
138
139 wacom->tool[0] = prox; /* Save proximity state */
140 return 1;
141}
142
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700143static int wacom_ptu_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700144{
145 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700146 struct input_dev *input = wacom->input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700147
Ping Chengcad74702009-12-15 00:35:25 -0800148 if (data[0] != WACOM_REPORT_PENABLED) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700149 printk(KERN_INFO "wacom_ptu_irq: received unknown report #%d\n", data[0]);
150 return 0;
151 }
152
Ping Cheng3bea7332006-07-13 18:01:36 -0700153 if (data[1] & 0x04) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700154 input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
155 input_report_key(input, BTN_TOUCH, data[1] & 0x08);
Ping Chenge34b9d22008-05-05 11:36:41 -0400156 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700157 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700158 input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
159 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
Ping Chenge34b9d22008-05-05 11:36:41 -0400160 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700161 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700162 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700163 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
164 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
165 input_report_abs(input, ABS_PRESSURE, le16_to_cpup((__le16 *)&data[6]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700166 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
167 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700168 return 1;
169}
170
Ping Chengc8f2edc2010-06-28 01:10:51 -0700171static int wacom_dtu_irq(struct wacom_wac *wacom)
172{
173 struct wacom_features *features = &wacom->features;
174 char *data = wacom->data;
175 struct input_dev *input = wacom->input;
176 int prox = data[1] & 0x20, pressure;
177
178 dbg("wacom_dtu_irq: received report #%d", data[0]);
179
180 if (prox) {
181 /* Going into proximity select tool */
182 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
183 if (wacom->tool[0] == BTN_TOOL_PEN)
184 wacom->id[0] = STYLUS_DEVICE_ID;
185 else
186 wacom->id[0] = ERASER_DEVICE_ID;
187 }
188 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
189 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
190 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
191 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
192 pressure = ((data[7] & 0x01) << 8) | data[6];
193 if (pressure < 0)
194 pressure = features->pressure_max + pressure + 1;
195 input_report_abs(input, ABS_PRESSURE, pressure);
196 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
197 if (!prox) /* out-prox */
198 wacom->id[0] = 0;
199 input_report_key(input, wacom->tool[0], prox);
200 input_report_abs(input, ABS_MISC, wacom->id[0]);
201 return 1;
202}
203
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700204static int wacom_graphire_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700205{
Jason Childse33da8a2010-02-17 22:38:31 -0800206 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700207 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700208 struct input_dev *input = wacom->input;
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700209 int prox;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800210 int rw = 0;
211 int retval = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700212
Ping Chengcad74702009-12-15 00:35:25 -0800213 if (data[0] != WACOM_REPORT_PENABLED) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700214 dbg("wacom_graphire_irq: received unknown report #%d", data[0]);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800215 goto exit;
Ping Cheng3bea7332006-07-13 18:01:36 -0700216 }
217
Ping Cheng3b57ca02010-03-04 21:50:59 -0800218 prox = data[1] & 0x80;
219 if (prox || wacom->id[0]) {
220 if (prox) {
221 switch ((data[1] >> 5) & 3) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700222
223 case 0: /* Pen */
224 wacom->tool[0] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400225 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700226 break;
227
228 case 1: /* Rubber */
229 wacom->tool[0] = BTN_TOOL_RUBBER;
Ping Chenge34b9d22008-05-05 11:36:41 -0400230 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700231 break;
232
233 case 2: /* Mouse with wheel */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700234 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
Ping Cheng3bea7332006-07-13 18:01:36 -0700235 /* fall through */
236
237 case 3: /* Mouse without wheel */
238 wacom->tool[0] = BTN_TOOL_MOUSE;
Ping Chenge34b9d22008-05-05 11:36:41 -0400239 wacom->id[0] = CURSOR_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700240 break;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800241 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700242 }
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700243 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
244 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Ping Cheng3bea7332006-07-13 18:01:36 -0700245 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700246 input_report_abs(input, ABS_PRESSURE, data[6] | ((data[7] & 0x01) << 8));
247 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
248 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
249 input_report_key(input, BTN_STYLUS2, data[1] & 0x04);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700250 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700251 input_report_key(input, BTN_LEFT, data[1] & 0x01);
252 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800253 if (features->type == WACOM_G4 ||
254 features->type == WACOM_MO) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700255 input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f);
Mike Autyd9f66c12010-08-28 20:35:17 -0700256 rw = (data[7] & 0x04) - (data[7] & 0x03);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800257 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700258 input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f);
Mike Autyd9f66c12010-08-28 20:35:17 -0700259 rw = -(signed char)data[6];
Ping Cheng3b57ca02010-03-04 21:50:59 -0800260 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700261 input_report_rel(input, REL_WHEEL, rw);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700262 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800263
264 if (!prox)
265 wacom->id[0] = 0;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700266 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
267 input_report_key(input, wacom->tool[0], prox);
Ping Cheng998c4542011-07-06 18:05:41 -0700268 input_event(input, EV_MSC, MSC_SERIAL, 1);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700269 input_sync(input); /* sync last event */
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800270 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700271
272 /* send pad data */
Jason Childse33da8a2010-02-17 22:38:31 -0800273 switch (features->type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700274 case WACOM_G4:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800275 prox = data[7] & 0xf8;
276 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400277 wacom->id[1] = PAD_DEVICE_ID;
Ping Cheng0bd10ef2011-07-06 18:05:42 -0700278 input_report_key(input, BTN_BACK, (data[7] & 0x40));
279 input_report_key(input, BTN_FORWARD, (data[7] & 0x80));
Ping Cheng3bea7332006-07-13 18:01:36 -0700280 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700281 input_report_rel(input, REL_WHEEL, rw);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800282 if (!prox)
283 wacom->id[1] = 0;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700284 input_report_abs(input, ABS_MISC, wacom->id[1]);
285 input_event(input, EV_MSC, MSC_SERIAL, 0xf0);
Ping Chengab687b12010-04-05 23:07:41 -0700286 retval = 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700287 }
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400288 break;
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700289
290 case WACOM_MO:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800291 prox = (data[7] & 0xf8) || data[8];
292 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400293 wacom->id[1] = PAD_DEVICE_ID;
Ping Cheng0bd10ef2011-07-06 18:05:42 -0700294 input_report_key(input, BTN_BACK, (data[7] & 0x08));
295 input_report_key(input, BTN_LEFT, (data[7] & 0x20));
296 input_report_key(input, BTN_FORWARD, (data[7] & 0x10));
297 input_report_key(input, BTN_RIGHT, (data[7] & 0x40));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700298 input_report_abs(input, ABS_WHEEL, (data[8] & 0x7f));
Ping Cheng3b57ca02010-03-04 21:50:59 -0800299 if (!prox)
300 wacom->id[1] = 0;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700301 input_report_abs(input, ABS_MISC, wacom->id[1]);
302 input_event(input, EV_MSC, MSC_SERIAL, 0xf0);
Ping Cheng84460012011-07-06 18:05:43 -0700303 retval = 1;
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400304 }
305 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700306 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800307exit:
308 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -0700309}
310
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700311static int wacom_intuos_inout(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700312{
Jason Childse33da8a2010-02-17 22:38:31 -0800313 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700314 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700315 struct input_dev *input = wacom->input;
Ping Cheng6f660f12009-05-08 18:30:33 -0700316 int idx = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700317
318 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800319 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700320 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700321
322 /* Enter report */
323 if ((data[1] & 0xfc) == 0xc0) {
324 /* serial number of the tool */
325 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
326 (data[4] << 20) + (data[5] << 12) +
327 (data[6] << 4) + (data[7] >> 4);
328
Ping Cheng493630b2010-06-22 11:21:34 -0700329 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
330 ((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700331
Ping Cheng493630b2010-06-22 11:21:34 -0700332 switch (wacom->id[idx] & 0xfffff) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700333 case 0x812: /* Inking pen */
334 case 0x801: /* Intuos3 Inking pen */
Ping Cheng493630b2010-06-22 11:21:34 -0700335 case 0x20802: /* Intuos4 Inking Pen */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700336 case 0x012:
337 wacom->tool[idx] = BTN_TOOL_PENCIL;
338 break;
339
340 case 0x822: /* Pen */
341 case 0x842:
342 case 0x852:
343 case 0x823: /* Intuos3 Grip Pen */
344 case 0x813: /* Intuos3 Classic Pen */
345 case 0x885: /* Intuos3 Marker Pen */
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700346 case 0x802: /* Intuos4 General Pen */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700347 case 0x804: /* Intuos4 Marker Pen */
348 case 0x40802: /* Intuos4 Classic Pen */
349 case 0x022:
350 wacom->tool[idx] = BTN_TOOL_PEN;
351 break;
352
353 case 0x832: /* Stroke pen */
354 case 0x032:
355 wacom->tool[idx] = BTN_TOOL_BRUSH;
356 break;
357
358 case 0x007: /* Mouse 4D and 2D */
359 case 0x09c:
360 case 0x094:
361 case 0x017: /* Intuos3 2D Mouse */
362 case 0x806: /* Intuos4 Mouse */
363 wacom->tool[idx] = BTN_TOOL_MOUSE;
364 break;
365
366 case 0x096: /* Lens cursor */
367 case 0x097: /* Intuos3 Lens cursor */
368 case 0x006: /* Intuos4 Lens cursor */
369 wacom->tool[idx] = BTN_TOOL_LENS;
370 break;
371
372 case 0x82a: /* Eraser */
373 case 0x85a:
374 case 0x91a:
375 case 0xd1a:
376 case 0x0fa:
377 case 0x82b: /* Intuos3 Grip Pen Eraser */
378 case 0x81b: /* Intuos3 Classic Pen Eraser */
379 case 0x91b: /* Intuos3 Airbrush Eraser */
380 case 0x80c: /* Intuos4 Marker Pen Eraser */
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700381 case 0x80a: /* Intuos4 General Pen Eraser */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700382 case 0x4080a: /* Intuos4 Classic Pen Eraser */
383 case 0x90a: /* Intuos4 Airbrush Eraser */
384 wacom->tool[idx] = BTN_TOOL_RUBBER;
385 break;
386
387 case 0xd12:
388 case 0x912:
389 case 0x112:
390 case 0x913: /* Intuos3 Airbrush */
391 case 0x902: /* Intuos4 Airbrush */
392 wacom->tool[idx] = BTN_TOOL_AIRBRUSH;
393 break;
394
395 default: /* Unknown tool */
396 wacom->tool[idx] = BTN_TOOL_PEN;
397 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700398 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700399 return 1;
400 }
401
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700402 /* older I4 styli don't work with new Cintiqs */
403 if (!((wacom->id[idx] >> 20) & 0x01) &&
404 (features->type == WACOM_21UX2))
405 return 1;
406
Ping Cheng3bea7332006-07-13 18:01:36 -0700407 /* Exit report */
408 if ((data[1] & 0xfe) == 0x80) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700409 /*
410 * Reset all states otherwise we lose the initial states
411 * when in-prox next time
412 */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700413 input_report_abs(input, ABS_X, 0);
414 input_report_abs(input, ABS_Y, 0);
415 input_report_abs(input, ABS_DISTANCE, 0);
416 input_report_abs(input, ABS_TILT_X, 0);
417 input_report_abs(input, ABS_TILT_Y, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800418 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700419 input_report_key(input, BTN_LEFT, 0);
420 input_report_key(input, BTN_MIDDLE, 0);
421 input_report_key(input, BTN_RIGHT, 0);
422 input_report_key(input, BTN_SIDE, 0);
423 input_report_key(input, BTN_EXTRA, 0);
424 input_report_abs(input, ABS_THROTTLE, 0);
425 input_report_abs(input, ABS_RZ, 0);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400426 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700427 input_report_abs(input, ABS_PRESSURE, 0);
428 input_report_key(input, BTN_STYLUS, 0);
429 input_report_key(input, BTN_STYLUS2, 0);
430 input_report_key(input, BTN_TOUCH, 0);
431 input_report_abs(input, ABS_WHEEL, 0);
Jason Childse33da8a2010-02-17 22:38:31 -0800432 if (features->type >= INTUOS3S)
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700433 input_report_abs(input, ABS_Z, 0);
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700434 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700435 input_report_key(input, wacom->tool[idx], 0);
436 input_report_abs(input, ABS_MISC, 0); /* reset tool id */
437 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Cheng6f660f12009-05-08 18:30:33 -0700438 wacom->id[idx] = 0;
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800439 return 2;
Ping Cheng3bea7332006-07-13 18:01:36 -0700440 }
441 return 0;
442}
443
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700444static void wacom_intuos_general(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700445{
Jason Childse33da8a2010-02-17 22:38:31 -0800446 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700447 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700448 struct input_dev *input = wacom->input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700449 unsigned int t;
450
451 /* general pen packet */
452 if ((data[1] & 0xb8) == 0xa0) {
453 t = (data[6] << 2) | ((data[7] >> 6) & 3);
Aristeu Rozanskica047fe2010-10-10 14:12:33 -0700454 if ((features->type >= INTUOS4S && features->type <= INTUOS4L) ||
Jason Gerecke803296b2011-12-12 00:11:45 -0800455 features->type == WACOM_21UX2 || features->type == WACOM_24HD) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700456 t = (t << 1) | (data[1] & 1);
Aristeu Rozanskica047fe2010-10-10 14:12:33 -0700457 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700458 input_report_abs(input, ABS_PRESSURE, t);
459 input_report_abs(input, ABS_TILT_X,
Ping Cheng3bea7332006-07-13 18:01:36 -0700460 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700461 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
462 input_report_key(input, BTN_STYLUS, data[1] & 2);
463 input_report_key(input, BTN_STYLUS2, data[1] & 4);
464 input_report_key(input, BTN_TOUCH, t > 10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700465 }
466
467 /* airbrush second packet */
468 if ((data[1] & 0xbc) == 0xb4) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700469 input_report_abs(input, ABS_WHEEL,
Ping Cheng3bea7332006-07-13 18:01:36 -0700470 (data[6] << 2) | ((data[7] >> 6) & 3));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700471 input_report_abs(input, ABS_TILT_X,
Ping Cheng3bea7332006-07-13 18:01:36 -0700472 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700473 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
Ping Cheng3bea7332006-07-13 18:01:36 -0700474 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700475}
476
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700477static int wacom_intuos_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700478{
Jason Childse33da8a2010-02-17 22:38:31 -0800479 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700480 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700481 struct input_dev *input = wacom->input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700482 unsigned int t;
Ping Cheng6f660f12009-05-08 18:30:33 -0700483 int idx = 0, result;
Ping Cheng3bea7332006-07-13 18:01:36 -0700484
Ping Chengcad74702009-12-15 00:35:25 -0800485 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD
486 && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700487 dbg("wacom_intuos_irq: received unknown report #%d", data[0]);
488 return 0;
489 }
490
Ping Cheng3bea7332006-07-13 18:01:36 -0700491 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800492 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700493 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700494
495 /* pad packets. Works as a second tool and is always in prox */
Ping Chengcad74702009-12-15 00:35:25 -0800496 if (data[0] == WACOM_REPORT_INTUOSPAD) {
Jason Childse33da8a2010-02-17 22:38:31 -0800497 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700498 input_report_key(input, BTN_0, (data[2] & 0x01));
499 input_report_key(input, BTN_1, (data[3] & 0x01));
500 input_report_key(input, BTN_2, (data[3] & 0x02));
501 input_report_key(input, BTN_3, (data[3] & 0x04));
502 input_report_key(input, BTN_4, (data[3] & 0x08));
503 input_report_key(input, BTN_5, (data[3] & 0x10));
504 input_report_key(input, BTN_6, (data[3] & 0x20));
Ping Cheng6f660f12009-05-08 18:30:33 -0700505 if (data[1] & 0x80) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700506 input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
Ping Chenga8629522009-06-02 16:59:58 -0700507 } else {
508 /* Out of proximity, clear wheel value. */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700509 input_report_abs(input, ABS_WHEEL, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700510 }
Jason Childse33da8a2010-02-17 22:38:31 -0800511 if (features->type != INTUOS4S) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700512 input_report_key(input, BTN_7, (data[3] & 0x40));
513 input_report_key(input, BTN_8, (data[3] & 0x80));
Ping Cheng6f660f12009-05-08 18:30:33 -0700514 }
515 if (data[1] | (data[2] & 0x01) | data[3]) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700516 input_report_key(input, wacom->tool[1], 1);
517 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
Ping Cheng6f660f12009-05-08 18:30:33 -0700518 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700519 input_report_key(input, wacom->tool[1], 0);
520 input_report_abs(input, ABS_MISC, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700521 }
Jason Gerecke803296b2011-12-12 00:11:45 -0800522 } else if (features->type == WACOM_24HD) {
523 input_report_key(input, BTN_0, (data[6] & 0x01));
524 input_report_key(input, BTN_1, (data[6] & 0x02));
525 input_report_key(input, BTN_2, (data[6] & 0x04));
526 input_report_key(input, BTN_3, (data[6] & 0x08));
527 input_report_key(input, BTN_4, (data[6] & 0x10));
528 input_report_key(input, BTN_5, (data[6] & 0x20));
529 input_report_key(input, BTN_6, (data[6] & 0x40));
530 input_report_key(input, BTN_7, (data[6] & 0x80));
531 input_report_key(input, BTN_8, (data[8] & 0x01));
532 input_report_key(input, BTN_9, (data[8] & 0x02));
533 input_report_key(input, BTN_A, (data[8] & 0x04));
534 input_report_key(input, BTN_B, (data[8] & 0x08));
535 input_report_key(input, BTN_C, (data[8] & 0x10));
536 input_report_key(input, BTN_X, (data[8] & 0x20));
537 input_report_key(input, BTN_Y, (data[8] & 0x40));
538 input_report_key(input, BTN_Z, (data[8] & 0x80));
539
540 /*
541 * Three "buttons" are available on the 24HD which are
542 * physically implemented as a touchstrip. Each button
543 * is approximately 3 bits wide with a 2 bit spacing.
544 * The raw touchstrip bits are stored at:
545 * ((data[3] & 0x1f) << 8) | data[4])
546 */
547 input_report_key(input, KEY_PROG1, data[4] & 0x07);
548 input_report_key(input, KEY_PROG2, data[4] & 0xE0);
549 input_report_key(input, KEY_PROG3, data[3] & 0x1C);
550
551 if (data[1] & 0x80) {
552 input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
553 } else {
554 /* Out of proximity, clear wheel value. */
555 input_report_abs(input, ABS_WHEEL, 0);
556 }
557
558 if (data[2] & 0x80) {
559 input_report_abs(input, ABS_THROTTLE, (data[2] & 0x7f));
560 } else {
561 /* Out of proximity, clear second wheel value. */
562 input_report_abs(input, ABS_THROTTLE, 0);
563 }
564
565 if (data[1] | data[2] | (data[3] & 0x1f) | data[4] | data[6] | data[8]) {
566 input_report_key(input, wacom->tool[1], 1);
567 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
568 } else {
569 input_report_key(input, wacom->tool[1], 0);
570 input_report_abs(input, ABS_MISC, 0);
571 }
Ping Cheng6f660f12009-05-08 18:30:33 -0700572 } else {
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700573 if (features->type == WACOM_21UX2) {
574 input_report_key(input, BTN_0, (data[5] & 0x01));
575 input_report_key(input, BTN_1, (data[6] & 0x01));
576 input_report_key(input, BTN_2, (data[6] & 0x02));
577 input_report_key(input, BTN_3, (data[6] & 0x04));
578 input_report_key(input, BTN_4, (data[6] & 0x08));
579 input_report_key(input, BTN_5, (data[6] & 0x10));
580 input_report_key(input, BTN_6, (data[6] & 0x20));
581 input_report_key(input, BTN_7, (data[6] & 0x40));
582 input_report_key(input, BTN_8, (data[6] & 0x80));
583 input_report_key(input, BTN_9, (data[7] & 0x01));
584 input_report_key(input, BTN_A, (data[8] & 0x01));
585 input_report_key(input, BTN_B, (data[8] & 0x02));
586 input_report_key(input, BTN_C, (data[8] & 0x04));
587 input_report_key(input, BTN_X, (data[8] & 0x08));
588 input_report_key(input, BTN_Y, (data[8] & 0x10));
589 input_report_key(input, BTN_Z, (data[8] & 0x20));
590 input_report_key(input, BTN_BASE, (data[8] & 0x40));
591 input_report_key(input, BTN_BASE2, (data[8] & 0x80));
592 } else {
593 input_report_key(input, BTN_0, (data[5] & 0x01));
594 input_report_key(input, BTN_1, (data[5] & 0x02));
595 input_report_key(input, BTN_2, (data[5] & 0x04));
596 input_report_key(input, BTN_3, (data[5] & 0x08));
597 input_report_key(input, BTN_4, (data[6] & 0x01));
598 input_report_key(input, BTN_5, (data[6] & 0x02));
599 input_report_key(input, BTN_6, (data[6] & 0x04));
600 input_report_key(input, BTN_7, (data[6] & 0x08));
601 input_report_key(input, BTN_8, (data[5] & 0x10));
602 input_report_key(input, BTN_9, (data[6] & 0x10));
603 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700604 input_report_abs(input, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]);
605 input_report_abs(input, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700606
Ping Cheng493630b2010-06-22 11:21:34 -0700607 if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) |
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700608 data[2] | (data[3] & 0x1f) | data[4] | data[8] |
609 (data[7] & 0x01)) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700610 input_report_key(input, wacom->tool[1], 1);
611 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
Ping Cheng6f660f12009-05-08 18:30:33 -0700612 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700613 input_report_key(input, wacom->tool[1], 0);
614 input_report_abs(input, ABS_MISC, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700615 }
616 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700617 input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
Ping Cheng3bea7332006-07-13 18:01:36 -0700618 return 1;
619 }
620
621 /* process in/out prox events */
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700622 result = wacom_intuos_inout(wacom);
Ping Cheng3bea7332006-07-13 18:01:36 -0700623 if (result)
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700624 return result - 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700625
Ping Cheng6f660f12009-05-08 18:30:33 -0700626 /* don't proceed if we don't know the ID */
627 if (!wacom->id[idx])
628 return 0;
629
630 /* Only large Intuos support Lense Cursor */
Jason Childse33da8a2010-02-17 22:38:31 -0800631 if (wacom->tool[idx] == BTN_TOOL_LENS &&
632 (features->type == INTUOS3 ||
633 features->type == INTUOS3S ||
634 features->type == INTUOS4 ||
635 features->type == INTUOS4S)) {
636
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800637 return 0;
Jason Childse33da8a2010-02-17 22:38:31 -0800638 }
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800639
Ping Cheng3bea7332006-07-13 18:01:36 -0700640 /* Cintiq doesn't send data when RDY bit isn't set */
Jason Childse33da8a2010-02-17 22:38:31 -0800641 if (features->type == CINTIQ && !(data[1] & 0x40))
Ping Cheng3bea7332006-07-13 18:01:36 -0700642 return 0;
643
Jason Childse33da8a2010-02-17 22:38:31 -0800644 if (features->type >= INTUOS3S) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700645 input_report_abs(input, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1));
646 input_report_abs(input, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1));
647 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 2) & 0x3f));
Ping Cheng3bea7332006-07-13 18:01:36 -0700648 } else {
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700649 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[2]));
650 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[4]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700651 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 3) & 0x1f));
Ping Cheng3bea7332006-07-13 18:01:36 -0700652 }
653
654 /* process general packets */
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700655 wacom_intuos_general(wacom);
Ping Cheng3bea7332006-07-13 18:01:36 -0700656
Ping Cheng6f660f12009-05-08 18:30:33 -0700657 /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */
658 if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0 || (data[1] & 0xbc) == 0xac) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700659
660 if (data[1] & 0x02) {
661 /* Rotation packet */
Jason Childse33da8a2010-02-17 22:38:31 -0800662 if (features->type >= INTUOS3S) {
Ping Cheng0e1763f2008-03-13 16:46:46 -0400663 /* I3 marker pen rotation */
Ping Cheng3bea7332006-07-13 18:01:36 -0700664 t = (data[6] << 3) | ((data[7] >> 5) & 7);
665 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
666 ((t-1) / 2 + 450)) : (450 - t / 2) ;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700667 input_report_abs(input, ABS_Z, t);
Ping Cheng3bea7332006-07-13 18:01:36 -0700668 } else {
669 /* 4D mouse rotation packet */
670 t = (data[6] << 3) | ((data[7] >> 5) & 7);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700671 input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
Ping Cheng3bea7332006-07-13 18:01:36 -0700672 ((t - 1) / 2) : -t / 2);
673 }
674
Jason Childse33da8a2010-02-17 22:38:31 -0800675 } else if (!(data[1] & 0x10) && features->type < INTUOS3S) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700676 /* 4D mouse packet */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700677 input_report_key(input, BTN_LEFT, data[8] & 0x01);
678 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
679 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
Ping Cheng3bea7332006-07-13 18:01:36 -0700680
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700681 input_report_key(input, BTN_SIDE, data[8] & 0x20);
682 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700683 t = (data[6] << 2) | ((data[7] >> 6) & 3);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700684 input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
Ping Cheng3bea7332006-07-13 18:01:36 -0700685
686 } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700687 /* I4 mouse */
Jason Childse33da8a2010-02-17 22:38:31 -0800688 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700689 input_report_key(input, BTN_LEFT, data[6] & 0x01);
690 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
691 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
692 input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
Ping Cheng6f660f12009-05-08 18:30:33 -0700693 - ((data[7] & 0x40) >> 6));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700694 input_report_key(input, BTN_SIDE, data[6] & 0x08);
695 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
Ping Cheng6f660f12009-05-08 18:30:33 -0700696
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700697 input_report_abs(input, ABS_TILT_X,
Ping Cheng6f660f12009-05-08 18:30:33 -0700698 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700699 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
Ping Cheng6f660f12009-05-08 18:30:33 -0700700 } else {
701 /* 2D mouse packet */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700702 input_report_key(input, BTN_LEFT, data[8] & 0x04);
703 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
704 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
705 input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
Ping Cheng3bea7332006-07-13 18:01:36 -0700706 - ((data[8] & 0x02) >> 1));
707
Ping Cheng6f660f12009-05-08 18:30:33 -0700708 /* I3 2D mouse side buttons */
Jason Childse33da8a2010-02-17 22:38:31 -0800709 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700710 input_report_key(input, BTN_SIDE, data[8] & 0x40);
711 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
Ping Cheng6f660f12009-05-08 18:30:33 -0700712 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700713 }
Jason Childse33da8a2010-02-17 22:38:31 -0800714 } else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
715 features->type == INTUOS4L) &&
Ping Cheng6f660f12009-05-08 18:30:33 -0700716 wacom->tool[idx] == BTN_TOOL_LENS) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700717 /* Lens cursor packets */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700718 input_report_key(input, BTN_LEFT, data[8] & 0x01);
719 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
720 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
721 input_report_key(input, BTN_SIDE, data[8] & 0x10);
722 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
Ping Cheng3bea7332006-07-13 18:01:36 -0700723 }
724 }
725
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700726 input_report_abs(input, ABS_MISC, wacom->id[idx]); /* report tool id */
727 input_report_key(input, wacom->tool[idx], 1);
728 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700729 return 1;
730}
731
Ping Cheng84eb5aa2011-03-12 20:35:18 -0800732static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
733{
734 struct input_dev *input = wacom->input;
735 unsigned char *data = wacom->data;
736 int contact_with_no_pen_down_count = 0;
737 int i;
738
739 for (i = 0; i < 2; i++) {
740 int p = data[1] & (1 << i);
741 bool touch = p && !wacom->shared->stylus_in_proximity;
742
743 input_mt_slot(input, i);
744 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
745 if (touch) {
746 int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
747 int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
748
749 input_report_abs(input, ABS_MT_POSITION_X, x);
750 input_report_abs(input, ABS_MT_POSITION_Y, y);
751 contact_with_no_pen_down_count++;
752 }
753 }
754
755 /* keep touch state for pen event */
756 wacom->shared->touch_down = (contact_with_no_pen_down_count > 0);
757
758 input_mt_report_pointer_emulation(input, true);
759
760 return 1;
761}
762
Ping Chenga43c7c52011-03-12 20:34:42 -0800763static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
Ping Chengec67bbe2009-12-15 00:35:24 -0800764{
765 char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700766 struct input_dev *input = wacom->input;
Ping Chenga43c7c52011-03-12 20:34:42 -0800767 bool prox;
768 int x = 0, y = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800769
Ping Chenga43c7c52011-03-12 20:34:42 -0800770 if (!wacom->shared->stylus_in_proximity) {
771 if (len == WACOM_PKGLEN_TPC1FG) {
772 prox = data[0] & 0x01;
773 x = get_unaligned_le16(&data[1]);
774 y = get_unaligned_le16(&data[3]);
775 } else { /* with capacity */
776 prox = data[1] & 0x01;
777 x = le16_to_cpup((__le16 *)&data[2]);
778 y = le16_to_cpup((__le16 *)&data[4]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800779 }
Ping Chenga43c7c52011-03-12 20:34:42 -0800780 } else
781 /* force touch out when pen is in prox */
782 prox = 0;
783
784 if (prox) {
785 input_report_abs(input, ABS_X, x);
786 input_report_abs(input, ABS_Y, y);
Ping Chengec67bbe2009-12-15 00:35:24 -0800787 }
Ping Chenga43c7c52011-03-12 20:34:42 -0800788 input_report_key(input, BTN_TOUCH, prox);
789
790 /* keep touch state for pen events */
791 wacom->shared->touch_down = prox;
792
793 return 1;
Ping Chengec67bbe2009-12-15 00:35:24 -0800794}
795
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800796static int wacom_tpc_pen(struct wacom_wac *wacom)
Ping Cheng545f4e92008-11-24 11:44:27 -0500797{
Jason Childse33da8a2010-02-17 22:38:31 -0800798 struct wacom_features *features = &wacom->features;
Ping Cheng545f4e92008-11-24 11:44:27 -0500799 char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700800 struct input_dev *input = wacom->input;
Ping Chenga43c7c52011-03-12 20:34:42 -0800801 int pressure;
802 bool prox = data[1] & 0x20;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800803
Ping Chenga43c7c52011-03-12 20:34:42 -0800804 if (!wacom->shared->stylus_in_proximity) /* first in prox */
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800805 /* Going into proximity select tool */
806 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800807
Ping Chenga43c7c52011-03-12 20:34:42 -0800808 /* keep pen state for touch events */
809 wacom->shared->stylus_in_proximity = prox;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800810
Ping Chenga43c7c52011-03-12 20:34:42 -0800811 /* send pen events only when touch is up or forced out */
812 if (!wacom->shared->touch_down) {
813 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
814 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
815 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
816 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
817 pressure = ((data[7] & 0x01) << 8) | data[6];
818 if (pressure < 0)
819 pressure = features->pressure_max + pressure + 1;
820 input_report_abs(input, ABS_PRESSURE, pressure);
821 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
822 input_report_key(input, wacom->tool[0], prox);
823 return 1;
824 }
825
826 return 0;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800827}
828
829static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
830{
831 char *data = wacom->data;
Ping Cheng545f4e92008-11-24 11:44:27 -0500832
833 dbg("wacom_tpc_irq: received report #%d", data[0]);
834
Ping Cheng31175a82012-01-31 00:07:33 -0800835 switch (len) {
836 case WACOM_PKGLEN_TPC1FG:
837 return wacom_tpc_single_touch(wacom, len);
838
839 case WACOM_PKGLEN_TPC2FG:
840 return wacom_tpc_mt_touch(wacom);
841
842 default:
843 switch (data[0]) {
844 case WACOM_REPORT_TPC1FG:
845 case WACOM_REPORT_TPCHID:
846 case WACOM_REPORT_TPCST:
847 return wacom_tpc_single_touch(wacom, len);
848
849 case WACOM_REPORT_PENABLED:
850 return wacom_tpc_pen(wacom);
851 }
852 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500853
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800854 return 0;
Ping Cheng545f4e92008-11-24 11:44:27 -0500855}
856
Chris Bagwelle1d38e42010-09-12 00:09:27 -0700857static int wacom_bpt_touch(struct wacom_wac *wacom)
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700858{
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -0700859 struct wacom_features *features = &wacom->features;
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700860 struct input_dev *input = wacom->input;
861 unsigned char *data = wacom->data;
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700862 int i;
863
Chris Bagwell5a6c8652011-11-07 19:52:42 -0800864 if (data[0] != 0x02)
865 return 0;
866
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700867 for (i = 0; i < 2; i++) {
Chris Bagwell8f906862011-09-09 13:38:10 -0700868 int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
869 bool touch = data[offset + 3] & 0x80;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100870
Chris Bagwell33d5f712010-09-12 00:12:28 -0700871 /*
872 * Touch events need to be disabled while stylus is
873 * in proximity because user's hand is resting on touchpad
874 * and sending unwanted events. User expects tablet buttons
875 * to continue working though.
876 */
Chris Bagwell8f906862011-09-09 13:38:10 -0700877 touch = touch && !wacom->shared->stylus_in_proximity;
878
879 input_mt_slot(input, i);
880 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100881 if (touch) {
Chris Bagwell8f906862011-09-09 13:38:10 -0700882 int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
883 int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -0700884 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
885 x <<= 5;
886 y <<= 5;
887 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700888 input_report_abs(input, ABS_MT_POSITION_X, x);
889 input_report_abs(input, ABS_MT_POSITION_Y, y);
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700890 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700891 }
892
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100893 input_mt_report_pointer_emulation(input, true);
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700894
895 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
896 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
897 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
898 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
899
900 input_sync(input);
901
902 return 0;
903}
904
Chris Bagwell73149ab2011-10-26 22:34:21 -0700905static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
906{
907 struct input_dev *input = wacom->input;
908 int slot_id = data[0] - 2; /* data[0] is between 2 and 17 */
909 bool touch = data[1] & 0x80;
910
911 touch = touch && !wacom->shared->stylus_in_proximity;
912
913 input_mt_slot(input, slot_id);
914 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
915
916 if (touch) {
917 int x = (data[2] << 4) | (data[4] >> 4);
918 int y = (data[3] << 4) | (data[4] & 0x0f);
919 int w = data[6];
920
921 input_report_abs(input, ABS_MT_POSITION_X, x);
922 input_report_abs(input, ABS_MT_POSITION_Y, y);
923 input_report_abs(input, ABS_MT_TOUCH_MAJOR, w);
924 }
925}
926
927static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
928{
929 struct input_dev *input = wacom->input;
930
931 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
932 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
933 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
934 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
935}
936
937static int wacom_bpt3_touch(struct wacom_wac *wacom)
938{
939 struct input_dev *input = wacom->input;
940 unsigned char *data = wacom->data;
941 int count = data[1] & 0x03;
942 int i;
943
Chris Bagwell5a6c8652011-11-07 19:52:42 -0800944 if (data[0] != 0x02)
945 return 0;
946
Chris Bagwell73149ab2011-10-26 22:34:21 -0700947 /* data has up to 7 fixed sized 8-byte messages starting at data[2] */
948 for (i = 0; i < count; i++) {
949 int offset = (8 * i) + 2;
950 int msg_id = data[offset];
951
952 if (msg_id >= 2 && msg_id <= 17)
953 wacom_bpt3_touch_msg(wacom, data + offset);
954 else if (msg_id == 128)
955 wacom_bpt3_button_msg(wacom, data + offset);
956
957 }
958
959 input_mt_report_pointer_emulation(input, true);
960
961 input_sync(input);
962
963 return 0;
964}
965
Chris Bagwell2aaacb12010-09-12 00:11:35 -0700966static int wacom_bpt_pen(struct wacom_wac *wacom)
967{
968 struct input_dev *input = wacom->input;
969 unsigned char *data = wacom->data;
970 int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
971
Chris Bagwell5a6c8652011-11-07 19:52:42 -0800972 if (data[0] != 0x02)
973 return 0;
974
Chris Bagwellc5981412011-10-26 22:28:34 -0700975 prox = (data[1] & 0x20) == 0x20;
Chris Bagwell2aaacb12010-09-12 00:11:35 -0700976
977 /*
978 * All reports shared between PEN and RUBBER tool must be
979 * forced to a known starting value (zero) when transitioning to
980 * out-of-prox.
981 *
982 * If not reset then, to userspace, it will look like lost events
983 * if new tool comes in-prox with same values as previous tool sent.
984 *
985 * Hardware does report zero in most out-of-prox cases but not all.
986 */
987 if (prox) {
988 if (!wacom->shared->stylus_in_proximity) {
989 if (data[1] & 0x08) {
990 wacom->tool[0] = BTN_TOOL_RUBBER;
991 wacom->id[0] = ERASER_DEVICE_ID;
992 } else {
993 wacom->tool[0] = BTN_TOOL_PEN;
994 wacom->id[0] = STYLUS_DEVICE_ID;
995 }
996 wacom->shared->stylus_in_proximity = true;
997 }
998 x = le16_to_cpup((__le16 *)&data[2]);
999 y = le16_to_cpup((__le16 *)&data[4]);
1000 p = le16_to_cpup((__le16 *)&data[6]);
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001001 /*
1002 * Convert distance from out prox to distance from tablet.
1003 * distance will be greater than distance_max once
1004 * touching and applying pressure; do not report negative
1005 * distance.
1006 */
1007 if (data[8] <= wacom->features.distance_max)
1008 d = wacom->features.distance_max - data[8];
1009
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001010 pen = data[1] & 0x01;
1011 btn1 = data[1] & 0x02;
1012 btn2 = data[1] & 0x04;
1013 }
1014
1015 input_report_key(input, BTN_TOUCH, pen);
1016 input_report_key(input, BTN_STYLUS, btn1);
1017 input_report_key(input, BTN_STYLUS2, btn2);
1018
1019 input_report_abs(input, ABS_X, x);
1020 input_report_abs(input, ABS_Y, y);
1021 input_report_abs(input, ABS_PRESSURE, p);
1022 input_report_abs(input, ABS_DISTANCE, d);
1023
1024 if (!prox) {
1025 wacom->id[0] = 0;
1026 wacom->shared->stylus_in_proximity = false;
1027 }
1028
1029 input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
1030 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
1031
1032 return 1;
1033}
1034
Chris Bagwelle1d38e42010-09-12 00:09:27 -07001035static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
1036{
1037 if (len == WACOM_PKGLEN_BBTOUCH)
1038 return wacom_bpt_touch(wacom);
Chris Bagwell73149ab2011-10-26 22:34:21 -07001039 else if (len == WACOM_PKGLEN_BBTOUCH3)
1040 return wacom_bpt3_touch(wacom);
1041 else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001042 return wacom_bpt_pen(wacom);
Chris Bagwelle1d38e42010-09-12 00:09:27 -07001043
1044 return 0;
1045}
1046
Chris Bagwelld3825d52012-03-25 23:26:11 -07001047static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
1048{
1049 if (len != WACOM_PKGLEN_WIRELESS)
1050 return 0;
1051
1052 return 0;
1053}
1054
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001055void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
Ping Cheng3bea7332006-07-13 18:01:36 -07001056{
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001057 bool sync;
1058
Jason Childse33da8a2010-02-17 22:38:31 -08001059 switch (wacom_wac->features.type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001060 case PENPARTNER:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001061 sync = wacom_penpartner_irq(wacom_wac);
1062 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05001063
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001064 case PL:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001065 sync = wacom_pl_irq(wacom_wac);
1066 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05001067
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001068 case WACOM_G4:
1069 case GRAPHIRE:
1070 case WACOM_MO:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001071 sync = wacom_graphire_irq(wacom_wac);
1072 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05001073
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001074 case PTU:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001075 sync = wacom_ptu_irq(wacom_wac);
1076 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05001077
Ping Chengc8f2edc2010-06-28 01:10:51 -07001078 case DTU:
1079 sync = wacom_dtu_irq(wacom_wac);
1080 break;
1081
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001082 case INTUOS:
1083 case INTUOS3S:
1084 case INTUOS3:
1085 case INTUOS3L:
1086 case INTUOS4S:
1087 case INTUOS4:
1088 case INTUOS4L:
1089 case CINTIQ:
1090 case WACOM_BEE:
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001091 case WACOM_21UX2:
Jason Gerecke803296b2011-12-12 00:11:45 -08001092 case WACOM_24HD:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001093 sync = wacom_intuos_irq(wacom_wac);
1094 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05001095
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001096 case TABLETPC:
1097 case TABLETPC2FG:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001098 sync = wacom_tpc_irq(wacom_wac, len);
1099 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05001100
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001101 case BAMBOO_PT:
1102 sync = wacom_bpt_irq(wacom_wac, len);
1103 break;
1104
Chris Bagwelld3825d52012-03-25 23:26:11 -07001105 case WIRELESS:
1106 sync = wacom_wireless_irq(wacom_wac, len);
1107 break;
1108
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001109 default:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001110 sync = false;
1111 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07001112 }
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07001113
1114 if (sync)
1115 input_sync(wacom_wac->input);
Ping Cheng3bea7332006-07-13 18:01:36 -07001116}
1117
Ping Cheng6521d0b2010-10-24 21:53:40 -07001118static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
Ping Cheng3bea7332006-07-13 18:01:36 -07001119{
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001120 struct input_dev *input_dev = wacom_wac->input;
1121
1122 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001123
1124 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1125 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001126 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
1127 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
1128 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001129 __set_bit(BTN_STYLUS, input_dev->keybit);
1130 __set_bit(BTN_STYLUS2, input_dev->keybit);
1131
1132 input_set_abs_params(input_dev, ABS_DISTANCE,
1133 0, wacom_wac->features.distance_max, 0, 0);
1134 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
1135 input_set_abs_params(input_dev, ABS_TILT_X, 0, 127, 0, 0);
1136 input_set_abs_params(input_dev, ABS_TILT_Y, 0, 127, 0, 0);
Ping Cheng6521d0b2010-10-24 21:53:40 -07001137}
1138
1139static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
1140{
1141 struct input_dev *input_dev = wacom_wac->input;
1142
1143 input_set_capability(input_dev, EV_REL, REL_WHEEL);
1144
1145 wacom_setup_cintiq(wacom_wac);
1146
1147 __set_bit(BTN_LEFT, input_dev->keybit);
1148 __set_bit(BTN_RIGHT, input_dev->keybit);
1149 __set_bit(BTN_MIDDLE, input_dev->keybit);
1150 __set_bit(BTN_SIDE, input_dev->keybit);
1151 __set_bit(BTN_EXTRA, input_dev->keybit);
1152 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
1153 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
1154
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001155 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
1156 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
1157}
1158
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001159void wacom_setup_device_quirks(struct wacom_features *features)
1160{
1161
1162 /* touch device found but size is not defined. use default */
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001163 if (features->device_type == BTN_TOOL_FINGER && !features->x_max) {
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001164 features->x_max = 1023;
1165 features->y_max = 1023;
1166 }
1167
1168 /* these device have multiple inputs */
1169 if (features->type == TABLETPC || features->type == TABLETPC2FG ||
Chris Bagwelld3825d52012-03-25 23:26:11 -07001170 features->type == BAMBOO_PT || features->type == WIRELESS)
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001171 features->quirks |= WACOM_QUIRK_MULTI_INPUT;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001172
Chris Bagwell73149ab2011-10-26 22:34:21 -07001173 /* quirk for bamboo touch with 2 low res touches */
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001174 if (features->type == BAMBOO_PT &&
Chris Bagwell73149ab2011-10-26 22:34:21 -07001175 features->pktlen == WACOM_PKGLEN_BBTOUCH) {
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07001176 features->x_max <<= 5;
1177 features->y_max <<= 5;
1178 features->x_fuzz <<= 5;
1179 features->y_fuzz <<= 5;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07001180 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001181 }
Chris Bagwelld3825d52012-03-25 23:26:11 -07001182
1183 if (features->type == WIRELESS) {
1184
1185 /* monitor never has input and pen/touch have delayed create */
1186 features->quirks |= WACOM_QUIRK_NO_INPUT;
1187
1188 /* must be monitor interface if no device_type set */
1189 if (!features->device_type)
1190 features->quirks |= WACOM_QUIRK_MONITOR;
1191 }
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001192}
1193
Ping Cheng409550f2011-01-25 18:03:13 -08001194static unsigned int wacom_calculate_touch_res(unsigned int logical_max,
1195 unsigned int physical_max)
1196{
1197 /* Touch physical dimensions are in 100th of mm */
1198 return (logical_max * 100) / physical_max;
1199}
1200
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001201void wacom_setup_input_capabilities(struct input_dev *input_dev,
1202 struct wacom_wac *wacom_wac)
1203{
1204 struct wacom_features *features = &wacom_wac->features;
1205 int i;
1206
1207 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1208
1209 __set_bit(BTN_TOUCH, input_dev->keybit);
1210
Henrik Rydbergfed87e62010-09-05 12:25:11 -07001211 input_set_abs_params(input_dev, ABS_X, 0, features->x_max,
1212 features->x_fuzz, 0);
1213 input_set_abs_params(input_dev, ABS_Y, 0, features->y_max,
1214 features->y_fuzz, 0);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001215
Ping Chenge35fb8c2011-03-26 21:16:05 -07001216 if (features->device_type == BTN_TOOL_PEN) {
Ping Chengcfb7d552011-08-26 23:10:02 -07001217 input_set_abs_params(input_dev, ABS_PRESSURE, 0, features->pressure_max,
1218 features->pressure_fuzz, 0);
1219
Ping Chenge35fb8c2011-03-26 21:16:05 -07001220 /* penabled devices have fixed resolution for each model */
1221 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
1222 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
1223 } else {
1224 input_abs_set_res(input_dev, ABS_X,
1225 wacom_calculate_touch_res(features->x_max,
1226 features->x_phy));
1227 input_abs_set_res(input_dev, ABS_Y,
1228 wacom_calculate_touch_res(features->y_max,
1229 features->y_phy));
1230 }
1231
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001232 __set_bit(ABS_MISC, input_dev->absbit);
1233
Jason Childse33da8a2010-02-17 22:38:31 -08001234 switch (wacom_wac->features.type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001235 case WACOM_MO:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001236 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
1237 /* fall through */
Ping Chengec67bbe2009-12-15 00:35:24 -08001238
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001239 case WACOM_G4:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001240 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
1241
Ping Cheng0bd10ef2011-07-06 18:05:42 -07001242 __set_bit(BTN_BACK, input_dev->keybit);
1243 __set_bit(BTN_FORWARD, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001244 /* fall through */
1245
1246 case GRAPHIRE:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001247 input_set_capability(input_dev, EV_REL, REL_WHEEL);
1248
1249 __set_bit(BTN_LEFT, input_dev->keybit);
1250 __set_bit(BTN_RIGHT, input_dev->keybit);
1251 __set_bit(BTN_MIDDLE, input_dev->keybit);
1252
1253 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1254 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1255 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
1256 __set_bit(BTN_STYLUS, input_dev->keybit);
1257 __set_bit(BTN_STYLUS2, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07001258
1259 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001260 break;
1261
Jason Gerecke803296b2011-12-12 00:11:45 -08001262 case WACOM_24HD:
1263 __set_bit(BTN_A, input_dev->keybit);
1264 __set_bit(BTN_B, input_dev->keybit);
1265 __set_bit(BTN_C, input_dev->keybit);
1266 __set_bit(BTN_X, input_dev->keybit);
1267 __set_bit(BTN_Y, input_dev->keybit);
1268 __set_bit(BTN_Z, input_dev->keybit);
1269
1270 for (i = 0; i < 10; i++)
1271 __set_bit(BTN_0 + i, input_dev->keybit);
1272
1273 __set_bit(KEY_PROG1, input_dev->keybit);
1274 __set_bit(KEY_PROG2, input_dev->keybit);
1275 __set_bit(KEY_PROG3, input_dev->keybit);
1276
1277 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1278 input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0);
1279 wacom_setup_cintiq(wacom_wac);
1280 break;
1281
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001282 case WACOM_21UX2:
1283 __set_bit(BTN_A, input_dev->keybit);
1284 __set_bit(BTN_B, input_dev->keybit);
1285 __set_bit(BTN_C, input_dev->keybit);
1286 __set_bit(BTN_X, input_dev->keybit);
1287 __set_bit(BTN_Y, input_dev->keybit);
1288 __set_bit(BTN_Z, input_dev->keybit);
1289 __set_bit(BTN_BASE, input_dev->keybit);
1290 __set_bit(BTN_BASE2, input_dev->keybit);
1291 /* fall through */
1292
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001293 case WACOM_BEE:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001294 __set_bit(BTN_8, input_dev->keybit);
1295 __set_bit(BTN_9, input_dev->keybit);
1296 /* fall through */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001297
Ping Cheng6521d0b2010-10-24 21:53:40 -07001298 case CINTIQ:
1299 for (i = 0; i < 8; i++)
1300 __set_bit(BTN_0 + i, input_dev->keybit);
Ping Cheng6521d0b2010-10-24 21:53:40 -07001301
Jason Gerecked6069da2011-10-04 22:50:45 -07001302 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
1303 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
Ping Cheng6521d0b2010-10-24 21:53:40 -07001304 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
Jason Gerecke35120692011-09-08 09:38:14 -07001305
1306 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
1307
Ping Cheng6521d0b2010-10-24 21:53:40 -07001308 wacom_setup_cintiq(wacom_wac);
1309 break;
1310
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001311 case INTUOS3:
1312 case INTUOS3L:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001313 __set_bit(BTN_4, input_dev->keybit);
1314 __set_bit(BTN_5, input_dev->keybit);
1315 __set_bit(BTN_6, input_dev->keybit);
1316 __set_bit(BTN_7, input_dev->keybit);
1317
1318 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001319 /* fall through */
1320
1321 case INTUOS3S:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001322 __set_bit(BTN_0, input_dev->keybit);
1323 __set_bit(BTN_1, input_dev->keybit);
1324 __set_bit(BTN_2, input_dev->keybit);
1325 __set_bit(BTN_3, input_dev->keybit);
1326
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001327 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
1328 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001329 /* fall through */
1330
1331 case INTUOS:
Jason Gerecke35120692011-09-08 09:38:14 -07001332 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1333
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001334 wacom_setup_intuos(wacom_wac);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001335 break;
1336
1337 case INTUOS4:
1338 case INTUOS4L:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001339 __set_bit(BTN_7, input_dev->keybit);
1340 __set_bit(BTN_8, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001341 /* fall through */
1342
1343 case INTUOS4S:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001344 for (i = 0; i < 7; i++)
1345 __set_bit(BTN_0 + i, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001346
1347 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1348 wacom_setup_intuos(wacom_wac);
Jason Gerecke35120692011-09-08 09:38:14 -07001349
1350 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001351 break;
1352
1353 case TABLETPC2FG:
Ping Cheng8b4a0c12012-01-31 00:07:33 -08001354 if (features->device_type == BTN_TOOL_FINGER) {
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001355
1356 input_mt_init_slots(input_dev, 2);
1357 input_set_abs_params(input_dev, ABS_MT_TOOL_TYPE,
1358 0, MT_TOOL_MAX, 0, 0);
1359 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
1360 0, features->x_max, 0, 0);
1361 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
1362 0, features->y_max, 0, 0);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001363 }
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001364 /* fall through */
1365
1366 case TABLETPC:
Ping Chenga43c7c52011-03-12 20:34:42 -08001367 __clear_bit(ABS_MISC, input_dev->absbit);
1368
Jason Gerecke35120692011-09-08 09:38:14 -07001369 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
1370
Ping Chenge35fb8c2011-03-26 21:16:05 -07001371 if (features->device_type != BTN_TOOL_PEN)
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001372 break; /* no need to process stylus stuff */
Ping Chenge35fb8c2011-03-26 21:16:05 -07001373
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001374 /* fall through */
1375
1376 case PL:
Ping Chengc8f2edc2010-06-28 01:10:51 -07001377 case DTU:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001378 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07001379 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001380 __set_bit(BTN_STYLUS, input_dev->keybit);
1381 __set_bit(BTN_STYLUS2, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07001382
1383 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
1384 break;
1385
1386 case PTU:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001387 __set_bit(BTN_STYLUS2, input_dev->keybit);
1388 /* fall through */
1389
1390 case PENPARTNER:
Jason Gerecke1fab84a2011-08-26 23:18:22 -07001391 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001392 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
Jason Gerecke1fab84a2011-08-26 23:18:22 -07001393 __set_bit(BTN_STYLUS, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07001394
1395 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001396 break;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001397
1398 case BAMBOO_PT:
1399 __clear_bit(ABS_MISC, input_dev->absbit);
1400
Jason Gerecke35120692011-09-08 09:38:14 -07001401 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
1402
Ping Cheng8b4a0c12012-01-31 00:07:33 -08001403 if (features->device_type == BTN_TOOL_FINGER) {
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001404 __set_bit(BTN_LEFT, input_dev->keybit);
1405 __set_bit(BTN_FORWARD, input_dev->keybit);
1406 __set_bit(BTN_BACK, input_dev->keybit);
1407 __set_bit(BTN_RIGHT, input_dev->keybit);
1408
1409 __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
1410 __set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit);
1411
Chris Bagwell73149ab2011-10-26 22:34:21 -07001412 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
1413 __set_bit(BTN_TOOL_TRIPLETAP,
1414 input_dev->keybit);
1415 __set_bit(BTN_TOOL_QUADTAP,
1416 input_dev->keybit);
1417
1418 input_mt_init_slots(input_dev, 16);
1419
1420 input_set_abs_params(input_dev,
1421 ABS_MT_TOUCH_MAJOR,
1422 0, 255, 0, 0);
1423 } else {
1424 input_mt_init_slots(input_dev, 2);
1425 }
1426
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001427 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
1428 0, features->x_max,
1429 features->x_fuzz, 0);
1430 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
1431 0, features->y_max,
1432 features->y_fuzz, 0);
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001433 } else if (features->device_type == BTN_TOOL_PEN) {
1434 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1435 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1436 __set_bit(BTN_STYLUS, input_dev->keybit);
1437 __set_bit(BTN_STYLUS2, input_dev->keybit);
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001438 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
1439 features->distance_max,
1440 0, 0);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001441 }
1442 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07001443 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001444}
1445
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001446static const struct wacom_features wacom_features_0x00 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001447 { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255,
1448 0, PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001449static const struct wacom_features wacom_features_0x10 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001450 { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511,
1451 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001452static const struct wacom_features wacom_features_0x11 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001453 { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511,
1454 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001455static const struct wacom_features wacom_features_0x12 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001456 { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511,
1457 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001458static const struct wacom_features wacom_features_0x13 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001459 { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511,
1460 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001461static const struct wacom_features wacom_features_0x14 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001462 { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1463 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001464static const struct wacom_features wacom_features_0x15 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001465 { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511,
1466 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001467static const struct wacom_features wacom_features_0x16 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001468 { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1469 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001470static const struct wacom_features wacom_features_0x17 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001471 { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511,
1472 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001473static const struct wacom_features wacom_features_0x18 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001474 { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511,
1475 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001476static const struct wacom_features wacom_features_0x19 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001477 { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1478 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001479static const struct wacom_features wacom_features_0x60 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001480 { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1481 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001482static const struct wacom_features wacom_features_0x61 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001483 { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255,
1484 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001485static const struct wacom_features wacom_features_0x62 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001486 { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1487 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001488static const struct wacom_features wacom_features_0x63 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001489 { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511,
1490 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001491static const struct wacom_features wacom_features_0x64 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001492 { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511,
1493 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001494static const struct wacom_features wacom_features_0x65 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001495 { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511,
1496 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001497static const struct wacom_features wacom_features_0x69 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001498 { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1499 63, GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07001500static const struct wacom_features wacom_features_0x6A =
1501 { "Wacom Bamboo1 4x6", WACOM_PKGLEN_GRAPHIRE, 14760, 9225, 1023,
1502 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1503static const struct wacom_features wacom_features_0x6B =
1504 { "Wacom Bamboo1 5x8", WACOM_PKGLEN_GRAPHIRE, 21648, 13530, 1023,
1505 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001506static const struct wacom_features wacom_features_0x20 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001507 { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023,
1508 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001509static const struct wacom_features wacom_features_0x21 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001510 { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1511 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001512static const struct wacom_features wacom_features_0x22 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001513 { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023,
1514 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001515static const struct wacom_features wacom_features_0x23 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001516 { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023,
1517 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001518static const struct wacom_features wacom_features_0x24 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001519 { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023,
1520 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001521static const struct wacom_features wacom_features_0x30 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001522 { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255,
1523 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001524static const struct wacom_features wacom_features_0x31 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001525 { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255,
1526 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001527static const struct wacom_features wacom_features_0x32 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001528 { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255,
1529 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001530static const struct wacom_features wacom_features_0x33 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001531 { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255,
1532 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001533static const struct wacom_features wacom_features_0x34 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001534 { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511,
1535 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001536static const struct wacom_features wacom_features_0x35 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001537 { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511,
1538 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001539static const struct wacom_features wacom_features_0x37 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001540 { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511,
1541 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001542static const struct wacom_features wacom_features_0x38 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001543 { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511,
1544 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001545static const struct wacom_features wacom_features_0x39 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001546 { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511,
1547 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001548static const struct wacom_features wacom_features_0xC4 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001549 { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511,
1550 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001551static const struct wacom_features wacom_features_0xC0 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001552 { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511,
1553 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001554static const struct wacom_features wacom_features_0xC2 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001555 { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511,
1556 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001557static const struct wacom_features wacom_features_0x03 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001558 { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511,
1559 0, PTU, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001560static const struct wacom_features wacom_features_0x41 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001561 { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023,
1562 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001563static const struct wacom_features wacom_features_0x42 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001564 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1565 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001566static const struct wacom_features wacom_features_0x43 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001567 { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023,
1568 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001569static const struct wacom_features wacom_features_0x44 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001570 { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023,
1571 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001572static const struct wacom_features wacom_features_0x45 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001573 { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023,
1574 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001575static const struct wacom_features wacom_features_0xB0 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001576 { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023,
1577 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001578static const struct wacom_features wacom_features_0xB1 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001579 { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023,
1580 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001581static const struct wacom_features wacom_features_0xB2 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001582 { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023,
1583 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001584static const struct wacom_features wacom_features_0xB3 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001585 { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023,
1586 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001587static const struct wacom_features wacom_features_0xB4 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001588 { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023,
1589 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001590static const struct wacom_features wacom_features_0xB5 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001591 { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023,
1592 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001593static const struct wacom_features wacom_features_0xB7 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001594 { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023,
1595 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001596static const struct wacom_features wacom_features_0xB8 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001597 { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047,
1598 63, INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001599static const struct wacom_features wacom_features_0xB9 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001600 { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047,
1601 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001602static const struct wacom_features wacom_features_0xBA =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001603 { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047,
1604 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001605static const struct wacom_features wacom_features_0xBB =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001606 { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047,
1607 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001608static const struct wacom_features wacom_features_0xBC =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001609 { "Wacom Intuos4 WL", WACOM_PKGLEN_INTUOS, 40840, 25400, 2047,
1610 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Jason Gerecke803296b2011-12-12 00:11:45 -08001611static const struct wacom_features wacom_features_0xF4 =
1612 { "Wacom Cintiq 24HD", WACOM_PKGLEN_INTUOS, 104480, 65600, 2047,
1613 63, WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001614static const struct wacom_features wacom_features_0x3F =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001615 { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023,
1616 63, CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001617static const struct wacom_features wacom_features_0xC5 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001618 { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023,
1619 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001620static const struct wacom_features wacom_features_0xC6 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001621 { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023,
1622 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001623static const struct wacom_features wacom_features_0xC7 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001624 { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511,
1625 0, PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengc8f2edc2010-06-28 01:10:51 -07001626static const struct wacom_features wacom_features_0xCE =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001627 { "Wacom DTU2231", WACOM_PKGLEN_GRAPHIRE, 47864, 27011, 511,
1628 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengc8f2edc2010-06-28 01:10:51 -07001629static const struct wacom_features wacom_features_0xF0 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001630 { "Wacom DTU1631", WACOM_PKGLEN_GRAPHIRE, 34623, 19553, 511,
1631 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001632static const struct wacom_features wacom_features_0xCC =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001633 { "Wacom Cintiq 21UX2", WACOM_PKGLEN_INTUOS, 87200, 65600, 2047,
1634 63, WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001635static const struct wacom_features wacom_features_0x90 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001636 { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1637 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001638static const struct wacom_features wacom_features_0x93 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001639 { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1640 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07001641static const struct wacom_features wacom_features_0x97 =
1642 { "Wacom ISDv4 97", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 511,
1643 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001644static const struct wacom_features wacom_features_0x9A =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001645 { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1646 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001647static const struct wacom_features wacom_features_0x9F =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001648 { "Wacom ISDv4 9F", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1649 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001650static const struct wacom_features wacom_features_0xE2 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001651 { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255,
1652 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001653static const struct wacom_features wacom_features_0xE3 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001654 { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255,
1655 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07001656static const struct wacom_features wacom_features_0xE6 =
1657 { "Wacom ISDv4 E6", WACOM_PKGLEN_TPC2FG, 27760, 15694, 255,
1658 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Chris Bagwell0d0e3062011-12-11 23:50:59 -08001659static const struct wacom_features wacom_features_0xEC =
1660 { "Wacom ISDv4 EC", WACOM_PKGLEN_GRAPHIRE, 25710, 14500, 255,
1661 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001662static const struct wacom_features wacom_features_0x47 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001663 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1664 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Chris Bagwelld3825d52012-03-25 23:26:11 -07001665static const struct wacom_features wacom_features_0x84 =
1666 { "Wacom Wireless Receiver", WACOM_PKGLEN_WIRELESS, 0, 0, 0,
1667 0, WIRELESS, 0, 0 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001668static const struct wacom_features wacom_features_0xD0 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001669 { "Wacom Bamboo 2FG", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001670 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001671static const struct wacom_features wacom_features_0xD1 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001672 { "Wacom Bamboo 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001673 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001674static const struct wacom_features wacom_features_0xD2 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001675 { "Wacom Bamboo Craft", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001676 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001677static const struct wacom_features wacom_features_0xD3 =
Chris Bagwellae927562011-10-10 08:52:32 -07001678 { "Wacom Bamboo 2FG 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001679 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Kevin Granade57a78722010-12-10 23:04:02 -08001680static const struct wacom_features wacom_features_0xD4 =
Ping Chenga001a8f2011-06-27 12:57:58 -07001681 { "Wacom Bamboo Pen", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001682 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Gerard Braad18adad12011-08-16 00:17:56 -07001683static const struct wacom_features wacom_features_0xD5 =
Chris Bagwellae927562011-10-10 08:52:32 -07001684 { "Wacom Bamboo Pen 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001685 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001686static const struct wacom_features wacom_features_0xD6 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001687 { "Wacom BambooPT 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001688 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001689static const struct wacom_features wacom_features_0xD7 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001690 { "Wacom BambooPT 2FG Small", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001691 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001692static const struct wacom_features wacom_features_0xD8 =
Chris Bagwellae927562011-10-10 08:52:32 -07001693 { "Wacom Bamboo Comic 2FG", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001694 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001695static const struct wacom_features wacom_features_0xDA =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001696 { "Wacom Bamboo 2FG 4x5 SE", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001697 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
David Foley47d09232010-12-07 21:05:59 -08001698static struct wacom_features wacom_features_0xDB =
Chris Bagwellae927562011-10-10 08:52:32 -07001699 { "Wacom Bamboo 2FG 6x8 SE", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023,
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001700 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Chris Bagwell73149ab2011-10-26 22:34:21 -07001701static const struct wacom_features wacom_features_0xDD =
1702 { "Wacom Bamboo Connect", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023,
1703 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1704static const struct wacom_features wacom_features_0xDE =
1705 { "Wacom Bamboo 16FG 4x5", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023,
1706 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
1707static const struct wacom_features wacom_features_0xDF =
1708 { "Wacom Bamboo 16FG 6x8", WACOM_PKGLEN_BBPEN, 21648, 13700, 1023,
1709 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08001710static const struct wacom_features wacom_features_0x6004 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001711 { "ISD-V4", WACOM_PKGLEN_GRAPHIRE, 12800, 8000, 255,
1712 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Bastian Blankb036f6f2010-02-10 23:06:23 -08001713
1714#define USB_DEVICE_WACOM(prod) \
1715 USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \
1716 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1717
Aristeu Rozanski1483f552011-06-22 01:17:17 -07001718#define USB_DEVICE_DETAILED(prod, class, sub, proto) \
1719 USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_WACOM, prod, class, \
1720 sub, proto), \
1721 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1722
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08001723#define USB_DEVICE_LENOVO(prod) \
1724 USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
1725 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1726
Bastian Blankb036f6f2010-02-10 23:06:23 -08001727const struct usb_device_id wacom_ids[] = {
1728 { USB_DEVICE_WACOM(0x00) },
1729 { USB_DEVICE_WACOM(0x10) },
1730 { USB_DEVICE_WACOM(0x11) },
1731 { USB_DEVICE_WACOM(0x12) },
1732 { USB_DEVICE_WACOM(0x13) },
1733 { USB_DEVICE_WACOM(0x14) },
1734 { USB_DEVICE_WACOM(0x15) },
1735 { USB_DEVICE_WACOM(0x16) },
1736 { USB_DEVICE_WACOM(0x17) },
1737 { USB_DEVICE_WACOM(0x18) },
1738 { USB_DEVICE_WACOM(0x19) },
1739 { USB_DEVICE_WACOM(0x60) },
1740 { USB_DEVICE_WACOM(0x61) },
1741 { USB_DEVICE_WACOM(0x62) },
1742 { USB_DEVICE_WACOM(0x63) },
1743 { USB_DEVICE_WACOM(0x64) },
1744 { USB_DEVICE_WACOM(0x65) },
1745 { USB_DEVICE_WACOM(0x69) },
Ping Cheng11d0cf82011-06-27 12:57:58 -07001746 { USB_DEVICE_WACOM(0x6A) },
1747 { USB_DEVICE_WACOM(0x6B) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08001748 { USB_DEVICE_WACOM(0x20) },
1749 { USB_DEVICE_WACOM(0x21) },
1750 { USB_DEVICE_WACOM(0x22) },
1751 { USB_DEVICE_WACOM(0x23) },
1752 { USB_DEVICE_WACOM(0x24) },
1753 { USB_DEVICE_WACOM(0x30) },
1754 { USB_DEVICE_WACOM(0x31) },
1755 { USB_DEVICE_WACOM(0x32) },
1756 { USB_DEVICE_WACOM(0x33) },
1757 { USB_DEVICE_WACOM(0x34) },
1758 { USB_DEVICE_WACOM(0x35) },
1759 { USB_DEVICE_WACOM(0x37) },
1760 { USB_DEVICE_WACOM(0x38) },
1761 { USB_DEVICE_WACOM(0x39) },
1762 { USB_DEVICE_WACOM(0xC4) },
1763 { USB_DEVICE_WACOM(0xC0) },
1764 { USB_DEVICE_WACOM(0xC2) },
1765 { USB_DEVICE_WACOM(0x03) },
1766 { USB_DEVICE_WACOM(0x41) },
1767 { USB_DEVICE_WACOM(0x42) },
1768 { USB_DEVICE_WACOM(0x43) },
1769 { USB_DEVICE_WACOM(0x44) },
1770 { USB_DEVICE_WACOM(0x45) },
1771 { USB_DEVICE_WACOM(0xB0) },
1772 { USB_DEVICE_WACOM(0xB1) },
1773 { USB_DEVICE_WACOM(0xB2) },
1774 { USB_DEVICE_WACOM(0xB3) },
1775 { USB_DEVICE_WACOM(0xB4) },
1776 { USB_DEVICE_WACOM(0xB5) },
1777 { USB_DEVICE_WACOM(0xB7) },
1778 { USB_DEVICE_WACOM(0xB8) },
1779 { USB_DEVICE_WACOM(0xB9) },
1780 { USB_DEVICE_WACOM(0xBA) },
1781 { USB_DEVICE_WACOM(0xBB) },
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001782 { USB_DEVICE_WACOM(0xBC) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08001783 { USB_DEVICE_WACOM(0x3F) },
1784 { USB_DEVICE_WACOM(0xC5) },
1785 { USB_DEVICE_WACOM(0xC6) },
1786 { USB_DEVICE_WACOM(0xC7) },
Aristeu Rozanski1483f552011-06-22 01:17:17 -07001787 /*
1788 * DTU-2231 has two interfaces on the same configuration,
1789 * only one is used.
1790 */
1791 { USB_DEVICE_DETAILED(0xCE, USB_CLASS_HID,
1792 USB_INTERFACE_SUBCLASS_BOOT,
1793 USB_INTERFACE_PROTOCOL_MOUSE) },
Chris Bagwelld3825d52012-03-25 23:26:11 -07001794 { USB_DEVICE_WACOM(0x84) },
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001795 { USB_DEVICE_WACOM(0xD0) },
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001796 { USB_DEVICE_WACOM(0xD1) },
1797 { USB_DEVICE_WACOM(0xD2) },
1798 { USB_DEVICE_WACOM(0xD3) },
Kevin Granade57a78722010-12-10 23:04:02 -08001799 { USB_DEVICE_WACOM(0xD4) },
Gerard Braad18adad12011-08-16 00:17:56 -07001800 { USB_DEVICE_WACOM(0xD5) },
Ping Chengd38acb42011-01-24 09:32:50 -08001801 { USB_DEVICE_WACOM(0xD6) },
1802 { USB_DEVICE_WACOM(0xD7) },
David Foleya318e6b2010-11-30 23:45:46 -08001803 { USB_DEVICE_WACOM(0xD8) },
1804 { USB_DEVICE_WACOM(0xDA) },
David Foley47d09232010-12-07 21:05:59 -08001805 { USB_DEVICE_WACOM(0xDB) },
Chris Bagwell73149ab2011-10-26 22:34:21 -07001806 { USB_DEVICE_WACOM(0xDD) },
1807 { USB_DEVICE_WACOM(0xDE) },
1808 { USB_DEVICE_WACOM(0xDF) },
Ping Chengc8f2edc2010-06-28 01:10:51 -07001809 { USB_DEVICE_WACOM(0xF0) },
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001810 { USB_DEVICE_WACOM(0xCC) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08001811 { USB_DEVICE_WACOM(0x90) },
1812 { USB_DEVICE_WACOM(0x93) },
Ping Cheng11d0cf82011-06-27 12:57:58 -07001813 { USB_DEVICE_WACOM(0x97) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08001814 { USB_DEVICE_WACOM(0x9A) },
1815 { USB_DEVICE_WACOM(0x9F) },
1816 { USB_DEVICE_WACOM(0xE2) },
1817 { USB_DEVICE_WACOM(0xE3) },
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07001818 { USB_DEVICE_WACOM(0xE6) },
Chris Bagwell0d0e3062011-12-11 23:50:59 -08001819 { USB_DEVICE_WACOM(0xEC) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08001820 { USB_DEVICE_WACOM(0x47) },
Jason Gerecke803296b2011-12-12 00:11:45 -08001821 { USB_DEVICE_WACOM(0xF4) },
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08001822 { USB_DEVICE_LENOVO(0x6004) },
Ping Cheng3bea7332006-07-13 18:01:36 -07001823 { }
1824};
Ping Cheng3bea7332006-07-13 18:01:36 -07001825MODULE_DEVICE_TABLE(usb, wacom_ids);