blob: 2ea0d2e55a4e785f985d5e15e776201d0a0a9fe4 [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);
268 input_sync(input); /* sync last event */
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800269 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700270
271 /* send pad data */
Jason Childse33da8a2010-02-17 22:38:31 -0800272 switch (features->type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700273 case WACOM_G4:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800274 prox = data[7] & 0xf8;
275 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400276 wacom->id[1] = PAD_DEVICE_ID;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700277 input_report_key(input, BTN_0, (data[7] & 0x40));
278 input_report_key(input, BTN_4, (data[7] & 0x80));
Ping Cheng3bea7332006-07-13 18:01:36 -0700279 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700280 input_report_rel(input, REL_WHEEL, rw);
281 input_report_key(input, BTN_TOOL_FINGER, 0xf0);
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;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700294 input_report_key(input, BTN_0, (data[7] & 0x08));
295 input_report_key(input, BTN_1, (data[7] & 0x20));
296 input_report_key(input, BTN_4, (data[7] & 0x10));
297 input_report_key(input, BTN_5, (data[7] & 0x40));
298 input_report_abs(input, ABS_WHEEL, (data[8] & 0x7f));
299 input_report_key(input, BTN_TOOL_FINGER, 0xf0);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800300 if (!prox)
301 wacom->id[1] = 0;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700302 input_report_abs(input, ABS_MISC, wacom->id[1]);
303 input_event(input, EV_MSC, MSC_SERIAL, 0xf0);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400304 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800305 retval = 1;
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400306 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700307 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800308exit:
309 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -0700310}
311
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700312static int wacom_intuos_inout(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700313{
Jason Childse33da8a2010-02-17 22:38:31 -0800314 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700315 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700316 struct input_dev *input = wacom->input;
Ping Cheng6f660f12009-05-08 18:30:33 -0700317 int idx = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700318
319 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800320 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700321 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700322
323 /* Enter report */
324 if ((data[1] & 0xfc) == 0xc0) {
325 /* serial number of the tool */
326 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
327 (data[4] << 20) + (data[5] << 12) +
328 (data[6] << 4) + (data[7] >> 4);
329
Ping Cheng493630b2010-06-22 11:21:34 -0700330 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
331 ((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700332
Ping Cheng493630b2010-06-22 11:21:34 -0700333 switch (wacom->id[idx] & 0xfffff) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700334 case 0x812: /* Inking pen */
335 case 0x801: /* Intuos3 Inking pen */
Ping Cheng493630b2010-06-22 11:21:34 -0700336 case 0x20802: /* Intuos4 Inking Pen */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700337 case 0x012:
338 wacom->tool[idx] = BTN_TOOL_PENCIL;
339 break;
340
341 case 0x822: /* Pen */
342 case 0x842:
343 case 0x852:
344 case 0x823: /* Intuos3 Grip Pen */
345 case 0x813: /* Intuos3 Classic Pen */
346 case 0x885: /* Intuos3 Marker Pen */
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700347 case 0x802: /* Intuos4 General Pen */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700348 case 0x804: /* Intuos4 Marker Pen */
349 case 0x40802: /* Intuos4 Classic Pen */
350 case 0x022:
351 wacom->tool[idx] = BTN_TOOL_PEN;
352 break;
353
354 case 0x832: /* Stroke pen */
355 case 0x032:
356 wacom->tool[idx] = BTN_TOOL_BRUSH;
357 break;
358
359 case 0x007: /* Mouse 4D and 2D */
360 case 0x09c:
361 case 0x094:
362 case 0x017: /* Intuos3 2D Mouse */
363 case 0x806: /* Intuos4 Mouse */
364 wacom->tool[idx] = BTN_TOOL_MOUSE;
365 break;
366
367 case 0x096: /* Lens cursor */
368 case 0x097: /* Intuos3 Lens cursor */
369 case 0x006: /* Intuos4 Lens cursor */
370 wacom->tool[idx] = BTN_TOOL_LENS;
371 break;
372
373 case 0x82a: /* Eraser */
374 case 0x85a:
375 case 0x91a:
376 case 0xd1a:
377 case 0x0fa:
378 case 0x82b: /* Intuos3 Grip Pen Eraser */
379 case 0x81b: /* Intuos3 Classic Pen Eraser */
380 case 0x91b: /* Intuos3 Airbrush Eraser */
381 case 0x80c: /* Intuos4 Marker Pen Eraser */
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700382 case 0x80a: /* Intuos4 General Pen Eraser */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700383 case 0x4080a: /* Intuos4 Classic Pen Eraser */
384 case 0x90a: /* Intuos4 Airbrush Eraser */
385 wacom->tool[idx] = BTN_TOOL_RUBBER;
386 break;
387
388 case 0xd12:
389 case 0x912:
390 case 0x112:
391 case 0x913: /* Intuos3 Airbrush */
392 case 0x902: /* Intuos4 Airbrush */
393 wacom->tool[idx] = BTN_TOOL_AIRBRUSH;
394 break;
395
396 default: /* Unknown tool */
397 wacom->tool[idx] = BTN_TOOL_PEN;
398 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700399 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700400 return 1;
401 }
402
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700403 /* older I4 styli don't work with new Cintiqs */
404 if (!((wacom->id[idx] >> 20) & 0x01) &&
405 (features->type == WACOM_21UX2))
406 return 1;
407
Ping Cheng3bea7332006-07-13 18:01:36 -0700408 /* Exit report */
409 if ((data[1] & 0xfe) == 0x80) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700410 /*
411 * Reset all states otherwise we lose the initial states
412 * when in-prox next time
413 */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700414 input_report_abs(input, ABS_X, 0);
415 input_report_abs(input, ABS_Y, 0);
416 input_report_abs(input, ABS_DISTANCE, 0);
417 input_report_abs(input, ABS_TILT_X, 0);
418 input_report_abs(input, ABS_TILT_Y, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800419 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700420 input_report_key(input, BTN_LEFT, 0);
421 input_report_key(input, BTN_MIDDLE, 0);
422 input_report_key(input, BTN_RIGHT, 0);
423 input_report_key(input, BTN_SIDE, 0);
424 input_report_key(input, BTN_EXTRA, 0);
425 input_report_abs(input, ABS_THROTTLE, 0);
426 input_report_abs(input, ABS_RZ, 0);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400427 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700428 input_report_abs(input, ABS_PRESSURE, 0);
429 input_report_key(input, BTN_STYLUS, 0);
430 input_report_key(input, BTN_STYLUS2, 0);
431 input_report_key(input, BTN_TOUCH, 0);
432 input_report_abs(input, ABS_WHEEL, 0);
Jason Childse33da8a2010-02-17 22:38:31 -0800433 if (features->type >= INTUOS3S)
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700434 input_report_abs(input, ABS_Z, 0);
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700435 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700436 input_report_key(input, wacom->tool[idx], 0);
437 input_report_abs(input, ABS_MISC, 0); /* reset tool id */
438 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Cheng6f660f12009-05-08 18:30:33 -0700439 wacom->id[idx] = 0;
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800440 return 2;
Ping Cheng3bea7332006-07-13 18:01:36 -0700441 }
442 return 0;
443}
444
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700445static void wacom_intuos_general(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700446{
Jason Childse33da8a2010-02-17 22:38:31 -0800447 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700448 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700449 struct input_dev *input = wacom->input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700450 unsigned int t;
451
452 /* general pen packet */
453 if ((data[1] & 0xb8) == 0xa0) {
454 t = (data[6] << 2) | ((data[7] >> 6) & 3);
Aristeu Rozanskica047fe2010-10-10 14:12:33 -0700455 if ((features->type >= INTUOS4S && features->type <= INTUOS4L) ||
456 features->type == WACOM_21UX2) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700457 t = (t << 1) | (data[1] & 1);
Aristeu Rozanskica047fe2010-10-10 14:12:33 -0700458 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700459 input_report_abs(input, ABS_PRESSURE, t);
460 input_report_abs(input, ABS_TILT_X,
Ping Cheng3bea7332006-07-13 18:01:36 -0700461 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700462 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
463 input_report_key(input, BTN_STYLUS, data[1] & 2);
464 input_report_key(input, BTN_STYLUS2, data[1] & 4);
465 input_report_key(input, BTN_TOUCH, t > 10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700466 }
467
468 /* airbrush second packet */
469 if ((data[1] & 0xbc) == 0xb4) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700470 input_report_abs(input, ABS_WHEEL,
Ping Cheng3bea7332006-07-13 18:01:36 -0700471 (data[6] << 2) | ((data[7] >> 6) & 3));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700472 input_report_abs(input, ABS_TILT_X,
Ping Cheng3bea7332006-07-13 18:01:36 -0700473 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700474 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
Ping Cheng3bea7332006-07-13 18:01:36 -0700475 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700476}
477
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700478static int wacom_intuos_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700479{
Jason Childse33da8a2010-02-17 22:38:31 -0800480 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700481 unsigned char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700482 struct input_dev *input = wacom->input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700483 unsigned int t;
Ping Cheng6f660f12009-05-08 18:30:33 -0700484 int idx = 0, result;
Ping Cheng3bea7332006-07-13 18:01:36 -0700485
Ping Chengcad74702009-12-15 00:35:25 -0800486 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD
487 && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700488 dbg("wacom_intuos_irq: received unknown report #%d", data[0]);
489 return 0;
490 }
491
Ping Cheng3bea7332006-07-13 18:01:36 -0700492 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800493 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700494 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700495
496 /* pad packets. Works as a second tool and is always in prox */
Ping Chengcad74702009-12-15 00:35:25 -0800497 if (data[0] == WACOM_REPORT_INTUOSPAD) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700498 /* initiate the pad as a device */
499 if (wacom->tool[1] != BTN_TOOL_FINGER)
500 wacom->tool[1] = BTN_TOOL_FINGER;
501
Jason Childse33da8a2010-02-17 22:38:31 -0800502 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700503 input_report_key(input, BTN_0, (data[2] & 0x01));
504 input_report_key(input, BTN_1, (data[3] & 0x01));
505 input_report_key(input, BTN_2, (data[3] & 0x02));
506 input_report_key(input, BTN_3, (data[3] & 0x04));
507 input_report_key(input, BTN_4, (data[3] & 0x08));
508 input_report_key(input, BTN_5, (data[3] & 0x10));
509 input_report_key(input, BTN_6, (data[3] & 0x20));
Ping Cheng6f660f12009-05-08 18:30:33 -0700510 if (data[1] & 0x80) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700511 input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
Ping Chenga8629522009-06-02 16:59:58 -0700512 } else {
513 /* Out of proximity, clear wheel value. */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700514 input_report_abs(input, ABS_WHEEL, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700515 }
Jason Childse33da8a2010-02-17 22:38:31 -0800516 if (features->type != INTUOS4S) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700517 input_report_key(input, BTN_7, (data[3] & 0x40));
518 input_report_key(input, BTN_8, (data[3] & 0x80));
Ping Cheng6f660f12009-05-08 18:30:33 -0700519 }
520 if (data[1] | (data[2] & 0x01) | data[3]) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700521 input_report_key(input, wacom->tool[1], 1);
522 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
Ping Cheng6f660f12009-05-08 18:30:33 -0700523 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700524 input_report_key(input, wacom->tool[1], 0);
525 input_report_abs(input, ABS_MISC, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700526 }
527 } else {
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700528 if (features->type == WACOM_21UX2) {
529 input_report_key(input, BTN_0, (data[5] & 0x01));
530 input_report_key(input, BTN_1, (data[6] & 0x01));
531 input_report_key(input, BTN_2, (data[6] & 0x02));
532 input_report_key(input, BTN_3, (data[6] & 0x04));
533 input_report_key(input, BTN_4, (data[6] & 0x08));
534 input_report_key(input, BTN_5, (data[6] & 0x10));
535 input_report_key(input, BTN_6, (data[6] & 0x20));
536 input_report_key(input, BTN_7, (data[6] & 0x40));
537 input_report_key(input, BTN_8, (data[6] & 0x80));
538 input_report_key(input, BTN_9, (data[7] & 0x01));
539 input_report_key(input, BTN_A, (data[8] & 0x01));
540 input_report_key(input, BTN_B, (data[8] & 0x02));
541 input_report_key(input, BTN_C, (data[8] & 0x04));
542 input_report_key(input, BTN_X, (data[8] & 0x08));
543 input_report_key(input, BTN_Y, (data[8] & 0x10));
544 input_report_key(input, BTN_Z, (data[8] & 0x20));
545 input_report_key(input, BTN_BASE, (data[8] & 0x40));
546 input_report_key(input, BTN_BASE2, (data[8] & 0x80));
547 } else {
548 input_report_key(input, BTN_0, (data[5] & 0x01));
549 input_report_key(input, BTN_1, (data[5] & 0x02));
550 input_report_key(input, BTN_2, (data[5] & 0x04));
551 input_report_key(input, BTN_3, (data[5] & 0x08));
552 input_report_key(input, BTN_4, (data[6] & 0x01));
553 input_report_key(input, BTN_5, (data[6] & 0x02));
554 input_report_key(input, BTN_6, (data[6] & 0x04));
555 input_report_key(input, BTN_7, (data[6] & 0x08));
556 input_report_key(input, BTN_8, (data[5] & 0x10));
557 input_report_key(input, BTN_9, (data[6] & 0x10));
558 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700559 input_report_abs(input, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]);
560 input_report_abs(input, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700561
Ping Cheng493630b2010-06-22 11:21:34 -0700562 if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) |
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700563 data[2] | (data[3] & 0x1f) | data[4] | data[8] |
564 (data[7] & 0x01)) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700565 input_report_key(input, wacom->tool[1], 1);
566 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
Ping Cheng6f660f12009-05-08 18:30:33 -0700567 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700568 input_report_key(input, wacom->tool[1], 0);
569 input_report_abs(input, ABS_MISC, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700570 }
571 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700572 input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
Ping Cheng3bea7332006-07-13 18:01:36 -0700573 return 1;
574 }
575
576 /* process in/out prox events */
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700577 result = wacom_intuos_inout(wacom);
Ping Cheng3bea7332006-07-13 18:01:36 -0700578 if (result)
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700579 return result - 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700580
Ping Cheng6f660f12009-05-08 18:30:33 -0700581 /* don't proceed if we don't know the ID */
582 if (!wacom->id[idx])
583 return 0;
584
585 /* Only large Intuos support Lense Cursor */
Jason Childse33da8a2010-02-17 22:38:31 -0800586 if (wacom->tool[idx] == BTN_TOOL_LENS &&
587 (features->type == INTUOS3 ||
588 features->type == INTUOS3S ||
589 features->type == INTUOS4 ||
590 features->type == INTUOS4S)) {
591
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800592 return 0;
Jason Childse33da8a2010-02-17 22:38:31 -0800593 }
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800594
Ping Cheng3bea7332006-07-13 18:01:36 -0700595 /* Cintiq doesn't send data when RDY bit isn't set */
Jason Childse33da8a2010-02-17 22:38:31 -0800596 if (features->type == CINTIQ && !(data[1] & 0x40))
Ping Cheng3bea7332006-07-13 18:01:36 -0700597 return 0;
598
Jason Childse33da8a2010-02-17 22:38:31 -0800599 if (features->type >= INTUOS3S) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700600 input_report_abs(input, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1));
601 input_report_abs(input, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1));
602 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 2) & 0x3f));
Ping Cheng3bea7332006-07-13 18:01:36 -0700603 } else {
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700604 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[2]));
605 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[4]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700606 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 3) & 0x1f));
Ping Cheng3bea7332006-07-13 18:01:36 -0700607 }
608
609 /* process general packets */
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700610 wacom_intuos_general(wacom);
Ping Cheng3bea7332006-07-13 18:01:36 -0700611
Ping Cheng6f660f12009-05-08 18:30:33 -0700612 /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */
613 if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0 || (data[1] & 0xbc) == 0xac) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700614
615 if (data[1] & 0x02) {
616 /* Rotation packet */
Jason Childse33da8a2010-02-17 22:38:31 -0800617 if (features->type >= INTUOS3S) {
Ping Cheng0e1763f2008-03-13 16:46:46 -0400618 /* I3 marker pen rotation */
Ping Cheng3bea7332006-07-13 18:01:36 -0700619 t = (data[6] << 3) | ((data[7] >> 5) & 7);
620 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
621 ((t-1) / 2 + 450)) : (450 - t / 2) ;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700622 input_report_abs(input, ABS_Z, t);
Ping Cheng3bea7332006-07-13 18:01:36 -0700623 } else {
624 /* 4D mouse rotation packet */
625 t = (data[6] << 3) | ((data[7] >> 5) & 7);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700626 input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
Ping Cheng3bea7332006-07-13 18:01:36 -0700627 ((t - 1) / 2) : -t / 2);
628 }
629
Jason Childse33da8a2010-02-17 22:38:31 -0800630 } else if (!(data[1] & 0x10) && features->type < INTUOS3S) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700631 /* 4D mouse packet */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700632 input_report_key(input, BTN_LEFT, data[8] & 0x01);
633 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
634 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
Ping Cheng3bea7332006-07-13 18:01:36 -0700635
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700636 input_report_key(input, BTN_SIDE, data[8] & 0x20);
637 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700638 t = (data[6] << 2) | ((data[7] >> 6) & 3);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700639 input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
Ping Cheng3bea7332006-07-13 18:01:36 -0700640
641 } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700642 /* I4 mouse */
Jason Childse33da8a2010-02-17 22:38:31 -0800643 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700644 input_report_key(input, BTN_LEFT, data[6] & 0x01);
645 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
646 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
647 input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
Ping Cheng6f660f12009-05-08 18:30:33 -0700648 - ((data[7] & 0x40) >> 6));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700649 input_report_key(input, BTN_SIDE, data[6] & 0x08);
650 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
Ping Cheng6f660f12009-05-08 18:30:33 -0700651
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700652 input_report_abs(input, ABS_TILT_X,
Ping Cheng6f660f12009-05-08 18:30:33 -0700653 ((data[7] << 1) & 0x7e) | (data[8] >> 7));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700654 input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f);
Ping Cheng6f660f12009-05-08 18:30:33 -0700655 } else {
656 /* 2D mouse packet */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700657 input_report_key(input, BTN_LEFT, data[8] & 0x04);
658 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
659 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
660 input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
Ping Cheng3bea7332006-07-13 18:01:36 -0700661 - ((data[8] & 0x02) >> 1));
662
Ping Cheng6f660f12009-05-08 18:30:33 -0700663 /* I3 2D mouse side buttons */
Jason Childse33da8a2010-02-17 22:38:31 -0800664 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700665 input_report_key(input, BTN_SIDE, data[8] & 0x40);
666 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
Ping Cheng6f660f12009-05-08 18:30:33 -0700667 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700668 }
Jason Childse33da8a2010-02-17 22:38:31 -0800669 } else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
670 features->type == INTUOS4L) &&
Ping Cheng6f660f12009-05-08 18:30:33 -0700671 wacom->tool[idx] == BTN_TOOL_LENS) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700672 /* Lens cursor packets */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700673 input_report_key(input, BTN_LEFT, data[8] & 0x01);
674 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
675 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
676 input_report_key(input, BTN_SIDE, data[8] & 0x10);
677 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
Ping Cheng3bea7332006-07-13 18:01:36 -0700678 }
679 }
680
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700681 input_report_abs(input, ABS_MISC, wacom->id[idx]); /* report tool id */
682 input_report_key(input, wacom->tool[idx], 1);
683 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700684 return 1;
685}
686
Ping Cheng84eb5aa2011-03-12 20:35:18 -0800687static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
688{
689 struct input_dev *input = wacom->input;
690 unsigned char *data = wacom->data;
691 int contact_with_no_pen_down_count = 0;
692 int i;
693
694 for (i = 0; i < 2; i++) {
695 int p = data[1] & (1 << i);
696 bool touch = p && !wacom->shared->stylus_in_proximity;
697
698 input_mt_slot(input, i);
699 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
700 if (touch) {
701 int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
702 int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
703
704 input_report_abs(input, ABS_MT_POSITION_X, x);
705 input_report_abs(input, ABS_MT_POSITION_Y, y);
706 contact_with_no_pen_down_count++;
707 }
708 }
709
710 /* keep touch state for pen event */
711 wacom->shared->touch_down = (contact_with_no_pen_down_count > 0);
712
713 input_mt_report_pointer_emulation(input, true);
714
715 return 1;
716}
717
Ping Chenga43c7c52011-03-12 20:34:42 -0800718static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
Ping Chengec67bbe2009-12-15 00:35:24 -0800719{
720 char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700721 struct input_dev *input = wacom->input;
Ping Chenga43c7c52011-03-12 20:34:42 -0800722 bool prox;
723 int x = 0, y = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800724
Ping Chenga43c7c52011-03-12 20:34:42 -0800725 if (!wacom->shared->stylus_in_proximity) {
726 if (len == WACOM_PKGLEN_TPC1FG) {
727 prox = data[0] & 0x01;
728 x = get_unaligned_le16(&data[1]);
729 y = get_unaligned_le16(&data[3]);
730 } else { /* with capacity */
731 prox = data[1] & 0x01;
732 x = le16_to_cpup((__le16 *)&data[2]);
733 y = le16_to_cpup((__le16 *)&data[4]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800734 }
Ping Chenga43c7c52011-03-12 20:34:42 -0800735 } else
736 /* force touch out when pen is in prox */
737 prox = 0;
738
739 if (prox) {
740 input_report_abs(input, ABS_X, x);
741 input_report_abs(input, ABS_Y, y);
Ping Chengec67bbe2009-12-15 00:35:24 -0800742 }
Ping Chenga43c7c52011-03-12 20:34:42 -0800743 input_report_key(input, BTN_TOUCH, prox);
744
745 /* keep touch state for pen events */
746 wacom->shared->touch_down = prox;
747
748 return 1;
Ping Chengec67bbe2009-12-15 00:35:24 -0800749}
750
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800751static int wacom_tpc_pen(struct wacom_wac *wacom)
Ping Cheng545f4e92008-11-24 11:44:27 -0500752{
Jason Childse33da8a2010-02-17 22:38:31 -0800753 struct wacom_features *features = &wacom->features;
Ping Cheng545f4e92008-11-24 11:44:27 -0500754 char *data = wacom->data;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700755 struct input_dev *input = wacom->input;
Ping Chenga43c7c52011-03-12 20:34:42 -0800756 int pressure;
757 bool prox = data[1] & 0x20;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800758
Ping Chenga43c7c52011-03-12 20:34:42 -0800759 if (!wacom->shared->stylus_in_proximity) /* first in prox */
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800760 /* Going into proximity select tool */
761 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800762
Ping Chenga43c7c52011-03-12 20:34:42 -0800763 /* keep pen state for touch events */
764 wacom->shared->stylus_in_proximity = prox;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800765
Ping Chenga43c7c52011-03-12 20:34:42 -0800766 /* send pen events only when touch is up or forced out */
767 if (!wacom->shared->touch_down) {
768 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
769 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
770 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
771 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
772 pressure = ((data[7] & 0x01) << 8) | data[6];
773 if (pressure < 0)
774 pressure = features->pressure_max + pressure + 1;
775 input_report_abs(input, ABS_PRESSURE, pressure);
776 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
777 input_report_key(input, wacom->tool[0], prox);
778 return 1;
779 }
780
781 return 0;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800782}
783
784static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
785{
786 char *data = wacom->data;
Ping Cheng545f4e92008-11-24 11:44:27 -0500787
788 dbg("wacom_tpc_irq: received report #%d", data[0]);
789
Ping Chenga43c7c52011-03-12 20:34:42 -0800790 if (len == WACOM_PKGLEN_TPC1FG || data[0] == WACOM_REPORT_TPC1FG)
791 return wacom_tpc_single_touch(wacom, len);
Ping Cheng84eb5aa2011-03-12 20:35:18 -0800792 else if (data[0] == WACOM_REPORT_TPC2FG)
793 return wacom_tpc_mt_touch(wacom);
Ping Chenga43c7c52011-03-12 20:34:42 -0800794 else if (data[0] == WACOM_REPORT_PENABLED)
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800795 return wacom_tpc_pen(wacom);
Ping Cheng545f4e92008-11-24 11:44:27 -0500796
Ping Cheng8aa9a9a2011-03-12 20:34:11 -0800797 return 0;
Ping Cheng545f4e92008-11-24 11:44:27 -0500798}
799
Chris Bagwelle1d38e42010-09-12 00:09:27 -0700800static int wacom_bpt_touch(struct wacom_wac *wacom)
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700801{
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -0700802 struct wacom_features *features = &wacom->features;
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700803 struct input_dev *input = wacom->input;
804 unsigned char *data = wacom->data;
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700805 int i;
806
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700807 for (i = 0; i < 2; i++) {
808 int p = data[9 * i + 2];
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100809 bool touch = p && !wacom->shared->stylus_in_proximity;
810
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700811 input_mt_slot(input, i);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100812 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
Chris Bagwell33d5f712010-09-12 00:12:28 -0700813 /*
814 * Touch events need to be disabled while stylus is
815 * in proximity because user's hand is resting on touchpad
816 * and sending unwanted events. User expects tablet buttons
817 * to continue working though.
818 */
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100819 if (touch) {
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700820 int x = get_unaligned_be16(&data[9 * i + 3]) & 0x7ff;
821 int y = get_unaligned_be16(&data[9 * i + 5]) & 0x7ff;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -0700822 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
823 x <<= 5;
824 y <<= 5;
825 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700826 input_report_abs(input, ABS_MT_PRESSURE, p);
827 input_report_abs(input, ABS_MT_POSITION_X, x);
828 input_report_abs(input, ABS_MT_POSITION_Y, y);
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700829 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700830 }
831
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100832 input_mt_report_pointer_emulation(input, true);
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700833
834 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
835 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
836 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
837 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
838
839 input_sync(input);
840
841 return 0;
842}
843
Chris Bagwell2aaacb12010-09-12 00:11:35 -0700844static int wacom_bpt_pen(struct wacom_wac *wacom)
845{
846 struct input_dev *input = wacom->input;
847 unsigned char *data = wacom->data;
848 int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
849
850 /*
851 * Similar to Graphire protocol, data[1] & 0x20 is proximity and
852 * data[1] & 0x18 is tool ID. 0x30 is safety check to ignore
853 * 2 unused tool ID's.
854 */
855 prox = (data[1] & 0x30) == 0x30;
856
857 /*
858 * All reports shared between PEN and RUBBER tool must be
859 * forced to a known starting value (zero) when transitioning to
860 * out-of-prox.
861 *
862 * If not reset then, to userspace, it will look like lost events
863 * if new tool comes in-prox with same values as previous tool sent.
864 *
865 * Hardware does report zero in most out-of-prox cases but not all.
866 */
867 if (prox) {
868 if (!wacom->shared->stylus_in_proximity) {
869 if (data[1] & 0x08) {
870 wacom->tool[0] = BTN_TOOL_RUBBER;
871 wacom->id[0] = ERASER_DEVICE_ID;
872 } else {
873 wacom->tool[0] = BTN_TOOL_PEN;
874 wacom->id[0] = STYLUS_DEVICE_ID;
875 }
876 wacom->shared->stylus_in_proximity = true;
877 }
878 x = le16_to_cpup((__le16 *)&data[2]);
879 y = le16_to_cpup((__le16 *)&data[4]);
880 p = le16_to_cpup((__le16 *)&data[6]);
881 d = data[8];
882 pen = data[1] & 0x01;
883 btn1 = data[1] & 0x02;
884 btn2 = data[1] & 0x04;
885 }
886
887 input_report_key(input, BTN_TOUCH, pen);
888 input_report_key(input, BTN_STYLUS, btn1);
889 input_report_key(input, BTN_STYLUS2, btn2);
890
891 input_report_abs(input, ABS_X, x);
892 input_report_abs(input, ABS_Y, y);
893 input_report_abs(input, ABS_PRESSURE, p);
894 input_report_abs(input, ABS_DISTANCE, d);
895
896 if (!prox) {
897 wacom->id[0] = 0;
898 wacom->shared->stylus_in_proximity = false;
899 }
900
901 input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
902 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
903
904 return 1;
905}
906
Chris Bagwelle1d38e42010-09-12 00:09:27 -0700907static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
908{
909 if (len == WACOM_PKGLEN_BBTOUCH)
910 return wacom_bpt_touch(wacom);
Chris Bagwell2aaacb12010-09-12 00:11:35 -0700911 else if (len == WACOM_PKGLEN_BBFUN)
912 return wacom_bpt_pen(wacom);
Chris Bagwelle1d38e42010-09-12 00:09:27 -0700913
914 return 0;
915}
916
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700917void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
Ping Cheng3bea7332006-07-13 18:01:36 -0700918{
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700919 bool sync;
920
Jason Childse33da8a2010-02-17 22:38:31 -0800921 switch (wacom_wac->features.type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700922 case PENPARTNER:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700923 sync = wacom_penpartner_irq(wacom_wac);
924 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500925
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700926 case PL:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700927 sync = wacom_pl_irq(wacom_wac);
928 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500929
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700930 case WACOM_G4:
931 case GRAPHIRE:
932 case WACOM_MO:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700933 sync = wacom_graphire_irq(wacom_wac);
934 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500935
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700936 case PTU:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700937 sync = wacom_ptu_irq(wacom_wac);
938 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500939
Ping Chengc8f2edc2010-06-28 01:10:51 -0700940 case DTU:
941 sync = wacom_dtu_irq(wacom_wac);
942 break;
943
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700944 case INTUOS:
945 case INTUOS3S:
946 case INTUOS3:
947 case INTUOS3L:
948 case INTUOS4S:
949 case INTUOS4:
950 case INTUOS4L:
951 case CINTIQ:
952 case WACOM_BEE:
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700953 case WACOM_21UX2:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700954 sync = wacom_intuos_irq(wacom_wac);
955 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500956
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700957 case TABLETPC:
958 case TABLETPC2FG:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700959 sync = wacom_tpc_irq(wacom_wac, len);
960 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500961
Henrik Rydbergcb734c02010-09-05 12:53:16 -0700962 case BAMBOO_PT:
963 sync = wacom_bpt_irq(wacom_wac, len);
964 break;
965
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700966 default:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700967 sync = false;
968 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700969 }
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700970
971 if (sync)
972 input_sync(wacom_wac->input);
Ping Cheng3bea7332006-07-13 18:01:36 -0700973}
974
Ping Cheng6521d0b2010-10-24 21:53:40 -0700975static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
Ping Cheng3bea7332006-07-13 18:01:36 -0700976{
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700977 struct input_dev *input_dev = wacom_wac->input;
978
979 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700980
981 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
982 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700983 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
984 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
985 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700986 __set_bit(BTN_STYLUS, input_dev->keybit);
987 __set_bit(BTN_STYLUS2, input_dev->keybit);
988
989 input_set_abs_params(input_dev, ABS_DISTANCE,
990 0, wacom_wac->features.distance_max, 0, 0);
991 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
992 input_set_abs_params(input_dev, ABS_TILT_X, 0, 127, 0, 0);
993 input_set_abs_params(input_dev, ABS_TILT_Y, 0, 127, 0, 0);
Ping Cheng6521d0b2010-10-24 21:53:40 -0700994}
995
996static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
997{
998 struct input_dev *input_dev = wacom_wac->input;
999
1000 input_set_capability(input_dev, EV_REL, REL_WHEEL);
1001
1002 wacom_setup_cintiq(wacom_wac);
1003
1004 __set_bit(BTN_LEFT, input_dev->keybit);
1005 __set_bit(BTN_RIGHT, input_dev->keybit);
1006 __set_bit(BTN_MIDDLE, input_dev->keybit);
1007 __set_bit(BTN_SIDE, input_dev->keybit);
1008 __set_bit(BTN_EXTRA, input_dev->keybit);
1009 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
1010 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
1011
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001012 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
1013 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
1014}
1015
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001016void wacom_setup_device_quirks(struct wacom_features *features)
1017{
1018
1019 /* touch device found but size is not defined. use default */
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001020 if (features->device_type == BTN_TOOL_FINGER && !features->x_max) {
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001021 features->x_max = 1023;
1022 features->y_max = 1023;
1023 }
1024
1025 /* these device have multiple inputs */
1026 if (features->type == TABLETPC || features->type == TABLETPC2FG ||
1027 features->type == BAMBOO_PT)
1028 features->quirks |= WACOM_QUIRK_MULTI_INPUT;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001029
1030 /* quirks for bamboo touch */
1031 if (features->type == BAMBOO_PT &&
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001032 features->device_type == BTN_TOOL_DOUBLETAP) {
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07001033 features->x_max <<= 5;
1034 features->y_max <<= 5;
1035 features->x_fuzz <<= 5;
1036 features->y_fuzz <<= 5;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001037 features->pressure_max = 256;
1038 features->pressure_fuzz = 16;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07001039 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001040 }
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001041}
1042
Ping Cheng409550f2011-01-25 18:03:13 -08001043static unsigned int wacom_calculate_touch_res(unsigned int logical_max,
1044 unsigned int physical_max)
1045{
1046 /* Touch physical dimensions are in 100th of mm */
1047 return (logical_max * 100) / physical_max;
1048}
1049
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001050void wacom_setup_input_capabilities(struct input_dev *input_dev,
1051 struct wacom_wac *wacom_wac)
1052{
1053 struct wacom_features *features = &wacom_wac->features;
1054 int i;
1055
1056 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1057
1058 __set_bit(BTN_TOUCH, input_dev->keybit);
1059
Henrik Rydbergfed87e62010-09-05 12:25:11 -07001060 input_set_abs_params(input_dev, ABS_X, 0, features->x_max,
1061 features->x_fuzz, 0);
1062 input_set_abs_params(input_dev, ABS_Y, 0, features->y_max,
1063 features->y_fuzz, 0);
1064 input_set_abs_params(input_dev, ABS_PRESSURE, 0, features->pressure_max,
1065 features->pressure_fuzz, 0);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001066
Ping Chenge35fb8c2011-03-26 21:16:05 -07001067 if (features->device_type == BTN_TOOL_PEN) {
1068 /* penabled devices have fixed resolution for each model */
1069 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
1070 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
1071 } else {
1072 input_abs_set_res(input_dev, ABS_X,
1073 wacom_calculate_touch_res(features->x_max,
1074 features->x_phy));
1075 input_abs_set_res(input_dev, ABS_Y,
1076 wacom_calculate_touch_res(features->y_max,
1077 features->y_phy));
1078 }
1079
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001080 __set_bit(ABS_MISC, input_dev->absbit);
1081
Jason Childse33da8a2010-02-17 22:38:31 -08001082 switch (wacom_wac->features.type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001083 case WACOM_MO:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001084 __set_bit(BTN_1, input_dev->keybit);
1085 __set_bit(BTN_5, input_dev->keybit);
1086
1087 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
1088 /* fall through */
Ping Chengec67bbe2009-12-15 00:35:24 -08001089
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001090 case WACOM_G4:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001091 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
1092
1093 __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
1094 __set_bit(BTN_0, input_dev->keybit);
1095 __set_bit(BTN_4, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001096 /* fall through */
1097
1098 case GRAPHIRE:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001099 input_set_capability(input_dev, EV_REL, REL_WHEEL);
1100
1101 __set_bit(BTN_LEFT, input_dev->keybit);
1102 __set_bit(BTN_RIGHT, input_dev->keybit);
1103 __set_bit(BTN_MIDDLE, input_dev->keybit);
1104
1105 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1106 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1107 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
1108 __set_bit(BTN_STYLUS, input_dev->keybit);
1109 __set_bit(BTN_STYLUS2, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001110 break;
1111
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001112 case WACOM_21UX2:
1113 __set_bit(BTN_A, input_dev->keybit);
1114 __set_bit(BTN_B, input_dev->keybit);
1115 __set_bit(BTN_C, input_dev->keybit);
1116 __set_bit(BTN_X, input_dev->keybit);
1117 __set_bit(BTN_Y, input_dev->keybit);
1118 __set_bit(BTN_Z, input_dev->keybit);
1119 __set_bit(BTN_BASE, input_dev->keybit);
1120 __set_bit(BTN_BASE2, input_dev->keybit);
1121 /* fall through */
1122
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001123 case WACOM_BEE:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001124 __set_bit(BTN_8, input_dev->keybit);
1125 __set_bit(BTN_9, input_dev->keybit);
1126 /* fall through */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001127
Ping Cheng6521d0b2010-10-24 21:53:40 -07001128 case CINTIQ:
1129 for (i = 0; i < 8; i++)
1130 __set_bit(BTN_0 + i, input_dev->keybit);
1131 __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
1132
Ping Cheng71c86ce2011-06-22 01:02:51 -07001133 if (wacom_wac->features.type != WACOM_21UX2) {
1134 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
1135 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
1136 }
1137
Ping Cheng6521d0b2010-10-24 21:53:40 -07001138 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1139 wacom_setup_cintiq(wacom_wac);
1140 break;
1141
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001142 case INTUOS3:
1143 case INTUOS3L:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001144 __set_bit(BTN_4, input_dev->keybit);
1145 __set_bit(BTN_5, input_dev->keybit);
1146 __set_bit(BTN_6, input_dev->keybit);
1147 __set_bit(BTN_7, input_dev->keybit);
1148
1149 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001150 /* fall through */
1151
1152 case INTUOS3S:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001153 __set_bit(BTN_0, input_dev->keybit);
1154 __set_bit(BTN_1, input_dev->keybit);
1155 __set_bit(BTN_2, input_dev->keybit);
1156 __set_bit(BTN_3, input_dev->keybit);
1157
1158 __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
1159
1160 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
1161 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001162 /* fall through */
1163
1164 case INTUOS:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001165 wacom_setup_intuos(wacom_wac);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001166 break;
1167
1168 case INTUOS4:
1169 case INTUOS4L:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001170 __set_bit(BTN_7, input_dev->keybit);
1171 __set_bit(BTN_8, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001172 /* fall through */
1173
1174 case INTUOS4S:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001175 for (i = 0; i < 7; i++)
1176 __set_bit(BTN_0 + i, input_dev->keybit);
1177 __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
1178
1179 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
1180 wacom_setup_intuos(wacom_wac);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001181 break;
1182
1183 case TABLETPC2FG:
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001184 if (features->device_type == BTN_TOOL_DOUBLETAP) {
1185
1186 input_mt_init_slots(input_dev, 2);
1187 input_set_abs_params(input_dev, ABS_MT_TOOL_TYPE,
1188 0, MT_TOOL_MAX, 0, 0);
1189 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
1190 0, features->x_max, 0, 0);
1191 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
1192 0, features->y_max, 0, 0);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001193 }
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001194 /* fall through */
1195
1196 case TABLETPC:
Ping Chenga43c7c52011-03-12 20:34:42 -08001197 __clear_bit(ABS_MISC, input_dev->absbit);
1198
Ping Chenge35fb8c2011-03-26 21:16:05 -07001199 if (features->device_type != BTN_TOOL_PEN)
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001200 break; /* no need to process stylus stuff */
Ping Chenge35fb8c2011-03-26 21:16:05 -07001201
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001202 /* fall through */
1203
1204 case PL:
1205 case PTU:
Ping Chengc8f2edc2010-06-28 01:10:51 -07001206 case DTU:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001207 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1208 __set_bit(BTN_STYLUS, input_dev->keybit);
1209 __set_bit(BTN_STYLUS2, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001210 /* fall through */
1211
1212 case PENPARTNER:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001213 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07001214 break;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001215
1216 case BAMBOO_PT:
1217 __clear_bit(ABS_MISC, input_dev->absbit);
1218
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001219 if (features->device_type == BTN_TOOL_DOUBLETAP) {
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001220 __set_bit(BTN_LEFT, input_dev->keybit);
1221 __set_bit(BTN_FORWARD, input_dev->keybit);
1222 __set_bit(BTN_BACK, input_dev->keybit);
1223 __set_bit(BTN_RIGHT, input_dev->keybit);
1224
1225 __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
1226 __set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit);
1227
Henrik Rydberg8cde8102010-11-27 10:50:54 +01001228 input_mt_init_slots(input_dev, 2);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001229 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
1230 0, features->x_max,
1231 features->x_fuzz, 0);
1232 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
1233 0, features->y_max,
1234 features->y_fuzz, 0);
1235 input_set_abs_params(input_dev, ABS_MT_PRESSURE,
1236 0, features->pressure_max,
1237 features->pressure_fuzz, 0);
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001238 } else if (features->device_type == BTN_TOOL_PEN) {
1239 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
1240 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
1241 __set_bit(BTN_STYLUS, input_dev->keybit);
1242 __set_bit(BTN_STYLUS2, input_dev->keybit);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001243 }
1244 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07001245 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001246}
1247
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001248static const struct wacom_features wacom_features_0x00 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001249 { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255,
1250 0, PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001251static const struct wacom_features wacom_features_0x10 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001252 { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511,
1253 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001254static const struct wacom_features wacom_features_0x11 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001255 { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511,
1256 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001257static const struct wacom_features wacom_features_0x12 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001258 { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511,
1259 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001260static const struct wacom_features wacom_features_0x13 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001261 { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511,
1262 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001263static const struct wacom_features wacom_features_0x14 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001264 { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1265 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001266static const struct wacom_features wacom_features_0x15 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001267 { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511,
1268 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001269static const struct wacom_features wacom_features_0x16 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001270 { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1271 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001272static const struct wacom_features wacom_features_0x17 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001273 { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511,
1274 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001275static const struct wacom_features wacom_features_0x18 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001276 { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511,
1277 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001278static const struct wacom_features wacom_features_0x19 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001279 { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511,
1280 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001281static const struct wacom_features wacom_features_0x60 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001282 { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1283 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001284static const struct wacom_features wacom_features_0x61 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001285 { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255,
1286 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001287static const struct wacom_features wacom_features_0x62 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001288 { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1289 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001290static const struct wacom_features wacom_features_0x63 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001291 { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511,
1292 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001293static const struct wacom_features wacom_features_0x64 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001294 { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511,
1295 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001296static const struct wacom_features wacom_features_0x65 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001297 { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511,
1298 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001299static const struct wacom_features wacom_features_0x69 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001300 { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511,
1301 63, GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001302static const struct wacom_features wacom_features_0x20 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001303 { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023,
1304 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001305static const struct wacom_features wacom_features_0x21 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001306 { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1307 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001308static const struct wacom_features wacom_features_0x22 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001309 { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023,
1310 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001311static const struct wacom_features wacom_features_0x23 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001312 { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023,
1313 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001314static const struct wacom_features wacom_features_0x24 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001315 { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023,
1316 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001317static const struct wacom_features wacom_features_0x30 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001318 { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255,
1319 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001320static const struct wacom_features wacom_features_0x31 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001321 { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255,
1322 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001323static const struct wacom_features wacom_features_0x32 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001324 { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255,
1325 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001326static const struct wacom_features wacom_features_0x33 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001327 { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255,
1328 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001329static const struct wacom_features wacom_features_0x34 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001330 { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511,
1331 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001332static const struct wacom_features wacom_features_0x35 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001333 { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511,
1334 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001335static const struct wacom_features wacom_features_0x37 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001336 { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511,
1337 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001338static const struct wacom_features wacom_features_0x38 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001339 { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511,
1340 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001341static const struct wacom_features wacom_features_0x39 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001342 { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511,
1343 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001344static const struct wacom_features wacom_features_0xC4 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001345 { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511,
1346 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001347static const struct wacom_features wacom_features_0xC0 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001348 { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511,
1349 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001350static const struct wacom_features wacom_features_0xC2 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001351 { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511,
1352 0, PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001353static const struct wacom_features wacom_features_0x03 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001354 { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511,
1355 0, PTU, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001356static const struct wacom_features wacom_features_0x41 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001357 { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023,
1358 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001359static const struct wacom_features wacom_features_0x42 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001360 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1361 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001362static const struct wacom_features wacom_features_0x43 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001363 { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023,
1364 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001365static const struct wacom_features wacom_features_0x44 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001366 { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023,
1367 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001368static const struct wacom_features wacom_features_0x45 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001369 { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023,
1370 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001371static const struct wacom_features wacom_features_0xB0 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001372 { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023,
1373 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001374static const struct wacom_features wacom_features_0xB1 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001375 { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023,
1376 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001377static const struct wacom_features wacom_features_0xB2 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001378 { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023,
1379 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001380static const struct wacom_features wacom_features_0xB3 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001381 { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023,
1382 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001383static const struct wacom_features wacom_features_0xB4 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001384 { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023,
1385 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001386static const struct wacom_features wacom_features_0xB5 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001387 { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023,
1388 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001389static const struct wacom_features wacom_features_0xB7 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001390 { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023,
1391 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001392static const struct wacom_features wacom_features_0xB8 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001393 { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047,
1394 63, INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001395static const struct wacom_features wacom_features_0xB9 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001396 { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047,
1397 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001398static const struct wacom_features wacom_features_0xBA =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001399 { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047,
1400 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001401static const struct wacom_features wacom_features_0xBB =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001402 { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047,
1403 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001404static const struct wacom_features wacom_features_0xBC =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001405 { "Wacom Intuos4 WL", WACOM_PKGLEN_INTUOS, 40840, 25400, 2047,
1406 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001407static const struct wacom_features wacom_features_0x3F =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001408 { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023,
1409 63, CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001410static const struct wacom_features wacom_features_0xC5 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001411 { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023,
1412 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001413static const struct wacom_features wacom_features_0xC6 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001414 { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023,
1415 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001416static const struct wacom_features wacom_features_0xC7 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001417 { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511,
1418 0, PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengc8f2edc2010-06-28 01:10:51 -07001419static const struct wacom_features wacom_features_0xCE =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001420 { "Wacom DTU2231", WACOM_PKGLEN_GRAPHIRE, 47864, 27011, 511,
1421 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengc8f2edc2010-06-28 01:10:51 -07001422static const struct wacom_features wacom_features_0xF0 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001423 { "Wacom DTU1631", WACOM_PKGLEN_GRAPHIRE, 34623, 19553, 511,
1424 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001425static const struct wacom_features wacom_features_0xCC =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001426 { "Wacom Cintiq 21UX2", WACOM_PKGLEN_INTUOS, 87200, 65600, 2047,
1427 63, WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001428static const struct wacom_features wacom_features_0x90 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001429 { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1430 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001431static const struct wacom_features wacom_features_0x93 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001432 { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1433 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001434static const struct wacom_features wacom_features_0x9A =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001435 { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1436 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001437static const struct wacom_features wacom_features_0x9F =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001438 { "Wacom ISDv4 9F", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255,
1439 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001440static const struct wacom_features wacom_features_0xE2 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001441 { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255,
1442 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001443static const struct wacom_features wacom_features_0xE3 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001444 { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255,
1445 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07001446static const struct wacom_features wacom_features_0xE6 =
1447 { "Wacom ISDv4 E6", WACOM_PKGLEN_TPC2FG, 27760, 15694, 255,
1448 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08001449static const struct wacom_features wacom_features_0x47 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001450 { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023,
1451 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001452static const struct wacom_features wacom_features_0xD0 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001453 { "Wacom Bamboo 2FG", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1454 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001455static const struct wacom_features wacom_features_0xD1 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001456 { "Wacom Bamboo 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1457 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001458static const struct wacom_features wacom_features_0xD2 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001459 { "Wacom Bamboo Craft", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1460 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001461static const struct wacom_features wacom_features_0xD3 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001462 { "Wacom Bamboo 2FG 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 1023,
1463 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Kevin Granade57a78722010-12-10 23:04:02 -08001464static const struct wacom_features wacom_features_0xD4 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001465 { "Wacom Bamboo Pen", WACOM_PKGLEN_BBFUN, 14720, 9200, 255,
1466 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001467static const struct wacom_features wacom_features_0xD6 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001468 { "Wacom BambooPT 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1469 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001470static const struct wacom_features wacom_features_0xD7 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001471 { "Wacom BambooPT 2FG Small", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1472 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001473static const struct wacom_features wacom_features_0xD8 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001474 { "Wacom Bamboo Comic 2FG", WACOM_PKGLEN_BBFUN, 21648, 13530, 1023,
1475 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07001476static const struct wacom_features wacom_features_0xDA =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001477 { "Wacom Bamboo 2FG 4x5 SE", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023,
1478 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
David Foley47d09232010-12-07 21:05:59 -08001479static struct wacom_features wacom_features_0xDB =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001480 { "Wacom Bamboo 2FG 6x8 SE", WACOM_PKGLEN_BBFUN, 21648, 13530, 1023,
1481 63, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08001482static const struct wacom_features wacom_features_0x6004 =
Ping Chenge35fb8c2011-03-26 21:16:05 -07001483 { "ISD-V4", WACOM_PKGLEN_GRAPHIRE, 12800, 8000, 255,
1484 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Bastian Blankb036f6f2010-02-10 23:06:23 -08001485
1486#define USB_DEVICE_WACOM(prod) \
1487 USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \
1488 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1489
Aristeu Rozanski1483f552011-06-22 01:17:17 -07001490#define USB_DEVICE_DETAILED(prod, class, sub, proto) \
1491 USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_WACOM, prod, class, \
1492 sub, proto), \
1493 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1494
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08001495#define USB_DEVICE_LENOVO(prod) \
1496 USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
1497 .driver_info = (kernel_ulong_t)&wacom_features_##prod
1498
Bastian Blankb036f6f2010-02-10 23:06:23 -08001499const struct usb_device_id wacom_ids[] = {
1500 { USB_DEVICE_WACOM(0x00) },
1501 { USB_DEVICE_WACOM(0x10) },
1502 { USB_DEVICE_WACOM(0x11) },
1503 { USB_DEVICE_WACOM(0x12) },
1504 { USB_DEVICE_WACOM(0x13) },
1505 { USB_DEVICE_WACOM(0x14) },
1506 { USB_DEVICE_WACOM(0x15) },
1507 { USB_DEVICE_WACOM(0x16) },
1508 { USB_DEVICE_WACOM(0x17) },
1509 { USB_DEVICE_WACOM(0x18) },
1510 { USB_DEVICE_WACOM(0x19) },
1511 { USB_DEVICE_WACOM(0x60) },
1512 { USB_DEVICE_WACOM(0x61) },
1513 { USB_DEVICE_WACOM(0x62) },
1514 { USB_DEVICE_WACOM(0x63) },
1515 { USB_DEVICE_WACOM(0x64) },
1516 { USB_DEVICE_WACOM(0x65) },
1517 { USB_DEVICE_WACOM(0x69) },
1518 { USB_DEVICE_WACOM(0x20) },
1519 { USB_DEVICE_WACOM(0x21) },
1520 { USB_DEVICE_WACOM(0x22) },
1521 { USB_DEVICE_WACOM(0x23) },
1522 { USB_DEVICE_WACOM(0x24) },
1523 { USB_DEVICE_WACOM(0x30) },
1524 { USB_DEVICE_WACOM(0x31) },
1525 { USB_DEVICE_WACOM(0x32) },
1526 { USB_DEVICE_WACOM(0x33) },
1527 { USB_DEVICE_WACOM(0x34) },
1528 { USB_DEVICE_WACOM(0x35) },
1529 { USB_DEVICE_WACOM(0x37) },
1530 { USB_DEVICE_WACOM(0x38) },
1531 { USB_DEVICE_WACOM(0x39) },
1532 { USB_DEVICE_WACOM(0xC4) },
1533 { USB_DEVICE_WACOM(0xC0) },
1534 { USB_DEVICE_WACOM(0xC2) },
1535 { USB_DEVICE_WACOM(0x03) },
1536 { USB_DEVICE_WACOM(0x41) },
1537 { USB_DEVICE_WACOM(0x42) },
1538 { USB_DEVICE_WACOM(0x43) },
1539 { USB_DEVICE_WACOM(0x44) },
1540 { USB_DEVICE_WACOM(0x45) },
1541 { USB_DEVICE_WACOM(0xB0) },
1542 { USB_DEVICE_WACOM(0xB1) },
1543 { USB_DEVICE_WACOM(0xB2) },
1544 { USB_DEVICE_WACOM(0xB3) },
1545 { USB_DEVICE_WACOM(0xB4) },
1546 { USB_DEVICE_WACOM(0xB5) },
1547 { USB_DEVICE_WACOM(0xB7) },
1548 { USB_DEVICE_WACOM(0xB8) },
1549 { USB_DEVICE_WACOM(0xB9) },
1550 { USB_DEVICE_WACOM(0xBA) },
1551 { USB_DEVICE_WACOM(0xBB) },
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001552 { USB_DEVICE_WACOM(0xBC) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08001553 { USB_DEVICE_WACOM(0x3F) },
1554 { USB_DEVICE_WACOM(0xC5) },
1555 { USB_DEVICE_WACOM(0xC6) },
1556 { USB_DEVICE_WACOM(0xC7) },
Aristeu Rozanski1483f552011-06-22 01:17:17 -07001557 /*
1558 * DTU-2231 has two interfaces on the same configuration,
1559 * only one is used.
1560 */
1561 { USB_DEVICE_DETAILED(0xCE, USB_CLASS_HID,
1562 USB_INTERFACE_SUBCLASS_BOOT,
1563 USB_INTERFACE_PROTOCOL_MOUSE) },
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001564 { USB_DEVICE_WACOM(0xD0) },
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001565 { USB_DEVICE_WACOM(0xD1) },
1566 { USB_DEVICE_WACOM(0xD2) },
1567 { USB_DEVICE_WACOM(0xD3) },
Kevin Granade57a78722010-12-10 23:04:02 -08001568 { USB_DEVICE_WACOM(0xD4) },
Ping Chengd38acb42011-01-24 09:32:50 -08001569 { USB_DEVICE_WACOM(0xD6) },
1570 { USB_DEVICE_WACOM(0xD7) },
David Foleya318e6b2010-11-30 23:45:46 -08001571 { USB_DEVICE_WACOM(0xD8) },
1572 { USB_DEVICE_WACOM(0xDA) },
David Foley47d09232010-12-07 21:05:59 -08001573 { USB_DEVICE_WACOM(0xDB) },
Ping Chengc8f2edc2010-06-28 01:10:51 -07001574 { USB_DEVICE_WACOM(0xF0) },
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07001575 { USB_DEVICE_WACOM(0xCC) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08001576 { USB_DEVICE_WACOM(0x90) },
1577 { USB_DEVICE_WACOM(0x93) },
1578 { USB_DEVICE_WACOM(0x9A) },
1579 { USB_DEVICE_WACOM(0x9F) },
1580 { USB_DEVICE_WACOM(0xE2) },
1581 { USB_DEVICE_WACOM(0xE3) },
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07001582 { USB_DEVICE_WACOM(0xE6) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08001583 { USB_DEVICE_WACOM(0x47) },
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08001584 { USB_DEVICE_LENOVO(0x6004) },
Ping Cheng3bea7332006-07-13 18:01:36 -07001585 { }
1586};
Ping Cheng3bea7332006-07-13 18:01:36 -07001587MODULE_DEVICE_TABLE(usb, wacom_ids);