blob: fe164dfc8a7ceb93b297801dd54537f1cdd2fa71 [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>
Ping Cheng3bea7332006-07-13 18:01:36 -070018
Ping Chenge35fb8c2011-03-26 21:16:05 -070019/* resolution for penabled devices */
20#define WACOM_PL_RES 20
21#define WACOM_PENPRTN_RES 40
22#define WACOM_VOLITO_RES 50
23#define WACOM_GRAPHIRE_RES 80
24#define WACOM_INTUOS_RES 100
25#define WACOM_INTUOS3_RES 200
26
Ping Chengfa770342014-12-01 13:44:28 -080027/* Newer Cintiq and DTU have an offset between tablet and screen areas */
28#define WACOM_DTU_OFFSET 200
29#define WACOM_CINTIQ_OFFSET 400
30
Benjamin Tissoires387142b2014-08-06 13:52:56 -070031/*
32 * Scale factor relating reported contact size to logical contact area.
Jason Gerecke4e904952012-10-03 17:19:11 -070033 * 2^14/pi is a good approximation on Intuos5 and 3rd-gen Bamboo
34 */
35#define WACOM_CONTACT_AREA_SCALE 2607
36
Benjamin Tissoires387142b2014-08-06 13:52:56 -070037/*
38 * Percent of battery capacity for Graphire.
39 * 8th value means AC online and show 100% capacity.
40 */
41static unsigned short batcap_gr[8] = { 1, 15, 25, 35, 50, 70, 100, 100 };
42
Benjamin Tissoires81af7e62014-08-06 13:55:56 -070043/*
44 * Percent of battery capacity for Intuos4 WL, AC has a separate bit.
45 */
46static unsigned short batcap_i4[8] = { 1, 15, 30, 45, 60, 70, 85, 100 };
47
Jason Gerecke953f2c52015-03-06 11:47:39 -080048static void wacom_notify_battery(struct wacom_wac *wacom_wac,
Jason Gerecke71fa6412015-03-11 10:25:41 -070049 int bat_capacity, bool bat_charging, bool bat_connected,
50 bool ps_connected)
Jason Gerecke953f2c52015-03-06 11:47:39 -080051{
52 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
53 bool changed = wacom_wac->battery_capacity != bat_capacity ||
54 wacom_wac->bat_charging != bat_charging ||
Jason Gerecke71fa6412015-03-11 10:25:41 -070055 wacom_wac->bat_connected != bat_connected ||
Jason Gerecke953f2c52015-03-06 11:47:39 -080056 wacom_wac->ps_connected != ps_connected;
57
58 if (changed) {
59 wacom_wac->battery_capacity = bat_capacity;
60 wacom_wac->bat_charging = bat_charging;
Jason Gerecke71fa6412015-03-11 10:25:41 -070061 wacom_wac->bat_connected = bat_connected;
Jason Gerecke953f2c52015-03-06 11:47:39 -080062 wacom_wac->ps_connected = ps_connected;
63
Linus Torvalds8de29a32015-04-14 08:25:26 -080064 if (wacom->battery)
65 power_supply_changed(wacom->battery);
Jason Gerecke953f2c52015-03-06 11:47:39 -080066 }
67}
68
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -070069static int wacom_penpartner_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -070070{
71 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -070072 struct input_dev *input = wacom->pen_input;
Ping Cheng3bea7332006-07-13 18:01:36 -070073
74 switch (data[0]) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070075 case 1:
76 if (data[5] & 0x80) {
77 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
78 wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070079 input_report_key(input, wacom->tool[0], 1);
80 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -070081 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
82 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070083 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
84 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -127));
85 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070086 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070087 input_report_key(input, wacom->tool[0], 0);
88 input_report_abs(input, ABS_MISC, 0); /* report tool id */
89 input_report_abs(input, ABS_PRESSURE, -1);
90 input_report_key(input, BTN_TOUCH, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070091 }
92 break;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070093
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070094 case 2:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070095 input_report_key(input, BTN_TOOL_PEN, 1);
96 input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -070097 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
98 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070099 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
100 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
101 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700102 break;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700103
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700104 default:
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700105 dev_dbg(input->dev.parent,
106 "%s: received unknown report #%d\n", __func__, data[0]);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700107 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700108 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700109
Ping Cheng3bea7332006-07-13 18:01:36 -0700110 return 1;
111}
112
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700113static int wacom_pl_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700114{
Jason Childse33da8a2010-02-17 22:38:31 -0800115 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700116 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700117 struct input_dev *input = wacom->pen_input;
Ping Chenge34b9d22008-05-05 11:36:41 -0400118 int prox, pressure;
Ping Cheng3bea7332006-07-13 18:01:36 -0700119
Ping Chengcad74702009-12-15 00:35:25 -0800120 if (data[0] != WACOM_REPORT_PENABLED) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700121 dev_dbg(input->dev.parent,
122 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700123 return 0;
124 }
125
126 prox = data[1] & 0x40;
127
Jason Gerecke025bcc12015-08-03 10:18:10 -0700128 if (!wacom->id[0]) {
129 if ((data[0] & 0x10) || (data[4] & 0x20)) {
130 wacom->tool[0] = BTN_TOOL_RUBBER;
131 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700132 }
Jason Gerecke025bcc12015-08-03 10:18:10 -0700133 else {
134 wacom->tool[0] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400135 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700136 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700137 }
138
Jason Gerecke025bcc12015-08-03 10:18:10 -0700139 /* If the eraser is in prox, STYLUS2 is always set. If we
140 * mis-detected the type and notice that STYLUS2 isn't set
141 * then force the eraser out of prox and let the pen in.
142 */
143 if (wacom->tool[0] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
144 input_report_key(input, BTN_TOOL_RUBBER, 0);
145 input_report_abs(input, ABS_MISC, 0);
146 input_sync(input);
147 wacom->tool[0] = BTN_TOOL_PEN;
148 wacom->id[0] = STYLUS_DEVICE_ID;
149 }
150
151 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
152 if (features->pressure_max > 255)
153 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
154 pressure += (features->pressure_max + 1) / 2;
155
156 input_report_abs(input, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
157 input_report_abs(input, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
158 input_report_abs(input, ABS_PRESSURE, pressure);
159
160 input_report_key(input, BTN_TOUCH, data[4] & 0x08);
161 input_report_key(input, BTN_STYLUS, data[4] & 0x10);
162 /* Only allow the stylus2 button to be reported for the pen tool. */
163 input_report_key(input, BTN_STYLUS2, (wacom->tool[0] == BTN_TOOL_PEN) && (data[4] & 0x20));
164
165 if (!prox)
166 wacom->id[0] = 0;
167 input_report_key(input, wacom->tool[0], prox);
168 input_report_abs(input, ABS_MISC, wacom->id[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700169 return 1;
170}
171
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700172static int wacom_ptu_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700173{
174 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700175 struct input_dev *input = wacom->pen_input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700176
Ping Chengcad74702009-12-15 00:35:25 -0800177 if (data[0] != WACOM_REPORT_PENABLED) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700178 dev_dbg(input->dev.parent,
179 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700180 return 0;
181 }
182
Ping Cheng3bea7332006-07-13 18:01:36 -0700183 if (data[1] & 0x04) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700184 input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
185 input_report_key(input, BTN_TOUCH, data[1] & 0x08);
Ping Chenge34b9d22008-05-05 11:36:41 -0400186 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700187 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700188 input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
189 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
Ping Chenge34b9d22008-05-05 11:36:41 -0400190 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700191 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700192 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700193 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
194 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
195 input_report_abs(input, ABS_PRESSURE, le16_to_cpup((__le16 *)&data[6]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700196 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
197 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700198 return 1;
199}
200
Ping Chengc8f2edc2010-06-28 01:10:51 -0700201static int wacom_dtu_irq(struct wacom_wac *wacom)
202{
Jason Gerecke74b63412014-04-19 13:50:22 -0700203 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700204 struct input_dev *input = wacom->pen_input;
Jason Gerecke74b63412014-04-19 13:50:22 -0700205 int prox = data[1] & 0x20;
Ping Chengc8f2edc2010-06-28 01:10:51 -0700206
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700207 dev_dbg(input->dev.parent,
208 "%s: received report #%d", __func__, data[0]);
Ping Chengc8f2edc2010-06-28 01:10:51 -0700209
210 if (prox) {
211 /* Going into proximity select tool */
212 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
213 if (wacom->tool[0] == BTN_TOOL_PEN)
214 wacom->id[0] = STYLUS_DEVICE_ID;
215 else
216 wacom->id[0] = ERASER_DEVICE_ID;
217 }
218 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
219 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
220 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
221 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Jason Gerecke74b63412014-04-19 13:50:22 -0700222 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x01) << 8) | data[6]);
Ping Chengc8f2edc2010-06-28 01:10:51 -0700223 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
224 if (!prox) /* out-prox */
225 wacom->id[0] = 0;
226 input_report_key(input, wacom->tool[0], prox);
227 input_report_abs(input, ABS_MISC, wacom->id[0]);
228 return 1;
229}
230
Ping Cheng497ab1f2014-01-20 20:18:04 -0800231static int wacom_dtus_irq(struct wacom_wac *wacom)
232{
233 char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700234 struct input_dev *input = wacom->pen_input;
Ping Cheng497ab1f2014-01-20 20:18:04 -0800235 unsigned short prox, pressure = 0;
236
237 if (data[0] != WACOM_REPORT_DTUS && data[0] != WACOM_REPORT_DTUSPAD) {
238 dev_dbg(input->dev.parent,
239 "%s: received unknown report #%d", __func__, data[0]);
240 return 0;
241 } else if (data[0] == WACOM_REPORT_DTUSPAD) {
Benjamin Tissoires422b0312014-07-24 12:50:39 -0700242 input = wacom->pad_input;
Ping Cheng497ab1f2014-01-20 20:18:04 -0800243 input_report_key(input, BTN_0, (data[1] & 0x01));
244 input_report_key(input, BTN_1, (data[1] & 0x02));
245 input_report_key(input, BTN_2, (data[1] & 0x04));
246 input_report_key(input, BTN_3, (data[1] & 0x08));
247 input_report_abs(input, ABS_MISC,
248 data[1] & 0x0f ? PAD_DEVICE_ID : 0);
Ping Cheng497ab1f2014-01-20 20:18:04 -0800249 return 1;
250 } else {
251 prox = data[1] & 0x80;
252 if (prox) {
253 switch ((data[1] >> 3) & 3) {
254 case 1: /* Rubber */
255 wacom->tool[0] = BTN_TOOL_RUBBER;
256 wacom->id[0] = ERASER_DEVICE_ID;
257 break;
258
259 case 2: /* Pen */
260 wacom->tool[0] = BTN_TOOL_PEN;
261 wacom->id[0] = STYLUS_DEVICE_ID;
262 break;
263 }
264 }
265
266 input_report_key(input, BTN_STYLUS, data[1] & 0x20);
267 input_report_key(input, BTN_STYLUS2, data[1] & 0x40);
268 input_report_abs(input, ABS_X, get_unaligned_be16(&data[3]));
269 input_report_abs(input, ABS_Y, get_unaligned_be16(&data[5]));
270 pressure = ((data[1] & 0x03) << 8) | (data[2] & 0xff);
271 input_report_abs(input, ABS_PRESSURE, pressure);
272 input_report_key(input, BTN_TOUCH, pressure > 10);
273
274 if (!prox) /* out-prox */
275 wacom->id[0] = 0;
276 input_report_key(input, wacom->tool[0], prox);
277 input_report_abs(input, ABS_MISC, wacom->id[0]);
Ping Cheng497ab1f2014-01-20 20:18:04 -0800278 return 1;
279 }
280}
281
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700282static int wacom_graphire_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700283{
Jason Childse33da8a2010-02-17 22:38:31 -0800284 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700285 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700286 struct input_dev *input = wacom->pen_input;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700287 struct input_dev *pad_input = wacom->pad_input;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700288 int battery_capacity, ps_connected;
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700289 int prox;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800290 int rw = 0;
291 int retval = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700292
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700293 if (features->type == GRAPHIRE_BT) {
294 if (data[0] != WACOM_REPORT_PENABLED_BT) {
295 dev_dbg(input->dev.parent,
296 "%s: received unknown report #%d\n", __func__,
297 data[0]);
298 goto exit;
299 }
300 } else if (data[0] != WACOM_REPORT_PENABLED) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700301 dev_dbg(input->dev.parent,
302 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800303 goto exit;
Ping Cheng3bea7332006-07-13 18:01:36 -0700304 }
305
Ping Cheng3b57ca02010-03-04 21:50:59 -0800306 prox = data[1] & 0x80;
307 if (prox || wacom->id[0]) {
308 if (prox) {
309 switch ((data[1] >> 5) & 3) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700310
311 case 0: /* Pen */
312 wacom->tool[0] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400313 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700314 break;
315
316 case 1: /* Rubber */
317 wacom->tool[0] = BTN_TOOL_RUBBER;
Ping Chenge34b9d22008-05-05 11:36:41 -0400318 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700319 break;
320
321 case 2: /* Mouse with wheel */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700322 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
Ping Cheng3bea7332006-07-13 18:01:36 -0700323 /* fall through */
324
325 case 3: /* Mouse without wheel */
326 wacom->tool[0] = BTN_TOOL_MOUSE;
Ping Chenge34b9d22008-05-05 11:36:41 -0400327 wacom->id[0] = CURSOR_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700328 break;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800329 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700330 }
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700331 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
332 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Ping Cheng3bea7332006-07-13 18:01:36 -0700333 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700334 if (features->type == GRAPHIRE_BT)
335 input_report_abs(input, ABS_PRESSURE, data[6] |
336 (((__u16) (data[1] & 0x08)) << 5));
337 else
338 input_report_abs(input, ABS_PRESSURE, data[6] |
339 ((data[7] & 0x03) << 8));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700340 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
341 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
342 input_report_key(input, BTN_STYLUS2, data[1] & 0x04);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700343 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700344 input_report_key(input, BTN_LEFT, data[1] & 0x01);
345 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800346 if (features->type == WACOM_G4 ||
347 features->type == WACOM_MO) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700348 input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f);
Mike Autyd9f66c12010-08-28 20:35:17 -0700349 rw = (data[7] & 0x04) - (data[7] & 0x03);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700350 } else if (features->type == GRAPHIRE_BT) {
351 /* Compute distance between mouse and tablet */
352 rw = 44 - (data[6] >> 2);
353 rw = clamp_val(rw, 0, 31);
354 input_report_abs(input, ABS_DISTANCE, rw);
355 if (((data[1] >> 5) & 3) == 2) {
356 /* Mouse with wheel */
357 input_report_key(input, BTN_MIDDLE,
358 data[1] & 0x04);
359 rw = (data[6] & 0x01) ? -1 :
360 (data[6] & 0x02) ? 1 : 0;
361 } else {
362 rw = 0;
363 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800364 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700365 input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f);
Mike Autyd9f66c12010-08-28 20:35:17 -0700366 rw = -(signed char)data[6];
Ping Cheng3b57ca02010-03-04 21:50:59 -0800367 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700368 input_report_rel(input, REL_WHEEL, rw);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700369 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800370
371 if (!prox)
372 wacom->id[0] = 0;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700373 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
374 input_report_key(input, wacom->tool[0], prox);
375 input_sync(input); /* sync last event */
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800376 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700377
378 /* send pad data */
Jason Childse33da8a2010-02-17 22:38:31 -0800379 switch (features->type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700380 case WACOM_G4:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800381 prox = data[7] & 0xf8;
382 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400383 wacom->id[1] = PAD_DEVICE_ID;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700384 input_report_key(pad_input, BTN_BACK, (data[7] & 0x40));
385 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x80));
Ping Cheng3bea7332006-07-13 18:01:36 -0700386 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
Benjamin Tissoires38138102014-07-24 12:51:03 -0700387 input_report_rel(pad_input, REL_WHEEL, rw);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800388 if (!prox)
389 wacom->id[1] = 0;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700390 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
Ping Chengab687b12010-04-05 23:07:41 -0700391 retval = 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700392 }
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400393 break;
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700394
395 case WACOM_MO:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800396 prox = (data[7] & 0xf8) || data[8];
397 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400398 wacom->id[1] = PAD_DEVICE_ID;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700399 input_report_key(pad_input, BTN_BACK, (data[7] & 0x08));
400 input_report_key(pad_input, BTN_LEFT, (data[7] & 0x20));
401 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x10));
402 input_report_key(pad_input, BTN_RIGHT, (data[7] & 0x40));
403 input_report_abs(pad_input, ABS_WHEEL, (data[8] & 0x7f));
Ping Cheng3b57ca02010-03-04 21:50:59 -0800404 if (!prox)
405 wacom->id[1] = 0;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700406 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
Ping Cheng84460012011-07-06 18:05:43 -0700407 retval = 1;
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400408 }
409 break;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700410 case GRAPHIRE_BT:
411 prox = data[7] & 0x03;
412 if (prox || wacom->id[1]) {
413 wacom->id[1] = PAD_DEVICE_ID;
414 input_report_key(pad_input, BTN_0, (data[7] & 0x02));
415 input_report_key(pad_input, BTN_1, (data[7] & 0x01));
416 if (!prox)
417 wacom->id[1] = 0;
418 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
419 retval = 1;
420 }
421 break;
422 }
423
424 /* Store current battery capacity and power supply state */
425 if (features->type == GRAPHIRE_BT) {
426 rw = (data[7] >> 2 & 0x07);
427 battery_capacity = batcap_gr[rw];
428 ps_connected = rw == 7;
Jason Gerecke953f2c52015-03-06 11:47:39 -0800429 wacom_notify_battery(wacom, battery_capacity, ps_connected,
Jason Gerecke71fa6412015-03-11 10:25:41 -0700430 1, ps_connected);
Ping Cheng3bea7332006-07-13 18:01:36 -0700431 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800432exit:
433 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -0700434}
435
Benjamin Tissoires5fcad162015-03-05 17:36:54 -0500436static void wacom_intuos_schedule_prox_event(struct wacom_wac *wacom_wac)
437{
438 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
439 struct hid_report *r;
440 struct hid_report_enum *re;
441
442 re = &(wacom->hdev->report_enum[HID_FEATURE_REPORT]);
443 r = re->report_id_hash[WACOM_REPORT_INTUOSREAD];
444 if (r) {
445 hid_hw_request(wacom->hdev, r, HID_REQ_GET_REPORT);
446 }
447}
448
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700449static int wacom_intuos_inout(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700450{
Jason Childse33da8a2010-02-17 22:38:31 -0800451 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700452 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700453 struct input_dev *input = wacom->pen_input;
Ping Cheng6f660f12009-05-08 18:30:33 -0700454 int idx = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700455
456 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800457 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700458 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700459
460 /* Enter report */
461 if ((data[1] & 0xfc) == 0xc0) {
462 /* serial number of the tool */
463 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
464 (data[4] << 20) + (data[5] << 12) +
465 (data[6] << 4) + (data[7] >> 4);
466
Ping Cheng493630b2010-06-22 11:21:34 -0700467 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
468 ((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700469
Ping Chengf0aacea2013-05-05 19:59:05 -0700470 switch (wacom->id[idx]) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700471 case 0x812: /* Inking pen */
472 case 0x801: /* Intuos3 Inking pen */
Ping Chengf0aacea2013-05-05 19:59:05 -0700473 case 0x120802: /* Intuos4/5 Inking Pen */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700474 case 0x012:
475 wacom->tool[idx] = BTN_TOOL_PENCIL;
476 break;
477
478 case 0x822: /* Pen */
479 case 0x842:
480 case 0x852:
481 case 0x823: /* Intuos3 Grip Pen */
482 case 0x813: /* Intuos3 Classic Pen */
483 case 0x885: /* Intuos3 Marker Pen */
Ping Chengf0aacea2013-05-05 19:59:05 -0700484 case 0x802: /* Intuos4/5 13HD/24HD General Pen */
485 case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700486 case 0x022:
Ping Chengf0aacea2013-05-05 19:59:05 -0700487 case 0x100804: /* Intuos4/5 13HD/24HD Art Pen */
488 case 0x140802: /* Intuos4/5 13HD/24HD Classic Pen */
489 case 0x160802: /* Cintiq 13HD Pro Pen */
Ping Chengc73a1af2013-05-14 23:34:53 -0700490 case 0x180802: /* DTH2242 Pen */
Ping Cheng7d753b02013-06-18 23:14:25 -0700491 case 0x100802: /* Intuos4/5 13HD/24HD General Pen */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700492 wacom->tool[idx] = BTN_TOOL_PEN;
493 break;
494
495 case 0x832: /* Stroke pen */
496 case 0x032:
497 wacom->tool[idx] = BTN_TOOL_BRUSH;
498 break;
499
500 case 0x007: /* Mouse 4D and 2D */
501 case 0x09c:
502 case 0x094:
503 case 0x017: /* Intuos3 2D Mouse */
504 case 0x806: /* Intuos4 Mouse */
505 wacom->tool[idx] = BTN_TOOL_MOUSE;
506 break;
507
508 case 0x096: /* Lens cursor */
509 case 0x097: /* Intuos3 Lens cursor */
510 case 0x006: /* Intuos4 Lens cursor */
511 wacom->tool[idx] = BTN_TOOL_LENS;
512 break;
513
514 case 0x82a: /* Eraser */
515 case 0x85a:
516 case 0x91a:
517 case 0xd1a:
518 case 0x0fa:
519 case 0x82b: /* Intuos3 Grip Pen Eraser */
520 case 0x81b: /* Intuos3 Classic Pen Eraser */
521 case 0x91b: /* Intuos3 Airbrush Eraser */
Ping Chengf0aacea2013-05-05 19:59:05 -0700522 case 0x80c: /* Intuos4/5 13HD/24HD Marker Pen Eraser */
523 case 0x80a: /* Intuos4/5 13HD/24HD General Pen Eraser */
524 case 0x90a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
525 case 0x14080a: /* Intuos4/5 13HD/24HD Classic Pen Eraser */
526 case 0x10090a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
527 case 0x10080c: /* Intuos4/5 13HD/24HD Art Pen Eraser */
528 case 0x16080a: /* Cintiq 13HD Pro Pen Eraser */
Ping Chengc73a1af2013-05-14 23:34:53 -0700529 case 0x18080a: /* DTH2242 Eraser */
Ping Cheng7d753b02013-06-18 23:14:25 -0700530 case 0x10080a: /* Intuos4/5 13HD/24HD General Pen Eraser */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700531 wacom->tool[idx] = BTN_TOOL_RUBBER;
532 break;
533
534 case 0xd12:
535 case 0x912:
536 case 0x112:
537 case 0x913: /* Intuos3 Airbrush */
Ping Chengf0aacea2013-05-05 19:59:05 -0700538 case 0x902: /* Intuos4/5 13HD/24HD Airbrush */
539 case 0x100902: /* Intuos4/5 13HD/24HD Airbrush */
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700540 wacom->tool[idx] = BTN_TOOL_AIRBRUSH;
541 break;
542
543 default: /* Unknown tool */
544 wacom->tool[idx] = BTN_TOOL_PEN;
545 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700546 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700547 return 1;
548 }
549
Ping Cheng373a5352015-01-09 11:04:50 -0800550 /*
551 * don't report events for invalid data
552 */
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700553 /* older I4 styli don't work with new Cintiqs */
Ping Cheng373a5352015-01-09 11:04:50 -0800554 if ((!((wacom->id[idx] >> 20) & 0x01) &&
555 (features->type == WACOM_21UX2)) ||
556 /* Only large Intuos support Lense Cursor */
557 (wacom->tool[idx] == BTN_TOOL_LENS &&
558 (features->type == INTUOS3 ||
559 features->type == INTUOS3S ||
560 features->type == INTUOS4 ||
561 features->type == INTUOS4S ||
562 features->type == INTUOS5 ||
563 features->type == INTUOS5S ||
564 features->type == INTUOSPM ||
565 features->type == INTUOSPS)) ||
566 /* Cintiq doesn't send data when RDY bit isn't set */
567 (features->type == CINTIQ && !(data[1] & 0x40)))
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700568 return 1;
569
Ping Chengf3586d22015-03-20 14:57:00 -0700570 wacom->shared->stylus_in_proximity = true;
571 if (wacom->shared->touch_down)
572 return 1;
Ping Cheng486b9082015-02-20 14:25:58 -0800573
Ping Chengb3bd7ef2015-01-09 11:05:13 -0800574 /* in Range while exiting */
575 if (((data[1] & 0xfe) == 0x20) && wacom->reporting_data) {
Jason Gerecke4eb18302013-09-20 09:48:46 -0700576 input_report_key(input, BTN_TOUCH, 0);
577 input_report_abs(input, ABS_PRESSURE, 0);
578 input_report_abs(input, ABS_DISTANCE, wacom->features.distance_max);
Ping Chengb3bd7ef2015-01-09 11:05:13 -0800579 return 2;
Jason Gerecke4eb18302013-09-20 09:48:46 -0700580 }
581
Ping Cheng3bea7332006-07-13 18:01:36 -0700582 /* Exit report */
583 if ((data[1] & 0xfe) == 0x80) {
Ping Chengf3586d22015-03-20 14:57:00 -0700584 wacom->shared->stylus_in_proximity = false;
Ping Chengb3bd7ef2015-01-09 11:05:13 -0800585 wacom->reporting_data = false;
Jason Gereckeae584ca2012-04-03 15:50:40 -0700586
Ping Cheng373a5352015-01-09 11:04:50 -0800587 /* don't report exit if we don't know the ID */
588 if (!wacom->id[idx])
589 return 1;
590
Ping Cheng6f660f12009-05-08 18:30:33 -0700591 /*
592 * Reset all states otherwise we lose the initial states
593 * when in-prox next time
594 */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700595 input_report_abs(input, ABS_X, 0);
596 input_report_abs(input, ABS_Y, 0);
597 input_report_abs(input, ABS_DISTANCE, 0);
598 input_report_abs(input, ABS_TILT_X, 0);
599 input_report_abs(input, ABS_TILT_Y, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800600 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700601 input_report_key(input, BTN_LEFT, 0);
602 input_report_key(input, BTN_MIDDLE, 0);
603 input_report_key(input, BTN_RIGHT, 0);
604 input_report_key(input, BTN_SIDE, 0);
605 input_report_key(input, BTN_EXTRA, 0);
606 input_report_abs(input, ABS_THROTTLE, 0);
607 input_report_abs(input, ABS_RZ, 0);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400608 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700609 input_report_abs(input, ABS_PRESSURE, 0);
610 input_report_key(input, BTN_STYLUS, 0);
611 input_report_key(input, BTN_STYLUS2, 0);
612 input_report_key(input, BTN_TOUCH, 0);
613 input_report_abs(input, ABS_WHEEL, 0);
Jason Childse33da8a2010-02-17 22:38:31 -0800614 if (features->type >= INTUOS3S)
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700615 input_report_abs(input, ABS_Z, 0);
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700616 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700617 input_report_key(input, wacom->tool[idx], 0);
618 input_report_abs(input, ABS_MISC, 0); /* reset tool id */
619 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Cheng6f660f12009-05-08 18:30:33 -0700620 wacom->id[idx] = 0;
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800621 return 2;
Ping Cheng3bea7332006-07-13 18:01:36 -0700622 }
Ping Cheng373a5352015-01-09 11:04:50 -0800623
624 /* don't report other events if we don't know the ID */
Benjamin Tissoires5fcad162015-03-05 17:36:54 -0500625 if (!wacom->id[idx]) {
626 /* but reschedule a read of the current tool */
627 wacom_intuos_schedule_prox_event(wacom);
Ping Cheng373a5352015-01-09 11:04:50 -0800628 return 1;
Benjamin Tissoires5fcad162015-03-05 17:36:54 -0500629 }
Ping Cheng373a5352015-01-09 11:04:50 -0800630
Ping Cheng3bea7332006-07-13 18:01:36 -0700631 return 0;
632}
633
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700634static void wacom_intuos_general(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700635{
Jason Childse33da8a2010-02-17 22:38:31 -0800636 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700637 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700638 struct input_dev *input = wacom->pen_input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700639 unsigned int t;
640
641 /* general pen packet */
642 if ((data[1] & 0xb8) == 0xa0) {
643 t = (data[6] << 2) | ((data[7] >> 6) & 3);
Jason Gerecke36d3c512013-09-20 09:47:35 -0700644 if (features->type >= INTUOS4S && features->type <= CINTIQ_HYBRID) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700645 t = (t << 1) | (data[1] & 1);
Aristeu Rozanskica047fe2010-10-10 14:12:33 -0700646 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700647 input_report_abs(input, ABS_PRESSURE, t);
648 input_report_abs(input, ABS_TILT_X,
Jason Gereckeec5fc1c2014-11-18 16:50:08 -0800649 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
650 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700651 input_report_key(input, BTN_STYLUS, data[1] & 2);
652 input_report_key(input, BTN_STYLUS2, data[1] & 4);
653 input_report_key(input, BTN_TOUCH, t > 10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700654 }
655
656 /* airbrush second packet */
657 if ((data[1] & 0xbc) == 0xb4) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700658 input_report_abs(input, ABS_WHEEL,
Ping Cheng3bea7332006-07-13 18:01:36 -0700659 (data[6] << 2) | ((data[7] >> 6) & 3));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700660 input_report_abs(input, ABS_TILT_X,
Jason Gereckeec5fc1c2014-11-18 16:50:08 -0800661 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
662 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
Ping Cheng3bea7332006-07-13 18:01:36 -0700663 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700664}
665
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700666static int wacom_intuos_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700667{
Jason Childse33da8a2010-02-17 22:38:31 -0800668 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700669 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700670 struct input_dev *input = wacom->pen_input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700671 unsigned int t;
Ping Cheng6f660f12009-05-08 18:30:33 -0700672 int idx = 0, result;
Ping Cheng3bea7332006-07-13 18:01:36 -0700673
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700674 if (data[0] != WACOM_REPORT_PENABLED &&
675 data[0] != WACOM_REPORT_INTUOSREAD &&
676 data[0] != WACOM_REPORT_INTUOSWRITE &&
677 data[0] != WACOM_REPORT_INTUOSPAD &&
Ping Cheng500d4162015-01-27 13:30:03 -0800678 data[0] != WACOM_REPORT_CINTIQ &&
679 data[0] != WACOM_REPORT_CINTIQPAD &&
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700680 data[0] != WACOM_REPORT_INTUOS5PAD) {
681 dev_dbg(input->dev.parent,
682 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700683 return 0;
684 }
685
Ping Cheng3bea7332006-07-13 18:01:36 -0700686 /* tool number */
Jason Childse33da8a2010-02-17 22:38:31 -0800687 if (features->type == INTUOS)
Ping Cheng6f660f12009-05-08 18:30:33 -0700688 idx = data[1] & 0x01;
Ping Cheng3bea7332006-07-13 18:01:36 -0700689
690 /* pad packets. Works as a second tool and is always in prox */
Ping Cheng500d4162015-01-27 13:30:03 -0800691 if (data[0] == WACOM_REPORT_INTUOSPAD || data[0] == WACOM_REPORT_INTUOS5PAD ||
692 data[0] == WACOM_REPORT_CINTIQPAD) {
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -0700693 input = wacom->pad_input;
Jason Childse33da8a2010-02-17 22:38:31 -0800694 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700695 input_report_key(input, BTN_0, (data[2] & 0x01));
696 input_report_key(input, BTN_1, (data[3] & 0x01));
697 input_report_key(input, BTN_2, (data[3] & 0x02));
698 input_report_key(input, BTN_3, (data[3] & 0x04));
699 input_report_key(input, BTN_4, (data[3] & 0x08));
700 input_report_key(input, BTN_5, (data[3] & 0x10));
701 input_report_key(input, BTN_6, (data[3] & 0x20));
Ping Cheng6f660f12009-05-08 18:30:33 -0700702 if (data[1] & 0x80) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700703 input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
Ping Chenga8629522009-06-02 16:59:58 -0700704 } else {
705 /* Out of proximity, clear wheel value. */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700706 input_report_abs(input, ABS_WHEEL, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700707 }
Jason Childse33da8a2010-02-17 22:38:31 -0800708 if (features->type != INTUOS4S) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700709 input_report_key(input, BTN_7, (data[3] & 0x40));
710 input_report_key(input, BTN_8, (data[3] & 0x80));
Ping Cheng6f660f12009-05-08 18:30:33 -0700711 }
712 if (data[1] | (data[2] & 0x01) | data[3]) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700713 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
Ping Cheng6f660f12009-05-08 18:30:33 -0700714 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700715 input_report_abs(input, ABS_MISC, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700716 }
Ping Chenga112e9f2013-02-13 20:20:01 -0800717 } else if (features->type == DTK) {
718 input_report_key(input, BTN_0, (data[6] & 0x01));
719 input_report_key(input, BTN_1, (data[6] & 0x02));
720 input_report_key(input, BTN_2, (data[6] & 0x04));
721 input_report_key(input, BTN_3, (data[6] & 0x08));
722 input_report_key(input, BTN_4, (data[6] & 0x10));
723 input_report_key(input, BTN_5, (data[6] & 0x20));
Ping Chengc73a1af2013-05-14 23:34:53 -0700724 if (data[6] & 0x3f) {
725 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
726 } else {
727 input_report_abs(input, ABS_MISC, 0);
728 }
Ping Cheng56218562013-05-05 19:56:18 -0700729 } else if (features->type == WACOM_13HD) {
730 input_report_key(input, BTN_0, (data[3] & 0x01));
731 input_report_key(input, BTN_1, (data[4] & 0x01));
732 input_report_key(input, BTN_2, (data[4] & 0x02));
733 input_report_key(input, BTN_3, (data[4] & 0x04));
734 input_report_key(input, BTN_4, (data[4] & 0x08));
735 input_report_key(input, BTN_5, (data[4] & 0x10));
736 input_report_key(input, BTN_6, (data[4] & 0x20));
737 input_report_key(input, BTN_7, (data[4] & 0x40));
738 input_report_key(input, BTN_8, (data[4] & 0x80));
Ping Chengc73a1af2013-05-14 23:34:53 -0700739 if ((data[3] & 0x01) | data[4]) {
740 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
741 } else {
742 input_report_abs(input, ABS_MISC, 0);
743 }
Jason Gerecke803296b2011-12-12 00:11:45 -0800744 } else if (features->type == WACOM_24HD) {
745 input_report_key(input, BTN_0, (data[6] & 0x01));
746 input_report_key(input, BTN_1, (data[6] & 0x02));
747 input_report_key(input, BTN_2, (data[6] & 0x04));
748 input_report_key(input, BTN_3, (data[6] & 0x08));
749 input_report_key(input, BTN_4, (data[6] & 0x10));
750 input_report_key(input, BTN_5, (data[6] & 0x20));
751 input_report_key(input, BTN_6, (data[6] & 0x40));
752 input_report_key(input, BTN_7, (data[6] & 0x80));
753 input_report_key(input, BTN_8, (data[8] & 0x01));
754 input_report_key(input, BTN_9, (data[8] & 0x02));
755 input_report_key(input, BTN_A, (data[8] & 0x04));
756 input_report_key(input, BTN_B, (data[8] & 0x08));
757 input_report_key(input, BTN_C, (data[8] & 0x10));
758 input_report_key(input, BTN_X, (data[8] & 0x20));
759 input_report_key(input, BTN_Y, (data[8] & 0x40));
760 input_report_key(input, BTN_Z, (data[8] & 0x80));
761
762 /*
763 * Three "buttons" are available on the 24HD which are
764 * physically implemented as a touchstrip. Each button
765 * is approximately 3 bits wide with a 2 bit spacing.
766 * The raw touchstrip bits are stored at:
767 * ((data[3] & 0x1f) << 8) | data[4])
768 */
769 input_report_key(input, KEY_PROG1, data[4] & 0x07);
770 input_report_key(input, KEY_PROG2, data[4] & 0xE0);
771 input_report_key(input, KEY_PROG3, data[3] & 0x1C);
772
773 if (data[1] & 0x80) {
774 input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
775 } else {
776 /* Out of proximity, clear wheel value. */
777 input_report_abs(input, ABS_WHEEL, 0);
778 }
779
780 if (data[2] & 0x80) {
781 input_report_abs(input, ABS_THROTTLE, (data[2] & 0x7f));
782 } else {
783 /* Out of proximity, clear second wheel value. */
784 input_report_abs(input, ABS_THROTTLE, 0);
785 }
786
787 if (data[1] | data[2] | (data[3] & 0x1f) | data[4] | data[6] | data[8]) {
Jason Gerecke803296b2011-12-12 00:11:45 -0800788 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
789 } else {
Jason Gerecke803296b2011-12-12 00:11:45 -0800790 input_report_abs(input, ABS_MISC, 0);
791 }
Ping Cheng500d4162015-01-27 13:30:03 -0800792 } else if (features->type == WACOM_27QHD) {
793 input_report_key(input, KEY_PROG1, data[2] & 0x01);
794 input_report_key(input, KEY_PROG2, data[2] & 0x02);
795 input_report_key(input, KEY_PROG3, data[2] & 0x04);
796
797 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[4]));
798 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[6]));
799 input_report_abs(input, ABS_Z, be16_to_cpup((__be16 *)&data[8]));
Ping Chenga7e66452015-02-04 16:01:54 -0800800 if ((data[2] & 0x07) | data[4] | data[5] | data[6] | data[7] | data[8] | data[9]) {
801 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
802 } else {
803 input_report_abs(input, ABS_MISC, 0);
804 }
Jason Gerecke36d3c512013-09-20 09:47:35 -0700805 } else if (features->type == CINTIQ_HYBRID) {
806 /*
807 * Do not send hardware buttons under Android. They
808 * are already sent to the system through GPIO (and
809 * have different meaning).
810 */
811 input_report_key(input, BTN_1, (data[4] & 0x01));
812 input_report_key(input, BTN_2, (data[4] & 0x02));
813 input_report_key(input, BTN_3, (data[4] & 0x04));
814 input_report_key(input, BTN_4, (data[4] & 0x08));
815
816 input_report_key(input, BTN_5, (data[4] & 0x10)); /* Right */
817 input_report_key(input, BTN_6, (data[4] & 0x20)); /* Up */
818 input_report_key(input, BTN_7, (data[4] & 0x40)); /* Left */
819 input_report_key(input, BTN_8, (data[4] & 0x80)); /* Down */
820 input_report_key(input, BTN_0, (data[3] & 0x01)); /* Center */
Jason Gerecke33e5df02015-01-22 15:53:28 -0800821
822 if (data[4] | (data[3] & 0x01)) {
823 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
824 } else {
825 input_report_abs(input, ABS_MISC, 0);
826 }
Ping Cheng9a35c412013-09-20 09:51:56 -0700827 } else if (features->type >= INTUOS5S && features->type <= INTUOSPL) {
Jason Gereckef860e582012-04-03 15:48:35 -0700828 int i;
829
830 /* Touch ring mode switch has no capacitive sensor */
831 input_report_key(input, BTN_0, (data[3] & 0x01));
832
833 /*
Ping Cheng9a35c412013-09-20 09:51:56 -0700834 * ExpressKeys on Intuos5/Intuos Pro have a capacitive sensor in
Jason Gereckef860e582012-04-03 15:48:35 -0700835 * addition to the mechanical switch. Switch data is
836 * stored in data[4], capacitive data in data[5].
837 */
838 for (i = 0; i < 8; i++)
839 input_report_key(input, BTN_1 + i, data[4] & (1 << i));
840
841 if (data[2] & 0x80) {
842 input_report_abs(input, ABS_WHEEL, (data[2] & 0x7f));
843 } else {
844 /* Out of proximity, clear wheel value. */
845 input_report_abs(input, ABS_WHEEL, 0);
846 }
847
Jason Gerecke5e056ef2012-09-24 09:21:31 -0700848 if (data[2] | (data[3] & 0x01) | data[4] | data[5]) {
Jason Gereckef860e582012-04-03 15:48:35 -0700849 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
850 } else {
Jason Gereckef860e582012-04-03 15:48:35 -0700851 input_report_abs(input, ABS_MISC, 0);
852 }
Ping Cheng6f660f12009-05-08 18:30:33 -0700853 } else {
Ping Chengd838c642012-07-24 23:54:11 -0700854 if (features->type == WACOM_21UX2 || features->type == WACOM_22HD) {
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700855 input_report_key(input, BTN_0, (data[5] & 0x01));
856 input_report_key(input, BTN_1, (data[6] & 0x01));
857 input_report_key(input, BTN_2, (data[6] & 0x02));
858 input_report_key(input, BTN_3, (data[6] & 0x04));
859 input_report_key(input, BTN_4, (data[6] & 0x08));
860 input_report_key(input, BTN_5, (data[6] & 0x10));
861 input_report_key(input, BTN_6, (data[6] & 0x20));
862 input_report_key(input, BTN_7, (data[6] & 0x40));
863 input_report_key(input, BTN_8, (data[6] & 0x80));
864 input_report_key(input, BTN_9, (data[7] & 0x01));
865 input_report_key(input, BTN_A, (data[8] & 0x01));
866 input_report_key(input, BTN_B, (data[8] & 0x02));
867 input_report_key(input, BTN_C, (data[8] & 0x04));
868 input_report_key(input, BTN_X, (data[8] & 0x08));
869 input_report_key(input, BTN_Y, (data[8] & 0x10));
870 input_report_key(input, BTN_Z, (data[8] & 0x20));
871 input_report_key(input, BTN_BASE, (data[8] & 0x40));
872 input_report_key(input, BTN_BASE2, (data[8] & 0x80));
Ping Chengd838c642012-07-24 23:54:11 -0700873
874 if (features->type == WACOM_22HD) {
875 input_report_key(input, KEY_PROG1, data[9] & 0x01);
876 input_report_key(input, KEY_PROG2, data[9] & 0x02);
877 input_report_key(input, KEY_PROG3, data[9] & 0x04);
878 }
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700879 } else {
880 input_report_key(input, BTN_0, (data[5] & 0x01));
881 input_report_key(input, BTN_1, (data[5] & 0x02));
882 input_report_key(input, BTN_2, (data[5] & 0x04));
883 input_report_key(input, BTN_3, (data[5] & 0x08));
884 input_report_key(input, BTN_4, (data[6] & 0x01));
885 input_report_key(input, BTN_5, (data[6] & 0x02));
886 input_report_key(input, BTN_6, (data[6] & 0x04));
887 input_report_key(input, BTN_7, (data[6] & 0x08));
888 input_report_key(input, BTN_8, (data[5] & 0x10));
889 input_report_key(input, BTN_9, (data[6] & 0x10));
890 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700891 input_report_abs(input, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]);
892 input_report_abs(input, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700893
Ping Cheng493630b2010-06-22 11:21:34 -0700894 if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) |
Ping Cheng3a4b4aa2010-06-03 22:10:21 -0700895 data[2] | (data[3] & 0x1f) | data[4] | data[8] |
896 (data[7] & 0x01)) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700897 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
Ping Cheng6f660f12009-05-08 18:30:33 -0700898 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700899 input_report_abs(input, ABS_MISC, 0);
Ping Cheng6f660f12009-05-08 18:30:33 -0700900 }
901 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700902 return 1;
903 }
904
905 /* process in/out prox events */
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700906 result = wacom_intuos_inout(wacom);
Ping Cheng3bea7332006-07-13 18:01:36 -0700907 if (result)
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700908 return result - 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700909
Jason Childse33da8a2010-02-17 22:38:31 -0800910 if (features->type >= INTUOS3S) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700911 input_report_abs(input, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1));
912 input_report_abs(input, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1));
913 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 2) & 0x3f));
Ping Cheng3bea7332006-07-13 18:01:36 -0700914 } else {
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700915 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[2]));
916 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[4]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700917 input_report_abs(input, ABS_DISTANCE, ((data[9] >> 3) & 0x1f));
Ping Cheng3bea7332006-07-13 18:01:36 -0700918 }
919
920 /* process general packets */
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700921 wacom_intuos_general(wacom);
Ping Cheng3bea7332006-07-13 18:01:36 -0700922
Ping Cheng6f660f12009-05-08 18:30:33 -0700923 /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */
924 if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0 || (data[1] & 0xbc) == 0xac) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700925
926 if (data[1] & 0x02) {
927 /* Rotation packet */
Jason Childse33da8a2010-02-17 22:38:31 -0800928 if (features->type >= INTUOS3S) {
Ping Cheng0e1763f2008-03-13 16:46:46 -0400929 /* I3 marker pen rotation */
Ping Cheng3bea7332006-07-13 18:01:36 -0700930 t = (data[6] << 3) | ((data[7] >> 5) & 7);
931 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
932 ((t-1) / 2 + 450)) : (450 - t / 2) ;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700933 input_report_abs(input, ABS_Z, t);
Ping Cheng3bea7332006-07-13 18:01:36 -0700934 } else {
935 /* 4D mouse rotation packet */
936 t = (data[6] << 3) | ((data[7] >> 5) & 7);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700937 input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
Ping Cheng3bea7332006-07-13 18:01:36 -0700938 ((t - 1) / 2) : -t / 2);
939 }
940
Jason Childse33da8a2010-02-17 22:38:31 -0800941 } else if (!(data[1] & 0x10) && features->type < INTUOS3S) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700942 /* 4D mouse packet */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700943 input_report_key(input, BTN_LEFT, data[8] & 0x01);
944 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
945 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
Ping Cheng3bea7332006-07-13 18:01:36 -0700946
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700947 input_report_key(input, BTN_SIDE, data[8] & 0x20);
948 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700949 t = (data[6] << 2) | ((data[7] >> 6) & 3);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700950 input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
Ping Cheng3bea7332006-07-13 18:01:36 -0700951
952 } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
Ping Cheng6f660f12009-05-08 18:30:33 -0700953 /* I4 mouse */
Ping Cheng9a35c412013-09-20 09:51:56 -0700954 if (features->type >= INTUOS4S && features->type <= INTUOSPL) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700955 input_report_key(input, BTN_LEFT, data[6] & 0x01);
956 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
957 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
958 input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
Ping Cheng6f660f12009-05-08 18:30:33 -0700959 - ((data[7] & 0x40) >> 6));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700960 input_report_key(input, BTN_SIDE, data[6] & 0x08);
961 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
Ping Cheng6f660f12009-05-08 18:30:33 -0700962
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700963 input_report_abs(input, ABS_TILT_X,
Jason Gereckeec5fc1c2014-11-18 16:50:08 -0800964 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
965 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
Ping Cheng6f660f12009-05-08 18:30:33 -0700966 } else {
967 /* 2D mouse packet */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700968 input_report_key(input, BTN_LEFT, data[8] & 0x04);
969 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
970 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
971 input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
Ping Cheng3bea7332006-07-13 18:01:36 -0700972 - ((data[8] & 0x02) >> 1));
973
Ping Cheng6f660f12009-05-08 18:30:33 -0700974 /* I3 2D mouse side buttons */
Jason Childse33da8a2010-02-17 22:38:31 -0800975 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700976 input_report_key(input, BTN_SIDE, data[8] & 0x40);
977 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
Ping Cheng6f660f12009-05-08 18:30:33 -0700978 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700979 }
Jason Childse33da8a2010-02-17 22:38:31 -0800980 } else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
Ping Cheng9a35c412013-09-20 09:51:56 -0700981 features->type == INTUOS4L || features->type == INTUOS5L ||
982 features->type == INTUOSPL) &&
Ping Cheng6f660f12009-05-08 18:30:33 -0700983 wacom->tool[idx] == BTN_TOOL_LENS) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700984 /* Lens cursor packets */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700985 input_report_key(input, BTN_LEFT, data[8] & 0x01);
986 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
987 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
988 input_report_key(input, BTN_SIDE, data[8] & 0x10);
989 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
Ping Cheng3bea7332006-07-13 18:01:36 -0700990 }
991 }
992
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700993 input_report_abs(input, ABS_MISC, wacom->id[idx]); /* report tool id */
994 input_report_key(input, wacom->tool[idx], 1);
995 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Chengb3bd7ef2015-01-09 11:05:13 -0800996 wacom->reporting_data = true;
Ping Cheng3bea7332006-07-13 18:01:36 -0700997 return 1;
998}
999
Jason Gereckeb1e42792012-10-21 00:38:04 -07001000static int int_dist(int x1, int y1, int x2, int y2)
1001{
1002 int x = x2 - x1;
1003 int y = y2 - y1;
1004
1005 return int_sqrt(x*x + y*y);
1006}
1007
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001008static void wacom_intuos_bt_process_data(struct wacom_wac *wacom,
1009 unsigned char *data)
1010{
1011 memcpy(wacom->data, data, 10);
1012 wacom_intuos_irq(wacom);
1013
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001014 input_sync(wacom->pen_input);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001015 if (wacom->pad_input)
1016 input_sync(wacom->pad_input);
1017}
1018
1019static int wacom_intuos_bt_irq(struct wacom_wac *wacom, size_t len)
1020{
1021 unsigned char data[WACOM_PKGLEN_MAX];
1022 int i = 1;
1023 unsigned power_raw, battery_capacity, bat_charging, ps_connected;
1024
1025 memcpy(data, wacom->data, len);
1026
1027 switch (data[0]) {
1028 case 0x04:
1029 wacom_intuos_bt_process_data(wacom, data + i);
1030 i += 10;
1031 /* fall through */
1032 case 0x03:
1033 wacom_intuos_bt_process_data(wacom, data + i);
1034 i += 10;
1035 wacom_intuos_bt_process_data(wacom, data + i);
1036 i += 10;
1037 power_raw = data[i];
1038 bat_charging = (power_raw & 0x08) ? 1 : 0;
1039 ps_connected = (power_raw & 0x10) ? 1 : 0;
1040 battery_capacity = batcap_i4[power_raw & 0x07];
Jason Gerecke953f2c52015-03-06 11:47:39 -08001041 wacom_notify_battery(wacom, battery_capacity, bat_charging,
Jason Gerecke71fa6412015-03-11 10:25:41 -07001042 battery_capacity || bat_charging,
Jason Gerecke953f2c52015-03-06 11:47:39 -08001043 ps_connected);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001044 break;
1045 default:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001046 dev_dbg(wacom->pen_input->dev.parent,
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001047 "Unknown report: %d,%d size:%zu\n",
1048 data[0], data[1], len);
1049 return 0;
1050 }
1051 return 0;
1052}
1053
Ping Cheng7d059ed2015-03-20 14:57:21 -07001054static int wacom_wac_finger_count_touches(struct wacom_wac *wacom)
1055{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001056 struct input_dev *input = wacom->touch_input;
Ping Cheng7d059ed2015-03-20 14:57:21 -07001057 unsigned touch_max = wacom->features.touch_max;
1058 int count = 0;
1059 int i;
1060
Ping Cheng26ba61f2015-05-19 17:42:02 -07001061 if (!touch_max)
1062 return 0;
1063
Jason Gerecke71b5c472015-04-15 17:22:32 -07001064 if (touch_max == 1)
1065 return test_bit(BTN_TOUCH, input->key) &&
Ping Cheng7d059ed2015-03-20 14:57:21 -07001066 !wacom->shared->stylus_in_proximity;
1067
1068 for (i = 0; i < input->mt->num_slots; i++) {
1069 struct input_mt_slot *ps = &input->mt->slots[i];
1070 int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
1071 if (id >= 0)
1072 count++;
1073 }
1074
1075 return count;
1076}
1077
Jason Gereckeb1e42792012-10-21 00:38:04 -07001078static int wacom_24hdt_irq(struct wacom_wac *wacom)
1079{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001080 struct input_dev *input = wacom->touch_input;
Jason Gerecke74b63412014-04-19 13:50:22 -07001081 unsigned char *data = wacom->data;
Jason Gereckeb1e42792012-10-21 00:38:04 -07001082 int i;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001083 int current_num_contacts = data[61];
Jason Gereckeb1e42792012-10-21 00:38:04 -07001084 int contacts_to_send = 0;
Ping Cheng500d4162015-01-27 13:30:03 -08001085 int num_contacts_left = 4; /* maximum contacts per packet */
1086 int byte_per_packet = WACOM_BYTES_PER_24HDT_PACKET;
1087 int y_offset = 2;
1088
1089 if (wacom->features.type == WACOM_27QHDT) {
1090 current_num_contacts = data[63];
1091 num_contacts_left = 10;
1092 byte_per_packet = WACOM_BYTES_PER_QHDTHID_PACKET;
1093 y_offset = 0;
Ping Cheng500d4162015-01-27 13:30:03 -08001094 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001095
1096 /*
1097 * First packet resets the counter since only the first
1098 * packet in series will have non-zero current_num_contacts.
1099 */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001100 if (current_num_contacts)
Jason Gereckeb1e42792012-10-21 00:38:04 -07001101 wacom->num_contacts_left = current_num_contacts;
1102
Ping Cheng500d4162015-01-27 13:30:03 -08001103 contacts_to_send = min(num_contacts_left, wacom->num_contacts_left);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001104
1105 for (i = 0; i < contacts_to_send; i++) {
Ping Cheng500d4162015-01-27 13:30:03 -08001106 int offset = (byte_per_packet * i) + 1;
Ping Cheng9b61aa82015-01-28 09:42:59 -08001107 bool touch = (data[offset] & 0x1) && !wacom->shared->stylus_in_proximity;
Ping Cheng02295e62013-01-04 23:56:00 -08001108 int slot = input_mt_get_slot_by_key(input, data[offset + 1]);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001109
1110 if (slot < 0)
1111 continue;
1112 input_mt_slot(input, slot);
1113 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1114
1115 if (touch) {
Jason Gereckeedc8e20a2014-05-14 16:53:30 -07001116 int t_x = get_unaligned_le16(&data[offset + 2]);
Ping Cheng500d4162015-01-27 13:30:03 -08001117 int t_y = get_unaligned_le16(&data[offset + 4 + y_offset]);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001118
1119 input_report_abs(input, ABS_MT_POSITION_X, t_x);
1120 input_report_abs(input, ABS_MT_POSITION_Y, t_y);
Ping Cheng500d4162015-01-27 13:30:03 -08001121
1122 if (wacom->features.type != WACOM_27QHDT) {
1123 int c_x = get_unaligned_le16(&data[offset + 4]);
1124 int c_y = get_unaligned_le16(&data[offset + 8]);
1125 int w = get_unaligned_le16(&data[offset + 10]);
1126 int h = get_unaligned_le16(&data[offset + 12]);
1127
1128 input_report_abs(input, ABS_MT_TOUCH_MAJOR, min(w,h));
1129 input_report_abs(input, ABS_MT_WIDTH_MAJOR,
1130 min(w, h) + int_dist(t_x, t_y, c_x, c_y));
1131 input_report_abs(input, ABS_MT_WIDTH_MINOR, min(w, h));
1132 input_report_abs(input, ABS_MT_ORIENTATION, w > h);
1133 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001134 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001135 }
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001136 input_mt_sync_frame(input);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001137
1138 wacom->num_contacts_left -= contacts_to_send;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001139 if (wacom->num_contacts_left <= 0) {
Jason Gereckeb1e42792012-10-21 00:38:04 -07001140 wacom->num_contacts_left = 0;
Ping Cheng7d059ed2015-03-20 14:57:21 -07001141 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Ping Chenge0d41fd2015-02-20 14:27:30 -08001142 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001143 return 1;
1144}
1145
Ping Cheng19635182012-04-29 21:09:18 -07001146static int wacom_mt_touch(struct wacom_wac *wacom)
1147{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001148 struct input_dev *input = wacom->touch_input;
Jason Gerecke74b63412014-04-19 13:50:22 -07001149 unsigned char *data = wacom->data;
Ping Cheng19635182012-04-29 21:09:18 -07001150 int i;
1151 int current_num_contacts = data[2];
1152 int contacts_to_send = 0;
Ping Cheng6afdc282012-11-03 12:16:15 -07001153 int x_offset = 0;
1154
1155 /* MTTPC does not support Height and Width */
Jason Gerecked51ddb22014-05-14 17:14:29 -07001156 if (wacom->features.type == MTTPC || wacom->features.type == MTTPC_B)
Ping Cheng6afdc282012-11-03 12:16:15 -07001157 x_offset = -4;
Ping Cheng19635182012-04-29 21:09:18 -07001158
1159 /*
1160 * First packet resets the counter since only the first
1161 * packet in series will have non-zero current_num_contacts.
1162 */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001163 if (current_num_contacts)
Ping Cheng19635182012-04-29 21:09:18 -07001164 wacom->num_contacts_left = current_num_contacts;
1165
1166 /* There are at most 5 contacts per packet */
1167 contacts_to_send = min(5, wacom->num_contacts_left);
1168
1169 for (i = 0; i < contacts_to_send; i++) {
Ping Cheng6afdc282012-11-03 12:16:15 -07001170 int offset = (WACOM_BYTES_PER_MT_PACKET + x_offset) * i + 3;
Ping Cheng9b61aa82015-01-28 09:42:59 -08001171 bool touch = (data[offset] & 0x1) && !wacom->shared->stylus_in_proximity;
Jason Gereckeedc8e20a2014-05-14 16:53:30 -07001172 int id = get_unaligned_le16(&data[offset + 1]);
Ping Cheng02295e62013-01-04 23:56:00 -08001173 int slot = input_mt_get_slot_by_key(input, id);
Ping Cheng19635182012-04-29 21:09:18 -07001174
1175 if (slot < 0)
1176 continue;
1177
1178 input_mt_slot(input, slot);
1179 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1180 if (touch) {
Jason Gereckeedc8e20a2014-05-14 16:53:30 -07001181 int x = get_unaligned_le16(&data[offset + x_offset + 7]);
1182 int y = get_unaligned_le16(&data[offset + x_offset + 9]);
Ping Cheng19635182012-04-29 21:09:18 -07001183 input_report_abs(input, ABS_MT_POSITION_X, x);
1184 input_report_abs(input, ABS_MT_POSITION_Y, y);
1185 }
Ping Cheng19635182012-04-29 21:09:18 -07001186 }
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001187 input_mt_sync_frame(input);
Ping Cheng19635182012-04-29 21:09:18 -07001188
1189 wacom->num_contacts_left -= contacts_to_send;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001190 if (wacom->num_contacts_left <= 0) {
Ping Cheng19635182012-04-29 21:09:18 -07001191 wacom->num_contacts_left = 0;
Ping Cheng7d059ed2015-03-20 14:57:21 -07001192 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Ping Chenge0d41fd2015-02-20 14:27:30 -08001193 }
Ping Cheng19635182012-04-29 21:09:18 -07001194 return 1;
1195}
1196
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001197static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
1198{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001199 struct input_dev *input = wacom->touch_input;
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001200 unsigned char *data = wacom->data;
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001201 int i;
1202
1203 for (i = 0; i < 2; i++) {
1204 int p = data[1] & (1 << i);
1205 bool touch = p && !wacom->shared->stylus_in_proximity;
1206
1207 input_mt_slot(input, i);
1208 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1209 if (touch) {
1210 int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
1211 int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
1212
1213 input_report_abs(input, ABS_MT_POSITION_X, x);
1214 input_report_abs(input, ABS_MT_POSITION_Y, y);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001215 }
1216 }
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001217 input_mt_sync_frame(input);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001218
1219 /* keep touch state for pen event */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001220 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001221
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001222 return 1;
1223}
1224
Ping Chenga43c7c52011-03-12 20:34:42 -08001225static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
Ping Chengec67bbe2009-12-15 00:35:24 -08001226{
Jason Gerecke74b63412014-04-19 13:50:22 -07001227 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001228 struct input_dev *input = wacom->touch_input;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001229 bool prox = !wacom->shared->stylus_in_proximity;
Ping Chenga43c7c52011-03-12 20:34:42 -08001230 int x = 0, y = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -08001231
Ping Cheng19635182012-04-29 21:09:18 -07001232 if (wacom->features.touch_max > 1 || len > WACOM_PKGLEN_TPC2FG)
1233 return 0;
1234
Ping Chenge0d41fd2015-02-20 14:27:30 -08001235 if (len == WACOM_PKGLEN_TPC1FG) {
1236 prox = prox && (data[0] & 0x01);
1237 x = get_unaligned_le16(&data[1]);
1238 y = get_unaligned_le16(&data[3]);
1239 } else if (len == WACOM_PKGLEN_TPC1FG_B) {
1240 prox = prox && (data[2] & 0x01);
1241 x = get_unaligned_le16(&data[3]);
1242 y = get_unaligned_le16(&data[5]);
1243 } else {
1244 prox = prox && (data[1] & 0x01);
1245 x = le16_to_cpup((__le16 *)&data[2]);
1246 y = le16_to_cpup((__le16 *)&data[4]);
1247 }
Ping Chenga43c7c52011-03-12 20:34:42 -08001248
1249 if (prox) {
1250 input_report_abs(input, ABS_X, x);
1251 input_report_abs(input, ABS_Y, y);
Ping Chengec67bbe2009-12-15 00:35:24 -08001252 }
Ping Chenga43c7c52011-03-12 20:34:42 -08001253 input_report_key(input, BTN_TOUCH, prox);
1254
1255 /* keep touch state for pen events */
1256 wacom->shared->touch_down = prox;
1257
1258 return 1;
Ping Chengec67bbe2009-12-15 00:35:24 -08001259}
1260
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001261static int wacom_tpc_pen(struct wacom_wac *wacom)
Ping Cheng545f4e92008-11-24 11:44:27 -05001262{
Jason Gerecke74b63412014-04-19 13:50:22 -07001263 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001264 struct input_dev *input = wacom->pen_input;
Ping Chenga43c7c52011-03-12 20:34:42 -08001265 bool prox = data[1] & 0x20;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001266
Ping Chenga43c7c52011-03-12 20:34:42 -08001267 if (!wacom->shared->stylus_in_proximity) /* first in prox */
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001268 /* Going into proximity select tool */
1269 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001270
Ping Chenga43c7c52011-03-12 20:34:42 -08001271 /* keep pen state for touch events */
1272 wacom->shared->stylus_in_proximity = prox;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001273
Ping Chenga43c7c52011-03-12 20:34:42 -08001274 /* send pen events only when touch is up or forced out */
1275 if (!wacom->shared->touch_down) {
1276 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
1277 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
1278 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
1279 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Jason Gerecke0b335ca2014-07-24 13:15:31 -07001280 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x07) << 8) | data[6]);
Ping Chenga43c7c52011-03-12 20:34:42 -08001281 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
1282 input_report_key(input, wacom->tool[0], prox);
1283 return 1;
1284 }
1285
1286 return 0;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001287}
1288
1289static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
1290{
Jason Gerecke74b63412014-04-19 13:50:22 -07001291 unsigned char *data = wacom->data;
Ping Cheng545f4e92008-11-24 11:44:27 -05001292
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001293 if (wacom->pen_input)
1294 dev_dbg(wacom->pen_input->dev.parent,
1295 "%s: received report #%d\n", __func__, data[0]);
1296 else if (wacom->touch_input)
1297 dev_dbg(wacom->touch_input->dev.parent,
1298 "%s: received report #%d\n", __func__, data[0]);
Ping Cheng545f4e92008-11-24 11:44:27 -05001299
Ping Cheng31175a82012-01-31 00:07:33 -08001300 switch (len) {
1301 case WACOM_PKGLEN_TPC1FG:
Ping Cheng19635182012-04-29 21:09:18 -07001302 return wacom_tpc_single_touch(wacom, len);
Ping Cheng31175a82012-01-31 00:07:33 -08001303
1304 case WACOM_PKGLEN_TPC2FG:
Ping Cheng19635182012-04-29 21:09:18 -07001305 return wacom_tpc_mt_touch(wacom);
Ping Cheng31175a82012-01-31 00:07:33 -08001306
Jason Gerecked51ddb22014-05-14 17:14:29 -07001307 case WACOM_PKGLEN_PENABLED:
1308 return wacom_tpc_pen(wacom);
1309
Ping Cheng31175a82012-01-31 00:07:33 -08001310 default:
1311 switch (data[0]) {
1312 case WACOM_REPORT_TPC1FG:
1313 case WACOM_REPORT_TPCHID:
1314 case WACOM_REPORT_TPCST:
Ping Chengac173832012-06-12 00:15:06 -07001315 case WACOM_REPORT_TPC1FGE:
Ping Cheng31175a82012-01-31 00:07:33 -08001316 return wacom_tpc_single_touch(wacom, len);
1317
Ping Cheng19635182012-04-29 21:09:18 -07001318 case WACOM_REPORT_TPCMT:
Jason Gerecked51ddb22014-05-14 17:14:29 -07001319 case WACOM_REPORT_TPCMT2:
Ping Cheng19635182012-04-29 21:09:18 -07001320 return wacom_mt_touch(wacom);
1321
Ping Cheng31175a82012-01-31 00:07:33 -08001322 case WACOM_REPORT_PENABLED:
1323 return wacom_tpc_pen(wacom);
1324 }
1325 }
Ping Cheng545f4e92008-11-24 11:44:27 -05001326
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001327 return 0;
Ping Cheng545f4e92008-11-24 11:44:27 -05001328}
1329
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001330static void wacom_map_usage(struct input_dev *input, struct hid_usage *usage,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001331 struct hid_field *field, __u8 type, __u16 code, int fuzz)
1332{
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001333 int fmin = field->logical_minimum;
1334 int fmax = field->logical_maximum;
1335
1336 usage->type = type;
1337 usage->code = code;
1338
1339 set_bit(type, input->evbit);
1340
1341 switch (type) {
1342 case EV_ABS:
1343 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
1344 input_abs_set_res(input, code,
1345 hidinput_calc_abs_res(field, code));
1346 break;
1347 case EV_KEY:
1348 input_set_capability(input, EV_KEY, code);
1349 break;
1350 case EV_MSC:
1351 input_set_capability(input, EV_MSC, code);
1352 break;
1353 }
1354}
1355
1356static void wacom_wac_pen_usage_mapping(struct hid_device *hdev,
1357 struct hid_field *field, struct hid_usage *usage)
1358{
1359 struct wacom *wacom = hid_get_drvdata(hdev);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001360 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1361 struct input_dev *input = wacom_wac->pen_input;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001362
1363 switch (usage->hid) {
1364 case HID_GD_X:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001365 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001366 break;
1367 case HID_GD_Y:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001368 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001369 break;
1370 case HID_DG_TIPPRESSURE:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001371 wacom_map_usage(input, usage, field, EV_ABS, ABS_PRESSURE, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001372 break;
1373 case HID_DG_INRANGE:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001374 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001375 break;
1376 case HID_DG_INVERT:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001377 wacom_map_usage(input, usage, field, EV_KEY,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001378 BTN_TOOL_RUBBER, 0);
1379 break;
1380 case HID_DG_ERASER:
1381 case HID_DG_TIPSWITCH:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001382 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001383 break;
1384 case HID_DG_BARRELSWITCH:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001385 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001386 break;
1387 case HID_DG_BARRELSWITCH2:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001388 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS2, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001389 break;
1390 case HID_DG_TOOLSERIALNUMBER:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001391 wacom_map_usage(input, usage, field, EV_MSC, MSC_SERIAL, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001392 break;
1393 }
1394}
1395
1396static int wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field,
1397 struct hid_usage *usage, __s32 value)
1398{
1399 struct wacom *wacom = hid_get_drvdata(hdev);
1400 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001401 struct input_dev *input = wacom_wac->pen_input;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001402
1403 /* checking which Tool / tip switch to send */
1404 switch (usage->hid) {
1405 case HID_DG_INRANGE:
1406 wacom_wac->hid_data.inrange_state = value;
1407 return 0;
1408 case HID_DG_INVERT:
1409 wacom_wac->hid_data.invert_state = value;
1410 return 0;
1411 case HID_DG_ERASER:
1412 case HID_DG_TIPSWITCH:
1413 wacom_wac->hid_data.tipswitch |= value;
1414 return 0;
1415 }
1416
1417 /* send pen events only when touch is up or forced out */
1418 if (!usage->type || wacom_wac->shared->touch_down)
1419 return 0;
1420
1421 input_event(input, usage->type, usage->code, value);
1422
1423 return 0;
1424}
1425
Jason Gerecke06324e02015-07-21 11:07:23 -07001426static void wacom_wac_pen_pre_report(struct hid_device *hdev,
1427 struct hid_report *report)
1428{
1429 return;
1430}
1431
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001432static void wacom_wac_pen_report(struct hid_device *hdev,
1433 struct hid_report *report)
1434{
1435 struct wacom *wacom = hid_get_drvdata(hdev);
1436 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001437 struct input_dev *input = wacom_wac->pen_input;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001438 bool prox = wacom_wac->hid_data.inrange_state;
1439
1440 if (!wacom_wac->shared->stylus_in_proximity) /* first in prox */
1441 /* Going into proximity select tool */
1442 wacom_wac->tool[0] = wacom_wac->hid_data.invert_state ?
1443 BTN_TOOL_RUBBER : BTN_TOOL_PEN;
1444
1445 /* keep pen state for touch events */
1446 wacom_wac->shared->stylus_in_proximity = prox;
1447
1448 /* send pen events only when touch is up or forced out */
1449 if (!wacom_wac->shared->touch_down) {
1450 input_report_key(input, BTN_TOUCH,
1451 wacom_wac->hid_data.tipswitch);
1452 input_report_key(input, wacom_wac->tool[0], prox);
1453
1454 wacom_wac->hid_data.tipswitch = false;
1455
1456 input_sync(input);
1457 }
1458}
1459
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001460static void wacom_wac_finger_usage_mapping(struct hid_device *hdev,
1461 struct hid_field *field, struct hid_usage *usage)
1462{
1463 struct wacom *wacom = hid_get_drvdata(hdev);
1464 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke601a22f2014-12-10 16:26:04 -08001465 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001466 struct input_dev *input = wacom_wac->touch_input;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001467 unsigned touch_max = wacom_wac->features.touch_max;
1468
1469 switch (usage->hid) {
1470 case HID_GD_X:
Jason Gerecke601a22f2014-12-10 16:26:04 -08001471 features->last_slot_field = usage->hid;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001472 if (touch_max == 1)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001473 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001474 else
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001475 wacom_map_usage(input, usage, field, EV_ABS,
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001476 ABS_MT_POSITION_X, 4);
1477 break;
1478 case HID_GD_Y:
Jason Gerecke601a22f2014-12-10 16:26:04 -08001479 features->last_slot_field = usage->hid;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001480 if (touch_max == 1)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001481 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001482 else
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001483 wacom_map_usage(input, usage, field, EV_ABS,
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001484 ABS_MT_POSITION_Y, 4);
1485 break;
Jason Gerecke488abb52015-07-21 11:07:25 -07001486 case HID_DG_WIDTH:
1487 case HID_DG_HEIGHT:
1488 features->last_slot_field = usage->hid;
1489 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MAJOR, 0);
1490 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MINOR, 0);
1491 input_set_abs_params(input, ABS_MT_ORIENTATION, 0, 1, 0, 0);
1492 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001493 case HID_DG_CONTACTID:
Jason Gerecke601a22f2014-12-10 16:26:04 -08001494 features->last_slot_field = usage->hid;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001495 break;
1496 case HID_DG_INRANGE:
Jason Gerecke601a22f2014-12-10 16:26:04 -08001497 features->last_slot_field = usage->hid;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001498 break;
1499 case HID_DG_INVERT:
Jason Gerecke601a22f2014-12-10 16:26:04 -08001500 features->last_slot_field = usage->hid;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001501 break;
1502 case HID_DG_TIPSWITCH:
Jason Gerecke601a22f2014-12-10 16:26:04 -08001503 features->last_slot_field = usage->hid;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001504 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001505 break;
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001506 case HID_DG_CONTACTCOUNT:
1507 wacom_wac->hid_data.cc_index = field->index;
1508 wacom_wac->hid_data.cc_value_index = usage->usage_index;
1509 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001510 }
1511}
1512
Jason Gerecke601a22f2014-12-10 16:26:04 -08001513static void wacom_wac_finger_slot(struct wacom_wac *wacom_wac,
1514 struct input_dev *input)
1515{
1516 struct hid_data *hid_data = &wacom_wac->hid_data;
1517 bool mt = wacom_wac->features.touch_max > 1;
1518 bool prox = hid_data->tipswitch &&
1519 !wacom_wac->shared->stylus_in_proximity;
1520
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001521 wacom_wac->hid_data.num_received++;
1522 if (wacom_wac->hid_data.num_received > wacom_wac->hid_data.num_expected)
1523 return;
1524
Jason Gerecke601a22f2014-12-10 16:26:04 -08001525 if (mt) {
1526 int slot;
1527
1528 slot = input_mt_get_slot_by_key(input, hid_data->id);
1529 input_mt_slot(input, slot);
1530 input_mt_report_slot_state(input, MT_TOOL_FINGER, prox);
1531 }
1532 else {
1533 input_report_key(input, BTN_TOUCH, prox);
1534 }
1535
1536 if (prox) {
1537 input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X,
1538 hid_data->x);
1539 input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y,
1540 hid_data->y);
Jason Gerecke488abb52015-07-21 11:07:25 -07001541
1542 if (test_bit(ABS_MT_TOUCH_MAJOR, input->absbit)) {
1543 input_report_abs(input, ABS_MT_TOUCH_MAJOR, max(hid_data->width, hid_data->height));
1544 input_report_abs(input, ABS_MT_TOUCH_MINOR, min(hid_data->width, hid_data->height));
1545 if (hid_data->width != hid_data->height)
1546 input_report_abs(input, ABS_MT_ORIENTATION, hid_data->width <= hid_data->height ? 0 : 1);
1547 }
Jason Gerecke601a22f2014-12-10 16:26:04 -08001548 }
1549}
1550
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001551static int wacom_wac_finger_event(struct hid_device *hdev,
1552 struct hid_field *field, struct hid_usage *usage, __s32 value)
1553{
1554 struct wacom *wacom = hid_get_drvdata(hdev);
1555 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1556
1557 switch (usage->hid) {
1558 case HID_GD_X:
1559 wacom_wac->hid_data.x = value;
1560 break;
1561 case HID_GD_Y:
1562 wacom_wac->hid_data.y = value;
1563 break;
Jason Gerecke488abb52015-07-21 11:07:25 -07001564 case HID_DG_WIDTH:
1565 wacom_wac->hid_data.width = value;
1566 break;
1567 case HID_DG_HEIGHT:
1568 wacom_wac->hid_data.height = value;
1569 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001570 case HID_DG_CONTACTID:
1571 wacom_wac->hid_data.id = value;
1572 break;
1573 case HID_DG_TIPSWITCH:
1574 wacom_wac->hid_data.tipswitch = value;
1575 break;
1576 }
1577
1578
Jason Gerecke601a22f2014-12-10 16:26:04 -08001579 if (usage->usage_index + 1 == field->report_count) {
1580 if (usage->hid == wacom_wac->features.last_slot_field)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001581 wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input);
Jason Gerecke601a22f2014-12-10 16:26:04 -08001582 }
1583
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001584 return 0;
1585}
1586
Jason Gerecke06324e02015-07-21 11:07:23 -07001587static void wacom_wac_finger_pre_report(struct hid_device *hdev,
1588 struct hid_report *report)
1589{
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001590 struct wacom *wacom = hid_get_drvdata(hdev);
1591 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1592 struct hid_data* hid_data = &wacom_wac->hid_data;
1593
1594 if (hid_data->cc_index >= 0) {
1595 struct hid_field *field = report->field[hid_data->cc_index];
1596 int value = field->value[hid_data->cc_value_index];
1597 if (value)
1598 hid_data->num_expected = value;
1599 }
1600 else {
1601 hid_data->num_expected = wacom_wac->features.touch_max;
1602 }
Jason Gerecke06324e02015-07-21 11:07:23 -07001603}
1604
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001605static void wacom_wac_finger_report(struct hid_device *hdev,
1606 struct hid_report *report)
1607{
1608 struct wacom *wacom = hid_get_drvdata(hdev);
1609 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001610 struct input_dev *input = wacom_wac->touch_input;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001611 unsigned touch_max = wacom_wac->features.touch_max;
1612
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001613 /* If more packets of data are expected, give us a chance to
1614 * process them rather than immediately syncing a partial
1615 * update.
1616 */
1617 if (wacom_wac->hid_data.num_received < wacom_wac->hid_data.num_expected)
1618 return;
1619
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001620 if (touch_max > 1)
Jason Gerecke601a22f2014-12-10 16:26:04 -08001621 input_mt_sync_frame(input);
1622
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001623 input_sync(input);
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001624 wacom_wac->hid_data.num_received = 0;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001625
1626 /* keep touch state for pen event */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001627 wacom_wac->shared->touch_down = wacom_wac_finger_count_touches(wacom_wac);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001628}
1629
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001630void wacom_wac_usage_mapping(struct hid_device *hdev,
1631 struct hid_field *field, struct hid_usage *usage)
1632{
1633 struct wacom *wacom = hid_get_drvdata(hdev);
1634 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001635
1636 /* currently, only direct devices have proper hid report descriptors */
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001637 __set_bit(INPUT_PROP_DIRECT, wacom_wac->pen_input->propbit);
1638 __set_bit(INPUT_PROP_DIRECT, wacom_wac->touch_input->propbit);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001639
1640 if (WACOM_PEN_FIELD(field))
1641 return wacom_wac_pen_usage_mapping(hdev, field, usage);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001642
1643 if (WACOM_FINGER_FIELD(field))
1644 return wacom_wac_finger_usage_mapping(hdev, field, usage);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001645}
1646
1647int wacom_wac_event(struct hid_device *hdev, struct hid_field *field,
1648 struct hid_usage *usage, __s32 value)
1649{
1650 struct wacom *wacom = hid_get_drvdata(hdev);
1651
1652 if (wacom->wacom_wac.features.type != HID_GENERIC)
1653 return 0;
1654
1655 if (WACOM_PEN_FIELD(field))
1656 return wacom_wac_pen_event(hdev, field, usage, value);
1657
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001658 if (WACOM_FINGER_FIELD(field))
1659 return wacom_wac_finger_event(hdev, field, usage, value);
1660
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001661 return 0;
1662}
1663
Jason Gerecke06324e02015-07-21 11:07:23 -07001664static void wacom_report_events(struct hid_device *hdev, struct hid_report *report)
1665{
1666 int r;
1667
1668 for (r = 0; r < report->maxfield; r++) {
1669 struct hid_field *field;
1670 unsigned count, n;
1671
1672 field = report->field[r];
1673 count = field->report_count;
1674
1675 if (!(HID_MAIN_ITEM_VARIABLE & field->flags))
1676 continue;
1677
1678 for (n = 0; n < count; n++)
1679 wacom_wac_event(hdev, field, &field->usage[n], field->value[n]);
1680 }
1681}
1682
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001683void wacom_wac_report(struct hid_device *hdev, struct hid_report *report)
1684{
1685 struct wacom *wacom = hid_get_drvdata(hdev);
1686 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1687 struct hid_field *field = report->field[0];
1688
1689 if (wacom_wac->features.type != HID_GENERIC)
1690 return;
1691
1692 if (WACOM_PEN_FIELD(field))
Jason Gerecke06324e02015-07-21 11:07:23 -07001693 wacom_wac_pen_pre_report(hdev, report);
1694
1695 if (WACOM_FINGER_FIELD(field))
1696 wacom_wac_finger_pre_report(hdev, report);
1697
1698 wacom_report_events(hdev, report);
1699
1700 if (WACOM_PEN_FIELD(field))
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001701 return wacom_wac_pen_report(hdev, report);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001702
1703 if (WACOM_FINGER_FIELD(field))
1704 return wacom_wac_finger_report(hdev, report);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001705}
1706
Chris Bagwelle1d38e42010-09-12 00:09:27 -07001707static int wacom_bpt_touch(struct wacom_wac *wacom)
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001708{
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07001709 struct wacom_features *features = &wacom->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001710 struct input_dev *input = wacom->touch_input;
Benjamin Tissoires31168712014-07-24 12:50:10 -07001711 struct input_dev *pad_input = wacom->pad_input;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001712 unsigned char *data = wacom->data;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001713 int i;
1714
Chris Bagwell5a6c8652011-11-07 19:52:42 -08001715 if (data[0] != 0x02)
1716 return 0;
1717
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001718 for (i = 0; i < 2; i++) {
Chris Bagwell8f906862011-09-09 13:38:10 -07001719 int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
1720 bool touch = data[offset + 3] & 0x80;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +01001721
Chris Bagwell33d5f712010-09-12 00:12:28 -07001722 /*
1723 * Touch events need to be disabled while stylus is
1724 * in proximity because user's hand is resting on touchpad
1725 * and sending unwanted events. User expects tablet buttons
1726 * to continue working though.
1727 */
Chris Bagwell8f906862011-09-09 13:38:10 -07001728 touch = touch && !wacom->shared->stylus_in_proximity;
1729
1730 input_mt_slot(input, i);
1731 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +01001732 if (touch) {
Chris Bagwell8f906862011-09-09 13:38:10 -07001733 int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
1734 int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07001735 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
1736 x <<= 5;
1737 y <<= 5;
1738 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001739 input_report_abs(input, ABS_MT_POSITION_X, x);
1740 input_report_abs(input, ABS_MT_POSITION_Y, y);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001741 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001742 }
1743
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001744 input_mt_sync_frame(input);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001745
Benjamin Tissoires31168712014-07-24 12:50:10 -07001746 input_report_key(pad_input, BTN_LEFT, (data[1] & 0x08) != 0);
1747 input_report_key(pad_input, BTN_FORWARD, (data[1] & 0x04) != 0);
1748 input_report_key(pad_input, BTN_BACK, (data[1] & 0x02) != 0);
1749 input_report_key(pad_input, BTN_RIGHT, (data[1] & 0x01) != 0);
Ping Cheng7d059ed2015-03-20 14:57:21 -07001750 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001751
Benjamin Tissoires31168712014-07-24 12:50:10 -07001752 return 1;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07001753}
1754
Ping Cheng7d059ed2015-03-20 14:57:21 -07001755static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
Chris Bagwell73149ab2011-10-26 22:34:21 -07001756{
Ping Cheng9a35c412013-09-20 09:51:56 -07001757 struct wacom_features *features = &wacom->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001758 struct input_dev *input = wacom->touch_input;
Chris Bagwell73149ab2011-10-26 22:34:21 -07001759 bool touch = data[1] & 0x80;
Ping Cheng02295e62013-01-04 23:56:00 -08001760 int slot = input_mt_get_slot_by_key(input, data[0]);
1761
1762 if (slot < 0)
Ping Cheng7d059ed2015-03-20 14:57:21 -07001763 return;
Chris Bagwell73149ab2011-10-26 22:34:21 -07001764
1765 touch = touch && !wacom->shared->stylus_in_proximity;
1766
Ping Cheng02295e62013-01-04 23:56:00 -08001767 input_mt_slot(input, slot);
Chris Bagwell73149ab2011-10-26 22:34:21 -07001768 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1769
1770 if (touch) {
1771 int x = (data[2] << 4) | (data[4] >> 4);
1772 int y = (data[3] << 4) | (data[4] & 0x0f);
Ping Cheng9a35c412013-09-20 09:51:56 -07001773 int width, height;
Jason Gerecke4e904952012-10-03 17:19:11 -07001774
Ping Cheng9a35c412013-09-20 09:51:56 -07001775 if (features->type >= INTUOSPS && features->type <= INTUOSPL) {
Jason Gerecke0b279da2013-11-25 18:43:16 -08001776 width = data[5] * 100;
1777 height = data[6] * 100;
Ping Cheng9a35c412013-09-20 09:51:56 -07001778 } else {
1779 /*
1780 * "a" is a scaled-down area which we assume is
1781 * roughly circular and which can be described as:
1782 * a=(pi*r^2)/C.
1783 */
1784 int a = data[5];
Ping Chengd7da3a32014-06-13 13:37:33 -07001785 int x_res = input_abs_get_res(input, ABS_MT_POSITION_X);
1786 int y_res = input_abs_get_res(input, ABS_MT_POSITION_Y);
1787 width = 2 * int_sqrt(a * WACOM_CONTACT_AREA_SCALE);
Ping Cheng9a35c412013-09-20 09:51:56 -07001788 height = width * y_res / x_res;
1789 }
Chris Bagwell73149ab2011-10-26 22:34:21 -07001790
1791 input_report_abs(input, ABS_MT_POSITION_X, x);
1792 input_report_abs(input, ABS_MT_POSITION_Y, y);
Jason Gerecke4e904952012-10-03 17:19:11 -07001793 input_report_abs(input, ABS_MT_TOUCH_MAJOR, width);
1794 input_report_abs(input, ABS_MT_TOUCH_MINOR, height);
Chris Bagwell73149ab2011-10-26 22:34:21 -07001795 }
1796}
1797
1798static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
1799{
Benjamin Tissoires31168712014-07-24 12:50:10 -07001800 struct input_dev *input = wacom->pad_input;
Ping Chengb5fd2a32013-11-25 18:44:55 -08001801 struct wacom_features *features = &wacom->features;
Chris Bagwell73149ab2011-10-26 22:34:21 -07001802
Ping Chengb5fd2a32013-11-25 18:44:55 -08001803 if (features->type == INTUOSHT) {
1804 input_report_key(input, BTN_LEFT, (data[1] & 0x02) != 0);
1805 input_report_key(input, BTN_BACK, (data[1] & 0x08) != 0);
1806 } else {
1807 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
1808 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
1809 }
Chris Bagwell73149ab2011-10-26 22:34:21 -07001810 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
Chris Bagwell73149ab2011-10-26 22:34:21 -07001811 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
1812}
1813
1814static int wacom_bpt3_touch(struct wacom_wac *wacom)
1815{
Chris Bagwell73149ab2011-10-26 22:34:21 -07001816 unsigned char *data = wacom->data;
Jason Gerecke19d57d32012-03-06 10:19:19 -08001817 int count = data[1] & 0x07;
Chris Bagwell73149ab2011-10-26 22:34:21 -07001818 int i;
1819
Chris Bagwell5a6c8652011-11-07 19:52:42 -08001820 if (data[0] != 0x02)
1821 return 0;
1822
Chris Bagwell73149ab2011-10-26 22:34:21 -07001823 /* data has up to 7 fixed sized 8-byte messages starting at data[2] */
1824 for (i = 0; i < count; i++) {
1825 int offset = (8 * i) + 2;
1826 int msg_id = data[offset];
1827
1828 if (msg_id >= 2 && msg_id <= 17)
Ping Cheng7d059ed2015-03-20 14:57:21 -07001829 wacom_bpt3_touch_msg(wacom, data + offset);
Chris Bagwell73149ab2011-10-26 22:34:21 -07001830 else if (msg_id == 128)
1831 wacom_bpt3_button_msg(wacom, data + offset);
1832
1833 }
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001834
1835 /* only update the touch if we actually have a touchpad */
1836 if (wacom->touch_registered) {
1837 input_mt_sync_frame(wacom->touch_input);
1838 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
1839 }
Chris Bagwell73149ab2011-10-26 22:34:21 -07001840
Benjamin Tissoires31168712014-07-24 12:50:10 -07001841 return 1;
Chris Bagwell73149ab2011-10-26 22:34:21 -07001842}
1843
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001844static int wacom_bpt_pen(struct wacom_wac *wacom)
1845{
Ping Cheng961794a2013-12-05 12:54:53 -08001846 struct wacom_features *features = &wacom->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001847 struct input_dev *input = wacom->pen_input;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001848 unsigned char *data = wacom->data;
1849 int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
1850
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08001851 if (data[0] != WACOM_REPORT_PENABLED)
Chris Bagwell5a6c8652011-11-07 19:52:42 -08001852 return 0;
1853
Chris Bagwellc5981412011-10-26 22:28:34 -07001854 prox = (data[1] & 0x20) == 0x20;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001855
1856 /*
1857 * All reports shared between PEN and RUBBER tool must be
1858 * forced to a known starting value (zero) when transitioning to
1859 * out-of-prox.
1860 *
1861 * If not reset then, to userspace, it will look like lost events
1862 * if new tool comes in-prox with same values as previous tool sent.
1863 *
1864 * Hardware does report zero in most out-of-prox cases but not all.
1865 */
Ping Cheng01499312015-03-20 14:58:01 -07001866 if (!wacom->shared->stylus_in_proximity) {
1867 if (data[1] & 0x08) {
1868 wacom->tool[0] = BTN_TOOL_RUBBER;
1869 wacom->id[0] = ERASER_DEVICE_ID;
1870 } else {
1871 wacom->tool[0] = BTN_TOOL_PEN;
1872 wacom->id[0] = STYLUS_DEVICE_ID;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001873 }
Ping Cheng01499312015-03-20 14:58:01 -07001874 }
1875
1876 wacom->shared->stylus_in_proximity = prox;
1877 if (wacom->shared->touch_down)
1878 return 0;
1879
1880 if (prox) {
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001881 x = le16_to_cpup((__le16 *)&data[2]);
1882 y = le16_to_cpup((__le16 *)&data[4]);
1883 p = le16_to_cpup((__le16 *)&data[6]);
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001884 /*
1885 * Convert distance from out prox to distance from tablet.
1886 * distance will be greater than distance_max once
1887 * touching and applying pressure; do not report negative
1888 * distance.
1889 */
Ping Cheng961794a2013-12-05 12:54:53 -08001890 if (data[8] <= features->distance_max)
1891 d = features->distance_max - data[8];
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07001892
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001893 pen = data[1] & 0x01;
1894 btn1 = data[1] & 0x02;
1895 btn2 = data[1] & 0x04;
Ping Cheng01499312015-03-20 14:58:01 -07001896 } else {
1897 wacom->id[0] = 0;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001898 }
1899
1900 input_report_key(input, BTN_TOUCH, pen);
1901 input_report_key(input, BTN_STYLUS, btn1);
1902 input_report_key(input, BTN_STYLUS2, btn2);
1903
1904 input_report_abs(input, ABS_X, x);
1905 input_report_abs(input, ABS_Y, y);
1906 input_report_abs(input, ABS_PRESSURE, p);
1907 input_report_abs(input, ABS_DISTANCE, d);
1908
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001909 input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
1910 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
1911
1912 return 1;
1913}
1914
Chris Bagwelle1d38e42010-09-12 00:09:27 -07001915static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
1916{
1917 if (len == WACOM_PKGLEN_BBTOUCH)
1918 return wacom_bpt_touch(wacom);
Chris Bagwell73149ab2011-10-26 22:34:21 -07001919 else if (len == WACOM_PKGLEN_BBTOUCH3)
1920 return wacom_bpt3_touch(wacom);
1921 else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
Chris Bagwell2aaacb12010-09-12 00:11:35 -07001922 return wacom_bpt_pen(wacom);
Chris Bagwelle1d38e42010-09-12 00:09:27 -07001923
1924 return 0;
1925}
1926
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05001927static void wacom_bamboo_pad_pen_event(struct wacom_wac *wacom,
1928 unsigned char *data)
1929{
1930 unsigned char prefix;
1931
1932 /*
1933 * We need to reroute the event from the debug interface to the
1934 * pen interface.
1935 * We need to add the report ID to the actual pen report, so we
1936 * temporary overwrite the first byte to prevent having to kzalloc/kfree
1937 * and memcpy the report.
1938 */
1939 prefix = data[0];
1940 data[0] = WACOM_REPORT_BPAD_PEN;
1941
1942 /*
1943 * actually reroute the event.
1944 * No need to check if wacom->shared->pen is valid, hid_input_report()
1945 * will check for us.
1946 */
1947 hid_input_report(wacom->shared->pen, HID_INPUT_REPORT, data,
1948 WACOM_PKGLEN_PENABLED, 1);
1949
1950 data[0] = prefix;
1951}
1952
1953static int wacom_bamboo_pad_touch_event(struct wacom_wac *wacom,
1954 unsigned char *data)
1955{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001956 struct input_dev *input = wacom->touch_input;
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05001957 unsigned char *finger_data, prefix;
1958 unsigned id;
1959 int x, y;
1960 bool valid;
1961
1962 prefix = data[0];
1963
1964 for (id = 0; id < wacom->features.touch_max; id++) {
1965 valid = !!(prefix & BIT(id)) &&
1966 !wacom->shared->stylus_in_proximity;
1967
1968 input_mt_slot(input, id);
1969 input_mt_report_slot_state(input, MT_TOOL_FINGER, valid);
1970
1971 if (!valid)
1972 continue;
1973
1974 finger_data = data + 1 + id * 3;
1975 x = finger_data[0] | ((finger_data[1] & 0x0f) << 8);
1976 y = (finger_data[2] << 4) | (finger_data[1] >> 4);
1977
1978 input_report_abs(input, ABS_MT_POSITION_X, x);
1979 input_report_abs(input, ABS_MT_POSITION_Y, y);
1980 }
1981
1982 input_mt_sync_frame(input);
1983
1984 input_report_key(input, BTN_LEFT, prefix & 0x40);
1985 input_report_key(input, BTN_RIGHT, prefix & 0x80);
1986
1987 /* keep touch state for pen event */
1988 wacom->shared->touch_down = !!prefix &&
1989 !wacom->shared->stylus_in_proximity;
1990
1991 return 1;
1992}
1993
1994static int wacom_bamboo_pad_irq(struct wacom_wac *wacom, size_t len)
1995{
1996 unsigned char *data = wacom->data;
1997
1998 if (!((len == WACOM_PKGLEN_BPAD_TOUCH) ||
1999 (len == WACOM_PKGLEN_BPAD_TOUCH_USB)) ||
2000 (data[0] != WACOM_REPORT_BPAD_TOUCH))
2001 return 0;
2002
2003 if (data[1] & 0x01)
2004 wacom_bamboo_pad_pen_event(wacom, &data[1]);
2005
2006 if (data[1] & 0x02)
2007 return wacom_bamboo_pad_touch_event(wacom, &data[9]);
2008
2009 return 0;
2010}
2011
Chris Bagwelld3825d52012-03-25 23:26:11 -07002012static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
2013{
Chris Bagwell16bf2882012-03-25 23:26:20 -07002014 unsigned char *data = wacom->data;
2015 int connected;
2016
Ping Chengb5fd2a32013-11-25 18:44:55 -08002017 if (len != WACOM_PKGLEN_WIRELESS || data[0] != WACOM_REPORT_WL)
Chris Bagwelld3825d52012-03-25 23:26:11 -07002018 return 0;
2019
Chris Bagwell16bf2882012-03-25 23:26:20 -07002020 connected = data[1] & 0x01;
2021 if (connected) {
Jason Gereckeb0882cb2015-03-06 11:47:43 -08002022 int pid, battery, charging;
Chris Bagwell16bf2882012-03-25 23:26:20 -07002023
Ping Cheng961794a2013-12-05 12:54:53 -08002024 if ((wacom->shared->type == INTUOSHT) &&
Ping Cheng44b96832014-11-06 17:30:51 -08002025 wacom->shared->touch_input &&
2026 wacom->shared->touch_max) {
Ping Cheng961794a2013-12-05 12:54:53 -08002027 input_report_switch(wacom->shared->touch_input,
2028 SW_MUTE_DEVICE, data[5] & 0x40);
2029 input_sync(wacom->shared->touch_input);
2030 }
2031
Chris Bagwell16bf2882012-03-25 23:26:20 -07002032 pid = get_unaligned_be16(&data[6]);
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07002033 battery = (data[5] & 0x3f) * 100 / 31;
Jason Gereckeb0882cb2015-03-06 11:47:43 -08002034 charging = !!(data[5] & 0x80);
Chris Bagwell16bf2882012-03-25 23:26:20 -07002035 if (wacom->pid != pid) {
2036 wacom->pid = pid;
2037 wacom_schedule_work(wacom);
2038 }
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07002039
Jason Gerecke953f2c52015-03-06 11:47:39 -08002040 if (wacom->shared->type)
Jason Gerecke71fa6412015-03-11 10:25:41 -07002041 wacom_notify_battery(wacom, battery, charging, 1, 0);
Jason Gerecke953f2c52015-03-06 11:47:39 -08002042
Chris Bagwell16bf2882012-03-25 23:26:20 -07002043 } else if (wacom->pid != 0) {
2044 /* disconnected while previously connected */
2045 wacom->pid = 0;
2046 wacom_schedule_work(wacom);
Jason Gerecke71fa6412015-03-11 10:25:41 -07002047 wacom_notify_battery(wacom, 0, 0, 0, 0);
Chris Bagwell16bf2882012-03-25 23:26:20 -07002048 }
2049
Chris Bagwelld3825d52012-03-25 23:26:11 -07002050 return 0;
2051}
2052
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002053static int wacom_status_irq(struct wacom_wac *wacom_wac, size_t len)
2054{
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002055 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002056 struct wacom_features *features = &wacom_wac->features;
2057 unsigned char *data = wacom_wac->data;
2058
2059 if (data[0] != WACOM_REPORT_USB)
2060 return 0;
2061
2062 if (features->type == INTUOSHT &&
2063 wacom_wac->shared->touch_input &&
2064 features->touch_max) {
2065 input_report_switch(wacom_wac->shared->touch_input,
2066 SW_MUTE_DEVICE, data[8] & 0x40);
2067 input_sync(wacom_wac->shared->touch_input);
2068 }
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002069
2070 if (data[9] & 0x02) { /* wireless module is attached */
2071 int battery = (data[8] & 0x3f) * 100 / 31;
Jason Gereckeb0882cb2015-03-06 11:47:43 -08002072 bool charging = !!(data[8] & 0x80);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002073
2074 wacom_notify_battery(wacom_wac, battery, charging,
Jason Gerecke71fa6412015-03-11 10:25:41 -07002075 battery || charging, 1);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002076
Linus Torvalds8de29a32015-04-14 08:25:26 -08002077 if (!wacom->battery &&
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002078 !(features->quirks & WACOM_QUIRK_BATTERY)) {
2079 features->quirks |= WACOM_QUIRK_BATTERY;
2080 INIT_WORK(&wacom->work, wacom_battery_work);
2081 wacom_schedule_work(wacom_wac);
2082 }
2083 }
2084 else if ((features->quirks & WACOM_QUIRK_BATTERY) &&
Linus Torvalds8de29a32015-04-14 08:25:26 -08002085 wacom->battery) {
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002086 features->quirks &= ~WACOM_QUIRK_BATTERY;
2087 INIT_WORK(&wacom->work, wacom_battery_work);
2088 wacom_schedule_work(wacom_wac);
Jason Gerecke71fa6412015-03-11 10:25:41 -07002089 wacom_notify_battery(wacom_wac, 0, 0, 0, 0);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002090 }
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002091 return 0;
2092}
2093
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002094void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
Ping Cheng3bea7332006-07-13 18:01:36 -07002095{
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002096 bool sync;
2097
Jason Childse33da8a2010-02-17 22:38:31 -08002098 switch (wacom_wac->features.type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002099 case PENPARTNER:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002100 sync = wacom_penpartner_irq(wacom_wac);
2101 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002102
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002103 case PL:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002104 sync = wacom_pl_irq(wacom_wac);
2105 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002106
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002107 case WACOM_G4:
2108 case GRAPHIRE:
Benjamin Tissoires387142b2014-08-06 13:52:56 -07002109 case GRAPHIRE_BT:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002110 case WACOM_MO:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002111 sync = wacom_graphire_irq(wacom_wac);
2112 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002113
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002114 case PTU:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002115 sync = wacom_ptu_irq(wacom_wac);
2116 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002117
Ping Chengc8f2edc2010-06-28 01:10:51 -07002118 case DTU:
2119 sync = wacom_dtu_irq(wacom_wac);
2120 break;
2121
Ping Cheng497ab1f2014-01-20 20:18:04 -08002122 case DTUS:
Ping Chengfff00bf2014-12-04 18:23:04 -08002123 case DTUSX:
Ping Cheng497ab1f2014-01-20 20:18:04 -08002124 sync = wacom_dtus_irq(wacom_wac);
2125 break;
2126
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002127 case INTUOS:
2128 case INTUOS3S:
2129 case INTUOS3:
2130 case INTUOS3L:
2131 case INTUOS4S:
2132 case INTUOS4:
2133 case INTUOS4L:
2134 case CINTIQ:
2135 case WACOM_BEE:
Ping Cheng56218562013-05-05 19:56:18 -07002136 case WACOM_13HD:
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07002137 case WACOM_21UX2:
Ping Chengd838c642012-07-24 23:54:11 -07002138 case WACOM_22HD:
Jason Gerecke803296b2011-12-12 00:11:45 -08002139 case WACOM_24HD:
Ping Cheng500d4162015-01-27 13:30:03 -08002140 case WACOM_27QHD:
Ping Chenga112e9f2013-02-13 20:20:01 -08002141 case DTK:
Jason Gerecke36d3c512013-09-20 09:47:35 -07002142 case CINTIQ_HYBRID:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002143 sync = wacom_intuos_irq(wacom_wac);
2144 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002145
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07002146 case INTUOS4WL:
2147 sync = wacom_intuos_bt_irq(wacom_wac, len);
2148 break;
2149
Jason Gereckeb1e42792012-10-21 00:38:04 -07002150 case WACOM_24HDT:
Ping Cheng500d4162015-01-27 13:30:03 -08002151 case WACOM_27QHDT:
Jason Gereckeb1e42792012-10-21 00:38:04 -07002152 sync = wacom_24hdt_irq(wacom_wac);
2153 break;
2154
Jason Gereckeae584ca2012-04-03 15:50:40 -07002155 case INTUOS5S:
2156 case INTUOS5:
2157 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -07002158 case INTUOSPS:
2159 case INTUOSPM:
2160 case INTUOSPL:
Jason Gereckeae584ca2012-04-03 15:50:40 -07002161 if (len == WACOM_PKGLEN_BBTOUCH3)
2162 sync = wacom_bpt3_touch(wacom_wac);
Jason Gerecke2d13a432015-03-06 11:47:42 -08002163 else if (wacom_wac->data[0] == WACOM_REPORT_USB)
2164 sync = wacom_status_irq(wacom_wac, len);
Jason Gereckeae584ca2012-04-03 15:50:40 -07002165 else
2166 sync = wacom_intuos_irq(wacom_wac);
2167 break;
2168
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002169 case TABLETPC:
Ping Chengac173832012-06-12 00:15:06 -07002170 case TABLETPCE:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002171 case TABLETPC2FG:
Ping Cheng19635182012-04-29 21:09:18 -07002172 case MTSCREEN:
Ping Cheng6afdc282012-11-03 12:16:15 -07002173 case MTTPC:
Jason Gerecked51ddb22014-05-14 17:14:29 -07002174 case MTTPC_B:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002175 sync = wacom_tpc_irq(wacom_wac, len);
2176 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002177
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002178 case BAMBOO_PT:
Ping Chengb5fd2a32013-11-25 18:44:55 -08002179 case INTUOSHT:
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002180 if (wacom_wac->data[0] == WACOM_REPORT_USB)
2181 sync = wacom_status_irq(wacom_wac, len);
2182 else
2183 sync = wacom_bpt_irq(wacom_wac, len);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002184 break;
2185
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002186 case BAMBOO_PAD:
2187 sync = wacom_bamboo_pad_irq(wacom_wac, len);
Ping Cheng3bea7332006-07-13 18:01:36 -07002188 break;
2189
Chris Bagwelld3825d52012-03-25 23:26:11 -07002190 case WIRELESS:
2191 sync = wacom_wireless_irq(wacom_wac, len);
2192 break;
2193
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002194 default:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002195 sync = false;
2196 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07002197 }
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002198
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002199 if (sync) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002200 if (wacom_wac->pen_input)
2201 input_sync(wacom_wac->pen_input);
2202 if (wacom_wac->touch_input)
2203 input_sync(wacom_wac->touch_input);
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002204 if (wacom_wac->pad_input)
2205 input_sync(wacom_wac->pad_input);
2206 }
Ping Cheng3bea7332006-07-13 18:01:36 -07002207}
2208
Ping Cheng6521d0b2010-10-24 21:53:40 -07002209static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
Ping Cheng3bea7332006-07-13 18:01:36 -07002210{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002211 struct input_dev *input_dev = wacom_wac->pen_input;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002212
2213 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002214
2215 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2216 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002217 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
2218 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
2219 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002220 __set_bit(BTN_STYLUS, input_dev->keybit);
2221 __set_bit(BTN_STYLUS2, input_dev->keybit);
2222
2223 input_set_abs_params(input_dev, ABS_DISTANCE,
2224 0, wacom_wac->features.distance_max, 0, 0);
2225 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
Jason Gereckeec5fc1c2014-11-18 16:50:08 -08002226 input_set_abs_params(input_dev, ABS_TILT_X, -64, 63, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002227 input_abs_set_res(input_dev, ABS_TILT_X, 57);
Jason Gereckeec5fc1c2014-11-18 16:50:08 -08002228 input_set_abs_params(input_dev, ABS_TILT_Y, -64, 63, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002229 input_abs_set_res(input_dev, ABS_TILT_Y, 57);
Ping Cheng6521d0b2010-10-24 21:53:40 -07002230}
2231
2232static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
2233{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002234 struct input_dev *input_dev = wacom_wac->pen_input;
Ping Cheng6521d0b2010-10-24 21:53:40 -07002235
2236 input_set_capability(input_dev, EV_REL, REL_WHEEL);
2237
2238 wacom_setup_cintiq(wacom_wac);
2239
2240 __set_bit(BTN_LEFT, input_dev->keybit);
2241 __set_bit(BTN_RIGHT, input_dev->keybit);
2242 __set_bit(BTN_MIDDLE, input_dev->keybit);
2243 __set_bit(BTN_SIDE, input_dev->keybit);
2244 __set_bit(BTN_EXTRA, input_dev->keybit);
2245 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2246 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
2247
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002248 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002249 input_abs_set_res(input_dev, ABS_RZ, 287);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002250 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
2251}
2252
Ping Cheng42f4f272015-04-15 16:53:54 -07002253void wacom_setup_device_quirks(struct wacom *wacom)
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002254{
Ping Cheng42f4f272015-04-15 16:53:54 -07002255 struct wacom_features *features = &wacom->wacom_wac.features;
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002256
Jason Gerecke862cf552015-06-15 18:01:43 -07002257 /* The pen and pad share the same interface on most devices */
2258 if (features->type == GRAPHIRE_BT || features->type == WACOM_G4 ||
2259 features->type == DTUS || features->type == WACOM_MO ||
2260 (features->type >= INTUOS3S && features->type <= WACOM_13HD &&
2261 features->type != INTUOSHT)) {
2262 if (features->device_type & WACOM_DEVICETYPE_PEN)
2263 features->device_type |= WACOM_DEVICETYPE_PAD;
2264 }
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002265
2266 /* touch device found but size is not defined. use default */
Jason Gereckeaa86b182015-06-15 18:01:42 -07002267 if (features->device_type & WACOM_DEVICETYPE_TOUCH && !features->x_max) {
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002268 features->x_max = 1023;
2269 features->y_max = 1023;
2270 }
2271
Ping Cheng42f4f272015-04-15 16:53:54 -07002272 /*
2273 * Intuos5/Pro and Bamboo 3rd gen have no useful data about its
2274 * touch interface in its HID descriptor. If this is the touch
2275 * interface (PacketSize of WACOM_PKGLEN_BBTOUCH3), override the
2276 * tablet values.
2277 */
2278 if ((features->type >= INTUOS5S && features->type <= INTUOSHT) ||
2279 (features->type == BAMBOO_PT)) {
2280 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
Jason Gerecke862cf552015-06-15 18:01:43 -07002281 if (features->touch_max)
2282 features->device_type |= WACOM_DEVICETYPE_TOUCH;
2283 if (features->type == BAMBOO_PT || features->type == INTUOSHT)
2284 features->device_type |= WACOM_DEVICETYPE_PAD;
Ping Cheng42f4f272015-04-15 16:53:54 -07002285
2286 features->x_max = 4096;
2287 features->y_max = 4096;
Ping Cheng42f4f272015-04-15 16:53:54 -07002288 }
2289 }
2290
2291 /*
Jason Gerecke042628a2015-04-30 17:51:54 -07002292 * Raw Wacom-mode pen and touch events both come from interface
2293 * 0, whose HID descriptor has an application usage of 0xFF0D
2294 * (i.e., WACOM_VENDORDEFINED_PEN). We route pen packets back
2295 * out through the HID_GENERIC device created for interface 1,
Benjamin Tissoires70caee02015-07-09 14:11:51 -04002296 * so rewrite this one to be of type WACOM_DEVICETYPE_TOUCH.
Ping Cheng42f4f272015-04-15 16:53:54 -07002297 */
2298 if (features->type == BAMBOO_PAD)
Benjamin Tissoires70caee02015-07-09 14:11:51 -04002299 features->device_type = WACOM_DEVICETYPE_TOUCH;
Ping Cheng42f4f272015-04-15 16:53:54 -07002300
2301 if (wacom->hdev->bus == BUS_BLUETOOTH)
2302 features->quirks |= WACOM_QUIRK_BATTERY;
2303
Chris Bagwell73149ab2011-10-26 22:34:21 -07002304 /* quirk for bamboo touch with 2 low res touches */
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002305 if (features->type == BAMBOO_PT &&
Chris Bagwell73149ab2011-10-26 22:34:21 -07002306 features->pktlen == WACOM_PKGLEN_BBTOUCH) {
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07002307 features->x_max <<= 5;
2308 features->y_max <<= 5;
2309 features->x_fuzz <<= 5;
2310 features->y_fuzz <<= 5;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07002311 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002312 }
Chris Bagwelld3825d52012-03-25 23:26:11 -07002313
2314 if (features->type == WIRELESS) {
Jason Gereckeccad85c2015-08-03 10:17:04 -07002315 if (features->device_type == WACOM_DEVICETYPE_WL_MONITOR) {
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07002316 features->quirks |= WACOM_QUIRK_BATTERY;
2317 }
Chris Bagwelld3825d52012-03-25 23:26:11 -07002318 }
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002319}
2320
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002321int wacom_setup_pen_input_capabilities(struct input_dev *input_dev,
Ping Cheng19635182012-04-29 21:09:18 -07002322 struct wacom_wac *wacom_wac)
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002323{
2324 struct wacom_features *features = &wacom_wac->features;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002325
2326 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2327
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002328 if (!(features->device_type & WACOM_DEVICETYPE_PEN))
2329 return -ENODEV;
2330
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002331 if (features->type == HID_GENERIC)
2332 /* setup has already been done */
2333 return 0;
2334
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002335 __set_bit(BTN_TOUCH, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002336 __set_bit(ABS_MISC, input_dev->absbit);
2337
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002338 input_set_abs_params(input_dev, ABS_X, features->x_min,
2339 features->x_max, features->x_fuzz, 0);
2340 input_set_abs_params(input_dev, ABS_Y, features->y_min,
2341 features->y_max, features->y_fuzz, 0);
2342 input_set_abs_params(input_dev, ABS_PRESSURE, 0,
2343 features->pressure_max, features->pressure_fuzz, 0);
2344
2345 /* penabled devices have fixed resolution for each model */
2346 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
2347 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
2348
Ping Cheng8c0e0a42013-01-04 23:53:52 -08002349
Ping Cheng497ab1f2014-01-20 20:18:04 -08002350 switch (features->type) {
Ping Chenga2f71c62015-01-27 13:29:36 -08002351 case GRAPHIRE_BT:
2352 __clear_bit(ABS_MISC, input_dev->absbit);
2353
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002354 case WACOM_MO:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002355 case WACOM_G4:
Ping Chenga2f71c62015-01-27 13:29:36 -08002356 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2357 features->distance_max,
2358 0, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002359 /* fall through */
2360
2361 case GRAPHIRE:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002362 input_set_capability(input_dev, EV_REL, REL_WHEEL);
2363
2364 __set_bit(BTN_LEFT, input_dev->keybit);
2365 __set_bit(BTN_RIGHT, input_dev->keybit);
2366 __set_bit(BTN_MIDDLE, input_dev->keybit);
2367
2368 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2369 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
2370 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2371 __set_bit(BTN_STYLUS, input_dev->keybit);
2372 __set_bit(BTN_STYLUS2, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07002373
2374 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002375 break;
2376
Ping Cheng500d4162015-01-27 13:30:03 -08002377 case WACOM_27QHD:
Jason Gerecke803296b2011-12-12 00:11:45 -08002378 case WACOM_24HD:
Ping Chenga112e9f2013-02-13 20:20:01 -08002379 case DTK:
Ping Chengd838c642012-07-24 23:54:11 -07002380 case WACOM_22HD:
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07002381 case WACOM_21UX2:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002382 case WACOM_BEE:
Ping Cheng6521d0b2010-10-24 21:53:40 -07002383 case CINTIQ:
Ping Cheng56218562013-05-05 19:56:18 -07002384 case WACOM_13HD:
Ping Chenga2f71c62015-01-27 13:29:36 -08002385 case CINTIQ_HYBRID:
Ping Cheng56218562013-05-05 19:56:18 -07002386 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002387 input_abs_set_res(input_dev, ABS_Z, 287);
Ping Cheng56218562013-05-05 19:56:18 -07002388 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2389 wacom_setup_cintiq(wacom_wac);
2390 break;
2391
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002392 case INTUOS3:
2393 case INTUOS3L:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002394 case INTUOS3S:
Ping Chenga2f71c62015-01-27 13:29:36 -08002395 case INTUOS4:
2396 case INTUOS4WL:
2397 case INTUOS4L:
2398 case INTUOS4S:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002399 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002400 input_abs_set_res(input_dev, ABS_Z, 287);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002401 /* fall through */
2402
2403 case INTUOS:
Jason Gerecke35120692011-09-08 09:38:14 -07002404 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2405
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002406 wacom_setup_intuos(wacom_wac);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002407 break;
2408
Jason Gerecke9fee6192012-04-03 15:47:22 -07002409 case INTUOS5:
2410 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -07002411 case INTUOSPM:
2412 case INTUOSPL:
Jason Gereckeae584ca2012-04-03 15:50:40 -07002413 case INTUOS5S:
Ping Cheng9a35c412013-09-20 09:51:56 -07002414 case INTUOSPS:
Jason Gereckeae584ca2012-04-03 15:50:40 -07002415 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2416
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002417 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2418 features->distance_max,
2419 0, 0);
Jason Gereckeae584ca2012-04-03 15:50:40 -07002420
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002421 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
2422 input_abs_set_res(input_dev, ABS_Z, 287);
Jason Gereckeae584ca2012-04-03 15:50:40 -07002423
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002424 wacom_setup_intuos(wacom_wac);
Jason Gereckeae584ca2012-04-03 15:50:40 -07002425 break;
2426
Jason Gereckeb1e42792012-10-21 00:38:04 -07002427 case WACOM_24HDT:
Ping Cheng500d4162015-01-27 13:30:03 -08002428 case WACOM_27QHDT:
Ping Cheng19635182012-04-29 21:09:18 -07002429 case MTSCREEN:
Ping Cheng6afdc282012-11-03 12:16:15 -07002430 case MTTPC:
Jason Gerecked51ddb22014-05-14 17:14:29 -07002431 case MTTPC_B:
Ping Cheng6795a522012-06-28 16:49:00 -07002432 case TABLETPC2FG:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002433 case TABLETPC:
Ping Chengac173832012-06-12 00:15:06 -07002434 case TABLETPCE:
Ping Chenga43c7c52011-03-12 20:34:42 -08002435 __clear_bit(ABS_MISC, input_dev->absbit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002436 /* fall through */
2437
Ping Cheng497ab1f2014-01-20 20:18:04 -08002438 case DTUS:
Ping Chengfff00bf2014-12-04 18:23:04 -08002439 case DTUSX:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002440 case PL:
Ping Chengc8f2edc2010-06-28 01:10:51 -07002441 case DTU:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002442 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07002443 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002444 __set_bit(BTN_STYLUS, input_dev->keybit);
2445 __set_bit(BTN_STYLUS2, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07002446
2447 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2448 break;
2449
2450 case PTU:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002451 __set_bit(BTN_STYLUS2, input_dev->keybit);
2452 /* fall through */
2453
2454 case PENPARTNER:
Jason Gerecke1fab84a2011-08-26 23:18:22 -07002455 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002456 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
Jason Gerecke1fab84a2011-08-26 23:18:22 -07002457 __set_bit(BTN_STYLUS, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07002458
2459 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002460 break;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002461
Ping Chengb5fd2a32013-11-25 18:44:55 -08002462 case INTUOSHT:
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002463 case BAMBOO_PT:
2464 __clear_bit(ABS_MISC, input_dev->absbit);
2465
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002466 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2467 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2468 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
2469 __set_bit(BTN_STYLUS, input_dev->keybit);
2470 __set_bit(BTN_STYLUS2, input_dev->keybit);
2471 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2472 features->distance_max,
2473 0, 0);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002474 break;
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002475 case BAMBOO_PAD:
2476 __clear_bit(ABS_MISC, input_dev->absbit);
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002477 break;
2478 }
2479 return 0;
2480}
2481
2482int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
2483 struct wacom_wac *wacom_wac)
2484{
2485 struct wacom_features *features = &wacom_wac->features;
2486
2487 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2488
2489 if (!(features->device_type & WACOM_DEVICETYPE_TOUCH))
2490 return -ENODEV;
2491
2492 if (features->type == HID_GENERIC)
2493 /* setup has already been done */
2494 return 0;
2495
2496 __set_bit(BTN_TOUCH, input_dev->keybit);
2497
2498 if (features->touch_max == 1) {
2499 input_set_abs_params(input_dev, ABS_X, 0,
2500 features->x_max, features->x_fuzz, 0);
2501 input_set_abs_params(input_dev, ABS_Y, 0,
2502 features->y_max, features->y_fuzz, 0);
2503 input_abs_set_res(input_dev, ABS_X,
2504 features->x_resolution);
2505 input_abs_set_res(input_dev, ABS_Y,
2506 features->y_resolution);
2507 }
2508 else if (features->touch_max > 1) {
2509 input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0,
2510 features->x_max, features->x_fuzz, 0);
2511 input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0,
2512 features->y_max, features->y_fuzz, 0);
2513 input_abs_set_res(input_dev, ABS_MT_POSITION_X,
2514 features->x_resolution);
2515 input_abs_set_res(input_dev, ABS_MT_POSITION_Y,
2516 features->y_resolution);
2517 }
2518
2519 switch (features->type) {
2520 case INTUOS5:
2521 case INTUOS5L:
2522 case INTUOSPM:
2523 case INTUOSPL:
2524 case INTUOS5S:
2525 case INTUOSPS:
2526 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2527
2528 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2529 input_set_abs_params(input_dev, ABS_MT_TOUCH_MINOR, 0, features->y_max, 0, 0);
2530 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
2531 break;
2532
2533 case WACOM_24HDT:
2534 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2535 input_set_abs_params(input_dev, ABS_MT_WIDTH_MAJOR, 0, features->x_max, 0, 0);
2536 input_set_abs_params(input_dev, ABS_MT_WIDTH_MINOR, 0, features->y_max, 0, 0);
2537 input_set_abs_params(input_dev, ABS_MT_ORIENTATION, 0, 1, 0, 0);
2538 /* fall through */
2539
2540 case WACOM_27QHDT:
2541 case MTSCREEN:
2542 case MTTPC:
2543 case MTTPC_B:
2544 case TABLETPC2FG:
2545 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_DIRECT);
2546 /*fall through */
2547
2548 case TABLETPC:
2549 case TABLETPCE:
2550 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2551 break;
2552
2553 case INTUOSHT:
2554 input_dev->evbit[0] |= BIT_MASK(EV_SW);
2555 __set_bit(SW_MUTE_DEVICE, input_dev->swbit);
2556 /* fall through */
2557
2558 case BAMBOO_PT:
2559 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
2560 input_set_abs_params(input_dev,
2561 ABS_MT_TOUCH_MAJOR,
2562 0, features->x_max, 0, 0);
2563 input_set_abs_params(input_dev,
2564 ABS_MT_TOUCH_MINOR,
2565 0, features->y_max, 0, 0);
2566 }
2567 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
2568 break;
2569
2570 case BAMBOO_PAD:
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002571 input_mt_init_slots(input_dev, features->touch_max,
2572 INPUT_MT_POINTER);
2573 __set_bit(BTN_LEFT, input_dev->keybit);
2574 __set_bit(BTN_RIGHT, input_dev->keybit);
2575 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07002576 }
Ping Cheng19635182012-04-29 21:09:18 -07002577 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -07002578}
2579
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002580int wacom_setup_pad_input_capabilities(struct input_dev *input_dev,
2581 struct wacom_wac *wacom_wac)
2582{
2583 struct wacom_features *features = &wacom_wac->features;
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07002584 int i;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002585
Jason Gerecke862cf552015-06-15 18:01:43 -07002586 if (!(features->device_type & WACOM_DEVICETYPE_PAD))
2587 return -ENODEV;
2588
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002589 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2590
2591 /* kept for making legacy xf86-input-wacom working with the wheels */
2592 __set_bit(ABS_MISC, input_dev->absbit);
2593
2594 /* kept for making legacy xf86-input-wacom accepting the pad */
2595 input_set_abs_params(input_dev, ABS_X, 0, 1, 0, 0);
2596 input_set_abs_params(input_dev, ABS_Y, 0, 1, 0, 0);
2597
Benjamin Tissoires12969e32014-09-11 13:14:04 -04002598 /* kept for making udev and libwacom accepting the pad */
2599 __set_bit(BTN_STYLUS, input_dev->keybit);
2600
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002601 switch (features->type) {
Benjamin Tissoires387142b2014-08-06 13:52:56 -07002602 case GRAPHIRE_BT:
2603 __set_bit(BTN_0, input_dev->keybit);
2604 __set_bit(BTN_1, input_dev->keybit);
2605 break;
2606
Benjamin Tissoires38138102014-07-24 12:51:03 -07002607 case WACOM_MO:
2608 __set_bit(BTN_BACK, input_dev->keybit);
2609 __set_bit(BTN_LEFT, input_dev->keybit);
2610 __set_bit(BTN_FORWARD, input_dev->keybit);
2611 __set_bit(BTN_RIGHT, input_dev->keybit);
2612 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2613 break;
2614
2615 case WACOM_G4:
2616 __set_bit(BTN_BACK, input_dev->keybit);
Benjamin Tissoires38138102014-07-24 12:51:03 -07002617 __set_bit(BTN_FORWARD, input_dev->keybit);
Benjamin Tissoires38138102014-07-24 12:51:03 -07002618 input_set_capability(input_dev, EV_REL, REL_WHEEL);
2619 break;
2620
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07002621 case WACOM_24HD:
2622 __set_bit(BTN_A, input_dev->keybit);
2623 __set_bit(BTN_B, input_dev->keybit);
2624 __set_bit(BTN_C, input_dev->keybit);
2625 __set_bit(BTN_X, input_dev->keybit);
2626 __set_bit(BTN_Y, input_dev->keybit);
2627 __set_bit(BTN_Z, input_dev->keybit);
2628
2629 for (i = 0; i < 10; i++)
2630 __set_bit(BTN_0 + i, input_dev->keybit);
2631
2632 __set_bit(KEY_PROG1, input_dev->keybit);
2633 __set_bit(KEY_PROG2, input_dev->keybit);
2634 __set_bit(KEY_PROG3, input_dev->keybit);
2635
2636 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2637 input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0);
2638 break;
2639
Ping Cheng500d4162015-01-27 13:30:03 -08002640 case WACOM_27QHD:
2641 __set_bit(KEY_PROG1, input_dev->keybit);
2642 __set_bit(KEY_PROG2, input_dev->keybit);
2643 __set_bit(KEY_PROG3, input_dev->keybit);
2644 input_set_abs_params(input_dev, ABS_X, -2048, 2048, 0, 0);
2645 input_abs_set_res(input_dev, ABS_X, 1024); /* points/g */
2646 input_set_abs_params(input_dev, ABS_Y, -2048, 2048, 0, 0);
2647 input_abs_set_res(input_dev, ABS_Y, 1024);
2648 input_set_abs_params(input_dev, ABS_Z, -2048, 2048, 0, 0);
2649 input_abs_set_res(input_dev, ABS_Z, 1024);
2650 __set_bit(INPUT_PROP_ACCELEROMETER, input_dev->propbit);
2651 break;
2652
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07002653 case DTK:
2654 for (i = 0; i < 6; i++)
2655 __set_bit(BTN_0 + i, input_dev->keybit);
2656
2657 break;
2658
2659 case WACOM_22HD:
2660 __set_bit(KEY_PROG1, input_dev->keybit);
2661 __set_bit(KEY_PROG2, input_dev->keybit);
2662 __set_bit(KEY_PROG3, input_dev->keybit);
2663 /* fall through */
2664
2665 case WACOM_21UX2:
2666 __set_bit(BTN_A, input_dev->keybit);
2667 __set_bit(BTN_B, input_dev->keybit);
2668 __set_bit(BTN_C, input_dev->keybit);
2669 __set_bit(BTN_X, input_dev->keybit);
2670 __set_bit(BTN_Y, input_dev->keybit);
2671 __set_bit(BTN_Z, input_dev->keybit);
2672 __set_bit(BTN_BASE, input_dev->keybit);
2673 __set_bit(BTN_BASE2, input_dev->keybit);
2674 /* fall through */
2675
2676 case WACOM_BEE:
2677 __set_bit(BTN_8, input_dev->keybit);
2678 __set_bit(BTN_9, input_dev->keybit);
2679 /* fall through */
2680
2681 case CINTIQ:
2682 for (i = 0; i < 8; i++)
2683 __set_bit(BTN_0 + i, input_dev->keybit);
2684
2685 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
2686 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
2687 break;
2688
2689 case WACOM_13HD:
2690 for (i = 0; i < 9; i++)
2691 __set_bit(BTN_0 + i, input_dev->keybit);
2692
2693 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2694 break;
2695
2696 case INTUOS3:
2697 case INTUOS3L:
2698 __set_bit(BTN_4, input_dev->keybit);
2699 __set_bit(BTN_5, input_dev->keybit);
2700 __set_bit(BTN_6, input_dev->keybit);
2701 __set_bit(BTN_7, input_dev->keybit);
2702
2703 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
2704 /* fall through */
2705
2706 case INTUOS3S:
2707 __set_bit(BTN_0, input_dev->keybit);
2708 __set_bit(BTN_1, input_dev->keybit);
2709 __set_bit(BTN_2, input_dev->keybit);
2710 __set_bit(BTN_3, input_dev->keybit);
2711
2712 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
2713 break;
2714
2715 case INTUOS5:
2716 case INTUOS5L:
2717 case INTUOSPM:
2718 case INTUOSPL:
2719 __set_bit(BTN_7, input_dev->keybit);
2720 __set_bit(BTN_8, input_dev->keybit);
2721 /* fall through */
2722
2723 case INTUOS5S:
2724 case INTUOSPS:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07002725 for (i = 0; i < 7; i++)
2726 __set_bit(BTN_0 + i, input_dev->keybit);
2727
2728 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2729 break;
2730
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07002731 case INTUOS4WL:
2732 /*
2733 * For Bluetooth devices, the udev rule does not work correctly
2734 * for pads unless we add a stylus capability, which forces
2735 * ID_INPUT_TABLET to be set.
2736 */
2737 __set_bit(BTN_STYLUS, input_dev->keybit);
2738 /* fall through */
2739
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07002740 case INTUOS4:
2741 case INTUOS4L:
2742 __set_bit(BTN_7, input_dev->keybit);
2743 __set_bit(BTN_8, input_dev->keybit);
2744 /* fall through */
2745
2746 case INTUOS4S:
2747 for (i = 0; i < 7; i++)
2748 __set_bit(BTN_0 + i, input_dev->keybit);
2749
2750 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2751 break;
2752
2753 case CINTIQ_HYBRID:
2754 for (i = 0; i < 9; i++)
2755 __set_bit(BTN_0 + i, input_dev->keybit);
2756
2757 break;
2758
Benjamin Tissoires422b0312014-07-24 12:50:39 -07002759 case DTUS:
2760 for (i = 0; i < 4; i++)
2761 __set_bit(BTN_0 + i, input_dev->keybit);
2762 break;
2763
Benjamin Tissoires31168712014-07-24 12:50:10 -07002764 case INTUOSHT:
2765 case BAMBOO_PT:
Benjamin Tissoires31168712014-07-24 12:50:10 -07002766 __clear_bit(ABS_MISC, input_dev->absbit);
2767
2768 __set_bit(BTN_LEFT, input_dev->keybit);
2769 __set_bit(BTN_FORWARD, input_dev->keybit);
2770 __set_bit(BTN_BACK, input_dev->keybit);
2771 __set_bit(BTN_RIGHT, input_dev->keybit);
2772
2773 break;
2774
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002775 default:
2776 /* no pad supported */
Ping Chengb3c8e932014-11-18 13:27:48 -08002777 return -ENODEV;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002778 }
2779 return 0;
2780}
2781
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002782static const struct wacom_features wacom_features_0x00 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002783 { "Wacom Penpartner", 5040, 3780, 255, 0,
2784 PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002785static const struct wacom_features wacom_features_0x10 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002786 { "Wacom Graphire", 10206, 7422, 511, 63,
2787 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Benjamin Tissoires387142b2014-08-06 13:52:56 -07002788static const struct wacom_features wacom_features_0x81 =
2789 { "Wacom Graphire BT", 16704, 12064, 511, 32,
2790 GRAPHIRE_BT, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002791static const struct wacom_features wacom_features_0x11 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002792 { "Wacom Graphire2 4x5", 10206, 7422, 511, 63,
2793 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002794static const struct wacom_features wacom_features_0x12 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002795 { "Wacom Graphire2 5x7", 13918, 10206, 511, 63,
2796 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002797static const struct wacom_features wacom_features_0x13 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002798 { "Wacom Graphire3", 10208, 7424, 511, 63,
2799 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002800static const struct wacom_features wacom_features_0x14 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002801 { "Wacom Graphire3 6x8", 16704, 12064, 511, 63,
2802 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002803static const struct wacom_features wacom_features_0x15 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002804 { "Wacom Graphire4 4x5", 10208, 7424, 511, 63,
2805 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002806static const struct wacom_features wacom_features_0x16 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002807 { "Wacom Graphire4 6x8", 16704, 12064, 511, 63,
2808 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002809static const struct wacom_features wacom_features_0x17 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002810 { "Wacom BambooFun 4x5", 14760, 9225, 511, 63,
2811 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002812static const struct wacom_features wacom_features_0x18 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002813 { "Wacom BambooFun 6x8", 21648, 13530, 511, 63,
2814 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002815static const struct wacom_features wacom_features_0x19 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002816 { "Wacom Bamboo1 Medium", 16704, 12064, 511, 63,
2817 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002818static const struct wacom_features wacom_features_0x60 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002819 { "Wacom Volito", 5104, 3712, 511, 63,
2820 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002821static const struct wacom_features wacom_features_0x61 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002822 { "Wacom PenStation2", 3250, 2320, 255, 63,
2823 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002824static const struct wacom_features wacom_features_0x62 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002825 { "Wacom Volito2 4x5", 5104, 3712, 511, 63,
2826 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002827static const struct wacom_features wacom_features_0x63 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002828 { "Wacom Volito2 2x3", 3248, 2320, 511, 63,
2829 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002830static const struct wacom_features wacom_features_0x64 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002831 { "Wacom PenPartner2", 3250, 2320, 511, 63,
2832 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002833static const struct wacom_features wacom_features_0x65 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002834 { "Wacom Bamboo", 14760, 9225, 511, 63,
2835 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002836static const struct wacom_features wacom_features_0x69 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002837 { "Wacom Bamboo1", 5104, 3712, 511, 63,
2838 GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07002839static const struct wacom_features wacom_features_0x6A =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002840 { "Wacom Bamboo1 4x6", 14760, 9225, 1023, 63,
2841 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07002842static const struct wacom_features wacom_features_0x6B =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002843 { "Wacom Bamboo1 5x8", 21648, 13530, 1023, 63,
2844 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002845static const struct wacom_features wacom_features_0x20 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002846 { "Wacom Intuos 4x5", 12700, 10600, 1023, 31,
2847 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002848static const struct wacom_features wacom_features_0x21 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002849 { "Wacom Intuos 6x8", 20320, 16240, 1023, 31,
2850 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002851static const struct wacom_features wacom_features_0x22 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002852 { "Wacom Intuos 9x12", 30480, 24060, 1023, 31,
2853 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002854static const struct wacom_features wacom_features_0x23 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002855 { "Wacom Intuos 12x12", 30480, 31680, 1023, 31,
2856 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002857static const struct wacom_features wacom_features_0x24 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002858 { "Wacom Intuos 12x18", 45720, 31680, 1023, 31,
2859 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002860static const struct wacom_features wacom_features_0x30 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002861 { "Wacom PL400", 5408, 4056, 255, 0,
2862 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002863static const struct wacom_features wacom_features_0x31 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002864 { "Wacom PL500", 6144, 4608, 255, 0,
2865 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002866static const struct wacom_features wacom_features_0x32 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002867 { "Wacom PL600", 6126, 4604, 255, 0,
2868 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002869static const struct wacom_features wacom_features_0x33 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002870 { "Wacom PL600SX", 6260, 5016, 255, 0,
2871 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002872static const struct wacom_features wacom_features_0x34 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002873 { "Wacom PL550", 6144, 4608, 511, 0,
2874 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002875static const struct wacom_features wacom_features_0x35 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002876 { "Wacom PL800", 7220, 5780, 511, 0,
2877 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002878static const struct wacom_features wacom_features_0x37 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002879 { "Wacom PL700", 6758, 5406, 511, 0,
2880 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002881static const struct wacom_features wacom_features_0x38 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002882 { "Wacom PL510", 6282, 4762, 511, 0,
2883 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002884static const struct wacom_features wacom_features_0x39 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002885 { "Wacom DTU710", 34080, 27660, 511, 0,
2886 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002887static const struct wacom_features wacom_features_0xC4 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002888 { "Wacom DTF521", 6282, 4762, 511, 0,
2889 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002890static const struct wacom_features wacom_features_0xC0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002891 { "Wacom DTF720", 6858, 5506, 511, 0,
2892 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002893static const struct wacom_features wacom_features_0xC2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002894 { "Wacom DTF720a", 6858, 5506, 511, 0,
2895 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002896static const struct wacom_features wacom_features_0x03 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002897 { "Wacom Cintiq Partner", 20480, 15360, 511, 0,
2898 PTU, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002899static const struct wacom_features wacom_features_0x41 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002900 { "Wacom Intuos2 4x5", 12700, 10600, 1023, 31,
2901 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002902static const struct wacom_features wacom_features_0x42 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002903 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
2904 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002905static const struct wacom_features wacom_features_0x43 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002906 { "Wacom Intuos2 9x12", 30480, 24060, 1023, 31,
2907 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002908static const struct wacom_features wacom_features_0x44 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002909 { "Wacom Intuos2 12x12", 30480, 31680, 1023, 31,
2910 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002911static const struct wacom_features wacom_features_0x45 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002912 { "Wacom Intuos2 12x18", 45720, 31680, 1023, 31,
2913 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002914static const struct wacom_features wacom_features_0xB0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002915 { "Wacom Intuos3 4x5", 25400, 20320, 1023, 63,
2916 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002917static const struct wacom_features wacom_features_0xB1 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002918 { "Wacom Intuos3 6x8", 40640, 30480, 1023, 63,
2919 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002920static const struct wacom_features wacom_features_0xB2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002921 { "Wacom Intuos3 9x12", 60960, 45720, 1023, 63,
2922 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002923static const struct wacom_features wacom_features_0xB3 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002924 { "Wacom Intuos3 12x12", 60960, 60960, 1023, 63,
2925 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002926static const struct wacom_features wacom_features_0xB4 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002927 { "Wacom Intuos3 12x19", 97536, 60960, 1023, 63,
2928 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002929static const struct wacom_features wacom_features_0xB5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002930 { "Wacom Intuos3 6x11", 54204, 31750, 1023, 63,
2931 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002932static const struct wacom_features wacom_features_0xB7 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002933 { "Wacom Intuos3 4x6", 31496, 19685, 1023, 63,
2934 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002935static const struct wacom_features wacom_features_0xB8 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002936 { "Wacom Intuos4 4x6", 31496, 19685, 2047, 63,
2937 INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002938static const struct wacom_features wacom_features_0xB9 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002939 { "Wacom Intuos4 6x9", 44704, 27940, 2047, 63,
2940 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002941static const struct wacom_features wacom_features_0xBA =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002942 { "Wacom Intuos4 8x13", 65024, 40640, 2047, 63,
2943 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08002944static const struct wacom_features wacom_features_0xBB =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002945 { "Wacom Intuos4 12x19", 97536, 60960, 2047, 63,
2946 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07002947static const struct wacom_features wacom_features_0xBC =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002948 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
2949 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07002950static const struct wacom_features wacom_features_0xBD =
2951 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
2952 INTUOS4WL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Jason Gerecke9fee6192012-04-03 15:47:22 -07002953static const struct wacom_features wacom_features_0x26 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002954 { "Wacom Intuos5 touch S", 31496, 19685, 2047, 63,
2955 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, .touch_max = 16 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07002956static const struct wacom_features wacom_features_0x27 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002957 { "Wacom Intuos5 touch M", 44704, 27940, 2047, 63,
2958 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, .touch_max = 16 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07002959static const struct wacom_features wacom_features_0x28 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002960 { "Wacom Intuos5 touch L", 65024, 40640, 2047, 63,
2961 INTUOS5L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, .touch_max = 16 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07002962static const struct wacom_features wacom_features_0x29 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002963 { "Wacom Intuos5 S", 31496, 19685, 2047, 63,
2964 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Jason Gerecke9fee6192012-04-03 15:47:22 -07002965static const struct wacom_features wacom_features_0x2A =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002966 { "Wacom Intuos5 M", 44704, 27940, 2047, 63,
2967 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Ping Cheng9a35c412013-09-20 09:51:56 -07002968static const struct wacom_features wacom_features_0x314 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002969 { "Wacom Intuos Pro S", 31496, 19685, 2047, 63,
2970 INTUOSPS, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002971 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng9a35c412013-09-20 09:51:56 -07002972static const struct wacom_features wacom_features_0x315 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002973 { "Wacom Intuos Pro M", 44704, 27940, 2047, 63,
2974 INTUOSPM, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002975 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng9a35c412013-09-20 09:51:56 -07002976static const struct wacom_features wacom_features_0x317 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07002977 { "Wacom Intuos Pro L", 65024, 40640, 2047, 63,
2978 INTUOSPL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002979 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Jason Gerecke803296b2011-12-12 00:11:45 -08002980static const struct wacom_features wacom_features_0xF4 =
Ping Chengecd618d2014-12-04 18:25:07 -08002981 { "Wacom Cintiq 24HD", 104080, 65200, 2047, 63,
Ping Chengfa770342014-12-01 13:44:28 -08002982 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
2983 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Jason Gerecke6f4d0382012-08-21 22:11:59 -07002984static const struct wacom_features wacom_features_0xF8 =
Ping Chengecd618d2014-12-04 18:25:07 -08002985 { "Wacom Cintiq 24HD touch", 104080, 65200, 2047, 63, /* Pen */
Ping Chengfa770342014-12-01 13:44:28 -08002986 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
2987 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Cheng3bd1f7e2013-05-23 10:22:33 -07002988 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf6 };
Jason Gereckeb1e42792012-10-21 00:38:04 -07002989static const struct wacom_features wacom_features_0xF6 =
2990 { "Wacom Cintiq 24HD touch", .type = WACOM_24HDT, /* Touch */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002991 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf8, .touch_max = 10,
2992 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng500d4162015-01-27 13:30:03 -08002993static const struct wacom_features wacom_features_0x32A =
Ping Chenga7e66452015-02-04 16:01:54 -08002994 { "Wacom Cintiq 27QHD", 119740, 67520, 2047, 63,
2995 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
2996 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Cheng500d4162015-01-27 13:30:03 -08002997static const struct wacom_features wacom_features_0x32B =
2998 { "Wacom Cintiq 27QHD touch", 119740, 67520, 2047, 63,
2999 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3000 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3001 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32C };
3002static const struct wacom_features wacom_features_0x32C =
3003 { "Wacom Cintiq 27QHD touch", .type = WACOM_27QHDT,
3004 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32B, .touch_max = 10 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003005static const struct wacom_features wacom_features_0x3F =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003006 { "Wacom Cintiq 21UX", 87200, 65600, 1023, 63,
3007 CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003008static const struct wacom_features wacom_features_0xC5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003009 { "Wacom Cintiq 20WSX", 86680, 54180, 1023, 63,
3010 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003011static const struct wacom_features wacom_features_0xC6 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003012 { "Wacom Cintiq 12WX", 53020, 33440, 1023, 63,
3013 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
Ping Cheng56218562013-05-05 19:56:18 -07003014static const struct wacom_features wacom_features_0x304 =
Ping Chengecd618d2014-12-04 18:25:07 -08003015 { "Wacom Cintiq 13HD", 59152, 33448, 1023, 63,
Ping Chengfa770342014-12-01 13:44:28 -08003016 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3017 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Chengb4bf2122015-03-25 17:08:13 -07003018static const struct wacom_features wacom_features_0x333 =
3019 { "Wacom Cintiq 13HD touch", 59152, 33448, 2047, 63,
3020 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3021 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3022 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x335 };
3023static const struct wacom_features wacom_features_0x335 =
3024 { "Wacom Cintiq 13HD touch", .type = WACOM_24HDT, /* Touch */
3025 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x333, .touch_max = 10,
3026 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003027static const struct wacom_features wacom_features_0xC7 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003028 { "Wacom DTU1931", 37832, 30305, 511, 0,
3029 PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengc8f2edc2010-06-28 01:10:51 -07003030static const struct wacom_features wacom_features_0xCE =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003031 { "Wacom DTU2231", 47864, 27011, 511, 0,
3032 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003033 .check_for_hid_type = true, .hid_type = HID_TYPE_USBMOUSE };
Ping Chengc8f2edc2010-06-28 01:10:51 -07003034static const struct wacom_features wacom_features_0xF0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003035 { "Wacom DTU1631", 34623, 19553, 511, 0,
3036 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng497ab1f2014-01-20 20:18:04 -08003037static const struct wacom_features wacom_features_0xFB =
Ping Chengecd618d2014-12-04 18:25:07 -08003038 { "Wacom DTU1031", 21896, 13760, 511, 0,
Ping Chengfa770342014-12-01 13:44:28 -08003039 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3040 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Ping Chengfff00bf2014-12-04 18:23:04 -08003041static const struct wacom_features wacom_features_0x32F =
3042 { "Wacom DTU1031X", 22472, 12728, 511, 0,
3043 DTUSX, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3044 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Aaron Skomra007760c2015-04-16 15:01:14 -07003045static const struct wacom_features wacom_features_0x336 =
3046 { "Wacom DTU1141", 23472, 13203, 1023, 0,
3047 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng56218562013-05-05 19:56:18 -07003048static const struct wacom_features wacom_features_0x57 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003049 { "Wacom DTK2241", 95640, 54060, 2047, 63,
Ping Chengfa770342014-12-01 13:44:28 -08003050 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3051 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Chenga112e9f2013-02-13 20:20:01 -08003052static const struct wacom_features wacom_features_0x59 = /* Pen */
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003053 { "Wacom DTH2242", 95640, 54060, 2047, 63,
Ping Chengfa770342014-12-01 13:44:28 -08003054 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3055 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chenga112e9f2013-02-13 20:20:01 -08003056 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5D };
3057static const struct wacom_features wacom_features_0x5D = /* Touch */
3058 { "Wacom DTH2242", .type = WACOM_24HDT,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003059 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x59, .touch_max = 10,
3060 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07003061static const struct wacom_features wacom_features_0xCC =
Ping Chengecd618d2014-12-04 18:25:07 -08003062 { "Wacom Cintiq 21UX2", 86800, 65200, 2047, 63,
Ping Chengfa770342014-12-01 13:44:28 -08003063 WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3064 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Chengd838c642012-07-24 23:54:11 -07003065static const struct wacom_features wacom_features_0xFA =
Ping Chengecd618d2014-12-04 18:25:07 -08003066 { "Wacom Cintiq 22HD", 95440, 53860, 2047, 63,
Ping Chengfa770342014-12-01 13:44:28 -08003067 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3068 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Cheng56218562013-05-05 19:56:18 -07003069static const struct wacom_features wacom_features_0x5B =
Ping Chengecd618d2014-12-04 18:25:07 -08003070 { "Wacom Cintiq 22HDT", 95440, 53860, 2047, 63,
Ping Chengfa770342014-12-01 13:44:28 -08003071 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3072 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Cheng3bd1f7e2013-05-23 10:22:33 -07003073 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5e };
Ping Cheng56218562013-05-05 19:56:18 -07003074static const struct wacom_features wacom_features_0x5E =
3075 { "Wacom Cintiq 22HDT", .type = WACOM_24HDT,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003076 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5b, .touch_max = 10,
3077 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003078static const struct wacom_features wacom_features_0x90 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003079 { "Wacom ISDv4 90", 26202, 16325, 255, 0,
3080 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003081static const struct wacom_features wacom_features_0x93 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003082 { "Wacom ISDv4 93", 26202, 16325, 255, 0,
3083 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07003084static const struct wacom_features wacom_features_0x97 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003085 { "Wacom ISDv4 97", 26202, 16325, 511, 0,
3086 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003087static const struct wacom_features wacom_features_0x9A =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003088 { "Wacom ISDv4 9A", 26202, 16325, 255, 0,
3089 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003090static const struct wacom_features wacom_features_0x9F =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003091 { "Wacom ISDv4 9F", 26202, 16325, 255, 0,
3092 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003093static const struct wacom_features wacom_features_0xE2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003094 { "Wacom ISDv4 E2", 26202, 16325, 255, 0,
3095 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003096static const struct wacom_features wacom_features_0xE3 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003097 { "Wacom ISDv4 E3", 26202, 16325, 255, 0,
3098 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng19635182012-04-29 21:09:18 -07003099static const struct wacom_features wacom_features_0xE5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003100 { "Wacom ISDv4 E5", 26202, 16325, 255, 0,
3101 MTSCREEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07003102static const struct wacom_features wacom_features_0xE6 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003103 { "Wacom ISDv4 E6", 27760, 15694, 255, 0,
3104 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Chris Bagwell0d0e3062011-12-11 23:50:59 -08003105static const struct wacom_features wacom_features_0xEC =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003106 { "Wacom ISDv4 EC", 25710, 14500, 255, 0,
3107 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengac173832012-06-12 00:15:06 -07003108static const struct wacom_features wacom_features_0xED =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003109 { "Wacom ISDv4 ED", 26202, 16325, 255, 0,
3110 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengac173832012-06-12 00:15:06 -07003111static const struct wacom_features wacom_features_0xEF =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003112 { "Wacom ISDv4 EF", 26202, 16325, 255, 0,
3113 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng6afdc282012-11-03 12:16:15 -07003114static const struct wacom_features wacom_features_0x100 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003115 { "Wacom ISDv4 100", 26202, 16325, 255, 0,
3116 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng6afdc282012-11-03 12:16:15 -07003117static const struct wacom_features wacom_features_0x101 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003118 { "Wacom ISDv4 101", 26202, 16325, 255, 0,
3119 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Stephan Frank58694832013-03-07 14:08:50 -08003120static const struct wacom_features wacom_features_0x10D =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003121 { "Wacom ISDv4 10D", 26202, 16325, 255, 0,
3122 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecke2d3163f2013-10-22 15:35:30 -07003123static const struct wacom_features wacom_features_0x10E =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003124 { "Wacom ISDv4 10E", 27760, 15694, 255, 0,
3125 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecke9b4f60e2013-10-15 23:46:34 -07003126static const struct wacom_features wacom_features_0x10F =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003127 { "Wacom ISDv4 10F", 27760, 15694, 255, 0,
3128 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecke61616ed2014-05-14 11:42:22 -07003129static const struct wacom_features wacom_features_0x116 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003130 { "Wacom ISDv4 116", 26202, 16325, 255, 0,
3131 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gereckeaeaf50d2014-07-28 10:53:16 -07003132static const struct wacom_features wacom_features_0x12C =
3133 { "Wacom ISDv4 12C", 27848, 15752, 2047, 0,
3134 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengedbe2652012-11-21 13:12:50 -08003135static const struct wacom_features wacom_features_0x4001 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003136 { "Wacom ISDv4 4001", 26202, 16325, 255, 0,
3137 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecked51ddb22014-05-14 17:14:29 -07003138static const struct wacom_features wacom_features_0x4004 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003139 { "Wacom ISDv4 4004", 11060, 6220, 255, 0,
3140 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecked51ddb22014-05-14 17:14:29 -07003141static const struct wacom_features wacom_features_0x5000 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003142 { "Wacom ISDv4 5000", 27848, 15752, 1023, 0,
3143 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecked51ddb22014-05-14 17:14:29 -07003144static const struct wacom_features wacom_features_0x5002 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003145 { "Wacom ISDv4 5002", 29576, 16724, 1023, 0,
3146 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003147static const struct wacom_features wacom_features_0x47 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003148 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3149 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Chris Bagwelld3825d52012-03-25 23:26:11 -07003150static const struct wacom_features wacom_features_0x84 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003151 { "Wacom Wireless Receiver", 0, 0, 0, 0,
3152 WIRELESS, 0, 0, .touch_max = 16 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003153static const struct wacom_features wacom_features_0xD0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003154 { "Wacom Bamboo 2FG", 14720, 9200, 1023, 31,
3155 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003156static const struct wacom_features wacom_features_0xD1 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003157 { "Wacom Bamboo 2FG 4x5", 14720, 9200, 1023, 31,
3158 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003159static const struct wacom_features wacom_features_0xD2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003160 { "Wacom Bamboo Craft", 14720, 9200, 1023, 31,
3161 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003162static const struct wacom_features wacom_features_0xD3 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003163 { "Wacom Bamboo 2FG 6x8", 21648, 13700, 1023, 31,
3164 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Kevin Granade57a78722010-12-10 23:04:02 -08003165static const struct wacom_features wacom_features_0xD4 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003166 { "Wacom Bamboo Pen", 14720, 9200, 1023, 31,
3167 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Gerard Braad18adad12011-08-16 00:17:56 -07003168static const struct wacom_features wacom_features_0xD5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003169 { "Wacom Bamboo Pen 6x8", 21648, 13700, 1023, 31,
3170 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003171static const struct wacom_features wacom_features_0xD6 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003172 { "Wacom BambooPT 2FG 4x5", 14720, 9200, 1023, 31,
3173 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003174static const struct wacom_features wacom_features_0xD7 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003175 { "Wacom BambooPT 2FG Small", 14720, 9200, 1023, 31,
3176 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003177static const struct wacom_features wacom_features_0xD8 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003178 { "Wacom Bamboo Comic 2FG", 21648, 13700, 1023, 31,
3179 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003180static const struct wacom_features wacom_features_0xDA =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003181 { "Wacom Bamboo 2FG 4x5 SE", 14720, 9200, 1023, 31,
3182 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Chengf41a64e2013-08-21 09:14:49 -07003183static const struct wacom_features wacom_features_0xDB =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003184 { "Wacom Bamboo 2FG 6x8 SE", 21648, 13700, 1023, 31,
3185 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Chris Bagwell73149ab2011-10-26 22:34:21 -07003186static const struct wacom_features wacom_features_0xDD =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003187 { "Wacom Bamboo Connect", 14720, 9200, 1023, 31,
3188 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Chris Bagwell73149ab2011-10-26 22:34:21 -07003189static const struct wacom_features wacom_features_0xDE =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003190 { "Wacom Bamboo 16FG 4x5", 14720, 9200, 1023, 31,
3191 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
Chris Bagwell73149ab2011-10-26 22:34:21 -07003192static const struct wacom_features wacom_features_0xDF =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003193 { "Wacom Bamboo 16FG 6x8", 21648, 13700, 1023, 31,
3194 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
Ping Chengf41a64e2013-08-21 09:14:49 -07003195static const struct wacom_features wacom_features_0x300 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003196 { "Wacom Bamboo One S", 14720, 9225, 1023, 31,
3197 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengf41a64e2013-08-21 09:14:49 -07003198static const struct wacom_features wacom_features_0x301 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003199 { "Wacom Bamboo One M", 21648, 13530, 1023, 31,
3200 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengb5fd2a32013-11-25 18:44:55 -08003201static const struct wacom_features wacom_features_0x302 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003202 { "Wacom Intuos PT S", 15200, 9500, 1023, 31,
3203 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003204 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Chengb5fd2a32013-11-25 18:44:55 -08003205static const struct wacom_features wacom_features_0x303 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003206 { "Wacom Intuos PT M", 21600, 13500, 1023, 31,
3207 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003208 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Chengb5fd2a32013-11-25 18:44:55 -08003209static const struct wacom_features wacom_features_0x30E =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003210 { "Wacom Intuos S", 15200, 9500, 1023, 31,
3211 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003212 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08003213static const struct wacom_features wacom_features_0x6004 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003214 { "ISD-V4", 12800, 8000, 255, 0,
3215 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003216static const struct wacom_features wacom_features_0x307 =
Ping Chengecd618d2014-12-04 18:25:07 -08003217 { "Wacom ISDv5 307", 59152, 33448, 2047, 63,
Ping Chengfa770342014-12-01 13:44:28 -08003218 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3219 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gerecke36d3c512013-09-20 09:47:35 -07003220 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x309 };
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003221static const struct wacom_features wacom_features_0x309 =
Jason Gerecke36d3c512013-09-20 09:47:35 -07003222 { "Wacom ISDv5 309", .type = WACOM_24HDT, /* Touch */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003223 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x0307, .touch_max = 10,
3224 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Benjamin Tissoires89f2ab52014-09-03 15:43:25 -04003225static const struct wacom_features wacom_features_0x30A =
Ping Chengecd618d2014-12-04 18:25:07 -08003226 { "Wacom ISDv5 30A", 59152, 33448, 2047, 63,
Ping Chengfa770342014-12-01 13:44:28 -08003227 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
3228 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Benjamin Tissoires89f2ab52014-09-03 15:43:25 -04003229 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30C };
3230static const struct wacom_features wacom_features_0x30C =
3231 { "Wacom ISDv5 30C", .type = WACOM_24HDT, /* Touch */
3232 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30A, .touch_max = 10,
3233 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05003234static const struct wacom_features wacom_features_0x318 =
3235 { "Wacom USB Bamboo PAD", 4095, 4095, /* Touch */
3236 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
3237static const struct wacom_features wacom_features_0x319 =
3238 { "Wacom Wireless Bamboo PAD", 4095, 4095, /* Touch */
3239 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
Ping Chengfefb3912014-11-11 12:52:08 -08003240static const struct wacom_features wacom_features_0x323 =
3241 { "Wacom Intuos P M", 21600, 13500, 1023, 31,
3242 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3243 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Bastian Blankb036f6f2010-02-10 23:06:23 -08003244
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04003245static const struct wacom_features wacom_features_HID_ANY_ID =
3246 { "Wacom HID", .type = HID_GENERIC };
3247
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003248#define USB_DEVICE_WACOM(prod) \
3249 HID_DEVICE(BUS_USB, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3250 .driver_data = (kernel_ulong_t)&wacom_features_##prod
Bastian Blankb036f6f2010-02-10 23:06:23 -08003251
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003252#define BT_DEVICE_WACOM(prod) \
3253 HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3254 .driver_data = (kernel_ulong_t)&wacom_features_##prod
Aristeu Rozanski1483f552011-06-22 01:17:17 -07003255
Mika Westerbergeef23a82015-02-23 15:52:43 +02003256#define I2C_DEVICE_WACOM(prod) \
3257 HID_DEVICE(BUS_I2C, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3258 .driver_data = (kernel_ulong_t)&wacom_features_##prod
3259
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08003260#define USB_DEVICE_LENOVO(prod) \
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003261 HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
3262 .driver_data = (kernel_ulong_t)&wacom_features_##prod
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08003263
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003264const struct hid_device_id wacom_ids[] = {
Bastian Blankb036f6f2010-02-10 23:06:23 -08003265 { USB_DEVICE_WACOM(0x00) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003266 { USB_DEVICE_WACOM(0x03) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003267 { USB_DEVICE_WACOM(0x10) },
3268 { USB_DEVICE_WACOM(0x11) },
3269 { USB_DEVICE_WACOM(0x12) },
3270 { USB_DEVICE_WACOM(0x13) },
3271 { USB_DEVICE_WACOM(0x14) },
3272 { USB_DEVICE_WACOM(0x15) },
3273 { USB_DEVICE_WACOM(0x16) },
3274 { USB_DEVICE_WACOM(0x17) },
3275 { USB_DEVICE_WACOM(0x18) },
3276 { USB_DEVICE_WACOM(0x19) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003277 { USB_DEVICE_WACOM(0x20) },
3278 { USB_DEVICE_WACOM(0x21) },
3279 { USB_DEVICE_WACOM(0x22) },
3280 { USB_DEVICE_WACOM(0x23) },
3281 { USB_DEVICE_WACOM(0x24) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003282 { USB_DEVICE_WACOM(0x26) },
3283 { USB_DEVICE_WACOM(0x27) },
3284 { USB_DEVICE_WACOM(0x28) },
3285 { USB_DEVICE_WACOM(0x29) },
3286 { USB_DEVICE_WACOM(0x2A) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003287 { USB_DEVICE_WACOM(0x30) },
3288 { USB_DEVICE_WACOM(0x31) },
3289 { USB_DEVICE_WACOM(0x32) },
3290 { USB_DEVICE_WACOM(0x33) },
3291 { USB_DEVICE_WACOM(0x34) },
3292 { USB_DEVICE_WACOM(0x35) },
3293 { USB_DEVICE_WACOM(0x37) },
3294 { USB_DEVICE_WACOM(0x38) },
3295 { USB_DEVICE_WACOM(0x39) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003296 { USB_DEVICE_WACOM(0x3F) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003297 { USB_DEVICE_WACOM(0x41) },
3298 { USB_DEVICE_WACOM(0x42) },
3299 { USB_DEVICE_WACOM(0x43) },
3300 { USB_DEVICE_WACOM(0x44) },
3301 { USB_DEVICE_WACOM(0x45) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003302 { USB_DEVICE_WACOM(0x47) },
Ping Cheng56218562013-05-05 19:56:18 -07003303 { USB_DEVICE_WACOM(0x57) },
Ping Chenga112e9f2013-02-13 20:20:01 -08003304 { USB_DEVICE_WACOM(0x59) },
Ping Cheng56218562013-05-05 19:56:18 -07003305 { USB_DEVICE_WACOM(0x5B) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003306 { USB_DEVICE_WACOM(0x5D) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003307 { USB_DEVICE_WACOM(0x5E) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003308 { USB_DEVICE_WACOM(0x60) },
3309 { USB_DEVICE_WACOM(0x61) },
3310 { USB_DEVICE_WACOM(0x62) },
3311 { USB_DEVICE_WACOM(0x63) },
3312 { USB_DEVICE_WACOM(0x64) },
3313 { USB_DEVICE_WACOM(0x65) },
3314 { USB_DEVICE_WACOM(0x69) },
3315 { USB_DEVICE_WACOM(0x6A) },
3316 { USB_DEVICE_WACOM(0x6B) },
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003317 { BT_DEVICE_WACOM(0x81) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003318 { USB_DEVICE_WACOM(0x84) },
3319 { USB_DEVICE_WACOM(0x90) },
3320 { USB_DEVICE_WACOM(0x93) },
3321 { USB_DEVICE_WACOM(0x97) },
3322 { USB_DEVICE_WACOM(0x9A) },
3323 { USB_DEVICE_WACOM(0x9F) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003324 { USB_DEVICE_WACOM(0xB0) },
3325 { USB_DEVICE_WACOM(0xB1) },
3326 { USB_DEVICE_WACOM(0xB2) },
3327 { USB_DEVICE_WACOM(0xB3) },
3328 { USB_DEVICE_WACOM(0xB4) },
3329 { USB_DEVICE_WACOM(0xB5) },
3330 { USB_DEVICE_WACOM(0xB7) },
3331 { USB_DEVICE_WACOM(0xB8) },
3332 { USB_DEVICE_WACOM(0xB9) },
3333 { USB_DEVICE_WACOM(0xBA) },
3334 { USB_DEVICE_WACOM(0xBB) },
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07003335 { USB_DEVICE_WACOM(0xBC) },
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07003336 { BT_DEVICE_WACOM(0xBD) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003337 { USB_DEVICE_WACOM(0xC0) },
3338 { USB_DEVICE_WACOM(0xC2) },
3339 { USB_DEVICE_WACOM(0xC4) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003340 { USB_DEVICE_WACOM(0xC5) },
3341 { USB_DEVICE_WACOM(0xC6) },
3342 { USB_DEVICE_WACOM(0xC7) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003343 { USB_DEVICE_WACOM(0xCC) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003344 { USB_DEVICE_WACOM(0xCE) },
Henrik Rydbergcb734c02010-09-05 12:53:16 -07003345 { USB_DEVICE_WACOM(0xD0) },
Chris Bagwell2aaacb12010-09-12 00:11:35 -07003346 { USB_DEVICE_WACOM(0xD1) },
3347 { USB_DEVICE_WACOM(0xD2) },
3348 { USB_DEVICE_WACOM(0xD3) },
Kevin Granade57a78722010-12-10 23:04:02 -08003349 { USB_DEVICE_WACOM(0xD4) },
Gerard Braad18adad12011-08-16 00:17:56 -07003350 { USB_DEVICE_WACOM(0xD5) },
Ping Chengd38acb42011-01-24 09:32:50 -08003351 { USB_DEVICE_WACOM(0xD6) },
3352 { USB_DEVICE_WACOM(0xD7) },
David Foleya318e6b2010-11-30 23:45:46 -08003353 { USB_DEVICE_WACOM(0xD8) },
3354 { USB_DEVICE_WACOM(0xDA) },
David Foley47d09232010-12-07 21:05:59 -08003355 { USB_DEVICE_WACOM(0xDB) },
Chris Bagwell73149ab2011-10-26 22:34:21 -07003356 { USB_DEVICE_WACOM(0xDD) },
3357 { USB_DEVICE_WACOM(0xDE) },
3358 { USB_DEVICE_WACOM(0xDF) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003359 { USB_DEVICE_WACOM(0xE2) },
3360 { USB_DEVICE_WACOM(0xE3) },
Ping Cheng19635182012-04-29 21:09:18 -07003361 { USB_DEVICE_WACOM(0xE5) },
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07003362 { USB_DEVICE_WACOM(0xE6) },
Chris Bagwell0d0e3062011-12-11 23:50:59 -08003363 { USB_DEVICE_WACOM(0xEC) },
Ping Chengac173832012-06-12 00:15:06 -07003364 { USB_DEVICE_WACOM(0xED) },
3365 { USB_DEVICE_WACOM(0xEF) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003366 { USB_DEVICE_WACOM(0xF0) },
3367 { USB_DEVICE_WACOM(0xF4) },
3368 { USB_DEVICE_WACOM(0xF6) },
3369 { USB_DEVICE_WACOM(0xF8) },
3370 { USB_DEVICE_WACOM(0xFA) },
3371 { USB_DEVICE_WACOM(0xFB) },
Ping Cheng6afdc282012-11-03 12:16:15 -07003372 { USB_DEVICE_WACOM(0x100) },
3373 { USB_DEVICE_WACOM(0x101) },
Stephan Frank58694832013-03-07 14:08:50 -08003374 { USB_DEVICE_WACOM(0x10D) },
Jason Gerecke2d3163f2013-10-22 15:35:30 -07003375 { USB_DEVICE_WACOM(0x10E) },
Jason Gerecke9b4f60e2013-10-15 23:46:34 -07003376 { USB_DEVICE_WACOM(0x10F) },
Jason Gerecke61616ed2014-05-14 11:42:22 -07003377 { USB_DEVICE_WACOM(0x116) },
Jason Gereckeaeaf50d2014-07-28 10:53:16 -07003378 { USB_DEVICE_WACOM(0x12C) },
Ping Chengf41a64e2013-08-21 09:14:49 -07003379 { USB_DEVICE_WACOM(0x300) },
3380 { USB_DEVICE_WACOM(0x301) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003381 { USB_DEVICE_WACOM(0x302) },
3382 { USB_DEVICE_WACOM(0x303) },
Ping Cheng56218562013-05-05 19:56:18 -07003383 { USB_DEVICE_WACOM(0x304) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003384 { USB_DEVICE_WACOM(0x307) },
3385 { USB_DEVICE_WACOM(0x309) },
Benjamin Tissoires89f2ab52014-09-03 15:43:25 -04003386 { USB_DEVICE_WACOM(0x30A) },
3387 { USB_DEVICE_WACOM(0x30C) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003388 { USB_DEVICE_WACOM(0x30E) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003389 { USB_DEVICE_WACOM(0x314) },
3390 { USB_DEVICE_WACOM(0x315) },
3391 { USB_DEVICE_WACOM(0x317) },
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05003392 { USB_DEVICE_WACOM(0x318) },
3393 { USB_DEVICE_WACOM(0x319) },
Ping Chengfefb3912014-11-11 12:52:08 -08003394 { USB_DEVICE_WACOM(0x323) },
Ping Cheng500d4162015-01-27 13:30:03 -08003395 { USB_DEVICE_WACOM(0x32A) },
3396 { USB_DEVICE_WACOM(0x32B) },
3397 { USB_DEVICE_WACOM(0x32C) },
Ping Chengfff00bf2014-12-04 18:23:04 -08003398 { USB_DEVICE_WACOM(0x32F) },
Ping Chengb4bf2122015-03-25 17:08:13 -07003399 { USB_DEVICE_WACOM(0x333) },
3400 { USB_DEVICE_WACOM(0x335) },
Aaron Skomra007760c2015-04-16 15:01:14 -07003401 { USB_DEVICE_WACOM(0x336) },
Ping Chengedbe2652012-11-21 13:12:50 -08003402 { USB_DEVICE_WACOM(0x4001) },
Jason Gerecked51ddb22014-05-14 17:14:29 -07003403 { USB_DEVICE_WACOM(0x4004) },
3404 { USB_DEVICE_WACOM(0x5000) },
3405 { USB_DEVICE_WACOM(0x5002) },
Benjamin Tissoires00d6f222014-12-01 11:52:39 -05003406 { USB_DEVICE_LENOVO(0x6004) },
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04003407
3408 { USB_DEVICE_WACOM(HID_ANY_ID) },
Mika Westerbergeef23a82015-02-23 15:52:43 +02003409 { I2C_DEVICE_WACOM(HID_ANY_ID) },
Ping Cheng3bea7332006-07-13 18:01:36 -07003410 { }
3411};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003412MODULE_DEVICE_TABLE(hid, wacom_ids);