blob: 3bb6dd6e4eea9d55affb9f691a9e844aaab7a489 [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
Ping Cheng1924e052016-08-09 14:38:56 -070037static bool touch_arbitration = 1;
38module_param(touch_arbitration, bool, 0644);
39MODULE_PARM_DESC(touch_arbitration, " on (Y) off (N)");
40
Jason Gereckec7f05222015-11-30 17:13:47 -080041static void wacom_report_numbered_buttons(struct input_dev *input_dev,
42 int button_count, int mask);
43
Benjamin Tissoires387142b2014-08-06 13:52:56 -070044/*
45 * Percent of battery capacity for Graphire.
46 * 8th value means AC online and show 100% capacity.
47 */
48static unsigned short batcap_gr[8] = { 1, 15, 25, 35, 50, 70, 100, 100 };
49
Benjamin Tissoires81af7e62014-08-06 13:55:56 -070050/*
51 * Percent of battery capacity for Intuos4 WL, AC has a separate bit.
52 */
53static unsigned short batcap_i4[8] = { 1, 15, 30, 45, 60, 70, 85, 100 };
54
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +020055static void __wacom_notify_battery(struct wacom_battery *battery,
56 int bat_capacity, bool bat_charging,
57 bool bat_connected, bool ps_connected)
58{
59 bool changed = battery->battery_capacity != bat_capacity ||
60 battery->bat_charging != bat_charging ||
61 battery->bat_connected != bat_connected ||
62 battery->ps_connected != ps_connected;
63
64 if (changed) {
65 battery->battery_capacity = bat_capacity;
66 battery->bat_charging = bat_charging;
67 battery->bat_connected = bat_connected;
68 battery->ps_connected = ps_connected;
69
70 if (battery->battery)
71 power_supply_changed(battery->battery);
72 }
73}
74
Jason Gerecke953f2c52015-03-06 11:47:39 -080075static void wacom_notify_battery(struct wacom_wac *wacom_wac,
Jason Gerecke71fa6412015-03-11 10:25:41 -070076 int bat_capacity, bool bat_charging, bool bat_connected,
77 bool ps_connected)
Jason Gerecke953f2c52015-03-06 11:47:39 -080078{
79 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
Jason Gerecke953f2c52015-03-06 11:47:39 -080080
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +020081 __wacom_notify_battery(&wacom->battery, bat_capacity, bat_charging,
82 bat_connected, ps_connected);
Jason Gerecke953f2c52015-03-06 11:47:39 -080083}
84
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -070085static int wacom_penpartner_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -070086{
87 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -070088 struct input_dev *input = wacom->pen_input;
Ping Cheng3bea7332006-07-13 18:01:36 -070089
90 switch (data[0]) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070091 case 1:
92 if (data[5] & 0x80) {
93 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
94 wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070095 input_report_key(input, wacom->tool[0], 1);
96 input_report_abs(input, ABS_MISC, wacom->id[0]); /* 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] > -127));
101 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700102 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700103 input_report_key(input, wacom->tool[0], 0);
104 input_report_abs(input, ABS_MISC, 0); /* report tool id */
105 input_report_abs(input, ABS_PRESSURE, -1);
106 input_report_key(input, BTN_TOUCH, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700107 }
108 break;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700109
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700110 case 2:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700111 input_report_key(input, BTN_TOOL_PEN, 1);
112 input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700113 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
114 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700115 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
116 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
117 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700118 break;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700119
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700120 default:
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700121 dev_dbg(input->dev.parent,
122 "%s: received unknown report #%d\n", __func__, data[0]);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700123 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700124 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700125
Ping Cheng3bea7332006-07-13 18:01:36 -0700126 return 1;
127}
128
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700129static int wacom_pl_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700130{
Jason Childse33da8a2010-02-17 22:38:31 -0800131 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700132 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700133 struct input_dev *input = wacom->pen_input;
Ping Chenge34b9d22008-05-05 11:36:41 -0400134 int prox, pressure;
Ping Cheng3bea7332006-07-13 18:01:36 -0700135
Ping Chengcad74702009-12-15 00:35:25 -0800136 if (data[0] != WACOM_REPORT_PENABLED) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700137 dev_dbg(input->dev.parent,
138 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700139 return 0;
140 }
141
142 prox = data[1] & 0x40;
143
Jason Gerecke025bcc12015-08-03 10:18:10 -0700144 if (!wacom->id[0]) {
145 if ((data[0] & 0x10) || (data[4] & 0x20)) {
146 wacom->tool[0] = BTN_TOOL_RUBBER;
147 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700148 }
Jason Gerecke025bcc12015-08-03 10:18:10 -0700149 else {
150 wacom->tool[0] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400151 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700152 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700153 }
154
Jason Gerecke025bcc12015-08-03 10:18:10 -0700155 /* If the eraser is in prox, STYLUS2 is always set. If we
156 * mis-detected the type and notice that STYLUS2 isn't set
157 * then force the eraser out of prox and let the pen in.
158 */
159 if (wacom->tool[0] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
160 input_report_key(input, BTN_TOOL_RUBBER, 0);
161 input_report_abs(input, ABS_MISC, 0);
162 input_sync(input);
163 wacom->tool[0] = BTN_TOOL_PEN;
164 wacom->id[0] = STYLUS_DEVICE_ID;
165 }
166
167 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
168 if (features->pressure_max > 255)
169 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
170 pressure += (features->pressure_max + 1) / 2;
171
172 input_report_abs(input, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
173 input_report_abs(input, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
174 input_report_abs(input, ABS_PRESSURE, pressure);
175
176 input_report_key(input, BTN_TOUCH, data[4] & 0x08);
177 input_report_key(input, BTN_STYLUS, data[4] & 0x10);
178 /* Only allow the stylus2 button to be reported for the pen tool. */
179 input_report_key(input, BTN_STYLUS2, (wacom->tool[0] == BTN_TOOL_PEN) && (data[4] & 0x20));
180
181 if (!prox)
182 wacom->id[0] = 0;
183 input_report_key(input, wacom->tool[0], prox);
184 input_report_abs(input, ABS_MISC, wacom->id[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700185 return 1;
186}
187
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700188static int wacom_ptu_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700189{
190 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700191 struct input_dev *input = wacom->pen_input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700192
Ping Chengcad74702009-12-15 00:35:25 -0800193 if (data[0] != WACOM_REPORT_PENABLED) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700194 dev_dbg(input->dev.parent,
195 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700196 return 0;
197 }
198
Ping Cheng3bea7332006-07-13 18:01:36 -0700199 if (data[1] & 0x04) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700200 input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
201 input_report_key(input, BTN_TOUCH, data[1] & 0x08);
Ping Chenge34b9d22008-05-05 11:36:41 -0400202 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700203 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700204 input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
205 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
Ping Chenge34b9d22008-05-05 11:36:41 -0400206 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700207 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700208 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700209 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
210 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
211 input_report_abs(input, ABS_PRESSURE, le16_to_cpup((__le16 *)&data[6]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700212 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
213 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700214 return 1;
215}
216
Ping Chengc8f2edc2010-06-28 01:10:51 -0700217static int wacom_dtu_irq(struct wacom_wac *wacom)
218{
Jason Gerecke74b63412014-04-19 13:50:22 -0700219 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700220 struct input_dev *input = wacom->pen_input;
Jason Gerecke74b63412014-04-19 13:50:22 -0700221 int prox = data[1] & 0x20;
Ping Chengc8f2edc2010-06-28 01:10:51 -0700222
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700223 dev_dbg(input->dev.parent,
224 "%s: received report #%d", __func__, data[0]);
Ping Chengc8f2edc2010-06-28 01:10:51 -0700225
226 if (prox) {
227 /* Going into proximity select tool */
228 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
229 if (wacom->tool[0] == BTN_TOOL_PEN)
230 wacom->id[0] = STYLUS_DEVICE_ID;
231 else
232 wacom->id[0] = ERASER_DEVICE_ID;
233 }
234 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
235 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
236 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
237 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Jason Gerecke74b63412014-04-19 13:50:22 -0700238 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x01) << 8) | data[6]);
Ping Chengc8f2edc2010-06-28 01:10:51 -0700239 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
240 if (!prox) /* out-prox */
241 wacom->id[0] = 0;
242 input_report_key(input, wacom->tool[0], prox);
243 input_report_abs(input, ABS_MISC, wacom->id[0]);
244 return 1;
245}
246
Ping Cheng497ab1f2014-01-20 20:18:04 -0800247static int wacom_dtus_irq(struct wacom_wac *wacom)
248{
249 char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700250 struct input_dev *input = wacom->pen_input;
Ping Cheng497ab1f2014-01-20 20:18:04 -0800251 unsigned short prox, pressure = 0;
252
253 if (data[0] != WACOM_REPORT_DTUS && data[0] != WACOM_REPORT_DTUSPAD) {
254 dev_dbg(input->dev.parent,
255 "%s: received unknown report #%d", __func__, data[0]);
256 return 0;
257 } else if (data[0] == WACOM_REPORT_DTUSPAD) {
Benjamin Tissoires422b0312014-07-24 12:50:39 -0700258 input = wacom->pad_input;
Ping Cheng497ab1f2014-01-20 20:18:04 -0800259 input_report_key(input, BTN_0, (data[1] & 0x01));
260 input_report_key(input, BTN_1, (data[1] & 0x02));
261 input_report_key(input, BTN_2, (data[1] & 0x04));
262 input_report_key(input, BTN_3, (data[1] & 0x08));
263 input_report_abs(input, ABS_MISC,
264 data[1] & 0x0f ? PAD_DEVICE_ID : 0);
Ping Cheng497ab1f2014-01-20 20:18:04 -0800265 return 1;
266 } else {
267 prox = data[1] & 0x80;
268 if (prox) {
269 switch ((data[1] >> 3) & 3) {
270 case 1: /* Rubber */
271 wacom->tool[0] = BTN_TOOL_RUBBER;
272 wacom->id[0] = ERASER_DEVICE_ID;
273 break;
274
275 case 2: /* Pen */
276 wacom->tool[0] = BTN_TOOL_PEN;
277 wacom->id[0] = STYLUS_DEVICE_ID;
278 break;
279 }
280 }
281
282 input_report_key(input, BTN_STYLUS, data[1] & 0x20);
283 input_report_key(input, BTN_STYLUS2, data[1] & 0x40);
284 input_report_abs(input, ABS_X, get_unaligned_be16(&data[3]));
285 input_report_abs(input, ABS_Y, get_unaligned_be16(&data[5]));
286 pressure = ((data[1] & 0x03) << 8) | (data[2] & 0xff);
287 input_report_abs(input, ABS_PRESSURE, pressure);
288 input_report_key(input, BTN_TOUCH, pressure > 10);
289
290 if (!prox) /* out-prox */
291 wacom->id[0] = 0;
292 input_report_key(input, wacom->tool[0], prox);
293 input_report_abs(input, ABS_MISC, wacom->id[0]);
Ping Cheng497ab1f2014-01-20 20:18:04 -0800294 return 1;
295 }
296}
297
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700298static int wacom_graphire_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700299{
Jason Childse33da8a2010-02-17 22:38:31 -0800300 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700301 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700302 struct input_dev *input = wacom->pen_input;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700303 struct input_dev *pad_input = wacom->pad_input;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700304 int battery_capacity, ps_connected;
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700305 int prox;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800306 int rw = 0;
307 int retval = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700308
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700309 if (features->type == GRAPHIRE_BT) {
310 if (data[0] != WACOM_REPORT_PENABLED_BT) {
311 dev_dbg(input->dev.parent,
312 "%s: received unknown report #%d\n", __func__,
313 data[0]);
314 goto exit;
315 }
316 } else if (data[0] != WACOM_REPORT_PENABLED) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700317 dev_dbg(input->dev.parent,
318 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800319 goto exit;
Ping Cheng3bea7332006-07-13 18:01:36 -0700320 }
321
Ping Cheng3b57ca02010-03-04 21:50:59 -0800322 prox = data[1] & 0x80;
323 if (prox || wacom->id[0]) {
324 if (prox) {
325 switch ((data[1] >> 5) & 3) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700326
327 case 0: /* Pen */
328 wacom->tool[0] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400329 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700330 break;
331
332 case 1: /* Rubber */
333 wacom->tool[0] = BTN_TOOL_RUBBER;
Ping Chenge34b9d22008-05-05 11:36:41 -0400334 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700335 break;
336
337 case 2: /* Mouse with wheel */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700338 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
Ping Cheng3bea7332006-07-13 18:01:36 -0700339 /* fall through */
340
341 case 3: /* Mouse without wheel */
342 wacom->tool[0] = BTN_TOOL_MOUSE;
Ping Chenge34b9d22008-05-05 11:36:41 -0400343 wacom->id[0] = CURSOR_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700344 break;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800345 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700346 }
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700347 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
348 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Ping Cheng3bea7332006-07-13 18:01:36 -0700349 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700350 if (features->type == GRAPHIRE_BT)
351 input_report_abs(input, ABS_PRESSURE, data[6] |
352 (((__u16) (data[1] & 0x08)) << 5));
353 else
354 input_report_abs(input, ABS_PRESSURE, data[6] |
355 ((data[7] & 0x03) << 8));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700356 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
357 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
358 input_report_key(input, BTN_STYLUS2, data[1] & 0x04);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700359 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700360 input_report_key(input, BTN_LEFT, data[1] & 0x01);
361 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800362 if (features->type == WACOM_G4 ||
363 features->type == WACOM_MO) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700364 input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f);
Mike Autyd9f66c12010-08-28 20:35:17 -0700365 rw = (data[7] & 0x04) - (data[7] & 0x03);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700366 } else if (features->type == GRAPHIRE_BT) {
367 /* Compute distance between mouse and tablet */
368 rw = 44 - (data[6] >> 2);
369 rw = clamp_val(rw, 0, 31);
370 input_report_abs(input, ABS_DISTANCE, rw);
371 if (((data[1] >> 5) & 3) == 2) {
372 /* Mouse with wheel */
373 input_report_key(input, BTN_MIDDLE,
374 data[1] & 0x04);
375 rw = (data[6] & 0x01) ? -1 :
376 (data[6] & 0x02) ? 1 : 0;
377 } else {
378 rw = 0;
379 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800380 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700381 input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f);
Mike Autyd9f66c12010-08-28 20:35:17 -0700382 rw = -(signed char)data[6];
Ping Cheng3b57ca02010-03-04 21:50:59 -0800383 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700384 input_report_rel(input, REL_WHEEL, rw);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700385 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800386
387 if (!prox)
388 wacom->id[0] = 0;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700389 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
390 input_report_key(input, wacom->tool[0], prox);
391 input_sync(input); /* sync last event */
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800392 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700393
394 /* send pad data */
Jason Childse33da8a2010-02-17 22:38:31 -0800395 switch (features->type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700396 case WACOM_G4:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800397 prox = data[7] & 0xf8;
398 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400399 wacom->id[1] = PAD_DEVICE_ID;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700400 input_report_key(pad_input, BTN_BACK, (data[7] & 0x40));
401 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x80));
Ping Cheng3bea7332006-07-13 18:01:36 -0700402 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
Benjamin Tissoires38138102014-07-24 12:51:03 -0700403 input_report_rel(pad_input, REL_WHEEL, rw);
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 Chengab687b12010-04-05 23:07:41 -0700407 retval = 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700408 }
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400409 break;
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700410
411 case WACOM_MO:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800412 prox = (data[7] & 0xf8) || data[8];
413 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400414 wacom->id[1] = PAD_DEVICE_ID;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700415 input_report_key(pad_input, BTN_BACK, (data[7] & 0x08));
416 input_report_key(pad_input, BTN_LEFT, (data[7] & 0x20));
417 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x10));
418 input_report_key(pad_input, BTN_RIGHT, (data[7] & 0x40));
419 input_report_abs(pad_input, ABS_WHEEL, (data[8] & 0x7f));
Ping Cheng3b57ca02010-03-04 21:50:59 -0800420 if (!prox)
421 wacom->id[1] = 0;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700422 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
Ping Cheng84460012011-07-06 18:05:43 -0700423 retval = 1;
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400424 }
425 break;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700426 case GRAPHIRE_BT:
427 prox = data[7] & 0x03;
428 if (prox || wacom->id[1]) {
429 wacom->id[1] = PAD_DEVICE_ID;
430 input_report_key(pad_input, BTN_0, (data[7] & 0x02));
431 input_report_key(pad_input, BTN_1, (data[7] & 0x01));
432 if (!prox)
433 wacom->id[1] = 0;
434 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
435 retval = 1;
436 }
437 break;
438 }
439
440 /* Store current battery capacity and power supply state */
441 if (features->type == GRAPHIRE_BT) {
442 rw = (data[7] >> 2 & 0x07);
443 battery_capacity = batcap_gr[rw];
444 ps_connected = rw == 7;
Jason Gerecke953f2c52015-03-06 11:47:39 -0800445 wacom_notify_battery(wacom, battery_capacity, ps_connected,
Jason Gerecke71fa6412015-03-11 10:25:41 -0700446 1, ps_connected);
Ping Cheng3bea7332006-07-13 18:01:36 -0700447 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800448exit:
449 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -0700450}
451
Benjamin Tissoires5fcad162015-03-05 17:36:54 -0500452static void wacom_intuos_schedule_prox_event(struct wacom_wac *wacom_wac)
453{
454 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
Jason Gerecke0bbfe282016-01-06 13:25:53 -0800455 struct wacom_features *features = &wacom_wac->features;
Benjamin Tissoires5fcad162015-03-05 17:36:54 -0500456 struct hid_report *r;
457 struct hid_report_enum *re;
458
459 re = &(wacom->hdev->report_enum[HID_FEATURE_REPORT]);
Jason Gerecke0bbfe282016-01-06 13:25:53 -0800460 if (features->type == INTUOSHT2)
461 r = re->report_id_hash[WACOM_REPORT_INTUOSHT2_ID];
462 else
463 r = re->report_id_hash[WACOM_REPORT_INTUOS_ID1];
Benjamin Tissoires5fcad162015-03-05 17:36:54 -0500464 if (r) {
465 hid_hw_request(wacom->hdev, r, HID_REQ_GET_REPORT);
466 }
467}
468
Jason Gereckefb013a02015-11-30 17:13:46 -0800469static int wacom_intuos_pad(struct wacom_wac *wacom)
470{
471 struct wacom_features *features = &wacom->features;
472 unsigned char *data = wacom->data;
473 struct input_dev *input = wacom->pad_input;
Jason Gereckec7f05222015-11-30 17:13:47 -0800474 int i;
475 int buttons = 0, nbuttons = features->numbered_buttons;
476 int keys = 0, nkeys = 0;
477 int ring1 = 0, ring2 = 0;
478 int strip1 = 0, strip2 = 0;
479 bool prox = false;
Jason Gereckefb013a02015-11-30 17:13:46 -0800480
481 /* pad packets. Works as a second tool and is always in prox */
482 if (!(data[0] == WACOM_REPORT_INTUOSPAD || data[0] == WACOM_REPORT_INTUOS5PAD ||
483 data[0] == WACOM_REPORT_CINTIQPAD))
484 return 0;
485
486 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800487 buttons = (data[3] << 1) | (data[2] & 0x01);
488 ring1 = data[1];
Jason Gereckefb013a02015-11-30 17:13:46 -0800489 } else if (features->type == DTK) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800490 buttons = data[6];
Jason Gereckefb013a02015-11-30 17:13:46 -0800491 } else if (features->type == WACOM_13HD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800492 buttons = (data[4] << 1) | (data[3] & 0x01);
Jason Gereckefb013a02015-11-30 17:13:46 -0800493 } else if (features->type == WACOM_24HD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800494 buttons = (data[8] << 8) | data[6];
495 ring1 = data[1];
496 ring2 = data[2];
Jason Gereckefb013a02015-11-30 17:13:46 -0800497
498 /*
499 * Three "buttons" are available on the 24HD which are
500 * physically implemented as a touchstrip. Each button
501 * is approximately 3 bits wide with a 2 bit spacing.
502 * The raw touchstrip bits are stored at:
503 * ((data[3] & 0x1f) << 8) | data[4])
504 */
Jason Gereckec7f05222015-11-30 17:13:47 -0800505 nkeys = 3;
506 keys = ((data[3] & 0x1C) ? 1<<2 : 0) |
507 ((data[4] & 0xE0) ? 1<<1 : 0) |
508 ((data[4] & 0x07) ? 1<<0 : 0);
Jason Gereckefb013a02015-11-30 17:13:46 -0800509 } else if (features->type == WACOM_27QHD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800510 nkeys = 3;
511 keys = data[2] & 0x07;
Jason Gereckefb013a02015-11-30 17:13:46 -0800512
513 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[4]));
514 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[6]));
515 input_report_abs(input, ABS_Z, be16_to_cpup((__be16 *)&data[8]));
Jason Gereckefb013a02015-11-30 17:13:46 -0800516 } else if (features->type == CINTIQ_HYBRID) {
517 /*
518 * Do not send hardware buttons under Android. They
519 * are already sent to the system through GPIO (and
520 * have different meaning).
Jason Gereckec7f05222015-11-30 17:13:47 -0800521 *
522 * d-pad right -> data[4] & 0x10
523 * d-pad up -> data[4] & 0x20
524 * d-pad left -> data[4] & 0x40
525 * d-pad down -> data[4] & 0x80
526 * d-pad center -> data[3] & 0x01
Jason Gereckefb013a02015-11-30 17:13:46 -0800527 */
Jason Gereckec7f05222015-11-30 17:13:47 -0800528 buttons = (data[4] << 1) | (data[3] & 0x01);
Jason Gereckefb013a02015-11-30 17:13:46 -0800529 } else if (features->type == CINTIQ_COMPANION_2) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800530 /* d-pad right -> data[4] & 0x10
531 * d-pad up -> data[4] & 0x20
532 * d-pad left -> data[4] & 0x40
533 * d-pad down -> data[4] & 0x80
534 * d-pad center -> data[3] & 0x01
535 */
Jason Gerecke0402b6b2015-12-16 13:37:36 -0800536 buttons = ((data[2] >> 4) << 7) |
Jason Gereckec7f05222015-11-30 17:13:47 -0800537 ((data[1] & 0x04) << 6) |
538 ((data[2] & 0x0F) << 2) |
539 (data[1] & 0x03);
Jason Gereckefb013a02015-11-30 17:13:46 -0800540 } else if (features->type >= INTUOS5S && features->type <= INTUOSPL) {
Jason Gereckefb013a02015-11-30 17:13:46 -0800541 /*
542 * ExpressKeys on Intuos5/Intuos Pro have a capacitive sensor in
543 * addition to the mechanical switch. Switch data is
544 * stored in data[4], capacitive data in data[5].
Jason Gereckec7f05222015-11-30 17:13:47 -0800545 *
546 * Touch ring mode switch (data[3]) has no capacitive sensor
Jason Gereckefb013a02015-11-30 17:13:46 -0800547 */
Jason Gereckec7f05222015-11-30 17:13:47 -0800548 buttons = (data[4] << 1) | (data[3] & 0x01);
549 ring1 = data[2];
Jason Gereckefb013a02015-11-30 17:13:46 -0800550 } else {
551 if (features->type == WACOM_21UX2 || features->type == WACOM_22HD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800552 buttons = (data[8] << 10) | ((data[7] & 0x01) << 9) |
553 (data[6] << 1) | (data[5] & 0x01);
Jason Gereckefb013a02015-11-30 17:13:46 -0800554
555 if (features->type == WACOM_22HD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800556 nkeys = 3;
557 keys = data[9] & 0x07;
Jason Gereckefb013a02015-11-30 17:13:46 -0800558 }
559 } else {
Jason Gereckec7f05222015-11-30 17:13:47 -0800560 buttons = ((data[6] & 0x10) << 10) |
561 ((data[5] & 0x10) << 9) |
562 ((data[6] & 0x0F) << 4) |
563 (data[5] & 0x0F);
Jason Gereckefb013a02015-11-30 17:13:46 -0800564 }
Jason Gereckef73d08d2015-12-16 13:37:33 -0800565 strip1 = ((data[1] & 0x1f) << 8) | data[2];
566 strip2 = ((data[3] & 0x1f) << 8) | data[4];
Jason Gereckefb013a02015-11-30 17:13:46 -0800567 }
Jason Gereckec7f05222015-11-30 17:13:47 -0800568
Dan Carpenter8f9cfdd2015-12-09 13:22:05 +0300569 prox = (buttons & ~(~0 << nbuttons)) | (keys & ~(~0 << nkeys)) |
570 (ring1 & 0x80) | (ring2 & 0x80) | strip1 | strip2;
Jason Gereckec7f05222015-11-30 17:13:47 -0800571
572 wacom_report_numbered_buttons(input, nbuttons, buttons);
573
574 for (i = 0; i < nkeys; i++)
575 input_report_key(input, KEY_PROG1 + i, keys & (1 << i));
576
577 input_report_abs(input, ABS_RX, strip1);
Jason Gerecke03a0dc52015-12-16 13:37:34 -0800578 input_report_abs(input, ABS_RY, strip2);
Jason Gereckec7f05222015-11-30 17:13:47 -0800579
Jason Gereckeaaae03e2015-12-16 13:37:35 -0800580 input_report_abs(input, ABS_WHEEL, (ring1 & 0x80) ? (ring1 & 0x7f) : 0);
581 input_report_abs(input, ABS_THROTTLE, (ring2 & 0x80) ? (ring2 & 0x7f) : 0);
Jason Gereckec7f05222015-11-30 17:13:47 -0800582
583 input_report_key(input, wacom->tool[1], prox ? 1 : 0);
584 input_report_abs(input, ABS_MISC, prox ? PAD_DEVICE_ID : 0);
585
586 input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
587
Jason Gereckefb013a02015-11-30 17:13:46 -0800588 return 1;
589}
590
Jason Gerecke82527da2016-10-19 18:03:47 -0700591static int wacom_intuos_id_mangle(int tool_id)
592{
593 return (tool_id & ~0xFFF) << 4 | (tool_id & 0xFFF);
594}
595
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100596static int wacom_intuos_get_tool_type(int tool_id)
597{
598 int tool_type;
599
600 switch (tool_id) {
601 case 0x812: /* Inking pen */
602 case 0x801: /* Intuos3 Inking pen */
Jason Gerecke82527da2016-10-19 18:03:47 -0700603 case 0x12802: /* Intuos4/5 Inking Pen */
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100604 case 0x012:
605 tool_type = BTN_TOOL_PENCIL;
606 break;
607
608 case 0x822: /* Pen */
609 case 0x842:
610 case 0x852:
611 case 0x823: /* Intuos3 Grip Pen */
612 case 0x813: /* Intuos3 Classic Pen */
613 case 0x885: /* Intuos3 Marker Pen */
614 case 0x802: /* Intuos4/5 13HD/24HD General Pen */
615 case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */
616 case 0x8e2: /* IntuosHT2 pen */
617 case 0x022:
Jason Gerecke82527da2016-10-19 18:03:47 -0700618 case 0x10804: /* Intuos4/5 13HD/24HD Art Pen */
619 case 0x14802: /* Intuos4/5 13HD/24HD Classic Pen */
620 case 0x16802: /* Cintiq 13HD Pro Pen */
621 case 0x18802: /* DTH2242 Pen */
622 case 0x10802: /* Intuos4/5 13HD/24HD General Pen */
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100623 tool_type = BTN_TOOL_PEN;
624 break;
625
626 case 0x832: /* Stroke pen */
627 case 0x032:
628 tool_type = BTN_TOOL_BRUSH;
629 break;
630
631 case 0x007: /* Mouse 4D and 2D */
632 case 0x09c:
633 case 0x094:
634 case 0x017: /* Intuos3 2D Mouse */
635 case 0x806: /* Intuos4 Mouse */
636 tool_type = BTN_TOOL_MOUSE;
637 break;
638
639 case 0x096: /* Lens cursor */
640 case 0x097: /* Intuos3 Lens cursor */
641 case 0x006: /* Intuos4 Lens cursor */
642 tool_type = BTN_TOOL_LENS;
643 break;
644
645 case 0x82a: /* Eraser */
646 case 0x85a:
647 case 0x91a:
648 case 0xd1a:
649 case 0x0fa:
650 case 0x82b: /* Intuos3 Grip Pen Eraser */
651 case 0x81b: /* Intuos3 Classic Pen Eraser */
652 case 0x91b: /* Intuos3 Airbrush Eraser */
653 case 0x80c: /* Intuos4/5 13HD/24HD Marker Pen Eraser */
654 case 0x80a: /* Intuos4/5 13HD/24HD General Pen Eraser */
655 case 0x90a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
Jason Gerecke82527da2016-10-19 18:03:47 -0700656 case 0x1480a: /* Intuos4/5 13HD/24HD Classic Pen Eraser */
657 case 0x1090a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
658 case 0x1080c: /* Intuos4/5 13HD/24HD Art Pen Eraser */
659 case 0x1680a: /* Cintiq 13HD Pro Pen Eraser */
660 case 0x1880a: /* DTH2242 Eraser */
661 case 0x1080a: /* Intuos4/5 13HD/24HD General Pen Eraser */
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100662 tool_type = BTN_TOOL_RUBBER;
663 break;
664
665 case 0xd12:
666 case 0x912:
667 case 0x112:
668 case 0x913: /* Intuos3 Airbrush */
669 case 0x902: /* Intuos4/5 13HD/24HD Airbrush */
Jason Gerecke82527da2016-10-19 18:03:47 -0700670 case 0x10902: /* Intuos4/5 13HD/24HD Airbrush */
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100671 tool_type = BTN_TOOL_AIRBRUSH;
672 break;
673
674 default: /* Unknown tool */
675 tool_type = BTN_TOOL_PEN;
676 break;
677 }
678 return tool_type;
679}
680
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700681static int wacom_intuos_inout(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700682{
Jason Childse33da8a2010-02-17 22:38:31 -0800683 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700684 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700685 struct input_dev *input = wacom->pen_input;
Ping Cheng4750f5f2016-01-08 17:15:48 -0800686 int idx = (features->type == INTUOS) ? (data[1] & 0x01) : 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700687
Ping Cheng4750f5f2016-01-08 17:15:48 -0800688 if (!(((data[1] & 0xfc) == 0xc0) || /* in prox */
689 ((data[1] & 0xfe) == 0x20) || /* in range */
690 ((data[1] & 0xfe) == 0x80))) /* out prox */
691 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700692
693 /* Enter report */
694 if ((data[1] & 0xfc) == 0xc0) {
695 /* serial number of the tool */
696 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
697 (data[4] << 20) + (data[5] << 12) +
698 (data[6] << 4) + (data[7] >> 4);
699
Ping Cheng493630b2010-06-22 11:21:34 -0700700 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
Jason Gerecke82527da2016-10-19 18:03:47 -0700701 ((data[7] & 0x0f) << 16) | ((data[8] & 0xf0) << 8);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700702
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100703 wacom->tool[idx] = wacom_intuos_get_tool_type(wacom->id[idx]);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700704
Ping Chengeff6ca92016-05-02 21:17:34 -0700705 wacom->shared->stylus_in_proximity = true;
Ping Cheng3bea7332006-07-13 18:01:36 -0700706 return 1;
707 }
708
Ping Chengc1b03f52016-01-08 17:16:06 -0800709 /* in Range */
710 if ((data[1] & 0xfe) == 0x20) {
Ping Cheng526d6e72016-01-08 17:16:25 -0800711 if (features->type != INTUOSHT2)
712 wacom->shared->stylus_in_proximity = true;
Ping Cheng486b9082015-02-20 14:25:58 -0800713
Ping Chengc1b03f52016-01-08 17:16:06 -0800714 /* in Range while exiting */
715 if (wacom->reporting_data) {
716 input_report_key(input, BTN_TOUCH, 0);
717 input_report_abs(input, ABS_PRESSURE, 0);
718 input_report_abs(input, ABS_DISTANCE, wacom->features.distance_max);
719 return 2;
720 }
721 return 1;
Jason Gerecke4eb18302013-09-20 09:48:46 -0700722 }
723
Ping Cheng3bea7332006-07-13 18:01:36 -0700724 /* Exit report */
725 if ((data[1] & 0xfe) == 0x80) {
Ping Chengf3586d22015-03-20 14:57:00 -0700726 wacom->shared->stylus_in_proximity = false;
Ping Chengb3bd7ef2015-01-09 11:05:13 -0800727 wacom->reporting_data = false;
Jason Gereckeae584ca2012-04-03 15:50:40 -0700728
Ping Cheng373a5352015-01-09 11:04:50 -0800729 /* don't report exit if we don't know the ID */
730 if (!wacom->id[idx])
731 return 1;
732
Ping Cheng6f660f12009-05-08 18:30:33 -0700733 /*
734 * Reset all states otherwise we lose the initial states
735 * when in-prox next time
736 */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700737 input_report_abs(input, ABS_X, 0);
738 input_report_abs(input, ABS_Y, 0);
739 input_report_abs(input, ABS_DISTANCE, 0);
740 input_report_abs(input, ABS_TILT_X, 0);
741 input_report_abs(input, ABS_TILT_Y, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800742 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700743 input_report_key(input, BTN_LEFT, 0);
744 input_report_key(input, BTN_MIDDLE, 0);
745 input_report_key(input, BTN_RIGHT, 0);
746 input_report_key(input, BTN_SIDE, 0);
747 input_report_key(input, BTN_EXTRA, 0);
748 input_report_abs(input, ABS_THROTTLE, 0);
749 input_report_abs(input, ABS_RZ, 0);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400750 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700751 input_report_abs(input, ABS_PRESSURE, 0);
752 input_report_key(input, BTN_STYLUS, 0);
753 input_report_key(input, BTN_STYLUS2, 0);
754 input_report_key(input, BTN_TOUCH, 0);
755 input_report_abs(input, ABS_WHEEL, 0);
Jason Childse33da8a2010-02-17 22:38:31 -0800756 if (features->type >= INTUOS3S)
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700757 input_report_abs(input, ABS_Z, 0);
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700758 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700759 input_report_key(input, wacom->tool[idx], 0);
760 input_report_abs(input, ABS_MISC, 0); /* reset tool id */
761 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Cheng6f660f12009-05-08 18:30:33 -0700762 wacom->id[idx] = 0;
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800763 return 2;
Ping Cheng3bea7332006-07-13 18:01:36 -0700764 }
Ping Cheng373a5352015-01-09 11:04:50 -0800765
Ping Cheng3bea7332006-07-13 18:01:36 -0700766 return 0;
767}
768
Aaron Skomra72b236d2015-08-20 16:05:17 -0700769static int wacom_remote_irq(struct wacom_wac *wacom_wac, size_t len)
770{
771 unsigned char *data = wacom_wac->data;
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +0200772 struct input_dev *input;
Aaron Skomra72b236d2015-08-20 16:05:17 -0700773 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
Benjamin Tissoires83e6b402016-07-13 18:06:02 +0200774 struct wacom_remote *remote = wacom->remote;
Aaron Skomra72b236d2015-08-20 16:05:17 -0700775 int bat_charging, bat_percent, touch_ring_mode;
776 __u32 serial;
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +0200777 int i, index = -1;
778 unsigned long flags;
Aaron Skomra72b236d2015-08-20 16:05:17 -0700779
780 if (data[0] != WACOM_REPORT_REMOTE) {
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +0200781 hid_dbg(wacom->hdev, "%s: received unknown report #%d",
782 __func__, data[0]);
Aaron Skomra72b236d2015-08-20 16:05:17 -0700783 return 0;
784 }
785
786 serial = data[3] + (data[4] << 8) + (data[5] << 16);
787 wacom_wac->id[0] = PAD_DEVICE_ID;
788
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +0200789 spin_lock_irqsave(&remote->remote_lock, flags);
790
791 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
792 if (remote->remotes[i].serial == serial) {
793 index = i;
794 break;
795 }
796 }
797
798 if (index < 0 || !remote->remotes[index].registered)
799 goto out;
800
801 input = remote->remotes[index].input;
802
Aaron Skomra72b236d2015-08-20 16:05:17 -0700803 input_report_key(input, BTN_0, (data[9] & 0x01));
804 input_report_key(input, BTN_1, (data[9] & 0x02));
805 input_report_key(input, BTN_2, (data[9] & 0x04));
806 input_report_key(input, BTN_3, (data[9] & 0x08));
807 input_report_key(input, BTN_4, (data[9] & 0x10));
808 input_report_key(input, BTN_5, (data[9] & 0x20));
809 input_report_key(input, BTN_6, (data[9] & 0x40));
810 input_report_key(input, BTN_7, (data[9] & 0x80));
811
812 input_report_key(input, BTN_8, (data[10] & 0x01));
813 input_report_key(input, BTN_9, (data[10] & 0x02));
814 input_report_key(input, BTN_A, (data[10] & 0x04));
815 input_report_key(input, BTN_B, (data[10] & 0x08));
816 input_report_key(input, BTN_C, (data[10] & 0x10));
817 input_report_key(input, BTN_X, (data[10] & 0x20));
818 input_report_key(input, BTN_Y, (data[10] & 0x40));
819 input_report_key(input, BTN_Z, (data[10] & 0x80));
820
821 input_report_key(input, BTN_BASE, (data[11] & 0x01));
822 input_report_key(input, BTN_BASE2, (data[11] & 0x02));
823
824 if (data[12] & 0x80)
825 input_report_abs(input, ABS_WHEEL, (data[12] & 0x7f));
826 else
827 input_report_abs(input, ABS_WHEEL, 0);
828
829 bat_percent = data[7] & 0x7f;
830 bat_charging = !!(data[7] & 0x80);
831
832 if (data[9] | data[10] | (data[11] & 0x03) | data[12])
833 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
834 else
835 input_report_abs(input, ABS_MISC, 0);
836
837 input_event(input, EV_MSC, MSC_SERIAL, serial);
838
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +0200839 input_sync(input);
840
Aaron Skomra72b236d2015-08-20 16:05:17 -0700841 /*Which mode select (LED light) is currently on?*/
842 touch_ring_mode = (data[11] & 0xC0) >> 6;
843
844 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
Benjamin Tissoirese7749f62016-07-13 18:06:06 +0200845 if (remote->remotes[i].serial == serial)
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200846 wacom->led.groups[i].select = touch_ring_mode;
Aaron Skomra72b236d2015-08-20 16:05:17 -0700847 }
848
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +0200849 __wacom_notify_battery(&remote->remotes[index].battery, bat_percent,
850 bat_charging, 1, bat_charging);
Aaron Skomra72b236d2015-08-20 16:05:17 -0700851
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +0200852out:
853 spin_unlock_irqrestore(&remote->remote_lock, flags);
854 return 0;
Aaron Skomra72b236d2015-08-20 16:05:17 -0700855}
856
Benjamin Tissoirese6f28132016-07-13 18:06:01 +0200857static void wacom_remote_status_irq(struct wacom_wac *wacom_wac, size_t len)
Aaron Skomra72b236d2015-08-20 16:05:17 -0700858{
859 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
860 unsigned char *data = wacom_wac->data;
Benjamin Tissoires83e6b402016-07-13 18:06:02 +0200861 struct wacom_remote *remote = wacom->remote;
Benjamin Tissoirese6f28132016-07-13 18:06:01 +0200862 struct wacom_remote_data remote_data;
863 unsigned long flags;
864 int i, ret;
Aaron Skomra72b236d2015-08-20 16:05:17 -0700865
866 if (data[0] != WACOM_REPORT_DEVICE_LIST)
Benjamin Tissoirese6f28132016-07-13 18:06:01 +0200867 return;
868
869 memset(&remote_data, 0, sizeof(struct wacom_remote_data));
Aaron Skomra72b236d2015-08-20 16:05:17 -0700870
871 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
872 int j = i * 6;
873 int serial = (data[j+6] << 16) + (data[j+5] << 8) + data[j+4];
874 bool connected = data[j+2];
875
Benjamin Tissoirese6f28132016-07-13 18:06:01 +0200876 remote_data.remote[i].serial = serial;
877 remote_data.remote[i].connected = connected;
Aaron Skomra72b236d2015-08-20 16:05:17 -0700878 }
879
Benjamin Tissoires83e6b402016-07-13 18:06:02 +0200880 spin_lock_irqsave(&remote->remote_lock, flags);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +0200881
Benjamin Tissoires83e6b402016-07-13 18:06:02 +0200882 ret = kfifo_in(&remote->remote_fifo, &remote_data, sizeof(remote_data));
Benjamin Tissoirese6f28132016-07-13 18:06:01 +0200883 if (ret != sizeof(remote_data)) {
Benjamin Tissoires83e6b402016-07-13 18:06:02 +0200884 spin_unlock_irqrestore(&remote->remote_lock, flags);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +0200885 hid_err(wacom->hdev, "Can't queue Remote status event.\n");
886 return;
887 }
888
Benjamin Tissoires83e6b402016-07-13 18:06:02 +0200889 spin_unlock_irqrestore(&remote->remote_lock, flags);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +0200890
891 wacom_schedule_work(wacom_wac, WACOM_WORKER_REMOTE);
Aaron Skomra72b236d2015-08-20 16:05:17 -0700892}
893
Ping Cheng1924e052016-08-09 14:38:56 -0700894static inline bool report_touch_events(struct wacom_wac *wacom)
895{
896 return (touch_arbitration ? !wacom->shared->stylus_in_proximity : 1);
897}
898
899static inline bool delay_pen_events(struct wacom_wac *wacom)
900{
901 return (wacom->shared->touch_down && touch_arbitration);
Ping Cheng3bea7332006-07-13 18:01:36 -0700902}
903
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800904static int wacom_intuos_general(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700905{
Jason Childse33da8a2010-02-17 22:38:31 -0800906 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700907 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700908 struct input_dev *input = wacom->pen_input;
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800909 int idx = (features->type == INTUOS) ? (data[1] & 0x01) : 0;
Jason Gereckea8a09c82015-11-30 17:13:49 -0800910 unsigned char type = (data[1] >> 1) & 0x0F;
Jason Gerecke5f33f432015-11-30 17:13:51 -0800911 unsigned int x, y, distance, t;
Ping Cheng3bea7332006-07-13 18:01:36 -0700912
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800913 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_CINTIQ &&
914 data[0] != WACOM_REPORT_INTUOS_PEN)
915 return 0;
916
Ping Cheng1924e052016-08-09 14:38:56 -0700917 if (delay_pen_events(wacom))
Ping Chengc1b03f52016-01-08 17:16:06 -0800918 return 1;
919
Ping Cheng599b0822016-01-08 17:14:54 -0800920 /* don't report events if we don't know the tool ID */
921 if (!wacom->id[idx]) {
922 /* but reschedule a read of the current tool */
923 wacom_intuos_schedule_prox_event(wacom);
924 return 1;
925 }
926
Ping Cheng4750f5f2016-01-08 17:15:48 -0800927 /*
928 * don't report events for invalid data
929 */
930 /* older I4 styli don't work with new Cintiqs */
Jason Gerecke82527da2016-10-19 18:03:47 -0700931 if ((!((wacom->id[idx] >> 16) & 0x01) &&
Ping Cheng4750f5f2016-01-08 17:15:48 -0800932 (features->type == WACOM_21UX2)) ||
933 /* Only large Intuos support Lense Cursor */
934 (wacom->tool[idx] == BTN_TOOL_LENS &&
935 (features->type == INTUOS3 ||
936 features->type == INTUOS3S ||
937 features->type == INTUOS4 ||
938 features->type == INTUOS4S ||
939 features->type == INTUOS5 ||
940 features->type == INTUOS5S ||
941 features->type == INTUOSPM ||
942 features->type == INTUOSPS)) ||
943 /* Cintiq doesn't send data when RDY bit isn't set */
944 (features->type == CINTIQ && !(data[1] & 0x40)))
945 return 1;
946
Jason Gerecke5f33f432015-11-30 17:13:51 -0800947 x = (be16_to_cpup((__be16 *)&data[2]) << 1) | ((data[9] >> 1) & 1);
948 y = (be16_to_cpup((__be16 *)&data[4]) << 1) | (data[9] & 1);
949 distance = data[9] >> 2;
950 if (features->type < INTUOS3S) {
951 x >>= 1;
952 y >>= 1;
953 distance >>= 1;
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800954 }
Jason Gerecke5f33f432015-11-30 17:13:51 -0800955 input_report_abs(input, ABS_X, x);
956 input_report_abs(input, ABS_Y, y);
957 input_report_abs(input, ABS_DISTANCE, distance);
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800958
Jason Gereckea8a09c82015-11-30 17:13:49 -0800959 switch (type) {
960 case 0x00:
961 case 0x01:
962 case 0x02:
963 case 0x03:
964 /* general pen packet */
Jason Gerecke5f33f432015-11-30 17:13:51 -0800965 t = (data[6] << 3) | ((data[7] & 0xC0) >> 5) | (data[1] & 1);
966 if (features->pressure_max < 2047)
967 t >>= 1;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700968 input_report_abs(input, ABS_PRESSURE, t);
Ping Chengeda01da2015-09-23 13:51:15 -0700969 if (features->type != INTUOSHT2) {
970 input_report_abs(input, ABS_TILT_X,
Jason Gereckeec5fc1c2014-11-18 16:50:08 -0800971 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
Ping Chengeda01da2015-09-23 13:51:15 -0700972 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
973 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700974 input_report_key(input, BTN_STYLUS, data[1] & 2);
975 input_report_key(input, BTN_STYLUS2, data[1] & 4);
976 input_report_key(input, BTN_TOUCH, t > 10);
Jason Gereckea8a09c82015-11-30 17:13:49 -0800977 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700978
Jason Gereckea8a09c82015-11-30 17:13:49 -0800979 case 0x0a:
Jason Gereckea8a09c82015-11-30 17:13:49 -0800980 /* airbrush second packet */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700981 input_report_abs(input, ABS_WHEEL,
Ping Cheng3bea7332006-07-13 18:01:36 -0700982 (data[6] << 2) | ((data[7] >> 6) & 3));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700983 input_report_abs(input, ABS_TILT_X,
Jason Gereckeec5fc1c2014-11-18 16:50:08 -0800984 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
985 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
Jason Gereckea8a09c82015-11-30 17:13:49 -0800986 break;
987
988 case 0x05:
Jason Gereckea8a09c82015-11-30 17:13:49 -0800989 /* Rotation packet */
990 if (features->type >= INTUOS3S) {
991 /* I3 marker pen rotation */
992 t = (data[6] << 3) | ((data[7] >> 5) & 7);
993 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
994 ((t-1) / 2 + 450)) : (450 - t / 2) ;
995 input_report_abs(input, ABS_Z, t);
996 } else {
Jason Gerecke571f5722015-11-30 17:13:50 -0800997 /* 4D mouse 2nd packet */
Jason Gereckea8a09c82015-11-30 17:13:49 -0800998 t = (data[6] << 3) | ((data[7] >> 5) & 7);
999 input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
1000 ((t - 1) / 2) : -t / 2);
1001 }
1002 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07001003
Jason Gereckea8a09c82015-11-30 17:13:49 -08001004 case 0x04:
Jason Gerecke571f5722015-11-30 17:13:50 -08001005 /* 4D mouse 1st packet */
1006 input_report_key(input, BTN_LEFT, data[8] & 0x01);
1007 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
1008 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
1009
1010 input_report_key(input, BTN_SIDE, data[8] & 0x20);
1011 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
1012 t = (data[6] << 2) | ((data[7] >> 6) & 3);
1013 input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
1014 break;
1015
Jason Gereckea8a09c82015-11-30 17:13:49 -08001016 case 0x06:
Jason Gerecke571f5722015-11-30 17:13:50 -08001017 /* I4 mouse */
1018 input_report_key(input, BTN_LEFT, data[6] & 0x01);
1019 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
1020 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
1021 input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
1022 - ((data[7] & 0x40) >> 6));
1023 input_report_key(input, BTN_SIDE, data[6] & 0x08);
1024 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
1025
1026 input_report_abs(input, ABS_TILT_X,
1027 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
1028 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
1029 break;
1030
Jason Gereckea8a09c82015-11-30 17:13:49 -08001031 case 0x08:
Jason Gerecke571f5722015-11-30 17:13:50 -08001032 if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
1033 /* 2D mouse packet */
1034 input_report_key(input, BTN_LEFT, data[8] & 0x04);
1035 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
1036 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
1037 input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
1038 - ((data[8] & 0x02) >> 1));
Ping Cheng3bea7332006-07-13 18:01:36 -07001039
Jason Gerecke571f5722015-11-30 17:13:50 -08001040 /* I3 2D mouse side buttons */
1041 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
1042 input_report_key(input, BTN_SIDE, data[8] & 0x40);
1043 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
Ping Cheng3bea7332006-07-13 18:01:36 -07001044 }
Jason Gereckea8a09c82015-11-30 17:13:49 -08001045 }
Jason Gerecke571f5722015-11-30 17:13:50 -08001046 else if (wacom->tool[idx] == BTN_TOOL_LENS) {
Ping Cheng3bea7332006-07-13 18:01:36 -07001047 /* Lens cursor packets */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001048 input_report_key(input, BTN_LEFT, data[8] & 0x01);
1049 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
1050 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
1051 input_report_key(input, BTN_SIDE, data[8] & 0x10);
1052 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
Ping Cheng3bea7332006-07-13 18:01:36 -07001053 }
Jason Gereckea8a09c82015-11-30 17:13:49 -08001054 break;
1055
Jason Gerecke571f5722015-11-30 17:13:50 -08001056 case 0x07:
Jason Gereckea8a09c82015-11-30 17:13:49 -08001057 case 0x09:
Jason Gerecke571f5722015-11-30 17:13:50 -08001058 case 0x0b:
Jason Gereckea8a09c82015-11-30 17:13:49 -08001059 case 0x0c:
1060 case 0x0d:
1061 case 0x0e:
1062 case 0x0f:
1063 /* unhandled */
1064 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07001065 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001066
Jason Gerecke82527da2016-10-19 18:03:47 -07001067 input_report_abs(input, ABS_MISC,
1068 wacom_intuos_id_mangle(wacom->id[idx])); /* report tool id */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07001069 input_report_key(input, wacom->tool[idx], 1);
1070 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Chengb3bd7ef2015-01-09 11:05:13 -08001071 wacom->reporting_data = true;
Jason Gerecke16e0a6a2015-11-30 17:13:48 -08001072 return 2;
Ping Cheng3bea7332006-07-13 18:01:36 -07001073}
1074
1075static int wacom_intuos_irq(struct wacom_wac *wacom)
1076{
Ping Cheng3bea7332006-07-13 18:01:36 -07001077 unsigned char *data = wacom->data;
1078 struct input_dev *input = wacom->pen_input;
Jason Gerecke16e0a6a2015-11-30 17:13:48 -08001079 int result;
Ping Cheng3bea7332006-07-13 18:01:36 -07001080
1081 if (data[0] != WACOM_REPORT_PENABLED &&
Jason Gerecke06109992015-11-30 17:13:52 -08001082 data[0] != WACOM_REPORT_INTUOS_ID1 &&
1083 data[0] != WACOM_REPORT_INTUOS_ID2 &&
Ping Cheng3bea7332006-07-13 18:01:36 -07001084 data[0] != WACOM_REPORT_INTUOSPAD &&
1085 data[0] != WACOM_REPORT_INTUOS_PEN &&
1086 data[0] != WACOM_REPORT_CINTIQ &&
1087 data[0] != WACOM_REPORT_CINTIQPAD &&
1088 data[0] != WACOM_REPORT_INTUOS5PAD) {
1089 dev_dbg(input->dev.parent,
1090 "%s: received unknown report #%d\n", __func__, data[0]);
1091 return 0;
1092 }
1093
Jason Gerecke16e0a6a2015-11-30 17:13:48 -08001094 /* process pad events */
1095 result = wacom_intuos_pad(wacom);
1096 if (result)
1097 return result;
Ping Cheng3bea7332006-07-13 18:01:36 -07001098
1099 /* process in/out prox events */
1100 result = wacom_intuos_inout(wacom);
1101 if (result)
Jason Gerecke16e0a6a2015-11-30 17:13:48 -08001102 return result - 1;
Ping Cheng3bea7332006-07-13 18:01:36 -07001103
1104 /* process general packets */
Jason Gerecke16e0a6a2015-11-30 17:13:48 -08001105 result = wacom_intuos_general(wacom);
1106 if (result)
1107 return result - 1;
Ping Cheng3bea7332006-07-13 18:01:36 -07001108
Jason Gerecke16e0a6a2015-11-30 17:13:48 -08001109 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -07001110}
1111
Jason Gereckeb1e42792012-10-21 00:38:04 -07001112static int int_dist(int x1, int y1, int x2, int y2)
1113{
1114 int x = x2 - x1;
1115 int y = y2 - y1;
1116
1117 return int_sqrt(x*x + y*y);
1118}
1119
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001120static void wacom_intuos_bt_process_data(struct wacom_wac *wacom,
1121 unsigned char *data)
1122{
1123 memcpy(wacom->data, data, 10);
1124 wacom_intuos_irq(wacom);
1125
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001126 input_sync(wacom->pen_input);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001127 if (wacom->pad_input)
1128 input_sync(wacom->pad_input);
1129}
1130
1131static int wacom_intuos_bt_irq(struct wacom_wac *wacom, size_t len)
1132{
1133 unsigned char data[WACOM_PKGLEN_MAX];
1134 int i = 1;
1135 unsigned power_raw, battery_capacity, bat_charging, ps_connected;
1136
1137 memcpy(data, wacom->data, len);
1138
1139 switch (data[0]) {
1140 case 0x04:
1141 wacom_intuos_bt_process_data(wacom, data + i);
1142 i += 10;
1143 /* fall through */
1144 case 0x03:
1145 wacom_intuos_bt_process_data(wacom, data + i);
1146 i += 10;
1147 wacom_intuos_bt_process_data(wacom, data + i);
1148 i += 10;
1149 power_raw = data[i];
1150 bat_charging = (power_raw & 0x08) ? 1 : 0;
1151 ps_connected = (power_raw & 0x10) ? 1 : 0;
1152 battery_capacity = batcap_i4[power_raw & 0x07];
Jason Gerecke953f2c52015-03-06 11:47:39 -08001153 wacom_notify_battery(wacom, battery_capacity, bat_charging,
Jason Gerecke71fa6412015-03-11 10:25:41 -07001154 battery_capacity || bat_charging,
Jason Gerecke953f2c52015-03-06 11:47:39 -08001155 ps_connected);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001156 break;
1157 default:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001158 dev_dbg(wacom->pen_input->dev.parent,
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001159 "Unknown report: %d,%d size:%zu\n",
1160 data[0], data[1], len);
1161 return 0;
1162 }
1163 return 0;
1164}
1165
Ping Cheng7d059ed2015-03-20 14:57:21 -07001166static int wacom_wac_finger_count_touches(struct wacom_wac *wacom)
1167{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001168 struct input_dev *input = wacom->touch_input;
Ping Cheng7d059ed2015-03-20 14:57:21 -07001169 unsigned touch_max = wacom->features.touch_max;
1170 int count = 0;
1171 int i;
1172
Ping Cheng26ba61f2015-05-19 17:42:02 -07001173 if (!touch_max)
1174 return 0;
1175
Jason Gerecke71b5c472015-04-15 17:22:32 -07001176 if (touch_max == 1)
1177 return test_bit(BTN_TOUCH, input->key) &&
Ping Cheng1924e052016-08-09 14:38:56 -07001178 report_touch_events(wacom);
Ping Cheng7d059ed2015-03-20 14:57:21 -07001179
1180 for (i = 0; i < input->mt->num_slots; i++) {
1181 struct input_mt_slot *ps = &input->mt->slots[i];
1182 int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
1183 if (id >= 0)
1184 count++;
1185 }
1186
1187 return count;
1188}
1189
Jason Gereckeb1e42792012-10-21 00:38:04 -07001190static int wacom_24hdt_irq(struct wacom_wac *wacom)
1191{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001192 struct input_dev *input = wacom->touch_input;
Jason Gerecke74b63412014-04-19 13:50:22 -07001193 unsigned char *data = wacom->data;
Jason Gereckeb1e42792012-10-21 00:38:04 -07001194 int i;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001195 int current_num_contacts = data[61];
Jason Gereckeb1e42792012-10-21 00:38:04 -07001196 int contacts_to_send = 0;
Ping Cheng500d4162015-01-27 13:30:03 -08001197 int num_contacts_left = 4; /* maximum contacts per packet */
1198 int byte_per_packet = WACOM_BYTES_PER_24HDT_PACKET;
1199 int y_offset = 2;
1200
1201 if (wacom->features.type == WACOM_27QHDT) {
1202 current_num_contacts = data[63];
1203 num_contacts_left = 10;
1204 byte_per_packet = WACOM_BYTES_PER_QHDTHID_PACKET;
1205 y_offset = 0;
Ping Cheng500d4162015-01-27 13:30:03 -08001206 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001207
1208 /*
1209 * First packet resets the counter since only the first
1210 * packet in series will have non-zero current_num_contacts.
1211 */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001212 if (current_num_contacts)
Jason Gereckeb1e42792012-10-21 00:38:04 -07001213 wacom->num_contacts_left = current_num_contacts;
1214
Ping Cheng500d4162015-01-27 13:30:03 -08001215 contacts_to_send = min(num_contacts_left, wacom->num_contacts_left);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001216
1217 for (i = 0; i < contacts_to_send; i++) {
Ping Cheng500d4162015-01-27 13:30:03 -08001218 int offset = (byte_per_packet * i) + 1;
Ping Cheng1924e052016-08-09 14:38:56 -07001219 bool touch = (data[offset] & 0x1) && report_touch_events(wacom);
Ping Cheng02295e62013-01-04 23:56:00 -08001220 int slot = input_mt_get_slot_by_key(input, data[offset + 1]);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001221
1222 if (slot < 0)
1223 continue;
1224 input_mt_slot(input, slot);
1225 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1226
1227 if (touch) {
Jason Gereckeedc8e20a2014-05-14 16:53:30 -07001228 int t_x = get_unaligned_le16(&data[offset + 2]);
Ping Cheng500d4162015-01-27 13:30:03 -08001229 int t_y = get_unaligned_le16(&data[offset + 4 + y_offset]);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001230
1231 input_report_abs(input, ABS_MT_POSITION_X, t_x);
1232 input_report_abs(input, ABS_MT_POSITION_Y, t_y);
Ping Cheng500d4162015-01-27 13:30:03 -08001233
1234 if (wacom->features.type != WACOM_27QHDT) {
1235 int c_x = get_unaligned_le16(&data[offset + 4]);
1236 int c_y = get_unaligned_le16(&data[offset + 8]);
1237 int w = get_unaligned_le16(&data[offset + 10]);
1238 int h = get_unaligned_le16(&data[offset + 12]);
1239
1240 input_report_abs(input, ABS_MT_TOUCH_MAJOR, min(w,h));
1241 input_report_abs(input, ABS_MT_WIDTH_MAJOR,
1242 min(w, h) + int_dist(t_x, t_y, c_x, c_y));
1243 input_report_abs(input, ABS_MT_WIDTH_MINOR, min(w, h));
1244 input_report_abs(input, ABS_MT_ORIENTATION, w > h);
1245 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001246 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001247 }
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001248 input_mt_sync_frame(input);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001249
1250 wacom->num_contacts_left -= contacts_to_send;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001251 if (wacom->num_contacts_left <= 0) {
Jason Gereckeb1e42792012-10-21 00:38:04 -07001252 wacom->num_contacts_left = 0;
Ping Cheng7d059ed2015-03-20 14:57:21 -07001253 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Ping Chenge0d41fd2015-02-20 14:27:30 -08001254 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001255 return 1;
1256}
1257
Ping Cheng19635182012-04-29 21:09:18 -07001258static int wacom_mt_touch(struct wacom_wac *wacom)
1259{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001260 struct input_dev *input = wacom->touch_input;
Jason Gerecke74b63412014-04-19 13:50:22 -07001261 unsigned char *data = wacom->data;
Ping Cheng19635182012-04-29 21:09:18 -07001262 int i;
1263 int current_num_contacts = data[2];
1264 int contacts_to_send = 0;
Ping Cheng6afdc282012-11-03 12:16:15 -07001265 int x_offset = 0;
1266
1267 /* MTTPC does not support Height and Width */
Jason Gerecked51ddb22014-05-14 17:14:29 -07001268 if (wacom->features.type == MTTPC || wacom->features.type == MTTPC_B)
Ping Cheng6afdc282012-11-03 12:16:15 -07001269 x_offset = -4;
Ping Cheng19635182012-04-29 21:09:18 -07001270
1271 /*
1272 * First packet resets the counter since only the first
1273 * packet in series will have non-zero current_num_contacts.
1274 */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001275 if (current_num_contacts)
Ping Cheng19635182012-04-29 21:09:18 -07001276 wacom->num_contacts_left = current_num_contacts;
1277
1278 /* There are at most 5 contacts per packet */
1279 contacts_to_send = min(5, wacom->num_contacts_left);
1280
1281 for (i = 0; i < contacts_to_send; i++) {
Ping Cheng6afdc282012-11-03 12:16:15 -07001282 int offset = (WACOM_BYTES_PER_MT_PACKET + x_offset) * i + 3;
Ping Cheng1924e052016-08-09 14:38:56 -07001283 bool touch = (data[offset] & 0x1) && report_touch_events(wacom);
Jason Gereckeedc8e20a2014-05-14 16:53:30 -07001284 int id = get_unaligned_le16(&data[offset + 1]);
Ping Cheng02295e62013-01-04 23:56:00 -08001285 int slot = input_mt_get_slot_by_key(input, id);
Ping Cheng19635182012-04-29 21:09:18 -07001286
1287 if (slot < 0)
1288 continue;
1289
1290 input_mt_slot(input, slot);
1291 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1292 if (touch) {
Jason Gereckeedc8e20a2014-05-14 16:53:30 -07001293 int x = get_unaligned_le16(&data[offset + x_offset + 7]);
1294 int y = get_unaligned_le16(&data[offset + x_offset + 9]);
Ping Cheng19635182012-04-29 21:09:18 -07001295 input_report_abs(input, ABS_MT_POSITION_X, x);
1296 input_report_abs(input, ABS_MT_POSITION_Y, y);
1297 }
Ping Cheng19635182012-04-29 21:09:18 -07001298 }
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001299 input_mt_sync_frame(input);
Ping Cheng19635182012-04-29 21:09:18 -07001300
1301 wacom->num_contacts_left -= contacts_to_send;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001302 if (wacom->num_contacts_left <= 0) {
Ping Cheng19635182012-04-29 21:09:18 -07001303 wacom->num_contacts_left = 0;
Ping Cheng7d059ed2015-03-20 14:57:21 -07001304 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Ping Chenge0d41fd2015-02-20 14:27:30 -08001305 }
Ping Cheng19635182012-04-29 21:09:18 -07001306 return 1;
1307}
1308
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001309static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
1310{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001311 struct input_dev *input = wacom->touch_input;
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001312 unsigned char *data = wacom->data;
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001313 int i;
1314
1315 for (i = 0; i < 2; i++) {
1316 int p = data[1] & (1 << i);
Ping Cheng1924e052016-08-09 14:38:56 -07001317 bool touch = p && report_touch_events(wacom);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001318
1319 input_mt_slot(input, i);
1320 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1321 if (touch) {
1322 int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
1323 int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
1324
1325 input_report_abs(input, ABS_MT_POSITION_X, x);
1326 input_report_abs(input, ABS_MT_POSITION_Y, y);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001327 }
1328 }
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001329 input_mt_sync_frame(input);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001330
1331 /* keep touch state for pen event */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001332 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001333
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001334 return 1;
1335}
1336
Ping Chenga43c7c52011-03-12 20:34:42 -08001337static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
Ping Chengec67bbe2009-12-15 00:35:24 -08001338{
Jason Gerecke74b63412014-04-19 13:50:22 -07001339 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001340 struct input_dev *input = wacom->touch_input;
Ping Cheng1924e052016-08-09 14:38:56 -07001341 bool prox = report_touch_events(wacom);
Ping Chenga43c7c52011-03-12 20:34:42 -08001342 int x = 0, y = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -08001343
Ping Cheng19635182012-04-29 21:09:18 -07001344 if (wacom->features.touch_max > 1 || len > WACOM_PKGLEN_TPC2FG)
1345 return 0;
1346
Ping Chenge0d41fd2015-02-20 14:27:30 -08001347 if (len == WACOM_PKGLEN_TPC1FG) {
1348 prox = prox && (data[0] & 0x01);
1349 x = get_unaligned_le16(&data[1]);
1350 y = get_unaligned_le16(&data[3]);
1351 } else if (len == WACOM_PKGLEN_TPC1FG_B) {
1352 prox = prox && (data[2] & 0x01);
1353 x = get_unaligned_le16(&data[3]);
1354 y = get_unaligned_le16(&data[5]);
1355 } else {
1356 prox = prox && (data[1] & 0x01);
1357 x = le16_to_cpup((__le16 *)&data[2]);
1358 y = le16_to_cpup((__le16 *)&data[4]);
1359 }
Ping Chenga43c7c52011-03-12 20:34:42 -08001360
1361 if (prox) {
1362 input_report_abs(input, ABS_X, x);
1363 input_report_abs(input, ABS_Y, y);
Ping Chengec67bbe2009-12-15 00:35:24 -08001364 }
Ping Chenga43c7c52011-03-12 20:34:42 -08001365 input_report_key(input, BTN_TOUCH, prox);
1366
1367 /* keep touch state for pen events */
1368 wacom->shared->touch_down = prox;
1369
1370 return 1;
Ping Chengec67bbe2009-12-15 00:35:24 -08001371}
1372
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001373static int wacom_tpc_pen(struct wacom_wac *wacom)
Ping Cheng545f4e92008-11-24 11:44:27 -05001374{
Jason Gerecke74b63412014-04-19 13:50:22 -07001375 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001376 struct input_dev *input = wacom->pen_input;
Ping Chenga43c7c52011-03-12 20:34:42 -08001377 bool prox = data[1] & 0x20;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001378
Ping Chenga43c7c52011-03-12 20:34:42 -08001379 if (!wacom->shared->stylus_in_proximity) /* first in prox */
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001380 /* Going into proximity select tool */
1381 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001382
Ping Chenga43c7c52011-03-12 20:34:42 -08001383 /* keep pen state for touch events */
1384 wacom->shared->stylus_in_proximity = prox;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001385
Ping Cheng1924e052016-08-09 14:38:56 -07001386 /* send pen events only when touch is up or forced out
1387 * or touch arbitration is off
1388 */
1389 if (!delay_pen_events(wacom)) {
Ping Chenga43c7c52011-03-12 20:34:42 -08001390 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
1391 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
1392 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
1393 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Jason Gerecke0b335ca2014-07-24 13:15:31 -07001394 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x07) << 8) | data[6]);
Ping Chenga43c7c52011-03-12 20:34:42 -08001395 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
1396 input_report_key(input, wacom->tool[0], prox);
1397 return 1;
1398 }
1399
1400 return 0;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001401}
1402
1403static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
1404{
Jason Gerecke74b63412014-04-19 13:50:22 -07001405 unsigned char *data = wacom->data;
Ping Cheng545f4e92008-11-24 11:44:27 -05001406
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001407 if (wacom->pen_input)
1408 dev_dbg(wacom->pen_input->dev.parent,
1409 "%s: received report #%d\n", __func__, data[0]);
1410 else if (wacom->touch_input)
1411 dev_dbg(wacom->touch_input->dev.parent,
1412 "%s: received report #%d\n", __func__, data[0]);
Ping Cheng545f4e92008-11-24 11:44:27 -05001413
Ping Cheng31175a82012-01-31 00:07:33 -08001414 switch (len) {
1415 case WACOM_PKGLEN_TPC1FG:
Ping Cheng19635182012-04-29 21:09:18 -07001416 return wacom_tpc_single_touch(wacom, len);
Ping Cheng31175a82012-01-31 00:07:33 -08001417
1418 case WACOM_PKGLEN_TPC2FG:
Ping Cheng19635182012-04-29 21:09:18 -07001419 return wacom_tpc_mt_touch(wacom);
Ping Cheng31175a82012-01-31 00:07:33 -08001420
Jason Gerecked51ddb22014-05-14 17:14:29 -07001421 case WACOM_PKGLEN_PENABLED:
1422 return wacom_tpc_pen(wacom);
1423
Ping Cheng31175a82012-01-31 00:07:33 -08001424 default:
1425 switch (data[0]) {
1426 case WACOM_REPORT_TPC1FG:
1427 case WACOM_REPORT_TPCHID:
1428 case WACOM_REPORT_TPCST:
Ping Chengac173832012-06-12 00:15:06 -07001429 case WACOM_REPORT_TPC1FGE:
Ping Cheng31175a82012-01-31 00:07:33 -08001430 return wacom_tpc_single_touch(wacom, len);
1431
Ping Cheng19635182012-04-29 21:09:18 -07001432 case WACOM_REPORT_TPCMT:
Jason Gerecked51ddb22014-05-14 17:14:29 -07001433 case WACOM_REPORT_TPCMT2:
Ping Cheng19635182012-04-29 21:09:18 -07001434 return wacom_mt_touch(wacom);
1435
Ping Cheng31175a82012-01-31 00:07:33 -08001436 case WACOM_REPORT_PENABLED:
1437 return wacom_tpc_pen(wacom);
1438 }
1439 }
Ping Cheng545f4e92008-11-24 11:44:27 -05001440
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001441 return 0;
Ping Cheng545f4e92008-11-24 11:44:27 -05001442}
1443
Jason Gereckec9c09582016-10-19 18:03:43 -07001444static int wacom_equivalent_usage(int usage)
1445{
1446 if ((usage & HID_USAGE_PAGE) == WACOM_HID_UP_WACOMDIGITIZER) {
1447 int subpage = (usage & 0xFF00) << 8;
1448 int subusage = (usage & 0xFF);
1449
1450 if (subpage == WACOM_HID_SP_DIGITIZER ||
Jason Gereckeb5c921e2016-10-19 18:03:44 -07001451 subpage == WACOM_HID_SP_DIGITIZERINFO ||
Jason Gerecke61ce3462016-10-19 18:03:46 -07001452 usage == WACOM_HID_WD_SENSE ||
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001453 usage == WACOM_HID_WD_SERIALHI ||
1454 usage == WACOM_HID_WD_TOOLTYPE ||
Jason Gereckeb5c921e2016-10-19 18:03:44 -07001455 usage == WACOM_HID_WD_DISTANCE) {
Jason Gereckec9c09582016-10-19 18:03:43 -07001456 return usage;
1457 }
1458
1459 if (subpage == HID_UP_UNDEFINED)
1460 subpage = HID_UP_DIGITIZER;
1461
1462 return subpage | subusage;
1463 }
1464
1465 return usage;
1466}
1467
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001468static void wacom_map_usage(struct input_dev *input, struct hid_usage *usage,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001469 struct hid_field *field, __u8 type, __u16 code, int fuzz)
1470{
Jason Gerecke345857b2016-10-19 18:03:50 -07001471 struct wacom *wacom = input_get_drvdata(input);
1472 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1473 struct wacom_features *features = &wacom_wac->features;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001474 int fmin = field->logical_minimum;
1475 int fmax = field->logical_maximum;
Jason Gereckec9c09582016-10-19 18:03:43 -07001476 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
Jason Gerecke50066a02016-10-19 18:03:42 -07001477 int resolution_code = code;
1478
Jason Gereckec9c09582016-10-19 18:03:43 -07001479 if (equivalent_usage == HID_DG_TWIST) {
Jason Gerecke50066a02016-10-19 18:03:42 -07001480 resolution_code = ABS_RZ;
1481 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001482
Jason Gerecke345857b2016-10-19 18:03:50 -07001483 if (equivalent_usage == HID_GD_X) {
1484 fmin += features->offset_left;
1485 fmax -= features->offset_right;
1486 }
1487 if (equivalent_usage == HID_GD_Y) {
1488 fmin += features->offset_top;
1489 fmax -= features->offset_bottom;
1490 }
1491
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001492 usage->type = type;
1493 usage->code = code;
1494
1495 set_bit(type, input->evbit);
1496
1497 switch (type) {
1498 case EV_ABS:
1499 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
1500 input_abs_set_res(input, code,
Jason Gerecke50066a02016-10-19 18:03:42 -07001501 hidinput_calc_abs_res(field, resolution_code));
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001502 break;
1503 case EV_KEY:
1504 input_set_capability(input, EV_KEY, code);
1505 break;
1506 case EV_MSC:
1507 input_set_capability(input, EV_MSC, code);
1508 break;
1509 }
1510}
1511
1512static void wacom_wac_pen_usage_mapping(struct hid_device *hdev,
1513 struct hid_field *field, struct hid_usage *usage)
1514{
1515 struct wacom *wacom = hid_get_drvdata(hdev);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001516 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke61ce3462016-10-19 18:03:46 -07001517 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001518 struct input_dev *input = wacom_wac->pen_input;
Jason Gereckec9c09582016-10-19 18:03:43 -07001519 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001520
Jason Gereckec9c09582016-10-19 18:03:43 -07001521 switch (equivalent_usage) {
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001522 case HID_GD_X:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001523 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001524 break;
1525 case HID_GD_Y:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001526 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001527 break;
Jason Gereckeb5c921e2016-10-19 18:03:44 -07001528 case WACOM_HID_WD_DISTANCE:
Jason Gerecke50066a02016-10-19 18:03:42 -07001529 case HID_GD_Z:
1530 wacom_map_usage(input, usage, field, EV_ABS, ABS_DISTANCE, 0);
1531 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001532 case HID_DG_TIPPRESSURE:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001533 wacom_map_usage(input, usage, field, EV_ABS, ABS_PRESSURE, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001534 break;
1535 case HID_DG_INRANGE:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001536 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001537 break;
1538 case HID_DG_INVERT:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001539 wacom_map_usage(input, usage, field, EV_KEY,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001540 BTN_TOOL_RUBBER, 0);
1541 break;
Jason Gerecke50066a02016-10-19 18:03:42 -07001542 case HID_DG_TILT_X:
1543 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_X, 0);
1544 break;
1545 case HID_DG_TILT_Y:
1546 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_Y, 0);
1547 break;
1548 case HID_DG_TWIST:
1549 wacom_map_usage(input, usage, field, EV_ABS, ABS_Z, 0);
1550 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001551 case HID_DG_ERASER:
1552 case HID_DG_TIPSWITCH:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001553 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001554 break;
1555 case HID_DG_BARRELSWITCH:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001556 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001557 break;
1558 case HID_DG_BARRELSWITCH2:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001559 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS2, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001560 break;
1561 case HID_DG_TOOLSERIALNUMBER:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001562 wacom_map_usage(input, usage, field, EV_MSC, MSC_SERIAL, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001563 break;
Jason Gerecke61ce3462016-10-19 18:03:46 -07001564 case WACOM_HID_WD_SENSE:
1565 features->quirks |= WACOM_QUIRK_SENSE;
1566 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
1567 break;
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001568 case WACOM_HID_WD_SERIALHI:
1569 wacom_map_usage(input, usage, field, EV_ABS, ABS_MISC, 0);
1570 set_bit(EV_KEY, input->evbit);
1571 input_set_capability(input, EV_KEY, BTN_TOOL_PEN);
1572 input_set_capability(input, EV_KEY, BTN_TOOL_RUBBER);
1573 input_set_capability(input, EV_KEY, BTN_TOOL_BRUSH);
1574 input_set_capability(input, EV_KEY, BTN_TOOL_PENCIL);
1575 input_set_capability(input, EV_KEY, BTN_TOOL_AIRBRUSH);
1576 input_set_capability(input, EV_KEY, BTN_TOOL_MOUSE);
1577 input_set_capability(input, EV_KEY, BTN_TOOL_LENS);
1578 break;
Jason Gerecke929d6d52016-10-19 18:03:45 -07001579 case WACOM_HID_WD_FINGERWHEEL:
1580 wacom_map_usage(input, usage, field, EV_ABS, ABS_WHEEL, 0);
1581 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001582 }
1583}
1584
1585static int wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field,
1586 struct hid_usage *usage, __s32 value)
1587{
1588 struct wacom *wacom = hid_get_drvdata(hdev);
1589 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke61ce3462016-10-19 18:03:46 -07001590 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001591 struct input_dev *input = wacom_wac->pen_input;
Jason Gereckec9c09582016-10-19 18:03:43 -07001592 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001593
Jason Gereckec9c09582016-10-19 18:03:43 -07001594 switch (equivalent_usage) {
Jason Gerecke50066a02016-10-19 18:03:42 -07001595 case HID_GD_Z:
1596 /*
1597 * HID_GD_Z "should increase as the control's position is
1598 * moved from high to low", while ABS_DISTANCE instead
1599 * increases in value as the tool moves from low to high.
1600 */
1601 value = field->logical_maximum - value;
1602 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001603 case HID_DG_INRANGE:
1604 wacom_wac->hid_data.inrange_state = value;
Jason Gerecke61ce3462016-10-19 18:03:46 -07001605 if (!(features->quirks & WACOM_QUIRK_SENSE))
1606 wacom_wac->hid_data.sense_state = value;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001607 return 0;
1608 case HID_DG_INVERT:
1609 wacom_wac->hid_data.invert_state = value;
1610 return 0;
1611 case HID_DG_ERASER:
1612 case HID_DG_TIPSWITCH:
1613 wacom_wac->hid_data.tipswitch |= value;
1614 return 0;
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001615 case HID_DG_TOOLSERIALNUMBER:
1616 wacom_wac->serial[0] = (wacom_wac->serial[0] & ~0xFFFFFFFF);
1617 wacom_wac->serial[0] |= value;
1618 return 0;
Jason Gerecke61ce3462016-10-19 18:03:46 -07001619 case WACOM_HID_WD_SENSE:
1620 wacom_wac->hid_data.sense_state = value;
1621 return 0;
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001622 case WACOM_HID_WD_SERIALHI:
1623 wacom_wac->serial[0] = (wacom_wac->serial[0] & 0xFFFFFFFF);
1624 wacom_wac->serial[0] |= ((__u64)value) << 32;
1625 /*
1626 * Non-USI EMR devices may contain additional tool type
1627 * information here. See WACOM_HID_WD_TOOLTYPE case for
1628 * more details.
1629 */
1630 if (value >> 20 == 1) {
1631 wacom_wac->id[0] |= value & 0xFFFFF;
1632 }
1633 return 0;
1634 case WACOM_HID_WD_TOOLTYPE:
1635 /*
1636 * Some devices (MobileStudio Pro, and possibly later
1637 * devices as well) do not return the complete tool
1638 * type in their WACOM_HID_WD_TOOLTYPE usage. Use a
1639 * bitwise OR so the complete value can be built
1640 * up over time :(
1641 */
1642 wacom_wac->id[0] |= value;
1643 return 0;
Jason Gerecke345857b2016-10-19 18:03:50 -07001644 case WACOM_HID_WD_OFFSETLEFT:
1645 if (features->offset_left && value != features->offset_left)
1646 hid_warn(hdev, "%s: overriding exising left offset "
1647 "%d -> %d\n", __func__, value,
1648 features->offset_left);
1649 features->offset_left = value;
1650 return 0;
1651 case WACOM_HID_WD_OFFSETRIGHT:
1652 if (features->offset_right && value != features->offset_right)
1653 hid_warn(hdev, "%s: overriding exising right offset "
1654 "%d -> %d\n", __func__, value,
1655 features->offset_right);
1656 features->offset_right = value;
1657 return 0;
1658 case WACOM_HID_WD_OFFSETTOP:
1659 if (features->offset_top && value != features->offset_top)
1660 hid_warn(hdev, "%s: overriding exising top offset "
1661 "%d -> %d\n", __func__, value,
1662 features->offset_top);
1663 features->offset_top = value;
1664 return 0;
1665 case WACOM_HID_WD_OFFSETBOTTOM:
1666 if (features->offset_bottom && value != features->offset_bottom)
1667 hid_warn(hdev, "%s: overriding exising bottom offset "
1668 "%d -> %d\n", __func__, value,
1669 features->offset_bottom);
1670 features->offset_bottom = value;
1671 return 0;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001672 }
1673
Ping Cheng1924e052016-08-09 14:38:56 -07001674 /* send pen events only when touch is up or forced out
1675 * or touch arbitration is off
1676 */
1677 if (!usage->type || delay_pen_events(wacom_wac))
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001678 return 0;
1679
Jason Gerecke61ce3462016-10-19 18:03:46 -07001680 /* send pen events only when the pen is in/entering/leaving proximity */
1681 if (!wacom_wac->hid_data.inrange_state && !wacom_wac->tool[0])
1682 return 0;
1683
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001684 input_event(input, usage->type, usage->code, value);
1685
1686 return 0;
1687}
1688
Jason Gerecke06324e02015-07-21 11:07:23 -07001689static void wacom_wac_pen_pre_report(struct hid_device *hdev,
1690 struct hid_report *report)
1691{
1692 return;
1693}
1694
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001695static void wacom_wac_pen_report(struct hid_device *hdev,
1696 struct hid_report *report)
1697{
1698 struct wacom *wacom = hid_get_drvdata(hdev);
1699 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001700 struct input_dev *input = wacom_wac->pen_input;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001701 bool prox = wacom_wac->hid_data.inrange_state;
Jason Gerecke61ce3462016-10-19 18:03:46 -07001702 bool range = wacom_wac->hid_data.sense_state;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001703
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001704 if (!wacom_wac->tool[0] && prox) { /* first in prox */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001705 /* Going into proximity select tool */
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001706 if (wacom_wac->hid_data.invert_state)
1707 wacom_wac->tool[0] = BTN_TOOL_RUBBER;
1708 else if (wacom_wac->id[0])
1709 wacom_wac->tool[0] = wacom_intuos_get_tool_type(wacom_wac->id[0]);
1710 else
1711 wacom_wac->tool[0] = BTN_TOOL_PEN;
1712 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001713
1714 /* keep pen state for touch events */
Jason Gerecke61ce3462016-10-19 18:03:46 -07001715 wacom_wac->shared->stylus_in_proximity = range;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001716
Jason Gerecke61ce3462016-10-19 18:03:46 -07001717 if (!delay_pen_events(wacom_wac) && wacom_wac->tool[0]) {
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001718 int id = wacom_wac->id[0];
1719
1720 /*
1721 * Non-USI EMR tools should have their IDs mangled to
1722 * match the legacy behavior of wacom_intuos_general
1723 */
1724 if (wacom_wac->serial[0] >> 52 == 1)
1725 id = wacom_intuos_id_mangle(id);
1726
1727 /*
1728 * To ensure compatibility with xf86-input-wacom, we should
1729 * report the BTN_TOOL_* event prior to the ABS_MISC or
1730 * MSC_SERIAL events.
1731 */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001732 input_report_key(input, BTN_TOUCH,
1733 wacom_wac->hid_data.tipswitch);
1734 input_report_key(input, wacom_wac->tool[0], prox);
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001735 if (wacom_wac->serial[0]) {
1736 input_event(input, EV_MSC, MSC_SERIAL, wacom_wac->serial[0]);
1737 input_report_abs(input, ABS_MISC, id);
1738 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001739
1740 wacom_wac->hid_data.tipswitch = false;
1741
1742 input_sync(input);
1743 }
Jason Gerecke61ce3462016-10-19 18:03:46 -07001744
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001745 if (!prox) {
Jason Gerecke61ce3462016-10-19 18:03:46 -07001746 wacom_wac->tool[0] = 0;
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001747 wacom_wac->id[0] = 0;
1748 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001749}
1750
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001751static void wacom_wac_finger_usage_mapping(struct hid_device *hdev,
1752 struct hid_field *field, struct hid_usage *usage)
1753{
1754 struct wacom *wacom = hid_get_drvdata(hdev);
1755 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001756 struct input_dev *input = wacom_wac->touch_input;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001757 unsigned touch_max = wacom_wac->features.touch_max;
Jason Gereckec9c09582016-10-19 18:03:43 -07001758 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001759
Jason Gereckec9c09582016-10-19 18:03:43 -07001760 switch (equivalent_usage) {
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001761 case HID_GD_X:
1762 if (touch_max == 1)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001763 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001764 else
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001765 wacom_map_usage(input, usage, field, EV_ABS,
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001766 ABS_MT_POSITION_X, 4);
1767 break;
1768 case HID_GD_Y:
1769 if (touch_max == 1)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001770 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001771 else
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001772 wacom_map_usage(input, usage, field, EV_ABS,
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001773 ABS_MT_POSITION_Y, 4);
1774 break;
Jason Gerecke488abb52015-07-21 11:07:25 -07001775 case HID_DG_WIDTH:
1776 case HID_DG_HEIGHT:
Jason Gerecke488abb52015-07-21 11:07:25 -07001777 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MAJOR, 0);
1778 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MINOR, 0);
1779 input_set_abs_params(input, ABS_MT_ORIENTATION, 0, 1, 0, 0);
1780 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001781 case HID_DG_TIPSWITCH:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001782 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001783 break;
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001784 case HID_DG_CONTACTCOUNT:
Jason Gerecke499522c2015-10-07 16:54:21 -07001785 wacom_wac->hid_data.cc_report = field->report->id;
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001786 wacom_wac->hid_data.cc_index = field->index;
1787 wacom_wac->hid_data.cc_value_index = usage->usage_index;
1788 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001789 }
1790}
1791
Jason Gerecke601a22f2014-12-10 16:26:04 -08001792static void wacom_wac_finger_slot(struct wacom_wac *wacom_wac,
1793 struct input_dev *input)
1794{
1795 struct hid_data *hid_data = &wacom_wac->hid_data;
1796 bool mt = wacom_wac->features.touch_max > 1;
1797 bool prox = hid_data->tipswitch &&
Ping Cheng1924e052016-08-09 14:38:56 -07001798 report_touch_events(wacom_wac);
Jason Gerecke601a22f2014-12-10 16:26:04 -08001799
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001800 wacom_wac->hid_data.num_received++;
1801 if (wacom_wac->hid_data.num_received > wacom_wac->hid_data.num_expected)
1802 return;
1803
Jason Gerecke601a22f2014-12-10 16:26:04 -08001804 if (mt) {
1805 int slot;
1806
1807 slot = input_mt_get_slot_by_key(input, hid_data->id);
1808 input_mt_slot(input, slot);
1809 input_mt_report_slot_state(input, MT_TOOL_FINGER, prox);
1810 }
1811 else {
1812 input_report_key(input, BTN_TOUCH, prox);
1813 }
1814
1815 if (prox) {
1816 input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X,
1817 hid_data->x);
1818 input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y,
1819 hid_data->y);
Jason Gerecke488abb52015-07-21 11:07:25 -07001820
1821 if (test_bit(ABS_MT_TOUCH_MAJOR, input->absbit)) {
1822 input_report_abs(input, ABS_MT_TOUCH_MAJOR, max(hid_data->width, hid_data->height));
1823 input_report_abs(input, ABS_MT_TOUCH_MINOR, min(hid_data->width, hid_data->height));
1824 if (hid_data->width != hid_data->height)
1825 input_report_abs(input, ABS_MT_ORIENTATION, hid_data->width <= hid_data->height ? 0 : 1);
1826 }
Jason Gerecke601a22f2014-12-10 16:26:04 -08001827 }
1828}
1829
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001830static int wacom_wac_finger_event(struct hid_device *hdev,
1831 struct hid_field *field, struct hid_usage *usage, __s32 value)
1832{
1833 struct wacom *wacom = hid_get_drvdata(hdev);
1834 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gereckec9c09582016-10-19 18:03:43 -07001835 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001836
Jason Gereckec9c09582016-10-19 18:03:43 -07001837 switch (equivalent_usage) {
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001838 case HID_GD_X:
1839 wacom_wac->hid_data.x = value;
1840 break;
1841 case HID_GD_Y:
1842 wacom_wac->hid_data.y = value;
1843 break;
Jason Gerecke488abb52015-07-21 11:07:25 -07001844 case HID_DG_WIDTH:
1845 wacom_wac->hid_data.width = value;
1846 break;
1847 case HID_DG_HEIGHT:
1848 wacom_wac->hid_data.height = value;
1849 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001850 case HID_DG_CONTACTID:
1851 wacom_wac->hid_data.id = value;
1852 break;
1853 case HID_DG_TIPSWITCH:
1854 wacom_wac->hid_data.tipswitch = value;
1855 break;
1856 }
1857
1858
Jason Gerecke601a22f2014-12-10 16:26:04 -08001859 if (usage->usage_index + 1 == field->report_count) {
Jason Gereckec9c09582016-10-19 18:03:43 -07001860 if (equivalent_usage == wacom_wac->hid_data.last_slot_field)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001861 wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input);
Jason Gerecke601a22f2014-12-10 16:26:04 -08001862 }
1863
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001864 return 0;
1865}
1866
Jason Gerecke06324e02015-07-21 11:07:23 -07001867static void wacom_wac_finger_pre_report(struct hid_device *hdev,
1868 struct hid_report *report)
1869{
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001870 struct wacom *wacom = hid_get_drvdata(hdev);
1871 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1872 struct hid_data* hid_data = &wacom_wac->hid_data;
Jason Gerecke003f50a2016-07-21 09:10:46 -07001873 int i;
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001874
Jason Gerecke003f50a2016-07-21 09:10:46 -07001875 for (i = 0; i < report->maxfield; i++) {
1876 struct hid_field *field = report->field[i];
1877 int j;
Jason Gerecke499522c2015-10-07 16:54:21 -07001878
Jason Gerecke003f50a2016-07-21 09:10:46 -07001879 for (j = 0; j < field->maxusage; j++) {
1880 struct hid_usage *usage = &field->usage[j];
Jason Gerecke499522c2015-10-07 16:54:21 -07001881
Jason Gerecke003f50a2016-07-21 09:10:46 -07001882 switch (usage->hid) {
1883 case HID_GD_X:
1884 case HID_GD_Y:
1885 case HID_DG_WIDTH:
1886 case HID_DG_HEIGHT:
1887 case HID_DG_CONTACTID:
1888 case HID_DG_INRANGE:
1889 case HID_DG_INVERT:
1890 case HID_DG_TIPSWITCH:
1891 hid_data->last_slot_field = usage->hid;
1892 break;
1893 case HID_DG_CONTACTCOUNT:
1894 hid_data->cc_report = report->id;
1895 hid_data->cc_index = i;
1896 hid_data->cc_value_index = j;
1897 break;
Jason Gerecke499522c2015-10-07 16:54:21 -07001898 }
1899 }
1900 }
Jason Gerecke003f50a2016-07-21 09:10:46 -07001901
Jason Gereckedf707932015-10-07 16:54:22 -07001902 if (hid_data->cc_report != 0 &&
1903 hid_data->cc_index >= 0) {
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001904 struct hid_field *field = report->field[hid_data->cc_index];
1905 int value = field->value[hid_data->cc_value_index];
1906 if (value)
1907 hid_data->num_expected = value;
1908 }
1909 else {
1910 hid_data->num_expected = wacom_wac->features.touch_max;
1911 }
Jason Gerecke06324e02015-07-21 11:07:23 -07001912}
1913
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001914static void wacom_wac_finger_report(struct hid_device *hdev,
1915 struct hid_report *report)
1916{
1917 struct wacom *wacom = hid_get_drvdata(hdev);
1918 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001919 struct input_dev *input = wacom_wac->touch_input;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001920 unsigned touch_max = wacom_wac->features.touch_max;
1921
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001922 /* If more packets of data are expected, give us a chance to
1923 * process them rather than immediately syncing a partial
1924 * update.
1925 */
1926 if (wacom_wac->hid_data.num_received < wacom_wac->hid_data.num_expected)
1927 return;
1928
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001929 if (touch_max > 1)
Jason Gerecke601a22f2014-12-10 16:26:04 -08001930 input_mt_sync_frame(input);
1931
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001932 input_sync(input);
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07001933 wacom_wac->hid_data.num_received = 0;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001934
1935 /* keep touch state for pen event */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001936 wacom_wac->shared->touch_down = wacom_wac_finger_count_touches(wacom_wac);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001937}
1938
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001939void wacom_wac_usage_mapping(struct hid_device *hdev,
1940 struct hid_field *field, struct hid_usage *usage)
1941{
1942 struct wacom *wacom = hid_get_drvdata(hdev);
1943 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gereckee5bc8eb2016-08-08 12:06:29 -07001944 struct wacom_features *features = &wacom_wac->features;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001945
1946 /* currently, only direct devices have proper hid report descriptors */
Jason Gereckee5bc8eb2016-08-08 12:06:29 -07001947 features->device_type |= WACOM_DEVICETYPE_DIRECT;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001948
1949 if (WACOM_PEN_FIELD(field))
1950 return wacom_wac_pen_usage_mapping(hdev, field, usage);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001951
1952 if (WACOM_FINGER_FIELD(field))
1953 return wacom_wac_finger_usage_mapping(hdev, field, usage);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001954}
1955
1956int wacom_wac_event(struct hid_device *hdev, struct hid_field *field,
1957 struct hid_usage *usage, __s32 value)
1958{
1959 struct wacom *wacom = hid_get_drvdata(hdev);
1960
1961 if (wacom->wacom_wac.features.type != HID_GENERIC)
1962 return 0;
1963
1964 if (WACOM_PEN_FIELD(field))
1965 return wacom_wac_pen_event(hdev, field, usage, value);
1966
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001967 if (WACOM_FINGER_FIELD(field))
1968 return wacom_wac_finger_event(hdev, field, usage, value);
1969
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001970 return 0;
1971}
1972
Jason Gerecke06324e02015-07-21 11:07:23 -07001973static void wacom_report_events(struct hid_device *hdev, struct hid_report *report)
1974{
1975 int r;
1976
1977 for (r = 0; r < report->maxfield; r++) {
1978 struct hid_field *field;
1979 unsigned count, n;
1980
1981 field = report->field[r];
1982 count = field->report_count;
1983
1984 if (!(HID_MAIN_ITEM_VARIABLE & field->flags))
1985 continue;
1986
1987 for (n = 0; n < count; n++)
1988 wacom_wac_event(hdev, field, &field->usage[n], field->value[n]);
1989 }
1990}
1991
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001992void wacom_wac_report(struct hid_device *hdev, struct hid_report *report)
1993{
1994 struct wacom *wacom = hid_get_drvdata(hdev);
1995 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1996 struct hid_field *field = report->field[0];
1997
1998 if (wacom_wac->features.type != HID_GENERIC)
1999 return;
2000
2001 if (WACOM_PEN_FIELD(field))
Jason Gerecke06324e02015-07-21 11:07:23 -07002002 wacom_wac_pen_pre_report(hdev, report);
2003
2004 if (WACOM_FINGER_FIELD(field))
2005 wacom_wac_finger_pre_report(hdev, report);
2006
2007 wacom_report_events(hdev, report);
2008
2009 if (WACOM_PEN_FIELD(field))
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002010 return wacom_wac_pen_report(hdev, report);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002011
2012 if (WACOM_FINGER_FIELD(field))
2013 return wacom_wac_finger_report(hdev, report);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002014}
2015
Chris Bagwelle1d38e42010-09-12 00:09:27 -07002016static int wacom_bpt_touch(struct wacom_wac *wacom)
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002017{
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07002018 struct wacom_features *features = &wacom->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002019 struct input_dev *input = wacom->touch_input;
Benjamin Tissoires31168712014-07-24 12:50:10 -07002020 struct input_dev *pad_input = wacom->pad_input;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002021 unsigned char *data = wacom->data;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002022 int i;
2023
Chris Bagwell5a6c8652011-11-07 19:52:42 -08002024 if (data[0] != 0x02)
2025 return 0;
2026
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002027 for (i = 0; i < 2; i++) {
Chris Bagwell8f906862011-09-09 13:38:10 -07002028 int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
Ping Cheng1924e052016-08-09 14:38:56 -07002029 bool touch = report_touch_events(wacom)
2030 && (data[offset + 3] & 0x80);
Chris Bagwell8f906862011-09-09 13:38:10 -07002031
2032 input_mt_slot(input, i);
2033 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +01002034 if (touch) {
Chris Bagwell8f906862011-09-09 13:38:10 -07002035 int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
2036 int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07002037 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
2038 x <<= 5;
2039 y <<= 5;
2040 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002041 input_report_abs(input, ABS_MT_POSITION_X, x);
2042 input_report_abs(input, ABS_MT_POSITION_Y, y);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002043 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002044 }
2045
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05002046 input_mt_sync_frame(input);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002047
Benjamin Tissoires31168712014-07-24 12:50:10 -07002048 input_report_key(pad_input, BTN_LEFT, (data[1] & 0x08) != 0);
2049 input_report_key(pad_input, BTN_FORWARD, (data[1] & 0x04) != 0);
2050 input_report_key(pad_input, BTN_BACK, (data[1] & 0x02) != 0);
2051 input_report_key(pad_input, BTN_RIGHT, (data[1] & 0x01) != 0);
Ping Cheng7d059ed2015-03-20 14:57:21 -07002052 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002053
Benjamin Tissoires31168712014-07-24 12:50:10 -07002054 return 1;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002055}
2056
Ping Cheng7d059ed2015-03-20 14:57:21 -07002057static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
Chris Bagwell73149ab2011-10-26 22:34:21 -07002058{
Ping Cheng9a35c412013-09-20 09:51:56 -07002059 struct wacom_features *features = &wacom->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002060 struct input_dev *input = wacom->touch_input;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002061 bool touch = data[1] & 0x80;
Ping Cheng02295e62013-01-04 23:56:00 -08002062 int slot = input_mt_get_slot_by_key(input, data[0]);
2063
2064 if (slot < 0)
Ping Cheng7d059ed2015-03-20 14:57:21 -07002065 return;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002066
Ping Cheng1924e052016-08-09 14:38:56 -07002067 touch = touch && report_touch_events(wacom);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002068
Ping Cheng02295e62013-01-04 23:56:00 -08002069 input_mt_slot(input, slot);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002070 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
2071
2072 if (touch) {
2073 int x = (data[2] << 4) | (data[4] >> 4);
2074 int y = (data[3] << 4) | (data[4] & 0x0f);
Ping Cheng9a35c412013-09-20 09:51:56 -07002075 int width, height;
Jason Gerecke4e904952012-10-03 17:19:11 -07002076
Ping Chengeda01da2015-09-23 13:51:15 -07002077 if (features->type >= INTUOSPS && features->type <= INTUOSHT2) {
Jason Gerecke0b279da2013-11-25 18:43:16 -08002078 width = data[5] * 100;
2079 height = data[6] * 100;
Ping Cheng9a35c412013-09-20 09:51:56 -07002080 } else {
2081 /*
2082 * "a" is a scaled-down area which we assume is
2083 * roughly circular and which can be described as:
2084 * a=(pi*r^2)/C.
2085 */
2086 int a = data[5];
Ping Chengd7da3a32014-06-13 13:37:33 -07002087 int x_res = input_abs_get_res(input, ABS_MT_POSITION_X);
2088 int y_res = input_abs_get_res(input, ABS_MT_POSITION_Y);
2089 width = 2 * int_sqrt(a * WACOM_CONTACT_AREA_SCALE);
Ping Cheng9a35c412013-09-20 09:51:56 -07002090 height = width * y_res / x_res;
2091 }
Chris Bagwell73149ab2011-10-26 22:34:21 -07002092
2093 input_report_abs(input, ABS_MT_POSITION_X, x);
2094 input_report_abs(input, ABS_MT_POSITION_Y, y);
Jason Gerecke4e904952012-10-03 17:19:11 -07002095 input_report_abs(input, ABS_MT_TOUCH_MAJOR, width);
2096 input_report_abs(input, ABS_MT_TOUCH_MINOR, height);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002097 }
2098}
2099
2100static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
2101{
Benjamin Tissoires31168712014-07-24 12:50:10 -07002102 struct input_dev *input = wacom->pad_input;
Ping Chengb5fd2a32013-11-25 18:44:55 -08002103 struct wacom_features *features = &wacom->features;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002104
Ping Chengeda01da2015-09-23 13:51:15 -07002105 if (features->type == INTUOSHT || features->type == INTUOSHT2) {
Ping Chengb5fd2a32013-11-25 18:44:55 -08002106 input_report_key(input, BTN_LEFT, (data[1] & 0x02) != 0);
2107 input_report_key(input, BTN_BACK, (data[1] & 0x08) != 0);
2108 } else {
2109 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
2110 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
2111 }
Chris Bagwell73149ab2011-10-26 22:34:21 -07002112 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002113 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
2114}
2115
2116static int wacom_bpt3_touch(struct wacom_wac *wacom)
2117{
Chris Bagwell73149ab2011-10-26 22:34:21 -07002118 unsigned char *data = wacom->data;
Jason Gerecke19d57d32012-03-06 10:19:19 -08002119 int count = data[1] & 0x07;
Ping Chengeda01da2015-09-23 13:51:15 -07002120 int touch_changed = 0, i;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002121
Chris Bagwell5a6c8652011-11-07 19:52:42 -08002122 if (data[0] != 0x02)
2123 return 0;
2124
Chris Bagwell73149ab2011-10-26 22:34:21 -07002125 /* data has up to 7 fixed sized 8-byte messages starting at data[2] */
2126 for (i = 0; i < count; i++) {
2127 int offset = (8 * i) + 2;
2128 int msg_id = data[offset];
2129
Ping Chengeda01da2015-09-23 13:51:15 -07002130 if (msg_id >= 2 && msg_id <= 17) {
Ping Cheng7d059ed2015-03-20 14:57:21 -07002131 wacom_bpt3_touch_msg(wacom, data + offset);
Ping Chengeda01da2015-09-23 13:51:15 -07002132 touch_changed++;
2133 } else if (msg_id == 128)
Chris Bagwell73149ab2011-10-26 22:34:21 -07002134 wacom_bpt3_button_msg(wacom, data + offset);
2135
2136 }
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002137
Ping Chengeda01da2015-09-23 13:51:15 -07002138 /* only update touch if we actually have a touchpad and touch data changed */
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002139 if (wacom->touch_input && touch_changed) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002140 input_mt_sync_frame(wacom->touch_input);
2141 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
2142 }
Chris Bagwell73149ab2011-10-26 22:34:21 -07002143
Benjamin Tissoires31168712014-07-24 12:50:10 -07002144 return 1;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002145}
2146
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002147static int wacom_bpt_pen(struct wacom_wac *wacom)
2148{
Ping Cheng961794a2013-12-05 12:54:53 -08002149 struct wacom_features *features = &wacom->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002150 struct input_dev *input = wacom->pen_input;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002151 unsigned char *data = wacom->data;
2152 int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
2153
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002154 if (data[0] != WACOM_REPORT_PENABLED)
Chris Bagwell5a6c8652011-11-07 19:52:42 -08002155 return 0;
2156
Chris Bagwellc5981412011-10-26 22:28:34 -07002157 prox = (data[1] & 0x20) == 0x20;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002158
2159 /*
2160 * All reports shared between PEN and RUBBER tool must be
2161 * forced to a known starting value (zero) when transitioning to
2162 * out-of-prox.
2163 *
2164 * If not reset then, to userspace, it will look like lost events
2165 * if new tool comes in-prox with same values as previous tool sent.
2166 *
2167 * Hardware does report zero in most out-of-prox cases but not all.
2168 */
Ping Cheng01499312015-03-20 14:58:01 -07002169 if (!wacom->shared->stylus_in_proximity) {
2170 if (data[1] & 0x08) {
2171 wacom->tool[0] = BTN_TOOL_RUBBER;
2172 wacom->id[0] = ERASER_DEVICE_ID;
2173 } else {
2174 wacom->tool[0] = BTN_TOOL_PEN;
2175 wacom->id[0] = STYLUS_DEVICE_ID;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002176 }
Ping Cheng01499312015-03-20 14:58:01 -07002177 }
2178
2179 wacom->shared->stylus_in_proximity = prox;
Ping Cheng1924e052016-08-09 14:38:56 -07002180 if (delay_pen_events(wacom))
Ping Cheng01499312015-03-20 14:58:01 -07002181 return 0;
2182
2183 if (prox) {
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002184 x = le16_to_cpup((__le16 *)&data[2]);
2185 y = le16_to_cpup((__le16 *)&data[4]);
2186 p = le16_to_cpup((__le16 *)&data[6]);
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07002187 /*
2188 * Convert distance from out prox to distance from tablet.
2189 * distance will be greater than distance_max once
2190 * touching and applying pressure; do not report negative
2191 * distance.
2192 */
Ping Cheng961794a2013-12-05 12:54:53 -08002193 if (data[8] <= features->distance_max)
2194 d = features->distance_max - data[8];
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07002195
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002196 pen = data[1] & 0x01;
2197 btn1 = data[1] & 0x02;
2198 btn2 = data[1] & 0x04;
Ping Cheng01499312015-03-20 14:58:01 -07002199 } else {
2200 wacom->id[0] = 0;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002201 }
2202
2203 input_report_key(input, BTN_TOUCH, pen);
2204 input_report_key(input, BTN_STYLUS, btn1);
2205 input_report_key(input, BTN_STYLUS2, btn2);
2206
2207 input_report_abs(input, ABS_X, x);
2208 input_report_abs(input, ABS_Y, y);
2209 input_report_abs(input, ABS_PRESSURE, p);
2210 input_report_abs(input, ABS_DISTANCE, d);
2211
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002212 input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
2213 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
2214
2215 return 1;
2216}
2217
Chris Bagwelle1d38e42010-09-12 00:09:27 -07002218static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
2219{
Ping Chengeda01da2015-09-23 13:51:15 -07002220 struct wacom_features *features = &wacom->features;
2221
2222 if ((features->type == INTUOSHT2) &&
Ping Chengeda01da2015-09-23 13:51:15 -07002223 (features->device_type & WACOM_DEVICETYPE_PEN))
2224 return wacom_intuos_irq(wacom);
2225 else if (len == WACOM_PKGLEN_BBTOUCH)
Chris Bagwelle1d38e42010-09-12 00:09:27 -07002226 return wacom_bpt_touch(wacom);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002227 else if (len == WACOM_PKGLEN_BBTOUCH3)
2228 return wacom_bpt3_touch(wacom);
2229 else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002230 return wacom_bpt_pen(wacom);
Chris Bagwelle1d38e42010-09-12 00:09:27 -07002231
2232 return 0;
2233}
2234
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002235static void wacom_bamboo_pad_pen_event(struct wacom_wac *wacom,
2236 unsigned char *data)
2237{
2238 unsigned char prefix;
2239
2240 /*
2241 * We need to reroute the event from the debug interface to the
2242 * pen interface.
2243 * We need to add the report ID to the actual pen report, so we
2244 * temporary overwrite the first byte to prevent having to kzalloc/kfree
2245 * and memcpy the report.
2246 */
2247 prefix = data[0];
2248 data[0] = WACOM_REPORT_BPAD_PEN;
2249
2250 /*
2251 * actually reroute the event.
2252 * No need to check if wacom->shared->pen is valid, hid_input_report()
2253 * will check for us.
2254 */
2255 hid_input_report(wacom->shared->pen, HID_INPUT_REPORT, data,
2256 WACOM_PKGLEN_PENABLED, 1);
2257
2258 data[0] = prefix;
2259}
2260
2261static int wacom_bamboo_pad_touch_event(struct wacom_wac *wacom,
2262 unsigned char *data)
2263{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002264 struct input_dev *input = wacom->touch_input;
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002265 unsigned char *finger_data, prefix;
2266 unsigned id;
2267 int x, y;
2268 bool valid;
2269
2270 prefix = data[0];
2271
2272 for (id = 0; id < wacom->features.touch_max; id++) {
2273 valid = !!(prefix & BIT(id)) &&
Ping Cheng1924e052016-08-09 14:38:56 -07002274 report_touch_events(wacom);
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002275
2276 input_mt_slot(input, id);
2277 input_mt_report_slot_state(input, MT_TOOL_FINGER, valid);
2278
2279 if (!valid)
2280 continue;
2281
2282 finger_data = data + 1 + id * 3;
2283 x = finger_data[0] | ((finger_data[1] & 0x0f) << 8);
2284 y = (finger_data[2] << 4) | (finger_data[1] >> 4);
2285
2286 input_report_abs(input, ABS_MT_POSITION_X, x);
2287 input_report_abs(input, ABS_MT_POSITION_Y, y);
2288 }
2289
2290 input_mt_sync_frame(input);
2291
2292 input_report_key(input, BTN_LEFT, prefix & 0x40);
2293 input_report_key(input, BTN_RIGHT, prefix & 0x80);
2294
2295 /* keep touch state for pen event */
Ping Cheng1924e052016-08-09 14:38:56 -07002296 wacom->shared->touch_down = !!prefix && report_touch_events(wacom);
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002297
2298 return 1;
2299}
2300
2301static int wacom_bamboo_pad_irq(struct wacom_wac *wacom, size_t len)
2302{
2303 unsigned char *data = wacom->data;
2304
2305 if (!((len == WACOM_PKGLEN_BPAD_TOUCH) ||
2306 (len == WACOM_PKGLEN_BPAD_TOUCH_USB)) ||
2307 (data[0] != WACOM_REPORT_BPAD_TOUCH))
2308 return 0;
2309
2310 if (data[1] & 0x01)
2311 wacom_bamboo_pad_pen_event(wacom, &data[1]);
2312
2313 if (data[1] & 0x02)
2314 return wacom_bamboo_pad_touch_event(wacom, &data[9]);
2315
2316 return 0;
2317}
2318
Chris Bagwelld3825d52012-03-25 23:26:11 -07002319static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
2320{
Chris Bagwell16bf2882012-03-25 23:26:20 -07002321 unsigned char *data = wacom->data;
2322 int connected;
2323
Ping Chengb5fd2a32013-11-25 18:44:55 -08002324 if (len != WACOM_PKGLEN_WIRELESS || data[0] != WACOM_REPORT_WL)
Chris Bagwelld3825d52012-03-25 23:26:11 -07002325 return 0;
2326
Chris Bagwell16bf2882012-03-25 23:26:20 -07002327 connected = data[1] & 0x01;
2328 if (connected) {
Jason Gereckeb0882cb2015-03-06 11:47:43 -08002329 int pid, battery, charging;
Chris Bagwell16bf2882012-03-25 23:26:20 -07002330
Ping Chengeda01da2015-09-23 13:51:15 -07002331 if ((wacom->shared->type == INTUOSHT ||
2332 wacom->shared->type == INTUOSHT2) &&
Ping Cheng44b96832014-11-06 17:30:51 -08002333 wacom->shared->touch_input &&
2334 wacom->shared->touch_max) {
Ping Cheng961794a2013-12-05 12:54:53 -08002335 input_report_switch(wacom->shared->touch_input,
2336 SW_MUTE_DEVICE, data[5] & 0x40);
2337 input_sync(wacom->shared->touch_input);
2338 }
2339
Chris Bagwell16bf2882012-03-25 23:26:20 -07002340 pid = get_unaligned_be16(&data[6]);
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07002341 battery = (data[5] & 0x3f) * 100 / 31;
Jason Gereckeb0882cb2015-03-06 11:47:43 -08002342 charging = !!(data[5] & 0x80);
Chris Bagwell16bf2882012-03-25 23:26:20 -07002343 if (wacom->pid != pid) {
2344 wacom->pid = pid;
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002345 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
Chris Bagwell16bf2882012-03-25 23:26:20 -07002346 }
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07002347
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02002348 wacom_notify_battery(wacom, battery, charging, 1, 0);
Jason Gerecke953f2c52015-03-06 11:47:39 -08002349
Chris Bagwell16bf2882012-03-25 23:26:20 -07002350 } else if (wacom->pid != 0) {
2351 /* disconnected while previously connected */
2352 wacom->pid = 0;
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002353 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
Jason Gerecke71fa6412015-03-11 10:25:41 -07002354 wacom_notify_battery(wacom, 0, 0, 0, 0);
Chris Bagwell16bf2882012-03-25 23:26:20 -07002355 }
2356
Chris Bagwelld3825d52012-03-25 23:26:11 -07002357 return 0;
2358}
2359
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002360static int wacom_status_irq(struct wacom_wac *wacom_wac, size_t len)
2361{
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002362 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002363 struct wacom_features *features = &wacom_wac->features;
2364 unsigned char *data = wacom_wac->data;
2365
2366 if (data[0] != WACOM_REPORT_USB)
2367 return 0;
2368
Ping Chengeda01da2015-09-23 13:51:15 -07002369 if ((features->type == INTUOSHT ||
2370 features->type == INTUOSHT2) &&
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002371 wacom_wac->shared->touch_input &&
2372 features->touch_max) {
2373 input_report_switch(wacom_wac->shared->touch_input,
2374 SW_MUTE_DEVICE, data[8] & 0x40);
2375 input_sync(wacom_wac->shared->touch_input);
2376 }
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002377
2378 if (data[9] & 0x02) { /* wireless module is attached */
2379 int battery = (data[8] & 0x3f) * 100 / 31;
Jason Gereckeb0882cb2015-03-06 11:47:43 -08002380 bool charging = !!(data[8] & 0x80);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002381
2382 wacom_notify_battery(wacom_wac, battery, charging,
Jason Gerecke71fa6412015-03-11 10:25:41 -07002383 battery || charging, 1);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002384
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02002385 if (!wacom->battery.battery &&
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002386 !(features->quirks & WACOM_QUIRK_BATTERY)) {
2387 features->quirks |= WACOM_QUIRK_BATTERY;
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002388 wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002389 }
2390 }
2391 else if ((features->quirks & WACOM_QUIRK_BATTERY) &&
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02002392 wacom->battery.battery) {
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002393 features->quirks &= ~WACOM_QUIRK_BATTERY;
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002394 wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
Jason Gerecke71fa6412015-03-11 10:25:41 -07002395 wacom_notify_battery(wacom_wac, 0, 0, 0, 0);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002396 }
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002397 return 0;
2398}
2399
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002400void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
Ping Cheng3bea7332006-07-13 18:01:36 -07002401{
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002402 bool sync;
2403
Jason Childse33da8a2010-02-17 22:38:31 -08002404 switch (wacom_wac->features.type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002405 case PENPARTNER:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002406 sync = wacom_penpartner_irq(wacom_wac);
2407 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002408
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002409 case PL:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002410 sync = wacom_pl_irq(wacom_wac);
2411 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002412
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002413 case WACOM_G4:
2414 case GRAPHIRE:
Benjamin Tissoires387142b2014-08-06 13:52:56 -07002415 case GRAPHIRE_BT:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002416 case WACOM_MO:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002417 sync = wacom_graphire_irq(wacom_wac);
2418 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002419
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002420 case PTU:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002421 sync = wacom_ptu_irq(wacom_wac);
2422 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002423
Ping Chengc8f2edc2010-06-28 01:10:51 -07002424 case DTU:
2425 sync = wacom_dtu_irq(wacom_wac);
2426 break;
2427
Ping Cheng497ab1f2014-01-20 20:18:04 -08002428 case DTUS:
Ping Chengfff00bf2014-12-04 18:23:04 -08002429 case DTUSX:
Ping Cheng497ab1f2014-01-20 20:18:04 -08002430 sync = wacom_dtus_irq(wacom_wac);
2431 break;
2432
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002433 case INTUOS:
2434 case INTUOS3S:
2435 case INTUOS3:
2436 case INTUOS3L:
2437 case INTUOS4S:
2438 case INTUOS4:
2439 case INTUOS4L:
2440 case CINTIQ:
2441 case WACOM_BEE:
Ping Cheng56218562013-05-05 19:56:18 -07002442 case WACOM_13HD:
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07002443 case WACOM_21UX2:
Ping Chengd838c642012-07-24 23:54:11 -07002444 case WACOM_22HD:
Jason Gerecke803296b2011-12-12 00:11:45 -08002445 case WACOM_24HD:
Ping Cheng500d4162015-01-27 13:30:03 -08002446 case WACOM_27QHD:
Ping Chenga112e9f2013-02-13 20:20:01 -08002447 case DTK:
Jason Gerecke36d3c512013-09-20 09:47:35 -07002448 case CINTIQ_HYBRID:
Jason Gereckef7acb552015-10-13 10:03:49 -07002449 case CINTIQ_COMPANION_2:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002450 sync = wacom_intuos_irq(wacom_wac);
2451 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002452
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07002453 case INTUOS4WL:
2454 sync = wacom_intuos_bt_irq(wacom_wac, len);
2455 break;
2456
Jason Gereckeb1e42792012-10-21 00:38:04 -07002457 case WACOM_24HDT:
Ping Cheng500d4162015-01-27 13:30:03 -08002458 case WACOM_27QHDT:
Jason Gereckeb1e42792012-10-21 00:38:04 -07002459 sync = wacom_24hdt_irq(wacom_wac);
2460 break;
2461
Jason Gereckeae584ca2012-04-03 15:50:40 -07002462 case INTUOS5S:
2463 case INTUOS5:
2464 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -07002465 case INTUOSPS:
2466 case INTUOSPM:
2467 case INTUOSPL:
Jason Gereckeae584ca2012-04-03 15:50:40 -07002468 if (len == WACOM_PKGLEN_BBTOUCH3)
2469 sync = wacom_bpt3_touch(wacom_wac);
Jason Gerecke2d13a432015-03-06 11:47:42 -08002470 else if (wacom_wac->data[0] == WACOM_REPORT_USB)
2471 sync = wacom_status_irq(wacom_wac, len);
Jason Gereckeae584ca2012-04-03 15:50:40 -07002472 else
2473 sync = wacom_intuos_irq(wacom_wac);
2474 break;
2475
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002476 case TABLETPC:
Ping Chengac173832012-06-12 00:15:06 -07002477 case TABLETPCE:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002478 case TABLETPC2FG:
Ping Cheng19635182012-04-29 21:09:18 -07002479 case MTSCREEN:
Ping Cheng6afdc282012-11-03 12:16:15 -07002480 case MTTPC:
Jason Gerecked51ddb22014-05-14 17:14:29 -07002481 case MTTPC_B:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002482 sync = wacom_tpc_irq(wacom_wac, len);
2483 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002484
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002485 case BAMBOO_PT:
Ping Cheng3b164a02015-09-23 09:59:10 -07002486 case BAMBOO_PEN:
2487 case BAMBOO_TOUCH:
Ping Chengb5fd2a32013-11-25 18:44:55 -08002488 case INTUOSHT:
Ping Chengeda01da2015-09-23 13:51:15 -07002489 case INTUOSHT2:
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002490 if (wacom_wac->data[0] == WACOM_REPORT_USB)
2491 sync = wacom_status_irq(wacom_wac, len);
2492 else
2493 sync = wacom_bpt_irq(wacom_wac, len);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002494 break;
2495
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002496 case BAMBOO_PAD:
2497 sync = wacom_bamboo_pad_irq(wacom_wac, len);
Ping Cheng3bea7332006-07-13 18:01:36 -07002498 break;
2499
Chris Bagwelld3825d52012-03-25 23:26:11 -07002500 case WIRELESS:
2501 sync = wacom_wireless_irq(wacom_wac, len);
2502 break;
2503
Aaron Skomra72b236d2015-08-20 16:05:17 -07002504 case REMOTE:
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002505 sync = false;
Aaron Skomra72b236d2015-08-20 16:05:17 -07002506 if (wacom_wac->data[0] == WACOM_REPORT_DEVICE_LIST)
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002507 wacom_remote_status_irq(wacom_wac, len);
Aaron Skomra72b236d2015-08-20 16:05:17 -07002508 else
2509 sync = wacom_remote_irq(wacom_wac, len);
2510 break;
2511
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002512 default:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002513 sync = false;
2514 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07002515 }
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002516
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002517 if (sync) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002518 if (wacom_wac->pen_input)
2519 input_sync(wacom_wac->pen_input);
2520 if (wacom_wac->touch_input)
2521 input_sync(wacom_wac->touch_input);
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002522 if (wacom_wac->pad_input)
2523 input_sync(wacom_wac->pad_input);
2524 }
Ping Cheng3bea7332006-07-13 18:01:36 -07002525}
2526
Ping Chengeda01da2015-09-23 13:51:15 -07002527static void wacom_setup_basic_pro_pen(struct wacom_wac *wacom_wac)
Ping Cheng3bea7332006-07-13 18:01:36 -07002528{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002529 struct input_dev *input_dev = wacom_wac->pen_input;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002530
2531 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002532
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002533 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002534 __set_bit(BTN_STYLUS, input_dev->keybit);
2535 __set_bit(BTN_STYLUS2, input_dev->keybit);
2536
2537 input_set_abs_params(input_dev, ABS_DISTANCE,
Jason Gereckebef7e202016-04-22 14:30:53 -07002538 0, wacom_wac->features.distance_max, wacom_wac->features.distance_fuzz, 0);
Ping Chengeda01da2015-09-23 13:51:15 -07002539}
2540
2541static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
2542{
2543 struct input_dev *input_dev = wacom_wac->pen_input;
Jason Gereckebef7e202016-04-22 14:30:53 -07002544 struct wacom_features *features = &wacom_wac->features;
Ping Chengeda01da2015-09-23 13:51:15 -07002545
2546 wacom_setup_basic_pro_pen(wacom_wac);
2547
2548 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2549 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
2550 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
2551 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
2552
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002553 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
Jason Gereckebef7e202016-04-22 14:30:53 -07002554 input_set_abs_params(input_dev, ABS_TILT_X, -64, 63, features->tilt_fuzz, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002555 input_abs_set_res(input_dev, ABS_TILT_X, 57);
Jason Gereckebef7e202016-04-22 14:30:53 -07002556 input_set_abs_params(input_dev, ABS_TILT_Y, -64, 63, features->tilt_fuzz, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002557 input_abs_set_res(input_dev, ABS_TILT_Y, 57);
Ping Cheng6521d0b2010-10-24 21:53:40 -07002558}
2559
2560static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
2561{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002562 struct input_dev *input_dev = wacom_wac->pen_input;
Ping Cheng6521d0b2010-10-24 21:53:40 -07002563
2564 input_set_capability(input_dev, EV_REL, REL_WHEEL);
2565
2566 wacom_setup_cintiq(wacom_wac);
2567
2568 __set_bit(BTN_LEFT, input_dev->keybit);
2569 __set_bit(BTN_RIGHT, input_dev->keybit);
2570 __set_bit(BTN_MIDDLE, input_dev->keybit);
2571 __set_bit(BTN_SIDE, input_dev->keybit);
2572 __set_bit(BTN_EXTRA, input_dev->keybit);
2573 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2574 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
2575
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002576 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002577 input_abs_set_res(input_dev, ABS_RZ, 287);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002578 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
2579}
2580
Ping Cheng42f4f272015-04-15 16:53:54 -07002581void wacom_setup_device_quirks(struct wacom *wacom)
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002582{
Ping Cheng42f4f272015-04-15 16:53:54 -07002583 struct wacom_features *features = &wacom->wacom_wac.features;
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002584
Jason Gerecke862cf552015-06-15 18:01:43 -07002585 /* The pen and pad share the same interface on most devices */
2586 if (features->type == GRAPHIRE_BT || features->type == WACOM_G4 ||
Ping Cheng3b164a02015-09-23 09:59:10 -07002587 features->type == DTUS ||
2588 (features->type >= INTUOS3S && features->type <= WACOM_MO)) {
Jason Gerecke862cf552015-06-15 18:01:43 -07002589 if (features->device_type & WACOM_DEVICETYPE_PEN)
2590 features->device_type |= WACOM_DEVICETYPE_PAD;
2591 }
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002592
2593 /* touch device found but size is not defined. use default */
Jason Gereckeaa86b182015-06-15 18:01:42 -07002594 if (features->device_type & WACOM_DEVICETYPE_TOUCH && !features->x_max) {
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002595 features->x_max = 1023;
2596 features->y_max = 1023;
2597 }
2598
Ping Cheng42f4f272015-04-15 16:53:54 -07002599 /*
2600 * Intuos5/Pro and Bamboo 3rd gen have no useful data about its
2601 * touch interface in its HID descriptor. If this is the touch
2602 * interface (PacketSize of WACOM_PKGLEN_BBTOUCH3), override the
2603 * tablet values.
2604 */
Ping Cheng3b164a02015-09-23 09:59:10 -07002605 if ((features->type >= INTUOS5S && features->type <= INTUOSPL) ||
2606 (features->type >= INTUOSHT && features->type <= BAMBOO_PT)) {
Ping Cheng42f4f272015-04-15 16:53:54 -07002607 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
Jason Gerecke862cf552015-06-15 18:01:43 -07002608 if (features->touch_max)
2609 features->device_type |= WACOM_DEVICETYPE_TOUCH;
Jiri Kosinaa3088ab2015-11-17 00:24:14 +01002610 if (features->type >= INTUOSHT && features->type <= BAMBOO_PT)
Jason Gerecke862cf552015-06-15 18:01:43 -07002611 features->device_type |= WACOM_DEVICETYPE_PAD;
Ping Cheng42f4f272015-04-15 16:53:54 -07002612
2613 features->x_max = 4096;
2614 features->y_max = 4096;
Ping Cheng42f4f272015-04-15 16:53:54 -07002615 }
Jason Gerecke96339202015-07-01 13:01:00 -07002616 else if (features->pktlen == WACOM_PKGLEN_BBTOUCH) {
2617 features->device_type |= WACOM_DEVICETYPE_PAD;
2618 }
Ping Cheng42f4f272015-04-15 16:53:54 -07002619 }
2620
2621 /*
Benjamin Tissoires580549e2016-03-25 15:26:55 +01002622 * Hack for the Bamboo One:
2623 * the device presents a PAD/Touch interface as most Bamboos and even
2624 * sends ghosts PAD data on it. However, later, we must disable this
2625 * ghost interface, and we can not detect it unless we set it here
2626 * to WACOM_DEVICETYPE_PAD or WACOM_DEVICETYPE_TOUCH.
2627 */
2628 if (features->type == BAMBOO_PEN &&
2629 features->pktlen == WACOM_PKGLEN_BBTOUCH3)
2630 features->device_type |= WACOM_DEVICETYPE_PAD;
2631
2632 /*
Jason Gerecke042628a2015-04-30 17:51:54 -07002633 * Raw Wacom-mode pen and touch events both come from interface
2634 * 0, whose HID descriptor has an application usage of 0xFF0D
Jason Gerecke8de82282016-10-19 18:03:37 -07002635 * (i.e., WACOM_HID_WD_DIGITIZER). We route pen packets back
Jason Gerecke042628a2015-04-30 17:51:54 -07002636 * out through the HID_GENERIC device created for interface 1,
Benjamin Tissoires70caee0a2015-07-09 14:11:51 -04002637 * so rewrite this one to be of type WACOM_DEVICETYPE_TOUCH.
Ping Cheng42f4f272015-04-15 16:53:54 -07002638 */
2639 if (features->type == BAMBOO_PAD)
Benjamin Tissoires70caee0a2015-07-09 14:11:51 -04002640 features->device_type = WACOM_DEVICETYPE_TOUCH;
Ping Cheng42f4f272015-04-15 16:53:54 -07002641
Aaron Skomra72b236d2015-08-20 16:05:17 -07002642 if (features->type == REMOTE)
2643 features->device_type = WACOM_DEVICETYPE_PAD;
Ping Cheng42f4f272015-04-15 16:53:54 -07002644
Jason Gereckee5bc8eb2016-08-08 12:06:29 -07002645 switch (features->type) {
2646 case PL:
2647 case DTU:
2648 case DTUS:
2649 case DTUSX:
2650 case WACOM_21UX2:
2651 case WACOM_22HD:
2652 case DTK:
2653 case WACOM_24HD:
2654 case WACOM_27QHD:
2655 case CINTIQ_HYBRID:
2656 case CINTIQ_COMPANION_2:
2657 case CINTIQ:
2658 case WACOM_BEE:
2659 case WACOM_13HD:
2660 case WACOM_24HDT:
2661 case WACOM_27QHDT:
2662 case TABLETPC:
2663 case TABLETPCE:
2664 case TABLETPC2FG:
2665 case MTSCREEN:
2666 case MTTPC:
2667 case MTTPC_B:
2668 features->device_type |= WACOM_DEVICETYPE_DIRECT;
2669 break;
2670 }
2671
Ping Cheng42f4f272015-04-15 16:53:54 -07002672 if (wacom->hdev->bus == BUS_BLUETOOTH)
2673 features->quirks |= WACOM_QUIRK_BATTERY;
2674
Chris Bagwell73149ab2011-10-26 22:34:21 -07002675 /* quirk for bamboo touch with 2 low res touches */
Jason Gereckebe853fd2015-12-04 14:45:27 -08002676 if ((features->type == BAMBOO_PT || features->type == BAMBOO_TOUCH) &&
Chris Bagwell73149ab2011-10-26 22:34:21 -07002677 features->pktlen == WACOM_PKGLEN_BBTOUCH) {
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07002678 features->x_max <<= 5;
2679 features->y_max <<= 5;
2680 features->x_fuzz <<= 5;
2681 features->y_fuzz <<= 5;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07002682 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002683 }
Chris Bagwelld3825d52012-03-25 23:26:11 -07002684
2685 if (features->type == WIRELESS) {
Jason Gereckeccad85c2015-08-03 10:17:04 -07002686 if (features->device_type == WACOM_DEVICETYPE_WL_MONITOR) {
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07002687 features->quirks |= WACOM_QUIRK_BATTERY;
2688 }
Chris Bagwelld3825d52012-03-25 23:26:11 -07002689 }
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002690
2691 if (features->type == REMOTE)
2692 features->device_type |= WACOM_DEVICETYPE_WL_MONITOR;
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07002693}
2694
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002695int wacom_setup_pen_input_capabilities(struct input_dev *input_dev,
Ping Cheng19635182012-04-29 21:09:18 -07002696 struct wacom_wac *wacom_wac)
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002697{
2698 struct wacom_features *features = &wacom_wac->features;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002699
2700 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2701
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002702 if (!(features->device_type & WACOM_DEVICETYPE_PEN))
2703 return -ENODEV;
2704
Jason Gereckee5bc8eb2016-08-08 12:06:29 -07002705 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
2706 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2707 else
2708 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2709
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002710 if (features->type == HID_GENERIC)
2711 /* setup has already been done */
2712 return 0;
2713
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002714 __set_bit(BTN_TOUCH, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002715 __set_bit(ABS_MISC, input_dev->absbit);
2716
Jason Gereckee779ef22016-10-19 18:03:49 -07002717 input_set_abs_params(input_dev, ABS_X, 0 + features->offset_left,
2718 features->x_max - features->offset_right,
2719 features->x_fuzz, 0);
2720 input_set_abs_params(input_dev, ABS_Y, 0 + features->offset_top,
2721 features->y_max - features->offset_bottom,
2722 features->y_fuzz, 0);
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002723 input_set_abs_params(input_dev, ABS_PRESSURE, 0,
2724 features->pressure_max, features->pressure_fuzz, 0);
2725
2726 /* penabled devices have fixed resolution for each model */
2727 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
2728 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
2729
Ping Cheng497ab1f2014-01-20 20:18:04 -08002730 switch (features->type) {
Ping Chenga2f71c62015-01-27 13:29:36 -08002731 case GRAPHIRE_BT:
2732 __clear_bit(ABS_MISC, input_dev->absbit);
2733
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002734 case WACOM_MO:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002735 case WACOM_G4:
Ping Chenga2f71c62015-01-27 13:29:36 -08002736 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2737 features->distance_max,
Jason Gereckebef7e202016-04-22 14:30:53 -07002738 features->distance_fuzz, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002739 /* fall through */
2740
2741 case GRAPHIRE:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002742 input_set_capability(input_dev, EV_REL, REL_WHEEL);
2743
2744 __set_bit(BTN_LEFT, input_dev->keybit);
2745 __set_bit(BTN_RIGHT, input_dev->keybit);
2746 __set_bit(BTN_MIDDLE, input_dev->keybit);
2747
2748 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2749 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
2750 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2751 __set_bit(BTN_STYLUS, input_dev->keybit);
2752 __set_bit(BTN_STYLUS2, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002753 break;
2754
Ping Cheng500d4162015-01-27 13:30:03 -08002755 case WACOM_27QHD:
Jason Gerecke803296b2011-12-12 00:11:45 -08002756 case WACOM_24HD:
Ping Chenga112e9f2013-02-13 20:20:01 -08002757 case DTK:
Ping Chengd838c642012-07-24 23:54:11 -07002758 case WACOM_22HD:
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07002759 case WACOM_21UX2:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002760 case WACOM_BEE:
Ping Cheng6521d0b2010-10-24 21:53:40 -07002761 case CINTIQ:
Ping Cheng56218562013-05-05 19:56:18 -07002762 case WACOM_13HD:
Ping Chenga2f71c62015-01-27 13:29:36 -08002763 case CINTIQ_HYBRID:
Jason Gereckef7acb552015-10-13 10:03:49 -07002764 case CINTIQ_COMPANION_2:
Ping Cheng56218562013-05-05 19:56:18 -07002765 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002766 input_abs_set_res(input_dev, ABS_Z, 287);
Ping Cheng56218562013-05-05 19:56:18 -07002767 wacom_setup_cintiq(wacom_wac);
2768 break;
2769
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002770 case INTUOS3:
2771 case INTUOS3L:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002772 case INTUOS3S:
Ping Chenga2f71c62015-01-27 13:29:36 -08002773 case INTUOS4:
2774 case INTUOS4WL:
2775 case INTUOS4L:
2776 case INTUOS4S:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002777 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08002778 input_abs_set_res(input_dev, ABS_Z, 287);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002779 /* fall through */
2780
2781 case INTUOS:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002782 wacom_setup_intuos(wacom_wac);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002783 break;
2784
Jason Gerecke9fee6192012-04-03 15:47:22 -07002785 case INTUOS5:
2786 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -07002787 case INTUOSPM:
2788 case INTUOSPL:
Jason Gereckeae584ca2012-04-03 15:50:40 -07002789 case INTUOS5S:
Ping Cheng9a35c412013-09-20 09:51:56 -07002790 case INTUOSPS:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002791 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2792 features->distance_max,
Jason Gereckebef7e202016-04-22 14:30:53 -07002793 features->distance_fuzz, 0);
Jason Gereckeae584ca2012-04-03 15:50:40 -07002794
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002795 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
2796 input_abs_set_res(input_dev, ABS_Z, 287);
Jason Gereckeae584ca2012-04-03 15:50:40 -07002797
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002798 wacom_setup_intuos(wacom_wac);
Jason Gereckeae584ca2012-04-03 15:50:40 -07002799 break;
2800
Jason Gereckeb1e42792012-10-21 00:38:04 -07002801 case WACOM_24HDT:
Ping Cheng500d4162015-01-27 13:30:03 -08002802 case WACOM_27QHDT:
Ping Cheng19635182012-04-29 21:09:18 -07002803 case MTSCREEN:
Ping Cheng6afdc282012-11-03 12:16:15 -07002804 case MTTPC:
Jason Gerecked51ddb22014-05-14 17:14:29 -07002805 case MTTPC_B:
Ping Cheng6795a522012-06-28 16:49:00 -07002806 case TABLETPC2FG:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002807 case TABLETPC:
Ping Chengac173832012-06-12 00:15:06 -07002808 case TABLETPCE:
Ping Chenga43c7c52011-03-12 20:34:42 -08002809 __clear_bit(ABS_MISC, input_dev->absbit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002810 /* fall through */
2811
Ping Cheng497ab1f2014-01-20 20:18:04 -08002812 case DTUS:
Ping Chengfff00bf2014-12-04 18:23:04 -08002813 case DTUSX:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002814 case PL:
Ping Chengc8f2edc2010-06-28 01:10:51 -07002815 case DTU:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002816 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07002817 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002818 __set_bit(BTN_STYLUS, input_dev->keybit);
2819 __set_bit(BTN_STYLUS2, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07002820 break;
2821
2822 case PTU:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002823 __set_bit(BTN_STYLUS2, input_dev->keybit);
2824 /* fall through */
2825
2826 case PENPARTNER:
Jason Gerecke1fab84a2011-08-26 23:18:22 -07002827 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002828 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
Jason Gerecke1fab84a2011-08-26 23:18:22 -07002829 __set_bit(BTN_STYLUS, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002830 break;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002831
Ping Chengb5fd2a32013-11-25 18:44:55 -08002832 case INTUOSHT:
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002833 case BAMBOO_PT:
Ping Cheng3b164a02015-09-23 09:59:10 -07002834 case BAMBOO_PEN:
Ping Chengeda01da2015-09-23 13:51:15 -07002835 case INTUOSHT2:
Ping Chengeda01da2015-09-23 13:51:15 -07002836 if (features->type == INTUOSHT2) {
2837 wacom_setup_basic_pro_pen(wacom_wac);
2838 } else {
2839 __clear_bit(ABS_MISC, input_dev->absbit);
2840 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
2841 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2842 __set_bit(BTN_STYLUS, input_dev->keybit);
2843 __set_bit(BTN_STYLUS2, input_dev->keybit);
2844 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002845 features->distance_max,
Jason Gereckebef7e202016-04-22 14:30:53 -07002846 features->distance_fuzz, 0);
Ping Chengeda01da2015-09-23 13:51:15 -07002847 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002848 break;
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002849 case BAMBOO_PAD:
2850 __clear_bit(ABS_MISC, input_dev->absbit);
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002851 break;
2852 }
2853 return 0;
2854}
2855
2856int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
2857 struct wacom_wac *wacom_wac)
2858{
2859 struct wacom_features *features = &wacom_wac->features;
2860
2861 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2862
2863 if (!(features->device_type & WACOM_DEVICETYPE_TOUCH))
2864 return -ENODEV;
2865
Jason Gereckee5bc8eb2016-08-08 12:06:29 -07002866 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
2867 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2868 else
2869 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2870
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002871 if (features->type == HID_GENERIC)
2872 /* setup has already been done */
2873 return 0;
2874
2875 __set_bit(BTN_TOUCH, input_dev->keybit);
2876
2877 if (features->touch_max == 1) {
2878 input_set_abs_params(input_dev, ABS_X, 0,
2879 features->x_max, features->x_fuzz, 0);
2880 input_set_abs_params(input_dev, ABS_Y, 0,
2881 features->y_max, features->y_fuzz, 0);
2882 input_abs_set_res(input_dev, ABS_X,
2883 features->x_resolution);
2884 input_abs_set_res(input_dev, ABS_Y,
2885 features->y_resolution);
2886 }
2887 else if (features->touch_max > 1) {
2888 input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0,
2889 features->x_max, features->x_fuzz, 0);
2890 input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0,
2891 features->y_max, features->y_fuzz, 0);
2892 input_abs_set_res(input_dev, ABS_MT_POSITION_X,
2893 features->x_resolution);
2894 input_abs_set_res(input_dev, ABS_MT_POSITION_Y,
2895 features->y_resolution);
2896 }
2897
2898 switch (features->type) {
2899 case INTUOS5:
2900 case INTUOS5L:
2901 case INTUOSPM:
2902 case INTUOSPL:
2903 case INTUOS5S:
2904 case INTUOSPS:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002905 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2906 input_set_abs_params(input_dev, ABS_MT_TOUCH_MINOR, 0, features->y_max, 0, 0);
2907 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
2908 break;
2909
2910 case WACOM_24HDT:
2911 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2912 input_set_abs_params(input_dev, ABS_MT_WIDTH_MAJOR, 0, features->x_max, 0, 0);
2913 input_set_abs_params(input_dev, ABS_MT_WIDTH_MINOR, 0, features->y_max, 0, 0);
2914 input_set_abs_params(input_dev, ABS_MT_ORIENTATION, 0, 1, 0, 0);
2915 /* fall through */
2916
2917 case WACOM_27QHDT:
2918 case MTSCREEN:
2919 case MTTPC:
2920 case MTTPC_B:
2921 case TABLETPC2FG:
2922 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_DIRECT);
2923 /*fall through */
2924
2925 case TABLETPC:
2926 case TABLETPCE:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002927 break;
2928
2929 case INTUOSHT:
Ping Chengeda01da2015-09-23 13:51:15 -07002930 case INTUOSHT2:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002931 input_dev->evbit[0] |= BIT_MASK(EV_SW);
2932 __set_bit(SW_MUTE_DEVICE, input_dev->swbit);
2933 /* fall through */
2934
2935 case BAMBOO_PT:
Ping Cheng3b164a02015-09-23 09:59:10 -07002936 case BAMBOO_TOUCH:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002937 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
2938 input_set_abs_params(input_dev,
2939 ABS_MT_TOUCH_MAJOR,
2940 0, features->x_max, 0, 0);
2941 input_set_abs_params(input_dev,
2942 ABS_MT_TOUCH_MINOR,
2943 0, features->y_max, 0, 0);
2944 }
2945 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
2946 break;
2947
2948 case BAMBOO_PAD:
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002949 input_mt_init_slots(input_dev, features->touch_max,
2950 INPUT_MT_POINTER);
2951 __set_bit(BTN_LEFT, input_dev->keybit);
2952 __set_bit(BTN_RIGHT, input_dev->keybit);
2953 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07002954 }
Ping Cheng19635182012-04-29 21:09:18 -07002955 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -07002956}
2957
Jason Gerecke49005b92016-10-19 18:03:39 -07002958static int wacom_numbered_button_to_key(int n)
2959{
2960 if (n < 10)
2961 return BTN_0 + n;
2962 else if (n < 16)
2963 return BTN_A + (n-10);
2964 else if (n < 18)
2965 return BTN_BASE + (n-16);
2966 else
2967 return 0;
2968}
2969
Jiri Kosina5397df12015-08-28 20:46:42 +02002970static void wacom_setup_numbered_buttons(struct input_dev *input_dev,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07002971 int button_count)
2972{
2973 int i;
2974
Jason Gerecke49005b92016-10-19 18:03:39 -07002975 for (i = 0; i < button_count; i++) {
2976 int key = wacom_numbered_button_to_key(i);
2977
2978 if (key)
2979 __set_bit(key, input_dev->keybit);
2980 }
Aaron Skomra70ee06c2015-08-20 16:05:16 -07002981}
2982
Benjamin Tissoires6a062812016-07-13 18:06:14 +02002983static void wacom_24hd_update_leds(struct wacom *wacom, int mask, int group)
2984{
2985 struct wacom_led *led;
2986 int i;
2987 bool updated = false;
2988
2989 /*
2990 * 24HD has LED group 1 to the left and LED group 0 to the right.
2991 * So group 0 matches the second half of the buttons and thus the mask
2992 * needs to be shifted.
2993 */
2994 if (group == 0)
2995 mask >>= 8;
2996
2997 for (i = 0; i < 3; i++) {
2998 led = wacom_led_find(wacom, group, i);
2999 if (!led) {
3000 hid_err(wacom->hdev, "can't find LED %d in group %d\n",
3001 i, group);
3002 continue;
3003 }
3004 if (!updated && mask & BIT(i)) {
3005 led->held = true;
3006 led_trigger_event(&led->trigger, LED_FULL);
3007 } else {
3008 led->held = false;
3009 }
3010 }
3011}
3012
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003013static bool wacom_is_led_toggled(struct wacom *wacom, int button_count,
3014 int mask, int group)
3015{
3016 int button_per_group;
3017
Benjamin Tissoires5a0fe8ab2016-07-13 18:06:13 +02003018 /*
Benjamin Tissoires6a062812016-07-13 18:06:14 +02003019 * 21UX2 has LED group 1 to the left and LED group 0
Benjamin Tissoires5a0fe8ab2016-07-13 18:06:13 +02003020 * to the right. We need to reverse the group to match this
3021 * historical behavior.
3022 */
Benjamin Tissoires6a062812016-07-13 18:06:14 +02003023 if (wacom->wacom_wac.features.type == WACOM_21UX2)
Benjamin Tissoires5a0fe8ab2016-07-13 18:06:13 +02003024 group = 1 - group;
3025
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003026 button_per_group = button_count/wacom->led.count;
3027
3028 return mask & (1 << (group * button_per_group));
3029}
3030
3031static void wacom_update_led(struct wacom *wacom, int button_count, int mask,
3032 int group)
3033{
3034 struct wacom_led *led, *next_led;
3035 int cur;
3036 bool pressed;
3037
Benjamin Tissoires6a062812016-07-13 18:06:14 +02003038 if (wacom->wacom_wac.features.type == WACOM_24HD)
3039 return wacom_24hd_update_leds(wacom, mask, group);
3040
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003041 pressed = wacom_is_led_toggled(wacom, button_count, mask, group);
3042 cur = wacom->led.groups[group].select;
3043
3044 led = wacom_led_find(wacom, group, cur);
3045 if (!led) {
3046 hid_err(wacom->hdev, "can't find current LED %d in group %d\n",
3047 cur, group);
3048 return;
3049 }
3050
3051 if (!pressed) {
3052 led->held = false;
3053 return;
3054 }
3055
3056 if (led->held && pressed)
3057 return;
3058
3059 next_led = wacom_led_next(wacom, led);
3060 if (!next_led) {
3061 hid_err(wacom->hdev, "can't find next LED in group %d\n",
3062 group);
3063 return;
3064 }
3065 if (next_led == led)
3066 return;
3067
3068 next_led->held = true;
3069 led_trigger_event(&next_led->trigger,
3070 wacom_leds_brightness_get(next_led));
3071}
3072
Jason Gereckec7f05222015-11-30 17:13:47 -08003073static void wacom_report_numbered_buttons(struct input_dev *input_dev,
3074 int button_count, int mask)
3075{
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003076 struct wacom *wacom = input_get_drvdata(input_dev);
Jason Gereckec7f05222015-11-30 17:13:47 -08003077 int i;
3078
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003079 for (i = 0; i < wacom->led.count; i++)
3080 wacom_update_led(wacom, button_count, mask, i);
3081
Jason Gerecke49005b92016-10-19 18:03:39 -07003082 for (i = 0; i < button_count; i++) {
3083 int key = wacom_numbered_button_to_key(i);
3084
3085 if (key)
3086 input_report_key(input_dev, key, mask & (1 << i));
3087 }
Jason Gereckec7f05222015-11-30 17:13:47 -08003088}
3089
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003090int wacom_setup_pad_input_capabilities(struct input_dev *input_dev,
3091 struct wacom_wac *wacom_wac)
3092{
3093 struct wacom_features *features = &wacom_wac->features;
3094
Jason Gerecke862cf552015-06-15 18:01:43 -07003095 if (!(features->device_type & WACOM_DEVICETYPE_PAD))
3096 return -ENODEV;
3097
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02003098 if (features->type == REMOTE && input_dev == wacom_wac->pad_input)
3099 return -ENODEV;
3100
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003101 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
3102
3103 /* kept for making legacy xf86-input-wacom working with the wheels */
3104 __set_bit(ABS_MISC, input_dev->absbit);
3105
3106 /* kept for making legacy xf86-input-wacom accepting the pad */
3107 input_set_abs_params(input_dev, ABS_X, 0, 1, 0, 0);
3108 input_set_abs_params(input_dev, ABS_Y, 0, 1, 0, 0);
3109
Benjamin Tissoires12969e32014-09-11 13:14:04 -04003110 /* kept for making udev and libwacom accepting the pad */
3111 __set_bit(BTN_STYLUS, input_dev->keybit);
3112
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003113 wacom_setup_numbered_buttons(input_dev, features->numbered_buttons);
3114
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003115 switch (features->type) {
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003116
3117 case CINTIQ_HYBRID:
Jason Gereckef7acb552015-10-13 10:03:49 -07003118 case CINTIQ_COMPANION_2:
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003119 case DTK:
3120 case DTUS:
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003121 case GRAPHIRE_BT:
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003122 break;
3123
Benjamin Tissoires38138102014-07-24 12:51:03 -07003124 case WACOM_MO:
3125 __set_bit(BTN_BACK, input_dev->keybit);
3126 __set_bit(BTN_LEFT, input_dev->keybit);
3127 __set_bit(BTN_FORWARD, input_dev->keybit);
3128 __set_bit(BTN_RIGHT, input_dev->keybit);
3129 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3130 break;
3131
3132 case WACOM_G4:
3133 __set_bit(BTN_BACK, input_dev->keybit);
Benjamin Tissoires38138102014-07-24 12:51:03 -07003134 __set_bit(BTN_FORWARD, input_dev->keybit);
Benjamin Tissoires38138102014-07-24 12:51:03 -07003135 input_set_capability(input_dev, EV_REL, REL_WHEEL);
3136 break;
3137
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003138 case WACOM_24HD:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003139 __set_bit(KEY_PROG1, input_dev->keybit);
3140 __set_bit(KEY_PROG2, input_dev->keybit);
3141 __set_bit(KEY_PROG3, input_dev->keybit);
3142
3143 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3144 input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0);
3145 break;
3146
Ping Cheng500d4162015-01-27 13:30:03 -08003147 case WACOM_27QHD:
3148 __set_bit(KEY_PROG1, input_dev->keybit);
3149 __set_bit(KEY_PROG2, input_dev->keybit);
3150 __set_bit(KEY_PROG3, input_dev->keybit);
3151 input_set_abs_params(input_dev, ABS_X, -2048, 2048, 0, 0);
3152 input_abs_set_res(input_dev, ABS_X, 1024); /* points/g */
3153 input_set_abs_params(input_dev, ABS_Y, -2048, 2048, 0, 0);
3154 input_abs_set_res(input_dev, ABS_Y, 1024);
3155 input_set_abs_params(input_dev, ABS_Z, -2048, 2048, 0, 0);
3156 input_abs_set_res(input_dev, ABS_Z, 1024);
3157 __set_bit(INPUT_PROP_ACCELEROMETER, input_dev->propbit);
3158 break;
3159
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003160 case WACOM_22HD:
3161 __set_bit(KEY_PROG1, input_dev->keybit);
3162 __set_bit(KEY_PROG2, input_dev->keybit);
3163 __set_bit(KEY_PROG3, input_dev->keybit);
3164 /* fall through */
3165
3166 case WACOM_21UX2:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003167 case WACOM_BEE:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003168 case CINTIQ:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003169 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
3170 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
3171 break;
3172
3173 case WACOM_13HD:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003174 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3175 break;
3176
3177 case INTUOS3:
3178 case INTUOS3L:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003179 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
3180 /* fall through */
3181
3182 case INTUOS3S:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003183 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
3184 break;
3185
3186 case INTUOS5:
3187 case INTUOS5L:
3188 case INTUOSPM:
3189 case INTUOSPL:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003190 case INTUOS5S:
3191 case INTUOSPS:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003192 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3193 break;
3194
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07003195 case INTUOS4WL:
3196 /*
3197 * For Bluetooth devices, the udev rule does not work correctly
3198 * for pads unless we add a stylus capability, which forces
3199 * ID_INPUT_TABLET to be set.
3200 */
3201 __set_bit(BTN_STYLUS, input_dev->keybit);
3202 /* fall through */
3203
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003204 case INTUOS4:
3205 case INTUOS4L:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003206 case INTUOS4S:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003207 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3208 break;
3209
Benjamin Tissoires31168712014-07-24 12:50:10 -07003210 case INTUOSHT:
3211 case BAMBOO_PT:
Ping Cheng3b164a02015-09-23 09:59:10 -07003212 case BAMBOO_TOUCH:
Ping Chengeda01da2015-09-23 13:51:15 -07003213 case INTUOSHT2:
Benjamin Tissoires31168712014-07-24 12:50:10 -07003214 __clear_bit(ABS_MISC, input_dev->absbit);
3215
3216 __set_bit(BTN_LEFT, input_dev->keybit);
3217 __set_bit(BTN_FORWARD, input_dev->keybit);
3218 __set_bit(BTN_BACK, input_dev->keybit);
3219 __set_bit(BTN_RIGHT, input_dev->keybit);
3220
3221 break;
3222
Aaron Skomra72b236d2015-08-20 16:05:17 -07003223 case REMOTE:
3224 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
3225 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3226 break;
3227
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003228 default:
3229 /* no pad supported */
Ping Chengb3c8e932014-11-18 13:27:48 -08003230 return -ENODEV;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003231 }
3232 return 0;
3233}
3234
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003235static const struct wacom_features wacom_features_0x00 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003236 { "Wacom Penpartner", 5040, 3780, 255, 0,
3237 PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003238static const struct wacom_features wacom_features_0x10 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003239 { "Wacom Graphire", 10206, 7422, 511, 63,
3240 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003241static const struct wacom_features wacom_features_0x81 =
3242 { "Wacom Graphire BT", 16704, 12064, 511, 32,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003243 GRAPHIRE_BT, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES, 2 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003244static const struct wacom_features wacom_features_0x11 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003245 { "Wacom Graphire2 4x5", 10206, 7422, 511, 63,
3246 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003247static const struct wacom_features wacom_features_0x12 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003248 { "Wacom Graphire2 5x7", 13918, 10206, 511, 63,
3249 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003250static const struct wacom_features wacom_features_0x13 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003251 { "Wacom Graphire3", 10208, 7424, 511, 63,
3252 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003253static const struct wacom_features wacom_features_0x14 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003254 { "Wacom Graphire3 6x8", 16704, 12064, 511, 63,
3255 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003256static const struct wacom_features wacom_features_0x15 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003257 { "Wacom Graphire4 4x5", 10208, 7424, 511, 63,
3258 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003259static const struct wacom_features wacom_features_0x16 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003260 { "Wacom Graphire4 6x8", 16704, 12064, 511, 63,
3261 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003262static const struct wacom_features wacom_features_0x17 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003263 { "Wacom BambooFun 4x5", 14760, 9225, 511, 63,
3264 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003265static const struct wacom_features wacom_features_0x18 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003266 { "Wacom BambooFun 6x8", 21648, 13530, 511, 63,
3267 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003268static const struct wacom_features wacom_features_0x19 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003269 { "Wacom Bamboo1 Medium", 16704, 12064, 511, 63,
3270 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003271static const struct wacom_features wacom_features_0x60 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003272 { "Wacom Volito", 5104, 3712, 511, 63,
3273 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003274static const struct wacom_features wacom_features_0x61 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003275 { "Wacom PenStation2", 3250, 2320, 255, 63,
3276 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003277static const struct wacom_features wacom_features_0x62 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003278 { "Wacom Volito2 4x5", 5104, 3712, 511, 63,
3279 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003280static const struct wacom_features wacom_features_0x63 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003281 { "Wacom Volito2 2x3", 3248, 2320, 511, 63,
3282 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003283static const struct wacom_features wacom_features_0x64 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003284 { "Wacom PenPartner2", 3250, 2320, 511, 63,
3285 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003286static const struct wacom_features wacom_features_0x65 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003287 { "Wacom Bamboo", 14760, 9225, 511, 63,
3288 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003289static const struct wacom_features wacom_features_0x69 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003290 { "Wacom Bamboo1", 5104, 3712, 511, 63,
3291 GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07003292static const struct wacom_features wacom_features_0x6A =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003293 { "Wacom Bamboo1 4x6", 14760, 9225, 1023, 63,
3294 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07003295static const struct wacom_features wacom_features_0x6B =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003296 { "Wacom Bamboo1 5x8", 21648, 13530, 1023, 63,
3297 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003298static const struct wacom_features wacom_features_0x20 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003299 { "Wacom Intuos 4x5", 12700, 10600, 1023, 31,
3300 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003301static const struct wacom_features wacom_features_0x21 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003302 { "Wacom Intuos 6x8", 20320, 16240, 1023, 31,
3303 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003304static const struct wacom_features wacom_features_0x22 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003305 { "Wacom Intuos 9x12", 30480, 24060, 1023, 31,
3306 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003307static const struct wacom_features wacom_features_0x23 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003308 { "Wacom Intuos 12x12", 30480, 31680, 1023, 31,
3309 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003310static const struct wacom_features wacom_features_0x24 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003311 { "Wacom Intuos 12x18", 45720, 31680, 1023, 31,
3312 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003313static const struct wacom_features wacom_features_0x30 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003314 { "Wacom PL400", 5408, 4056, 255, 0,
3315 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003316static const struct wacom_features wacom_features_0x31 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003317 { "Wacom PL500", 6144, 4608, 255, 0,
3318 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003319static const struct wacom_features wacom_features_0x32 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003320 { "Wacom PL600", 6126, 4604, 255, 0,
3321 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003322static const struct wacom_features wacom_features_0x33 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003323 { "Wacom PL600SX", 6260, 5016, 255, 0,
3324 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003325static const struct wacom_features wacom_features_0x34 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003326 { "Wacom PL550", 6144, 4608, 511, 0,
3327 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003328static const struct wacom_features wacom_features_0x35 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003329 { "Wacom PL800", 7220, 5780, 511, 0,
3330 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003331static const struct wacom_features wacom_features_0x37 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003332 { "Wacom PL700", 6758, 5406, 511, 0,
3333 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003334static const struct wacom_features wacom_features_0x38 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003335 { "Wacom PL510", 6282, 4762, 511, 0,
3336 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003337static const struct wacom_features wacom_features_0x39 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003338 { "Wacom DTU710", 34080, 27660, 511, 0,
3339 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003340static const struct wacom_features wacom_features_0xC4 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003341 { "Wacom DTF521", 6282, 4762, 511, 0,
3342 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003343static const struct wacom_features wacom_features_0xC0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003344 { "Wacom DTF720", 6858, 5506, 511, 0,
3345 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003346static const struct wacom_features wacom_features_0xC2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003347 { "Wacom DTF720a", 6858, 5506, 511, 0,
3348 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003349static const struct wacom_features wacom_features_0x03 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003350 { "Wacom Cintiq Partner", 20480, 15360, 511, 0,
3351 PTU, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003352static const struct wacom_features wacom_features_0x41 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003353 { "Wacom Intuos2 4x5", 12700, 10600, 1023, 31,
3354 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003355static const struct wacom_features wacom_features_0x42 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003356 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3357 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003358static const struct wacom_features wacom_features_0x43 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003359 { "Wacom Intuos2 9x12", 30480, 24060, 1023, 31,
3360 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003361static const struct wacom_features wacom_features_0x44 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003362 { "Wacom Intuos2 12x12", 30480, 31680, 1023, 31,
3363 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003364static const struct wacom_features wacom_features_0x45 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003365 { "Wacom Intuos2 12x18", 45720, 31680, 1023, 31,
3366 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003367static const struct wacom_features wacom_features_0xB0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003368 { "Wacom Intuos3 4x5", 25400, 20320, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003369 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003370static const struct wacom_features wacom_features_0xB1 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003371 { "Wacom Intuos3 6x8", 40640, 30480, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003372 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003373static const struct wacom_features wacom_features_0xB2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003374 { "Wacom Intuos3 9x12", 60960, 45720, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003375 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003376static const struct wacom_features wacom_features_0xB3 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003377 { "Wacom Intuos3 12x12", 60960, 60960, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003378 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003379static const struct wacom_features wacom_features_0xB4 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003380 { "Wacom Intuos3 12x19", 97536, 60960, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003381 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003382static const struct wacom_features wacom_features_0xB5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003383 { "Wacom Intuos3 6x11", 54204, 31750, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003384 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003385static const struct wacom_features wacom_features_0xB7 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003386 { "Wacom Intuos3 4x6", 31496, 19685, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003387 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003388static const struct wacom_features wacom_features_0xB8 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003389 { "Wacom Intuos4 4x6", 31496, 19685, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003390 INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003391static const struct wacom_features wacom_features_0xB9 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003392 { "Wacom Intuos4 6x9", 44704, 27940, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003393 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003394static const struct wacom_features wacom_features_0xBA =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003395 { "Wacom Intuos4 8x13", 65024, 40640, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003396 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003397static const struct wacom_features wacom_features_0xBB =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003398 { "Wacom Intuos4 12x19", 97536, 60960, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003399 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07003400static const struct wacom_features wacom_features_0xBC =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003401 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003402 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07003403static const struct wacom_features wacom_features_0xBD =
3404 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003405 INTUOS4WL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003406static const struct wacom_features wacom_features_0x26 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003407 { "Wacom Intuos5 touch S", 31496, 19685, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003408 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003409static const struct wacom_features wacom_features_0x27 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003410 { "Wacom Intuos5 touch M", 44704, 27940, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003411 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003412static const struct wacom_features wacom_features_0x28 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003413 { "Wacom Intuos5 touch L", 65024, 40640, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003414 INTUOS5L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003415static const struct wacom_features wacom_features_0x29 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003416 { "Wacom Intuos5 S", 31496, 19685, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003417 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003418static const struct wacom_features wacom_features_0x2A =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003419 { "Wacom Intuos5 M", 44704, 27940, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003420 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Ping Cheng9a35c412013-09-20 09:51:56 -07003421static const struct wacom_features wacom_features_0x314 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003422 { "Wacom Intuos Pro S", 31496, 19685, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003423 INTUOSPS, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003424 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng9a35c412013-09-20 09:51:56 -07003425static const struct wacom_features wacom_features_0x315 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003426 { "Wacom Intuos Pro M", 44704, 27940, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003427 INTUOSPM, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003428 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng9a35c412013-09-20 09:51:56 -07003429static const struct wacom_features wacom_features_0x317 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003430 { "Wacom Intuos Pro L", 65024, 40640, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003431 INTUOSPL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003432 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Jason Gerecke803296b2011-12-12 00:11:45 -08003433static const struct wacom_features wacom_features_0xF4 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003434 { "Wacom Cintiq 24HD", 104480, 65600, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003435 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
Jason Gereckee779ef22016-10-19 18:03:49 -07003436 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08003437 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Jason Gerecke6f4d0382012-08-21 22:11:59 -07003438static const struct wacom_features wacom_features_0xF8 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003439 { "Wacom Cintiq 24HD touch", 104480, 65600, 2047, 63, /* Pen */
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003440 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
Ping Chengfa770342014-12-01 13:44:28 -08003441 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003442 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Cheng3bd1f7e2013-05-23 10:22:33 -07003443 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf6 };
Jason Gereckeb1e42792012-10-21 00:38:04 -07003444static const struct wacom_features wacom_features_0xF6 =
3445 { "Wacom Cintiq 24HD touch", .type = WACOM_24HDT, /* Touch */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003446 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf8, .touch_max = 10,
3447 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng500d4162015-01-27 13:30:03 -08003448static const struct wacom_features wacom_features_0x32A =
Jason Gereckee779ef22016-10-19 18:03:49 -07003449 { "Wacom Cintiq 27QHD", 120140, 67920, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003450 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
Jason Gereckee779ef22016-10-19 18:03:49 -07003451 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chenga7e66452015-02-04 16:01:54 -08003452 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Cheng500d4162015-01-27 13:30:03 -08003453static const struct wacom_features wacom_features_0x32B =
Jason Gereckee779ef22016-10-19 18:03:49 -07003454 { "Wacom Cintiq 27QHD touch", 120140, 67920, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003455 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
Ping Cheng500d4162015-01-27 13:30:03 -08003456 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003457 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Cheng500d4162015-01-27 13:30:03 -08003458 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32C };
3459static const struct wacom_features wacom_features_0x32C =
3460 { "Wacom Cintiq 27QHD touch", .type = WACOM_27QHDT,
3461 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32B, .touch_max = 10 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003462static const struct wacom_features wacom_features_0x3F =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003463 { "Wacom Cintiq 21UX", 87200, 65600, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003464 CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003465static const struct wacom_features wacom_features_0xC5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003466 { "Wacom Cintiq 20WSX", 86680, 54180, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003467 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003468static const struct wacom_features wacom_features_0xC6 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003469 { "Wacom Cintiq 12WX", 53020, 33440, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003470 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
Ping Cheng56218562013-05-05 19:56:18 -07003471static const struct wacom_features wacom_features_0x304 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003472 { "Wacom Cintiq 13HD", 59552, 33848, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003473 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
Jason Gereckee779ef22016-10-19 18:03:49 -07003474 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08003475 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Chengb4bf2122015-03-25 17:08:13 -07003476static const struct wacom_features wacom_features_0x333 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003477 { "Wacom Cintiq 13HD touch", 59552, 33848, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003478 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
Ping Chengb4bf2122015-03-25 17:08:13 -07003479 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003480 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengb4bf2122015-03-25 17:08:13 -07003481 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x335 };
3482static const struct wacom_features wacom_features_0x335 =
3483 { "Wacom Cintiq 13HD touch", .type = WACOM_24HDT, /* Touch */
3484 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x333, .touch_max = 10,
3485 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003486static const struct wacom_features wacom_features_0xC7 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003487 { "Wacom DTU1931", 37832, 30305, 511, 0,
3488 PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengc8f2edc2010-06-28 01:10:51 -07003489static const struct wacom_features wacom_features_0xCE =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003490 { "Wacom DTU2231", 47864, 27011, 511, 0,
3491 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003492 .check_for_hid_type = true, .hid_type = HID_TYPE_USBMOUSE };
Ping Chengc8f2edc2010-06-28 01:10:51 -07003493static const struct wacom_features wacom_features_0xF0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003494 { "Wacom DTU1631", 34623, 19553, 511, 0,
3495 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng497ab1f2014-01-20 20:18:04 -08003496static const struct wacom_features wacom_features_0xFB =
Jason Gereckee779ef22016-10-19 18:03:49 -07003497 { "Wacom DTU1031", 22096, 13960, 511, 0,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003498 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
Jason Gereckee779ef22016-10-19 18:03:49 -07003499 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08003500 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Ping Chengfff00bf2014-12-04 18:23:04 -08003501static const struct wacom_features wacom_features_0x32F =
Jason Gereckee779ef22016-10-19 18:03:49 -07003502 { "Wacom DTU1031X", 22672, 12928, 511, 0,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003503 DTUSX, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 0,
Jason Gereckee779ef22016-10-19 18:03:49 -07003504 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
Ping Chengfff00bf2014-12-04 18:23:04 -08003505 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Aaron Skomra007760c2015-04-16 15:01:14 -07003506static const struct wacom_features wacom_features_0x336 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003507 { "Wacom DTU1141", 23672, 13403, 1023, 0,
Ping Chengff38e822015-11-12 17:21:14 -08003508 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
Jason Gereckee779ef22016-10-19 18:03:49 -07003509 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
Ping Chengff38e822015-11-12 17:21:14 -08003510 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Ping Cheng56218562013-05-05 19:56:18 -07003511static const struct wacom_features wacom_features_0x57 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003512 { "Wacom DTK2241", 95840, 54260, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003513 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
Jason Gereckee779ef22016-10-19 18:03:49 -07003514 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08003515 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Chenga112e9f2013-02-13 20:20:01 -08003516static const struct wacom_features wacom_features_0x59 = /* Pen */
Jason Gereckee779ef22016-10-19 18:03:49 -07003517 { "Wacom DTH2242", 95840, 54260, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003518 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
Ping Chengfa770342014-12-01 13:44:28 -08003519 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003520 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chenga112e9f2013-02-13 20:20:01 -08003521 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5D };
3522static const struct wacom_features wacom_features_0x5D = /* Touch */
3523 { "Wacom DTH2242", .type = WACOM_24HDT,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003524 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x59, .touch_max = 10,
3525 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07003526static const struct wacom_features wacom_features_0xCC =
Jason Gereckee779ef22016-10-19 18:03:49 -07003527 { "Wacom Cintiq 21UX2", 87200, 65600, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003528 WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
Jason Gereckee779ef22016-10-19 18:03:49 -07003529 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08003530 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Chengd838c642012-07-24 23:54:11 -07003531static const struct wacom_features wacom_features_0xFA =
Jason Gereckee779ef22016-10-19 18:03:49 -07003532 { "Wacom Cintiq 22HD", 95840, 54260, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003533 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
Jason Gereckee779ef22016-10-19 18:03:49 -07003534 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08003535 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Cheng56218562013-05-05 19:56:18 -07003536static const struct wacom_features wacom_features_0x5B =
Jason Gereckee779ef22016-10-19 18:03:49 -07003537 { "Wacom Cintiq 22HDT", 95840, 54260, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003538 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
Ping Chengfa770342014-12-01 13:44:28 -08003539 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003540 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Cheng3bd1f7e2013-05-23 10:22:33 -07003541 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5e };
Ping Cheng56218562013-05-05 19:56:18 -07003542static const struct wacom_features wacom_features_0x5E =
3543 { "Wacom Cintiq 22HDT", .type = WACOM_24HDT,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003544 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5b, .touch_max = 10,
3545 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003546static const struct wacom_features wacom_features_0x90 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003547 { "Wacom ISDv4 90", 26202, 16325, 255, 0,
3548 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003549static const struct wacom_features wacom_features_0x93 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003550 { "Wacom ISDv4 93", 26202, 16325, 255, 0,
3551 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07003552static const struct wacom_features wacom_features_0x97 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003553 { "Wacom ISDv4 97", 26202, 16325, 511, 0,
3554 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003555static const struct wacom_features wacom_features_0x9A =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003556 { "Wacom ISDv4 9A", 26202, 16325, 255, 0,
3557 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003558static const struct wacom_features wacom_features_0x9F =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003559 { "Wacom ISDv4 9F", 26202, 16325, 255, 0,
3560 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003561static const struct wacom_features wacom_features_0xE2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003562 { "Wacom ISDv4 E2", 26202, 16325, 255, 0,
3563 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003564static const struct wacom_features wacom_features_0xE3 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003565 { "Wacom ISDv4 E3", 26202, 16325, 255, 0,
3566 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng19635182012-04-29 21:09:18 -07003567static const struct wacom_features wacom_features_0xE5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003568 { "Wacom ISDv4 E5", 26202, 16325, 255, 0,
3569 MTSCREEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07003570static const struct wacom_features wacom_features_0xE6 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003571 { "Wacom ISDv4 E6", 27760, 15694, 255, 0,
3572 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Chris Bagwell0d0e3062011-12-11 23:50:59 -08003573static const struct wacom_features wacom_features_0xEC =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003574 { "Wacom ISDv4 EC", 25710, 14500, 255, 0,
3575 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengac173832012-06-12 00:15:06 -07003576static const struct wacom_features wacom_features_0xED =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003577 { "Wacom ISDv4 ED", 26202, 16325, 255, 0,
3578 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengac173832012-06-12 00:15:06 -07003579static const struct wacom_features wacom_features_0xEF =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003580 { "Wacom ISDv4 EF", 26202, 16325, 255, 0,
3581 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng6afdc282012-11-03 12:16:15 -07003582static const struct wacom_features wacom_features_0x100 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003583 { "Wacom ISDv4 100", 26202, 16325, 255, 0,
3584 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng6afdc282012-11-03 12:16:15 -07003585static const struct wacom_features wacom_features_0x101 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003586 { "Wacom ISDv4 101", 26202, 16325, 255, 0,
3587 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Stephan Frank58694832013-03-07 14:08:50 -08003588static const struct wacom_features wacom_features_0x10D =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003589 { "Wacom ISDv4 10D", 26202, 16325, 255, 0,
3590 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecke2d3163f2013-10-22 15:35:30 -07003591static const struct wacom_features wacom_features_0x10E =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003592 { "Wacom ISDv4 10E", 27760, 15694, 255, 0,
3593 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecke9b4f60e2013-10-15 23:46:34 -07003594static const struct wacom_features wacom_features_0x10F =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003595 { "Wacom ISDv4 10F", 27760, 15694, 255, 0,
3596 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecke61616ed2014-05-14 11:42:22 -07003597static const struct wacom_features wacom_features_0x116 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003598 { "Wacom ISDv4 116", 26202, 16325, 255, 0,
3599 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gereckeaeaf50d2014-07-28 10:53:16 -07003600static const struct wacom_features wacom_features_0x12C =
3601 { "Wacom ISDv4 12C", 27848, 15752, 2047, 0,
3602 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengedbe2652012-11-21 13:12:50 -08003603static const struct wacom_features wacom_features_0x4001 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003604 { "Wacom ISDv4 4001", 26202, 16325, 255, 0,
3605 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecked51ddb22014-05-14 17:14:29 -07003606static const struct wacom_features wacom_features_0x4004 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003607 { "Wacom ISDv4 4004", 11060, 6220, 255, 0,
3608 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecked51ddb22014-05-14 17:14:29 -07003609static const struct wacom_features wacom_features_0x5000 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003610 { "Wacom ISDv4 5000", 27848, 15752, 1023, 0,
3611 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecked51ddb22014-05-14 17:14:29 -07003612static const struct wacom_features wacom_features_0x5002 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003613 { "Wacom ISDv4 5002", 29576, 16724, 1023, 0,
3614 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003615static const struct wacom_features wacom_features_0x47 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003616 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3617 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Chris Bagwelld3825d52012-03-25 23:26:11 -07003618static const struct wacom_features wacom_features_0x84 =
Ping Cheng3b164a02015-09-23 09:59:10 -07003619 { "Wacom Wireless Receiver", .type = WIRELESS, .touch_max = 16 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003620static const struct wacom_features wacom_features_0xD0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003621 { "Wacom Bamboo 2FG", 14720, 9200, 1023, 31,
Ping Cheng3b164a02015-09-23 09:59:10 -07003622 BAMBOO_TOUCH, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003623static const struct wacom_features wacom_features_0xD1 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003624 { "Wacom Bamboo 2FG 4x5", 14720, 9200, 1023, 31,
3625 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003626static const struct wacom_features wacom_features_0xD2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003627 { "Wacom Bamboo Craft", 14720, 9200, 1023, 31,
3628 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003629static const struct wacom_features wacom_features_0xD3 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003630 { "Wacom Bamboo 2FG 6x8", 21648, 13700, 1023, 31,
3631 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Kevin Granade57a78722010-12-10 23:04:02 -08003632static const struct wacom_features wacom_features_0xD4 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003633 { "Wacom Bamboo Pen", 14720, 9200, 1023, 31,
Ping Cheng3b164a02015-09-23 09:59:10 -07003634 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Gerard Braad18adad12011-08-16 00:17:56 -07003635static const struct wacom_features wacom_features_0xD5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003636 { "Wacom Bamboo Pen 6x8", 21648, 13700, 1023, 31,
Ping Cheng3b164a02015-09-23 09:59:10 -07003637 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003638static const struct wacom_features wacom_features_0xD6 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003639 { "Wacom BambooPT 2FG 4x5", 14720, 9200, 1023, 31,
3640 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003641static const struct wacom_features wacom_features_0xD7 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003642 { "Wacom BambooPT 2FG Small", 14720, 9200, 1023, 31,
3643 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003644static const struct wacom_features wacom_features_0xD8 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003645 { "Wacom Bamboo Comic 2FG", 21648, 13700, 1023, 31,
3646 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07003647static const struct wacom_features wacom_features_0xDA =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003648 { "Wacom Bamboo 2FG 4x5 SE", 14720, 9200, 1023, 31,
3649 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Chengf41a64e2013-08-21 09:14:49 -07003650static const struct wacom_features wacom_features_0xDB =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003651 { "Wacom Bamboo 2FG 6x8 SE", 21648, 13700, 1023, 31,
3652 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Chris Bagwell73149ab2011-10-26 22:34:21 -07003653static const struct wacom_features wacom_features_0xDD =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003654 { "Wacom Bamboo Connect", 14720, 9200, 1023, 31,
3655 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Chris Bagwell73149ab2011-10-26 22:34:21 -07003656static const struct wacom_features wacom_features_0xDE =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003657 { "Wacom Bamboo 16FG 4x5", 14720, 9200, 1023, 31,
3658 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
Chris Bagwell73149ab2011-10-26 22:34:21 -07003659static const struct wacom_features wacom_features_0xDF =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003660 { "Wacom Bamboo 16FG 6x8", 21648, 13700, 1023, 31,
3661 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
Ping Chengf41a64e2013-08-21 09:14:49 -07003662static const struct wacom_features wacom_features_0x300 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003663 { "Wacom Bamboo One S", 14720, 9225, 1023, 31,
Ping Cheng3b164a02015-09-23 09:59:10 -07003664 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengf41a64e2013-08-21 09:14:49 -07003665static const struct wacom_features wacom_features_0x301 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003666 { "Wacom Bamboo One M", 21648, 13530, 1023, 31,
3667 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengb5fd2a32013-11-25 18:44:55 -08003668static const struct wacom_features wacom_features_0x302 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003669 { "Wacom Intuos PT S", 15200, 9500, 1023, 31,
3670 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003671 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Chengb5fd2a32013-11-25 18:44:55 -08003672static const struct wacom_features wacom_features_0x303 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003673 { "Wacom Intuos PT M", 21600, 13500, 1023, 31,
3674 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003675 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Chengb5fd2a32013-11-25 18:44:55 -08003676static const struct wacom_features wacom_features_0x30E =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003677 { "Wacom Intuos S", 15200, 9500, 1023, 31,
3678 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003679 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08003680static const struct wacom_features wacom_features_0x6004 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003681 { "ISD-V4", 12800, 8000, 255, 0,
3682 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003683static const struct wacom_features wacom_features_0x307 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003684 { "Wacom ISDv5 307", 59552, 33848, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003685 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
Ping Chengfa770342014-12-01 13:44:28 -08003686 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003687 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gerecke36d3c512013-09-20 09:47:35 -07003688 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x309 };
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003689static const struct wacom_features wacom_features_0x309 =
Jason Gerecke36d3c512013-09-20 09:47:35 -07003690 { "Wacom ISDv5 309", .type = WACOM_24HDT, /* Touch */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003691 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x0307, .touch_max = 10,
3692 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Benjamin Tissoires89f2ab52014-09-03 15:43:25 -04003693static const struct wacom_features wacom_features_0x30A =
Jason Gereckee779ef22016-10-19 18:03:49 -07003694 { "Wacom ISDv5 30A", 59552, 33848, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003695 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
Ping Chengfa770342014-12-01 13:44:28 -08003696 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003697 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Benjamin Tissoires89f2ab52014-09-03 15:43:25 -04003698 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30C };
3699static const struct wacom_features wacom_features_0x30C =
3700 { "Wacom ISDv5 30C", .type = WACOM_24HDT, /* Touch */
3701 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30A, .touch_max = 10,
3702 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05003703static const struct wacom_features wacom_features_0x318 =
3704 { "Wacom USB Bamboo PAD", 4095, 4095, /* Touch */
3705 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
3706static const struct wacom_features wacom_features_0x319 =
3707 { "Wacom Wireless Bamboo PAD", 4095, 4095, /* Touch */
3708 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
Jason Gereckef7acb552015-10-13 10:03:49 -07003709static const struct wacom_features wacom_features_0x325 =
3710 { "Wacom ISDv5 325", 59552, 33848, 2047, 63,
3711 CINTIQ_COMPANION_2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 11,
3712 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003713 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckef7acb552015-10-13 10:03:49 -07003714 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x326 };
3715static const struct wacom_features wacom_features_0x326 = /* Touch */
3716 { "Wacom ISDv5 326", .type = HID_GENERIC, .oVid = USB_VENDOR_ID_WACOM,
3717 .oPid = 0x325 };
Ping Chengfefb3912014-11-11 12:52:08 -08003718static const struct wacom_features wacom_features_0x323 =
3719 { "Wacom Intuos P M", 21600, 13500, 1023, 31,
3720 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3721 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Aaron Skomra72b236d2015-08-20 16:05:17 -07003722static const struct wacom_features wacom_features_0x331 =
Ping Cheng3b164a02015-09-23 09:59:10 -07003723 { "Wacom Express Key Remote", .type = REMOTE,
3724 .numbered_buttons = 18, .check_for_hid_type = true,
Aaron Skomra72b236d2015-08-20 16:05:17 -07003725 .hid_type = HID_TYPE_USBNONE };
Ping Chengeda01da2015-09-23 13:51:15 -07003726static const struct wacom_features wacom_features_0x33B =
3727 { "Wacom Intuos S 2", 15200, 9500, 2047, 63,
3728 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3729 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3730static const struct wacom_features wacom_features_0x33C =
3731 { "Wacom Intuos PT S 2", 15200, 9500, 2047, 63,
3732 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3733 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3734static const struct wacom_features wacom_features_0x33D =
3735 { "Wacom Intuos P M 2", 21600, 13500, 2047, 63,
3736 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3737 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3738static const struct wacom_features wacom_features_0x33E =
3739 { "Wacom Intuos PT M 2", 21600, 13500, 2047, 63,
3740 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3741 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Chenge1123fe2016-04-12 13:37:45 -07003742static const struct wacom_features wacom_features_0x343 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003743 { "Wacom DTK1651", 34816, 19759, 1023, 0,
Ping Chenge1123fe2016-04-12 13:37:45 -07003744 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
Jason Gereckee779ef22016-10-19 18:03:49 -07003745 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
Ping Chenge1123fe2016-04-12 13:37:45 -07003746 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Bastian Blankb036f6f2010-02-10 23:06:23 -08003747
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04003748static const struct wacom_features wacom_features_HID_ANY_ID =
Jason Gerecke41372d52016-08-08 12:06:30 -07003749 { "Wacom HID", .type = HID_GENERIC, .oVid = HID_ANY_ID, .oPid = HID_ANY_ID };
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04003750
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003751#define USB_DEVICE_WACOM(prod) \
3752 HID_DEVICE(BUS_USB, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3753 .driver_data = (kernel_ulong_t)&wacom_features_##prod
Bastian Blankb036f6f2010-02-10 23:06:23 -08003754
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003755#define BT_DEVICE_WACOM(prod) \
3756 HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3757 .driver_data = (kernel_ulong_t)&wacom_features_##prod
Aristeu Rozanski1483f552011-06-22 01:17:17 -07003758
Mika Westerbergeef23a82015-02-23 15:52:43 +02003759#define I2C_DEVICE_WACOM(prod) \
3760 HID_DEVICE(BUS_I2C, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3761 .driver_data = (kernel_ulong_t)&wacom_features_##prod
3762
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08003763#define USB_DEVICE_LENOVO(prod) \
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003764 HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
3765 .driver_data = (kernel_ulong_t)&wacom_features_##prod
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08003766
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003767const struct hid_device_id wacom_ids[] = {
Bastian Blankb036f6f2010-02-10 23:06:23 -08003768 { USB_DEVICE_WACOM(0x00) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003769 { USB_DEVICE_WACOM(0x03) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003770 { USB_DEVICE_WACOM(0x10) },
3771 { USB_DEVICE_WACOM(0x11) },
3772 { USB_DEVICE_WACOM(0x12) },
3773 { USB_DEVICE_WACOM(0x13) },
3774 { USB_DEVICE_WACOM(0x14) },
3775 { USB_DEVICE_WACOM(0x15) },
3776 { USB_DEVICE_WACOM(0x16) },
3777 { USB_DEVICE_WACOM(0x17) },
3778 { USB_DEVICE_WACOM(0x18) },
3779 { USB_DEVICE_WACOM(0x19) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003780 { USB_DEVICE_WACOM(0x20) },
3781 { USB_DEVICE_WACOM(0x21) },
3782 { USB_DEVICE_WACOM(0x22) },
3783 { USB_DEVICE_WACOM(0x23) },
3784 { USB_DEVICE_WACOM(0x24) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003785 { USB_DEVICE_WACOM(0x26) },
3786 { USB_DEVICE_WACOM(0x27) },
3787 { USB_DEVICE_WACOM(0x28) },
3788 { USB_DEVICE_WACOM(0x29) },
3789 { USB_DEVICE_WACOM(0x2A) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003790 { USB_DEVICE_WACOM(0x30) },
3791 { USB_DEVICE_WACOM(0x31) },
3792 { USB_DEVICE_WACOM(0x32) },
3793 { USB_DEVICE_WACOM(0x33) },
3794 { USB_DEVICE_WACOM(0x34) },
3795 { USB_DEVICE_WACOM(0x35) },
3796 { USB_DEVICE_WACOM(0x37) },
3797 { USB_DEVICE_WACOM(0x38) },
3798 { USB_DEVICE_WACOM(0x39) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003799 { USB_DEVICE_WACOM(0x3F) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003800 { USB_DEVICE_WACOM(0x41) },
3801 { USB_DEVICE_WACOM(0x42) },
3802 { USB_DEVICE_WACOM(0x43) },
3803 { USB_DEVICE_WACOM(0x44) },
3804 { USB_DEVICE_WACOM(0x45) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003805 { USB_DEVICE_WACOM(0x47) },
Ping Cheng56218562013-05-05 19:56:18 -07003806 { USB_DEVICE_WACOM(0x57) },
Ping Chenga112e9f2013-02-13 20:20:01 -08003807 { USB_DEVICE_WACOM(0x59) },
Ping Cheng56218562013-05-05 19:56:18 -07003808 { USB_DEVICE_WACOM(0x5B) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003809 { USB_DEVICE_WACOM(0x5D) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003810 { USB_DEVICE_WACOM(0x5E) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003811 { USB_DEVICE_WACOM(0x60) },
3812 { USB_DEVICE_WACOM(0x61) },
3813 { USB_DEVICE_WACOM(0x62) },
3814 { USB_DEVICE_WACOM(0x63) },
3815 { USB_DEVICE_WACOM(0x64) },
3816 { USB_DEVICE_WACOM(0x65) },
3817 { USB_DEVICE_WACOM(0x69) },
3818 { USB_DEVICE_WACOM(0x6A) },
3819 { USB_DEVICE_WACOM(0x6B) },
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003820 { BT_DEVICE_WACOM(0x81) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003821 { USB_DEVICE_WACOM(0x84) },
3822 { USB_DEVICE_WACOM(0x90) },
3823 { USB_DEVICE_WACOM(0x93) },
3824 { USB_DEVICE_WACOM(0x97) },
3825 { USB_DEVICE_WACOM(0x9A) },
3826 { USB_DEVICE_WACOM(0x9F) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003827 { USB_DEVICE_WACOM(0xB0) },
3828 { USB_DEVICE_WACOM(0xB1) },
3829 { USB_DEVICE_WACOM(0xB2) },
3830 { USB_DEVICE_WACOM(0xB3) },
3831 { USB_DEVICE_WACOM(0xB4) },
3832 { USB_DEVICE_WACOM(0xB5) },
3833 { USB_DEVICE_WACOM(0xB7) },
3834 { USB_DEVICE_WACOM(0xB8) },
3835 { USB_DEVICE_WACOM(0xB9) },
3836 { USB_DEVICE_WACOM(0xBA) },
3837 { USB_DEVICE_WACOM(0xBB) },
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07003838 { USB_DEVICE_WACOM(0xBC) },
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07003839 { BT_DEVICE_WACOM(0xBD) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003840 { USB_DEVICE_WACOM(0xC0) },
3841 { USB_DEVICE_WACOM(0xC2) },
3842 { USB_DEVICE_WACOM(0xC4) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003843 { USB_DEVICE_WACOM(0xC5) },
3844 { USB_DEVICE_WACOM(0xC6) },
3845 { USB_DEVICE_WACOM(0xC7) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003846 { USB_DEVICE_WACOM(0xCC) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003847 { USB_DEVICE_WACOM(0xCE) },
Henrik Rydbergcb734c02010-09-05 12:53:16 -07003848 { USB_DEVICE_WACOM(0xD0) },
Chris Bagwell2aaacb12010-09-12 00:11:35 -07003849 { USB_DEVICE_WACOM(0xD1) },
3850 { USB_DEVICE_WACOM(0xD2) },
3851 { USB_DEVICE_WACOM(0xD3) },
Kevin Granade57a78722010-12-10 23:04:02 -08003852 { USB_DEVICE_WACOM(0xD4) },
Gerard Braad18adad12011-08-16 00:17:56 -07003853 { USB_DEVICE_WACOM(0xD5) },
Ping Chengd38acb42011-01-24 09:32:50 -08003854 { USB_DEVICE_WACOM(0xD6) },
3855 { USB_DEVICE_WACOM(0xD7) },
David Foleya318e6b2010-11-30 23:45:46 -08003856 { USB_DEVICE_WACOM(0xD8) },
3857 { USB_DEVICE_WACOM(0xDA) },
David Foley47d09232010-12-07 21:05:59 -08003858 { USB_DEVICE_WACOM(0xDB) },
Chris Bagwell73149ab2011-10-26 22:34:21 -07003859 { USB_DEVICE_WACOM(0xDD) },
3860 { USB_DEVICE_WACOM(0xDE) },
3861 { USB_DEVICE_WACOM(0xDF) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08003862 { USB_DEVICE_WACOM(0xE2) },
3863 { USB_DEVICE_WACOM(0xE3) },
Ping Cheng19635182012-04-29 21:09:18 -07003864 { USB_DEVICE_WACOM(0xE5) },
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07003865 { USB_DEVICE_WACOM(0xE6) },
Chris Bagwell0d0e3062011-12-11 23:50:59 -08003866 { USB_DEVICE_WACOM(0xEC) },
Ping Chengac173832012-06-12 00:15:06 -07003867 { USB_DEVICE_WACOM(0xED) },
3868 { USB_DEVICE_WACOM(0xEF) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003869 { USB_DEVICE_WACOM(0xF0) },
3870 { USB_DEVICE_WACOM(0xF4) },
3871 { USB_DEVICE_WACOM(0xF6) },
3872 { USB_DEVICE_WACOM(0xF8) },
3873 { USB_DEVICE_WACOM(0xFA) },
3874 { USB_DEVICE_WACOM(0xFB) },
Ping Cheng6afdc282012-11-03 12:16:15 -07003875 { USB_DEVICE_WACOM(0x100) },
3876 { USB_DEVICE_WACOM(0x101) },
Stephan Frank58694832013-03-07 14:08:50 -08003877 { USB_DEVICE_WACOM(0x10D) },
Jason Gerecke2d3163f2013-10-22 15:35:30 -07003878 { USB_DEVICE_WACOM(0x10E) },
Jason Gerecke9b4f60e2013-10-15 23:46:34 -07003879 { USB_DEVICE_WACOM(0x10F) },
Jason Gerecke61616ed2014-05-14 11:42:22 -07003880 { USB_DEVICE_WACOM(0x116) },
Jason Gereckeaeaf50d2014-07-28 10:53:16 -07003881 { USB_DEVICE_WACOM(0x12C) },
Ping Chengf41a64e2013-08-21 09:14:49 -07003882 { USB_DEVICE_WACOM(0x300) },
3883 { USB_DEVICE_WACOM(0x301) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003884 { USB_DEVICE_WACOM(0x302) },
3885 { USB_DEVICE_WACOM(0x303) },
Ping Cheng56218562013-05-05 19:56:18 -07003886 { USB_DEVICE_WACOM(0x304) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003887 { USB_DEVICE_WACOM(0x307) },
3888 { USB_DEVICE_WACOM(0x309) },
Benjamin Tissoires89f2ab52014-09-03 15:43:25 -04003889 { USB_DEVICE_WACOM(0x30A) },
3890 { USB_DEVICE_WACOM(0x30C) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07003891 { USB_DEVICE_WACOM(0x30E) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003892 { USB_DEVICE_WACOM(0x314) },
3893 { USB_DEVICE_WACOM(0x315) },
3894 { USB_DEVICE_WACOM(0x317) },
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05003895 { USB_DEVICE_WACOM(0x318) },
3896 { USB_DEVICE_WACOM(0x319) },
Ping Chengfefb3912014-11-11 12:52:08 -08003897 { USB_DEVICE_WACOM(0x323) },
Jason Gereckef7acb552015-10-13 10:03:49 -07003898 { USB_DEVICE_WACOM(0x325) },
3899 { USB_DEVICE_WACOM(0x326) },
Ping Cheng500d4162015-01-27 13:30:03 -08003900 { USB_DEVICE_WACOM(0x32A) },
3901 { USB_DEVICE_WACOM(0x32B) },
3902 { USB_DEVICE_WACOM(0x32C) },
Ping Chengfff00bf2014-12-04 18:23:04 -08003903 { USB_DEVICE_WACOM(0x32F) },
Aaron Skomra72b236d2015-08-20 16:05:17 -07003904 { USB_DEVICE_WACOM(0x331) },
Ping Chengb4bf2122015-03-25 17:08:13 -07003905 { USB_DEVICE_WACOM(0x333) },
3906 { USB_DEVICE_WACOM(0x335) },
Aaron Skomra007760c2015-04-16 15:01:14 -07003907 { USB_DEVICE_WACOM(0x336) },
Ping Chengeda01da2015-09-23 13:51:15 -07003908 { USB_DEVICE_WACOM(0x33B) },
3909 { USB_DEVICE_WACOM(0x33C) },
3910 { USB_DEVICE_WACOM(0x33D) },
3911 { USB_DEVICE_WACOM(0x33E) },
Ping Chenge1123fe2016-04-12 13:37:45 -07003912 { USB_DEVICE_WACOM(0x343) },
Ping Chengedbe2652012-11-21 13:12:50 -08003913 { USB_DEVICE_WACOM(0x4001) },
Jason Gerecked51ddb22014-05-14 17:14:29 -07003914 { USB_DEVICE_WACOM(0x4004) },
3915 { USB_DEVICE_WACOM(0x5000) },
3916 { USB_DEVICE_WACOM(0x5002) },
Benjamin Tissoires00d6f2272014-12-01 11:52:39 -05003917 { USB_DEVICE_LENOVO(0x6004) },
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04003918
3919 { USB_DEVICE_WACOM(HID_ANY_ID) },
Mika Westerbergeef23a82015-02-23 15:52:43 +02003920 { I2C_DEVICE_WACOM(HID_ANY_ID) },
Ping Cheng3bea7332006-07-13 18:01:36 -07003921 { }
3922};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003923MODULE_DEVICE_TABLE(hid, wacom_ids);