blob: 6b8f6b81619595f62449ed6157cc878cb29d9d6a [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
Jason Gerecke5922e612016-10-19 18:03:51 -070044static int wacom_numbered_button_to_key(int n);
45
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -080046static void wacom_update_led(struct wacom *wacom, int button_count, int mask,
47 int group);
Benjamin Tissoires387142b2014-08-06 13:52:56 -070048/*
49 * Percent of battery capacity for Graphire.
50 * 8th value means AC online and show 100% capacity.
51 */
52static unsigned short batcap_gr[8] = { 1, 15, 25, 35, 50, 70, 100, 100 };
53
Benjamin Tissoires81af7e62014-08-06 13:55:56 -070054/*
55 * Percent of battery capacity for Intuos4 WL, AC has a separate bit.
56 */
57static unsigned short batcap_i4[8] = { 1, 15, 30, 45, 60, 70, 85, 100 };
58
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +020059static void __wacom_notify_battery(struct wacom_battery *battery,
60 int bat_capacity, bool bat_charging,
61 bool bat_connected, bool ps_connected)
62{
63 bool changed = battery->battery_capacity != bat_capacity ||
64 battery->bat_charging != bat_charging ||
65 battery->bat_connected != bat_connected ||
66 battery->ps_connected != ps_connected;
67
68 if (changed) {
69 battery->battery_capacity = bat_capacity;
70 battery->bat_charging = bat_charging;
71 battery->bat_connected = bat_connected;
72 battery->ps_connected = ps_connected;
73
74 if (battery->battery)
75 power_supply_changed(battery->battery);
76 }
77}
78
Jason Gerecke953f2c52015-03-06 11:47:39 -080079static void wacom_notify_battery(struct wacom_wac *wacom_wac,
Jason Gerecke71fa6412015-03-11 10:25:41 -070080 int bat_capacity, bool bat_charging, bool bat_connected,
81 bool ps_connected)
Jason Gerecke953f2c52015-03-06 11:47:39 -080082{
83 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
Jason Gerecke953f2c52015-03-06 11:47:39 -080084
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +020085 __wacom_notify_battery(&wacom->battery, bat_capacity, bat_charging,
86 bat_connected, ps_connected);
Jason Gerecke953f2c52015-03-06 11:47:39 -080087}
88
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -070089static int wacom_penpartner_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -070090{
91 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -070092 struct input_dev *input = wacom->pen_input;
Ping Cheng3bea7332006-07-13 18:01:36 -070093
94 switch (data[0]) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -070095 case 1:
96 if (data[5] & 0x80) {
97 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
98 wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -070099 input_report_key(input, wacom->tool[0], 1);
100 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700101 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
102 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700103 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
104 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -127));
105 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700106 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700107 input_report_key(input, wacom->tool[0], 0);
108 input_report_abs(input, ABS_MISC, 0); /* report tool id */
109 input_report_abs(input, ABS_PRESSURE, -1);
110 input_report_key(input, BTN_TOUCH, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700111 }
112 break;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700113
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700114 case 2:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700115 input_report_key(input, BTN_TOOL_PEN, 1);
116 input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700117 input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
118 input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700119 input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
120 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
121 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700122 break;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700123
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700124 default:
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700125 dev_dbg(input->dev.parent,
126 "%s: received unknown report #%d\n", __func__, data[0]);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700127 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700128 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700129
Ping Cheng3bea7332006-07-13 18:01:36 -0700130 return 1;
131}
132
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700133static int wacom_pl_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700134{
Jason Childse33da8a2010-02-17 22:38:31 -0800135 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700136 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700137 struct input_dev *input = wacom->pen_input;
Ping Chenge34b9d22008-05-05 11:36:41 -0400138 int prox, pressure;
Ping Cheng3bea7332006-07-13 18:01:36 -0700139
Ping Chengcad74702009-12-15 00:35:25 -0800140 if (data[0] != WACOM_REPORT_PENABLED) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700141 dev_dbg(input->dev.parent,
142 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700143 return 0;
144 }
145
146 prox = data[1] & 0x40;
147
Jason Gerecke025bcc12015-08-03 10:18:10 -0700148 if (!wacom->id[0]) {
149 if ((data[0] & 0x10) || (data[4] & 0x20)) {
150 wacom->tool[0] = BTN_TOOL_RUBBER;
151 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700152 }
Jason Gerecke025bcc12015-08-03 10:18:10 -0700153 else {
154 wacom->tool[0] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400155 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700156 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700157 }
158
Jason Gerecke025bcc12015-08-03 10:18:10 -0700159 /* If the eraser is in prox, STYLUS2 is always set. If we
160 * mis-detected the type and notice that STYLUS2 isn't set
161 * then force the eraser out of prox and let the pen in.
162 */
163 if (wacom->tool[0] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
164 input_report_key(input, BTN_TOOL_RUBBER, 0);
165 input_report_abs(input, ABS_MISC, 0);
166 input_sync(input);
167 wacom->tool[0] = BTN_TOOL_PEN;
168 wacom->id[0] = STYLUS_DEVICE_ID;
169 }
170
Jason Gerecke282e4632017-01-26 09:06:22 -0800171 if (prox) {
172 pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
173 if (features->pressure_max > 255)
174 pressure = (pressure << 1) | ((data[4] >> 6) & 1);
175 pressure += (features->pressure_max + 1) / 2;
Jason Gerecke025bcc12015-08-03 10:18:10 -0700176
Jason Gerecke282e4632017-01-26 09:06:22 -0800177 input_report_abs(input, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
178 input_report_abs(input, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
179 input_report_abs(input, ABS_PRESSURE, pressure);
Jason Gerecke025bcc12015-08-03 10:18:10 -0700180
Jason Gerecke282e4632017-01-26 09:06:22 -0800181 input_report_key(input, BTN_TOUCH, data[4] & 0x08);
182 input_report_key(input, BTN_STYLUS, data[4] & 0x10);
183 /* Only allow the stylus2 button to be reported for the pen tool. */
184 input_report_key(input, BTN_STYLUS2, (wacom->tool[0] == BTN_TOOL_PEN) && (data[4] & 0x20));
185 }
Jason Gerecke025bcc12015-08-03 10:18:10 -0700186
187 if (!prox)
188 wacom->id[0] = 0;
189 input_report_key(input, wacom->tool[0], prox);
190 input_report_abs(input, ABS_MISC, wacom->id[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700191 return 1;
192}
193
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700194static int wacom_ptu_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700195{
196 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700197 struct input_dev *input = wacom->pen_input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700198
Ping Chengcad74702009-12-15 00:35:25 -0800199 if (data[0] != WACOM_REPORT_PENABLED) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700200 dev_dbg(input->dev.parent,
201 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3bea7332006-07-13 18:01:36 -0700202 return 0;
203 }
204
Ping Cheng3bea7332006-07-13 18:01:36 -0700205 if (data[1] & 0x04) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700206 input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
207 input_report_key(input, BTN_TOUCH, data[1] & 0x08);
Ping Chenge34b9d22008-05-05 11:36:41 -0400208 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700209 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700210 input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
211 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
Ping Chenge34b9d22008-05-05 11:36:41 -0400212 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700213 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700214 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700215 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
216 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
217 input_report_abs(input, ABS_PRESSURE, le16_to_cpup((__le16 *)&data[6]));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700218 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
219 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
Ping Cheng3bea7332006-07-13 18:01:36 -0700220 return 1;
221}
222
Ping Chengc8f2edc2010-06-28 01:10:51 -0700223static int wacom_dtu_irq(struct wacom_wac *wacom)
224{
Jason Gerecke74b63412014-04-19 13:50:22 -0700225 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700226 struct input_dev *input = wacom->pen_input;
Jason Gerecke74b63412014-04-19 13:50:22 -0700227 int prox = data[1] & 0x20;
Ping Chengc8f2edc2010-06-28 01:10:51 -0700228
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700229 dev_dbg(input->dev.parent,
230 "%s: received report #%d", __func__, data[0]);
Ping Chengc8f2edc2010-06-28 01:10:51 -0700231
232 if (prox) {
233 /* Going into proximity select tool */
234 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
235 if (wacom->tool[0] == BTN_TOOL_PEN)
236 wacom->id[0] = STYLUS_DEVICE_ID;
237 else
238 wacom->id[0] = ERASER_DEVICE_ID;
239 }
240 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
241 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
242 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
243 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Jason Gerecke74b63412014-04-19 13:50:22 -0700244 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x01) << 8) | data[6]);
Ping Chengc8f2edc2010-06-28 01:10:51 -0700245 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
246 if (!prox) /* out-prox */
247 wacom->id[0] = 0;
248 input_report_key(input, wacom->tool[0], prox);
249 input_report_abs(input, ABS_MISC, wacom->id[0]);
250 return 1;
251}
252
Ping Cheng497ab1f2014-01-20 20:18:04 -0800253static int wacom_dtus_irq(struct wacom_wac *wacom)
254{
255 char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700256 struct input_dev *input = wacom->pen_input;
Ping Cheng497ab1f2014-01-20 20:18:04 -0800257 unsigned short prox, pressure = 0;
258
259 if (data[0] != WACOM_REPORT_DTUS && data[0] != WACOM_REPORT_DTUSPAD) {
260 dev_dbg(input->dev.parent,
261 "%s: received unknown report #%d", __func__, data[0]);
262 return 0;
263 } else if (data[0] == WACOM_REPORT_DTUSPAD) {
Benjamin Tissoires422b0312014-07-24 12:50:39 -0700264 input = wacom->pad_input;
Ping Cheng497ab1f2014-01-20 20:18:04 -0800265 input_report_key(input, BTN_0, (data[1] & 0x01));
266 input_report_key(input, BTN_1, (data[1] & 0x02));
267 input_report_key(input, BTN_2, (data[1] & 0x04));
268 input_report_key(input, BTN_3, (data[1] & 0x08));
269 input_report_abs(input, ABS_MISC,
270 data[1] & 0x0f ? PAD_DEVICE_ID : 0);
Ping Cheng497ab1f2014-01-20 20:18:04 -0800271 return 1;
272 } else {
273 prox = data[1] & 0x80;
274 if (prox) {
275 switch ((data[1] >> 3) & 3) {
276 case 1: /* Rubber */
277 wacom->tool[0] = BTN_TOOL_RUBBER;
278 wacom->id[0] = ERASER_DEVICE_ID;
279 break;
280
281 case 2: /* Pen */
282 wacom->tool[0] = BTN_TOOL_PEN;
283 wacom->id[0] = STYLUS_DEVICE_ID;
284 break;
285 }
286 }
287
288 input_report_key(input, BTN_STYLUS, data[1] & 0x20);
289 input_report_key(input, BTN_STYLUS2, data[1] & 0x40);
290 input_report_abs(input, ABS_X, get_unaligned_be16(&data[3]));
291 input_report_abs(input, ABS_Y, get_unaligned_be16(&data[5]));
292 pressure = ((data[1] & 0x03) << 8) | (data[2] & 0xff);
293 input_report_abs(input, ABS_PRESSURE, pressure);
294 input_report_key(input, BTN_TOUCH, pressure > 10);
295
296 if (!prox) /* out-prox */
297 wacom->id[0] = 0;
298 input_report_key(input, wacom->tool[0], prox);
299 input_report_abs(input, ABS_MISC, wacom->id[0]);
Ping Cheng497ab1f2014-01-20 20:18:04 -0800300 return 1;
301 }
302}
303
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700304static int wacom_graphire_irq(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700305{
Jason Childse33da8a2010-02-17 22:38:31 -0800306 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700307 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700308 struct input_dev *input = wacom->pen_input;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700309 struct input_dev *pad_input = wacom->pad_input;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700310 int battery_capacity, ps_connected;
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700311 int prox;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800312 int rw = 0;
313 int retval = 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700314
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700315 if (features->type == GRAPHIRE_BT) {
316 if (data[0] != WACOM_REPORT_PENABLED_BT) {
317 dev_dbg(input->dev.parent,
318 "%s: received unknown report #%d\n", __func__,
319 data[0]);
320 goto exit;
321 }
322 } else if (data[0] != WACOM_REPORT_PENABLED) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700323 dev_dbg(input->dev.parent,
324 "%s: received unknown report #%d\n", __func__, data[0]);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800325 goto exit;
Ping Cheng3bea7332006-07-13 18:01:36 -0700326 }
327
Ping Cheng3b57ca02010-03-04 21:50:59 -0800328 prox = data[1] & 0x80;
329 if (prox || wacom->id[0]) {
330 if (prox) {
331 switch ((data[1] >> 5) & 3) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700332
333 case 0: /* Pen */
334 wacom->tool[0] = BTN_TOOL_PEN;
Ping Chenge34b9d22008-05-05 11:36:41 -0400335 wacom->id[0] = STYLUS_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700336 break;
337
338 case 1: /* Rubber */
339 wacom->tool[0] = BTN_TOOL_RUBBER;
Ping Chenge34b9d22008-05-05 11:36:41 -0400340 wacom->id[0] = ERASER_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700341 break;
342
343 case 2: /* Mouse with wheel */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700344 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
Ping Cheng3bea7332006-07-13 18:01:36 -0700345 /* fall through */
346
347 case 3: /* Mouse without wheel */
348 wacom->tool[0] = BTN_TOOL_MOUSE;
Ping Chenge34b9d22008-05-05 11:36:41 -0400349 wacom->id[0] = CURSOR_DEVICE_ID;
Ping Cheng3bea7332006-07-13 18:01:36 -0700350 break;
Ping Cheng3b57ca02010-03-04 21:50:59 -0800351 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700352 }
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700353 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
354 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Ping Cheng3bea7332006-07-13 18:01:36 -0700355 if (wacom->tool[0] != BTN_TOOL_MOUSE) {
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700356 if (features->type == GRAPHIRE_BT)
357 input_report_abs(input, ABS_PRESSURE, data[6] |
358 (((__u16) (data[1] & 0x08)) << 5));
359 else
360 input_report_abs(input, ABS_PRESSURE, data[6] |
361 ((data[7] & 0x03) << 8));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700362 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
363 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
364 input_report_key(input, BTN_STYLUS2, data[1] & 0x04);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700365 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700366 input_report_key(input, BTN_LEFT, data[1] & 0x01);
367 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800368 if (features->type == WACOM_G4 ||
369 features->type == WACOM_MO) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700370 input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f);
Mike Autyd9f66c12010-08-28 20:35:17 -0700371 rw = (data[7] & 0x04) - (data[7] & 0x03);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700372 } else if (features->type == GRAPHIRE_BT) {
373 /* Compute distance between mouse and tablet */
374 rw = 44 - (data[6] >> 2);
375 rw = clamp_val(rw, 0, 31);
376 input_report_abs(input, ABS_DISTANCE, rw);
377 if (((data[1] >> 5) & 3) == 2) {
378 /* Mouse with wheel */
379 input_report_key(input, BTN_MIDDLE,
380 data[1] & 0x04);
381 rw = (data[6] & 0x01) ? -1 :
382 (data[6] & 0x02) ? 1 : 0;
383 } else {
384 rw = 0;
385 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800386 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700387 input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f);
Mike Autyd9f66c12010-08-28 20:35:17 -0700388 rw = -(signed char)data[6];
Ping Cheng3b57ca02010-03-04 21:50:59 -0800389 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700390 input_report_rel(input, REL_WHEEL, rw);
Dmitry Torokhovafb567e2010-04-13 23:08:58 -0700391 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800392
393 if (!prox)
394 wacom->id[0] = 0;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700395 input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
396 input_report_key(input, wacom->tool[0], prox);
397 input_sync(input); /* sync last event */
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800398 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700399
400 /* send pad data */
Jason Childse33da8a2010-02-17 22:38:31 -0800401 switch (features->type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700402 case WACOM_G4:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800403 prox = data[7] & 0xf8;
404 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400405 wacom->id[1] = PAD_DEVICE_ID;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700406 input_report_key(pad_input, BTN_BACK, (data[7] & 0x40));
407 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x80));
Ping Cheng3bea7332006-07-13 18:01:36 -0700408 rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
Benjamin Tissoires38138102014-07-24 12:51:03 -0700409 input_report_rel(pad_input, REL_WHEEL, rw);
Ping Cheng3b57ca02010-03-04 21:50:59 -0800410 if (!prox)
411 wacom->id[1] = 0;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700412 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
Ping Chengab687b12010-04-05 23:07:41 -0700413 retval = 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700414 }
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400415 break;
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700416
417 case WACOM_MO:
Ping Cheng3b57ca02010-03-04 21:50:59 -0800418 prox = (data[7] & 0xf8) || data[8];
419 if (prox || wacom->id[1]) {
Ping Chenge34b9d22008-05-05 11:36:41 -0400420 wacom->id[1] = PAD_DEVICE_ID;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700421 input_report_key(pad_input, BTN_BACK, (data[7] & 0x08));
422 input_report_key(pad_input, BTN_LEFT, (data[7] & 0x20));
423 input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x10));
424 input_report_key(pad_input, BTN_RIGHT, (data[7] & 0x40));
425 input_report_abs(pad_input, ABS_WHEEL, (data[8] & 0x7f));
Ping Cheng3b57ca02010-03-04 21:50:59 -0800426 if (!prox)
427 wacom->id[1] = 0;
Benjamin Tissoires38138102014-07-24 12:51:03 -0700428 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
Ping Cheng84460012011-07-06 18:05:43 -0700429 retval = 1;
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400430 }
431 break;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700432 case GRAPHIRE_BT:
433 prox = data[7] & 0x03;
434 if (prox || wacom->id[1]) {
435 wacom->id[1] = PAD_DEVICE_ID;
436 input_report_key(pad_input, BTN_0, (data[7] & 0x02));
437 input_report_key(pad_input, BTN_1, (data[7] & 0x01));
438 if (!prox)
439 wacom->id[1] = 0;
440 input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
441 retval = 1;
442 }
443 break;
444 }
445
446 /* Store current battery capacity and power supply state */
447 if (features->type == GRAPHIRE_BT) {
448 rw = (data[7] >> 2 & 0x07);
449 battery_capacity = batcap_gr[rw];
450 ps_connected = rw == 7;
Jason Gerecke953f2c52015-03-06 11:47:39 -0800451 wacom_notify_battery(wacom, battery_capacity, ps_connected,
Jason Gerecke71fa6412015-03-11 10:25:41 -0700452 1, ps_connected);
Ping Cheng3bea7332006-07-13 18:01:36 -0700453 }
Ping Cheng3b57ca02010-03-04 21:50:59 -0800454exit:
455 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -0700456}
457
Benjamin Tissoires5fcad162015-03-05 17:36:54 -0500458static void wacom_intuos_schedule_prox_event(struct wacom_wac *wacom_wac)
459{
460 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
Jason Gerecke0bbfe282016-01-06 13:25:53 -0800461 struct wacom_features *features = &wacom_wac->features;
Benjamin Tissoires5fcad162015-03-05 17:36:54 -0500462 struct hid_report *r;
463 struct hid_report_enum *re;
464
465 re = &(wacom->hdev->report_enum[HID_FEATURE_REPORT]);
Jason Gerecke0bbfe282016-01-06 13:25:53 -0800466 if (features->type == INTUOSHT2)
467 r = re->report_id_hash[WACOM_REPORT_INTUOSHT2_ID];
468 else
469 r = re->report_id_hash[WACOM_REPORT_INTUOS_ID1];
Benjamin Tissoires5fcad162015-03-05 17:36:54 -0500470 if (r) {
471 hid_hw_request(wacom->hdev, r, HID_REQ_GET_REPORT);
472 }
473}
474
Jason Gereckefb013a02015-11-30 17:13:46 -0800475static int wacom_intuos_pad(struct wacom_wac *wacom)
476{
477 struct wacom_features *features = &wacom->features;
478 unsigned char *data = wacom->data;
479 struct input_dev *input = wacom->pad_input;
Jason Gereckec7f05222015-11-30 17:13:47 -0800480 int i;
481 int buttons = 0, nbuttons = features->numbered_buttons;
482 int keys = 0, nkeys = 0;
483 int ring1 = 0, ring2 = 0;
484 int strip1 = 0, strip2 = 0;
485 bool prox = false;
Jason Gereckefb013a02015-11-30 17:13:46 -0800486
487 /* pad packets. Works as a second tool and is always in prox */
488 if (!(data[0] == WACOM_REPORT_INTUOSPAD || data[0] == WACOM_REPORT_INTUOS5PAD ||
489 data[0] == WACOM_REPORT_CINTIQPAD))
490 return 0;
491
492 if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800493 buttons = (data[3] << 1) | (data[2] & 0x01);
494 ring1 = data[1];
Jason Gereckefb013a02015-11-30 17:13:46 -0800495 } else if (features->type == DTK) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800496 buttons = data[6];
Jason Gereckefb013a02015-11-30 17:13:46 -0800497 } else if (features->type == WACOM_13HD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800498 buttons = (data[4] << 1) | (data[3] & 0x01);
Jason Gereckefb013a02015-11-30 17:13:46 -0800499 } else if (features->type == WACOM_24HD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800500 buttons = (data[8] << 8) | data[6];
501 ring1 = data[1];
502 ring2 = data[2];
Jason Gereckefb013a02015-11-30 17:13:46 -0800503
504 /*
505 * Three "buttons" are available on the 24HD which are
506 * physically implemented as a touchstrip. Each button
507 * is approximately 3 bits wide with a 2 bit spacing.
508 * The raw touchstrip bits are stored at:
509 * ((data[3] & 0x1f) << 8) | data[4])
510 */
Jason Gereckec7f05222015-11-30 17:13:47 -0800511 nkeys = 3;
512 keys = ((data[3] & 0x1C) ? 1<<2 : 0) |
513 ((data[4] & 0xE0) ? 1<<1 : 0) |
514 ((data[4] & 0x07) ? 1<<0 : 0);
Jason Gereckefb013a02015-11-30 17:13:46 -0800515 } else if (features->type == WACOM_27QHD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800516 nkeys = 3;
517 keys = data[2] & 0x07;
Jason Gereckefb013a02015-11-30 17:13:46 -0800518
519 input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[4]));
520 input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[6]));
521 input_report_abs(input, ABS_Z, be16_to_cpup((__be16 *)&data[8]));
Jason Gereckefb013a02015-11-30 17:13:46 -0800522 } else if (features->type == CINTIQ_HYBRID) {
523 /*
524 * Do not send hardware buttons under Android. They
525 * are already sent to the system through GPIO (and
526 * have different meaning).
Jason Gereckec7f05222015-11-30 17:13:47 -0800527 *
528 * d-pad right -> data[4] & 0x10
529 * d-pad up -> data[4] & 0x20
530 * d-pad left -> data[4] & 0x40
531 * d-pad down -> data[4] & 0x80
532 * d-pad center -> data[3] & 0x01
Jason Gereckefb013a02015-11-30 17:13:46 -0800533 */
Jason Gereckec7f05222015-11-30 17:13:47 -0800534 buttons = (data[4] << 1) | (data[3] & 0x01);
Jason Gereckefb013a02015-11-30 17:13:46 -0800535 } else if (features->type == CINTIQ_COMPANION_2) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800536 /* d-pad right -> data[4] & 0x10
537 * d-pad up -> data[4] & 0x20
538 * d-pad left -> data[4] & 0x40
539 * d-pad down -> data[4] & 0x80
540 * d-pad center -> data[3] & 0x01
541 */
Jason Gerecke0402b6b2015-12-16 13:37:36 -0800542 buttons = ((data[2] >> 4) << 7) |
Jason Gereckec7f05222015-11-30 17:13:47 -0800543 ((data[1] & 0x04) << 6) |
544 ((data[2] & 0x0F) << 2) |
545 (data[1] & 0x03);
Jason Gereckefb013a02015-11-30 17:13:46 -0800546 } else if (features->type >= INTUOS5S && features->type <= INTUOSPL) {
Jason Gereckefb013a02015-11-30 17:13:46 -0800547 /*
548 * ExpressKeys on Intuos5/Intuos Pro have a capacitive sensor in
549 * addition to the mechanical switch. Switch data is
550 * stored in data[4], capacitive data in data[5].
Jason Gereckec7f05222015-11-30 17:13:47 -0800551 *
552 * Touch ring mode switch (data[3]) has no capacitive sensor
Jason Gereckefb013a02015-11-30 17:13:46 -0800553 */
Jason Gereckec7f05222015-11-30 17:13:47 -0800554 buttons = (data[4] << 1) | (data[3] & 0x01);
555 ring1 = data[2];
Jason Gereckefb013a02015-11-30 17:13:46 -0800556 } else {
557 if (features->type == WACOM_21UX2 || features->type == WACOM_22HD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800558 buttons = (data[8] << 10) | ((data[7] & 0x01) << 9) |
559 (data[6] << 1) | (data[5] & 0x01);
Jason Gereckefb013a02015-11-30 17:13:46 -0800560
561 if (features->type == WACOM_22HD) {
Jason Gereckec7f05222015-11-30 17:13:47 -0800562 nkeys = 3;
563 keys = data[9] & 0x07;
Jason Gereckefb013a02015-11-30 17:13:46 -0800564 }
565 } else {
Jason Gereckec7f05222015-11-30 17:13:47 -0800566 buttons = ((data[6] & 0x10) << 10) |
567 ((data[5] & 0x10) << 9) |
568 ((data[6] & 0x0F) << 4) |
569 (data[5] & 0x0F);
Jason Gereckefb013a02015-11-30 17:13:46 -0800570 }
Jason Gereckef73d08d2015-12-16 13:37:33 -0800571 strip1 = ((data[1] & 0x1f) << 8) | data[2];
572 strip2 = ((data[3] & 0x1f) << 8) | data[4];
Jason Gereckefb013a02015-11-30 17:13:46 -0800573 }
Jason Gereckec7f05222015-11-30 17:13:47 -0800574
Dan Carpenter8f9cfdd2015-12-09 13:22:05 +0300575 prox = (buttons & ~(~0 << nbuttons)) | (keys & ~(~0 << nkeys)) |
576 (ring1 & 0x80) | (ring2 & 0x80) | strip1 | strip2;
Jason Gereckec7f05222015-11-30 17:13:47 -0800577
578 wacom_report_numbered_buttons(input, nbuttons, buttons);
579
580 for (i = 0; i < nkeys; i++)
581 input_report_key(input, KEY_PROG1 + i, keys & (1 << i));
582
583 input_report_abs(input, ABS_RX, strip1);
Jason Gerecke03a0dc52015-12-16 13:37:34 -0800584 input_report_abs(input, ABS_RY, strip2);
Jason Gereckec7f05222015-11-30 17:13:47 -0800585
Jason Gereckeaaae03e2015-12-16 13:37:35 -0800586 input_report_abs(input, ABS_WHEEL, (ring1 & 0x80) ? (ring1 & 0x7f) : 0);
587 input_report_abs(input, ABS_THROTTLE, (ring2 & 0x80) ? (ring2 & 0x7f) : 0);
Jason Gereckec7f05222015-11-30 17:13:47 -0800588
589 input_report_key(input, wacom->tool[1], prox ? 1 : 0);
590 input_report_abs(input, ABS_MISC, prox ? PAD_DEVICE_ID : 0);
591
592 input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
593
Jason Gereckefb013a02015-11-30 17:13:46 -0800594 return 1;
595}
596
Jason Gerecke82527da2016-10-19 18:03:47 -0700597static int wacom_intuos_id_mangle(int tool_id)
598{
599 return (tool_id & ~0xFFF) << 4 | (tool_id & 0xFFF);
600}
601
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100602static int wacom_intuos_get_tool_type(int tool_id)
603{
604 int tool_type;
605
606 switch (tool_id) {
607 case 0x812: /* Inking pen */
608 case 0x801: /* Intuos3 Inking pen */
Jason Gerecke82527da2016-10-19 18:03:47 -0700609 case 0x12802: /* Intuos4/5 Inking Pen */
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100610 case 0x012:
611 tool_type = BTN_TOOL_PENCIL;
612 break;
613
614 case 0x822: /* Pen */
615 case 0x842:
616 case 0x852:
617 case 0x823: /* Intuos3 Grip Pen */
618 case 0x813: /* Intuos3 Classic Pen */
619 case 0x885: /* Intuos3 Marker Pen */
620 case 0x802: /* Intuos4/5 13HD/24HD General Pen */
621 case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */
622 case 0x8e2: /* IntuosHT2 pen */
623 case 0x022:
Jason Gerecke82527da2016-10-19 18:03:47 -0700624 case 0x10804: /* Intuos4/5 13HD/24HD Art Pen */
625 case 0x14802: /* Intuos4/5 13HD/24HD Classic Pen */
626 case 0x16802: /* Cintiq 13HD Pro Pen */
627 case 0x18802: /* DTH2242 Pen */
628 case 0x10802: /* Intuos4/5 13HD/24HD General Pen */
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100629 tool_type = BTN_TOOL_PEN;
630 break;
631
632 case 0x832: /* Stroke pen */
633 case 0x032:
634 tool_type = BTN_TOOL_BRUSH;
635 break;
636
637 case 0x007: /* Mouse 4D and 2D */
638 case 0x09c:
639 case 0x094:
640 case 0x017: /* Intuos3 2D Mouse */
641 case 0x806: /* Intuos4 Mouse */
642 tool_type = BTN_TOOL_MOUSE;
643 break;
644
645 case 0x096: /* Lens cursor */
646 case 0x097: /* Intuos3 Lens cursor */
647 case 0x006: /* Intuos4 Lens cursor */
648 tool_type = BTN_TOOL_LENS;
649 break;
650
651 case 0x82a: /* Eraser */
Jason Gerecke9ce9a122016-11-11 15:05:52 -0800652 case 0x84a:
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100653 case 0x85a:
654 case 0x91a:
655 case 0xd1a:
656 case 0x0fa:
657 case 0x82b: /* Intuos3 Grip Pen Eraser */
658 case 0x81b: /* Intuos3 Classic Pen Eraser */
659 case 0x91b: /* Intuos3 Airbrush Eraser */
660 case 0x80c: /* Intuos4/5 13HD/24HD Marker Pen Eraser */
661 case 0x80a: /* Intuos4/5 13HD/24HD General Pen Eraser */
662 case 0x90a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
Jason Gerecke82527da2016-10-19 18:03:47 -0700663 case 0x1480a: /* Intuos4/5 13HD/24HD Classic Pen Eraser */
664 case 0x1090a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
665 case 0x1080c: /* Intuos4/5 13HD/24HD Art Pen Eraser */
666 case 0x1680a: /* Cintiq 13HD Pro Pen Eraser */
667 case 0x1880a: /* DTH2242 Eraser */
668 case 0x1080a: /* Intuos4/5 13HD/24HD General Pen Eraser */
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100669 tool_type = BTN_TOOL_RUBBER;
670 break;
671
672 case 0xd12:
673 case 0x912:
674 case 0x112:
675 case 0x913: /* Intuos3 Airbrush */
676 case 0x902: /* Intuos4/5 13HD/24HD Airbrush */
Jason Gerecke82527da2016-10-19 18:03:47 -0700677 case 0x10902: /* Intuos4/5 13HD/24HD Airbrush */
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100678 tool_type = BTN_TOOL_AIRBRUSH;
679 break;
680
681 default: /* Unknown tool */
682 tool_type = BTN_TOOL_PEN;
683 break;
684 }
685 return tool_type;
686}
687
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700688static int wacom_intuos_inout(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700689{
Jason Childse33da8a2010-02-17 22:38:31 -0800690 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700691 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700692 struct input_dev *input = wacom->pen_input;
Ping Cheng4750f5f2016-01-08 17:15:48 -0800693 int idx = (features->type == INTUOS) ? (data[1] & 0x01) : 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700694
Ping Cheng4750f5f2016-01-08 17:15:48 -0800695 if (!(((data[1] & 0xfc) == 0xc0) || /* in prox */
696 ((data[1] & 0xfe) == 0x20) || /* in range */
697 ((data[1] & 0xfe) == 0x80))) /* out prox */
698 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700699
700 /* Enter report */
701 if ((data[1] & 0xfc) == 0xc0) {
702 /* serial number of the tool */
703 wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
704 (data[4] << 20) + (data[5] << 12) +
705 (data[6] << 4) + (data[7] >> 4);
706
Ping Cheng493630b2010-06-22 11:21:34 -0700707 wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
Jason Gerecke82527da2016-10-19 18:03:47 -0700708 ((data[7] & 0x0f) << 16) | ((data[8] & 0xf0) << 8);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700709
Benjamin Tissoires7e129782016-02-12 17:27:40 +0100710 wacom->tool[idx] = wacom_intuos_get_tool_type(wacom->id[idx]);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700711
Ping Chengeff6ca92016-05-02 21:17:34 -0700712 wacom->shared->stylus_in_proximity = true;
Ping Cheng3bea7332006-07-13 18:01:36 -0700713 return 1;
714 }
715
Ping Chengc1b03f52016-01-08 17:16:06 -0800716 /* in Range */
717 if ((data[1] & 0xfe) == 0x20) {
Ping Cheng526d6e72016-01-08 17:16:25 -0800718 if (features->type != INTUOSHT2)
719 wacom->shared->stylus_in_proximity = true;
Ping Cheng486b9082015-02-20 14:25:58 -0800720
Ping Chengc1b03f52016-01-08 17:16:06 -0800721 /* in Range while exiting */
722 if (wacom->reporting_data) {
723 input_report_key(input, BTN_TOUCH, 0);
724 input_report_abs(input, ABS_PRESSURE, 0);
725 input_report_abs(input, ABS_DISTANCE, wacom->features.distance_max);
726 return 2;
727 }
728 return 1;
Jason Gerecke4eb18302013-09-20 09:48:46 -0700729 }
730
Ping Cheng3bea7332006-07-13 18:01:36 -0700731 /* Exit report */
732 if ((data[1] & 0xfe) == 0x80) {
Ping Chengf3586d22015-03-20 14:57:00 -0700733 wacom->shared->stylus_in_proximity = false;
Ping Chengb3bd7ef2015-01-09 11:05:13 -0800734 wacom->reporting_data = false;
Jason Gereckeae584ca2012-04-03 15:50:40 -0700735
Ping Cheng373a5352015-01-09 11:04:50 -0800736 /* don't report exit if we don't know the ID */
737 if (!wacom->id[idx])
738 return 1;
739
Ping Cheng6f660f12009-05-08 18:30:33 -0700740 /*
741 * Reset all states otherwise we lose the initial states
742 * when in-prox next time
743 */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700744 input_report_abs(input, ABS_X, 0);
745 input_report_abs(input, ABS_Y, 0);
746 input_report_abs(input, ABS_DISTANCE, 0);
747 input_report_abs(input, ABS_TILT_X, 0);
748 input_report_abs(input, ABS_TILT_Y, 0);
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800749 if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700750 input_report_key(input, BTN_LEFT, 0);
751 input_report_key(input, BTN_MIDDLE, 0);
752 input_report_key(input, BTN_RIGHT, 0);
753 input_report_key(input, BTN_SIDE, 0);
754 input_report_key(input, BTN_EXTRA, 0);
755 input_report_abs(input, ABS_THROTTLE, 0);
756 input_report_abs(input, ABS_RZ, 0);
Ping Cheng7ecfbfd2007-06-14 23:32:48 -0400757 } else {
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700758 input_report_abs(input, ABS_PRESSURE, 0);
759 input_report_key(input, BTN_STYLUS, 0);
760 input_report_key(input, BTN_STYLUS2, 0);
761 input_report_key(input, BTN_TOUCH, 0);
762 input_report_abs(input, ABS_WHEEL, 0);
Jason Childse33da8a2010-02-17 22:38:31 -0800763 if (features->type >= INTUOS3S)
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700764 input_report_abs(input, ABS_Z, 0);
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700765 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700766 input_report_key(input, wacom->tool[idx], 0);
767 input_report_abs(input, ABS_MISC, 0); /* reset tool id */
768 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Cheng6f660f12009-05-08 18:30:33 -0700769 wacom->id[idx] = 0;
Ping Cheng80d4e8e2007-02-23 12:22:48 -0800770 return 2;
Ping Cheng3bea7332006-07-13 18:01:36 -0700771 }
Ping Cheng373a5352015-01-09 11:04:50 -0800772
Ping Cheng3bea7332006-07-13 18:01:36 -0700773 return 0;
774}
775
Ping Cheng1924e052016-08-09 14:38:56 -0700776static inline bool report_touch_events(struct wacom_wac *wacom)
777{
778 return (touch_arbitration ? !wacom->shared->stylus_in_proximity : 1);
779}
780
781static inline bool delay_pen_events(struct wacom_wac *wacom)
782{
783 return (wacom->shared->touch_down && touch_arbitration);
Aaron Skomra72b236d2015-08-20 16:05:17 -0700784}
785
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800786static int wacom_intuos_general(struct wacom_wac *wacom)
Ping Cheng3bea7332006-07-13 18:01:36 -0700787{
Jason Childse33da8a2010-02-17 22:38:31 -0800788 struct wacom_features *features = &wacom->features;
Ping Cheng3bea7332006-07-13 18:01:36 -0700789 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700790 struct input_dev *input = wacom->pen_input;
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800791 int idx = (features->type == INTUOS) ? (data[1] & 0x01) : 0;
Jason Gereckea8a09c82015-11-30 17:13:49 -0800792 unsigned char type = (data[1] >> 1) & 0x0F;
Jason Gerecke5f33f432015-11-30 17:13:51 -0800793 unsigned int x, y, distance, t;
Ping Cheng3bea7332006-07-13 18:01:36 -0700794
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800795 if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_CINTIQ &&
796 data[0] != WACOM_REPORT_INTUOS_PEN)
797 return 0;
798
Ping Cheng1924e052016-08-09 14:38:56 -0700799 if (delay_pen_events(wacom))
Ping Chengc1b03f52016-01-08 17:16:06 -0800800 return 1;
801
Ping Cheng599b0822016-01-08 17:14:54 -0800802 /* don't report events if we don't know the tool ID */
803 if (!wacom->id[idx]) {
804 /* but reschedule a read of the current tool */
805 wacom_intuos_schedule_prox_event(wacom);
806 return 1;
807 }
808
Ping Cheng4750f5f2016-01-08 17:15:48 -0800809 /*
810 * don't report events for invalid data
811 */
812 /* older I4 styli don't work with new Cintiqs */
Jason Gerecke82527da2016-10-19 18:03:47 -0700813 if ((!((wacom->id[idx] >> 16) & 0x01) &&
Ping Cheng4750f5f2016-01-08 17:15:48 -0800814 (features->type == WACOM_21UX2)) ||
815 /* Only large Intuos support Lense Cursor */
816 (wacom->tool[idx] == BTN_TOOL_LENS &&
817 (features->type == INTUOS3 ||
818 features->type == INTUOS3S ||
819 features->type == INTUOS4 ||
820 features->type == INTUOS4S ||
821 features->type == INTUOS5 ||
822 features->type == INTUOS5S ||
823 features->type == INTUOSPM ||
824 features->type == INTUOSPS)) ||
825 /* Cintiq doesn't send data when RDY bit isn't set */
826 (features->type == CINTIQ && !(data[1] & 0x40)))
827 return 1;
828
Jason Gerecke5f33f432015-11-30 17:13:51 -0800829 x = (be16_to_cpup((__be16 *)&data[2]) << 1) | ((data[9] >> 1) & 1);
830 y = (be16_to_cpup((__be16 *)&data[4]) << 1) | (data[9] & 1);
831 distance = data[9] >> 2;
832 if (features->type < INTUOS3S) {
833 x >>= 1;
834 y >>= 1;
835 distance >>= 1;
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800836 }
Jason Gerecke5f33f432015-11-30 17:13:51 -0800837 input_report_abs(input, ABS_X, x);
838 input_report_abs(input, ABS_Y, y);
839 input_report_abs(input, ABS_DISTANCE, distance);
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800840
Jason Gereckea8a09c82015-11-30 17:13:49 -0800841 switch (type) {
842 case 0x00:
843 case 0x01:
844 case 0x02:
845 case 0x03:
846 /* general pen packet */
Jason Gerecke5f33f432015-11-30 17:13:51 -0800847 t = (data[6] << 3) | ((data[7] & 0xC0) >> 5) | (data[1] & 1);
848 if (features->pressure_max < 2047)
849 t >>= 1;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700850 input_report_abs(input, ABS_PRESSURE, t);
Ping Chengeda01da2015-09-23 13:51:15 -0700851 if (features->type != INTUOSHT2) {
852 input_report_abs(input, ABS_TILT_X,
Jason Gereckeec5fc1c2014-11-18 16:50:08 -0800853 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
Ping Chengeda01da2015-09-23 13:51:15 -0700854 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
855 }
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700856 input_report_key(input, BTN_STYLUS, data[1] & 2);
857 input_report_key(input, BTN_STYLUS2, data[1] & 4);
858 input_report_key(input, BTN_TOUCH, t > 10);
Jason Gereckea8a09c82015-11-30 17:13:49 -0800859 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700860
Jason Gereckea8a09c82015-11-30 17:13:49 -0800861 case 0x0a:
Jason Gereckea8a09c82015-11-30 17:13:49 -0800862 /* airbrush second packet */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700863 input_report_abs(input, ABS_WHEEL,
Ping Cheng3bea7332006-07-13 18:01:36 -0700864 (data[6] << 2) | ((data[7] >> 6) & 3));
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700865 input_report_abs(input, ABS_TILT_X,
Jason Gereckeec5fc1c2014-11-18 16:50:08 -0800866 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
867 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
Jason Gereckea8a09c82015-11-30 17:13:49 -0800868 break;
869
870 case 0x05:
Jason Gereckea8a09c82015-11-30 17:13:49 -0800871 /* Rotation packet */
872 if (features->type >= INTUOS3S) {
873 /* I3 marker pen rotation */
874 t = (data[6] << 3) | ((data[7] >> 5) & 7);
875 t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
876 ((t-1) / 2 + 450)) : (450 - t / 2) ;
877 input_report_abs(input, ABS_Z, t);
878 } else {
Jason Gerecke571f5722015-11-30 17:13:50 -0800879 /* 4D mouse 2nd packet */
Jason Gereckea8a09c82015-11-30 17:13:49 -0800880 t = (data[6] << 3) | ((data[7] >> 5) & 7);
881 input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
882 ((t - 1) / 2) : -t / 2);
883 }
884 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700885
Jason Gereckea8a09c82015-11-30 17:13:49 -0800886 case 0x04:
Jason Gerecke571f5722015-11-30 17:13:50 -0800887 /* 4D mouse 1st packet */
888 input_report_key(input, BTN_LEFT, data[8] & 0x01);
889 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
890 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
891
892 input_report_key(input, BTN_SIDE, data[8] & 0x20);
893 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
894 t = (data[6] << 2) | ((data[7] >> 6) & 3);
895 input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
896 break;
897
Jason Gereckea8a09c82015-11-30 17:13:49 -0800898 case 0x06:
Jason Gerecke571f5722015-11-30 17:13:50 -0800899 /* I4 mouse */
900 input_report_key(input, BTN_LEFT, data[6] & 0x01);
901 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
902 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
903 input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
904 - ((data[7] & 0x40) >> 6));
905 input_report_key(input, BTN_SIDE, data[6] & 0x08);
906 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
907
908 input_report_abs(input, ABS_TILT_X,
909 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
910 input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
911 break;
912
Jason Gereckea8a09c82015-11-30 17:13:49 -0800913 case 0x08:
Jason Gerecke571f5722015-11-30 17:13:50 -0800914 if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
915 /* 2D mouse packet */
916 input_report_key(input, BTN_LEFT, data[8] & 0x04);
917 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
918 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
919 input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
920 - ((data[8] & 0x02) >> 1));
Ping Cheng3bea7332006-07-13 18:01:36 -0700921
Jason Gerecke571f5722015-11-30 17:13:50 -0800922 /* I3 2D mouse side buttons */
923 if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
924 input_report_key(input, BTN_SIDE, data[8] & 0x40);
925 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
Ping Cheng3bea7332006-07-13 18:01:36 -0700926 }
Jason Gereckea8a09c82015-11-30 17:13:49 -0800927 }
Jason Gerecke571f5722015-11-30 17:13:50 -0800928 else if (wacom->tool[idx] == BTN_TOOL_LENS) {
Ping Cheng3bea7332006-07-13 18:01:36 -0700929 /* Lens cursor packets */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700930 input_report_key(input, BTN_LEFT, data[8] & 0x01);
931 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
932 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
933 input_report_key(input, BTN_SIDE, data[8] & 0x10);
934 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
Ping Cheng3bea7332006-07-13 18:01:36 -0700935 }
Jason Gereckea8a09c82015-11-30 17:13:49 -0800936 break;
937
Jason Gerecke571f5722015-11-30 17:13:50 -0800938 case 0x07:
Jason Gereckea8a09c82015-11-30 17:13:49 -0800939 case 0x09:
Jason Gerecke571f5722015-11-30 17:13:50 -0800940 case 0x0b:
Jason Gereckea8a09c82015-11-30 17:13:49 -0800941 case 0x0c:
942 case 0x0d:
943 case 0x0e:
944 case 0x0f:
945 /* unhandled */
946 break;
Ping Cheng3bea7332006-07-13 18:01:36 -0700947 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700948
Jason Gerecke82527da2016-10-19 18:03:47 -0700949 input_report_abs(input, ABS_MISC,
950 wacom_intuos_id_mangle(wacom->id[idx])); /* report tool id */
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700951 input_report_key(input, wacom->tool[idx], 1);
952 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
Ping Chengb3bd7ef2015-01-09 11:05:13 -0800953 wacom->reporting_data = true;
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800954 return 2;
Ping Cheng3bea7332006-07-13 18:01:36 -0700955}
956
957static int wacom_intuos_irq(struct wacom_wac *wacom)
958{
Ping Cheng3bea7332006-07-13 18:01:36 -0700959 unsigned char *data = wacom->data;
960 struct input_dev *input = wacom->pen_input;
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800961 int result;
Ping Cheng3bea7332006-07-13 18:01:36 -0700962
963 if (data[0] != WACOM_REPORT_PENABLED &&
Jason Gerecke06109992015-11-30 17:13:52 -0800964 data[0] != WACOM_REPORT_INTUOS_ID1 &&
965 data[0] != WACOM_REPORT_INTUOS_ID2 &&
Ping Cheng3bea7332006-07-13 18:01:36 -0700966 data[0] != WACOM_REPORT_INTUOSPAD &&
967 data[0] != WACOM_REPORT_INTUOS_PEN &&
968 data[0] != WACOM_REPORT_CINTIQ &&
969 data[0] != WACOM_REPORT_CINTIQPAD &&
970 data[0] != WACOM_REPORT_INTUOS5PAD) {
971 dev_dbg(input->dev.parent,
972 "%s: received unknown report #%d\n", __func__, data[0]);
973 return 0;
974 }
975
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800976 /* process pad events */
977 result = wacom_intuos_pad(wacom);
978 if (result)
979 return result;
Ping Cheng3bea7332006-07-13 18:01:36 -0700980
981 /* process in/out prox events */
982 result = wacom_intuos_inout(wacom);
983 if (result)
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800984 return result - 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700985
986 /* process general packets */
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800987 result = wacom_intuos_general(wacom);
988 if (result)
989 return result - 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700990
Jason Gerecke16e0a6a2015-11-30 17:13:48 -0800991 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700992}
993
Jason Gerecke149f6f62017-03-31 10:02:05 -0700994static int wacom_remote_irq(struct wacom_wac *wacom_wac, size_t len)
995{
996 unsigned char *data = wacom_wac->data;
997 struct input_dev *input;
998 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
999 struct wacom_remote *remote = wacom->remote;
1000 int bat_charging, bat_percent, touch_ring_mode;
1001 __u32 serial;
1002 int i, index = -1;
1003 unsigned long flags;
1004
1005 if (data[0] != WACOM_REPORT_REMOTE) {
1006 hid_dbg(wacom->hdev, "%s: received unknown report #%d",
1007 __func__, data[0]);
1008 return 0;
1009 }
1010
1011 serial = data[3] + (data[4] << 8) + (data[5] << 16);
1012 wacom_wac->id[0] = PAD_DEVICE_ID;
1013
1014 spin_lock_irqsave(&remote->remote_lock, flags);
1015
1016 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1017 if (remote->remotes[i].serial == serial) {
1018 index = i;
1019 break;
1020 }
1021 }
1022
1023 if (index < 0 || !remote->remotes[index].registered)
1024 goto out;
1025
1026 input = remote->remotes[index].input;
1027
1028 input_report_key(input, BTN_0, (data[9] & 0x01));
1029 input_report_key(input, BTN_1, (data[9] & 0x02));
1030 input_report_key(input, BTN_2, (data[9] & 0x04));
1031 input_report_key(input, BTN_3, (data[9] & 0x08));
1032 input_report_key(input, BTN_4, (data[9] & 0x10));
1033 input_report_key(input, BTN_5, (data[9] & 0x20));
1034 input_report_key(input, BTN_6, (data[9] & 0x40));
1035 input_report_key(input, BTN_7, (data[9] & 0x80));
1036
1037 input_report_key(input, BTN_8, (data[10] & 0x01));
1038 input_report_key(input, BTN_9, (data[10] & 0x02));
1039 input_report_key(input, BTN_A, (data[10] & 0x04));
1040 input_report_key(input, BTN_B, (data[10] & 0x08));
1041 input_report_key(input, BTN_C, (data[10] & 0x10));
1042 input_report_key(input, BTN_X, (data[10] & 0x20));
1043 input_report_key(input, BTN_Y, (data[10] & 0x40));
1044 input_report_key(input, BTN_Z, (data[10] & 0x80));
1045
1046 input_report_key(input, BTN_BASE, (data[11] & 0x01));
1047 input_report_key(input, BTN_BASE2, (data[11] & 0x02));
1048
1049 if (data[12] & 0x80)
1050 input_report_abs(input, ABS_WHEEL, (data[12] & 0x7f));
1051 else
1052 input_report_abs(input, ABS_WHEEL, 0);
1053
1054 bat_percent = data[7] & 0x7f;
1055 bat_charging = !!(data[7] & 0x80);
1056
1057 if (data[9] | data[10] | (data[11] & 0x03) | data[12])
1058 input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
1059 else
1060 input_report_abs(input, ABS_MISC, 0);
1061
1062 input_event(input, EV_MSC, MSC_SERIAL, serial);
1063
1064 input_sync(input);
1065
1066 /*Which mode select (LED light) is currently on?*/
1067 touch_ring_mode = (data[11] & 0xC0) >> 6;
1068
1069 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1070 if (remote->remotes[i].serial == serial)
1071 wacom->led.groups[i].select = touch_ring_mode;
1072 }
1073
1074 __wacom_notify_battery(&remote->remotes[index].battery, bat_percent,
1075 bat_charging, 1, bat_charging);
1076
1077out:
1078 spin_unlock_irqrestore(&remote->remote_lock, flags);
1079 return 0;
1080}
1081
1082static void wacom_remote_status_irq(struct wacom_wac *wacom_wac, size_t len)
1083{
1084 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
1085 unsigned char *data = wacom_wac->data;
1086 struct wacom_remote *remote = wacom->remote;
1087 struct wacom_remote_data remote_data;
1088 unsigned long flags;
1089 int i, ret;
1090
1091 if (data[0] != WACOM_REPORT_DEVICE_LIST)
1092 return;
1093
1094 memset(&remote_data, 0, sizeof(struct wacom_remote_data));
1095
1096 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1097 int j = i * 6;
1098 int serial = (data[j+6] << 16) + (data[j+5] << 8) + data[j+4];
1099 bool connected = data[j+2];
1100
1101 remote_data.remote[i].serial = serial;
1102 remote_data.remote[i].connected = connected;
1103 }
1104
1105 spin_lock_irqsave(&remote->remote_lock, flags);
1106
1107 ret = kfifo_in(&remote->remote_fifo, &remote_data, sizeof(remote_data));
1108 if (ret != sizeof(remote_data)) {
1109 spin_unlock_irqrestore(&remote->remote_lock, flags);
1110 hid_err(wacom->hdev, "Can't queue Remote status event.\n");
1111 return;
1112 }
1113
1114 spin_unlock_irqrestore(&remote->remote_lock, flags);
1115
1116 wacom_schedule_work(wacom_wac, WACOM_WORKER_REMOTE);
1117}
1118
Jason Gereckeb1e42792012-10-21 00:38:04 -07001119static int int_dist(int x1, int y1, int x2, int y2)
1120{
1121 int x = x2 - x1;
1122 int y = y2 - y1;
1123
1124 return int_sqrt(x*x + y*y);
1125}
1126
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001127static void wacom_intuos_bt_process_data(struct wacom_wac *wacom,
1128 unsigned char *data)
1129{
1130 memcpy(wacom->data, data, 10);
1131 wacom_intuos_irq(wacom);
1132
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001133 input_sync(wacom->pen_input);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001134 if (wacom->pad_input)
1135 input_sync(wacom->pad_input);
1136}
1137
1138static int wacom_intuos_bt_irq(struct wacom_wac *wacom, size_t len)
1139{
1140 unsigned char data[WACOM_PKGLEN_MAX];
1141 int i = 1;
1142 unsigned power_raw, battery_capacity, bat_charging, ps_connected;
1143
1144 memcpy(data, wacom->data, len);
1145
1146 switch (data[0]) {
1147 case 0x04:
1148 wacom_intuos_bt_process_data(wacom, data + i);
1149 i += 10;
1150 /* fall through */
1151 case 0x03:
1152 wacom_intuos_bt_process_data(wacom, data + i);
1153 i += 10;
1154 wacom_intuos_bt_process_data(wacom, data + i);
1155 i += 10;
1156 power_raw = data[i];
1157 bat_charging = (power_raw & 0x08) ? 1 : 0;
1158 ps_connected = (power_raw & 0x10) ? 1 : 0;
1159 battery_capacity = batcap_i4[power_raw & 0x07];
Jason Gerecke953f2c52015-03-06 11:47:39 -08001160 wacom_notify_battery(wacom, battery_capacity, bat_charging,
Jason Gerecke71fa6412015-03-11 10:25:41 -07001161 battery_capacity || bat_charging,
Jason Gerecke953f2c52015-03-06 11:47:39 -08001162 ps_connected);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001163 break;
1164 default:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001165 dev_dbg(wacom->pen_input->dev.parent,
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001166 "Unknown report: %d,%d size:%zu\n",
1167 data[0], data[1], len);
1168 return 0;
1169 }
1170 return 0;
1171}
1172
Ping Cheng7d059ed2015-03-20 14:57:21 -07001173static int wacom_wac_finger_count_touches(struct wacom_wac *wacom)
1174{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001175 struct input_dev *input = wacom->touch_input;
Ping Cheng7d059ed2015-03-20 14:57:21 -07001176 unsigned touch_max = wacom->features.touch_max;
1177 int count = 0;
1178 int i;
1179
Ping Cheng26ba61f2015-05-19 17:42:02 -07001180 if (!touch_max)
1181 return 0;
1182
Jason Gerecke71b5c472015-04-15 17:22:32 -07001183 if (touch_max == 1)
1184 return test_bit(BTN_TOUCH, input->key) &&
Ping Cheng1924e052016-08-09 14:38:56 -07001185 report_touch_events(wacom);
Ping Cheng7d059ed2015-03-20 14:57:21 -07001186
1187 for (i = 0; i < input->mt->num_slots; i++) {
1188 struct input_mt_slot *ps = &input->mt->slots[i];
1189 int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
1190 if (id >= 0)
1191 count++;
1192 }
1193
1194 return count;
1195}
1196
Jason Gerecke4922cd22017-01-25 12:08:37 -08001197static void wacom_intuos_pro2_bt_pen(struct wacom_wac *wacom)
1198{
1199 const int pen_frame_len = 14;
1200 const int pen_frames = 7;
1201
1202 struct input_dev *pen_input = wacom->pen_input;
1203 unsigned char *data = wacom->data;
1204 int i;
1205
1206 wacom->serial[0] = get_unaligned_le64(&data[99]);
1207 wacom->id[0] = get_unaligned_le16(&data[107]);
1208 if (wacom->serial[0] >> 52 == 1) {
1209 /* Add back in missing bits of ID for non-USI pens */
1210 wacom->id[0] |= (wacom->serial[0] >> 32) & 0xFFFFF;
1211 }
1212 wacom->tool[0] = wacom_intuos_get_tool_type(wacom_intuos_id_mangle(wacom->id[0]));
1213
1214 for (i = 0; i < pen_frames; i++) {
1215 unsigned char *frame = &data[i*pen_frame_len + 1];
Jason Gereckea48324d2017-02-10 16:14:07 -08001216 bool valid = frame[0] & 0x80;
1217 bool prox = frame[0] & 0x40;
1218 bool range = frame[0] & 0x20;
Jason Gerecke4922cd22017-01-25 12:08:37 -08001219
Jason Gereckea48324d2017-02-10 16:14:07 -08001220 if (!valid)
Jason Gerecke4922cd22017-01-25 12:08:37 -08001221 continue;
1222
Jason Gereckea48324d2017-02-10 16:14:07 -08001223 if (range) {
1224 input_report_abs(pen_input, ABS_X, get_unaligned_le16(&frame[1]));
1225 input_report_abs(pen_input, ABS_Y, get_unaligned_le16(&frame[3]));
1226 input_report_abs(pen_input, ABS_TILT_X, frame[7]);
1227 input_report_abs(pen_input, ABS_TILT_Y, frame[8]);
1228 input_report_abs(pen_input, ABS_Z, get_unaligned_le16(&frame[9]));
1229 input_report_abs(pen_input, ABS_WHEEL, get_unaligned_le16(&frame[11]));
1230 }
Jason Gerecke4922cd22017-01-25 12:08:37 -08001231 input_report_abs(pen_input, ABS_PRESSURE, get_unaligned_le16(&frame[5]));
Jason Gereckea48324d2017-02-10 16:14:07 -08001232 input_report_abs(pen_input, ABS_DISTANCE, range ? frame[13] : wacom->features.distance_max);
Jason Gerecke4922cd22017-01-25 12:08:37 -08001233
1234 input_report_key(pen_input, BTN_TOUCH, frame[0] & 0x01);
1235 input_report_key(pen_input, BTN_STYLUS, frame[0] & 0x02);
1236 input_report_key(pen_input, BTN_STYLUS2, frame[0] & 0x04);
1237
Jason Gereckea48324d2017-02-10 16:14:07 -08001238 input_report_key(pen_input, wacom->tool[0], prox);
Jason Gerecke4922cd22017-01-25 12:08:37 -08001239 input_event(pen_input, EV_MSC, MSC_SERIAL, wacom->serial[0]);
1240 input_report_abs(pen_input, ABS_MISC,
1241 wacom_intuos_id_mangle(wacom->id[0])); /* report tool id */
1242
Jason Gereckea48324d2017-02-10 16:14:07 -08001243 wacom->shared->stylus_in_proximity = prox;
Jason Gerecke4922cd22017-01-25 12:08:37 -08001244
1245 input_sync(pen_input);
1246 }
1247}
1248
1249static void wacom_intuos_pro2_bt_touch(struct wacom_wac *wacom)
1250{
1251 const int finger_touch_len = 8;
1252 const int finger_frames = 4;
1253 const int finger_frame_len = 43;
1254
1255 struct input_dev *touch_input = wacom->touch_input;
1256 unsigned char *data = wacom->data;
1257 int num_contacts_left = 5;
1258 int i, j;
1259
1260 for (i = 0; i < finger_frames; i++) {
1261 unsigned char *frame = &data[i*finger_frame_len + 109];
1262 int current_num_contacts = frame[0] & 0x7F;
1263 int contacts_to_send;
1264
1265 if (!(frame[0] & 0x80))
1266 continue;
1267
1268 /*
1269 * First packet resets the counter since only the first
1270 * packet in series will have non-zero current_num_contacts.
1271 */
1272 if (current_num_contacts)
1273 wacom->num_contacts_left = current_num_contacts;
1274
1275 contacts_to_send = min(num_contacts_left, wacom->num_contacts_left);
1276
1277 for (j = 0; j < contacts_to_send; j++) {
1278 unsigned char *touch = &frame[j*finger_touch_len + 1];
1279 int slot = input_mt_get_slot_by_key(touch_input, touch[0]);
1280 int x = get_unaligned_le16(&touch[2]);
1281 int y = get_unaligned_le16(&touch[4]);
1282 int w = touch[6] * input_abs_get_res(touch_input, ABS_MT_POSITION_X);
1283 int h = touch[7] * input_abs_get_res(touch_input, ABS_MT_POSITION_Y);
1284
1285 if (slot < 0)
1286 continue;
1287
1288 input_mt_slot(touch_input, slot);
1289 input_mt_report_slot_state(touch_input, MT_TOOL_FINGER, touch[1] & 0x01);
1290 input_report_abs(touch_input, ABS_MT_POSITION_X, x);
1291 input_report_abs(touch_input, ABS_MT_POSITION_Y, y);
1292 input_report_abs(touch_input, ABS_MT_TOUCH_MAJOR, max(w, h));
1293 input_report_abs(touch_input, ABS_MT_TOUCH_MINOR, min(w, h));
1294 input_report_abs(touch_input, ABS_MT_ORIENTATION, w > h);
1295 }
1296
1297 input_mt_sync_frame(touch_input);
1298
1299 wacom->num_contacts_left -= contacts_to_send;
1300 if (wacom->num_contacts_left <= 0) {
1301 wacom->num_contacts_left = 0;
1302 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
1303 }
1304 }
1305
1306 input_report_switch(touch_input, SW_MUTE_DEVICE, !(data[281] >> 7));
1307 input_sync(touch_input);
1308}
1309
1310static void wacom_intuos_pro2_bt_pad(struct wacom_wac *wacom)
1311{
1312 struct input_dev *pad_input = wacom->pad_input;
1313 unsigned char *data = wacom->data;
1314
1315 int buttons = (data[282] << 1) | ((data[281] >> 6) & 0x01);
1316 int ring = data[285];
1317 int prox = buttons | (ring & 0x80);
1318
1319 wacom_report_numbered_buttons(pad_input, 9, buttons);
1320
1321 input_report_abs(pad_input, ABS_WHEEL, (ring & 0x80) ? (ring & 0x7f) : 0);
1322
1323 input_report_key(pad_input, wacom->tool[1], prox ? 1 : 0);
1324 input_report_abs(pad_input, ABS_MISC, prox ? PAD_DEVICE_ID : 0);
1325 input_event(pad_input, EV_MSC, MSC_SERIAL, 0xffffffff);
1326
1327 input_sync(pad_input);
1328}
1329
1330static void wacom_intuos_pro2_bt_battery(struct wacom_wac *wacom)
1331{
1332 unsigned char *data = wacom->data;
1333
1334 bool chg = data[284] & 0x80;
1335 int battery_status = data[284] & 0x7F;
1336
1337 wacom_notify_battery(wacom, battery_status, chg, 1, chg);
1338}
1339
1340static int wacom_intuos_pro2_bt_irq(struct wacom_wac *wacom, size_t len)
1341{
1342 unsigned char *data = wacom->data;
1343
1344 if (data[0] != 0x80) {
1345 dev_dbg(wacom->pen_input->dev.parent,
1346 "%s: received unknown report #%d\n", __func__, data[0]);
1347 return 0;
1348 }
1349
1350 wacom_intuos_pro2_bt_pen(wacom);
1351 wacom_intuos_pro2_bt_touch(wacom);
1352 wacom_intuos_pro2_bt_pad(wacom);
1353 wacom_intuos_pro2_bt_battery(wacom);
1354 return 0;
1355}
1356
Jason Gereckeb1e42792012-10-21 00:38:04 -07001357static int wacom_24hdt_irq(struct wacom_wac *wacom)
1358{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001359 struct input_dev *input = wacom->touch_input;
Jason Gerecke74b63412014-04-19 13:50:22 -07001360 unsigned char *data = wacom->data;
Jason Gereckeb1e42792012-10-21 00:38:04 -07001361 int i;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001362 int current_num_contacts = data[61];
Jason Gereckeb1e42792012-10-21 00:38:04 -07001363 int contacts_to_send = 0;
Ping Cheng500d4162015-01-27 13:30:03 -08001364 int num_contacts_left = 4; /* maximum contacts per packet */
1365 int byte_per_packet = WACOM_BYTES_PER_24HDT_PACKET;
1366 int y_offset = 2;
1367
1368 if (wacom->features.type == WACOM_27QHDT) {
1369 current_num_contacts = data[63];
1370 num_contacts_left = 10;
1371 byte_per_packet = WACOM_BYTES_PER_QHDTHID_PACKET;
1372 y_offset = 0;
Ping Cheng500d4162015-01-27 13:30:03 -08001373 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001374
1375 /*
1376 * First packet resets the counter since only the first
1377 * packet in series will have non-zero current_num_contacts.
1378 */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001379 if (current_num_contacts)
Jason Gereckeb1e42792012-10-21 00:38:04 -07001380 wacom->num_contacts_left = current_num_contacts;
1381
Ping Cheng500d4162015-01-27 13:30:03 -08001382 contacts_to_send = min(num_contacts_left, wacom->num_contacts_left);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001383
1384 for (i = 0; i < contacts_to_send; i++) {
Ping Cheng500d4162015-01-27 13:30:03 -08001385 int offset = (byte_per_packet * i) + 1;
Ping Cheng1924e052016-08-09 14:38:56 -07001386 bool touch = (data[offset] & 0x1) && report_touch_events(wacom);
Ping Cheng02295e62013-01-04 23:56:00 -08001387 int slot = input_mt_get_slot_by_key(input, data[offset + 1]);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001388
1389 if (slot < 0)
1390 continue;
1391 input_mt_slot(input, slot);
1392 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1393
1394 if (touch) {
Jason Gereckeedc8e20a2014-05-14 16:53:30 -07001395 int t_x = get_unaligned_le16(&data[offset + 2]);
Ping Cheng500d4162015-01-27 13:30:03 -08001396 int t_y = get_unaligned_le16(&data[offset + 4 + y_offset]);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001397
1398 input_report_abs(input, ABS_MT_POSITION_X, t_x);
1399 input_report_abs(input, ABS_MT_POSITION_Y, t_y);
Ping Cheng500d4162015-01-27 13:30:03 -08001400
1401 if (wacom->features.type != WACOM_27QHDT) {
1402 int c_x = get_unaligned_le16(&data[offset + 4]);
1403 int c_y = get_unaligned_le16(&data[offset + 8]);
1404 int w = get_unaligned_le16(&data[offset + 10]);
1405 int h = get_unaligned_le16(&data[offset + 12]);
1406
1407 input_report_abs(input, ABS_MT_TOUCH_MAJOR, min(w,h));
1408 input_report_abs(input, ABS_MT_WIDTH_MAJOR,
1409 min(w, h) + int_dist(t_x, t_y, c_x, c_y));
1410 input_report_abs(input, ABS_MT_WIDTH_MINOR, min(w, h));
1411 input_report_abs(input, ABS_MT_ORIENTATION, w > h);
1412 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001413 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001414 }
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001415 input_mt_sync_frame(input);
Jason Gereckeb1e42792012-10-21 00:38:04 -07001416
1417 wacom->num_contacts_left -= contacts_to_send;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001418 if (wacom->num_contacts_left <= 0) {
Jason Gereckeb1e42792012-10-21 00:38:04 -07001419 wacom->num_contacts_left = 0;
Ping Cheng7d059ed2015-03-20 14:57:21 -07001420 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Ping Chenge0d41fd2015-02-20 14:27:30 -08001421 }
Jason Gereckeb1e42792012-10-21 00:38:04 -07001422 return 1;
1423}
1424
Ping Cheng19635182012-04-29 21:09:18 -07001425static int wacom_mt_touch(struct wacom_wac *wacom)
1426{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001427 struct input_dev *input = wacom->touch_input;
Jason Gerecke74b63412014-04-19 13:50:22 -07001428 unsigned char *data = wacom->data;
Ping Cheng19635182012-04-29 21:09:18 -07001429 int i;
1430 int current_num_contacts = data[2];
1431 int contacts_to_send = 0;
Ping Cheng6afdc282012-11-03 12:16:15 -07001432 int x_offset = 0;
1433
1434 /* MTTPC does not support Height and Width */
Jason Gerecked51ddb22014-05-14 17:14:29 -07001435 if (wacom->features.type == MTTPC || wacom->features.type == MTTPC_B)
Ping Cheng6afdc282012-11-03 12:16:15 -07001436 x_offset = -4;
Ping Cheng19635182012-04-29 21:09:18 -07001437
1438 /*
1439 * First packet resets the counter since only the first
1440 * packet in series will have non-zero current_num_contacts.
1441 */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001442 if (current_num_contacts)
Ping Cheng19635182012-04-29 21:09:18 -07001443 wacom->num_contacts_left = current_num_contacts;
1444
1445 /* There are at most 5 contacts per packet */
1446 contacts_to_send = min(5, wacom->num_contacts_left);
1447
1448 for (i = 0; i < contacts_to_send; i++) {
Ping Cheng6afdc282012-11-03 12:16:15 -07001449 int offset = (WACOM_BYTES_PER_MT_PACKET + x_offset) * i + 3;
Ping Cheng1924e052016-08-09 14:38:56 -07001450 bool touch = (data[offset] & 0x1) && report_touch_events(wacom);
Jason Gereckeedc8e20a2014-05-14 16:53:30 -07001451 int id = get_unaligned_le16(&data[offset + 1]);
Ping Cheng02295e62013-01-04 23:56:00 -08001452 int slot = input_mt_get_slot_by_key(input, id);
Ping Cheng19635182012-04-29 21:09:18 -07001453
1454 if (slot < 0)
1455 continue;
1456
1457 input_mt_slot(input, slot);
1458 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1459 if (touch) {
Jason Gereckeedc8e20a2014-05-14 16:53:30 -07001460 int x = get_unaligned_le16(&data[offset + x_offset + 7]);
1461 int y = get_unaligned_le16(&data[offset + x_offset + 9]);
Ping Cheng19635182012-04-29 21:09:18 -07001462 input_report_abs(input, ABS_MT_POSITION_X, x);
1463 input_report_abs(input, ABS_MT_POSITION_Y, y);
1464 }
Ping Cheng19635182012-04-29 21:09:18 -07001465 }
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001466 input_mt_sync_frame(input);
Ping Cheng19635182012-04-29 21:09:18 -07001467
1468 wacom->num_contacts_left -= contacts_to_send;
Ping Chenge0d41fd2015-02-20 14:27:30 -08001469 if (wacom->num_contacts_left <= 0) {
Ping Cheng19635182012-04-29 21:09:18 -07001470 wacom->num_contacts_left = 0;
Ping Cheng7d059ed2015-03-20 14:57:21 -07001471 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Ping Chenge0d41fd2015-02-20 14:27:30 -08001472 }
Ping Cheng19635182012-04-29 21:09:18 -07001473 return 1;
1474}
1475
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001476static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
1477{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001478 struct input_dev *input = wacom->touch_input;
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001479 unsigned char *data = wacom->data;
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001480 int i;
1481
1482 for (i = 0; i < 2; i++) {
1483 int p = data[1] & (1 << i);
Ping Cheng1924e052016-08-09 14:38:56 -07001484 bool touch = p && report_touch_events(wacom);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001485
1486 input_mt_slot(input, i);
1487 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1488 if (touch) {
1489 int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
1490 int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
1491
1492 input_report_abs(input, ABS_MT_POSITION_X, x);
1493 input_report_abs(input, ABS_MT_POSITION_Y, y);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001494 }
1495 }
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05001496 input_mt_sync_frame(input);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001497
1498 /* keep touch state for pen event */
Ping Cheng7d059ed2015-03-20 14:57:21 -07001499 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001500
Ping Cheng84eb5aa2011-03-12 20:35:18 -08001501 return 1;
1502}
1503
Ping Chenga43c7c52011-03-12 20:34:42 -08001504static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
Ping Chengec67bbe2009-12-15 00:35:24 -08001505{
Jason Gerecke74b63412014-04-19 13:50:22 -07001506 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001507 struct input_dev *input = wacom->touch_input;
Ping Cheng1924e052016-08-09 14:38:56 -07001508 bool prox = report_touch_events(wacom);
Ping Chenga43c7c52011-03-12 20:34:42 -08001509 int x = 0, y = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -08001510
Ping Cheng19635182012-04-29 21:09:18 -07001511 if (wacom->features.touch_max > 1 || len > WACOM_PKGLEN_TPC2FG)
1512 return 0;
1513
Ping Chenge0d41fd2015-02-20 14:27:30 -08001514 if (len == WACOM_PKGLEN_TPC1FG) {
1515 prox = prox && (data[0] & 0x01);
1516 x = get_unaligned_le16(&data[1]);
1517 y = get_unaligned_le16(&data[3]);
1518 } else if (len == WACOM_PKGLEN_TPC1FG_B) {
1519 prox = prox && (data[2] & 0x01);
1520 x = get_unaligned_le16(&data[3]);
1521 y = get_unaligned_le16(&data[5]);
1522 } else {
1523 prox = prox && (data[1] & 0x01);
1524 x = le16_to_cpup((__le16 *)&data[2]);
1525 y = le16_to_cpup((__le16 *)&data[4]);
1526 }
Ping Chenga43c7c52011-03-12 20:34:42 -08001527
1528 if (prox) {
1529 input_report_abs(input, ABS_X, x);
1530 input_report_abs(input, ABS_Y, y);
Ping Chengec67bbe2009-12-15 00:35:24 -08001531 }
Ping Chenga43c7c52011-03-12 20:34:42 -08001532 input_report_key(input, BTN_TOUCH, prox);
1533
1534 /* keep touch state for pen events */
1535 wacom->shared->touch_down = prox;
1536
1537 return 1;
Ping Chengec67bbe2009-12-15 00:35:24 -08001538}
1539
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001540static int wacom_tpc_pen(struct wacom_wac *wacom)
Ping Cheng545f4e92008-11-24 11:44:27 -05001541{
Jason Gerecke74b63412014-04-19 13:50:22 -07001542 unsigned char *data = wacom->data;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001543 struct input_dev *input = wacom->pen_input;
Ping Chenga43c7c52011-03-12 20:34:42 -08001544 bool prox = data[1] & 0x20;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001545
Ping Chenga43c7c52011-03-12 20:34:42 -08001546 if (!wacom->shared->stylus_in_proximity) /* first in prox */
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001547 /* Going into proximity select tool */
1548 wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001549
Ping Chenga43c7c52011-03-12 20:34:42 -08001550 /* keep pen state for touch events */
1551 wacom->shared->stylus_in_proximity = prox;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001552
Ping Cheng1924e052016-08-09 14:38:56 -07001553 /* send pen events only when touch is up or forced out
1554 * or touch arbitration is off
1555 */
1556 if (!delay_pen_events(wacom)) {
Ping Chenga43c7c52011-03-12 20:34:42 -08001557 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
1558 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
1559 input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
1560 input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
Jason Gerecke0b335ca2014-07-24 13:15:31 -07001561 input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x07) << 8) | data[6]);
Ping Chenga43c7c52011-03-12 20:34:42 -08001562 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
1563 input_report_key(input, wacom->tool[0], prox);
1564 return 1;
1565 }
1566
1567 return 0;
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001568}
1569
1570static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
1571{
Jason Gerecke74b63412014-04-19 13:50:22 -07001572 unsigned char *data = wacom->data;
Ping Cheng545f4e92008-11-24 11:44:27 -05001573
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001574 if (wacom->pen_input)
1575 dev_dbg(wacom->pen_input->dev.parent,
1576 "%s: received report #%d\n", __func__, data[0]);
1577 else if (wacom->touch_input)
1578 dev_dbg(wacom->touch_input->dev.parent,
1579 "%s: received report #%d\n", __func__, data[0]);
Ping Cheng545f4e92008-11-24 11:44:27 -05001580
Ping Cheng31175a82012-01-31 00:07:33 -08001581 switch (len) {
1582 case WACOM_PKGLEN_TPC1FG:
Ping Cheng19635182012-04-29 21:09:18 -07001583 return wacom_tpc_single_touch(wacom, len);
Ping Cheng31175a82012-01-31 00:07:33 -08001584
1585 case WACOM_PKGLEN_TPC2FG:
Ping Cheng19635182012-04-29 21:09:18 -07001586 return wacom_tpc_mt_touch(wacom);
Ping Cheng31175a82012-01-31 00:07:33 -08001587
Jason Gerecked51ddb22014-05-14 17:14:29 -07001588 case WACOM_PKGLEN_PENABLED:
1589 return wacom_tpc_pen(wacom);
1590
Ping Cheng31175a82012-01-31 00:07:33 -08001591 default:
1592 switch (data[0]) {
1593 case WACOM_REPORT_TPC1FG:
1594 case WACOM_REPORT_TPCHID:
1595 case WACOM_REPORT_TPCST:
Ping Chengac173832012-06-12 00:15:06 -07001596 case WACOM_REPORT_TPC1FGE:
Ping Cheng31175a82012-01-31 00:07:33 -08001597 return wacom_tpc_single_touch(wacom, len);
1598
Ping Cheng19635182012-04-29 21:09:18 -07001599 case WACOM_REPORT_TPCMT:
Jason Gerecked51ddb22014-05-14 17:14:29 -07001600 case WACOM_REPORT_TPCMT2:
Ping Cheng19635182012-04-29 21:09:18 -07001601 return wacom_mt_touch(wacom);
1602
Ping Cheng31175a82012-01-31 00:07:33 -08001603 case WACOM_REPORT_PENABLED:
1604 return wacom_tpc_pen(wacom);
1605 }
1606 }
Ping Cheng545f4e92008-11-24 11:44:27 -05001607
Ping Cheng8aa9a9a2011-03-12 20:34:11 -08001608 return 0;
Ping Cheng545f4e92008-11-24 11:44:27 -05001609}
1610
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -08001611int wacom_equivalent_usage(int usage)
Jason Gereckec9c09582016-10-19 18:03:43 -07001612{
1613 if ((usage & HID_USAGE_PAGE) == WACOM_HID_UP_WACOMDIGITIZER) {
1614 int subpage = (usage & 0xFF00) << 8;
1615 int subusage = (usage & 0xFF);
1616
Jason Gerecke5922e612016-10-19 18:03:51 -07001617 if (subpage == WACOM_HID_SP_PAD ||
1618 subpage == WACOM_HID_SP_BUTTON ||
1619 subpage == WACOM_HID_SP_DIGITIZER ||
Jason Gereckeb5c921e2016-10-19 18:03:44 -07001620 subpage == WACOM_HID_SP_DIGITIZERINFO ||
Jason Gerecke61ce3462016-10-19 18:03:46 -07001621 usage == WACOM_HID_WD_SENSE ||
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001622 usage == WACOM_HID_WD_SERIALHI ||
1623 usage == WACOM_HID_WD_TOOLTYPE ||
Jason Gerecke5922e612016-10-19 18:03:51 -07001624 usage == WACOM_HID_WD_DISTANCE ||
Jason Gereckebf78adc2016-10-19 18:03:53 -07001625 usage == WACOM_HID_WD_TOUCHSTRIP ||
1626 usage == WACOM_HID_WD_TOUCHSTRIP2 ||
Jason Gerecke5922e612016-10-19 18:03:51 -07001627 usage == WACOM_HID_WD_TOUCHRING ||
1628 usage == WACOM_HID_WD_TOUCHRINGSTATUS) {
Jason Gereckec9c09582016-10-19 18:03:43 -07001629 return usage;
1630 }
1631
1632 if (subpage == HID_UP_UNDEFINED)
1633 subpage = HID_UP_DIGITIZER;
1634
1635 return subpage | subusage;
1636 }
1637
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -08001638 if ((usage & HID_USAGE_PAGE) == WACOM_HID_UP_WACOMTOUCH) {
1639 int subpage = (usage & 0xFF00) << 8;
1640 int subusage = (usage & 0xFF);
1641
1642 if (subpage == HID_UP_UNDEFINED)
1643 subpage = WACOM_HID_SP_DIGITIZER;
1644
1645 return subpage | subusage;
1646 }
1647
Jason Gereckec9c09582016-10-19 18:03:43 -07001648 return usage;
1649}
1650
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001651static void wacom_map_usage(struct input_dev *input, struct hid_usage *usage,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001652 struct hid_field *field, __u8 type, __u16 code, int fuzz)
1653{
Jason Gerecke345857b2016-10-19 18:03:50 -07001654 struct wacom *wacom = input_get_drvdata(input);
1655 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1656 struct wacom_features *features = &wacom_wac->features;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001657 int fmin = field->logical_minimum;
1658 int fmax = field->logical_maximum;
Jason Gereckec9c09582016-10-19 18:03:43 -07001659 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
Jason Gerecke50066a02016-10-19 18:03:42 -07001660 int resolution_code = code;
1661
Jason Gereckec9c09582016-10-19 18:03:43 -07001662 if (equivalent_usage == HID_DG_TWIST) {
Jason Gerecke50066a02016-10-19 18:03:42 -07001663 resolution_code = ABS_RZ;
1664 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001665
Jason Gerecke345857b2016-10-19 18:03:50 -07001666 if (equivalent_usage == HID_GD_X) {
1667 fmin += features->offset_left;
1668 fmax -= features->offset_right;
1669 }
1670 if (equivalent_usage == HID_GD_Y) {
1671 fmin += features->offset_top;
1672 fmax -= features->offset_bottom;
1673 }
1674
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001675 usage->type = type;
1676 usage->code = code;
1677
1678 set_bit(type, input->evbit);
1679
1680 switch (type) {
1681 case EV_ABS:
1682 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
1683 input_abs_set_res(input, code,
Jason Gerecke50066a02016-10-19 18:03:42 -07001684 hidinput_calc_abs_res(field, resolution_code));
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001685 break;
1686 case EV_KEY:
1687 input_set_capability(input, EV_KEY, code);
1688 break;
1689 case EV_MSC:
1690 input_set_capability(input, EV_MSC, code);
1691 break;
Jason Gereckebf78adc2016-10-19 18:03:53 -07001692 case EV_SW:
1693 input_set_capability(input, EV_SW, code);
1694 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001695 }
1696}
1697
Jason Gerecke5922e612016-10-19 18:03:51 -07001698static void wacom_wac_pad_usage_mapping(struct hid_device *hdev,
1699 struct hid_field *field, struct hid_usage *usage)
1700{
1701 struct wacom *wacom = hid_get_drvdata(hdev);
1702 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1703 struct wacom_features *features = &wacom_wac->features;
1704 struct input_dev *input = wacom_wac->pad_input;
1705 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
1706
1707 switch (equivalent_usage) {
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001708 case WACOM_HID_WD_BATTERY_LEVEL:
1709 case WACOM_HID_WD_BATTERY_CHARGING:
1710 features->quirks |= WACOM_QUIRK_BATTERY;
1711 break;
Jason Gerecke5922e612016-10-19 18:03:51 -07001712 case WACOM_HID_WD_ACCELEROMETER_X:
1713 __set_bit(INPUT_PROP_ACCELEROMETER, input->propbit);
1714 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 0);
Ping Chengf3f24e72016-12-08 22:05:44 -08001715 features->device_type |= WACOM_DEVICETYPE_PAD;
Jason Gerecke5922e612016-10-19 18:03:51 -07001716 break;
1717 case WACOM_HID_WD_ACCELEROMETER_Y:
1718 __set_bit(INPUT_PROP_ACCELEROMETER, input->propbit);
1719 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 0);
Ping Chengf3f24e72016-12-08 22:05:44 -08001720 features->device_type |= WACOM_DEVICETYPE_PAD;
Jason Gerecke5922e612016-10-19 18:03:51 -07001721 break;
1722 case WACOM_HID_WD_ACCELEROMETER_Z:
1723 __set_bit(INPUT_PROP_ACCELEROMETER, input->propbit);
1724 wacom_map_usage(input, usage, field, EV_ABS, ABS_Z, 0);
Ping Chengf3f24e72016-12-08 22:05:44 -08001725 features->device_type |= WACOM_DEVICETYPE_PAD;
Jason Gerecke5922e612016-10-19 18:03:51 -07001726 break;
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001727 case WACOM_HID_WD_BUTTONCENTER:
1728 wacom->generic_has_leds = true;
1729 /* fall through */
Jason Gerecke5922e612016-10-19 18:03:51 -07001730 case WACOM_HID_WD_BUTTONHOME:
1731 case WACOM_HID_WD_BUTTONUP:
1732 case WACOM_HID_WD_BUTTONDOWN:
1733 case WACOM_HID_WD_BUTTONLEFT:
1734 case WACOM_HID_WD_BUTTONRIGHT:
1735 wacom_map_usage(input, usage, field, EV_KEY,
1736 wacom_numbered_button_to_key(features->numbered_buttons),
1737 0);
1738 features->numbered_buttons++;
Ping Chengf3f24e72016-12-08 22:05:44 -08001739 features->device_type |= WACOM_DEVICETYPE_PAD;
Jason Gerecke5922e612016-10-19 18:03:51 -07001740 break;
Jason Gereckebf78adc2016-10-19 18:03:53 -07001741 case WACOM_HID_WD_TOUCHONOFF:
Ping Chengd793ff82017-02-14 21:27:45 -08001742 case WACOM_HID_WD_MUTE_DEVICE:
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08001743 /*
1744 * This usage, which is used to mute touch events, comes
1745 * from the pad packet, but is reported on the touch
1746 * interface. Because the touch interface may not have
1747 * been created yet, we cannot call wacom_map_usage(). In
1748 * order to process this usage when we receive it, we set
1749 * the usage type and code directly.
1750 */
1751 wacom_wac->has_mute_touch_switch = true;
1752 usage->type = EV_SW;
1753 usage->code = SW_MUTE_DEVICE;
Ping Chengf3f24e72016-12-08 22:05:44 -08001754 features->device_type |= WACOM_DEVICETYPE_PAD;
Jason Gereckebf78adc2016-10-19 18:03:53 -07001755 break;
1756 case WACOM_HID_WD_TOUCHSTRIP:
1757 wacom_map_usage(input, usage, field, EV_ABS, ABS_RX, 0);
Ping Chengf3f24e72016-12-08 22:05:44 -08001758 features->device_type |= WACOM_DEVICETYPE_PAD;
Jason Gereckebf78adc2016-10-19 18:03:53 -07001759 break;
1760 case WACOM_HID_WD_TOUCHSTRIP2:
1761 wacom_map_usage(input, usage, field, EV_ABS, ABS_RY, 0);
Ping Chengf3f24e72016-12-08 22:05:44 -08001762 features->device_type |= WACOM_DEVICETYPE_PAD;
Jason Gereckebf78adc2016-10-19 18:03:53 -07001763 break;
Jason Gerecke5922e612016-10-19 18:03:51 -07001764 case WACOM_HID_WD_TOUCHRING:
1765 wacom_map_usage(input, usage, field, EV_ABS, ABS_WHEEL, 0);
Ping Chengf3f24e72016-12-08 22:05:44 -08001766 features->device_type |= WACOM_DEVICETYPE_PAD;
Jason Gerecke5922e612016-10-19 18:03:51 -07001767 break;
Aaron Armstrong Skomra60a22182017-01-25 12:08:39 -08001768 case WACOM_HID_WD_TOUCHRINGSTATUS:
1769 wacom_map_usage(input, usage, field, EV_ABS, ABS_WHEEL, 0);
1770 features->device_type |= WACOM_DEVICETYPE_PAD;
1771 break;
Ping Cheng4eb220c2017-02-14 21:26:21 -08001772 case WACOM_HID_WD_BUTTONCONFIG:
1773 wacom_map_usage(input, usage, field, EV_KEY, KEY_BUTTONCONFIG, 0);
1774 features->device_type |= WACOM_DEVICETYPE_PAD;
1775 break;
1776 case WACOM_HID_WD_ONSCREEN_KEYBOARD:
1777 wacom_map_usage(input, usage, field, EV_KEY, KEY_ONSCREEN_KEYBOARD, 0);
1778 features->device_type |= WACOM_DEVICETYPE_PAD;
1779 break;
1780 case WACOM_HID_WD_CONTROLPANEL:
1781 wacom_map_usage(input, usage, field, EV_KEY, KEY_CONTROLPANEL, 0);
1782 features->device_type |= WACOM_DEVICETYPE_PAD;
1783 break;
Benjamin Tissoires4082da82017-02-14 21:27:18 -08001784 case WACOM_HID_WD_MODE_CHANGE:
1785 /* do not overwrite previous data */
1786 if (!wacom_wac->has_mode_change) {
1787 wacom_wac->has_mode_change = true;
1788 wacom_wac->is_direct_mode = true;
1789 }
1790 features->device_type |= WACOM_DEVICETYPE_PAD;
1791 break;
Jason Gerecke5922e612016-10-19 18:03:51 -07001792 }
1793
1794 switch (equivalent_usage & 0xfffffff0) {
1795 case WACOM_HID_WD_EXPRESSKEY00:
1796 wacom_map_usage(input, usage, field, EV_KEY,
1797 wacom_numbered_button_to_key(features->numbered_buttons),
1798 0);
1799 features->numbered_buttons++;
Ping Chengf3f24e72016-12-08 22:05:44 -08001800 features->device_type |= WACOM_DEVICETYPE_PAD;
Jason Gerecke5922e612016-10-19 18:03:51 -07001801 break;
1802 }
1803}
1804
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001805static void wacom_wac_pad_battery_event(struct hid_device *hdev, struct hid_field *field,
Jason Gerecke5922e612016-10-19 18:03:51 -07001806 struct hid_usage *usage, __s32 value)
1807{
1808 struct wacom *wacom = hid_get_drvdata(hdev);
1809 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke5922e612016-10-19 18:03:51 -07001810 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
1811
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001812 switch (equivalent_usage) {
1813 case WACOM_HID_WD_BATTERY_LEVEL:
1814 wacom_wac->hid_data.battery_capacity = value;
1815 wacom_wac->hid_data.bat_connected = 1;
Ping Cheng354a3292016-12-08 22:03:27 -08001816 break;
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001817
1818 case WACOM_HID_WD_BATTERY_CHARGING:
1819 wacom_wac->hid_data.bat_charging = value;
1820 wacom_wac->hid_data.ps_connected = value;
1821 wacom_wac->hid_data.bat_connected = 1;
Ping Cheng354a3292016-12-08 22:03:27 -08001822 break;
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001823 }
1824}
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001825
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001826static void wacom_wac_pad_event(struct hid_device *hdev, struct hid_field *field,
1827 struct hid_usage *usage, __s32 value)
1828{
1829 struct wacom *wacom = hid_get_drvdata(hdev);
1830 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1831 struct input_dev *input = wacom_wac->pad_input;
1832 struct wacom_features *features = &wacom_wac->features;
1833 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001834 int i;
Ping Chengd793ff82017-02-14 21:27:45 -08001835 bool is_touch_on = value;
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001836
Aaron Armstrong Skomra60a22182017-01-25 12:08:39 -08001837 /*
1838 * Avoid reporting this event and setting inrange_state if this usage
1839 * hasn't been mapped.
1840 */
Benjamin Tissoires4082da82017-02-14 21:27:18 -08001841 if (!usage->type && equivalent_usage != WACOM_HID_WD_MODE_CHANGE)
Aaron Armstrong Skomra60a22182017-01-25 12:08:39 -08001842 return;
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001843
1844 if (wacom_equivalent_usage(field->physical) == HID_DG_TABLETFUNCTIONKEY) {
Aaron Armstrong Skomra60a22182017-01-25 12:08:39 -08001845 if (usage->hid != WACOM_HID_WD_TOUCHRING)
1846 wacom_wac->hid_data.inrange_state |= value;
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001847 }
1848
1849 switch (equivalent_usage) {
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001850 case WACOM_HID_WD_TOUCHRINGSTATUS:
Aaron Armstrong Skomra60a22182017-01-25 12:08:39 -08001851 if (!value)
1852 input_event(input, usage->type, usage->code, 0);
Ping Cheng354a3292016-12-08 22:03:27 -08001853 break;
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001854
Ping Chengd793ff82017-02-14 21:27:45 -08001855 case WACOM_HID_WD_MUTE_DEVICE:
1856 if (wacom_wac->shared->touch_input && value) {
1857 wacom_wac->shared->is_touch_on = !wacom_wac->shared->is_touch_on;
1858 is_touch_on = wacom_wac->shared->is_touch_on;
1859 }
1860
1861 /* fall through*/
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08001862 case WACOM_HID_WD_TOUCHONOFF:
1863 if (wacom_wac->shared->touch_input) {
1864 input_report_switch(wacom_wac->shared->touch_input,
Ping Chengd793ff82017-02-14 21:27:45 -08001865 SW_MUTE_DEVICE, !is_touch_on);
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08001866 input_sync(wacom_wac->shared->touch_input);
1867 }
1868 break;
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001869
Benjamin Tissoires4082da82017-02-14 21:27:18 -08001870 case WACOM_HID_WD_MODE_CHANGE:
1871 if (wacom_wac->is_direct_mode != value) {
1872 wacom_wac->is_direct_mode = value;
1873 wacom_schedule_work(&wacom->wacom_wac, WACOM_WORKER_MODE_CHANGE);
1874 }
1875 break;
1876
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001877 case WACOM_HID_WD_BUTTONCENTER:
1878 for (i = 0; i < wacom->led.count; i++)
1879 wacom_update_led(wacom, features->numbered_buttons,
1880 value, i);
1881 /* fall through*/
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001882 default:
Jason Gerecke5922e612016-10-19 18:03:51 -07001883 input_event(input, usage->type, usage->code, value);
Ping Chenged1fa732017-04-04 12:31:07 -07001884 if (value)
1885 wacom_wac->hid_data.pad_input_event_flag = true;
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001886 break;
1887 }
Jason Gerecke5922e612016-10-19 18:03:51 -07001888}
1889
1890static void wacom_wac_pad_pre_report(struct hid_device *hdev,
1891 struct hid_report *report)
1892{
1893 struct wacom *wacom = hid_get_drvdata(hdev);
1894 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1895
1896 wacom_wac->hid_data.inrange_state = 0;
1897}
1898
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001899static void wacom_wac_pad_battery_report(struct hid_device *hdev,
Jason Gerecke5922e612016-10-19 18:03:51 -07001900 struct hid_report *report)
1901{
1902 struct wacom *wacom = hid_get_drvdata(hdev);
1903 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001904 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke5922e612016-10-19 18:03:51 -07001905
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001906 if (features->quirks & WACOM_QUIRK_BATTERY) {
1907 int capacity = wacom_wac->hid_data.battery_capacity;
1908 bool charging = wacom_wac->hid_data.bat_charging;
1909 bool connected = wacom_wac->hid_data.bat_connected;
1910 bool powered = wacom_wac->hid_data.ps_connected;
1911
1912 wacom_notify_battery(wacom_wac, capacity, charging,
1913 connected, powered);
1914 }
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001915}
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001916
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001917static void wacom_wac_pad_report(struct hid_device *hdev,
1918 struct hid_report *report)
1919{
1920 struct wacom *wacom = hid_get_drvdata(hdev);
1921 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001922 struct input_dev *input = wacom_wac->pad_input;
1923 bool active = wacom_wac->hid_data.inrange_state != 0;
1924
1925 /* report prox for expresskey events */
Ping Chenged1fa732017-04-04 12:31:07 -07001926 if ((wacom_equivalent_usage(report->field[0]->physical) == HID_DG_TABLETFUNCTIONKEY) &&
1927 wacom_wac->hid_data.pad_input_event_flag) {
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001928 input_event(input, EV_ABS, ABS_MISC, active ? PAD_DEVICE_ID : 0);
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001929 input_sync(input);
Ping Chenged1fa732017-04-04 12:31:07 -07001930 if (!active)
1931 wacom_wac->hid_data.pad_input_event_flag = false;
Ping Chengc9cfb2a2016-12-08 22:06:15 -08001932 }
Aaron Armstrong Skomra65ef4c12017-01-25 12:08:38 -08001933
Jason Gerecke5922e612016-10-19 18:03:51 -07001934}
1935
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001936static void wacom_wac_pen_usage_mapping(struct hid_device *hdev,
1937 struct hid_field *field, struct hid_usage *usage)
1938{
1939 struct wacom *wacom = hid_get_drvdata(hdev);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001940 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke61ce3462016-10-19 18:03:46 -07001941 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001942 struct input_dev *input = wacom_wac->pen_input;
Jason Gereckec9c09582016-10-19 18:03:43 -07001943 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001944
Jason Gereckec9c09582016-10-19 18:03:43 -07001945 switch (equivalent_usage) {
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001946 case HID_GD_X:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001947 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001948 break;
1949 case HID_GD_Y:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001950 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001951 break;
Jason Gereckeb5c921e2016-10-19 18:03:44 -07001952 case WACOM_HID_WD_DISTANCE:
Jason Gerecke50066a02016-10-19 18:03:42 -07001953 case HID_GD_Z:
1954 wacom_map_usage(input, usage, field, EV_ABS, ABS_DISTANCE, 0);
1955 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001956 case HID_DG_TIPPRESSURE:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001957 wacom_map_usage(input, usage, field, EV_ABS, ABS_PRESSURE, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001958 break;
1959 case HID_DG_INRANGE:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001960 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001961 break;
Jason Gerecke93aab7f2016-10-19 18:03:52 -07001962 case HID_DG_BATTERYSTRENGTH:
1963 features->quirks |= WACOM_QUIRK_BATTERY;
1964 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001965 case HID_DG_INVERT:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001966 wacom_map_usage(input, usage, field, EV_KEY,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001967 BTN_TOOL_RUBBER, 0);
1968 break;
Jason Gerecke50066a02016-10-19 18:03:42 -07001969 case HID_DG_TILT_X:
1970 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_X, 0);
1971 break;
1972 case HID_DG_TILT_Y:
1973 wacom_map_usage(input, usage, field, EV_ABS, ABS_TILT_Y, 0);
1974 break;
1975 case HID_DG_TWIST:
1976 wacom_map_usage(input, usage, field, EV_ABS, ABS_Z, 0);
1977 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001978 case HID_DG_ERASER:
1979 case HID_DG_TIPSWITCH:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001980 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001981 break;
1982 case HID_DG_BARRELSWITCH:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001983 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001984 break;
1985 case HID_DG_BARRELSWITCH2:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001986 wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS2, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001987 break;
1988 case HID_DG_TOOLSERIALNUMBER:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001989 wacom_map_usage(input, usage, field, EV_MSC, MSC_SERIAL, 0);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001990 break;
Jason Gerecke61ce3462016-10-19 18:03:46 -07001991 case WACOM_HID_WD_SENSE:
1992 features->quirks |= WACOM_QUIRK_SENSE;
1993 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
1994 break;
Jason Gereckef85c9dc2016-10-19 18:03:48 -07001995 case WACOM_HID_WD_SERIALHI:
1996 wacom_map_usage(input, usage, field, EV_ABS, ABS_MISC, 0);
1997 set_bit(EV_KEY, input->evbit);
1998 input_set_capability(input, EV_KEY, BTN_TOOL_PEN);
1999 input_set_capability(input, EV_KEY, BTN_TOOL_RUBBER);
2000 input_set_capability(input, EV_KEY, BTN_TOOL_BRUSH);
2001 input_set_capability(input, EV_KEY, BTN_TOOL_PENCIL);
2002 input_set_capability(input, EV_KEY, BTN_TOOL_AIRBRUSH);
2003 input_set_capability(input, EV_KEY, BTN_TOOL_MOUSE);
2004 input_set_capability(input, EV_KEY, BTN_TOOL_LENS);
2005 break;
Jason Gerecke929d6d52016-10-19 18:03:45 -07002006 case WACOM_HID_WD_FINGERWHEEL:
2007 wacom_map_usage(input, usage, field, EV_ABS, ABS_WHEEL, 0);
2008 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002009 }
2010}
2011
Ping Cheng354a3292016-12-08 22:03:27 -08002012static void wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002013 struct hid_usage *usage, __s32 value)
2014{
2015 struct wacom *wacom = hid_get_drvdata(hdev);
2016 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke61ce3462016-10-19 18:03:46 -07002017 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002018 struct input_dev *input = wacom_wac->pen_input;
Jason Gereckec9c09582016-10-19 18:03:43 -07002019 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002020
Jason Gereckec9c09582016-10-19 18:03:43 -07002021 switch (equivalent_usage) {
Jason Gerecke50066a02016-10-19 18:03:42 -07002022 case HID_GD_Z:
2023 /*
2024 * HID_GD_Z "should increase as the control's position is
2025 * moved from high to low", while ABS_DISTANCE instead
2026 * increases in value as the tool moves from low to high.
2027 */
2028 value = field->logical_maximum - value;
2029 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002030 case HID_DG_INRANGE:
2031 wacom_wac->hid_data.inrange_state = value;
Jason Gerecke61ce3462016-10-19 18:03:46 -07002032 if (!(features->quirks & WACOM_QUIRK_SENSE))
2033 wacom_wac->hid_data.sense_state = value;
Ping Cheng354a3292016-12-08 22:03:27 -08002034 return;
Jason Gerecke93aab7f2016-10-19 18:03:52 -07002035 case HID_DG_BATTERYSTRENGTH:
2036 wacom_wac->hid_data.battery_capacity = value;
2037 wacom_wac->hid_data.bat_connected = 1;
2038 break;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002039 case HID_DG_INVERT:
2040 wacom_wac->hid_data.invert_state = value;
Ping Cheng354a3292016-12-08 22:03:27 -08002041 return;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002042 case HID_DG_ERASER:
2043 case HID_DG_TIPSWITCH:
2044 wacom_wac->hid_data.tipswitch |= value;
Ping Cheng354a3292016-12-08 22:03:27 -08002045 return;
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002046 case HID_DG_TOOLSERIALNUMBER:
Dan Carpentera35f09b2016-11-10 22:25:39 +03002047 wacom_wac->serial[0] = (wacom_wac->serial[0] & ~0xFFFFFFFFULL);
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002048 wacom_wac->serial[0] |= value;
Ping Cheng354a3292016-12-08 22:03:27 -08002049 return;
Jason Gerecke61ce3462016-10-19 18:03:46 -07002050 case WACOM_HID_WD_SENSE:
2051 wacom_wac->hid_data.sense_state = value;
Ping Cheng354a3292016-12-08 22:03:27 -08002052 return;
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002053 case WACOM_HID_WD_SERIALHI:
2054 wacom_wac->serial[0] = (wacom_wac->serial[0] & 0xFFFFFFFF);
2055 wacom_wac->serial[0] |= ((__u64)value) << 32;
2056 /*
2057 * Non-USI EMR devices may contain additional tool type
2058 * information here. See WACOM_HID_WD_TOOLTYPE case for
2059 * more details.
2060 */
2061 if (value >> 20 == 1) {
2062 wacom_wac->id[0] |= value & 0xFFFFF;
2063 }
Ping Cheng354a3292016-12-08 22:03:27 -08002064 return;
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002065 case WACOM_HID_WD_TOOLTYPE:
2066 /*
2067 * Some devices (MobileStudio Pro, and possibly later
2068 * devices as well) do not return the complete tool
2069 * type in their WACOM_HID_WD_TOOLTYPE usage. Use a
2070 * bitwise OR so the complete value can be built
2071 * up over time :(
2072 */
2073 wacom_wac->id[0] |= value;
Ping Cheng354a3292016-12-08 22:03:27 -08002074 return;
Jason Gerecke345857b2016-10-19 18:03:50 -07002075 case WACOM_HID_WD_OFFSETLEFT:
2076 if (features->offset_left && value != features->offset_left)
2077 hid_warn(hdev, "%s: overriding exising left offset "
2078 "%d -> %d\n", __func__, value,
2079 features->offset_left);
2080 features->offset_left = value;
Ping Cheng354a3292016-12-08 22:03:27 -08002081 return;
Jason Gerecke345857b2016-10-19 18:03:50 -07002082 case WACOM_HID_WD_OFFSETRIGHT:
2083 if (features->offset_right && value != features->offset_right)
2084 hid_warn(hdev, "%s: overriding exising right offset "
2085 "%d -> %d\n", __func__, value,
2086 features->offset_right);
2087 features->offset_right = value;
Ping Cheng354a3292016-12-08 22:03:27 -08002088 return;
Jason Gerecke345857b2016-10-19 18:03:50 -07002089 case WACOM_HID_WD_OFFSETTOP:
2090 if (features->offset_top && value != features->offset_top)
2091 hid_warn(hdev, "%s: overriding exising top offset "
2092 "%d -> %d\n", __func__, value,
2093 features->offset_top);
2094 features->offset_top = value;
Ping Cheng354a3292016-12-08 22:03:27 -08002095 return;
Jason Gerecke345857b2016-10-19 18:03:50 -07002096 case WACOM_HID_WD_OFFSETBOTTOM:
2097 if (features->offset_bottom && value != features->offset_bottom)
2098 hid_warn(hdev, "%s: overriding exising bottom offset "
2099 "%d -> %d\n", __func__, value,
2100 features->offset_bottom);
2101 features->offset_bottom = value;
Ping Cheng354a3292016-12-08 22:03:27 -08002102 return;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002103 }
2104
Ping Cheng1924e052016-08-09 14:38:56 -07002105 /* send pen events only when touch is up or forced out
2106 * or touch arbitration is off
2107 */
2108 if (!usage->type || delay_pen_events(wacom_wac))
Ping Cheng354a3292016-12-08 22:03:27 -08002109 return;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002110
Jason Gerecke61ce3462016-10-19 18:03:46 -07002111 /* send pen events only when the pen is in/entering/leaving proximity */
2112 if (!wacom_wac->hid_data.inrange_state && !wacom_wac->tool[0])
Ping Cheng354a3292016-12-08 22:03:27 -08002113 return;
Jason Gerecke61ce3462016-10-19 18:03:46 -07002114
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002115 input_event(input, usage->type, usage->code, value);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002116}
2117
Jason Gerecke06324e02015-07-21 11:07:23 -07002118static void wacom_wac_pen_pre_report(struct hid_device *hdev,
2119 struct hid_report *report)
2120{
2121 return;
2122}
2123
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002124static void wacom_wac_pen_report(struct hid_device *hdev,
2125 struct hid_report *report)
2126{
2127 struct wacom *wacom = hid_get_drvdata(hdev);
2128 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002129 struct input_dev *input = wacom_wac->pen_input;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002130 bool prox = wacom_wac->hid_data.inrange_state;
Jason Gerecke61ce3462016-10-19 18:03:46 -07002131 bool range = wacom_wac->hid_data.sense_state;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002132
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002133 if (!wacom_wac->tool[0] && prox) { /* first in prox */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002134 /* Going into proximity select tool */
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002135 if (wacom_wac->hid_data.invert_state)
2136 wacom_wac->tool[0] = BTN_TOOL_RUBBER;
2137 else if (wacom_wac->id[0])
2138 wacom_wac->tool[0] = wacom_intuos_get_tool_type(wacom_wac->id[0]);
2139 else
2140 wacom_wac->tool[0] = BTN_TOOL_PEN;
2141 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002142
2143 /* keep pen state for touch events */
Jason Gerecke61ce3462016-10-19 18:03:46 -07002144 wacom_wac->shared->stylus_in_proximity = range;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002145
Jason Gerecke61ce3462016-10-19 18:03:46 -07002146 if (!delay_pen_events(wacom_wac) && wacom_wac->tool[0]) {
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002147 int id = wacom_wac->id[0];
2148
2149 /*
2150 * Non-USI EMR tools should have their IDs mangled to
2151 * match the legacy behavior of wacom_intuos_general
2152 */
2153 if (wacom_wac->serial[0] >> 52 == 1)
2154 id = wacom_intuos_id_mangle(id);
2155
2156 /*
2157 * To ensure compatibility with xf86-input-wacom, we should
2158 * report the BTN_TOOL_* event prior to the ABS_MISC or
2159 * MSC_SERIAL events.
2160 */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002161 input_report_key(input, BTN_TOUCH,
2162 wacom_wac->hid_data.tipswitch);
2163 input_report_key(input, wacom_wac->tool[0], prox);
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002164 if (wacom_wac->serial[0]) {
2165 input_event(input, EV_MSC, MSC_SERIAL, wacom_wac->serial[0]);
2166 input_report_abs(input, ABS_MISC, id);
2167 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002168
2169 wacom_wac->hid_data.tipswitch = false;
2170
2171 input_sync(input);
2172 }
Jason Gerecke61ce3462016-10-19 18:03:46 -07002173
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002174 if (!prox) {
Jason Gerecke61ce3462016-10-19 18:03:46 -07002175 wacom_wac->tool[0] = 0;
Jason Gereckef85c9dc2016-10-19 18:03:48 -07002176 wacom_wac->id[0] = 0;
2177 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002178}
2179
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002180static void wacom_wac_finger_usage_mapping(struct hid_device *hdev,
2181 struct hid_field *field, struct hid_usage *usage)
2182{
2183 struct wacom *wacom = hid_get_drvdata(hdev);
2184 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002185 struct input_dev *input = wacom_wac->touch_input;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002186 unsigned touch_max = wacom_wac->features.touch_max;
Jason Gereckec9c09582016-10-19 18:03:43 -07002187 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002188
Jason Gereckec9c09582016-10-19 18:03:43 -07002189 switch (equivalent_usage) {
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002190 case HID_GD_X:
2191 if (touch_max == 1)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002192 wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002193 else
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002194 wacom_map_usage(input, usage, field, EV_ABS,
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002195 ABS_MT_POSITION_X, 4);
2196 break;
2197 case HID_GD_Y:
2198 if (touch_max == 1)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002199 wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002200 else
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002201 wacom_map_usage(input, usage, field, EV_ABS,
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002202 ABS_MT_POSITION_Y, 4);
2203 break;
Jason Gerecke488abb52015-07-21 11:07:25 -07002204 case HID_DG_WIDTH:
2205 case HID_DG_HEIGHT:
Jason Gerecke488abb52015-07-21 11:07:25 -07002206 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MAJOR, 0);
2207 wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MINOR, 0);
2208 input_set_abs_params(input, ABS_MT_ORIENTATION, 0, 1, 0, 0);
2209 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002210 case HID_DG_TIPSWITCH:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002211 wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002212 break;
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07002213 case HID_DG_CONTACTCOUNT:
Jason Gerecke499522c2015-10-07 16:54:21 -07002214 wacom_wac->hid_data.cc_report = field->report->id;
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07002215 wacom_wac->hid_data.cc_index = field->index;
2216 wacom_wac->hid_data.cc_value_index = usage->usage_index;
2217 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002218 }
2219}
2220
Jason Gerecke601a22f2014-12-10 16:26:04 -08002221static void wacom_wac_finger_slot(struct wacom_wac *wacom_wac,
2222 struct input_dev *input)
2223{
2224 struct hid_data *hid_data = &wacom_wac->hid_data;
2225 bool mt = wacom_wac->features.touch_max > 1;
2226 bool prox = hid_data->tipswitch &&
Ping Cheng1924e052016-08-09 14:38:56 -07002227 report_touch_events(wacom_wac);
Jason Gerecke601a22f2014-12-10 16:26:04 -08002228
Ping Chengd793ff82017-02-14 21:27:45 -08002229 if (wacom_wac->shared->has_mute_touch_switch &&
2230 !wacom_wac->shared->is_touch_on) {
2231 if (!wacom_wac->shared->touch_down)
2232 return;
2233 prox = 0;
2234 }
2235
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07002236 wacom_wac->hid_data.num_received++;
2237 if (wacom_wac->hid_data.num_received > wacom_wac->hid_data.num_expected)
2238 return;
2239
Jason Gerecke601a22f2014-12-10 16:26:04 -08002240 if (mt) {
2241 int slot;
2242
2243 slot = input_mt_get_slot_by_key(input, hid_data->id);
2244 input_mt_slot(input, slot);
2245 input_mt_report_slot_state(input, MT_TOOL_FINGER, prox);
2246 }
2247 else {
2248 input_report_key(input, BTN_TOUCH, prox);
2249 }
2250
2251 if (prox) {
2252 input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X,
2253 hid_data->x);
2254 input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y,
2255 hid_data->y);
Jason Gerecke488abb52015-07-21 11:07:25 -07002256
2257 if (test_bit(ABS_MT_TOUCH_MAJOR, input->absbit)) {
2258 input_report_abs(input, ABS_MT_TOUCH_MAJOR, max(hid_data->width, hid_data->height));
2259 input_report_abs(input, ABS_MT_TOUCH_MINOR, min(hid_data->width, hid_data->height));
2260 if (hid_data->width != hid_data->height)
2261 input_report_abs(input, ABS_MT_ORIENTATION, hid_data->width <= hid_data->height ? 0 : 1);
2262 }
Jason Gerecke601a22f2014-12-10 16:26:04 -08002263 }
2264}
2265
Ping Cheng354a3292016-12-08 22:03:27 -08002266static void wacom_wac_finger_event(struct hid_device *hdev,
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002267 struct hid_field *field, struct hid_usage *usage, __s32 value)
2268{
2269 struct wacom *wacom = hid_get_drvdata(hdev);
2270 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gereckec9c09582016-10-19 18:03:43 -07002271 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002272
Jason Gereckec9c09582016-10-19 18:03:43 -07002273 switch (equivalent_usage) {
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002274 case HID_GD_X:
2275 wacom_wac->hid_data.x = value;
2276 break;
2277 case HID_GD_Y:
2278 wacom_wac->hid_data.y = value;
2279 break;
Jason Gerecke488abb52015-07-21 11:07:25 -07002280 case HID_DG_WIDTH:
2281 wacom_wac->hid_data.width = value;
2282 break;
2283 case HID_DG_HEIGHT:
2284 wacom_wac->hid_data.height = value;
2285 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002286 case HID_DG_CONTACTID:
2287 wacom_wac->hid_data.id = value;
2288 break;
2289 case HID_DG_TIPSWITCH:
2290 wacom_wac->hid_data.tipswitch = value;
2291 break;
2292 }
2293
2294
Jason Gerecke601a22f2014-12-10 16:26:04 -08002295 if (usage->usage_index + 1 == field->report_count) {
Jason Gereckec9c09582016-10-19 18:03:43 -07002296 if (equivalent_usage == wacom_wac->hid_data.last_slot_field)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002297 wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input);
Jason Gerecke601a22f2014-12-10 16:26:04 -08002298 }
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002299}
2300
Jason Gerecke06324e02015-07-21 11:07:23 -07002301static void wacom_wac_finger_pre_report(struct hid_device *hdev,
2302 struct hid_report *report)
2303{
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07002304 struct wacom *wacom = hid_get_drvdata(hdev);
2305 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2306 struct hid_data* hid_data = &wacom_wac->hid_data;
Jason Gerecke003f50a2016-07-21 09:10:46 -07002307 int i;
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07002308
Jason Gerecke003f50a2016-07-21 09:10:46 -07002309 for (i = 0; i < report->maxfield; i++) {
2310 struct hid_field *field = report->field[i];
2311 int j;
Jason Gerecke499522c2015-10-07 16:54:21 -07002312
Jason Gerecke003f50a2016-07-21 09:10:46 -07002313 for (j = 0; j < field->maxusage; j++) {
2314 struct hid_usage *usage = &field->usage[j];
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -08002315 unsigned int equivalent_usage =
2316 wacom_equivalent_usage(usage->hid);
Jason Gerecke499522c2015-10-07 16:54:21 -07002317
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -08002318 switch (equivalent_usage) {
Jason Gerecke003f50a2016-07-21 09:10:46 -07002319 case HID_GD_X:
2320 case HID_GD_Y:
2321 case HID_DG_WIDTH:
2322 case HID_DG_HEIGHT:
2323 case HID_DG_CONTACTID:
2324 case HID_DG_INRANGE:
2325 case HID_DG_INVERT:
2326 case HID_DG_TIPSWITCH:
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -08002327 hid_data->last_slot_field = equivalent_usage;
Jason Gerecke003f50a2016-07-21 09:10:46 -07002328 break;
2329 case HID_DG_CONTACTCOUNT:
2330 hid_data->cc_report = report->id;
2331 hid_data->cc_index = i;
2332 hid_data->cc_value_index = j;
2333 break;
Jason Gerecke499522c2015-10-07 16:54:21 -07002334 }
2335 }
2336 }
Jason Gerecke003f50a2016-07-21 09:10:46 -07002337
Jason Gereckedf707932015-10-07 16:54:22 -07002338 if (hid_data->cc_report != 0 &&
2339 hid_data->cc_index >= 0) {
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07002340 struct hid_field *field = report->field[hid_data->cc_index];
2341 int value = field->value[hid_data->cc_value_index];
2342 if (value)
2343 hid_data->num_expected = value;
2344 }
2345 else {
2346 hid_data->num_expected = wacom_wac->features.touch_max;
2347 }
Jason Gerecke06324e02015-07-21 11:07:23 -07002348}
2349
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002350static void wacom_wac_finger_report(struct hid_device *hdev,
2351 struct hid_report *report)
2352{
2353 struct wacom *wacom = hid_get_drvdata(hdev);
2354 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002355 struct input_dev *input = wacom_wac->touch_input;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002356 unsigned touch_max = wacom_wac->features.touch_max;
2357
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07002358 /* If more packets of data are expected, give us a chance to
2359 * process them rather than immediately syncing a partial
2360 * update.
2361 */
2362 if (wacom_wac->hid_data.num_received < wacom_wac->hid_data.num_expected)
2363 return;
2364
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002365 if (touch_max > 1)
Jason Gerecke601a22f2014-12-10 16:26:04 -08002366 input_mt_sync_frame(input);
2367
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002368 input_sync(input);
Jason Gerecke1b5d514a2015-07-21 11:07:24 -07002369 wacom_wac->hid_data.num_received = 0;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002370
2371 /* keep touch state for pen event */
Ping Cheng7d059ed2015-03-20 14:57:21 -07002372 wacom_wac->shared->touch_down = wacom_wac_finger_count_touches(wacom_wac);
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04002373}
2374
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002375void wacom_wac_usage_mapping(struct hid_device *hdev,
2376 struct hid_field *field, struct hid_usage *usage)
2377{
2378 struct wacom *wacom = hid_get_drvdata(hdev);
2379 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Jason Gereckee5bc8eb2016-08-08 12:06:29 -07002380 struct wacom_features *features = &wacom_wac->features;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002381
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -08002382 if (WACOM_DIRECT_DEVICE(field))
2383 features->device_type |= WACOM_DEVICETYPE_DIRECT;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002384
Jason Gerecke5922e612016-10-19 18:03:51 -07002385 if (WACOM_PAD_FIELD(field))
Ping Cheng354a3292016-12-08 22:03:27 -08002386 wacom_wac_pad_usage_mapping(hdev, field, usage);
Jason Gerecke5922e612016-10-19 18:03:51 -07002387 else if (WACOM_PEN_FIELD(field))
Ping Cheng354a3292016-12-08 22:03:27 -08002388 wacom_wac_pen_usage_mapping(hdev, field, usage);
Jason Gerecke5922e612016-10-19 18:03:51 -07002389 else if (WACOM_FINGER_FIELD(field))
Ping Cheng354a3292016-12-08 22:03:27 -08002390 wacom_wac_finger_usage_mapping(hdev, field, usage);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002391}
2392
Ping Cheng354a3292016-12-08 22:03:27 -08002393void wacom_wac_event(struct hid_device *hdev, struct hid_field *field,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002394 struct hid_usage *usage, __s32 value)
2395{
2396 struct wacom *wacom = hid_get_drvdata(hdev);
2397
2398 if (wacom->wacom_wac.features.type != HID_GENERIC)
Ping Cheng354a3292016-12-08 22:03:27 -08002399 return;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002400
Aaron Armstrong Skomra60a22182017-01-25 12:08:39 -08002401 if (value > field->logical_maximum || value < field->logical_minimum)
2402 return;
2403
Ping Chengc9cfb2a2016-12-08 22:06:15 -08002404 if (WACOM_PAD_FIELD(field)) {
2405 wacom_wac_pad_battery_event(hdev, field, usage, value);
2406 if (wacom->wacom_wac.pad_input)
2407 wacom_wac_pad_event(hdev, field, usage, value);
2408 } else if (WACOM_PEN_FIELD(field) && wacom->wacom_wac.pen_input)
Ping Cheng354a3292016-12-08 22:03:27 -08002409 wacom_wac_pen_event(hdev, field, usage, value);
Ping Cheng6f46cf92016-12-08 22:04:52 -08002410 else if (WACOM_FINGER_FIELD(field) && wacom->wacom_wac.touch_input)
Ping Cheng354a3292016-12-08 22:03:27 -08002411 wacom_wac_finger_event(hdev, field, usage, value);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002412}
2413
Jason Gerecke06324e02015-07-21 11:07:23 -07002414static void wacom_report_events(struct hid_device *hdev, struct hid_report *report)
2415{
2416 int r;
2417
2418 for (r = 0; r < report->maxfield; r++) {
2419 struct hid_field *field;
2420 unsigned count, n;
2421
2422 field = report->field[r];
2423 count = field->report_count;
2424
2425 if (!(HID_MAIN_ITEM_VARIABLE & field->flags))
2426 continue;
2427
2428 for (n = 0; n < count; n++)
2429 wacom_wac_event(hdev, field, &field->usage[n], field->value[n]);
2430 }
2431}
2432
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002433void wacom_wac_report(struct hid_device *hdev, struct hid_report *report)
2434{
2435 struct wacom *wacom = hid_get_drvdata(hdev);
2436 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2437 struct hid_field *field = report->field[0];
2438
2439 if (wacom_wac->features.type != HID_GENERIC)
2440 return;
2441
Ping Cheng6f46cf92016-12-08 22:04:52 -08002442 if (WACOM_PAD_FIELD(field) && wacom->wacom_wac.pad_input)
Jason Gerecke5922e612016-10-19 18:03:51 -07002443 wacom_wac_pad_pre_report(hdev, report);
Ping Cheng6f46cf92016-12-08 22:04:52 -08002444 else if (WACOM_PEN_FIELD(field) && wacom->wacom_wac.pen_input)
Jason Gerecke06324e02015-07-21 11:07:23 -07002445 wacom_wac_pen_pre_report(hdev, report);
Ping Cheng6f46cf92016-12-08 22:04:52 -08002446 else if (WACOM_FINGER_FIELD(field) && wacom->wacom_wac.touch_input)
Jason Gerecke06324e02015-07-21 11:07:23 -07002447 wacom_wac_finger_pre_report(hdev, report);
2448
2449 wacom_report_events(hdev, report);
2450
Jason Gereckea9ce7852017-01-17 15:38:58 -08002451 /*
2452 * Non-input reports may be sent prior to the device being
2453 * completely initialized. Since only their events need
2454 * to be processed, exit after 'wacom_report_events' has
2455 * been called to prevent potential crashes in the report-
2456 * processing functions.
2457 */
2458 if (report->type != HID_INPUT_REPORT)
2459 return;
2460
Ping Chengc9cfb2a2016-12-08 22:06:15 -08002461 if (WACOM_PAD_FIELD(field)) {
2462 wacom_wac_pad_battery_report(hdev, report);
2463 if (wacom->wacom_wac.pad_input)
2464 wacom_wac_pad_report(hdev, report);
2465 } else if (WACOM_PEN_FIELD(field) && wacom->wacom_wac.pen_input)
2466 wacom_wac_pen_report(hdev, report);
Ping Cheng6f46cf92016-12-08 22:04:52 -08002467 else if (WACOM_FINGER_FIELD(field) && wacom->wacom_wac.touch_input)
Ping Chengc9cfb2a2016-12-08 22:06:15 -08002468 wacom_wac_finger_report(hdev, report);
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002469}
2470
Chris Bagwelle1d38e42010-09-12 00:09:27 -07002471static int wacom_bpt_touch(struct wacom_wac *wacom)
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002472{
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07002473 struct wacom_features *features = &wacom->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002474 struct input_dev *input = wacom->touch_input;
Benjamin Tissoires31168712014-07-24 12:50:10 -07002475 struct input_dev *pad_input = wacom->pad_input;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002476 unsigned char *data = wacom->data;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002477 int i;
2478
Chris Bagwell5a6c8652011-11-07 19:52:42 -08002479 if (data[0] != 0x02)
2480 return 0;
2481
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002482 for (i = 0; i < 2; i++) {
Chris Bagwell8f906862011-09-09 13:38:10 -07002483 int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
Ping Cheng1924e052016-08-09 14:38:56 -07002484 bool touch = report_touch_events(wacom)
2485 && (data[offset + 3] & 0x80);
Chris Bagwell8f906862011-09-09 13:38:10 -07002486
2487 input_mt_slot(input, i);
2488 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +01002489 if (touch) {
Chris Bagwell8f906862011-09-09 13:38:10 -07002490 int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
2491 int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07002492 if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
2493 x <<= 5;
2494 y <<= 5;
2495 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002496 input_report_abs(input, ABS_MT_POSITION_X, x);
2497 input_report_abs(input, ABS_MT_POSITION_Y, y);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002498 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002499 }
2500
Benjamin Tissoires9a1c0012015-02-17 14:19:46 -05002501 input_mt_sync_frame(input);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002502
Benjamin Tissoires31168712014-07-24 12:50:10 -07002503 input_report_key(pad_input, BTN_LEFT, (data[1] & 0x08) != 0);
2504 input_report_key(pad_input, BTN_FORWARD, (data[1] & 0x04) != 0);
2505 input_report_key(pad_input, BTN_BACK, (data[1] & 0x02) != 0);
2506 input_report_key(pad_input, BTN_RIGHT, (data[1] & 0x01) != 0);
Ping Cheng7d059ed2015-03-20 14:57:21 -07002507 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002508
Benjamin Tissoires31168712014-07-24 12:50:10 -07002509 return 1;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002510}
2511
Ping Cheng7d059ed2015-03-20 14:57:21 -07002512static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
Chris Bagwell73149ab2011-10-26 22:34:21 -07002513{
Ping Cheng9a35c412013-09-20 09:51:56 -07002514 struct wacom_features *features = &wacom->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002515 struct input_dev *input = wacom->touch_input;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002516 bool touch = data[1] & 0x80;
Ping Cheng02295e62013-01-04 23:56:00 -08002517 int slot = input_mt_get_slot_by_key(input, data[0]);
2518
2519 if (slot < 0)
Ping Cheng7d059ed2015-03-20 14:57:21 -07002520 return;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002521
Ping Cheng1924e052016-08-09 14:38:56 -07002522 touch = touch && report_touch_events(wacom);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002523
Ping Cheng02295e62013-01-04 23:56:00 -08002524 input_mt_slot(input, slot);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002525 input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
2526
2527 if (touch) {
2528 int x = (data[2] << 4) | (data[4] >> 4);
2529 int y = (data[3] << 4) | (data[4] & 0x0f);
Ping Cheng9a35c412013-09-20 09:51:56 -07002530 int width, height;
Jason Gerecke4e904952012-10-03 17:19:11 -07002531
Ping Chengeda01da2015-09-23 13:51:15 -07002532 if (features->type >= INTUOSPS && features->type <= INTUOSHT2) {
Jason Gerecke0b279da2013-11-25 18:43:16 -08002533 width = data[5] * 100;
2534 height = data[6] * 100;
Ping Cheng9a35c412013-09-20 09:51:56 -07002535 } else {
2536 /*
2537 * "a" is a scaled-down area which we assume is
2538 * roughly circular and which can be described as:
2539 * a=(pi*r^2)/C.
2540 */
2541 int a = data[5];
Ping Chengd7da3a32014-06-13 13:37:33 -07002542 int x_res = input_abs_get_res(input, ABS_MT_POSITION_X);
2543 int y_res = input_abs_get_res(input, ABS_MT_POSITION_Y);
2544 width = 2 * int_sqrt(a * WACOM_CONTACT_AREA_SCALE);
Ping Cheng9a35c412013-09-20 09:51:56 -07002545 height = width * y_res / x_res;
2546 }
Chris Bagwell73149ab2011-10-26 22:34:21 -07002547
2548 input_report_abs(input, ABS_MT_POSITION_X, x);
2549 input_report_abs(input, ABS_MT_POSITION_Y, y);
Jason Gerecke4e904952012-10-03 17:19:11 -07002550 input_report_abs(input, ABS_MT_TOUCH_MAJOR, width);
2551 input_report_abs(input, ABS_MT_TOUCH_MINOR, height);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002552 }
2553}
2554
2555static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
2556{
Benjamin Tissoires31168712014-07-24 12:50:10 -07002557 struct input_dev *input = wacom->pad_input;
Ping Chengb5fd2a32013-11-25 18:44:55 -08002558 struct wacom_features *features = &wacom->features;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002559
Ping Chengeda01da2015-09-23 13:51:15 -07002560 if (features->type == INTUOSHT || features->type == INTUOSHT2) {
Ping Chengb5fd2a32013-11-25 18:44:55 -08002561 input_report_key(input, BTN_LEFT, (data[1] & 0x02) != 0);
2562 input_report_key(input, BTN_BACK, (data[1] & 0x08) != 0);
2563 } else {
2564 input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
2565 input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
2566 }
Chris Bagwell73149ab2011-10-26 22:34:21 -07002567 input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002568 input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
2569}
2570
2571static int wacom_bpt3_touch(struct wacom_wac *wacom)
2572{
Chris Bagwell73149ab2011-10-26 22:34:21 -07002573 unsigned char *data = wacom->data;
Jason Gerecke19d57d32012-03-06 10:19:19 -08002574 int count = data[1] & 0x07;
Ping Chengeda01da2015-09-23 13:51:15 -07002575 int touch_changed = 0, i;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002576
Chris Bagwell5a6c8652011-11-07 19:52:42 -08002577 if (data[0] != 0x02)
2578 return 0;
2579
Chris Bagwell73149ab2011-10-26 22:34:21 -07002580 /* data has up to 7 fixed sized 8-byte messages starting at data[2] */
2581 for (i = 0; i < count; i++) {
2582 int offset = (8 * i) + 2;
2583 int msg_id = data[offset];
2584
Ping Chengeda01da2015-09-23 13:51:15 -07002585 if (msg_id >= 2 && msg_id <= 17) {
Ping Cheng7d059ed2015-03-20 14:57:21 -07002586 wacom_bpt3_touch_msg(wacom, data + offset);
Ping Chengeda01da2015-09-23 13:51:15 -07002587 touch_changed++;
2588 } else if (msg_id == 128)
Chris Bagwell73149ab2011-10-26 22:34:21 -07002589 wacom_bpt3_button_msg(wacom, data + offset);
2590
2591 }
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002592
Ping Chengeda01da2015-09-23 13:51:15 -07002593 /* only update touch if we actually have a touchpad and touch data changed */
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002594 if (wacom->touch_input && touch_changed) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002595 input_mt_sync_frame(wacom->touch_input);
2596 wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
2597 }
Chris Bagwell73149ab2011-10-26 22:34:21 -07002598
Benjamin Tissoires31168712014-07-24 12:50:10 -07002599 return 1;
Chris Bagwell73149ab2011-10-26 22:34:21 -07002600}
2601
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002602static int wacom_bpt_pen(struct wacom_wac *wacom)
2603{
Ping Cheng961794a2013-12-05 12:54:53 -08002604 struct wacom_features *features = &wacom->features;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002605 struct input_dev *input = wacom->pen_input;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002606 unsigned char *data = wacom->data;
2607 int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
2608
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002609 if (data[0] != WACOM_REPORT_PENABLED)
Chris Bagwell5a6c8652011-11-07 19:52:42 -08002610 return 0;
2611
Chris Bagwellc5981412011-10-26 22:28:34 -07002612 prox = (data[1] & 0x20) == 0x20;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002613
2614 /*
2615 * All reports shared between PEN and RUBBER tool must be
2616 * forced to a known starting value (zero) when transitioning to
2617 * out-of-prox.
2618 *
2619 * If not reset then, to userspace, it will look like lost events
2620 * if new tool comes in-prox with same values as previous tool sent.
2621 *
2622 * Hardware does report zero in most out-of-prox cases but not all.
2623 */
Ping Cheng01499312015-03-20 14:58:01 -07002624 if (!wacom->shared->stylus_in_proximity) {
2625 if (data[1] & 0x08) {
2626 wacom->tool[0] = BTN_TOOL_RUBBER;
2627 wacom->id[0] = ERASER_DEVICE_ID;
2628 } else {
2629 wacom->tool[0] = BTN_TOOL_PEN;
2630 wacom->id[0] = STYLUS_DEVICE_ID;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002631 }
Ping Cheng01499312015-03-20 14:58:01 -07002632 }
2633
2634 wacom->shared->stylus_in_proximity = prox;
Ping Cheng1924e052016-08-09 14:38:56 -07002635 if (delay_pen_events(wacom))
Ping Cheng01499312015-03-20 14:58:01 -07002636 return 0;
2637
2638 if (prox) {
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002639 x = le16_to_cpup((__le16 *)&data[2]);
2640 y = le16_to_cpup((__le16 *)&data[4]);
2641 p = le16_to_cpup((__le16 *)&data[6]);
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07002642 /*
2643 * Convert distance from out prox to distance from tablet.
2644 * distance will be greater than distance_max once
2645 * touching and applying pressure; do not report negative
2646 * distance.
2647 */
Ping Cheng961794a2013-12-05 12:54:53 -08002648 if (data[8] <= features->distance_max)
2649 d = features->distance_max - data[8];
Chris Bagwellc18c2ce2011-10-10 08:52:13 -07002650
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002651 pen = data[1] & 0x01;
2652 btn1 = data[1] & 0x02;
2653 btn2 = data[1] & 0x04;
Ping Cheng01499312015-03-20 14:58:01 -07002654 } else {
2655 wacom->id[0] = 0;
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002656 }
2657
2658 input_report_key(input, BTN_TOUCH, pen);
2659 input_report_key(input, BTN_STYLUS, btn1);
2660 input_report_key(input, BTN_STYLUS2, btn2);
2661
2662 input_report_abs(input, ABS_X, x);
2663 input_report_abs(input, ABS_Y, y);
2664 input_report_abs(input, ABS_PRESSURE, p);
2665 input_report_abs(input, ABS_DISTANCE, d);
2666
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002667 input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
2668 input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
2669
2670 return 1;
2671}
2672
Chris Bagwelle1d38e42010-09-12 00:09:27 -07002673static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
2674{
Ping Chengeda01da2015-09-23 13:51:15 -07002675 struct wacom_features *features = &wacom->features;
2676
2677 if ((features->type == INTUOSHT2) &&
Ping Chengeda01da2015-09-23 13:51:15 -07002678 (features->device_type & WACOM_DEVICETYPE_PEN))
2679 return wacom_intuos_irq(wacom);
2680 else if (len == WACOM_PKGLEN_BBTOUCH)
Chris Bagwelle1d38e42010-09-12 00:09:27 -07002681 return wacom_bpt_touch(wacom);
Chris Bagwell73149ab2011-10-26 22:34:21 -07002682 else if (len == WACOM_PKGLEN_BBTOUCH3)
2683 return wacom_bpt3_touch(wacom);
2684 else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
Chris Bagwell2aaacb12010-09-12 00:11:35 -07002685 return wacom_bpt_pen(wacom);
Chris Bagwelle1d38e42010-09-12 00:09:27 -07002686
2687 return 0;
2688}
2689
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002690static void wacom_bamboo_pad_pen_event(struct wacom_wac *wacom,
2691 unsigned char *data)
2692{
2693 unsigned char prefix;
2694
2695 /*
2696 * We need to reroute the event from the debug interface to the
2697 * pen interface.
2698 * We need to add the report ID to the actual pen report, so we
2699 * temporary overwrite the first byte to prevent having to kzalloc/kfree
2700 * and memcpy the report.
2701 */
2702 prefix = data[0];
2703 data[0] = WACOM_REPORT_BPAD_PEN;
2704
2705 /*
2706 * actually reroute the event.
2707 * No need to check if wacom->shared->pen is valid, hid_input_report()
2708 * will check for us.
2709 */
2710 hid_input_report(wacom->shared->pen, HID_INPUT_REPORT, data,
2711 WACOM_PKGLEN_PENABLED, 1);
2712
2713 data[0] = prefix;
2714}
2715
2716static int wacom_bamboo_pad_touch_event(struct wacom_wac *wacom,
2717 unsigned char *data)
2718{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002719 struct input_dev *input = wacom->touch_input;
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002720 unsigned char *finger_data, prefix;
2721 unsigned id;
2722 int x, y;
2723 bool valid;
2724
2725 prefix = data[0];
2726
2727 for (id = 0; id < wacom->features.touch_max; id++) {
2728 valid = !!(prefix & BIT(id)) &&
Ping Cheng1924e052016-08-09 14:38:56 -07002729 report_touch_events(wacom);
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002730
2731 input_mt_slot(input, id);
2732 input_mt_report_slot_state(input, MT_TOOL_FINGER, valid);
2733
2734 if (!valid)
2735 continue;
2736
2737 finger_data = data + 1 + id * 3;
2738 x = finger_data[0] | ((finger_data[1] & 0x0f) << 8);
2739 y = (finger_data[2] << 4) | (finger_data[1] >> 4);
2740
2741 input_report_abs(input, ABS_MT_POSITION_X, x);
2742 input_report_abs(input, ABS_MT_POSITION_Y, y);
2743 }
2744
2745 input_mt_sync_frame(input);
2746
2747 input_report_key(input, BTN_LEFT, prefix & 0x40);
2748 input_report_key(input, BTN_RIGHT, prefix & 0x80);
2749
2750 /* keep touch state for pen event */
Ping Cheng1924e052016-08-09 14:38:56 -07002751 wacom->shared->touch_down = !!prefix && report_touch_events(wacom);
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002752
2753 return 1;
2754}
2755
2756static int wacom_bamboo_pad_irq(struct wacom_wac *wacom, size_t len)
2757{
2758 unsigned char *data = wacom->data;
2759
2760 if (!((len == WACOM_PKGLEN_BPAD_TOUCH) ||
2761 (len == WACOM_PKGLEN_BPAD_TOUCH_USB)) ||
2762 (data[0] != WACOM_REPORT_BPAD_TOUCH))
2763 return 0;
2764
2765 if (data[1] & 0x01)
2766 wacom_bamboo_pad_pen_event(wacom, &data[1]);
2767
2768 if (data[1] & 0x02)
2769 return wacom_bamboo_pad_touch_event(wacom, &data[9]);
2770
2771 return 0;
2772}
2773
Chris Bagwelld3825d52012-03-25 23:26:11 -07002774static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
2775{
Chris Bagwell16bf2882012-03-25 23:26:20 -07002776 unsigned char *data = wacom->data;
2777 int connected;
2778
Ping Chengb5fd2a32013-11-25 18:44:55 -08002779 if (len != WACOM_PKGLEN_WIRELESS || data[0] != WACOM_REPORT_WL)
Chris Bagwelld3825d52012-03-25 23:26:11 -07002780 return 0;
2781
Chris Bagwell16bf2882012-03-25 23:26:20 -07002782 connected = data[1] & 0x01;
2783 if (connected) {
Jason Gereckeb0882cb2015-03-06 11:47:43 -08002784 int pid, battery, charging;
Chris Bagwell16bf2882012-03-25 23:26:20 -07002785
Ping Chengeda01da2015-09-23 13:51:15 -07002786 if ((wacom->shared->type == INTUOSHT ||
2787 wacom->shared->type == INTUOSHT2) &&
Ping Cheng44b96832014-11-06 17:30:51 -08002788 wacom->shared->touch_input &&
2789 wacom->shared->touch_max) {
Ping Cheng961794a2013-12-05 12:54:53 -08002790 input_report_switch(wacom->shared->touch_input,
2791 SW_MUTE_DEVICE, data[5] & 0x40);
2792 input_sync(wacom->shared->touch_input);
2793 }
2794
Chris Bagwell16bf2882012-03-25 23:26:20 -07002795 pid = get_unaligned_be16(&data[6]);
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07002796 battery = (data[5] & 0x3f) * 100 / 31;
Jason Gereckeb0882cb2015-03-06 11:47:43 -08002797 charging = !!(data[5] & 0x80);
Chris Bagwell16bf2882012-03-25 23:26:20 -07002798 if (wacom->pid != pid) {
2799 wacom->pid = pid;
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002800 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
Chris Bagwell16bf2882012-03-25 23:26:20 -07002801 }
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07002802
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02002803 wacom_notify_battery(wacom, battery, charging, 1, 0);
Jason Gerecke953f2c52015-03-06 11:47:39 -08002804
Chris Bagwell16bf2882012-03-25 23:26:20 -07002805 } else if (wacom->pid != 0) {
2806 /* disconnected while previously connected */
2807 wacom->pid = 0;
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002808 wacom_schedule_work(wacom, WACOM_WORKER_WIRELESS);
Jason Gerecke71fa6412015-03-11 10:25:41 -07002809 wacom_notify_battery(wacom, 0, 0, 0, 0);
Chris Bagwell16bf2882012-03-25 23:26:20 -07002810 }
2811
Chris Bagwelld3825d52012-03-25 23:26:11 -07002812 return 0;
2813}
2814
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002815static int wacom_status_irq(struct wacom_wac *wacom_wac, size_t len)
2816{
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002817 struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002818 struct wacom_features *features = &wacom_wac->features;
2819 unsigned char *data = wacom_wac->data;
2820
2821 if (data[0] != WACOM_REPORT_USB)
2822 return 0;
2823
Ping Chengeda01da2015-09-23 13:51:15 -07002824 if ((features->type == INTUOSHT ||
2825 features->type == INTUOSHT2) &&
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002826 wacom_wac->shared->touch_input &&
2827 features->touch_max) {
2828 input_report_switch(wacom_wac->shared->touch_input,
2829 SW_MUTE_DEVICE, data[8] & 0x40);
2830 input_sync(wacom_wac->shared->touch_input);
2831 }
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002832
2833 if (data[9] & 0x02) { /* wireless module is attached */
2834 int battery = (data[8] & 0x3f) * 100 / 31;
Jason Gereckeb0882cb2015-03-06 11:47:43 -08002835 bool charging = !!(data[8] & 0x80);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002836
2837 wacom_notify_battery(wacom_wac, battery, charging,
Jason Gerecke71fa6412015-03-11 10:25:41 -07002838 battery || charging, 1);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002839
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02002840 if (!wacom->battery.battery &&
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002841 !(features->quirks & WACOM_QUIRK_BATTERY)) {
2842 features->quirks |= WACOM_QUIRK_BATTERY;
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002843 wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002844 }
2845 }
2846 else if ((features->quirks & WACOM_QUIRK_BATTERY) &&
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02002847 wacom->battery.battery) {
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002848 features->quirks &= ~WACOM_QUIRK_BATTERY;
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002849 wacom_schedule_work(wacom_wac, WACOM_WORKER_BATTERY);
Jason Gerecke71fa6412015-03-11 10:25:41 -07002850 wacom_notify_battery(wacom_wac, 0, 0, 0, 0);
Jason Gerecke8f93b0b2015-03-06 11:47:41 -08002851 }
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002852 return 0;
2853}
2854
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002855void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
Ping Cheng3bea7332006-07-13 18:01:36 -07002856{
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002857 bool sync;
2858
Jason Childse33da8a2010-02-17 22:38:31 -08002859 switch (wacom_wac->features.type) {
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002860 case PENPARTNER:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002861 sync = wacom_penpartner_irq(wacom_wac);
2862 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002863
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002864 case PL:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002865 sync = wacom_pl_irq(wacom_wac);
2866 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002867
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002868 case WACOM_G4:
2869 case GRAPHIRE:
Benjamin Tissoires387142b2014-08-06 13:52:56 -07002870 case GRAPHIRE_BT:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002871 case WACOM_MO:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002872 sync = wacom_graphire_irq(wacom_wac);
2873 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002874
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002875 case PTU:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002876 sync = wacom_ptu_irq(wacom_wac);
2877 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002878
Ping Chengc8f2edc2010-06-28 01:10:51 -07002879 case DTU:
2880 sync = wacom_dtu_irq(wacom_wac);
2881 break;
2882
Ping Cheng497ab1f2014-01-20 20:18:04 -08002883 case DTUS:
Ping Chengfff00bf2014-12-04 18:23:04 -08002884 case DTUSX:
Ping Cheng497ab1f2014-01-20 20:18:04 -08002885 sync = wacom_dtus_irq(wacom_wac);
2886 break;
2887
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002888 case INTUOS:
2889 case INTUOS3S:
2890 case INTUOS3:
2891 case INTUOS3L:
2892 case INTUOS4S:
2893 case INTUOS4:
2894 case INTUOS4L:
2895 case CINTIQ:
2896 case WACOM_BEE:
Ping Cheng56218562013-05-05 19:56:18 -07002897 case WACOM_13HD:
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07002898 case WACOM_21UX2:
Ping Chengd838c642012-07-24 23:54:11 -07002899 case WACOM_22HD:
Jason Gerecke803296b2011-12-12 00:11:45 -08002900 case WACOM_24HD:
Ping Cheng500d4162015-01-27 13:30:03 -08002901 case WACOM_27QHD:
Ping Chenga112e9f2013-02-13 20:20:01 -08002902 case DTK:
Jason Gerecke36d3c512013-09-20 09:47:35 -07002903 case CINTIQ_HYBRID:
Jason Gereckef7acb552015-10-13 10:03:49 -07002904 case CINTIQ_COMPANION_2:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002905 sync = wacom_intuos_irq(wacom_wac);
2906 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002907
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07002908 case INTUOS4WL:
2909 sync = wacom_intuos_bt_irq(wacom_wac, len);
2910 break;
2911
Jason Gereckeb1e42792012-10-21 00:38:04 -07002912 case WACOM_24HDT:
Ping Cheng500d4162015-01-27 13:30:03 -08002913 case WACOM_27QHDT:
Jason Gereckeb1e42792012-10-21 00:38:04 -07002914 sync = wacom_24hdt_irq(wacom_wac);
2915 break;
2916
Jason Gereckeae584ca2012-04-03 15:50:40 -07002917 case INTUOS5S:
2918 case INTUOS5:
2919 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -07002920 case INTUOSPS:
2921 case INTUOSPM:
2922 case INTUOSPL:
Jason Gereckeae584ca2012-04-03 15:50:40 -07002923 if (len == WACOM_PKGLEN_BBTOUCH3)
2924 sync = wacom_bpt3_touch(wacom_wac);
Jason Gerecke2d13a432015-03-06 11:47:42 -08002925 else if (wacom_wac->data[0] == WACOM_REPORT_USB)
2926 sync = wacom_status_irq(wacom_wac, len);
Jason Gereckeae584ca2012-04-03 15:50:40 -07002927 else
2928 sync = wacom_intuos_irq(wacom_wac);
2929 break;
2930
Jason Gerecke4922cd22017-01-25 12:08:37 -08002931 case INTUOSP2_BT:
2932 sync = wacom_intuos_pro2_bt_irq(wacom_wac, len);
2933 break;
2934
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002935 case TABLETPC:
Ping Chengac173832012-06-12 00:15:06 -07002936 case TABLETPCE:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002937 case TABLETPC2FG:
Ping Cheng19635182012-04-29 21:09:18 -07002938 case MTSCREEN:
Ping Cheng6afdc282012-11-03 12:16:15 -07002939 case MTTPC:
Jason Gerecked51ddb22014-05-14 17:14:29 -07002940 case MTTPC_B:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002941 sync = wacom_tpc_irq(wacom_wac, len);
2942 break;
Ping Cheng545f4e92008-11-24 11:44:27 -05002943
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002944 case BAMBOO_PT:
Ping Cheng3b164a02015-09-23 09:59:10 -07002945 case BAMBOO_PEN:
2946 case BAMBOO_TOUCH:
Ping Chengb5fd2a32013-11-25 18:44:55 -08002947 case INTUOSHT:
Ping Chengeda01da2015-09-23 13:51:15 -07002948 case INTUOSHT2:
Jason Gerecke4ca4ec72015-03-06 11:47:38 -08002949 if (wacom_wac->data[0] == WACOM_REPORT_USB)
2950 sync = wacom_status_irq(wacom_wac, len);
2951 else
2952 sync = wacom_bpt_irq(wacom_wac, len);
Henrik Rydbergcb734c02010-09-05 12:53:16 -07002953 break;
2954
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002955 case BAMBOO_PAD:
2956 sync = wacom_bamboo_pad_irq(wacom_wac, len);
Ping Cheng3bea7332006-07-13 18:01:36 -07002957 break;
2958
Chris Bagwelld3825d52012-03-25 23:26:11 -07002959 case WIRELESS:
2960 sync = wacom_wireless_irq(wacom_wac, len);
2961 break;
2962
Aaron Skomra72b236d2015-08-20 16:05:17 -07002963 case REMOTE:
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002964 sync = false;
Aaron Skomra72b236d2015-08-20 16:05:17 -07002965 if (wacom_wac->data[0] == WACOM_REPORT_DEVICE_LIST)
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002966 wacom_remote_status_irq(wacom_wac, len);
Aaron Skomra72b236d2015-08-20 16:05:17 -07002967 else
2968 sync = wacom_remote_irq(wacom_wac, len);
2969 break;
2970
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07002971 default:
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002972 sync = false;
2973 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07002974 }
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -07002975
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002976 if (sync) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002977 if (wacom_wac->pen_input)
2978 input_sync(wacom_wac->pen_input);
2979 if (wacom_wac->touch_input)
2980 input_sync(wacom_wac->touch_input);
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002981 if (wacom_wac->pad_input)
2982 input_sync(wacom_wac->pad_input);
2983 }
Ping Cheng3bea7332006-07-13 18:01:36 -07002984}
2985
Ping Chengeda01da2015-09-23 13:51:15 -07002986static void wacom_setup_basic_pro_pen(struct wacom_wac *wacom_wac)
Ping Cheng3bea7332006-07-13 18:01:36 -07002987{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002988 struct input_dev *input_dev = wacom_wac->pen_input;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002989
2990 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002991
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002992 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07002993 __set_bit(BTN_STYLUS, input_dev->keybit);
2994 __set_bit(BTN_STYLUS2, input_dev->keybit);
2995
2996 input_set_abs_params(input_dev, ABS_DISTANCE,
Jason Gereckebef7e202016-04-22 14:30:53 -07002997 0, wacom_wac->features.distance_max, wacom_wac->features.distance_fuzz, 0);
Ping Chengeda01da2015-09-23 13:51:15 -07002998}
2999
3000static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
3001{
3002 struct input_dev *input_dev = wacom_wac->pen_input;
Jason Gereckebef7e202016-04-22 14:30:53 -07003003 struct wacom_features *features = &wacom_wac->features;
Ping Chengeda01da2015-09-23 13:51:15 -07003004
3005 wacom_setup_basic_pro_pen(wacom_wac);
3006
3007 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
3008 __set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
3009 __set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
3010 __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
3011
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003012 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
Jason Gereckebef7e202016-04-22 14:30:53 -07003013 input_set_abs_params(input_dev, ABS_TILT_X, -64, 63, features->tilt_fuzz, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08003014 input_abs_set_res(input_dev, ABS_TILT_X, 57);
Jason Gereckebef7e202016-04-22 14:30:53 -07003015 input_set_abs_params(input_dev, ABS_TILT_Y, -64, 63, features->tilt_fuzz, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08003016 input_abs_set_res(input_dev, ABS_TILT_Y, 57);
Ping Cheng6521d0b2010-10-24 21:53:40 -07003017}
3018
3019static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
3020{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07003021 struct input_dev *input_dev = wacom_wac->pen_input;
Ping Cheng6521d0b2010-10-24 21:53:40 -07003022
3023 input_set_capability(input_dev, EV_REL, REL_WHEEL);
3024
3025 wacom_setup_cintiq(wacom_wac);
3026
3027 __set_bit(BTN_LEFT, input_dev->keybit);
3028 __set_bit(BTN_RIGHT, input_dev->keybit);
3029 __set_bit(BTN_MIDDLE, input_dev->keybit);
3030 __set_bit(BTN_SIDE, input_dev->keybit);
3031 __set_bit(BTN_EXTRA, input_dev->keybit);
3032 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
3033 __set_bit(BTN_TOOL_LENS, input_dev->keybit);
3034
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003035 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08003036 input_abs_set_res(input_dev, ABS_RZ, 287);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003037 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
3038}
3039
Ping Cheng42f4f272015-04-15 16:53:54 -07003040void wacom_setup_device_quirks(struct wacom *wacom)
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07003041{
Ping Cheng42f4f272015-04-15 16:53:54 -07003042 struct wacom_features *features = &wacom->wacom_wac.features;
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07003043
Jason Gerecke862cf552015-06-15 18:01:43 -07003044 /* The pen and pad share the same interface on most devices */
3045 if (features->type == GRAPHIRE_BT || features->type == WACOM_G4 ||
Ping Cheng3b164a02015-09-23 09:59:10 -07003046 features->type == DTUS ||
3047 (features->type >= INTUOS3S && features->type <= WACOM_MO)) {
Jason Gerecke862cf552015-06-15 18:01:43 -07003048 if (features->device_type & WACOM_DEVICETYPE_PEN)
3049 features->device_type |= WACOM_DEVICETYPE_PAD;
3050 }
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07003051
3052 /* touch device found but size is not defined. use default */
Jason Gereckeaa86b182015-06-15 18:01:42 -07003053 if (features->device_type & WACOM_DEVICETYPE_TOUCH && !features->x_max) {
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07003054 features->x_max = 1023;
3055 features->y_max = 1023;
3056 }
3057
Ping Cheng42f4f272015-04-15 16:53:54 -07003058 /*
3059 * Intuos5/Pro and Bamboo 3rd gen have no useful data about its
3060 * touch interface in its HID descriptor. If this is the touch
3061 * interface (PacketSize of WACOM_PKGLEN_BBTOUCH3), override the
3062 * tablet values.
3063 */
Ping Cheng3b164a02015-09-23 09:59:10 -07003064 if ((features->type >= INTUOS5S && features->type <= INTUOSPL) ||
3065 (features->type >= INTUOSHT && features->type <= BAMBOO_PT)) {
Ping Cheng42f4f272015-04-15 16:53:54 -07003066 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
Jason Gerecke862cf552015-06-15 18:01:43 -07003067 if (features->touch_max)
3068 features->device_type |= WACOM_DEVICETYPE_TOUCH;
Jiri Kosinaa3088ab2015-11-17 00:24:14 +01003069 if (features->type >= INTUOSHT && features->type <= BAMBOO_PT)
Jason Gerecke862cf552015-06-15 18:01:43 -07003070 features->device_type |= WACOM_DEVICETYPE_PAD;
Ping Cheng42f4f272015-04-15 16:53:54 -07003071
3072 features->x_max = 4096;
3073 features->y_max = 4096;
Ping Cheng42f4f272015-04-15 16:53:54 -07003074 }
Jason Gerecke96339202015-07-01 13:01:00 -07003075 else if (features->pktlen == WACOM_PKGLEN_BBTOUCH) {
3076 features->device_type |= WACOM_DEVICETYPE_PAD;
3077 }
Ping Cheng42f4f272015-04-15 16:53:54 -07003078 }
3079
3080 /*
Benjamin Tissoires580549e2016-03-25 15:26:55 +01003081 * Hack for the Bamboo One:
3082 * the device presents a PAD/Touch interface as most Bamboos and even
3083 * sends ghosts PAD data on it. However, later, we must disable this
3084 * ghost interface, and we can not detect it unless we set it here
3085 * to WACOM_DEVICETYPE_PAD or WACOM_DEVICETYPE_TOUCH.
3086 */
3087 if (features->type == BAMBOO_PEN &&
3088 features->pktlen == WACOM_PKGLEN_BBTOUCH3)
3089 features->device_type |= WACOM_DEVICETYPE_PAD;
3090
3091 /*
Jason Gerecke042628a2015-04-30 17:51:54 -07003092 * Raw Wacom-mode pen and touch events both come from interface
3093 * 0, whose HID descriptor has an application usage of 0xFF0D
Jason Gerecke8de82282016-10-19 18:03:37 -07003094 * (i.e., WACOM_HID_WD_DIGITIZER). We route pen packets back
Jason Gerecke042628a2015-04-30 17:51:54 -07003095 * out through the HID_GENERIC device created for interface 1,
Benjamin Tissoires70caee02015-07-09 14:11:51 -04003096 * so rewrite this one to be of type WACOM_DEVICETYPE_TOUCH.
Ping Cheng42f4f272015-04-15 16:53:54 -07003097 */
3098 if (features->type == BAMBOO_PAD)
Benjamin Tissoires70caee02015-07-09 14:11:51 -04003099 features->device_type = WACOM_DEVICETYPE_TOUCH;
Ping Cheng42f4f272015-04-15 16:53:54 -07003100
Aaron Skomra72b236d2015-08-20 16:05:17 -07003101 if (features->type == REMOTE)
3102 features->device_type = WACOM_DEVICETYPE_PAD;
Ping Cheng42f4f272015-04-15 16:53:54 -07003103
Jason Gerecke4922cd22017-01-25 12:08:37 -08003104 if (features->type == INTUOSP2_BT) {
3105 features->device_type |= WACOM_DEVICETYPE_PEN |
3106 WACOM_DEVICETYPE_PAD |
3107 WACOM_DEVICETYPE_TOUCH;
3108 features->quirks |= WACOM_QUIRK_BATTERY;
3109 }
3110
Jason Gereckee5bc8eb2016-08-08 12:06:29 -07003111 switch (features->type) {
3112 case PL:
3113 case DTU:
3114 case DTUS:
3115 case DTUSX:
3116 case WACOM_21UX2:
3117 case WACOM_22HD:
3118 case DTK:
3119 case WACOM_24HD:
3120 case WACOM_27QHD:
3121 case CINTIQ_HYBRID:
3122 case CINTIQ_COMPANION_2:
3123 case CINTIQ:
3124 case WACOM_BEE:
3125 case WACOM_13HD:
3126 case WACOM_24HDT:
3127 case WACOM_27QHDT:
3128 case TABLETPC:
3129 case TABLETPCE:
3130 case TABLETPC2FG:
3131 case MTSCREEN:
3132 case MTTPC:
3133 case MTTPC_B:
3134 features->device_type |= WACOM_DEVICETYPE_DIRECT;
3135 break;
3136 }
3137
Ping Cheng42f4f272015-04-15 16:53:54 -07003138 if (wacom->hdev->bus == BUS_BLUETOOTH)
3139 features->quirks |= WACOM_QUIRK_BATTERY;
3140
Chris Bagwell73149ab2011-10-26 22:34:21 -07003141 /* quirk for bamboo touch with 2 low res touches */
Jason Gereckebe853fd2015-12-04 14:45:27 -08003142 if ((features->type == BAMBOO_PT || features->type == BAMBOO_TOUCH) &&
Chris Bagwell73149ab2011-10-26 22:34:21 -07003143 features->pktlen == WACOM_PKGLEN_BBTOUCH) {
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07003144 features->x_max <<= 5;
3145 features->y_max <<= 5;
3146 features->x_fuzz <<= 5;
3147 features->y_fuzz <<= 5;
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -07003148 features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07003149 }
Chris Bagwelld3825d52012-03-25 23:26:11 -07003150
3151 if (features->type == WIRELESS) {
Jason Gereckeccad85c2015-08-03 10:17:04 -07003152 if (features->device_type == WACOM_DEVICETYPE_WL_MONITOR) {
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07003153 features->quirks |= WACOM_QUIRK_BATTERY;
3154 }
Chris Bagwelld3825d52012-03-25 23:26:11 -07003155 }
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02003156
3157 if (features->type == REMOTE)
3158 features->device_type |= WACOM_DEVICETYPE_WL_MONITOR;
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07003159}
3160
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003161int wacom_setup_pen_input_capabilities(struct input_dev *input_dev,
Ping Cheng19635182012-04-29 21:09:18 -07003162 struct wacom_wac *wacom_wac)
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003163{
3164 struct wacom_features *features = &wacom_wac->features;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003165
3166 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
3167
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003168 if (!(features->device_type & WACOM_DEVICETYPE_PEN))
3169 return -ENODEV;
3170
Jason Gereckee5bc8eb2016-08-08 12:06:29 -07003171 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
3172 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
3173 else
3174 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
3175
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04003176 if (features->type == HID_GENERIC)
3177 /* setup has already been done */
3178 return 0;
3179
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003180 __set_bit(BTN_TOUCH, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003181 __set_bit(ABS_MISC, input_dev->absbit);
3182
Jason Gereckee779ef22016-10-19 18:03:49 -07003183 input_set_abs_params(input_dev, ABS_X, 0 + features->offset_left,
3184 features->x_max - features->offset_right,
3185 features->x_fuzz, 0);
3186 input_set_abs_params(input_dev, ABS_Y, 0 + features->offset_top,
3187 features->y_max - features->offset_bottom,
3188 features->y_fuzz, 0);
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003189 input_set_abs_params(input_dev, ABS_PRESSURE, 0,
3190 features->pressure_max, features->pressure_fuzz, 0);
3191
3192 /* penabled devices have fixed resolution for each model */
3193 input_abs_set_res(input_dev, ABS_X, features->x_resolution);
3194 input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
3195
Ping Cheng497ab1f2014-01-20 20:18:04 -08003196 switch (features->type) {
Ping Chenga2f71c62015-01-27 13:29:36 -08003197 case GRAPHIRE_BT:
3198 __clear_bit(ABS_MISC, input_dev->absbit);
3199
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003200 case WACOM_MO:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003201 case WACOM_G4:
Ping Chenga2f71c62015-01-27 13:29:36 -08003202 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
3203 features->distance_max,
Jason Gereckebef7e202016-04-22 14:30:53 -07003204 features->distance_fuzz, 0);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003205 /* fall through */
3206
3207 case GRAPHIRE:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003208 input_set_capability(input_dev, EV_REL, REL_WHEEL);
3209
3210 __set_bit(BTN_LEFT, input_dev->keybit);
3211 __set_bit(BTN_RIGHT, input_dev->keybit);
3212 __set_bit(BTN_MIDDLE, input_dev->keybit);
3213
3214 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
3215 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
3216 __set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
3217 __set_bit(BTN_STYLUS, input_dev->keybit);
3218 __set_bit(BTN_STYLUS2, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003219 break;
3220
Ping Cheng500d4162015-01-27 13:30:03 -08003221 case WACOM_27QHD:
Jason Gerecke803296b2011-12-12 00:11:45 -08003222 case WACOM_24HD:
Ping Chenga112e9f2013-02-13 20:20:01 -08003223 case DTK:
Ping Chengd838c642012-07-24 23:54:11 -07003224 case WACOM_22HD:
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07003225 case WACOM_21UX2:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003226 case WACOM_BEE:
Ping Cheng6521d0b2010-10-24 21:53:40 -07003227 case CINTIQ:
Ping Cheng56218562013-05-05 19:56:18 -07003228 case WACOM_13HD:
Ping Chenga2f71c62015-01-27 13:29:36 -08003229 case CINTIQ_HYBRID:
Jason Gereckef7acb552015-10-13 10:03:49 -07003230 case CINTIQ_COMPANION_2:
Ping Cheng56218562013-05-05 19:56:18 -07003231 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08003232 input_abs_set_res(input_dev, ABS_Z, 287);
Ping Cheng56218562013-05-05 19:56:18 -07003233 wacom_setup_cintiq(wacom_wac);
3234 break;
3235
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003236 case INTUOS3:
3237 case INTUOS3L:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003238 case INTUOS3S:
Ping Chenga2f71c62015-01-27 13:29:36 -08003239 case INTUOS4:
3240 case INTUOS4WL:
3241 case INTUOS4L:
3242 case INTUOS4S:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003243 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
Jason Gerecke26fe4122014-11-18 16:50:09 -08003244 input_abs_set_res(input_dev, ABS_Z, 287);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003245 /* fall through */
3246
3247 case INTUOS:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003248 wacom_setup_intuos(wacom_wac);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003249 break;
3250
Jason Gerecke9fee6192012-04-03 15:47:22 -07003251 case INTUOS5:
3252 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -07003253 case INTUOSPM:
3254 case INTUOSPL:
Jason Gereckeae584ca2012-04-03 15:50:40 -07003255 case INTUOS5S:
Ping Cheng9a35c412013-09-20 09:51:56 -07003256 case INTUOSPS:
Jason Gerecke4922cd22017-01-25 12:08:37 -08003257 case INTUOSP2_BT:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003258 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
3259 features->distance_max,
Jason Gereckebef7e202016-04-22 14:30:53 -07003260 features->distance_fuzz, 0);
Jason Gereckeae584ca2012-04-03 15:50:40 -07003261
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003262 input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
3263 input_abs_set_res(input_dev, ABS_Z, 287);
Jason Gereckeae584ca2012-04-03 15:50:40 -07003264
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003265 wacom_setup_intuos(wacom_wac);
Jason Gereckeae584ca2012-04-03 15:50:40 -07003266 break;
3267
Jason Gereckeb1e42792012-10-21 00:38:04 -07003268 case WACOM_24HDT:
Ping Cheng500d4162015-01-27 13:30:03 -08003269 case WACOM_27QHDT:
Ping Cheng19635182012-04-29 21:09:18 -07003270 case MTSCREEN:
Ping Cheng6afdc282012-11-03 12:16:15 -07003271 case MTTPC:
Jason Gerecked51ddb22014-05-14 17:14:29 -07003272 case MTTPC_B:
Ping Cheng6795a522012-06-28 16:49:00 -07003273 case TABLETPC2FG:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003274 case TABLETPC:
Ping Chengac173832012-06-12 00:15:06 -07003275 case TABLETPCE:
Ping Chenga43c7c52011-03-12 20:34:42 -08003276 __clear_bit(ABS_MISC, input_dev->absbit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003277 /* fall through */
3278
Ping Cheng497ab1f2014-01-20 20:18:04 -08003279 case DTUS:
Ping Chengfff00bf2014-12-04 18:23:04 -08003280 case DTUSX:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003281 case PL:
Ping Chengc8f2edc2010-06-28 01:10:51 -07003282 case DTU:
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003283 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07003284 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003285 __set_bit(BTN_STYLUS, input_dev->keybit);
3286 __set_bit(BTN_STYLUS2, input_dev->keybit);
Jason Gerecke35120692011-09-08 09:38:14 -07003287 break;
3288
3289 case PTU:
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003290 __set_bit(BTN_STYLUS2, input_dev->keybit);
3291 /* fall through */
3292
3293 case PENPARTNER:
Jason Gerecke1fab84a2011-08-26 23:18:22 -07003294 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -07003295 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
Jason Gerecke1fab84a2011-08-26 23:18:22 -07003296 __set_bit(BTN_STYLUS, input_dev->keybit);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -07003297 break;
Henrik Rydbergcb734c02010-09-05 12:53:16 -07003298
Ping Chengb5fd2a32013-11-25 18:44:55 -08003299 case INTUOSHT:
Henrik Rydbergcb734c02010-09-05 12:53:16 -07003300 case BAMBOO_PT:
Ping Cheng3b164a02015-09-23 09:59:10 -07003301 case BAMBOO_PEN:
Ping Chengeda01da2015-09-23 13:51:15 -07003302 case INTUOSHT2:
Ping Chengeda01da2015-09-23 13:51:15 -07003303 if (features->type == INTUOSHT2) {
3304 wacom_setup_basic_pro_pen(wacom_wac);
3305 } else {
3306 __clear_bit(ABS_MISC, input_dev->absbit);
3307 __set_bit(BTN_TOOL_PEN, input_dev->keybit);
3308 __set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
3309 __set_bit(BTN_STYLUS, input_dev->keybit);
3310 __set_bit(BTN_STYLUS2, input_dev->keybit);
3311 input_set_abs_params(input_dev, ABS_DISTANCE, 0,
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003312 features->distance_max,
Jason Gereckebef7e202016-04-22 14:30:53 -07003313 features->distance_fuzz, 0);
Ping Chengeda01da2015-09-23 13:51:15 -07003314 }
Henrik Rydbergcb734c02010-09-05 12:53:16 -07003315 break;
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05003316 case BAMBOO_PAD:
3317 __clear_bit(ABS_MISC, input_dev->absbit);
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003318 break;
3319 }
3320 return 0;
3321}
3322
3323int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
3324 struct wacom_wac *wacom_wac)
3325{
3326 struct wacom_features *features = &wacom_wac->features;
3327
3328 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
3329
3330 if (!(features->device_type & WACOM_DEVICETYPE_TOUCH))
3331 return -ENODEV;
3332
Jason Gereckee5bc8eb2016-08-08 12:06:29 -07003333 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
3334 __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
3335 else
3336 __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
3337
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003338 if (features->type == HID_GENERIC)
3339 /* setup has already been done */
3340 return 0;
3341
3342 __set_bit(BTN_TOUCH, input_dev->keybit);
3343
3344 if (features->touch_max == 1) {
3345 input_set_abs_params(input_dev, ABS_X, 0,
3346 features->x_max, features->x_fuzz, 0);
3347 input_set_abs_params(input_dev, ABS_Y, 0,
3348 features->y_max, features->y_fuzz, 0);
3349 input_abs_set_res(input_dev, ABS_X,
3350 features->x_resolution);
3351 input_abs_set_res(input_dev, ABS_Y,
3352 features->y_resolution);
3353 }
3354 else if (features->touch_max > 1) {
3355 input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0,
3356 features->x_max, features->x_fuzz, 0);
3357 input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0,
3358 features->y_max, features->y_fuzz, 0);
3359 input_abs_set_res(input_dev, ABS_MT_POSITION_X,
3360 features->x_resolution);
3361 input_abs_set_res(input_dev, ABS_MT_POSITION_Y,
3362 features->y_resolution);
3363 }
3364
3365 switch (features->type) {
Jason Gerecke4922cd22017-01-25 12:08:37 -08003366 case INTUOSP2_BT:
3367 input_dev->evbit[0] |= BIT_MASK(EV_SW);
3368 __set_bit(SW_MUTE_DEVICE, input_dev->swbit);
3369
3370 if (wacom_wac->shared->touch->product == 0x361) {
3371 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
3372 0, 12440, 4, 0);
3373 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
3374 0, 8640, 4, 0);
3375 }
3376 else if (wacom_wac->shared->touch->product == 0x360) {
3377 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
3378 0, 8960, 4, 0);
3379 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
3380 0, 5920, 4, 0);
3381 }
3382 input_abs_set_res(input_dev, ABS_MT_POSITION_X, 40);
3383 input_abs_set_res(input_dev, ABS_MT_POSITION_X, 40);
3384
3385 /* fall through */
3386
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003387 case INTUOS5:
3388 case INTUOS5L:
3389 case INTUOSPM:
3390 case INTUOSPL:
3391 case INTUOS5S:
3392 case INTUOSPS:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003393 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
3394 input_set_abs_params(input_dev, ABS_MT_TOUCH_MINOR, 0, features->y_max, 0, 0);
3395 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
3396 break;
3397
3398 case WACOM_24HDT:
3399 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
3400 input_set_abs_params(input_dev, ABS_MT_WIDTH_MAJOR, 0, features->x_max, 0, 0);
3401 input_set_abs_params(input_dev, ABS_MT_WIDTH_MINOR, 0, features->y_max, 0, 0);
3402 input_set_abs_params(input_dev, ABS_MT_ORIENTATION, 0, 1, 0, 0);
3403 /* fall through */
3404
3405 case WACOM_27QHDT:
3406 case MTSCREEN:
3407 case MTTPC:
3408 case MTTPC_B:
3409 case TABLETPC2FG:
3410 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_DIRECT);
3411 /*fall through */
3412
3413 case TABLETPC:
3414 case TABLETPCE:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003415 break;
3416
3417 case INTUOSHT:
Ping Chengeda01da2015-09-23 13:51:15 -07003418 case INTUOSHT2:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003419 input_dev->evbit[0] |= BIT_MASK(EV_SW);
3420 __set_bit(SW_MUTE_DEVICE, input_dev->swbit);
3421 /* fall through */
3422
3423 case BAMBOO_PT:
Ping Cheng3b164a02015-09-23 09:59:10 -07003424 case BAMBOO_TOUCH:
Jason Gerecke2636a3f2015-06-15 18:01:44 -07003425 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
3426 input_set_abs_params(input_dev,
3427 ABS_MT_TOUCH_MAJOR,
3428 0, features->x_max, 0, 0);
3429 input_set_abs_params(input_dev,
3430 ABS_MT_TOUCH_MINOR,
3431 0, features->y_max, 0, 0);
3432 }
3433 input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
3434 break;
3435
3436 case BAMBOO_PAD:
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05003437 input_mt_init_slots(input_dev, features->touch_max,
3438 INPUT_MT_POINTER);
3439 __set_bit(BTN_LEFT, input_dev->keybit);
3440 __set_bit(BTN_RIGHT, input_dev->keybit);
3441 break;
Ping Cheng3bea7332006-07-13 18:01:36 -07003442 }
Ping Cheng19635182012-04-29 21:09:18 -07003443 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -07003444}
3445
Jason Gerecke49005b92016-10-19 18:03:39 -07003446static int wacom_numbered_button_to_key(int n)
3447{
3448 if (n < 10)
3449 return BTN_0 + n;
3450 else if (n < 16)
3451 return BTN_A + (n-10);
3452 else if (n < 18)
3453 return BTN_BASE + (n-16);
3454 else
3455 return 0;
3456}
3457
Jiri Kosina5397df12015-08-28 20:46:42 +02003458static void wacom_setup_numbered_buttons(struct input_dev *input_dev,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003459 int button_count)
3460{
3461 int i;
3462
Jason Gerecke49005b92016-10-19 18:03:39 -07003463 for (i = 0; i < button_count; i++) {
3464 int key = wacom_numbered_button_to_key(i);
3465
3466 if (key)
3467 __set_bit(key, input_dev->keybit);
3468 }
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003469}
3470
Benjamin Tissoires6a062812016-07-13 18:06:14 +02003471static void wacom_24hd_update_leds(struct wacom *wacom, int mask, int group)
3472{
3473 struct wacom_led *led;
3474 int i;
3475 bool updated = false;
3476
3477 /*
3478 * 24HD has LED group 1 to the left and LED group 0 to the right.
3479 * So group 0 matches the second half of the buttons and thus the mask
3480 * needs to be shifted.
3481 */
3482 if (group == 0)
3483 mask >>= 8;
3484
3485 for (i = 0; i < 3; i++) {
3486 led = wacom_led_find(wacom, group, i);
3487 if (!led) {
3488 hid_err(wacom->hdev, "can't find LED %d in group %d\n",
3489 i, group);
3490 continue;
3491 }
3492 if (!updated && mask & BIT(i)) {
3493 led->held = true;
3494 led_trigger_event(&led->trigger, LED_FULL);
3495 } else {
3496 led->held = false;
3497 }
3498 }
3499}
3500
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003501static bool wacom_is_led_toggled(struct wacom *wacom, int button_count,
3502 int mask, int group)
3503{
3504 int button_per_group;
3505
Benjamin Tissoires5a0fe8ab2016-07-13 18:06:13 +02003506 /*
Benjamin Tissoires6a062812016-07-13 18:06:14 +02003507 * 21UX2 has LED group 1 to the left and LED group 0
Benjamin Tissoires5a0fe8ab2016-07-13 18:06:13 +02003508 * to the right. We need to reverse the group to match this
3509 * historical behavior.
3510 */
Benjamin Tissoires6a062812016-07-13 18:06:14 +02003511 if (wacom->wacom_wac.features.type == WACOM_21UX2)
Benjamin Tissoires5a0fe8ab2016-07-13 18:06:13 +02003512 group = 1 - group;
3513
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003514 button_per_group = button_count/wacom->led.count;
3515
3516 return mask & (1 << (group * button_per_group));
3517}
3518
3519static void wacom_update_led(struct wacom *wacom, int button_count, int mask,
3520 int group)
3521{
3522 struct wacom_led *led, *next_led;
3523 int cur;
3524 bool pressed;
3525
Benjamin Tissoires6a062812016-07-13 18:06:14 +02003526 if (wacom->wacom_wac.features.type == WACOM_24HD)
3527 return wacom_24hd_update_leds(wacom, mask, group);
3528
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003529 pressed = wacom_is_led_toggled(wacom, button_count, mask, group);
3530 cur = wacom->led.groups[group].select;
3531
3532 led = wacom_led_find(wacom, group, cur);
3533 if (!led) {
3534 hid_err(wacom->hdev, "can't find current LED %d in group %d\n",
3535 cur, group);
3536 return;
3537 }
3538
3539 if (!pressed) {
3540 led->held = false;
3541 return;
3542 }
3543
3544 if (led->held && pressed)
3545 return;
3546
3547 next_led = wacom_led_next(wacom, led);
3548 if (!next_led) {
3549 hid_err(wacom->hdev, "can't find next LED in group %d\n",
3550 group);
3551 return;
3552 }
3553 if (next_led == led)
3554 return;
3555
3556 next_led->held = true;
3557 led_trigger_event(&next_led->trigger,
3558 wacom_leds_brightness_get(next_led));
3559}
3560
Jason Gereckec7f05222015-11-30 17:13:47 -08003561static void wacom_report_numbered_buttons(struct input_dev *input_dev,
3562 int button_count, int mask)
3563{
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003564 struct wacom *wacom = input_get_drvdata(input_dev);
Jason Gereckec7f05222015-11-30 17:13:47 -08003565 int i;
3566
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02003567 for (i = 0; i < wacom->led.count; i++)
3568 wacom_update_led(wacom, button_count, mask, i);
3569
Jason Gerecke49005b92016-10-19 18:03:39 -07003570 for (i = 0; i < button_count; i++) {
3571 int key = wacom_numbered_button_to_key(i);
3572
3573 if (key)
3574 input_report_key(input_dev, key, mask & (1 << i));
3575 }
Jason Gereckec7f05222015-11-30 17:13:47 -08003576}
3577
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003578int wacom_setup_pad_input_capabilities(struct input_dev *input_dev,
3579 struct wacom_wac *wacom_wac)
3580{
3581 struct wacom_features *features = &wacom_wac->features;
3582
Ping Chenge7deb152017-01-30 15:40:49 -08003583 if ((features->type == HID_GENERIC) && features->numbered_buttons > 0)
3584 features->device_type |= WACOM_DEVICETYPE_PAD;
3585
Jason Gerecke862cf552015-06-15 18:01:43 -07003586 if (!(features->device_type & WACOM_DEVICETYPE_PAD))
3587 return -ENODEV;
3588
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02003589 if (features->type == REMOTE && input_dev == wacom_wac->pad_input)
3590 return -ENODEV;
3591
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003592 input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
3593
3594 /* kept for making legacy xf86-input-wacom working with the wheels */
3595 __set_bit(ABS_MISC, input_dev->absbit);
3596
3597 /* kept for making legacy xf86-input-wacom accepting the pad */
Jason Gerecke5922e612016-10-19 18:03:51 -07003598 if (!(input_dev->absinfo && (input_dev->absinfo[ABS_X].minimum ||
3599 input_dev->absinfo[ABS_X].maximum)))
3600 input_set_abs_params(input_dev, ABS_X, 0, 1, 0, 0);
3601 if (!(input_dev->absinfo && (input_dev->absinfo[ABS_Y].minimum ||
3602 input_dev->absinfo[ABS_Y].maximum)))
3603 input_set_abs_params(input_dev, ABS_Y, 0, 1, 0, 0);
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003604
Benjamin Tissoires12969e32014-09-11 13:14:04 -04003605 /* kept for making udev and libwacom accepting the pad */
3606 __set_bit(BTN_STYLUS, input_dev->keybit);
3607
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003608 wacom_setup_numbered_buttons(input_dev, features->numbered_buttons);
3609
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003610 switch (features->type) {
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003611
3612 case CINTIQ_HYBRID:
Jason Gereckef7acb552015-10-13 10:03:49 -07003613 case CINTIQ_COMPANION_2:
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003614 case DTK:
3615 case DTUS:
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003616 case GRAPHIRE_BT:
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003617 break;
3618
Benjamin Tissoires38138102014-07-24 12:51:03 -07003619 case WACOM_MO:
3620 __set_bit(BTN_BACK, input_dev->keybit);
3621 __set_bit(BTN_LEFT, input_dev->keybit);
3622 __set_bit(BTN_FORWARD, input_dev->keybit);
3623 __set_bit(BTN_RIGHT, input_dev->keybit);
3624 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3625 break;
3626
3627 case WACOM_G4:
3628 __set_bit(BTN_BACK, input_dev->keybit);
Benjamin Tissoires38138102014-07-24 12:51:03 -07003629 __set_bit(BTN_FORWARD, input_dev->keybit);
Benjamin Tissoires38138102014-07-24 12:51:03 -07003630 input_set_capability(input_dev, EV_REL, REL_WHEEL);
3631 break;
3632
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003633 case WACOM_24HD:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003634 __set_bit(KEY_PROG1, input_dev->keybit);
3635 __set_bit(KEY_PROG2, input_dev->keybit);
3636 __set_bit(KEY_PROG3, input_dev->keybit);
3637
3638 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3639 input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0);
3640 break;
3641
Ping Cheng500d4162015-01-27 13:30:03 -08003642 case WACOM_27QHD:
3643 __set_bit(KEY_PROG1, input_dev->keybit);
3644 __set_bit(KEY_PROG2, input_dev->keybit);
3645 __set_bit(KEY_PROG3, input_dev->keybit);
3646 input_set_abs_params(input_dev, ABS_X, -2048, 2048, 0, 0);
3647 input_abs_set_res(input_dev, ABS_X, 1024); /* points/g */
3648 input_set_abs_params(input_dev, ABS_Y, -2048, 2048, 0, 0);
3649 input_abs_set_res(input_dev, ABS_Y, 1024);
3650 input_set_abs_params(input_dev, ABS_Z, -2048, 2048, 0, 0);
3651 input_abs_set_res(input_dev, ABS_Z, 1024);
3652 __set_bit(INPUT_PROP_ACCELEROMETER, input_dev->propbit);
3653 break;
3654
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003655 case WACOM_22HD:
3656 __set_bit(KEY_PROG1, input_dev->keybit);
3657 __set_bit(KEY_PROG2, input_dev->keybit);
3658 __set_bit(KEY_PROG3, input_dev->keybit);
3659 /* fall through */
3660
3661 case WACOM_21UX2:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003662 case WACOM_BEE:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003663 case CINTIQ:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003664 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
3665 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
3666 break;
3667
3668 case WACOM_13HD:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003669 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3670 break;
3671
3672 case INTUOS3:
3673 case INTUOS3L:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003674 input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
3675 /* fall through */
3676
3677 case INTUOS3S:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003678 input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
3679 break;
3680
3681 case INTUOS5:
3682 case INTUOS5L:
3683 case INTUOSPM:
3684 case INTUOSPL:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003685 case INTUOS5S:
3686 case INTUOSPS:
Jason Gerecke4922cd22017-01-25 12:08:37 -08003687 case INTUOSP2_BT:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003688 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3689 break;
3690
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07003691 case INTUOS4WL:
3692 /*
3693 * For Bluetooth devices, the udev rule does not work correctly
3694 * for pads unless we add a stylus capability, which forces
3695 * ID_INPUT_TABLET to be set.
3696 */
3697 __set_bit(BTN_STYLUS, input_dev->keybit);
3698 /* fall through */
3699
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003700 case INTUOS4:
3701 case INTUOS4L:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003702 case INTUOS4S:
Benjamin Tissoires10059cdc2014-07-24 12:49:08 -07003703 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3704 break;
3705
Benjamin Tissoires31168712014-07-24 12:50:10 -07003706 case INTUOSHT:
3707 case BAMBOO_PT:
Ping Cheng3b164a02015-09-23 09:59:10 -07003708 case BAMBOO_TOUCH:
Ping Chengeda01da2015-09-23 13:51:15 -07003709 case INTUOSHT2:
Benjamin Tissoires31168712014-07-24 12:50:10 -07003710 __clear_bit(ABS_MISC, input_dev->absbit);
3711
3712 __set_bit(BTN_LEFT, input_dev->keybit);
3713 __set_bit(BTN_FORWARD, input_dev->keybit);
3714 __set_bit(BTN_BACK, input_dev->keybit);
3715 __set_bit(BTN_RIGHT, input_dev->keybit);
3716
3717 break;
3718
Aaron Skomra72b236d2015-08-20 16:05:17 -07003719 case REMOTE:
3720 input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
3721 input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
3722 break;
3723
Jason Gerecke5922e612016-10-19 18:03:51 -07003724 case HID_GENERIC:
3725 break;
3726
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003727 default:
3728 /* no pad supported */
Ping Chengb3c8e932014-11-18 13:27:48 -08003729 return -ENODEV;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07003730 }
3731 return 0;
3732}
3733
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003734static const struct wacom_features wacom_features_0x00 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003735 { "Wacom Penpartner", 5040, 3780, 255, 0,
3736 PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003737static const struct wacom_features wacom_features_0x10 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003738 { "Wacom Graphire", 10206, 7422, 511, 63,
3739 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Benjamin Tissoires387142b2014-08-06 13:52:56 -07003740static const struct wacom_features wacom_features_0x81 =
3741 { "Wacom Graphire BT", 16704, 12064, 511, 32,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003742 GRAPHIRE_BT, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES, 2 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003743static const struct wacom_features wacom_features_0x11 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003744 { "Wacom Graphire2 4x5", 10206, 7422, 511, 63,
3745 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003746static const struct wacom_features wacom_features_0x12 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003747 { "Wacom Graphire2 5x7", 13918, 10206, 511, 63,
3748 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003749static const struct wacom_features wacom_features_0x13 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003750 { "Wacom Graphire3", 10208, 7424, 511, 63,
3751 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003752static const struct wacom_features wacom_features_0x14 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003753 { "Wacom Graphire3 6x8", 16704, 12064, 511, 63,
3754 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003755static const struct wacom_features wacom_features_0x15 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003756 { "Wacom Graphire4 4x5", 10208, 7424, 511, 63,
3757 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003758static const struct wacom_features wacom_features_0x16 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003759 { "Wacom Graphire4 6x8", 16704, 12064, 511, 63,
3760 WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003761static const struct wacom_features wacom_features_0x17 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003762 { "Wacom BambooFun 4x5", 14760, 9225, 511, 63,
3763 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003764static const struct wacom_features wacom_features_0x18 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003765 { "Wacom BambooFun 6x8", 21648, 13530, 511, 63,
3766 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003767static const struct wacom_features wacom_features_0x19 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003768 { "Wacom Bamboo1 Medium", 16704, 12064, 511, 63,
3769 GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003770static const struct wacom_features wacom_features_0x60 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003771 { "Wacom Volito", 5104, 3712, 511, 63,
3772 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003773static const struct wacom_features wacom_features_0x61 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003774 { "Wacom PenStation2", 3250, 2320, 255, 63,
3775 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003776static const struct wacom_features wacom_features_0x62 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003777 { "Wacom Volito2 4x5", 5104, 3712, 511, 63,
3778 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003779static const struct wacom_features wacom_features_0x63 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003780 { "Wacom Volito2 2x3", 3248, 2320, 511, 63,
3781 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003782static const struct wacom_features wacom_features_0x64 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003783 { "Wacom PenPartner2", 3250, 2320, 511, 63,
3784 GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003785static const struct wacom_features wacom_features_0x65 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003786 { "Wacom Bamboo", 14760, 9225, 511, 63,
3787 WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003788static const struct wacom_features wacom_features_0x69 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003789 { "Wacom Bamboo1", 5104, 3712, 511, 63,
3790 GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07003791static const struct wacom_features wacom_features_0x6A =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003792 { "Wacom Bamboo1 4x6", 14760, 9225, 1023, 63,
3793 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07003794static const struct wacom_features wacom_features_0x6B =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003795 { "Wacom Bamboo1 5x8", 21648, 13530, 1023, 63,
3796 GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003797static const struct wacom_features wacom_features_0x20 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003798 { "Wacom Intuos 4x5", 12700, 10600, 1023, 31,
3799 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003800static const struct wacom_features wacom_features_0x21 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003801 { "Wacom Intuos 6x8", 20320, 16240, 1023, 31,
3802 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003803static const struct wacom_features wacom_features_0x22 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003804 { "Wacom Intuos 9x12", 30480, 24060, 1023, 31,
3805 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003806static const struct wacom_features wacom_features_0x23 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003807 { "Wacom Intuos 12x12", 30480, 31680, 1023, 31,
3808 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003809static const struct wacom_features wacom_features_0x24 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003810 { "Wacom Intuos 12x18", 45720, 31680, 1023, 31,
3811 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003812static const struct wacom_features wacom_features_0x30 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003813 { "Wacom PL400", 5408, 4056, 255, 0,
3814 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003815static const struct wacom_features wacom_features_0x31 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003816 { "Wacom PL500", 6144, 4608, 255, 0,
3817 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003818static const struct wacom_features wacom_features_0x32 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003819 { "Wacom PL600", 6126, 4604, 255, 0,
3820 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003821static const struct wacom_features wacom_features_0x33 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003822 { "Wacom PL600SX", 6260, 5016, 255, 0,
3823 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003824static const struct wacom_features wacom_features_0x34 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003825 { "Wacom PL550", 6144, 4608, 511, 0,
3826 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003827static const struct wacom_features wacom_features_0x35 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003828 { "Wacom PL800", 7220, 5780, 511, 0,
3829 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003830static const struct wacom_features wacom_features_0x37 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003831 { "Wacom PL700", 6758, 5406, 511, 0,
3832 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003833static const struct wacom_features wacom_features_0x38 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003834 { "Wacom PL510", 6282, 4762, 511, 0,
3835 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003836static const struct wacom_features wacom_features_0x39 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003837 { "Wacom DTU710", 34080, 27660, 511, 0,
3838 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003839static const struct wacom_features wacom_features_0xC4 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003840 { "Wacom DTF521", 6282, 4762, 511, 0,
3841 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003842static const struct wacom_features wacom_features_0xC0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003843 { "Wacom DTF720", 6858, 5506, 511, 0,
3844 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003845static const struct wacom_features wacom_features_0xC2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003846 { "Wacom DTF720a", 6858, 5506, 511, 0,
3847 PL, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003848static const struct wacom_features wacom_features_0x03 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003849 { "Wacom Cintiq Partner", 20480, 15360, 511, 0,
3850 PTU, WACOM_PL_RES, WACOM_PL_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003851static const struct wacom_features wacom_features_0x41 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003852 { "Wacom Intuos2 4x5", 12700, 10600, 1023, 31,
3853 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003854static const struct wacom_features wacom_features_0x42 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003855 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3856 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003857static const struct wacom_features wacom_features_0x43 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003858 { "Wacom Intuos2 9x12", 30480, 24060, 1023, 31,
3859 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003860static const struct wacom_features wacom_features_0x44 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003861 { "Wacom Intuos2 12x12", 30480, 31680, 1023, 31,
3862 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003863static const struct wacom_features wacom_features_0x45 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003864 { "Wacom Intuos2 12x18", 45720, 31680, 1023, 31,
3865 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003866static const struct wacom_features wacom_features_0xB0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003867 { "Wacom Intuos3 4x5", 25400, 20320, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003868 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003869static const struct wacom_features wacom_features_0xB1 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003870 { "Wacom Intuos3 6x8", 40640, 30480, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003871 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003872static const struct wacom_features wacom_features_0xB2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003873 { "Wacom Intuos3 9x12", 60960, 45720, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003874 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003875static const struct wacom_features wacom_features_0xB3 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003876 { "Wacom Intuos3 12x12", 60960, 60960, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003877 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003878static const struct wacom_features wacom_features_0xB4 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003879 { "Wacom Intuos3 12x19", 97536, 60960, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003880 INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003881static const struct wacom_features wacom_features_0xB5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003882 { "Wacom Intuos3 6x11", 54204, 31750, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003883 INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003884static const struct wacom_features wacom_features_0xB7 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003885 { "Wacom Intuos3 4x6", 31496, 19685, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003886 INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003887static const struct wacom_features wacom_features_0xB8 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003888 { "Wacom Intuos4 4x6", 31496, 19685, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003889 INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003890static const struct wacom_features wacom_features_0xB9 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003891 { "Wacom Intuos4 6x9", 44704, 27940, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003892 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003893static const struct wacom_features wacom_features_0xBA =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003894 { "Wacom Intuos4 8x13", 65024, 40640, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003895 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003896static const struct wacom_features wacom_features_0xBB =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003897 { "Wacom Intuos4 12x19", 97536, 60960, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003898 INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07003899static const struct wacom_features wacom_features_0xBC =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003900 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003901 INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07003902static const struct wacom_features wacom_features_0xBD =
3903 { "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003904 INTUOS4WL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003905static const struct wacom_features wacom_features_0x26 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003906 { "Wacom Intuos5 touch S", 31496, 19685, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003907 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003908static const struct wacom_features wacom_features_0x27 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003909 { "Wacom Intuos5 touch M", 44704, 27940, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003910 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003911static const struct wacom_features wacom_features_0x28 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003912 { "Wacom Intuos5 touch L", 65024, 40640, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003913 INTUOS5L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003914static const struct wacom_features wacom_features_0x29 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003915 { "Wacom Intuos5 S", 31496, 19685, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003916 INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
Jason Gerecke9fee6192012-04-03 15:47:22 -07003917static const struct wacom_features wacom_features_0x2A =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003918 { "Wacom Intuos5 M", 44704, 27940, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003919 INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
Ping Cheng9a35c412013-09-20 09:51:56 -07003920static const struct wacom_features wacom_features_0x314 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003921 { "Wacom Intuos Pro S", 31496, 19685, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003922 INTUOSPS, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003923 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng9a35c412013-09-20 09:51:56 -07003924static const struct wacom_features wacom_features_0x315 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003925 { "Wacom Intuos Pro M", 44704, 27940, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003926 INTUOSPM, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003927 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng9a35c412013-09-20 09:51:56 -07003928static const struct wacom_features wacom_features_0x317 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003929 { "Wacom Intuos Pro L", 65024, 40640, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003930 INTUOSPL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003931 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Jason Gerecke803296b2011-12-12 00:11:45 -08003932static const struct wacom_features wacom_features_0xF4 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003933 { "Wacom Cintiq 24HD", 104480, 65600, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003934 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
Jason Gereckee779ef22016-10-19 18:03:49 -07003935 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08003936 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Jason Gerecke6f4d0382012-08-21 22:11:59 -07003937static const struct wacom_features wacom_features_0xF8 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003938 { "Wacom Cintiq 24HD touch", 104480, 65600, 2047, 63, /* Pen */
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003939 WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
Ping Chengfa770342014-12-01 13:44:28 -08003940 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003941 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Cheng3bd1f7e2013-05-23 10:22:33 -07003942 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf6 };
Jason Gereckeb1e42792012-10-21 00:38:04 -07003943static const struct wacom_features wacom_features_0xF6 =
3944 { "Wacom Cintiq 24HD touch", .type = WACOM_24HDT, /* Touch */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003945 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf8, .touch_max = 10,
3946 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng500d4162015-01-27 13:30:03 -08003947static const struct wacom_features wacom_features_0x32A =
Jason Gereckee779ef22016-10-19 18:03:49 -07003948 { "Wacom Cintiq 27QHD", 120140, 67920, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003949 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
Jason Gereckee779ef22016-10-19 18:03:49 -07003950 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chenga7e66452015-02-04 16:01:54 -08003951 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Cheng500d4162015-01-27 13:30:03 -08003952static const struct wacom_features wacom_features_0x32B =
Jason Gereckee779ef22016-10-19 18:03:49 -07003953 { "Wacom Cintiq 27QHD touch", 120140, 67920, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003954 WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
Ping Cheng500d4162015-01-27 13:30:03 -08003955 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003956 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Cheng500d4162015-01-27 13:30:03 -08003957 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32C };
3958static const struct wacom_features wacom_features_0x32C =
3959 { "Wacom Cintiq 27QHD touch", .type = WACOM_27QHDT,
3960 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32B, .touch_max = 10 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003961static const struct wacom_features wacom_features_0x3F =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003962 { "Wacom Cintiq 21UX", 87200, 65600, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003963 CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003964static const struct wacom_features wacom_features_0xC5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003965 { "Wacom Cintiq 20WSX", 86680, 54180, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003966 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003967static const struct wacom_features wacom_features_0xC6 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003968 { "Wacom Cintiq 12WX", 53020, 33440, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003969 WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
Ping Cheng56218562013-05-05 19:56:18 -07003970static const struct wacom_features wacom_features_0x304 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003971 { "Wacom Cintiq 13HD", 59552, 33848, 1023, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003972 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
Jason Gereckee779ef22016-10-19 18:03:49 -07003973 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08003974 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Chengb4bf2122015-03-25 17:08:13 -07003975static const struct wacom_features wacom_features_0x333 =
Jason Gereckee779ef22016-10-19 18:03:49 -07003976 { "Wacom Cintiq 13HD touch", 59552, 33848, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003977 WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
Ping Chengb4bf2122015-03-25 17:08:13 -07003978 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07003979 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengb4bf2122015-03-25 17:08:13 -07003980 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x335 };
3981static const struct wacom_features wacom_features_0x335 =
3982 { "Wacom Cintiq 13HD touch", .type = WACOM_24HDT, /* Touch */
3983 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x333, .touch_max = 10,
3984 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08003985static const struct wacom_features wacom_features_0xC7 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003986 { "Wacom DTU1931", 37832, 30305, 511, 0,
3987 PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengc8f2edc2010-06-28 01:10:51 -07003988static const struct wacom_features wacom_features_0xCE =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003989 { "Wacom DTU2231", 47864, 27011, 511, 0,
3990 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07003991 .check_for_hid_type = true, .hid_type = HID_TYPE_USBMOUSE };
Ping Chengc8f2edc2010-06-28 01:10:51 -07003992static const struct wacom_features wacom_features_0xF0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07003993 { "Wacom DTU1631", 34623, 19553, 511, 0,
3994 DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng497ab1f2014-01-20 20:18:04 -08003995static const struct wacom_features wacom_features_0xFB =
Jason Gereckee779ef22016-10-19 18:03:49 -07003996 { "Wacom DTU1031", 22096, 13960, 511, 0,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07003997 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
Jason Gereckee779ef22016-10-19 18:03:49 -07003998 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08003999 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Ping Chengfff00bf2014-12-04 18:23:04 -08004000static const struct wacom_features wacom_features_0x32F =
Jason Gereckee779ef22016-10-19 18:03:49 -07004001 { "Wacom DTU1031X", 22672, 12928, 511, 0,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07004002 DTUSX, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 0,
Jason Gereckee779ef22016-10-19 18:03:49 -07004003 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
Ping Chengfff00bf2014-12-04 18:23:04 -08004004 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Aaron Skomra007760c2015-04-16 15:01:14 -07004005static const struct wacom_features wacom_features_0x336 =
Jason Gereckee779ef22016-10-19 18:03:49 -07004006 { "Wacom DTU1141", 23672, 13403, 1023, 0,
Ping Chengff38e822015-11-12 17:21:14 -08004007 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
Jason Gereckee779ef22016-10-19 18:03:49 -07004008 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
Ping Chengff38e822015-11-12 17:21:14 -08004009 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Ping Cheng56218562013-05-05 19:56:18 -07004010static const struct wacom_features wacom_features_0x57 =
Jason Gereckee779ef22016-10-19 18:03:49 -07004011 { "Wacom DTK2241", 95840, 54260, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07004012 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
Jason Gereckee779ef22016-10-19 18:03:49 -07004013 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08004014 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Chenga112e9f2013-02-13 20:20:01 -08004015static const struct wacom_features wacom_features_0x59 = /* Pen */
Jason Gereckee779ef22016-10-19 18:03:49 -07004016 { "Wacom DTH2242", 95840, 54260, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07004017 DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
Ping Chengfa770342014-12-01 13:44:28 -08004018 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07004019 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chenga112e9f2013-02-13 20:20:01 -08004020 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5D };
4021static const struct wacom_features wacom_features_0x5D = /* Touch */
4022 { "Wacom DTH2242", .type = WACOM_24HDT,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004023 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x59, .touch_max = 10,
4024 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07004025static const struct wacom_features wacom_features_0xCC =
Jason Gereckee779ef22016-10-19 18:03:49 -07004026 { "Wacom Cintiq 21UX2", 87200, 65600, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07004027 WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
Jason Gereckee779ef22016-10-19 18:03:49 -07004028 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08004029 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Chengd838c642012-07-24 23:54:11 -07004030static const struct wacom_features wacom_features_0xFA =
Jason Gereckee779ef22016-10-19 18:03:49 -07004031 { "Wacom Cintiq 22HD", 95840, 54260, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07004032 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
Jason Gereckee779ef22016-10-19 18:03:49 -07004033 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Chengfa770342014-12-01 13:44:28 -08004034 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
Ping Cheng56218562013-05-05 19:56:18 -07004035static const struct wacom_features wacom_features_0x5B =
Jason Gereckee779ef22016-10-19 18:03:49 -07004036 { "Wacom Cintiq 22HDT", 95840, 54260, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07004037 WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
Ping Chengfa770342014-12-01 13:44:28 -08004038 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07004039 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Ping Cheng3bd1f7e2013-05-23 10:22:33 -07004040 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5e };
Ping Cheng56218562013-05-05 19:56:18 -07004041static const struct wacom_features wacom_features_0x5E =
4042 { "Wacom Cintiq 22HDT", .type = WACOM_24HDT,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004043 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5b, .touch_max = 10,
4044 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08004045static const struct wacom_features wacom_features_0x90 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004046 { "Wacom ISDv4 90", 26202, 16325, 255, 0,
4047 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08004048static const struct wacom_features wacom_features_0x93 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004049 { "Wacom ISDv4 93", 26202, 16325, 255, 0,
4050 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng11d0cf82011-06-27 12:57:58 -07004051static const struct wacom_features wacom_features_0x97 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004052 { "Wacom ISDv4 97", 26202, 16325, 511, 0,
4053 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08004054static const struct wacom_features wacom_features_0x9A =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004055 { "Wacom ISDv4 9A", 26202, 16325, 255, 0,
4056 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08004057static const struct wacom_features wacom_features_0x9F =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004058 { "Wacom ISDv4 9F", 26202, 16325, 255, 0,
4059 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08004060static const struct wacom_features wacom_features_0xE2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004061 { "Wacom ISDv4 E2", 26202, 16325, 255, 0,
4062 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08004063static const struct wacom_features wacom_features_0xE3 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004064 { "Wacom ISDv4 E3", 26202, 16325, 255, 0,
4065 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng19635182012-04-29 21:09:18 -07004066static const struct wacom_features wacom_features_0xE5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004067 { "Wacom ISDv4 E5", 26202, 16325, 255, 0,
4068 MTSCREEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07004069static const struct wacom_features wacom_features_0xE6 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004070 { "Wacom ISDv4 E6", 27760, 15694, 255, 0,
4071 TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Chris Bagwell0d0e3062011-12-11 23:50:59 -08004072static const struct wacom_features wacom_features_0xEC =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004073 { "Wacom ISDv4 EC", 25710, 14500, 255, 0,
4074 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengac173832012-06-12 00:15:06 -07004075static const struct wacom_features wacom_features_0xED =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004076 { "Wacom ISDv4 ED", 26202, 16325, 255, 0,
4077 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengac173832012-06-12 00:15:06 -07004078static const struct wacom_features wacom_features_0xEF =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004079 { "Wacom ISDv4 EF", 26202, 16325, 255, 0,
4080 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng6afdc282012-11-03 12:16:15 -07004081static const struct wacom_features wacom_features_0x100 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004082 { "Wacom ISDv4 100", 26202, 16325, 255, 0,
4083 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng6afdc282012-11-03 12:16:15 -07004084static const struct wacom_features wacom_features_0x101 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004085 { "Wacom ISDv4 101", 26202, 16325, 255, 0,
4086 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Stephan Frank58694832013-03-07 14:08:50 -08004087static const struct wacom_features wacom_features_0x10D =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004088 { "Wacom ISDv4 10D", 26202, 16325, 255, 0,
4089 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecke2d3163f2013-10-22 15:35:30 -07004090static const struct wacom_features wacom_features_0x10E =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004091 { "Wacom ISDv4 10E", 27760, 15694, 255, 0,
4092 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecke9b4f60e2013-10-15 23:46:34 -07004093static const struct wacom_features wacom_features_0x10F =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004094 { "Wacom ISDv4 10F", 27760, 15694, 255, 0,
4095 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecke61616ed2014-05-14 11:42:22 -07004096static const struct wacom_features wacom_features_0x116 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004097 { "Wacom ISDv4 116", 26202, 16325, 255, 0,
4098 TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gereckeaeaf50d2014-07-28 10:53:16 -07004099static const struct wacom_features wacom_features_0x12C =
4100 { "Wacom ISDv4 12C", 27848, 15752, 2047, 0,
4101 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengedbe2652012-11-21 13:12:50 -08004102static const struct wacom_features wacom_features_0x4001 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004103 { "Wacom ISDv4 4001", 26202, 16325, 255, 0,
4104 MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecked51ddb22014-05-14 17:14:29 -07004105static const struct wacom_features wacom_features_0x4004 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004106 { "Wacom ISDv4 4004", 11060, 6220, 255, 0,
4107 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecked51ddb22014-05-14 17:14:29 -07004108static const struct wacom_features wacom_features_0x5000 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004109 { "Wacom ISDv4 5000", 27848, 15752, 1023, 0,
4110 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Jason Gerecked51ddb22014-05-14 17:14:29 -07004111static const struct wacom_features wacom_features_0x5002 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004112 { "Wacom ISDv4 5002", 29576, 16724, 1023, 0,
4113 MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Dmitry Torokhove87a3442010-02-18 01:51:47 -08004114static const struct wacom_features wacom_features_0x47 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004115 { "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
4116 INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Chris Bagwelld3825d52012-03-25 23:26:11 -07004117static const struct wacom_features wacom_features_0x84 =
Ping Cheng3b164a02015-09-23 09:59:10 -07004118 { "Wacom Wireless Receiver", .type = WIRELESS, .touch_max = 16 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07004119static const struct wacom_features wacom_features_0xD0 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004120 { "Wacom Bamboo 2FG", 14720, 9200, 1023, 31,
Ping Cheng3b164a02015-09-23 09:59:10 -07004121 BAMBOO_TOUCH, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07004122static const struct wacom_features wacom_features_0xD1 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004123 { "Wacom Bamboo 2FG 4x5", 14720, 9200, 1023, 31,
4124 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07004125static const struct wacom_features wacom_features_0xD2 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004126 { "Wacom Bamboo Craft", 14720, 9200, 1023, 31,
4127 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07004128static const struct wacom_features wacom_features_0xD3 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004129 { "Wacom Bamboo 2FG 6x8", 21648, 13700, 1023, 31,
4130 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Kevin Granade57a78722010-12-10 23:04:02 -08004131static const struct wacom_features wacom_features_0xD4 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004132 { "Wacom Bamboo Pen", 14720, 9200, 1023, 31,
Ping Cheng3b164a02015-09-23 09:59:10 -07004133 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Gerard Braad18adad12011-08-16 00:17:56 -07004134static const struct wacom_features wacom_features_0xD5 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004135 { "Wacom Bamboo Pen 6x8", 21648, 13700, 1023, 31,
Ping Cheng3b164a02015-09-23 09:59:10 -07004136 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Cheng7b824bb2011-03-26 21:16:04 -07004137static const struct wacom_features wacom_features_0xD6 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004138 { "Wacom BambooPT 2FG 4x5", 14720, 9200, 1023, 31,
4139 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07004140static const struct wacom_features wacom_features_0xD7 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004141 { "Wacom BambooPT 2FG Small", 14720, 9200, 1023, 31,
4142 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07004143static const struct wacom_features wacom_features_0xD8 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004144 { "Wacom Bamboo Comic 2FG", 21648, 13700, 1023, 31,
4145 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Cheng7b824bb2011-03-26 21:16:04 -07004146static const struct wacom_features wacom_features_0xDA =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004147 { "Wacom Bamboo 2FG 4x5 SE", 14720, 9200, 1023, 31,
4148 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Ping Chengf41a64e2013-08-21 09:14:49 -07004149static const struct wacom_features wacom_features_0xDB =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004150 { "Wacom Bamboo 2FG 6x8 SE", 21648, 13700, 1023, 31,
4151 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
Chris Bagwell73149ab2011-10-26 22:34:21 -07004152static const struct wacom_features wacom_features_0xDD =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004153 { "Wacom Bamboo Connect", 14720, 9200, 1023, 31,
4154 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Chris Bagwell73149ab2011-10-26 22:34:21 -07004155static const struct wacom_features wacom_features_0xDE =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004156 { "Wacom Bamboo 16FG 4x5", 14720, 9200, 1023, 31,
4157 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
Chris Bagwell73149ab2011-10-26 22:34:21 -07004158static const struct wacom_features wacom_features_0xDF =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004159 { "Wacom Bamboo 16FG 6x8", 21648, 13700, 1023, 31,
4160 BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
Ping Chengf41a64e2013-08-21 09:14:49 -07004161static const struct wacom_features wacom_features_0x300 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004162 { "Wacom Bamboo One S", 14720, 9225, 1023, 31,
Ping Cheng3b164a02015-09-23 09:59:10 -07004163 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengf41a64e2013-08-21 09:14:49 -07004164static const struct wacom_features wacom_features_0x301 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004165 { "Wacom Bamboo One M", 21648, 13530, 1023, 31,
Aaron Armstrong Skomrab79cbc52017-03-29 13:07:36 -07004166 BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Ping Chengb5fd2a32013-11-25 18:44:55 -08004167static const struct wacom_features wacom_features_0x302 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004168 { "Wacom Intuos PT S", 15200, 9500, 1023, 31,
4169 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004170 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Chengb5fd2a32013-11-25 18:44:55 -08004171static const struct wacom_features wacom_features_0x303 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004172 { "Wacom Intuos PT M", 21600, 13500, 1023, 31,
4173 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004174 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Chengb5fd2a32013-11-25 18:44:55 -08004175static const struct wacom_features wacom_features_0x30E =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004176 { "Wacom Intuos S", 15200, 9500, 1023, 31,
4177 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004178 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08004179static const struct wacom_features wacom_features_0x6004 =
Benjamin Tissoires80befa92014-07-24 13:05:19 -07004180 { "ISD-V4", 12800, 8000, 255, 0,
4181 TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004182static const struct wacom_features wacom_features_0x307 =
Jason Gereckee779ef22016-10-19 18:03:49 -07004183 { "Wacom ISDv5 307", 59552, 33848, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07004184 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
Ping Chengfa770342014-12-01 13:44:28 -08004185 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07004186 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gerecke36d3c512013-09-20 09:47:35 -07004187 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x309 };
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004188static const struct wacom_features wacom_features_0x309 =
Jason Gerecke36d3c512013-09-20 09:47:35 -07004189 { "Wacom ISDv5 309", .type = WACOM_24HDT, /* Touch */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004190 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x0307, .touch_max = 10,
4191 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Benjamin Tissoires89f2ab52014-09-03 15:43:25 -04004192static const struct wacom_features wacom_features_0x30A =
Jason Gereckee779ef22016-10-19 18:03:49 -07004193 { "Wacom ISDv5 30A", 59552, 33848, 2047, 63,
Aaron Skomra70ee06c2015-08-20 16:05:16 -07004194 CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
Ping Chengfa770342014-12-01 13:44:28 -08004195 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07004196 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Benjamin Tissoires89f2ab52014-09-03 15:43:25 -04004197 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30C };
4198static const struct wacom_features wacom_features_0x30C =
4199 { "Wacom ISDv5 30C", .type = WACOM_24HDT, /* Touch */
4200 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30A, .touch_max = 10,
4201 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05004202static const struct wacom_features wacom_features_0x318 =
4203 { "Wacom USB Bamboo PAD", 4095, 4095, /* Touch */
4204 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
4205static const struct wacom_features wacom_features_0x319 =
4206 { "Wacom Wireless Bamboo PAD", 4095, 4095, /* Touch */
4207 .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
Jason Gereckef7acb552015-10-13 10:03:49 -07004208static const struct wacom_features wacom_features_0x325 =
4209 { "Wacom ISDv5 325", 59552, 33848, 2047, 63,
4210 CINTIQ_COMPANION_2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 11,
4211 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckee779ef22016-10-19 18:03:49 -07004212 WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
Jason Gereckef7acb552015-10-13 10:03:49 -07004213 .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x326 };
4214static const struct wacom_features wacom_features_0x326 = /* Touch */
4215 { "Wacom ISDv5 326", .type = HID_GENERIC, .oVid = USB_VENDOR_ID_WACOM,
4216 .oPid = 0x325 };
Ping Chengfefb3912014-11-11 12:52:08 -08004217static const struct wacom_features wacom_features_0x323 =
4218 { "Wacom Intuos P M", 21600, 13500, 1023, 31,
4219 INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
4220 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Aaron Skomra72b236d2015-08-20 16:05:17 -07004221static const struct wacom_features wacom_features_0x331 =
Ping Cheng3b164a02015-09-23 09:59:10 -07004222 { "Wacom Express Key Remote", .type = REMOTE,
4223 .numbered_buttons = 18, .check_for_hid_type = true,
Aaron Skomra72b236d2015-08-20 16:05:17 -07004224 .hid_type = HID_TYPE_USBNONE };
Ping Chengeda01da2015-09-23 13:51:15 -07004225static const struct wacom_features wacom_features_0x33B =
4226 { "Wacom Intuos S 2", 15200, 9500, 2047, 63,
4227 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
4228 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
4229static const struct wacom_features wacom_features_0x33C =
4230 { "Wacom Intuos PT S 2", 15200, 9500, 2047, 63,
4231 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
4232 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
4233static const struct wacom_features wacom_features_0x33D =
4234 { "Wacom Intuos P M 2", 21600, 13500, 2047, 63,
4235 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
4236 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
4237static const struct wacom_features wacom_features_0x33E =
4238 { "Wacom Intuos PT M 2", 21600, 13500, 2047, 63,
4239 INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
4240 .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
Ping Chenge1123fe2016-04-12 13:37:45 -07004241static const struct wacom_features wacom_features_0x343 =
Jason Gereckee779ef22016-10-19 18:03:49 -07004242 { "Wacom DTK1651", 34816, 19759, 1023, 0,
Ping Chenge1123fe2016-04-12 13:37:45 -07004243 DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
Jason Gereckee779ef22016-10-19 18:03:49 -07004244 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET,
Ping Chenge1123fe2016-04-12 13:37:45 -07004245 WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
Jason Gerecke4922cd22017-01-25 12:08:37 -08004246static const struct wacom_features wacom_features_0x360 =
4247 { "Wacom Intuos Pro M", 44800, 29600, 8191, 63,
4248 INTUOSP2_BT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 9, .touch_max = 10 };
4249static const struct wacom_features wacom_features_0x361 =
4250 { "Wacom Intuos Pro L", 62200, 43200, 8191, 63,
4251 INTUOSP2_BT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 9, .touch_max = 10 };
Bastian Blankb036f6f2010-02-10 23:06:23 -08004252
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04004253static const struct wacom_features wacom_features_HID_ANY_ID =
Jason Gerecke41372d52016-08-08 12:06:30 -07004254 { "Wacom HID", .type = HID_GENERIC, .oVid = HID_ANY_ID, .oPid = HID_ANY_ID };
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04004255
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004256#define USB_DEVICE_WACOM(prod) \
4257 HID_DEVICE(BUS_USB, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
4258 .driver_data = (kernel_ulong_t)&wacom_features_##prod
Bastian Blankb036f6f2010-02-10 23:06:23 -08004259
Benjamin Tissoires387142b2014-08-06 13:52:56 -07004260#define BT_DEVICE_WACOM(prod) \
4261 HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
4262 .driver_data = (kernel_ulong_t)&wacom_features_##prod
Aristeu Rozanski1483f552011-06-22 01:17:17 -07004263
Mika Westerbergeef23a82015-02-23 15:52:43 +02004264#define I2C_DEVICE_WACOM(prod) \
4265 HID_DEVICE(BUS_I2C, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
4266 .driver_data = (kernel_ulong_t)&wacom_features_##prod
4267
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08004268#define USB_DEVICE_LENOVO(prod) \
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004269 HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \
4270 .driver_data = (kernel_ulong_t)&wacom_features_##prod
Ajay Ramaswamy7b4b3062010-12-23 01:19:39 -08004271
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004272const struct hid_device_id wacom_ids[] = {
Bastian Blankb036f6f2010-02-10 23:06:23 -08004273 { USB_DEVICE_WACOM(0x00) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004274 { USB_DEVICE_WACOM(0x03) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08004275 { USB_DEVICE_WACOM(0x10) },
4276 { USB_DEVICE_WACOM(0x11) },
4277 { USB_DEVICE_WACOM(0x12) },
4278 { USB_DEVICE_WACOM(0x13) },
4279 { USB_DEVICE_WACOM(0x14) },
4280 { USB_DEVICE_WACOM(0x15) },
4281 { USB_DEVICE_WACOM(0x16) },
4282 { USB_DEVICE_WACOM(0x17) },
4283 { USB_DEVICE_WACOM(0x18) },
4284 { USB_DEVICE_WACOM(0x19) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08004285 { USB_DEVICE_WACOM(0x20) },
4286 { USB_DEVICE_WACOM(0x21) },
4287 { USB_DEVICE_WACOM(0x22) },
4288 { USB_DEVICE_WACOM(0x23) },
4289 { USB_DEVICE_WACOM(0x24) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004290 { USB_DEVICE_WACOM(0x26) },
4291 { USB_DEVICE_WACOM(0x27) },
4292 { USB_DEVICE_WACOM(0x28) },
4293 { USB_DEVICE_WACOM(0x29) },
4294 { USB_DEVICE_WACOM(0x2A) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08004295 { USB_DEVICE_WACOM(0x30) },
4296 { USB_DEVICE_WACOM(0x31) },
4297 { USB_DEVICE_WACOM(0x32) },
4298 { USB_DEVICE_WACOM(0x33) },
4299 { USB_DEVICE_WACOM(0x34) },
4300 { USB_DEVICE_WACOM(0x35) },
4301 { USB_DEVICE_WACOM(0x37) },
4302 { USB_DEVICE_WACOM(0x38) },
4303 { USB_DEVICE_WACOM(0x39) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004304 { USB_DEVICE_WACOM(0x3F) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08004305 { USB_DEVICE_WACOM(0x41) },
4306 { USB_DEVICE_WACOM(0x42) },
4307 { USB_DEVICE_WACOM(0x43) },
4308 { USB_DEVICE_WACOM(0x44) },
4309 { USB_DEVICE_WACOM(0x45) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004310 { USB_DEVICE_WACOM(0x47) },
Ping Cheng56218562013-05-05 19:56:18 -07004311 { USB_DEVICE_WACOM(0x57) },
Ping Chenga112e9f2013-02-13 20:20:01 -08004312 { USB_DEVICE_WACOM(0x59) },
Ping Cheng56218562013-05-05 19:56:18 -07004313 { USB_DEVICE_WACOM(0x5B) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004314 { USB_DEVICE_WACOM(0x5D) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004315 { USB_DEVICE_WACOM(0x5E) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004316 { USB_DEVICE_WACOM(0x60) },
4317 { USB_DEVICE_WACOM(0x61) },
4318 { USB_DEVICE_WACOM(0x62) },
4319 { USB_DEVICE_WACOM(0x63) },
4320 { USB_DEVICE_WACOM(0x64) },
4321 { USB_DEVICE_WACOM(0x65) },
4322 { USB_DEVICE_WACOM(0x69) },
4323 { USB_DEVICE_WACOM(0x6A) },
4324 { USB_DEVICE_WACOM(0x6B) },
Benjamin Tissoires387142b2014-08-06 13:52:56 -07004325 { BT_DEVICE_WACOM(0x81) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004326 { USB_DEVICE_WACOM(0x84) },
4327 { USB_DEVICE_WACOM(0x90) },
4328 { USB_DEVICE_WACOM(0x93) },
4329 { USB_DEVICE_WACOM(0x97) },
4330 { USB_DEVICE_WACOM(0x9A) },
4331 { USB_DEVICE_WACOM(0x9F) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08004332 { USB_DEVICE_WACOM(0xB0) },
4333 { USB_DEVICE_WACOM(0xB1) },
4334 { USB_DEVICE_WACOM(0xB2) },
4335 { USB_DEVICE_WACOM(0xB3) },
4336 { USB_DEVICE_WACOM(0xB4) },
4337 { USB_DEVICE_WACOM(0xB5) },
4338 { USB_DEVICE_WACOM(0xB7) },
4339 { USB_DEVICE_WACOM(0xB8) },
4340 { USB_DEVICE_WACOM(0xB9) },
4341 { USB_DEVICE_WACOM(0xBA) },
4342 { USB_DEVICE_WACOM(0xBB) },
Ping Cheng3a4b4aa2010-06-03 22:10:21 -07004343 { USB_DEVICE_WACOM(0xBC) },
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07004344 { BT_DEVICE_WACOM(0xBD) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004345 { USB_DEVICE_WACOM(0xC0) },
4346 { USB_DEVICE_WACOM(0xC2) },
4347 { USB_DEVICE_WACOM(0xC4) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08004348 { USB_DEVICE_WACOM(0xC5) },
4349 { USB_DEVICE_WACOM(0xC6) },
4350 { USB_DEVICE_WACOM(0xC7) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004351 { USB_DEVICE_WACOM(0xCC) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004352 { USB_DEVICE_WACOM(0xCE) },
Henrik Rydbergcb734c02010-09-05 12:53:16 -07004353 { USB_DEVICE_WACOM(0xD0) },
Chris Bagwell2aaacb12010-09-12 00:11:35 -07004354 { USB_DEVICE_WACOM(0xD1) },
4355 { USB_DEVICE_WACOM(0xD2) },
4356 { USB_DEVICE_WACOM(0xD3) },
Kevin Granade57a78722010-12-10 23:04:02 -08004357 { USB_DEVICE_WACOM(0xD4) },
Gerard Braad18adad12011-08-16 00:17:56 -07004358 { USB_DEVICE_WACOM(0xD5) },
Ping Chengd38acb42011-01-24 09:32:50 -08004359 { USB_DEVICE_WACOM(0xD6) },
4360 { USB_DEVICE_WACOM(0xD7) },
David Foleya318e6b2010-11-30 23:45:46 -08004361 { USB_DEVICE_WACOM(0xD8) },
4362 { USB_DEVICE_WACOM(0xDA) },
David Foley47d09232010-12-07 21:05:59 -08004363 { USB_DEVICE_WACOM(0xDB) },
Chris Bagwell73149ab2011-10-26 22:34:21 -07004364 { USB_DEVICE_WACOM(0xDD) },
4365 { USB_DEVICE_WACOM(0xDE) },
4366 { USB_DEVICE_WACOM(0xDF) },
Bastian Blankb036f6f2010-02-10 23:06:23 -08004367 { USB_DEVICE_WACOM(0xE2) },
4368 { USB_DEVICE_WACOM(0xE3) },
Ping Cheng19635182012-04-29 21:09:18 -07004369 { USB_DEVICE_WACOM(0xE5) },
Manoj Iyer26fcd2a2011-03-31 22:39:43 -07004370 { USB_DEVICE_WACOM(0xE6) },
Chris Bagwell0d0e3062011-12-11 23:50:59 -08004371 { USB_DEVICE_WACOM(0xEC) },
Ping Chengac173832012-06-12 00:15:06 -07004372 { USB_DEVICE_WACOM(0xED) },
4373 { USB_DEVICE_WACOM(0xEF) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004374 { USB_DEVICE_WACOM(0xF0) },
4375 { USB_DEVICE_WACOM(0xF4) },
4376 { USB_DEVICE_WACOM(0xF6) },
4377 { USB_DEVICE_WACOM(0xF8) },
4378 { USB_DEVICE_WACOM(0xFA) },
4379 { USB_DEVICE_WACOM(0xFB) },
Ping Cheng6afdc282012-11-03 12:16:15 -07004380 { USB_DEVICE_WACOM(0x100) },
4381 { USB_DEVICE_WACOM(0x101) },
Stephan Frank58694832013-03-07 14:08:50 -08004382 { USB_DEVICE_WACOM(0x10D) },
Jason Gerecke2d3163f2013-10-22 15:35:30 -07004383 { USB_DEVICE_WACOM(0x10E) },
Jason Gerecke9b4f60e2013-10-15 23:46:34 -07004384 { USB_DEVICE_WACOM(0x10F) },
Jason Gerecke61616ed2014-05-14 11:42:22 -07004385 { USB_DEVICE_WACOM(0x116) },
Jason Gereckeaeaf50d2014-07-28 10:53:16 -07004386 { USB_DEVICE_WACOM(0x12C) },
Ping Chengf41a64e2013-08-21 09:14:49 -07004387 { USB_DEVICE_WACOM(0x300) },
4388 { USB_DEVICE_WACOM(0x301) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004389 { USB_DEVICE_WACOM(0x302) },
4390 { USB_DEVICE_WACOM(0x303) },
Ping Cheng56218562013-05-05 19:56:18 -07004391 { USB_DEVICE_WACOM(0x304) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004392 { USB_DEVICE_WACOM(0x307) },
4393 { USB_DEVICE_WACOM(0x309) },
Benjamin Tissoires89f2ab52014-09-03 15:43:25 -04004394 { USB_DEVICE_WACOM(0x30A) },
4395 { USB_DEVICE_WACOM(0x30C) },
Benjamin Tissoiresa3e6f652014-07-24 13:05:49 -07004396 { USB_DEVICE_WACOM(0x30E) },
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004397 { USB_DEVICE_WACOM(0x314) },
4398 { USB_DEVICE_WACOM(0x315) },
4399 { USB_DEVICE_WACOM(0x317) },
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05004400 { USB_DEVICE_WACOM(0x318) },
4401 { USB_DEVICE_WACOM(0x319) },
Ping Chengfefb3912014-11-11 12:52:08 -08004402 { USB_DEVICE_WACOM(0x323) },
Jason Gereckef7acb552015-10-13 10:03:49 -07004403 { USB_DEVICE_WACOM(0x325) },
4404 { USB_DEVICE_WACOM(0x326) },
Ping Cheng500d4162015-01-27 13:30:03 -08004405 { USB_DEVICE_WACOM(0x32A) },
4406 { USB_DEVICE_WACOM(0x32B) },
4407 { USB_DEVICE_WACOM(0x32C) },
Ping Chengfff00bf2014-12-04 18:23:04 -08004408 { USB_DEVICE_WACOM(0x32F) },
Aaron Skomra72b236d2015-08-20 16:05:17 -07004409 { USB_DEVICE_WACOM(0x331) },
Ping Chengb4bf2122015-03-25 17:08:13 -07004410 { USB_DEVICE_WACOM(0x333) },
4411 { USB_DEVICE_WACOM(0x335) },
Aaron Skomra007760c2015-04-16 15:01:14 -07004412 { USB_DEVICE_WACOM(0x336) },
Ping Chengeda01da2015-09-23 13:51:15 -07004413 { USB_DEVICE_WACOM(0x33B) },
4414 { USB_DEVICE_WACOM(0x33C) },
4415 { USB_DEVICE_WACOM(0x33D) },
4416 { USB_DEVICE_WACOM(0x33E) },
Ping Chenge1123fe2016-04-12 13:37:45 -07004417 { USB_DEVICE_WACOM(0x343) },
Jason Gerecke4922cd22017-01-25 12:08:37 -08004418 { BT_DEVICE_WACOM(0x360) },
4419 { BT_DEVICE_WACOM(0x361) },
Ping Chengedbe2652012-11-21 13:12:50 -08004420 { USB_DEVICE_WACOM(0x4001) },
Jason Gerecked51ddb22014-05-14 17:14:29 -07004421 { USB_DEVICE_WACOM(0x4004) },
4422 { USB_DEVICE_WACOM(0x5000) },
4423 { USB_DEVICE_WACOM(0x5002) },
Benjamin Tissoires00d6f222014-12-01 11:52:39 -05004424 { USB_DEVICE_LENOVO(0x6004) },
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04004425
4426 { USB_DEVICE_WACOM(HID_ANY_ID) },
Mika Westerbergeef23a82015-02-23 15:52:43 +02004427 { I2C_DEVICE_WACOM(HID_ANY_ID) },
Jason Gereckeb9e06252017-01-25 12:08:35 -08004428 { BT_DEVICE_WACOM(HID_ANY_ID) },
Ping Cheng3bea7332006-07-13 18:01:36 -07004429 { }
4430};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07004431MODULE_DEVICE_TABLE(hid, wacom_ids);