• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * drivers/input/tablet/wacom_wac.c
3  *
4  *  USB Wacom tablet support - Wacom specific code
5  *
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  */
14 
15 #include "wacom_wac.h"
16 #include "wacom.h"
17 #include <linux/input/mt.h>
18 
19 /* 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 
27 /* 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 
31 /*
32  * Scale factor relating reported contact size to logical contact area.
33  * 2^14/pi is a good approximation on Intuos5 and 3rd-gen Bamboo
34  */
35 #define WACOM_CONTACT_AREA_SCALE 2607
36 
37 /*
38  * Percent of battery capacity for Graphire.
39  * 8th value means AC online and show 100% capacity.
40  */
41 static unsigned short batcap_gr[8] = { 1, 15, 25, 35, 50, 70, 100, 100 };
42 
43 /*
44  * Percent of battery capacity for Intuos4 WL, AC has a separate bit.
45  */
46 static unsigned short batcap_i4[8] = { 1, 15, 30, 45, 60, 70, 85, 100 };
47 
wacom_notify_battery(struct wacom_wac * wacom_wac,int bat_capacity,bool bat_charging,bool bat_connected,bool ps_connected)48 static void wacom_notify_battery(struct wacom_wac *wacom_wac,
49 	int bat_capacity, bool bat_charging, bool bat_connected,
50 	bool ps_connected)
51 {
52 	struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
53 	bool changed = wacom_wac->battery_capacity != bat_capacity  ||
54 		       wacom_wac->bat_charging     != bat_charging  ||
55 		       wacom_wac->bat_connected    != bat_connected ||
56 		       wacom_wac->ps_connected     != ps_connected;
57 
58 	if (changed) {
59 		wacom_wac->battery_capacity = bat_capacity;
60 		wacom_wac->bat_charging = bat_charging;
61 		wacom_wac->bat_connected = bat_connected;
62 		wacom_wac->ps_connected = ps_connected;
63 
64 		if (wacom->battery)
65 			power_supply_changed(wacom->battery);
66 	}
67 }
68 
wacom_penpartner_irq(struct wacom_wac * wacom)69 static int wacom_penpartner_irq(struct wacom_wac *wacom)
70 {
71 	unsigned char *data = wacom->data;
72 	struct input_dev *input = wacom->pen_input;
73 
74 	switch (data[0]) {
75 	case 1:
76 		if (data[5] & 0x80) {
77 			wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
78 			wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID;
79 			input_report_key(input, wacom->tool[0], 1);
80 			input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
81 			input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
82 			input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
83 			input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
84 			input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -127));
85 			input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
86 		} else {
87 			input_report_key(input, wacom->tool[0], 0);
88 			input_report_abs(input, ABS_MISC, 0); /* report tool id */
89 			input_report_abs(input, ABS_PRESSURE, -1);
90 			input_report_key(input, BTN_TOUCH, 0);
91 		}
92 		break;
93 
94 	case 2:
95 		input_report_key(input, BTN_TOOL_PEN, 1);
96 		input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */
97 		input_report_abs(input, ABS_X, get_unaligned_le16(&data[1]));
98 		input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3]));
99 		input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127);
100 		input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
101 		input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
102 		break;
103 
104 	default:
105 		dev_dbg(input->dev.parent,
106 			"%s: received unknown report #%d\n", __func__, data[0]);
107 		return 0;
108         }
109 
110 	return 1;
111 }
112 
wacom_pl_irq(struct wacom_wac * wacom)113 static int wacom_pl_irq(struct wacom_wac *wacom)
114 {
115 	struct wacom_features *features = &wacom->features;
116 	unsigned char *data = wacom->data;
117 	struct input_dev *input = wacom->pen_input;
118 	int prox, pressure;
119 
120 	if (data[0] != WACOM_REPORT_PENABLED) {
121 		dev_dbg(input->dev.parent,
122 			"%s: received unknown report #%d\n", __func__, data[0]);
123 		return 0;
124 	}
125 
126 	prox = data[1] & 0x40;
127 
128 	if (!wacom->id[0]) {
129 		if ((data[0] & 0x10) || (data[4] & 0x20)) {
130 			wacom->tool[0] = BTN_TOOL_RUBBER;
131 			wacom->id[0] = ERASER_DEVICE_ID;
132 		}
133 		else {
134 			wacom->tool[0] = BTN_TOOL_PEN;
135 			wacom->id[0] = STYLUS_DEVICE_ID;
136 		}
137 	}
138 
139 	/* If the eraser is in prox, STYLUS2 is always set. If we
140 	 * mis-detected the type and notice that STYLUS2 isn't set
141 	 * then force the eraser out of prox and let the pen in.
142 	 */
143 	if (wacom->tool[0] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) {
144 		input_report_key(input, BTN_TOOL_RUBBER, 0);
145 		input_report_abs(input, ABS_MISC, 0);
146 		input_sync(input);
147 		wacom->tool[0] = BTN_TOOL_PEN;
148 		wacom->id[0] = STYLUS_DEVICE_ID;
149 	}
150 
151 	if (prox) {
152 		pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1));
153 		if (features->pressure_max > 255)
154 			pressure = (pressure << 1) | ((data[4] >> 6) & 1);
155 		pressure += (features->pressure_max + 1) / 2;
156 
157 		input_report_abs(input, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14));
158 		input_report_abs(input, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14));
159 		input_report_abs(input, ABS_PRESSURE, pressure);
160 
161 		input_report_key(input, BTN_TOUCH, data[4] & 0x08);
162 		input_report_key(input, BTN_STYLUS, data[4] & 0x10);
163 		/* Only allow the stylus2 button to be reported for the pen tool. */
164 		input_report_key(input, BTN_STYLUS2, (wacom->tool[0] == BTN_TOOL_PEN) && (data[4] & 0x20));
165 	}
166 
167 	if (!prox)
168 		wacom->id[0] = 0;
169 	input_report_key(input, wacom->tool[0], prox);
170 	input_report_abs(input, ABS_MISC, wacom->id[0]);
171 	return 1;
172 }
173 
wacom_ptu_irq(struct wacom_wac * wacom)174 static int wacom_ptu_irq(struct wacom_wac *wacom)
175 {
176 	unsigned char *data = wacom->data;
177 	struct input_dev *input = wacom->pen_input;
178 
179 	if (data[0] != WACOM_REPORT_PENABLED) {
180 		dev_dbg(input->dev.parent,
181 			"%s: received unknown report #%d\n", __func__, data[0]);
182 		return 0;
183 	}
184 
185 	if (data[1] & 0x04) {
186 		input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
187 		input_report_key(input, BTN_TOUCH, data[1] & 0x08);
188 		wacom->id[0] = ERASER_DEVICE_ID;
189 	} else {
190 		input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
191 		input_report_key(input, BTN_TOUCH, data[1] & 0x01);
192 		wacom->id[0] = STYLUS_DEVICE_ID;
193 	}
194 	input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
195 	input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
196 	input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
197 	input_report_abs(input, ABS_PRESSURE, le16_to_cpup((__le16 *)&data[6]));
198 	input_report_key(input, BTN_STYLUS, data[1] & 0x02);
199 	input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
200 	return 1;
201 }
202 
wacom_dtu_irq(struct wacom_wac * wacom)203 static int wacom_dtu_irq(struct wacom_wac *wacom)
204 {
205 	unsigned char *data = wacom->data;
206 	struct input_dev *input = wacom->pen_input;
207 	int prox = data[1] & 0x20;
208 
209 	dev_dbg(input->dev.parent,
210 		"%s: received report #%d", __func__, data[0]);
211 
212 	if (prox) {
213 		/* Going into proximity select tool */
214 		wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
215 		if (wacom->tool[0] == BTN_TOOL_PEN)
216 			wacom->id[0] = STYLUS_DEVICE_ID;
217 		else
218 			wacom->id[0] = ERASER_DEVICE_ID;
219 	}
220 	input_report_key(input, BTN_STYLUS, data[1] & 0x02);
221 	input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
222 	input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
223 	input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
224 	input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x01) << 8) | data[6]);
225 	input_report_key(input, BTN_TOUCH, data[1] & 0x05);
226 	if (!prox) /* out-prox */
227 		wacom->id[0] = 0;
228 	input_report_key(input, wacom->tool[0], prox);
229 	input_report_abs(input, ABS_MISC, wacom->id[0]);
230 	return 1;
231 }
232 
wacom_dtus_irq(struct wacom_wac * wacom)233 static int wacom_dtus_irq(struct wacom_wac *wacom)
234 {
235 	char *data = wacom->data;
236 	struct input_dev *input = wacom->pen_input;
237 	unsigned short prox, pressure = 0;
238 
239 	if (data[0] != WACOM_REPORT_DTUS && data[0] != WACOM_REPORT_DTUSPAD) {
240 		dev_dbg(input->dev.parent,
241 			"%s: received unknown report #%d", __func__, data[0]);
242 		return 0;
243 	} else if (data[0] == WACOM_REPORT_DTUSPAD) {
244 		input = wacom->pad_input;
245 		input_report_key(input, BTN_0, (data[1] & 0x01));
246 		input_report_key(input, BTN_1, (data[1] & 0x02));
247 		input_report_key(input, BTN_2, (data[1] & 0x04));
248 		input_report_key(input, BTN_3, (data[1] & 0x08));
249 		input_report_abs(input, ABS_MISC,
250 				 data[1] & 0x0f ? PAD_DEVICE_ID : 0);
251 		return 1;
252 	} else {
253 		prox = data[1] & 0x80;
254 		if (prox) {
255 			switch ((data[1] >> 3) & 3) {
256 			case 1: /* Rubber */
257 				wacom->tool[0] = BTN_TOOL_RUBBER;
258 				wacom->id[0] = ERASER_DEVICE_ID;
259 				break;
260 
261 			case 2: /* Pen */
262 				wacom->tool[0] = BTN_TOOL_PEN;
263 				wacom->id[0] = STYLUS_DEVICE_ID;
264 				break;
265 			}
266 		}
267 
268 		input_report_key(input, BTN_STYLUS, data[1] & 0x20);
269 		input_report_key(input, BTN_STYLUS2, data[1] & 0x40);
270 		input_report_abs(input, ABS_X, get_unaligned_be16(&data[3]));
271 		input_report_abs(input, ABS_Y, get_unaligned_be16(&data[5]));
272 		pressure = ((data[1] & 0x03) << 8) | (data[2] & 0xff);
273 		input_report_abs(input, ABS_PRESSURE, pressure);
274 		input_report_key(input, BTN_TOUCH, pressure > 10);
275 
276 		if (!prox) /* out-prox */
277 			wacom->id[0] = 0;
278 		input_report_key(input, wacom->tool[0], prox);
279 		input_report_abs(input, ABS_MISC, wacom->id[0]);
280 		return 1;
281 	}
282 }
283 
wacom_graphire_irq(struct wacom_wac * wacom)284 static int wacom_graphire_irq(struct wacom_wac *wacom)
285 {
286 	struct wacom_features *features = &wacom->features;
287 	unsigned char *data = wacom->data;
288 	struct input_dev *input = wacom->pen_input;
289 	struct input_dev *pad_input = wacom->pad_input;
290 	int battery_capacity, ps_connected;
291 	int prox;
292 	int rw = 0;
293 	int retval = 0;
294 
295 	if (features->type == GRAPHIRE_BT) {
296 		if (data[0] != WACOM_REPORT_PENABLED_BT) {
297 			dev_dbg(input->dev.parent,
298 				"%s: received unknown report #%d\n", __func__,
299 				data[0]);
300 			goto exit;
301 		}
302 	} else if (data[0] != WACOM_REPORT_PENABLED) {
303 		dev_dbg(input->dev.parent,
304 			"%s: received unknown report #%d\n", __func__, data[0]);
305 		goto exit;
306 	}
307 
308 	prox = data[1] & 0x80;
309 	if (prox || wacom->id[0]) {
310 		if (prox) {
311 			switch ((data[1] >> 5) & 3) {
312 
313 			case 0:	/* Pen */
314 				wacom->tool[0] = BTN_TOOL_PEN;
315 				wacom->id[0] = STYLUS_DEVICE_ID;
316 				break;
317 
318 			case 1: /* Rubber */
319 				wacom->tool[0] = BTN_TOOL_RUBBER;
320 				wacom->id[0] = ERASER_DEVICE_ID;
321 				break;
322 
323 			case 2: /* Mouse with wheel */
324 				input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
325 				/* fall through */
326 
327 			case 3: /* Mouse without wheel */
328 				wacom->tool[0] = BTN_TOOL_MOUSE;
329 				wacom->id[0] = CURSOR_DEVICE_ID;
330 				break;
331 			}
332 		}
333 		input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
334 		input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
335 		if (wacom->tool[0] != BTN_TOOL_MOUSE) {
336 			if (features->type == GRAPHIRE_BT)
337 				input_report_abs(input, ABS_PRESSURE, data[6] |
338 					(((__u16) (data[1] & 0x08)) << 5));
339 			else
340 				input_report_abs(input, ABS_PRESSURE, data[6] |
341 					((data[7] & 0x03) << 8));
342 			input_report_key(input, BTN_TOUCH, data[1] & 0x01);
343 			input_report_key(input, BTN_STYLUS, data[1] & 0x02);
344 			input_report_key(input, BTN_STYLUS2, data[1] & 0x04);
345 		} else {
346 			input_report_key(input, BTN_LEFT, data[1] & 0x01);
347 			input_report_key(input, BTN_RIGHT, data[1] & 0x02);
348 			if (features->type == WACOM_G4 ||
349 					features->type == WACOM_MO) {
350 				input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f);
351 				rw = (data[7] & 0x04) - (data[7] & 0x03);
352 			} else if (features->type == GRAPHIRE_BT) {
353 				/* Compute distance between mouse and tablet */
354 				rw = 44 - (data[6] >> 2);
355 				rw = clamp_val(rw, 0, 31);
356 				input_report_abs(input, ABS_DISTANCE, rw);
357 				if (((data[1] >> 5) & 3) == 2) {
358 					/* Mouse with wheel */
359 					input_report_key(input, BTN_MIDDLE,
360 							data[1] & 0x04);
361 					rw = (data[6] & 0x01) ? -1 :
362 						(data[6] & 0x02) ? 1 : 0;
363 				} else {
364 					rw = 0;
365 				}
366 			} else {
367 				input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f);
368 				rw = -(signed char)data[6];
369 			}
370 			input_report_rel(input, REL_WHEEL, rw);
371 		}
372 
373 		if (!prox)
374 			wacom->id[0] = 0;
375 		input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */
376 		input_report_key(input, wacom->tool[0], prox);
377 		input_sync(input); /* sync last event */
378 	}
379 
380 	/* send pad data */
381 	switch (features->type) {
382 	case WACOM_G4:
383 		prox = data[7] & 0xf8;
384 		if (prox || wacom->id[1]) {
385 			wacom->id[1] = PAD_DEVICE_ID;
386 			input_report_key(pad_input, BTN_BACK, (data[7] & 0x40));
387 			input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x80));
388 			rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3);
389 			input_report_rel(pad_input, REL_WHEEL, rw);
390 			if (!prox)
391 				wacom->id[1] = 0;
392 			input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
393 			retval = 1;
394 		}
395 		break;
396 
397 	case WACOM_MO:
398 		prox = (data[7] & 0xf8) || data[8];
399 		if (prox || wacom->id[1]) {
400 			wacom->id[1] = PAD_DEVICE_ID;
401 			input_report_key(pad_input, BTN_BACK, (data[7] & 0x08));
402 			input_report_key(pad_input, BTN_LEFT, (data[7] & 0x20));
403 			input_report_key(pad_input, BTN_FORWARD, (data[7] & 0x10));
404 			input_report_key(pad_input, BTN_RIGHT, (data[7] & 0x40));
405 			input_report_abs(pad_input, ABS_WHEEL, (data[8] & 0x7f));
406 			if (!prox)
407 				wacom->id[1] = 0;
408 			input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
409 			retval = 1;
410 		}
411 		break;
412 	case GRAPHIRE_BT:
413 		prox = data[7] & 0x03;
414 		if (prox || wacom->id[1]) {
415 			wacom->id[1] = PAD_DEVICE_ID;
416 			input_report_key(pad_input, BTN_0, (data[7] & 0x02));
417 			input_report_key(pad_input, BTN_1, (data[7] & 0x01));
418 			if (!prox)
419 				wacom->id[1] = 0;
420 			input_report_abs(pad_input, ABS_MISC, wacom->id[1]);
421 			retval = 1;
422 		}
423 		break;
424 	}
425 
426 	/* Store current battery capacity and power supply state */
427 	if (features->type == GRAPHIRE_BT) {
428 		rw = (data[7] >> 2 & 0x07);
429 		battery_capacity = batcap_gr[rw];
430 		ps_connected = rw == 7;
431 		wacom_notify_battery(wacom, battery_capacity, ps_connected,
432 				     1, ps_connected);
433 	}
434 exit:
435 	return retval;
436 }
437 
wacom_intuos_schedule_prox_event(struct wacom_wac * wacom_wac)438 static void wacom_intuos_schedule_prox_event(struct wacom_wac *wacom_wac)
439 {
440 	struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
441 	struct hid_report *r;
442 	struct hid_report_enum *re;
443 
444 	re = &(wacom->hdev->report_enum[HID_FEATURE_REPORT]);
445 	r = re->report_id_hash[WACOM_REPORT_INTUOSREAD];
446 	if (r) {
447 		hid_hw_request(wacom->hdev, r, HID_REQ_GET_REPORT);
448 	}
449 }
450 
wacom_intuos_inout(struct wacom_wac * wacom)451 static int wacom_intuos_inout(struct wacom_wac *wacom)
452 {
453 	struct wacom_features *features = &wacom->features;
454 	unsigned char *data = wacom->data;
455 	struct input_dev *input = wacom->pen_input;
456 	int idx = 0;
457 
458 	/* tool number */
459 	if (features->type == INTUOS)
460 		idx = data[1] & 0x01;
461 
462 	/* Enter report */
463 	if ((data[1] & 0xfc) == 0xc0) {
464 		/* serial number of the tool */
465 		wacom->serial[idx] = ((data[3] & 0x0f) << 28) +
466 			(data[4] << 20) + (data[5] << 12) +
467 			(data[6] << 4) + (data[7] >> 4);
468 
469 		wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) |
470 			((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12);
471 
472 		switch (wacom->id[idx]) {
473 		case 0x812: /* Inking pen */
474 		case 0x801: /* Intuos3 Inking pen */
475 		case 0x120802: /* Intuos4/5 Inking Pen */
476 		case 0x012:
477 			wacom->tool[idx] = BTN_TOOL_PENCIL;
478 			break;
479 
480 		case 0x822: /* Pen */
481 		case 0x842:
482 		case 0x852:
483 		case 0x823: /* Intuos3 Grip Pen */
484 		case 0x813: /* Intuos3 Classic Pen */
485 		case 0x885: /* Intuos3 Marker Pen */
486 		case 0x802: /* Intuos4/5 13HD/24HD General Pen */
487 		case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */
488 		case 0x022:
489 		case 0x100804: /* Intuos4/5 13HD/24HD Art Pen */
490 		case 0x140802: /* Intuos4/5 13HD/24HD Classic Pen */
491 		case 0x160802: /* Cintiq 13HD Pro Pen */
492 		case 0x180802: /* DTH2242 Pen */
493 		case 0x100802: /* Intuos4/5 13HD/24HD General Pen */
494 			wacom->tool[idx] = BTN_TOOL_PEN;
495 			break;
496 
497 		case 0x832: /* Stroke pen */
498 		case 0x032:
499 			wacom->tool[idx] = BTN_TOOL_BRUSH;
500 			break;
501 
502 		case 0x007: /* Mouse 4D and 2D */
503 		case 0x09c:
504 		case 0x094:
505 		case 0x017: /* Intuos3 2D Mouse */
506 		case 0x806: /* Intuos4 Mouse */
507 			wacom->tool[idx] = BTN_TOOL_MOUSE;
508 			break;
509 
510 		case 0x096: /* Lens cursor */
511 		case 0x097: /* Intuos3 Lens cursor */
512 		case 0x006: /* Intuos4 Lens cursor */
513 			wacom->tool[idx] = BTN_TOOL_LENS;
514 			break;
515 
516 		case 0x82a: /* Eraser */
517 		case 0x85a:
518 		case 0x91a:
519 		case 0xd1a:
520 		case 0x0fa:
521 		case 0x82b: /* Intuos3 Grip Pen Eraser */
522 		case 0x81b: /* Intuos3 Classic Pen Eraser */
523 		case 0x91b: /* Intuos3 Airbrush Eraser */
524 		case 0x80c: /* Intuos4/5 13HD/24HD Marker Pen Eraser */
525 		case 0x80a: /* Intuos4/5 13HD/24HD General Pen Eraser */
526 		case 0x90a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
527 		case 0x14080a: /* Intuos4/5 13HD/24HD Classic Pen Eraser */
528 		case 0x10090a: /* Intuos4/5 13HD/24HD Airbrush Eraser */
529 		case 0x10080c: /* Intuos4/5 13HD/24HD Art Pen Eraser */
530 		case 0x16080a: /* Cintiq 13HD Pro Pen Eraser */
531 		case 0x18080a: /* DTH2242 Eraser */
532 		case 0x10080a: /* Intuos4/5 13HD/24HD General Pen Eraser */
533 			wacom->tool[idx] = BTN_TOOL_RUBBER;
534 			break;
535 
536 		case 0xd12:
537 		case 0x912:
538 		case 0x112:
539 		case 0x913: /* Intuos3 Airbrush */
540 		case 0x902: /* Intuos4/5 13HD/24HD Airbrush */
541 		case 0x100902: /* Intuos4/5 13HD/24HD Airbrush */
542 			wacom->tool[idx] = BTN_TOOL_AIRBRUSH;
543 			break;
544 
545 		default: /* Unknown tool */
546 			wacom->tool[idx] = BTN_TOOL_PEN;
547 			break;
548 		}
549 		return 1;
550 	}
551 
552 	/*
553 	 * don't report events for invalid data
554 	 */
555 	/* older I4 styli don't work with new Cintiqs */
556 	if ((!((wacom->id[idx] >> 20) & 0x01) &&
557 			(features->type == WACOM_21UX2)) ||
558 	    /* Only large Intuos support Lense Cursor */
559 	    (wacom->tool[idx] == BTN_TOOL_LENS &&
560 		(features->type == INTUOS3 ||
561 		 features->type == INTUOS3S ||
562 		 features->type == INTUOS4 ||
563 		 features->type == INTUOS4S ||
564 		 features->type == INTUOS5 ||
565 		 features->type == INTUOS5S ||
566 		 features->type == INTUOSPM ||
567 		 features->type == INTUOSPS)) ||
568 	   /* Cintiq doesn't send data when RDY bit isn't set */
569 	   (features->type == CINTIQ && !(data[1] & 0x40)))
570 		return 1;
571 
572 	wacom->shared->stylus_in_proximity = true;
573 	if (wacom->shared->touch_down)
574 		return 1;
575 
576 	/* in Range while exiting */
577 	if (((data[1] & 0xfe) == 0x20) && wacom->reporting_data) {
578 		input_report_key(input, BTN_TOUCH, 0);
579 		input_report_abs(input, ABS_PRESSURE, 0);
580 		input_report_abs(input, ABS_DISTANCE, wacom->features.distance_max);
581 		return 2;
582 	}
583 
584 	/* Exit report */
585 	if ((data[1] & 0xfe) == 0x80) {
586 		wacom->shared->stylus_in_proximity = false;
587 		wacom->reporting_data = false;
588 
589 		/* don't report exit if we don't know the ID */
590 		if (!wacom->id[idx])
591 			return 1;
592 
593 		/*
594 		 * Reset all states otherwise we lose the initial states
595 		 * when in-prox next time
596 		 */
597 		input_report_abs(input, ABS_X, 0);
598 		input_report_abs(input, ABS_Y, 0);
599 		input_report_abs(input, ABS_DISTANCE, 0);
600 		input_report_abs(input, ABS_TILT_X, 0);
601 		input_report_abs(input, ABS_TILT_Y, 0);
602 		if (wacom->tool[idx] >= BTN_TOOL_MOUSE) {
603 			input_report_key(input, BTN_LEFT, 0);
604 			input_report_key(input, BTN_MIDDLE, 0);
605 			input_report_key(input, BTN_RIGHT, 0);
606 			input_report_key(input, BTN_SIDE, 0);
607 			input_report_key(input, BTN_EXTRA, 0);
608 			input_report_abs(input, ABS_THROTTLE, 0);
609 			input_report_abs(input, ABS_RZ, 0);
610 		} else {
611 			input_report_abs(input, ABS_PRESSURE, 0);
612 			input_report_key(input, BTN_STYLUS, 0);
613 			input_report_key(input, BTN_STYLUS2, 0);
614 			input_report_key(input, BTN_TOUCH, 0);
615 			input_report_abs(input, ABS_WHEEL, 0);
616 			if (features->type >= INTUOS3S)
617 				input_report_abs(input, ABS_Z, 0);
618 		}
619 		input_report_key(input, wacom->tool[idx], 0);
620 		input_report_abs(input, ABS_MISC, 0); /* reset tool id */
621 		input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
622 		wacom->id[idx] = 0;
623 		return 2;
624 	}
625 
626 	/* don't report other events if we don't know the ID */
627 	if (!wacom->id[idx]) {
628 		/* but reschedule a read of the current tool */
629 		wacom_intuos_schedule_prox_event(wacom);
630 		return 1;
631 	}
632 
633 	return 0;
634 }
635 
wacom_remote_irq(struct wacom_wac * wacom_wac,size_t len)636 static int wacom_remote_irq(struct wacom_wac *wacom_wac, size_t len)
637 {
638 	unsigned char *data = wacom_wac->data;
639 	struct input_dev *input = wacom_wac->pad_input;
640 	struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
641 	struct wacom_features *features = &wacom_wac->features;
642 	int bat_charging, bat_percent, touch_ring_mode;
643 	__u32 serial;
644 	int i;
645 
646 	if (data[0] != WACOM_REPORT_REMOTE) {
647 		dev_dbg(input->dev.parent,
648 			"%s: received unknown report #%d", __func__, data[0]);
649 		return 0;
650 	}
651 
652 	serial = data[3] + (data[4] << 8) + (data[5] << 16);
653 	wacom_wac->id[0] = PAD_DEVICE_ID;
654 
655 	input_report_key(input, BTN_0, (data[9] & 0x01));
656 	input_report_key(input, BTN_1, (data[9] & 0x02));
657 	input_report_key(input, BTN_2, (data[9] & 0x04));
658 	input_report_key(input, BTN_3, (data[9] & 0x08));
659 	input_report_key(input, BTN_4, (data[9] & 0x10));
660 	input_report_key(input, BTN_5, (data[9] & 0x20));
661 	input_report_key(input, BTN_6, (data[9] & 0x40));
662 	input_report_key(input, BTN_7, (data[9] & 0x80));
663 
664 	input_report_key(input, BTN_8, (data[10] & 0x01));
665 	input_report_key(input, BTN_9, (data[10] & 0x02));
666 	input_report_key(input, BTN_A, (data[10] & 0x04));
667 	input_report_key(input, BTN_B, (data[10] & 0x08));
668 	input_report_key(input, BTN_C, (data[10] & 0x10));
669 	input_report_key(input, BTN_X, (data[10] & 0x20));
670 	input_report_key(input, BTN_Y, (data[10] & 0x40));
671 	input_report_key(input, BTN_Z, (data[10] & 0x80));
672 
673 	input_report_key(input, BTN_BASE, (data[11] & 0x01));
674 	input_report_key(input, BTN_BASE2, (data[11] & 0x02));
675 
676 	if (data[12] & 0x80)
677 		input_report_abs(input, ABS_WHEEL, (data[12] & 0x7f) - 1);
678 	else
679 		input_report_abs(input, ABS_WHEEL, 0);
680 
681 	bat_percent = data[7] & 0x7f;
682 	bat_charging = !!(data[7] & 0x80);
683 
684 	if (data[9] | data[10] | (data[11] & 0x03) | data[12])
685 		input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
686 	else
687 		input_report_abs(input, ABS_MISC, 0);
688 
689 	input_event(input, EV_MSC, MSC_SERIAL, serial);
690 
691 	/*Which mode select (LED light) is currently on?*/
692 	touch_ring_mode = (data[11] & 0xC0) >> 6;
693 
694 	for (i = 0; i < WACOM_MAX_REMOTES; i++) {
695 		if (wacom_wac->serial[i] == serial)
696 			wacom->led.select[i] = touch_ring_mode;
697 	}
698 
699 	if (!wacom->battery &&
700 	    !(features->quirks & WACOM_QUIRK_BATTERY)) {
701 		features->quirks |= WACOM_QUIRK_BATTERY;
702 		INIT_WORK(&wacom->work, wacom_battery_work);
703 		wacom_schedule_work(wacom_wac);
704 	}
705 
706 	wacom_notify_battery(wacom_wac, bat_percent, bat_charging, 1,
707 			     bat_charging);
708 
709 	return 1;
710 }
711 
wacom_remote_status_irq(struct wacom_wac * wacom_wac,size_t len)712 static int wacom_remote_status_irq(struct wacom_wac *wacom_wac, size_t len)
713 {
714 	struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
715 	unsigned char *data = wacom_wac->data;
716 	int i;
717 
718 	if (data[0] != WACOM_REPORT_DEVICE_LIST)
719 		return 0;
720 
721 	for (i = 0; i < WACOM_MAX_REMOTES; i++) {
722 		int j = i * 6;
723 		int serial = (data[j+6] << 16) + (data[j+5] << 8) + data[j+4];
724 		bool connected = data[j+2];
725 
726 		if (connected) {
727 			int k;
728 
729 			if (wacom_wac->serial[i] == serial)
730 				continue;
731 
732 			if (wacom_wac->serial[i]) {
733 				wacom_remote_destroy_attr_group(wacom,
734 							wacom_wac->serial[i]);
735 			}
736 
737 			/* A remote can pair more than once with an EKR,
738 			 * check to make sure this serial isn't already paired.
739 			 */
740 			for (k = 0; k < WACOM_MAX_REMOTES; k++) {
741 				if (wacom_wac->serial[k] == serial)
742 					break;
743 			}
744 
745 			if (k < WACOM_MAX_REMOTES) {
746 				wacom_wac->serial[i] = serial;
747 				continue;
748 			}
749 			wacom_remote_create_attr_group(wacom, serial, i);
750 
751 		} else if (wacom_wac->serial[i]) {
752 			wacom_remote_destroy_attr_group(wacom,
753 							wacom_wac->serial[i]);
754 		}
755 	}
756 
757 	return 0;
758 }
759 
wacom_intuos_general(struct wacom_wac * wacom)760 static void wacom_intuos_general(struct wacom_wac *wacom)
761 {
762 	struct wacom_features *features = &wacom->features;
763 	unsigned char *data = wacom->data;
764 	struct input_dev *input = wacom->pen_input;
765 	unsigned int t;
766 
767 	/* general pen packet */
768 	if ((data[1] & 0xb8) == 0xa0) {
769 		t = (data[6] << 2) | ((data[7] >> 6) & 3);
770 		if (features->pressure_max == 2047) {
771 			t = (t << 1) | (data[1] & 1);
772 		}
773 		input_report_abs(input, ABS_PRESSURE, t);
774 		if (features->type != INTUOSHT2) {
775 		    input_report_abs(input, ABS_TILT_X,
776 				 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
777 		    input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
778 		}
779 		input_report_key(input, BTN_STYLUS, data[1] & 2);
780 		input_report_key(input, BTN_STYLUS2, data[1] & 4);
781 		input_report_key(input, BTN_TOUCH, t > 10);
782 	}
783 
784 	/* airbrush second packet */
785 	if ((data[1] & 0xbc) == 0xb4) {
786 		input_report_abs(input, ABS_WHEEL,
787 				(data[6] << 2) | ((data[7] >> 6) & 3));
788 		input_report_abs(input, ABS_TILT_X,
789 				 (((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
790 		input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
791 	}
792 }
793 
wacom_intuos_irq(struct wacom_wac * wacom)794 static int wacom_intuos_irq(struct wacom_wac *wacom)
795 {
796 	struct wacom_features *features = &wacom->features;
797 	unsigned char *data = wacom->data;
798 	struct input_dev *input = wacom->pen_input;
799 	unsigned int t;
800 	int idx = 0, result;
801 
802 	if (data[0] != WACOM_REPORT_PENABLED &&
803 	    data[0] != WACOM_REPORT_INTUOSREAD &&
804 	    data[0] != WACOM_REPORT_INTUOSWRITE &&
805 	    data[0] != WACOM_REPORT_INTUOSPAD &&
806 	    data[0] != WACOM_REPORT_INTUOS_PEN &&
807 	    data[0] != WACOM_REPORT_CINTIQ &&
808 	    data[0] != WACOM_REPORT_CINTIQPAD &&
809 	    data[0] != WACOM_REPORT_INTUOS5PAD) {
810 		dev_dbg(input->dev.parent,
811 			"%s: received unknown report #%d\n", __func__, data[0]);
812                 return 0;
813 	}
814 
815 	/* tool number */
816 	if (features->type == INTUOS)
817 		idx = data[1] & 0x01;
818 
819 	/* pad packets. Works as a second tool and is always in prox */
820 	if (data[0] == WACOM_REPORT_INTUOSPAD || data[0] == WACOM_REPORT_INTUOS5PAD ||
821 	    data[0] == WACOM_REPORT_CINTIQPAD) {
822 		input = wacom->pad_input;
823 		if (features->type >= INTUOS4S && features->type <= INTUOS4L) {
824 			input_report_key(input, BTN_0, (data[2] & 0x01));
825 			input_report_key(input, BTN_1, (data[3] & 0x01));
826 			input_report_key(input, BTN_2, (data[3] & 0x02));
827 			input_report_key(input, BTN_3, (data[3] & 0x04));
828 			input_report_key(input, BTN_4, (data[3] & 0x08));
829 			input_report_key(input, BTN_5, (data[3] & 0x10));
830 			input_report_key(input, BTN_6, (data[3] & 0x20));
831 			if (data[1] & 0x80) {
832 				input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
833 			} else {
834 				/* Out of proximity, clear wheel value. */
835 				input_report_abs(input, ABS_WHEEL, 0);
836 			}
837 			if (features->type != INTUOS4S) {
838 				input_report_key(input, BTN_7, (data[3] & 0x40));
839 				input_report_key(input, BTN_8, (data[3] & 0x80));
840 			}
841 			if (data[1] | (data[2] & 0x01) | data[3]) {
842 				input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
843 			} else {
844 				input_report_abs(input, ABS_MISC, 0);
845 			}
846 		} else if (features->type == DTK) {
847 			input_report_key(input, BTN_0, (data[6] & 0x01));
848 			input_report_key(input, BTN_1, (data[6] & 0x02));
849 			input_report_key(input, BTN_2, (data[6] & 0x04));
850 			input_report_key(input, BTN_3, (data[6] & 0x08));
851 			input_report_key(input, BTN_4, (data[6] & 0x10));
852 			input_report_key(input, BTN_5, (data[6] & 0x20));
853 			if (data[6] & 0x3f) {
854 				input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
855 			} else {
856 				input_report_abs(input, ABS_MISC, 0);
857 			}
858 		} else if (features->type == WACOM_13HD) {
859 			input_report_key(input, BTN_0, (data[3] & 0x01));
860 			input_report_key(input, BTN_1, (data[4] & 0x01));
861 			input_report_key(input, BTN_2, (data[4] & 0x02));
862 			input_report_key(input, BTN_3, (data[4] & 0x04));
863 			input_report_key(input, BTN_4, (data[4] & 0x08));
864 			input_report_key(input, BTN_5, (data[4] & 0x10));
865 			input_report_key(input, BTN_6, (data[4] & 0x20));
866 			input_report_key(input, BTN_7, (data[4] & 0x40));
867 			input_report_key(input, BTN_8, (data[4] & 0x80));
868 			if ((data[3] & 0x01) | data[4]) {
869 				input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
870 			} else {
871 				input_report_abs(input, ABS_MISC, 0);
872 			}
873 		} else if (features->type == WACOM_24HD) {
874 			input_report_key(input, BTN_0, (data[6] & 0x01));
875 			input_report_key(input, BTN_1, (data[6] & 0x02));
876 			input_report_key(input, BTN_2, (data[6] & 0x04));
877 			input_report_key(input, BTN_3, (data[6] & 0x08));
878 			input_report_key(input, BTN_4, (data[6] & 0x10));
879 			input_report_key(input, BTN_5, (data[6] & 0x20));
880 			input_report_key(input, BTN_6, (data[6] & 0x40));
881 			input_report_key(input, BTN_7, (data[6] & 0x80));
882 			input_report_key(input, BTN_8, (data[8] & 0x01));
883 			input_report_key(input, BTN_9, (data[8] & 0x02));
884 			input_report_key(input, BTN_A, (data[8] & 0x04));
885 			input_report_key(input, BTN_B, (data[8] & 0x08));
886 			input_report_key(input, BTN_C, (data[8] & 0x10));
887 			input_report_key(input, BTN_X, (data[8] & 0x20));
888 			input_report_key(input, BTN_Y, (data[8] & 0x40));
889 			input_report_key(input, BTN_Z, (data[8] & 0x80));
890 
891 			/*
892 			 * Three "buttons" are available on the 24HD which are
893 			 * physically implemented as a touchstrip. Each button
894 			 * is approximately 3 bits wide with a 2 bit spacing.
895 			 * The raw touchstrip bits are stored at:
896 			 *    ((data[3] & 0x1f) << 8) | data[4])
897 			 */
898 			input_report_key(input, KEY_PROG1, data[4] & 0x07);
899 			input_report_key(input, KEY_PROG2, data[4] & 0xE0);
900 			input_report_key(input, KEY_PROG3, data[3] & 0x1C);
901 
902 			if (data[1] & 0x80) {
903 				input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f));
904 			} else {
905 				/* Out of proximity, clear wheel value. */
906 				input_report_abs(input, ABS_WHEEL, 0);
907 			}
908 
909 			if (data[2] & 0x80) {
910 				input_report_abs(input, ABS_THROTTLE, (data[2] & 0x7f));
911 			} else {
912 				/* Out of proximity, clear second wheel value. */
913 				input_report_abs(input, ABS_THROTTLE, 0);
914 			}
915 
916 			if (data[1] | data[2] | (data[3] & 0x1f) | data[4] | data[6] | data[8]) {
917 				input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
918 			} else {
919 				input_report_abs(input, ABS_MISC, 0);
920 			}
921 		} else if (features->type == WACOM_27QHD) {
922 			input_report_key(input, KEY_PROG1, data[2] & 0x01);
923 			input_report_key(input, KEY_PROG2, data[2] & 0x02);
924 			input_report_key(input, KEY_PROG3, data[2] & 0x04);
925 
926 			input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[4]));
927 			input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[6]));
928 			input_report_abs(input, ABS_Z, be16_to_cpup((__be16 *)&data[8]));
929 			if ((data[2] & 0x07) | data[4] | data[5] | data[6] | data[7] | data[8] | data[9]) {
930 				input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
931 			} else {
932 				input_report_abs(input, ABS_MISC, 0);
933 			}
934 		} else if (features->type == CINTIQ_HYBRID) {
935 			/*
936 			 * Do not send hardware buttons under Android. They
937 			 * are already sent to the system through GPIO (and
938 			 * have different meaning).
939 			 */
940 			input_report_key(input, BTN_1, (data[4] & 0x01));
941 			input_report_key(input, BTN_2, (data[4] & 0x02));
942 			input_report_key(input, BTN_3, (data[4] & 0x04));
943 			input_report_key(input, BTN_4, (data[4] & 0x08));
944 
945 			input_report_key(input, BTN_5, (data[4] & 0x10));  /* Right  */
946 			input_report_key(input, BTN_6, (data[4] & 0x20));  /* Up     */
947 			input_report_key(input, BTN_7, (data[4] & 0x40));  /* Left   */
948 			input_report_key(input, BTN_8, (data[4] & 0x80));  /* Down   */
949 			input_report_key(input, BTN_0, (data[3] & 0x01));  /* Center */
950 
951 			if (data[4] | (data[3] & 0x01)) {
952 				input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
953 			} else {
954 				input_report_abs(input, ABS_MISC, 0);
955 			}
956 
957 		} else if (features->type == CINTIQ_COMPANION_2) {
958 			input_report_key(input, BTN_1, (data[1] & 0x02));
959 			input_report_key(input, BTN_2, (data[2] & 0x01));
960 			input_report_key(input, BTN_3, (data[2] & 0x02));
961 			input_report_key(input, BTN_4, (data[2] & 0x04));
962 			input_report_key(input, BTN_5, (data[2] & 0x08));
963 			input_report_key(input, BTN_6, (data[1] & 0x04));
964 
965 			input_report_key(input, BTN_7, (data[2] & 0x10));  /* Right  */
966 			input_report_key(input, BTN_8, (data[2] & 0x20));  /* Up	 */
967 			input_report_key(input, BTN_9, (data[2] & 0x40));  /* Left   */
968 			input_report_key(input, BTN_A, (data[2] & 0x80));  /* Down   */
969 			input_report_key(input, BTN_0, (data[1] & 0x01));  /* Center */
970 
971 			if (data[2] | (data[1] & 0x07)) {
972 				input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
973 			} else {
974 				input_report_abs(input, ABS_MISC, 0);
975 			}
976 
977 		} else if (features->type >= INTUOS5S && features->type <= INTUOSPL) {
978 			int i;
979 
980 			/* Touch ring mode switch has no capacitive sensor */
981 			input_report_key(input, BTN_0, (data[3] & 0x01));
982 
983 			/*
984 			 * ExpressKeys on Intuos5/Intuos Pro have a capacitive sensor in
985 			 * addition to the mechanical switch. Switch data is
986 			 * stored in data[4], capacitive data in data[5].
987 			 */
988 			for (i = 0; i < 8; i++)
989 				input_report_key(input, BTN_1 + i, data[4] & (1 << i));
990 
991 			if (data[2] & 0x80) {
992 				input_report_abs(input, ABS_WHEEL, (data[2] & 0x7f));
993 			} else {
994 				/* Out of proximity, clear wheel value. */
995 				input_report_abs(input, ABS_WHEEL, 0);
996 			}
997 
998 			if (data[2] | (data[3] & 0x01) | data[4] | data[5]) {
999 				input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
1000 			} else {
1001 				input_report_abs(input, ABS_MISC, 0);
1002 			}
1003 		} else {
1004 			if (features->type == WACOM_21UX2 || features->type == WACOM_22HD) {
1005 				input_report_key(input, BTN_0, (data[5] & 0x01));
1006 				input_report_key(input, BTN_1, (data[6] & 0x01));
1007 				input_report_key(input, BTN_2, (data[6] & 0x02));
1008 				input_report_key(input, BTN_3, (data[6] & 0x04));
1009 				input_report_key(input, BTN_4, (data[6] & 0x08));
1010 				input_report_key(input, BTN_5, (data[6] & 0x10));
1011 				input_report_key(input, BTN_6, (data[6] & 0x20));
1012 				input_report_key(input, BTN_7, (data[6] & 0x40));
1013 				input_report_key(input, BTN_8, (data[6] & 0x80));
1014 				input_report_key(input, BTN_9, (data[7] & 0x01));
1015 				input_report_key(input, BTN_A, (data[8] & 0x01));
1016 				input_report_key(input, BTN_B, (data[8] & 0x02));
1017 				input_report_key(input, BTN_C, (data[8] & 0x04));
1018 				input_report_key(input, BTN_X, (data[8] & 0x08));
1019 				input_report_key(input, BTN_Y, (data[8] & 0x10));
1020 				input_report_key(input, BTN_Z, (data[8] & 0x20));
1021 				input_report_key(input, BTN_BASE, (data[8] & 0x40));
1022 				input_report_key(input, BTN_BASE2, (data[8] & 0x80));
1023 
1024 				if (features->type == WACOM_22HD) {
1025 					input_report_key(input, KEY_PROG1, data[9] & 0x01);
1026 					input_report_key(input, KEY_PROG2, data[9] & 0x02);
1027 					input_report_key(input, KEY_PROG3, data[9] & 0x04);
1028 				}
1029 			} else {
1030 				input_report_key(input, BTN_0, (data[5] & 0x01));
1031 				input_report_key(input, BTN_1, (data[5] & 0x02));
1032 				input_report_key(input, BTN_2, (data[5] & 0x04));
1033 				input_report_key(input, BTN_3, (data[5] & 0x08));
1034 				input_report_key(input, BTN_4, (data[6] & 0x01));
1035 				input_report_key(input, BTN_5, (data[6] & 0x02));
1036 				input_report_key(input, BTN_6, (data[6] & 0x04));
1037 				input_report_key(input, BTN_7, (data[6] & 0x08));
1038 				input_report_key(input, BTN_8, (data[5] & 0x10));
1039 				input_report_key(input, BTN_9, (data[6] & 0x10));
1040 			}
1041 			input_report_abs(input, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]);
1042 			input_report_abs(input, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]);
1043 
1044 			if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) |
1045 				data[2] | (data[3] & 0x1f) | data[4] | data[8] |
1046 				(data[7] & 0x01)) {
1047 				input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
1048 			} else {
1049 				input_report_abs(input, ABS_MISC, 0);
1050 			}
1051 		}
1052                 return 1;
1053 	}
1054 
1055 	/* process in/out prox events */
1056 	result = wacom_intuos_inout(wacom);
1057 	if (result)
1058                 return result - 1;
1059 
1060 	if (features->type >= INTUOS3S) {
1061 		input_report_abs(input, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1));
1062 		input_report_abs(input, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1));
1063 		input_report_abs(input, ABS_DISTANCE, ((data[9] >> 2) & 0x3f));
1064 	} else {
1065 		input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[2]));
1066 		input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[4]));
1067 		input_report_abs(input, ABS_DISTANCE, ((data[9] >> 3) & 0x1f));
1068 	}
1069 
1070 	/* process general packets */
1071 	wacom_intuos_general(wacom);
1072 
1073 	/* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */
1074 	if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0 || (data[1] & 0xbc) == 0xac) {
1075 
1076 		if (data[1] & 0x02) {
1077 			/* Rotation packet */
1078 			if (features->type >= INTUOS3S) {
1079 				/* I3 marker pen rotation */
1080 				t = (data[6] << 3) | ((data[7] >> 5) & 7);
1081 				t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) :
1082 					((t-1) / 2 + 450)) : (450 - t / 2) ;
1083 				input_report_abs(input, ABS_Z, t);
1084 			} else {
1085 				/* 4D mouse rotation packet */
1086 				t = (data[6] << 3) | ((data[7] >> 5) & 7);
1087 				input_report_abs(input, ABS_RZ, (data[7] & 0x20) ?
1088 					((t - 1) / 2) : -t / 2);
1089 			}
1090 
1091 		} else if (!(data[1] & 0x10) && features->type < INTUOS3S) {
1092 			/* 4D mouse packet */
1093 			input_report_key(input, BTN_LEFT,   data[8] & 0x01);
1094 			input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
1095 			input_report_key(input, BTN_RIGHT,  data[8] & 0x04);
1096 
1097 			input_report_key(input, BTN_SIDE,   data[8] & 0x20);
1098 			input_report_key(input, BTN_EXTRA,  data[8] & 0x10);
1099 			t = (data[6] << 2) | ((data[7] >> 6) & 3);
1100 			input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t);
1101 
1102 		} else if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
1103 			/* I4 mouse */
1104 			if (features->type >= INTUOS4S && features->type <= INTUOSPL) {
1105 				input_report_key(input, BTN_LEFT,   data[6] & 0x01);
1106 				input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
1107 				input_report_key(input, BTN_RIGHT,  data[6] & 0x04);
1108 				input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7)
1109 						 - ((data[7] & 0x40) >> 6));
1110 				input_report_key(input, BTN_SIDE,   data[6] & 0x08);
1111 				input_report_key(input, BTN_EXTRA,  data[6] & 0x10);
1112 
1113 				input_report_abs(input, ABS_TILT_X,
1114 					(((data[7] << 1) & 0x7e) | (data[8] >> 7)) - 64);
1115 				input_report_abs(input, ABS_TILT_Y, (data[8] & 0x7f) - 64);
1116 			} else {
1117 				/* 2D mouse packet */
1118 				input_report_key(input, BTN_LEFT,   data[8] & 0x04);
1119 				input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
1120 				input_report_key(input, BTN_RIGHT,  data[8] & 0x10);
1121 				input_report_rel(input, REL_WHEEL, (data[8] & 0x01)
1122 						 - ((data[8] & 0x02) >> 1));
1123 
1124 				/* I3 2D mouse side buttons */
1125 				if (features->type >= INTUOS3S && features->type <= INTUOS3L) {
1126 					input_report_key(input, BTN_SIDE,   data[8] & 0x40);
1127 					input_report_key(input, BTN_EXTRA,  data[8] & 0x20);
1128 				}
1129 			}
1130 		} else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
1131 				features->type == INTUOS4L || features->type == INTUOS5L ||
1132 				features->type == INTUOSPL) &&
1133 			   wacom->tool[idx] == BTN_TOOL_LENS) {
1134 			/* Lens cursor packets */
1135 			input_report_key(input, BTN_LEFT,   data[8] & 0x01);
1136 			input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
1137 			input_report_key(input, BTN_RIGHT,  data[8] & 0x04);
1138 			input_report_key(input, BTN_SIDE,   data[8] & 0x10);
1139 			input_report_key(input, BTN_EXTRA,  data[8] & 0x08);
1140 		}
1141 	}
1142 
1143 	input_report_abs(input, ABS_MISC, wacom->id[idx]); /* report tool id */
1144 	input_report_key(input, wacom->tool[idx], 1);
1145 	input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
1146 	wacom->reporting_data = true;
1147 	return 1;
1148 }
1149 
int_dist(int x1,int y1,int x2,int y2)1150 static int int_dist(int x1, int y1, int x2, int y2)
1151 {
1152 	int x = x2 - x1;
1153 	int y = y2 - y1;
1154 
1155 	return int_sqrt(x*x + y*y);
1156 }
1157 
wacom_intuos_bt_process_data(struct wacom_wac * wacom,unsigned char * data)1158 static void wacom_intuos_bt_process_data(struct wacom_wac *wacom,
1159 		unsigned char *data)
1160 {
1161 	memcpy(wacom->data, data, 10);
1162 	wacom_intuos_irq(wacom);
1163 
1164 	input_sync(wacom->pen_input);
1165 	if (wacom->pad_input)
1166 		input_sync(wacom->pad_input);
1167 }
1168 
wacom_intuos_bt_irq(struct wacom_wac * wacom,size_t len)1169 static int wacom_intuos_bt_irq(struct wacom_wac *wacom, size_t len)
1170 {
1171 	unsigned char data[WACOM_PKGLEN_MAX];
1172 	int i = 1;
1173 	unsigned power_raw, battery_capacity, bat_charging, ps_connected;
1174 
1175 	memcpy(data, wacom->data, len);
1176 
1177 	switch (data[0]) {
1178 	case 0x04:
1179 		wacom_intuos_bt_process_data(wacom, data + i);
1180 		i += 10;
1181 		/* fall through */
1182 	case 0x03:
1183 		wacom_intuos_bt_process_data(wacom, data + i);
1184 		i += 10;
1185 		wacom_intuos_bt_process_data(wacom, data + i);
1186 		i += 10;
1187 		power_raw = data[i];
1188 		bat_charging = (power_raw & 0x08) ? 1 : 0;
1189 		ps_connected = (power_raw & 0x10) ? 1 : 0;
1190 		battery_capacity = batcap_i4[power_raw & 0x07];
1191 		wacom_notify_battery(wacom, battery_capacity, bat_charging,
1192 				     battery_capacity || bat_charging,
1193 				     ps_connected);
1194 		break;
1195 	default:
1196 		dev_dbg(wacom->pen_input->dev.parent,
1197 				"Unknown report: %d,%d size:%zu\n",
1198 				data[0], data[1], len);
1199 		return 0;
1200 	}
1201 	return 0;
1202 }
1203 
wacom_wac_finger_count_touches(struct wacom_wac * wacom)1204 static int wacom_wac_finger_count_touches(struct wacom_wac *wacom)
1205 {
1206 	struct input_dev *input = wacom->touch_input;
1207 	unsigned touch_max = wacom->features.touch_max;
1208 	int count = 0;
1209 	int i;
1210 
1211 	if (!touch_max)
1212 		return 0;
1213 
1214 	if (touch_max == 1)
1215 		return test_bit(BTN_TOUCH, input->key) &&
1216 		       !wacom->shared->stylus_in_proximity;
1217 
1218 	for (i = 0; i < input->mt->num_slots; i++) {
1219 		struct input_mt_slot *ps = &input->mt->slots[i];
1220 		int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
1221 		if (id >= 0)
1222 			count++;
1223 	}
1224 
1225 	return count;
1226 }
1227 
wacom_24hdt_irq(struct wacom_wac * wacom)1228 static int wacom_24hdt_irq(struct wacom_wac *wacom)
1229 {
1230 	struct input_dev *input = wacom->touch_input;
1231 	unsigned char *data = wacom->data;
1232 	int i;
1233 	int current_num_contacts = data[61];
1234 	int contacts_to_send = 0;
1235 	int num_contacts_left = 4; /* maximum contacts per packet */
1236 	int byte_per_packet = WACOM_BYTES_PER_24HDT_PACKET;
1237 	int y_offset = 2;
1238 
1239 	if (wacom->features.type == WACOM_27QHDT) {
1240 		current_num_contacts = data[63];
1241 		num_contacts_left = 10;
1242 		byte_per_packet = WACOM_BYTES_PER_QHDTHID_PACKET;
1243 		y_offset = 0;
1244 	}
1245 
1246 	/*
1247 	 * First packet resets the counter since only the first
1248 	 * packet in series will have non-zero current_num_contacts.
1249 	 */
1250 	if (current_num_contacts)
1251 		wacom->num_contacts_left = current_num_contacts;
1252 
1253 	contacts_to_send = min(num_contacts_left, wacom->num_contacts_left);
1254 
1255 	for (i = 0; i < contacts_to_send; i++) {
1256 		int offset = (byte_per_packet * i) + 1;
1257 		bool touch = (data[offset] & 0x1) && !wacom->shared->stylus_in_proximity;
1258 		int slot = input_mt_get_slot_by_key(input, data[offset + 1]);
1259 
1260 		if (slot < 0)
1261 			continue;
1262 		input_mt_slot(input, slot);
1263 		input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1264 
1265 		if (touch) {
1266 			int t_x = get_unaligned_le16(&data[offset + 2]);
1267 			int t_y = get_unaligned_le16(&data[offset + 4 + y_offset]);
1268 
1269 			input_report_abs(input, ABS_MT_POSITION_X, t_x);
1270 			input_report_abs(input, ABS_MT_POSITION_Y, t_y);
1271 
1272 			if (wacom->features.type != WACOM_27QHDT) {
1273 				int c_x = get_unaligned_le16(&data[offset + 4]);
1274 				int c_y = get_unaligned_le16(&data[offset + 8]);
1275 				int w = get_unaligned_le16(&data[offset + 10]);
1276 				int h = get_unaligned_le16(&data[offset + 12]);
1277 
1278 				input_report_abs(input, ABS_MT_TOUCH_MAJOR, min(w,h));
1279 				input_report_abs(input, ABS_MT_WIDTH_MAJOR,
1280 						 min(w, h) + int_dist(t_x, t_y, c_x, c_y));
1281 				input_report_abs(input, ABS_MT_WIDTH_MINOR, min(w, h));
1282 				input_report_abs(input, ABS_MT_ORIENTATION, w > h);
1283 			}
1284 		}
1285 	}
1286 	input_mt_sync_frame(input);
1287 
1288 	wacom->num_contacts_left -= contacts_to_send;
1289 	if (wacom->num_contacts_left <= 0) {
1290 		wacom->num_contacts_left = 0;
1291 		wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
1292 	}
1293 	return 1;
1294 }
1295 
wacom_mt_touch(struct wacom_wac * wacom)1296 static int wacom_mt_touch(struct wacom_wac *wacom)
1297 {
1298 	struct input_dev *input = wacom->touch_input;
1299 	unsigned char *data = wacom->data;
1300 	int i;
1301 	int current_num_contacts = data[2];
1302 	int contacts_to_send = 0;
1303 	int x_offset = 0;
1304 
1305 	/* MTTPC does not support Height and Width */
1306 	if (wacom->features.type == MTTPC || wacom->features.type == MTTPC_B)
1307 		x_offset = -4;
1308 
1309 	/*
1310 	 * First packet resets the counter since only the first
1311 	 * packet in series will have non-zero current_num_contacts.
1312 	 */
1313 	if (current_num_contacts)
1314 		wacom->num_contacts_left = current_num_contacts;
1315 
1316 	/* There are at most 5 contacts per packet */
1317 	contacts_to_send = min(5, wacom->num_contacts_left);
1318 
1319 	for (i = 0; i < contacts_to_send; i++) {
1320 		int offset = (WACOM_BYTES_PER_MT_PACKET + x_offset) * i + 3;
1321 		bool touch = (data[offset] & 0x1) && !wacom->shared->stylus_in_proximity;
1322 		int id = get_unaligned_le16(&data[offset + 1]);
1323 		int slot = input_mt_get_slot_by_key(input, id);
1324 
1325 		if (slot < 0)
1326 			continue;
1327 
1328 		input_mt_slot(input, slot);
1329 		input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1330 		if (touch) {
1331 			int x = get_unaligned_le16(&data[offset + x_offset + 7]);
1332 			int y = get_unaligned_le16(&data[offset + x_offset + 9]);
1333 			input_report_abs(input, ABS_MT_POSITION_X, x);
1334 			input_report_abs(input, ABS_MT_POSITION_Y, y);
1335 		}
1336 	}
1337 	input_mt_sync_frame(input);
1338 
1339 	wacom->num_contacts_left -= contacts_to_send;
1340 	if (wacom->num_contacts_left <= 0) {
1341 		wacom->num_contacts_left = 0;
1342 		wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
1343 	}
1344 	return 1;
1345 }
1346 
wacom_tpc_mt_touch(struct wacom_wac * wacom)1347 static int wacom_tpc_mt_touch(struct wacom_wac *wacom)
1348 {
1349 	struct input_dev *input = wacom->touch_input;
1350 	unsigned char *data = wacom->data;
1351 	int i;
1352 
1353 	for (i = 0; i < 2; i++) {
1354 		int p = data[1] & (1 << i);
1355 		bool touch = p && !wacom->shared->stylus_in_proximity;
1356 
1357 		input_mt_slot(input, i);
1358 		input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1359 		if (touch) {
1360 			int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff;
1361 			int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff;
1362 
1363 			input_report_abs(input, ABS_MT_POSITION_X, x);
1364 			input_report_abs(input, ABS_MT_POSITION_Y, y);
1365 		}
1366 	}
1367 	input_mt_sync_frame(input);
1368 
1369 	/* keep touch state for pen event */
1370 	wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
1371 
1372 	return 1;
1373 }
1374 
wacom_tpc_single_touch(struct wacom_wac * wacom,size_t len)1375 static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len)
1376 {
1377 	unsigned char *data = wacom->data;
1378 	struct input_dev *input = wacom->touch_input;
1379 	bool prox = !wacom->shared->stylus_in_proximity;
1380 	int x = 0, y = 0;
1381 
1382 	if (wacom->features.touch_max > 1 || len > WACOM_PKGLEN_TPC2FG)
1383 		return 0;
1384 
1385 	if (len == WACOM_PKGLEN_TPC1FG) {
1386 		prox = prox && (data[0] & 0x01);
1387 		x = get_unaligned_le16(&data[1]);
1388 		y = get_unaligned_le16(&data[3]);
1389 	} else if (len == WACOM_PKGLEN_TPC1FG_B) {
1390 		prox = prox && (data[2] & 0x01);
1391 		x = get_unaligned_le16(&data[3]);
1392 		y = get_unaligned_le16(&data[5]);
1393 	} else {
1394 		prox = prox && (data[1] & 0x01);
1395 		x = le16_to_cpup((__le16 *)&data[2]);
1396 		y = le16_to_cpup((__le16 *)&data[4]);
1397 	}
1398 
1399 	if (prox) {
1400 		input_report_abs(input, ABS_X, x);
1401 		input_report_abs(input, ABS_Y, y);
1402 	}
1403 	input_report_key(input, BTN_TOUCH, prox);
1404 
1405 	/* keep touch state for pen events */
1406 	wacom->shared->touch_down = prox;
1407 
1408 	return 1;
1409 }
1410 
wacom_tpc_pen(struct wacom_wac * wacom)1411 static int wacom_tpc_pen(struct wacom_wac *wacom)
1412 {
1413 	unsigned char *data = wacom->data;
1414 	struct input_dev *input = wacom->pen_input;
1415 	bool prox = data[1] & 0x20;
1416 
1417 	if (!wacom->shared->stylus_in_proximity) /* first in prox */
1418 		/* Going into proximity select tool */
1419 		wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN;
1420 
1421 	/* keep pen state for touch events */
1422 	wacom->shared->stylus_in_proximity = prox;
1423 
1424 	/* send pen events only when touch is up or forced out */
1425 	if (!wacom->shared->touch_down) {
1426 		input_report_key(input, BTN_STYLUS, data[1] & 0x02);
1427 		input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
1428 		input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2]));
1429 		input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4]));
1430 		input_report_abs(input, ABS_PRESSURE, ((data[7] & 0x07) << 8) | data[6]);
1431 		input_report_key(input, BTN_TOUCH, data[1] & 0x05);
1432 		input_report_key(input, wacom->tool[0], prox);
1433 		return 1;
1434 	}
1435 
1436 	return 0;
1437 }
1438 
wacom_tpc_irq(struct wacom_wac * wacom,size_t len)1439 static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
1440 {
1441 	unsigned char *data = wacom->data;
1442 
1443 	if (wacom->pen_input) {
1444 		dev_dbg(wacom->pen_input->dev.parent,
1445 			"%s: received report #%d\n", __func__, data[0]);
1446 
1447 		if (len == WACOM_PKGLEN_PENABLED ||
1448 		    data[0] == WACOM_REPORT_PENABLED)
1449 			return wacom_tpc_pen(wacom);
1450 	}
1451 	else if (wacom->touch_input) {
1452 		dev_dbg(wacom->touch_input->dev.parent,
1453 			"%s: received report #%d\n", __func__, data[0]);
1454 
1455 		switch (len) {
1456 		case WACOM_PKGLEN_TPC1FG:
1457 			return wacom_tpc_single_touch(wacom, len);
1458 
1459 		case WACOM_PKGLEN_TPC2FG:
1460 			return wacom_tpc_mt_touch(wacom);
1461 
1462 		default:
1463 			switch (data[0]) {
1464 			case WACOM_REPORT_TPC1FG:
1465 			case WACOM_REPORT_TPCHID:
1466 			case WACOM_REPORT_TPCST:
1467 			case WACOM_REPORT_TPC1FGE:
1468 				return wacom_tpc_single_touch(wacom, len);
1469 
1470 			case WACOM_REPORT_TPCMT:
1471 			case WACOM_REPORT_TPCMT2:
1472 				return wacom_mt_touch(wacom);
1473 
1474 			}
1475 		}
1476 	}
1477 
1478 	return 0;
1479 }
1480 
wacom_map_usage(struct input_dev * input,struct hid_usage * usage,struct hid_field * field,__u8 type,__u16 code,int fuzz)1481 static void wacom_map_usage(struct input_dev *input, struct hid_usage *usage,
1482 		struct hid_field *field, __u8 type, __u16 code, int fuzz)
1483 {
1484 	int fmin = field->logical_minimum;
1485 	int fmax = field->logical_maximum;
1486 
1487 	usage->type = type;
1488 	usage->code = code;
1489 
1490 	set_bit(type, input->evbit);
1491 
1492 	switch (type) {
1493 	case EV_ABS:
1494 		input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
1495 		input_abs_set_res(input, code,
1496 				  hidinput_calc_abs_res(field, code));
1497 		break;
1498 	case EV_KEY:
1499 		input_set_capability(input, EV_KEY, code);
1500 		break;
1501 	case EV_MSC:
1502 		input_set_capability(input, EV_MSC, code);
1503 		break;
1504 	}
1505 }
1506 
wacom_wac_pen_usage_mapping(struct hid_device * hdev,struct hid_field * field,struct hid_usage * usage)1507 static void wacom_wac_pen_usage_mapping(struct hid_device *hdev,
1508 		struct hid_field *field, struct hid_usage *usage)
1509 {
1510 	struct wacom *wacom = hid_get_drvdata(hdev);
1511 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1512 	struct input_dev *input = wacom_wac->pen_input;
1513 
1514 	switch (usage->hid) {
1515 	case HID_GD_X:
1516 		wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
1517 		break;
1518 	case HID_GD_Y:
1519 		wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
1520 		break;
1521 	case HID_DG_TIPPRESSURE:
1522 		wacom_map_usage(input, usage, field, EV_ABS, ABS_PRESSURE, 0);
1523 		break;
1524 	case HID_DG_INRANGE:
1525 		wacom_map_usage(input, usage, field, EV_KEY, BTN_TOOL_PEN, 0);
1526 		break;
1527 	case HID_DG_INVERT:
1528 		wacom_map_usage(input, usage, field, EV_KEY,
1529 				BTN_TOOL_RUBBER, 0);
1530 		break;
1531 	case HID_DG_ERASER:
1532 	case HID_DG_TIPSWITCH:
1533 		wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
1534 		break;
1535 	case HID_DG_BARRELSWITCH:
1536 		wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS, 0);
1537 		break;
1538 	case HID_DG_BARRELSWITCH2:
1539 		wacom_map_usage(input, usage, field, EV_KEY, BTN_STYLUS2, 0);
1540 		break;
1541 	case HID_DG_TOOLSERIALNUMBER:
1542 		wacom_map_usage(input, usage, field, EV_MSC, MSC_SERIAL, 0);
1543 		break;
1544 	}
1545 }
1546 
wacom_wac_pen_event(struct hid_device * hdev,struct hid_field * field,struct hid_usage * usage,__s32 value)1547 static int wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field,
1548 		struct hid_usage *usage, __s32 value)
1549 {
1550 	struct wacom *wacom = hid_get_drvdata(hdev);
1551 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1552 	struct input_dev *input = wacom_wac->pen_input;
1553 
1554 	/* checking which Tool / tip switch to send */
1555 	switch (usage->hid) {
1556 	case HID_DG_INRANGE:
1557 		wacom_wac->hid_data.inrange_state = value;
1558 		return 0;
1559 	case HID_DG_INVERT:
1560 		wacom_wac->hid_data.invert_state = value;
1561 		return 0;
1562 	case HID_DG_ERASER:
1563 	case HID_DG_TIPSWITCH:
1564 		wacom_wac->hid_data.tipswitch |= value;
1565 		return 0;
1566 	}
1567 
1568 	/* send pen events only when touch is up or forced out */
1569 	if (!usage->type || wacom_wac->shared->touch_down)
1570 		return 0;
1571 
1572 	input_event(input, usage->type, usage->code, value);
1573 
1574 	return 0;
1575 }
1576 
wacom_wac_pen_pre_report(struct hid_device * hdev,struct hid_report * report)1577 static void wacom_wac_pen_pre_report(struct hid_device *hdev,
1578 		struct hid_report *report)
1579 {
1580 	return;
1581 }
1582 
wacom_wac_pen_report(struct hid_device * hdev,struct hid_report * report)1583 static void wacom_wac_pen_report(struct hid_device *hdev,
1584 		struct hid_report *report)
1585 {
1586 	struct wacom *wacom = hid_get_drvdata(hdev);
1587 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1588 	struct input_dev *input = wacom_wac->pen_input;
1589 	bool prox = wacom_wac->hid_data.inrange_state;
1590 
1591 	if (!wacom_wac->shared->stylus_in_proximity) /* first in prox */
1592 		/* Going into proximity select tool */
1593 		wacom_wac->tool[0] = wacom_wac->hid_data.invert_state ?
1594 						BTN_TOOL_RUBBER : BTN_TOOL_PEN;
1595 
1596 	/* keep pen state for touch events */
1597 	wacom_wac->shared->stylus_in_proximity = prox;
1598 
1599 	/* send pen events only when touch is up or forced out */
1600 	if (!wacom_wac->shared->touch_down) {
1601 		input_report_key(input, BTN_TOUCH,
1602 				wacom_wac->hid_data.tipswitch);
1603 		input_report_key(input, wacom_wac->tool[0], prox);
1604 
1605 		wacom_wac->hid_data.tipswitch = false;
1606 
1607 		input_sync(input);
1608 	}
1609 }
1610 
wacom_wac_finger_usage_mapping(struct hid_device * hdev,struct hid_field * field,struct hid_usage * usage)1611 static void wacom_wac_finger_usage_mapping(struct hid_device *hdev,
1612 		struct hid_field *field, struct hid_usage *usage)
1613 {
1614 	struct wacom *wacom = hid_get_drvdata(hdev);
1615 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1616 	struct wacom_features *features = &wacom_wac->features;
1617 	struct input_dev *input = wacom_wac->touch_input;
1618 	unsigned touch_max = wacom_wac->features.touch_max;
1619 
1620 	switch (usage->hid) {
1621 	case HID_GD_X:
1622 		features->last_slot_field = usage->hid;
1623 		if (touch_max == 1)
1624 			wacom_map_usage(input, usage, field, EV_ABS, ABS_X, 4);
1625 		else
1626 			wacom_map_usage(input, usage, field, EV_ABS,
1627 					ABS_MT_POSITION_X, 4);
1628 		break;
1629 	case HID_GD_Y:
1630 		features->last_slot_field = usage->hid;
1631 		if (touch_max == 1)
1632 			wacom_map_usage(input, usage, field, EV_ABS, ABS_Y, 4);
1633 		else
1634 			wacom_map_usage(input, usage, field, EV_ABS,
1635 					ABS_MT_POSITION_Y, 4);
1636 		break;
1637 	case HID_DG_WIDTH:
1638 	case HID_DG_HEIGHT:
1639 		features->last_slot_field = usage->hid;
1640 		wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MAJOR, 0);
1641 		wacom_map_usage(input, usage, field, EV_ABS, ABS_MT_TOUCH_MINOR, 0);
1642 		input_set_abs_params(input, ABS_MT_ORIENTATION, 0, 1, 0, 0);
1643 		break;
1644 	case HID_DG_CONTACTID:
1645 		features->last_slot_field = usage->hid;
1646 		break;
1647 	case HID_DG_INRANGE:
1648 		features->last_slot_field = usage->hid;
1649 		break;
1650 	case HID_DG_INVERT:
1651 		features->last_slot_field = usage->hid;
1652 		break;
1653 	case HID_DG_TIPSWITCH:
1654 		features->last_slot_field = usage->hid;
1655 		wacom_map_usage(input, usage, field, EV_KEY, BTN_TOUCH, 0);
1656 		break;
1657 	case HID_DG_CONTACTCOUNT:
1658 		wacom_wac->hid_data.cc_report = field->report->id;
1659 		wacom_wac->hid_data.cc_index = field->index;
1660 		wacom_wac->hid_data.cc_value_index = usage->usage_index;
1661 		break;
1662 	}
1663 }
1664 
wacom_wac_finger_slot(struct wacom_wac * wacom_wac,struct input_dev * input)1665 static void wacom_wac_finger_slot(struct wacom_wac *wacom_wac,
1666 		struct input_dev *input)
1667 {
1668 	struct hid_data *hid_data = &wacom_wac->hid_data;
1669 	bool mt = wacom_wac->features.touch_max > 1;
1670 	bool prox = hid_data->tipswitch &&
1671 		    !wacom_wac->shared->stylus_in_proximity;
1672 
1673 	wacom_wac->hid_data.num_received++;
1674 	if (wacom_wac->hid_data.num_received > wacom_wac->hid_data.num_expected)
1675 		return;
1676 
1677 	if (mt) {
1678 		int slot;
1679 
1680 		slot = input_mt_get_slot_by_key(input, hid_data->id);
1681 		input_mt_slot(input, slot);
1682 		input_mt_report_slot_state(input, MT_TOOL_FINGER, prox);
1683 	}
1684 	else {
1685 		input_report_key(input, BTN_TOUCH, prox);
1686 	}
1687 
1688 	if (prox) {
1689 		input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X,
1690 				 hid_data->x);
1691 		input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y,
1692 				 hid_data->y);
1693 
1694 		if (test_bit(ABS_MT_TOUCH_MAJOR, input->absbit)) {
1695 			input_report_abs(input, ABS_MT_TOUCH_MAJOR, max(hid_data->width, hid_data->height));
1696 			input_report_abs(input, ABS_MT_TOUCH_MINOR, min(hid_data->width, hid_data->height));
1697 			if (hid_data->width != hid_data->height)
1698 				input_report_abs(input, ABS_MT_ORIENTATION, hid_data->width <= hid_data->height ? 0 : 1);
1699 		}
1700 	}
1701 }
1702 
wacom_wac_finger_event(struct hid_device * hdev,struct hid_field * field,struct hid_usage * usage,__s32 value)1703 static int wacom_wac_finger_event(struct hid_device *hdev,
1704 		struct hid_field *field, struct hid_usage *usage, __s32 value)
1705 {
1706 	struct wacom *wacom = hid_get_drvdata(hdev);
1707 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1708 
1709 	switch (usage->hid) {
1710 	case HID_GD_X:
1711 		wacom_wac->hid_data.x = value;
1712 		break;
1713 	case HID_GD_Y:
1714 		wacom_wac->hid_data.y = value;
1715 		break;
1716 	case HID_DG_WIDTH:
1717 		wacom_wac->hid_data.width = value;
1718 		break;
1719 	case HID_DG_HEIGHT:
1720 		wacom_wac->hid_data.height = value;
1721 		break;
1722 	case HID_DG_CONTACTID:
1723 		wacom_wac->hid_data.id = value;
1724 		break;
1725 	case HID_DG_TIPSWITCH:
1726 		wacom_wac->hid_data.tipswitch = value;
1727 		break;
1728 	}
1729 
1730 
1731 	if (usage->usage_index + 1 == field->report_count) {
1732 		if (usage->hid == wacom_wac->features.last_slot_field)
1733 			wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input);
1734 	}
1735 
1736 	return 0;
1737 }
1738 
wacom_wac_finger_pre_report(struct hid_device * hdev,struct hid_report * report)1739 static void wacom_wac_finger_pre_report(struct hid_device *hdev,
1740 		struct hid_report *report)
1741 {
1742 	struct wacom *wacom = hid_get_drvdata(hdev);
1743 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1744 	struct hid_data* hid_data = &wacom_wac->hid_data;
1745 
1746 	if (hid_data->cc_report != 0 &&
1747 	    hid_data->cc_report != report->id) {
1748 		int i;
1749 
1750 		hid_data->cc_report = report->id;
1751 		hid_data->cc_index = -1;
1752 		hid_data->cc_value_index = -1;
1753 
1754 		for (i = 0; i < report->maxfield; i++) {
1755 			struct hid_field *field = report->field[i];
1756 			int j;
1757 
1758 			for (j = 0; j < field->maxusage; j++) {
1759 				if (field->usage[j].hid == HID_DG_CONTACTCOUNT) {
1760 					hid_data->cc_index = i;
1761 					hid_data->cc_value_index = j;
1762 
1763 					/* break */
1764 					i = report->maxfield;
1765 					j = field->maxusage;
1766 				}
1767 			}
1768 		}
1769 	}
1770 	if (hid_data->cc_report != 0 &&
1771 	    hid_data->cc_index >= 0) {
1772 		struct hid_field *field = report->field[hid_data->cc_index];
1773 		int value = field->value[hid_data->cc_value_index];
1774 		if (value)
1775 			hid_data->num_expected = value;
1776 	}
1777 	else {
1778 		hid_data->num_expected = wacom_wac->features.touch_max;
1779 	}
1780 }
1781 
wacom_wac_finger_report(struct hid_device * hdev,struct hid_report * report)1782 static void wacom_wac_finger_report(struct hid_device *hdev,
1783 		struct hid_report *report)
1784 {
1785 	struct wacom *wacom = hid_get_drvdata(hdev);
1786 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1787 	struct input_dev *input = wacom_wac->touch_input;
1788 	unsigned touch_max = wacom_wac->features.touch_max;
1789 
1790 	/* If more packets of data are expected, give us a chance to
1791 	 * process them rather than immediately syncing a partial
1792 	 * update.
1793 	 */
1794 	if (wacom_wac->hid_data.num_received < wacom_wac->hid_data.num_expected)
1795 		return;
1796 
1797 	if (touch_max > 1)
1798 		input_mt_sync_frame(input);
1799 
1800 	input_sync(input);
1801 	wacom_wac->hid_data.num_received = 0;
1802 
1803 	/* keep touch state for pen event */
1804 	wacom_wac->shared->touch_down = wacom_wac_finger_count_touches(wacom_wac);
1805 }
1806 
wacom_wac_usage_mapping(struct hid_device * hdev,struct hid_field * field,struct hid_usage * usage)1807 void wacom_wac_usage_mapping(struct hid_device *hdev,
1808 		struct hid_field *field, struct hid_usage *usage)
1809 {
1810 	struct wacom *wacom = hid_get_drvdata(hdev);
1811 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1812 
1813 	/* currently, only direct devices have proper hid report descriptors */
1814 	__set_bit(INPUT_PROP_DIRECT, wacom_wac->pen_input->propbit);
1815 	__set_bit(INPUT_PROP_DIRECT, wacom_wac->touch_input->propbit);
1816 
1817 	if (WACOM_PEN_FIELD(field))
1818 		return wacom_wac_pen_usage_mapping(hdev, field, usage);
1819 
1820 	if (WACOM_FINGER_FIELD(field))
1821 		return wacom_wac_finger_usage_mapping(hdev, field, usage);
1822 }
1823 
wacom_wac_event(struct hid_device * hdev,struct hid_field * field,struct hid_usage * usage,__s32 value)1824 int wacom_wac_event(struct hid_device *hdev, struct hid_field *field,
1825 		struct hid_usage *usage, __s32 value)
1826 {
1827 	struct wacom *wacom = hid_get_drvdata(hdev);
1828 
1829 	if (wacom->wacom_wac.features.type != HID_GENERIC)
1830 		return 0;
1831 
1832 	if (WACOM_PEN_FIELD(field))
1833 		return wacom_wac_pen_event(hdev, field, usage, value);
1834 
1835 	if (WACOM_FINGER_FIELD(field))
1836 		return wacom_wac_finger_event(hdev, field, usage, value);
1837 
1838 	return 0;
1839 }
1840 
wacom_report_events(struct hid_device * hdev,struct hid_report * report)1841 static void wacom_report_events(struct hid_device *hdev, struct hid_report *report)
1842 {
1843 	int r;
1844 
1845 	for (r = 0; r < report->maxfield; r++) {
1846 		struct hid_field *field;
1847 		unsigned count, n;
1848 
1849 		field = report->field[r];
1850 		count = field->report_count;
1851 
1852 		if (!(HID_MAIN_ITEM_VARIABLE & field->flags))
1853 			continue;
1854 
1855 		for (n = 0; n < count; n++)
1856 			wacom_wac_event(hdev, field, &field->usage[n], field->value[n]);
1857 	}
1858 }
1859 
wacom_wac_report(struct hid_device * hdev,struct hid_report * report)1860 void wacom_wac_report(struct hid_device *hdev, struct hid_report *report)
1861 {
1862 	struct wacom *wacom = hid_get_drvdata(hdev);
1863 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1864 	struct hid_field *field = report->field[0];
1865 
1866 	if (wacom_wac->features.type != HID_GENERIC)
1867 		return;
1868 
1869 	if (WACOM_PEN_FIELD(field))
1870 		wacom_wac_pen_pre_report(hdev, report);
1871 
1872 	if (WACOM_FINGER_FIELD(field))
1873 		wacom_wac_finger_pre_report(hdev, report);
1874 
1875 	wacom_report_events(hdev, report);
1876 
1877 	if (WACOM_PEN_FIELD(field))
1878 		return wacom_wac_pen_report(hdev, report);
1879 
1880 	if (WACOM_FINGER_FIELD(field))
1881 		return wacom_wac_finger_report(hdev, report);
1882 }
1883 
wacom_bpt_touch(struct wacom_wac * wacom)1884 static int wacom_bpt_touch(struct wacom_wac *wacom)
1885 {
1886 	struct wacom_features *features = &wacom->features;
1887 	struct input_dev *input = wacom->touch_input;
1888 	struct input_dev *pad_input = wacom->pad_input;
1889 	unsigned char *data = wacom->data;
1890 	int i;
1891 
1892 	if (data[0] != 0x02)
1893 	    return 0;
1894 
1895 	for (i = 0; i < 2; i++) {
1896 		int offset = (data[1] & 0x80) ? (8 * i) : (9 * i);
1897 		bool touch = data[offset + 3] & 0x80;
1898 
1899 		/*
1900 		 * Touch events need to be disabled while stylus is
1901 		 * in proximity because user's hand is resting on touchpad
1902 		 * and sending unwanted events.  User expects tablet buttons
1903 		 * to continue working though.
1904 		 */
1905 		touch = touch && !wacom->shared->stylus_in_proximity;
1906 
1907 		input_mt_slot(input, i);
1908 		input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1909 		if (touch) {
1910 			int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff;
1911 			int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff;
1912 			if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) {
1913 				x <<= 5;
1914 				y <<= 5;
1915 			}
1916 			input_report_abs(input, ABS_MT_POSITION_X, x);
1917 			input_report_abs(input, ABS_MT_POSITION_Y, y);
1918 		}
1919 	}
1920 
1921 	input_mt_sync_frame(input);
1922 
1923 	input_report_key(pad_input, BTN_LEFT, (data[1] & 0x08) != 0);
1924 	input_report_key(pad_input, BTN_FORWARD, (data[1] & 0x04) != 0);
1925 	input_report_key(pad_input, BTN_BACK, (data[1] & 0x02) != 0);
1926 	input_report_key(pad_input, BTN_RIGHT, (data[1] & 0x01) != 0);
1927 	wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
1928 
1929 	return 1;
1930 }
1931 
wacom_bpt3_touch_msg(struct wacom_wac * wacom,unsigned char * data)1932 static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
1933 {
1934 	struct wacom_features *features = &wacom->features;
1935 	struct input_dev *input = wacom->touch_input;
1936 	bool touch = data[1] & 0x80;
1937 	int slot = input_mt_get_slot_by_key(input, data[0]);
1938 
1939 	if (slot < 0)
1940 		return;
1941 
1942 	touch = touch && !wacom->shared->stylus_in_proximity;
1943 
1944 	input_mt_slot(input, slot);
1945 	input_mt_report_slot_state(input, MT_TOOL_FINGER, touch);
1946 
1947 	if (touch) {
1948 		int x = (data[2] << 4) | (data[4] >> 4);
1949 		int y = (data[3] << 4) | (data[4] & 0x0f);
1950 		int width, height;
1951 
1952 		if (features->type >= INTUOSPS && features->type <= INTUOSHT2) {
1953 			width  = data[5] * 100;
1954 			height = data[6] * 100;
1955 		} else {
1956 			/*
1957 			 * "a" is a scaled-down area which we assume is
1958 			 * roughly circular and which can be described as:
1959 			 * a=(pi*r^2)/C.
1960 			 */
1961 			int a = data[5];
1962 			int x_res = input_abs_get_res(input, ABS_MT_POSITION_X);
1963 			int y_res = input_abs_get_res(input, ABS_MT_POSITION_Y);
1964 			width = 2 * int_sqrt(a * WACOM_CONTACT_AREA_SCALE);
1965 			height = width * y_res / x_res;
1966 		}
1967 
1968 		input_report_abs(input, ABS_MT_POSITION_X, x);
1969 		input_report_abs(input, ABS_MT_POSITION_Y, y);
1970 		input_report_abs(input, ABS_MT_TOUCH_MAJOR, width);
1971 		input_report_abs(input, ABS_MT_TOUCH_MINOR, height);
1972 	}
1973 }
1974 
wacom_bpt3_button_msg(struct wacom_wac * wacom,unsigned char * data)1975 static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data)
1976 {
1977 	struct input_dev *input = wacom->pad_input;
1978 	struct wacom_features *features = &wacom->features;
1979 
1980 	if (features->type == INTUOSHT || features->type == INTUOSHT2) {
1981 		input_report_key(input, BTN_LEFT, (data[1] & 0x02) != 0);
1982 		input_report_key(input, BTN_BACK, (data[1] & 0x08) != 0);
1983 	} else {
1984 		input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0);
1985 		input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0);
1986 	}
1987 	input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0);
1988 	input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0);
1989 }
1990 
wacom_bpt3_touch(struct wacom_wac * wacom)1991 static int wacom_bpt3_touch(struct wacom_wac *wacom)
1992 {
1993 	unsigned char *data = wacom->data;
1994 	int count = data[1] & 0x07;
1995 	int  touch_changed = 0, i;
1996 
1997 	if (data[0] != 0x02)
1998 	    return 0;
1999 
2000 	/* data has up to 7 fixed sized 8-byte messages starting at data[2] */
2001 	for (i = 0; i < count; i++) {
2002 		int offset = (8 * i) + 2;
2003 		int msg_id = data[offset];
2004 
2005 		if (msg_id >= 2 && msg_id <= 17) {
2006 			wacom_bpt3_touch_msg(wacom, data + offset);
2007 			touch_changed++;
2008 		} else if (msg_id == 128)
2009 			wacom_bpt3_button_msg(wacom, data + offset);
2010 
2011 	}
2012 
2013 	/* only update touch if we actually have a touchpad and touch data changed */
2014 	if (wacom->touch_registered && touch_changed) {
2015 		input_mt_sync_frame(wacom->touch_input);
2016 		wacom->shared->touch_down = wacom_wac_finger_count_touches(wacom);
2017 	}
2018 
2019 	return 1;
2020 }
2021 
wacom_bpt_pen(struct wacom_wac * wacom)2022 static int wacom_bpt_pen(struct wacom_wac *wacom)
2023 {
2024 	struct wacom_features *features = &wacom->features;
2025 	struct input_dev *input = wacom->pen_input;
2026 	unsigned char *data = wacom->data;
2027 	int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0;
2028 
2029 	if (data[0] != WACOM_REPORT_PENABLED)
2030 	    return 0;
2031 
2032 	prox = (data[1] & 0x20) == 0x20;
2033 
2034 	/*
2035 	 * All reports shared between PEN and RUBBER tool must be
2036 	 * forced to a known starting value (zero) when transitioning to
2037 	 * out-of-prox.
2038 	 *
2039 	 * If not reset then, to userspace, it will look like lost events
2040 	 * if new tool comes in-prox with same values as previous tool sent.
2041 	 *
2042 	 * Hardware does report zero in most out-of-prox cases but not all.
2043 	 */
2044 	if (!wacom->shared->stylus_in_proximity) {
2045 		if (data[1] & 0x08) {
2046 			wacom->tool[0] = BTN_TOOL_RUBBER;
2047 			wacom->id[0] = ERASER_DEVICE_ID;
2048 		} else {
2049 			wacom->tool[0] = BTN_TOOL_PEN;
2050 			wacom->id[0] = STYLUS_DEVICE_ID;
2051 		}
2052 	}
2053 
2054 	wacom->shared->stylus_in_proximity = prox;
2055 	if (wacom->shared->touch_down)
2056 		return 0;
2057 
2058 	if (prox) {
2059 		x = le16_to_cpup((__le16 *)&data[2]);
2060 		y = le16_to_cpup((__le16 *)&data[4]);
2061 		p = le16_to_cpup((__le16 *)&data[6]);
2062 		/*
2063 		 * Convert distance from out prox to distance from tablet.
2064 		 * distance will be greater than distance_max once
2065 		 * touching and applying pressure; do not report negative
2066 		 * distance.
2067 		 */
2068 		if (data[8] <= features->distance_max)
2069 			d = features->distance_max - data[8];
2070 
2071 		pen = data[1] & 0x01;
2072 		btn1 = data[1] & 0x02;
2073 		btn2 = data[1] & 0x04;
2074 	} else {
2075 		wacom->id[0] = 0;
2076 	}
2077 
2078 	input_report_key(input, BTN_TOUCH, pen);
2079 	input_report_key(input, BTN_STYLUS, btn1);
2080 	input_report_key(input, BTN_STYLUS2, btn2);
2081 
2082 	input_report_abs(input, ABS_X, x);
2083 	input_report_abs(input, ABS_Y, y);
2084 	input_report_abs(input, ABS_PRESSURE, p);
2085 	input_report_abs(input, ABS_DISTANCE, d);
2086 
2087 	input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */
2088 	input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */
2089 
2090 	return 1;
2091 }
2092 
wacom_bpt_irq(struct wacom_wac * wacom,size_t len)2093 static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len)
2094 {
2095 	struct wacom_features *features = &wacom->features;
2096 
2097 	if ((features->type == INTUOSHT2) &&
2098 	    (features->device_type & WACOM_DEVICETYPE_PEN))
2099 		return wacom_intuos_irq(wacom);
2100 	else if (len == WACOM_PKGLEN_BBTOUCH)
2101 		return wacom_bpt_touch(wacom);
2102 	else if (len == WACOM_PKGLEN_BBTOUCH3)
2103 		return wacom_bpt3_touch(wacom);
2104 	else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN)
2105 		return wacom_bpt_pen(wacom);
2106 
2107 	return 0;
2108 }
2109 
wacom_bamboo_pad_pen_event(struct wacom_wac * wacom,unsigned char * data)2110 static void wacom_bamboo_pad_pen_event(struct wacom_wac *wacom,
2111 		unsigned char *data)
2112 {
2113 	unsigned char prefix;
2114 
2115 	/*
2116 	 * We need to reroute the event from the debug interface to the
2117 	 * pen interface.
2118 	 * We need to add the report ID to the actual pen report, so we
2119 	 * temporary overwrite the first byte to prevent having to kzalloc/kfree
2120 	 * and memcpy the report.
2121 	 */
2122 	prefix = data[0];
2123 	data[0] = WACOM_REPORT_BPAD_PEN;
2124 
2125 	/*
2126 	 * actually reroute the event.
2127 	 * No need to check if wacom->shared->pen is valid, hid_input_report()
2128 	 * will check for us.
2129 	 */
2130 	hid_input_report(wacom->shared->pen, HID_INPUT_REPORT, data,
2131 			 WACOM_PKGLEN_PENABLED, 1);
2132 
2133 	data[0] = prefix;
2134 }
2135 
wacom_bamboo_pad_touch_event(struct wacom_wac * wacom,unsigned char * data)2136 static int wacom_bamboo_pad_touch_event(struct wacom_wac *wacom,
2137 		unsigned char *data)
2138 {
2139 	struct input_dev *input = wacom->touch_input;
2140 	unsigned char *finger_data, prefix;
2141 	unsigned id;
2142 	int x, y;
2143 	bool valid;
2144 
2145 	prefix = data[0];
2146 
2147 	for (id = 0; id < wacom->features.touch_max; id++) {
2148 		valid = !!(prefix & BIT(id)) &&
2149 			!wacom->shared->stylus_in_proximity;
2150 
2151 		input_mt_slot(input, id);
2152 		input_mt_report_slot_state(input, MT_TOOL_FINGER, valid);
2153 
2154 		if (!valid)
2155 			continue;
2156 
2157 		finger_data = data + 1 + id * 3;
2158 		x = finger_data[0] | ((finger_data[1] & 0x0f) << 8);
2159 		y = (finger_data[2] << 4) | (finger_data[1] >> 4);
2160 
2161 		input_report_abs(input, ABS_MT_POSITION_X, x);
2162 		input_report_abs(input, ABS_MT_POSITION_Y, y);
2163 	}
2164 
2165 	input_mt_sync_frame(input);
2166 
2167 	input_report_key(input, BTN_LEFT, prefix & 0x40);
2168 	input_report_key(input, BTN_RIGHT, prefix & 0x80);
2169 
2170 	/* keep touch state for pen event */
2171 	wacom->shared->touch_down = !!prefix &&
2172 				    !wacom->shared->stylus_in_proximity;
2173 
2174 	return 1;
2175 }
2176 
wacom_bamboo_pad_irq(struct wacom_wac * wacom,size_t len)2177 static int wacom_bamboo_pad_irq(struct wacom_wac *wacom, size_t len)
2178 {
2179 	unsigned char *data = wacom->data;
2180 
2181 	if (!((len == WACOM_PKGLEN_BPAD_TOUCH) ||
2182 	      (len == WACOM_PKGLEN_BPAD_TOUCH_USB)) ||
2183 	    (data[0] != WACOM_REPORT_BPAD_TOUCH))
2184 		return 0;
2185 
2186 	if (data[1] & 0x01)
2187 		wacom_bamboo_pad_pen_event(wacom, &data[1]);
2188 
2189 	if (data[1] & 0x02)
2190 		return wacom_bamboo_pad_touch_event(wacom, &data[9]);
2191 
2192 	return 0;
2193 }
2194 
wacom_wireless_irq(struct wacom_wac * wacom,size_t len)2195 static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len)
2196 {
2197 	unsigned char *data = wacom->data;
2198 	int connected;
2199 
2200 	if (len != WACOM_PKGLEN_WIRELESS || data[0] != WACOM_REPORT_WL)
2201 		return 0;
2202 
2203 	connected = data[1] & 0x01;
2204 	if (connected) {
2205 		int pid, battery, charging;
2206 
2207 		if ((wacom->shared->type == INTUOSHT ||
2208 		    wacom->shared->type == INTUOSHT2) &&
2209 		    wacom->shared->touch_input &&
2210 		    wacom->shared->touch_max) {
2211 			input_report_switch(wacom->shared->touch_input,
2212 					SW_MUTE_DEVICE, data[5] & 0x40);
2213 			input_sync(wacom->shared->touch_input);
2214 		}
2215 
2216 		pid = get_unaligned_be16(&data[6]);
2217 		battery = (data[5] & 0x3f) * 100 / 31;
2218 		charging = !!(data[5] & 0x80);
2219 		if (wacom->pid != pid) {
2220 			wacom->pid = pid;
2221 			wacom_schedule_work(wacom);
2222 		}
2223 
2224 		if (wacom->shared->type)
2225 			wacom_notify_battery(wacom, battery, charging, 1, 0);
2226 
2227 	} else if (wacom->pid != 0) {
2228 		/* disconnected while previously connected */
2229 		wacom->pid = 0;
2230 		wacom_schedule_work(wacom);
2231 		wacom_notify_battery(wacom, 0, 0, 0, 0);
2232 	}
2233 
2234 	return 0;
2235 }
2236 
wacom_status_irq(struct wacom_wac * wacom_wac,size_t len)2237 static int wacom_status_irq(struct wacom_wac *wacom_wac, size_t len)
2238 {
2239 	struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
2240 	struct wacom_features *features = &wacom_wac->features;
2241 	unsigned char *data = wacom_wac->data;
2242 
2243 	if (data[0] != WACOM_REPORT_USB)
2244 		return 0;
2245 
2246 	if ((features->type == INTUOSHT ||
2247 	    features->type == INTUOSHT2) &&
2248 	    wacom_wac->shared->touch_input &&
2249 	    features->touch_max) {
2250 		input_report_switch(wacom_wac->shared->touch_input,
2251 				    SW_MUTE_DEVICE, data[8] & 0x40);
2252 		input_sync(wacom_wac->shared->touch_input);
2253 	}
2254 
2255 	if (data[9] & 0x02) { /* wireless module is attached */
2256 		int battery = (data[8] & 0x3f) * 100 / 31;
2257 		bool charging = !!(data[8] & 0x80);
2258 
2259 		wacom_notify_battery(wacom_wac, battery, charging,
2260 				     battery || charging, 1);
2261 
2262 		if (!wacom->battery &&
2263 		    !(features->quirks & WACOM_QUIRK_BATTERY)) {
2264 			features->quirks |= WACOM_QUIRK_BATTERY;
2265 			INIT_WORK(&wacom->work, wacom_battery_work);
2266 			wacom_schedule_work(wacom_wac);
2267 		}
2268 	}
2269 	else if ((features->quirks & WACOM_QUIRK_BATTERY) &&
2270 		 wacom->battery) {
2271 		features->quirks &= ~WACOM_QUIRK_BATTERY;
2272 		INIT_WORK(&wacom->work, wacom_battery_work);
2273 		wacom_schedule_work(wacom_wac);
2274 		wacom_notify_battery(wacom_wac, 0, 0, 0, 0);
2275 	}
2276 	return 0;
2277 }
2278 
wacom_wac_irq(struct wacom_wac * wacom_wac,size_t len)2279 void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
2280 {
2281 	bool sync;
2282 
2283 	switch (wacom_wac->features.type) {
2284 	case PENPARTNER:
2285 		sync = wacom_penpartner_irq(wacom_wac);
2286 		break;
2287 
2288 	case PL:
2289 		sync = wacom_pl_irq(wacom_wac);
2290 		break;
2291 
2292 	case WACOM_G4:
2293 	case GRAPHIRE:
2294 	case GRAPHIRE_BT:
2295 	case WACOM_MO:
2296 		sync = wacom_graphire_irq(wacom_wac);
2297 		break;
2298 
2299 	case PTU:
2300 		sync = wacom_ptu_irq(wacom_wac);
2301 		break;
2302 
2303 	case DTU:
2304 		sync = wacom_dtu_irq(wacom_wac);
2305 		break;
2306 
2307 	case DTUS:
2308 	case DTUSX:
2309 		sync = wacom_dtus_irq(wacom_wac);
2310 		break;
2311 
2312 	case INTUOS:
2313 	case INTUOS3S:
2314 	case INTUOS3:
2315 	case INTUOS3L:
2316 	case INTUOS4S:
2317 	case INTUOS4:
2318 	case INTUOS4L:
2319 	case CINTIQ:
2320 	case WACOM_BEE:
2321 	case WACOM_13HD:
2322 	case WACOM_21UX2:
2323 	case WACOM_22HD:
2324 	case WACOM_24HD:
2325 	case WACOM_27QHD:
2326 	case DTK:
2327 	case CINTIQ_HYBRID:
2328 	case CINTIQ_COMPANION_2:
2329 		sync = wacom_intuos_irq(wacom_wac);
2330 		break;
2331 
2332 	case INTUOS4WL:
2333 		sync = wacom_intuos_bt_irq(wacom_wac, len);
2334 		break;
2335 
2336 	case WACOM_24HDT:
2337 	case WACOM_27QHDT:
2338 		sync = wacom_24hdt_irq(wacom_wac);
2339 		break;
2340 
2341 	case INTUOS5S:
2342 	case INTUOS5:
2343 	case INTUOS5L:
2344 	case INTUOSPS:
2345 	case INTUOSPM:
2346 	case INTUOSPL:
2347 		if (len == WACOM_PKGLEN_BBTOUCH3)
2348 			sync = wacom_bpt3_touch(wacom_wac);
2349 		else if (wacom_wac->data[0] == WACOM_REPORT_USB)
2350 			sync = wacom_status_irq(wacom_wac, len);
2351 		else
2352 			sync = wacom_intuos_irq(wacom_wac);
2353 		break;
2354 
2355 	case TABLETPC:
2356 	case TABLETPCE:
2357 	case TABLETPC2FG:
2358 	case MTSCREEN:
2359 	case MTTPC:
2360 	case MTTPC_B:
2361 		sync = wacom_tpc_irq(wacom_wac, len);
2362 		break;
2363 
2364 	case BAMBOO_PT:
2365 	case BAMBOO_PEN:
2366 	case BAMBOO_TOUCH:
2367 	case INTUOSHT:
2368 	case INTUOSHT2:
2369 		if (wacom_wac->data[0] == WACOM_REPORT_USB)
2370 			sync = wacom_status_irq(wacom_wac, len);
2371 		else
2372 			sync = wacom_bpt_irq(wacom_wac, len);
2373 		break;
2374 
2375 	case BAMBOO_PAD:
2376 		sync = wacom_bamboo_pad_irq(wacom_wac, len);
2377 		break;
2378 
2379 	case WIRELESS:
2380 		sync = wacom_wireless_irq(wacom_wac, len);
2381 		break;
2382 
2383 	case REMOTE:
2384 		if (wacom_wac->data[0] == WACOM_REPORT_DEVICE_LIST)
2385 			sync = wacom_remote_status_irq(wacom_wac, len);
2386 		else
2387 			sync = wacom_remote_irq(wacom_wac, len);
2388 		break;
2389 
2390 	default:
2391 		sync = false;
2392 		break;
2393 	}
2394 
2395 	if (sync) {
2396 		if (wacom_wac->pen_input)
2397 			input_sync(wacom_wac->pen_input);
2398 		if (wacom_wac->touch_input)
2399 			input_sync(wacom_wac->touch_input);
2400 		if (wacom_wac->pad_input)
2401 			input_sync(wacom_wac->pad_input);
2402 	}
2403 }
2404 
wacom_setup_basic_pro_pen(struct wacom_wac * wacom_wac)2405 static void wacom_setup_basic_pro_pen(struct wacom_wac *wacom_wac)
2406 {
2407 	struct input_dev *input_dev = wacom_wac->pen_input;
2408 
2409 	input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
2410 
2411 	__set_bit(BTN_TOOL_PEN, input_dev->keybit);
2412 	__set_bit(BTN_STYLUS, input_dev->keybit);
2413 	__set_bit(BTN_STYLUS2, input_dev->keybit);
2414 
2415 	input_set_abs_params(input_dev, ABS_DISTANCE,
2416 			     0, wacom_wac->features.distance_max, 0, 0);
2417 }
2418 
wacom_setup_cintiq(struct wacom_wac * wacom_wac)2419 static void wacom_setup_cintiq(struct wacom_wac *wacom_wac)
2420 {
2421 	struct input_dev *input_dev = wacom_wac->pen_input;
2422 
2423 	wacom_setup_basic_pro_pen(wacom_wac);
2424 
2425 	__set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2426 	__set_bit(BTN_TOOL_BRUSH, input_dev->keybit);
2427 	__set_bit(BTN_TOOL_PENCIL, input_dev->keybit);
2428 	__set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit);
2429 
2430 	input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
2431 	input_set_abs_params(input_dev, ABS_TILT_X, -64, 63, 0, 0);
2432 	input_abs_set_res(input_dev, ABS_TILT_X, 57);
2433 	input_set_abs_params(input_dev, ABS_TILT_Y, -64, 63, 0, 0);
2434 	input_abs_set_res(input_dev, ABS_TILT_Y, 57);
2435 }
2436 
wacom_setup_intuos(struct wacom_wac * wacom_wac)2437 static void wacom_setup_intuos(struct wacom_wac *wacom_wac)
2438 {
2439 	struct input_dev *input_dev = wacom_wac->pen_input;
2440 
2441 	input_set_capability(input_dev, EV_REL, REL_WHEEL);
2442 
2443 	wacom_setup_cintiq(wacom_wac);
2444 
2445 	__set_bit(BTN_LEFT, input_dev->keybit);
2446 	__set_bit(BTN_RIGHT, input_dev->keybit);
2447 	__set_bit(BTN_MIDDLE, input_dev->keybit);
2448 	__set_bit(BTN_SIDE, input_dev->keybit);
2449 	__set_bit(BTN_EXTRA, input_dev->keybit);
2450 	__set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2451 	__set_bit(BTN_TOOL_LENS, input_dev->keybit);
2452 
2453 	input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
2454 	input_abs_set_res(input_dev, ABS_RZ, 287);
2455 	input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
2456 }
2457 
wacom_setup_device_quirks(struct wacom * wacom)2458 void wacom_setup_device_quirks(struct wacom *wacom)
2459 {
2460 	struct wacom_features *features = &wacom->wacom_wac.features;
2461 
2462 	/* The pen and pad share the same interface on most devices */
2463 	if (features->type == GRAPHIRE_BT || features->type == WACOM_G4 ||
2464 	    features->type == DTUS ||
2465 	    (features->type >= INTUOS3S && features->type <= WACOM_MO)) {
2466 		if (features->device_type & WACOM_DEVICETYPE_PEN)
2467 			features->device_type |= WACOM_DEVICETYPE_PAD;
2468 	}
2469 
2470 	/* touch device found but size is not defined. use default */
2471 	if (features->device_type & WACOM_DEVICETYPE_TOUCH && !features->x_max) {
2472 		features->x_max = 1023;
2473 		features->y_max = 1023;
2474 	}
2475 
2476 	/*
2477 	 * Intuos5/Pro and Bamboo 3rd gen have no useful data about its
2478 	 * touch interface in its HID descriptor. If this is the touch
2479 	 * interface (PacketSize of WACOM_PKGLEN_BBTOUCH3), override the
2480 	 * tablet values.
2481 	 */
2482 	if ((features->type >= INTUOS5S && features->type <= INTUOSPL) ||
2483 		(features->type >= INTUOSHT && features->type <= BAMBOO_PT)) {
2484 		if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
2485 			if (features->touch_max)
2486 				features->device_type |= WACOM_DEVICETYPE_TOUCH;
2487 			if (features->type >= INTUOSHT && features->type <= BAMBOO_PT)
2488 				features->device_type |= WACOM_DEVICETYPE_PAD;
2489 
2490 			if (features->type == INTUOSHT2) {
2491 				features->x_max = features->x_max / 10;
2492 				features->y_max = features->y_max / 10;
2493 			}
2494 			else {
2495 				features->x_max = 4096;
2496 				features->y_max = 4096;
2497 			}
2498 		}
2499 		else if (features->pktlen == WACOM_PKGLEN_BBTOUCH) {
2500 			features->device_type |= WACOM_DEVICETYPE_PAD;
2501 		}
2502 	}
2503 
2504 	/*
2505 	 * Hack for the Bamboo One:
2506 	 * the device presents a PAD/Touch interface as most Bamboos and even
2507 	 * sends ghosts PAD data on it. However, later, we must disable this
2508 	 * ghost interface, and we can not detect it unless we set it here
2509 	 * to WACOM_DEVICETYPE_PAD or WACOM_DEVICETYPE_TOUCH.
2510 	 */
2511 	if (features->type == BAMBOO_PEN &&
2512 	    features->pktlen == WACOM_PKGLEN_BBTOUCH3)
2513 		features->device_type |= WACOM_DEVICETYPE_PAD;
2514 
2515 	/*
2516 	 * Raw Wacom-mode pen and touch events both come from interface
2517 	 * 0, whose HID descriptor has an application usage of 0xFF0D
2518 	 * (i.e., WACOM_VENDORDEFINED_PEN). We route pen packets back
2519 	 * out through the HID_GENERIC device created for interface 1,
2520 	 * so rewrite this one to be of type WACOM_DEVICETYPE_TOUCH.
2521 	 */
2522 	if (features->type == BAMBOO_PAD)
2523 		features->device_type = WACOM_DEVICETYPE_TOUCH;
2524 
2525 	if (features->type == REMOTE)
2526 		features->device_type = WACOM_DEVICETYPE_PAD;
2527 
2528 	if (wacom->hdev->bus == BUS_BLUETOOTH)
2529 		features->quirks |= WACOM_QUIRK_BATTERY;
2530 
2531 	/* quirk for bamboo touch with 2 low res touches */
2532 	if (features->type == BAMBOO_PT &&
2533 	    features->pktlen == WACOM_PKGLEN_BBTOUCH) {
2534 		features->x_max <<= 5;
2535 		features->y_max <<= 5;
2536 		features->x_fuzz <<= 5;
2537 		features->y_fuzz <<= 5;
2538 		features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES;
2539 	}
2540 
2541 	if (features->type == WIRELESS) {
2542 		if (features->device_type == WACOM_DEVICETYPE_WL_MONITOR) {
2543 			features->quirks |= WACOM_QUIRK_BATTERY;
2544 		}
2545 	}
2546 }
2547 
wacom_setup_pen_input_capabilities(struct input_dev * input_dev,struct wacom_wac * wacom_wac)2548 int wacom_setup_pen_input_capabilities(struct input_dev *input_dev,
2549 				   struct wacom_wac *wacom_wac)
2550 {
2551 	struct wacom_features *features = &wacom_wac->features;
2552 
2553 	input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2554 
2555 	if (!(features->device_type & WACOM_DEVICETYPE_PEN))
2556 		return -ENODEV;
2557 
2558 	if (features->type == HID_GENERIC)
2559 		/* setup has already been done */
2560 		return 0;
2561 
2562 	__set_bit(BTN_TOUCH, input_dev->keybit);
2563 	__set_bit(ABS_MISC, input_dev->absbit);
2564 
2565 	input_set_abs_params(input_dev, ABS_X, features->x_min,
2566 			     features->x_max, features->x_fuzz, 0);
2567 	input_set_abs_params(input_dev, ABS_Y, features->y_min,
2568 			     features->y_max, features->y_fuzz, 0);
2569 	input_set_abs_params(input_dev, ABS_PRESSURE, 0,
2570 		features->pressure_max, features->pressure_fuzz, 0);
2571 
2572 	/* penabled devices have fixed resolution for each model */
2573 	input_abs_set_res(input_dev, ABS_X, features->x_resolution);
2574 	input_abs_set_res(input_dev, ABS_Y, features->y_resolution);
2575 
2576 
2577 	switch (features->type) {
2578 	case GRAPHIRE_BT:
2579 		__clear_bit(ABS_MISC, input_dev->absbit);
2580 
2581 	case WACOM_MO:
2582 	case WACOM_G4:
2583 		input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2584 					      features->distance_max,
2585 					      0, 0);
2586 		/* fall through */
2587 
2588 	case GRAPHIRE:
2589 		input_set_capability(input_dev, EV_REL, REL_WHEEL);
2590 
2591 		__set_bit(BTN_LEFT, input_dev->keybit);
2592 		__set_bit(BTN_RIGHT, input_dev->keybit);
2593 		__set_bit(BTN_MIDDLE, input_dev->keybit);
2594 
2595 		__set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2596 		__set_bit(BTN_TOOL_PEN, input_dev->keybit);
2597 		__set_bit(BTN_TOOL_MOUSE, input_dev->keybit);
2598 		__set_bit(BTN_STYLUS, input_dev->keybit);
2599 		__set_bit(BTN_STYLUS2, input_dev->keybit);
2600 
2601 		__set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2602 		break;
2603 
2604 	case WACOM_27QHD:
2605 	case WACOM_24HD:
2606 	case DTK:
2607 	case WACOM_22HD:
2608 	case WACOM_21UX2:
2609 	case WACOM_BEE:
2610 	case CINTIQ:
2611 	case WACOM_13HD:
2612 	case CINTIQ_HYBRID:
2613 	case CINTIQ_COMPANION_2:
2614 		input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
2615 		input_abs_set_res(input_dev, ABS_Z, 287);
2616 		__set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2617 		wacom_setup_cintiq(wacom_wac);
2618 		break;
2619 
2620 	case INTUOS3:
2621 	case INTUOS3L:
2622 	case INTUOS3S:
2623 	case INTUOS4:
2624 	case INTUOS4WL:
2625 	case INTUOS4L:
2626 	case INTUOS4S:
2627 		input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
2628 		input_abs_set_res(input_dev, ABS_Z, 287);
2629 		/* fall through */
2630 
2631 	case INTUOS:
2632 		__set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2633 
2634 		wacom_setup_intuos(wacom_wac);
2635 		break;
2636 
2637 	case INTUOS5:
2638 	case INTUOS5L:
2639 	case INTUOSPM:
2640 	case INTUOSPL:
2641 	case INTUOS5S:
2642 	case INTUOSPS:
2643 		__set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2644 
2645 		input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2646 				      features->distance_max,
2647 				      0, 0);
2648 
2649 		input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
2650 		input_abs_set_res(input_dev, ABS_Z, 287);
2651 
2652 		wacom_setup_intuos(wacom_wac);
2653 		break;
2654 
2655 	case WACOM_24HDT:
2656 	case WACOM_27QHDT:
2657 	case MTSCREEN:
2658 	case MTTPC:
2659 	case MTTPC_B:
2660 	case TABLETPC2FG:
2661 	case TABLETPC:
2662 	case TABLETPCE:
2663 		__clear_bit(ABS_MISC, input_dev->absbit);
2664 		/* fall through */
2665 
2666 	case DTUS:
2667 	case DTUSX:
2668 	case PL:
2669 	case DTU:
2670 		__set_bit(BTN_TOOL_PEN, input_dev->keybit);
2671 		__set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2672 		__set_bit(BTN_STYLUS, input_dev->keybit);
2673 		__set_bit(BTN_STYLUS2, input_dev->keybit);
2674 
2675 		__set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2676 		break;
2677 
2678 	case PTU:
2679 		__set_bit(BTN_STYLUS2, input_dev->keybit);
2680 		/* fall through */
2681 
2682 	case PENPARTNER:
2683 		__set_bit(BTN_TOOL_PEN, input_dev->keybit);
2684 		__set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2685 		__set_bit(BTN_STYLUS, input_dev->keybit);
2686 
2687 		__set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2688 		break;
2689 
2690 	case INTUOSHT:
2691 	case BAMBOO_PT:
2692 	case BAMBOO_PEN:
2693 	case INTUOSHT2:
2694 		__set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2695 
2696 		if (features->type == INTUOSHT2) {
2697 			wacom_setup_basic_pro_pen(wacom_wac);
2698 		} else {
2699 			__clear_bit(ABS_MISC, input_dev->absbit);
2700 			__set_bit(BTN_TOOL_PEN, input_dev->keybit);
2701 			__set_bit(BTN_TOOL_RUBBER, input_dev->keybit);
2702 			__set_bit(BTN_STYLUS, input_dev->keybit);
2703 			__set_bit(BTN_STYLUS2, input_dev->keybit);
2704 			input_set_abs_params(input_dev, ABS_DISTANCE, 0,
2705 				      features->distance_max,
2706 				      0, 0);
2707 		}
2708 		break;
2709 	case BAMBOO_PAD:
2710 		__clear_bit(ABS_MISC, input_dev->absbit);
2711 		break;
2712 	}
2713 	return 0;
2714 }
2715 
wacom_setup_touch_input_capabilities(struct input_dev * input_dev,struct wacom_wac * wacom_wac)2716 int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
2717 					 struct wacom_wac *wacom_wac)
2718 {
2719 	struct wacom_features *features = &wacom_wac->features;
2720 
2721 	input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2722 
2723 	if (!(features->device_type & WACOM_DEVICETYPE_TOUCH))
2724 		return -ENODEV;
2725 
2726 	if (features->type == HID_GENERIC)
2727 		/* setup has already been done */
2728 		return 0;
2729 
2730 	__set_bit(BTN_TOUCH, input_dev->keybit);
2731 
2732 	if (features->touch_max == 1) {
2733 		input_set_abs_params(input_dev, ABS_X, 0,
2734 			features->x_max, features->x_fuzz, 0);
2735 		input_set_abs_params(input_dev, ABS_Y, 0,
2736 			features->y_max, features->y_fuzz, 0);
2737 		input_abs_set_res(input_dev, ABS_X,
2738 				  features->x_resolution);
2739 		input_abs_set_res(input_dev, ABS_Y,
2740 				  features->y_resolution);
2741 	}
2742 	else if (features->touch_max > 1) {
2743 		input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0,
2744 			features->x_max, features->x_fuzz, 0);
2745 		input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0,
2746 			features->y_max, features->y_fuzz, 0);
2747 		input_abs_set_res(input_dev, ABS_MT_POSITION_X,
2748 				  features->x_resolution);
2749 		input_abs_set_res(input_dev, ABS_MT_POSITION_Y,
2750 				  features->y_resolution);
2751 	}
2752 
2753 	switch (features->type) {
2754 	case INTUOS5:
2755 	case INTUOS5L:
2756 	case INTUOSPM:
2757 	case INTUOSPL:
2758 	case INTUOS5S:
2759 	case INTUOSPS:
2760 		__set_bit(INPUT_PROP_POINTER, input_dev->propbit);
2761 
2762 		input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2763 		input_set_abs_params(input_dev, ABS_MT_TOUCH_MINOR, 0, features->y_max, 0, 0);
2764 		input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
2765 		break;
2766 
2767 	case WACOM_24HDT:
2768 		input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, features->x_max, 0, 0);
2769 		input_set_abs_params(input_dev, ABS_MT_WIDTH_MAJOR, 0, features->x_max, 0, 0);
2770 		input_set_abs_params(input_dev, ABS_MT_WIDTH_MINOR, 0, features->y_max, 0, 0);
2771 		input_set_abs_params(input_dev, ABS_MT_ORIENTATION, 0, 1, 0, 0);
2772 		/* fall through */
2773 
2774 	case WACOM_27QHDT:
2775 	case MTSCREEN:
2776 	case MTTPC:
2777 	case MTTPC_B:
2778 	case TABLETPC2FG:
2779 		input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_DIRECT);
2780 		/*fall through */
2781 
2782 	case TABLETPC:
2783 	case TABLETPCE:
2784 		__set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
2785 		break;
2786 
2787 	case INTUOSHT:
2788 	case INTUOSHT2:
2789 		input_dev->evbit[0] |= BIT_MASK(EV_SW);
2790 		__set_bit(SW_MUTE_DEVICE, input_dev->swbit);
2791 		/* fall through */
2792 
2793 	case BAMBOO_PT:
2794 	case BAMBOO_TOUCH:
2795 		if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
2796 			input_set_abs_params(input_dev,
2797 				     ABS_MT_TOUCH_MAJOR,
2798 				     0, features->x_max, 0, 0);
2799 			input_set_abs_params(input_dev,
2800 				     ABS_MT_TOUCH_MINOR,
2801 				     0, features->y_max, 0, 0);
2802 		}
2803 		input_mt_init_slots(input_dev, features->touch_max, INPUT_MT_POINTER);
2804 		break;
2805 
2806 	case BAMBOO_PAD:
2807 		input_mt_init_slots(input_dev, features->touch_max,
2808 				    INPUT_MT_POINTER);
2809 		__set_bit(BTN_LEFT, input_dev->keybit);
2810 		__set_bit(BTN_RIGHT, input_dev->keybit);
2811 		break;
2812 	}
2813 	return 0;
2814 }
2815 
wacom_setup_numbered_buttons(struct input_dev * input_dev,int button_count)2816 static void wacom_setup_numbered_buttons(struct input_dev *input_dev,
2817 				int button_count)
2818 {
2819 	int i;
2820 
2821 	for (i = 0; i < button_count && i < 10; i++)
2822 		__set_bit(BTN_0 + i, input_dev->keybit);
2823 	for (i = 10; i < button_count && i < 16; i++)
2824 		__set_bit(BTN_A + (i-10), input_dev->keybit);
2825 	for (i = 16; i < button_count && i < 18; i++)
2826 		__set_bit(BTN_BASE + (i-16), input_dev->keybit);
2827 }
2828 
wacom_setup_pad_input_capabilities(struct input_dev * input_dev,struct wacom_wac * wacom_wac)2829 int wacom_setup_pad_input_capabilities(struct input_dev *input_dev,
2830 				   struct wacom_wac *wacom_wac)
2831 {
2832 	struct wacom_features *features = &wacom_wac->features;
2833 
2834 	if (!(features->device_type & WACOM_DEVICETYPE_PAD))
2835 		return -ENODEV;
2836 
2837 	input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
2838 
2839 	/* kept for making legacy xf86-input-wacom working with the wheels */
2840 	__set_bit(ABS_MISC, input_dev->absbit);
2841 
2842 	/* kept for making legacy xf86-input-wacom accepting the pad */
2843 	input_set_abs_params(input_dev, ABS_X, 0, 1, 0, 0);
2844 	input_set_abs_params(input_dev, ABS_Y, 0, 1, 0, 0);
2845 
2846 	/* kept for making udev and libwacom accepting the pad */
2847 	__set_bit(BTN_STYLUS, input_dev->keybit);
2848 
2849 	wacom_setup_numbered_buttons(input_dev, features->numbered_buttons);
2850 
2851 	switch (features->type) {
2852 
2853 	case CINTIQ_HYBRID:
2854 	case CINTIQ_COMPANION_2:
2855 	case DTK:
2856 	case DTUS:
2857 	case GRAPHIRE_BT:
2858 		break;
2859 
2860 	case WACOM_MO:
2861 		__set_bit(BTN_BACK, input_dev->keybit);
2862 		__set_bit(BTN_LEFT, input_dev->keybit);
2863 		__set_bit(BTN_FORWARD, input_dev->keybit);
2864 		__set_bit(BTN_RIGHT, input_dev->keybit);
2865 		input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2866 		break;
2867 
2868 	case WACOM_G4:
2869 		__set_bit(BTN_BACK, input_dev->keybit);
2870 		__set_bit(BTN_FORWARD, input_dev->keybit);
2871 		input_set_capability(input_dev, EV_REL, REL_WHEEL);
2872 		break;
2873 
2874 	case WACOM_24HD:
2875 		__set_bit(KEY_PROG1, input_dev->keybit);
2876 		__set_bit(KEY_PROG2, input_dev->keybit);
2877 		__set_bit(KEY_PROG3, input_dev->keybit);
2878 
2879 		input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2880 		input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0);
2881 		break;
2882 
2883 	case WACOM_27QHD:
2884 		__set_bit(KEY_PROG1, input_dev->keybit);
2885 		__set_bit(KEY_PROG2, input_dev->keybit);
2886 		__set_bit(KEY_PROG3, input_dev->keybit);
2887 		input_set_abs_params(input_dev, ABS_X, -2048, 2048, 0, 0);
2888 		input_abs_set_res(input_dev, ABS_X, 1024); /* points/g */
2889 		input_set_abs_params(input_dev, ABS_Y, -2048, 2048, 0, 0);
2890 		input_abs_set_res(input_dev, ABS_Y, 1024);
2891 		input_set_abs_params(input_dev, ABS_Z, -2048, 2048, 0, 0);
2892 		input_abs_set_res(input_dev, ABS_Z, 1024);
2893 		__set_bit(INPUT_PROP_ACCELEROMETER, input_dev->propbit);
2894 		break;
2895 
2896 	case WACOM_22HD:
2897 		__set_bit(KEY_PROG1, input_dev->keybit);
2898 		__set_bit(KEY_PROG2, input_dev->keybit);
2899 		__set_bit(KEY_PROG3, input_dev->keybit);
2900 		/* fall through */
2901 
2902 	case WACOM_21UX2:
2903 	case WACOM_BEE:
2904 	case CINTIQ:
2905 		input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
2906 		input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
2907 		break;
2908 
2909 	case WACOM_13HD:
2910 		input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2911 		break;
2912 
2913 	case INTUOS3:
2914 	case INTUOS3L:
2915 		input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0);
2916 		/* fall through */
2917 
2918 	case INTUOS3S:
2919 		input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0);
2920 		break;
2921 
2922 	case INTUOS5:
2923 	case INTUOS5L:
2924 	case INTUOSPM:
2925 	case INTUOSPL:
2926 	case INTUOS5S:
2927 	case INTUOSPS:
2928 		input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2929 		break;
2930 
2931 	case INTUOS4WL:
2932 		/*
2933 		 * For Bluetooth devices, the udev rule does not work correctly
2934 		 * for pads unless we add a stylus capability, which forces
2935 		 * ID_INPUT_TABLET to be set.
2936 		 */
2937 		__set_bit(BTN_STYLUS, input_dev->keybit);
2938 		/* fall through */
2939 
2940 	case INTUOS4:
2941 	case INTUOS4L:
2942 	case INTUOS4S:
2943 		input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2944 		break;
2945 
2946 	case INTUOSHT:
2947 	case BAMBOO_PT:
2948 	case BAMBOO_TOUCH:
2949 	case INTUOSHT2:
2950 		__clear_bit(ABS_MISC, input_dev->absbit);
2951 
2952 		__set_bit(BTN_LEFT, input_dev->keybit);
2953 		__set_bit(BTN_FORWARD, input_dev->keybit);
2954 		__set_bit(BTN_BACK, input_dev->keybit);
2955 		__set_bit(BTN_RIGHT, input_dev->keybit);
2956 
2957 		break;
2958 
2959 	case REMOTE:
2960 		input_set_capability(input_dev, EV_MSC, MSC_SERIAL);
2961 		input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0);
2962 		break;
2963 
2964 	default:
2965 		/* no pad supported */
2966 		return -ENODEV;
2967 	}
2968 	return 0;
2969 }
2970 
2971 static const struct wacom_features wacom_features_0x00 =
2972 	{ "Wacom Penpartner", 5040, 3780, 255, 0,
2973 	  PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
2974 static const struct wacom_features wacom_features_0x10 =
2975 	{ "Wacom Graphire", 10206, 7422, 511, 63,
2976 	  GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
2977 static const struct wacom_features wacom_features_0x81 =
2978 	{ "Wacom Graphire BT", 16704, 12064, 511, 32,
2979 	  GRAPHIRE_BT, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES, 2 };
2980 static const struct wacom_features wacom_features_0x11 =
2981 	{ "Wacom Graphire2 4x5", 10206, 7422, 511, 63,
2982 	  GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
2983 static const struct wacom_features wacom_features_0x12 =
2984 	{ "Wacom Graphire2 5x7", 13918, 10206, 511, 63,
2985 	  GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
2986 static const struct wacom_features wacom_features_0x13 =
2987 	{ "Wacom Graphire3", 10208, 7424, 511, 63,
2988 	  GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
2989 static const struct wacom_features wacom_features_0x14 =
2990 	{ "Wacom Graphire3 6x8", 16704, 12064, 511, 63,
2991 	  GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
2992 static const struct wacom_features wacom_features_0x15 =
2993 	{ "Wacom Graphire4 4x5", 10208, 7424, 511, 63,
2994 	  WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
2995 static const struct wacom_features wacom_features_0x16 =
2996 	{ "Wacom Graphire4 6x8", 16704, 12064, 511, 63,
2997 	  WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
2998 static const struct wacom_features wacom_features_0x17 =
2999 	{ "Wacom BambooFun 4x5", 14760, 9225, 511, 63,
3000 	  WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3001 static const struct wacom_features wacom_features_0x18 =
3002 	{ "Wacom BambooFun 6x8", 21648, 13530, 511, 63,
3003 	  WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3004 static const struct wacom_features wacom_features_0x19 =
3005 	{ "Wacom Bamboo1 Medium", 16704, 12064, 511, 63,
3006 	  GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES };
3007 static const struct wacom_features wacom_features_0x60 =
3008 	{ "Wacom Volito", 5104, 3712, 511, 63,
3009 	  GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
3010 static const struct wacom_features wacom_features_0x61 =
3011 	{ "Wacom PenStation2", 3250, 2320, 255, 63,
3012 	  GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
3013 static const struct wacom_features wacom_features_0x62 =
3014 	{ "Wacom Volito2 4x5", 5104, 3712, 511, 63,
3015 	  GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
3016 static const struct wacom_features wacom_features_0x63 =
3017 	{ "Wacom Volito2 2x3", 3248, 2320, 511, 63,
3018 	  GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
3019 static const struct wacom_features wacom_features_0x64 =
3020 	{ "Wacom PenPartner2", 3250, 2320, 511, 63,
3021 	  GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES };
3022 static const struct wacom_features wacom_features_0x65 =
3023 	{ "Wacom Bamboo", 14760, 9225, 511, 63,
3024 	  WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3025 static const struct wacom_features wacom_features_0x69 =
3026 	{ "Wacom Bamboo1", 5104, 3712, 511, 63,
3027 	  GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES };
3028 static const struct wacom_features wacom_features_0x6A =
3029 	{ "Wacom Bamboo1 4x6", 14760, 9225, 1023, 63,
3030 	  GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3031 static const struct wacom_features wacom_features_0x6B =
3032 	{ "Wacom Bamboo1 5x8", 21648, 13530, 1023, 63,
3033 	  GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3034 static const struct wacom_features wacom_features_0x20 =
3035 	{ "Wacom Intuos 4x5", 12700, 10600, 1023, 31,
3036 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3037 static const struct wacom_features wacom_features_0x21 =
3038 	{ "Wacom Intuos 6x8", 20320, 16240, 1023, 31,
3039 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3040 static const struct wacom_features wacom_features_0x22 =
3041 	{ "Wacom Intuos 9x12", 30480, 24060, 1023, 31,
3042 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3043 static const struct wacom_features wacom_features_0x23 =
3044 	{ "Wacom Intuos 12x12", 30480, 31680, 1023, 31,
3045 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3046 static const struct wacom_features wacom_features_0x24 =
3047 	{ "Wacom Intuos 12x18", 45720, 31680, 1023, 31,
3048 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3049 static const struct wacom_features wacom_features_0x30 =
3050 	{ "Wacom PL400", 5408, 4056, 255, 0,
3051 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3052 static const struct wacom_features wacom_features_0x31 =
3053 	{ "Wacom PL500", 6144, 4608, 255, 0,
3054 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3055 static const struct wacom_features wacom_features_0x32 =
3056 	{ "Wacom PL600", 6126, 4604, 255, 0,
3057 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3058 static const struct wacom_features wacom_features_0x33 =
3059 	{ "Wacom PL600SX", 6260, 5016, 255, 0,
3060 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3061 static const struct wacom_features wacom_features_0x34 =
3062 	{ "Wacom PL550", 6144, 4608, 511, 0,
3063 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3064 static const struct wacom_features wacom_features_0x35 =
3065 	{ "Wacom PL800", 7220, 5780, 511, 0,
3066 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3067 static const struct wacom_features wacom_features_0x37 =
3068 	{ "Wacom PL700", 6758, 5406, 511, 0,
3069 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3070 static const struct wacom_features wacom_features_0x38 =
3071 	{ "Wacom PL510", 6282, 4762, 511, 0,
3072 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3073 static const struct wacom_features wacom_features_0x39 =
3074 	{ "Wacom DTU710", 34080, 27660, 511, 0,
3075 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3076 static const struct wacom_features wacom_features_0xC4 =
3077 	{ "Wacom DTF521", 6282, 4762, 511, 0,
3078 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3079 static const struct wacom_features wacom_features_0xC0 =
3080 	{ "Wacom DTF720", 6858, 5506, 511, 0,
3081 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3082 static const struct wacom_features wacom_features_0xC2 =
3083 	{ "Wacom DTF720a", 6858, 5506, 511, 0,
3084 	  PL, WACOM_PL_RES, WACOM_PL_RES };
3085 static const struct wacom_features wacom_features_0x03 =
3086 	{ "Wacom Cintiq Partner", 20480, 15360, 511, 0,
3087 	  PTU, WACOM_PL_RES, WACOM_PL_RES };
3088 static const struct wacom_features wacom_features_0x41 =
3089 	{ "Wacom Intuos2 4x5", 12700, 10600, 1023, 31,
3090 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3091 static const struct wacom_features wacom_features_0x42 =
3092 	{ "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3093 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3094 static const struct wacom_features wacom_features_0x43 =
3095 	{ "Wacom Intuos2 9x12", 30480, 24060, 1023, 31,
3096 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3097 static const struct wacom_features wacom_features_0x44 =
3098 	{ "Wacom Intuos2 12x12", 30480, 31680, 1023, 31,
3099 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3100 static const struct wacom_features wacom_features_0x45 =
3101 	{ "Wacom Intuos2 12x18", 45720, 31680, 1023, 31,
3102 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3103 static const struct wacom_features wacom_features_0xB0 =
3104 	{ "Wacom Intuos3 4x5", 25400, 20320, 1023, 63,
3105 	  INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
3106 static const struct wacom_features wacom_features_0xB1 =
3107 	{ "Wacom Intuos3 6x8", 40640, 30480, 1023, 63,
3108 	  INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
3109 static const struct wacom_features wacom_features_0xB2 =
3110 	{ "Wacom Intuos3 9x12", 60960, 45720, 1023, 63,
3111 	  INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
3112 static const struct wacom_features wacom_features_0xB3 =
3113 	{ "Wacom Intuos3 12x12", 60960, 60960, 1023, 63,
3114 	  INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
3115 static const struct wacom_features wacom_features_0xB4 =
3116 	{ "Wacom Intuos3 12x19", 97536, 60960, 1023, 63,
3117 	  INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
3118 static const struct wacom_features wacom_features_0xB5 =
3119 	{ "Wacom Intuos3 6x11", 54204, 31750, 1023, 63,
3120 	  INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
3121 static const struct wacom_features wacom_features_0xB7 =
3122 	{ "Wacom Intuos3 4x6", 31496, 19685, 1023, 63,
3123 	  INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 4 };
3124 static const struct wacom_features wacom_features_0xB8 =
3125 	{ "Wacom Intuos4 4x6", 31496, 19685, 2047, 63,
3126 	  INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
3127 static const struct wacom_features wacom_features_0xB9 =
3128 	{ "Wacom Intuos4 6x9", 44704, 27940, 2047, 63,
3129 	  INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
3130 static const struct wacom_features wacom_features_0xBA =
3131 	{ "Wacom Intuos4 8x13", 65024, 40640, 2047, 63,
3132 	  INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
3133 static const struct wacom_features wacom_features_0xBB =
3134 	{ "Wacom Intuos4 12x19", 97536, 60960, 2047, 63,
3135 	  INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
3136 static const struct wacom_features wacom_features_0xBC =
3137 	{ "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
3138 	  INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
3139 static const struct wacom_features wacom_features_0xBD =
3140 	{ "Wacom Intuos4 WL", 40640, 25400, 2047, 63,
3141 	  INTUOS4WL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
3142 static const struct wacom_features wacom_features_0x26 =
3143 	{ "Wacom Intuos5 touch S", 31496, 19685, 2047, 63,
3144 	  INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16 };
3145 static const struct wacom_features wacom_features_0x27 =
3146 	{ "Wacom Intuos5 touch M", 44704, 27940, 2047, 63,
3147 	  INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
3148 static const struct wacom_features wacom_features_0x28 =
3149 	{ "Wacom Intuos5 touch L", 65024, 40640, 2047, 63,
3150 	  INTUOS5L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16 };
3151 static const struct wacom_features wacom_features_0x29 =
3152 	{ "Wacom Intuos5 S", 31496, 19685, 2047, 63,
3153 	  INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7 };
3154 static const struct wacom_features wacom_features_0x2A =
3155 	{ "Wacom Intuos5 M", 44704, 27940, 2047, 63,
3156 	  INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9 };
3157 static const struct wacom_features wacom_features_0x314 =
3158 	{ "Wacom Intuos Pro S", 31496, 19685, 2047, 63,
3159 	  INTUOSPS, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 16,
3160 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3161 static const struct wacom_features wacom_features_0x315 =
3162 	{ "Wacom Intuos Pro M", 44704, 27940, 2047, 63,
3163 	  INTUOSPM, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
3164 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3165 static const struct wacom_features wacom_features_0x317 =
3166 	{ "Wacom Intuos Pro L", 65024, 40640, 2047, 63,
3167 	  INTUOSPL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9, .touch_max = 16,
3168 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3169 static const struct wacom_features wacom_features_0xF4 =
3170 	{ "Wacom Cintiq 24HD", 104080, 65200, 2047, 63,
3171 	  WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
3172 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
3173 static const struct wacom_features wacom_features_0xF8 =
3174 	{ "Wacom Cintiq 24HD touch", 104080, 65200, 2047, 63, /* Pen */
3175 	  WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 16,
3176 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3177 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf6 };
3178 static const struct wacom_features wacom_features_0xF6 =
3179 	{ "Wacom Cintiq 24HD touch", .type = WACOM_24HDT, /* Touch */
3180 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf8, .touch_max = 10,
3181 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3182 static const struct wacom_features wacom_features_0x32A =
3183 	{ "Wacom Cintiq 27QHD", 119740, 67520, 2047, 63,
3184 	  WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
3185 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
3186 static const struct wacom_features wacom_features_0x32B =
3187 	{ "Wacom Cintiq 27QHD touch", 119740, 67520, 2047, 63,
3188 	  WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 0,
3189 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3190 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32C };
3191 static const struct wacom_features wacom_features_0x32C =
3192 	{ "Wacom Cintiq 27QHD touch", .type = WACOM_27QHDT,
3193 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x32B, .touch_max = 10 };
3194 static const struct wacom_features wacom_features_0x3F =
3195 	{ "Wacom Cintiq 21UX", 87200, 65600, 1023, 63,
3196 	  CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 8 };
3197 static const struct wacom_features wacom_features_0xC5 =
3198 	{ "Wacom Cintiq 20WSX", 86680, 54180, 1023, 63,
3199 	  WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
3200 static const struct wacom_features wacom_features_0xC6 =
3201 	{ "Wacom Cintiq 12WX", 53020, 33440, 1023, 63,
3202 	  WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 10 };
3203 static const struct wacom_features wacom_features_0x304 =
3204 	{ "Wacom Cintiq 13HD", 59152, 33448, 1023, 63,
3205 	  WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
3206 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
3207 static const struct wacom_features wacom_features_0x333 =
3208 	{ "Wacom Cintiq 13HD touch", 59152, 33448, 2047, 63,
3209 	  WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
3210 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3211 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x335 };
3212 static const struct wacom_features wacom_features_0x335 =
3213 	{ "Wacom Cintiq 13HD touch", .type = WACOM_24HDT, /* Touch */
3214 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x333, .touch_max = 10,
3215 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3216 static const struct wacom_features wacom_features_0xC7 =
3217 	{ "Wacom DTU1931", 37832, 30305, 511, 0,
3218 	  PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3219 static const struct wacom_features wacom_features_0xCE =
3220 	{ "Wacom DTU2231", 47864, 27011, 511, 0,
3221 	  DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3222 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBMOUSE };
3223 static const struct wacom_features wacom_features_0xF0 =
3224 	{ "Wacom DTU1631", 34623, 19553, 511, 0,
3225 	  DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3226 static const struct wacom_features wacom_features_0xFB =
3227 	{ "Wacom DTU1031", 21896, 13760, 511, 0,
3228 	  DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
3229 	  WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
3230 static const struct wacom_features wacom_features_0x32F =
3231 	{ "Wacom DTU1031X", 22472, 12728, 511, 0,
3232 	  DTUSX, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 0,
3233 	  WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
3234 static const struct wacom_features wacom_features_0x336 =
3235 	{ "Wacom DTU1141", 23472, 13203, 1023, 0,
3236 	  DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
3237 	  WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
3238 static const struct wacom_features wacom_features_0x57 =
3239 	{ "Wacom DTK2241", 95640, 54060, 2047, 63,
3240 	  DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
3241 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
3242 static const struct wacom_features wacom_features_0x59 = /* Pen */
3243 	{ "Wacom DTH2242", 95640, 54060, 2047, 63,
3244 	  DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 6,
3245 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3246 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5D };
3247 static const struct wacom_features wacom_features_0x5D = /* Touch */
3248 	{ "Wacom DTH2242",       .type = WACOM_24HDT,
3249 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x59, .touch_max = 10,
3250 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3251 static const struct wacom_features wacom_features_0xCC =
3252 	{ "Wacom Cintiq 21UX2", 86800, 65200, 2047, 63,
3253 	  WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
3254 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
3255 static const struct wacom_features wacom_features_0xFA =
3256 	{ "Wacom Cintiq 22HD", 95440, 53860, 2047, 63,
3257 	  WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
3258 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
3259 static const struct wacom_features wacom_features_0x5B =
3260 	{ "Wacom Cintiq 22HDT", 95440, 53860, 2047, 63,
3261 	  WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 18,
3262 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3263 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5e };
3264 static const struct wacom_features wacom_features_0x5E =
3265 	{ "Wacom Cintiq 22HDT", .type = WACOM_24HDT,
3266 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5b, .touch_max = 10,
3267 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3268 static const struct wacom_features wacom_features_0x90 =
3269 	{ "Wacom ISDv4 90", 26202, 16325, 255, 0,
3270 	  TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3271 static const struct wacom_features wacom_features_0x93 =
3272 	{ "Wacom ISDv4 93", 26202, 16325, 255, 0,
3273 	  TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3274 static const struct wacom_features wacom_features_0x97 =
3275 	{ "Wacom ISDv4 97", 26202, 16325, 511, 0,
3276 	  TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3277 static const struct wacom_features wacom_features_0x9A =
3278 	{ "Wacom ISDv4 9A", 26202, 16325, 255, 0,
3279 	  TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3280 static const struct wacom_features wacom_features_0x9F =
3281 	{ "Wacom ISDv4 9F", 26202, 16325, 255, 0,
3282 	  TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3283 static const struct wacom_features wacom_features_0xE2 =
3284 	{ "Wacom ISDv4 E2", 26202, 16325, 255, 0,
3285 	  TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3286 static const struct wacom_features wacom_features_0xE3 =
3287 	{ "Wacom ISDv4 E3", 26202, 16325, 255, 0,
3288 	  TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3289 static const struct wacom_features wacom_features_0xE5 =
3290 	{ "Wacom ISDv4 E5", 26202, 16325, 255, 0,
3291 	  MTSCREEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3292 static const struct wacom_features wacom_features_0xE6 =
3293 	{ "Wacom ISDv4 E6", 27760, 15694, 255, 0,
3294 	  TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3295 static const struct wacom_features wacom_features_0xEC =
3296 	{ "Wacom ISDv4 EC", 25710, 14500, 255, 0,
3297 	  TABLETPC,    WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3298 static const struct wacom_features wacom_features_0xED =
3299 	{ "Wacom ISDv4 ED", 26202, 16325, 255, 0,
3300 	  TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3301 static const struct wacom_features wacom_features_0xEF =
3302 	{ "Wacom ISDv4 EF", 26202, 16325, 255, 0,
3303 	  TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3304 static const struct wacom_features wacom_features_0x100 =
3305 	{ "Wacom ISDv4 100", 26202, 16325, 255, 0,
3306 	  MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3307 static const struct wacom_features wacom_features_0x101 =
3308 	{ "Wacom ISDv4 101", 26202, 16325, 255, 0,
3309 	  MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3310 static const struct wacom_features wacom_features_0x10D =
3311 	{ "Wacom ISDv4 10D", 26202, 16325, 255, 0,
3312 	  MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3313 static const struct wacom_features wacom_features_0x10E =
3314 	{ "Wacom ISDv4 10E", 27760, 15694, 255, 0,
3315 	  MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3316 static const struct wacom_features wacom_features_0x10F =
3317 	{ "Wacom ISDv4 10F", 27760, 15694, 255, 0,
3318 	  MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3319 static const struct wacom_features wacom_features_0x116 =
3320 	{ "Wacom ISDv4 116", 26202, 16325, 255, 0,
3321 	  TABLETPCE, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3322 static const struct wacom_features wacom_features_0x12C =
3323 	{ "Wacom ISDv4 12C", 27848, 15752, 2047, 0,
3324 	  TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3325 static const struct wacom_features wacom_features_0x4001 =
3326 	{ "Wacom ISDv4 4001", 26202, 16325, 255, 0,
3327 	  MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3328 static const struct wacom_features wacom_features_0x4004 =
3329 	{ "Wacom ISDv4 4004", 11060, 6220, 255, 0,
3330 	  MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3331 static const struct wacom_features wacom_features_0x5000 =
3332 	{ "Wacom ISDv4 5000", 27848, 15752, 1023, 0,
3333 	  MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3334 static const struct wacom_features wacom_features_0x5002 =
3335 	{ "Wacom ISDv4 5002", 29576, 16724, 1023, 0,
3336 	  MTTPC_B, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3337 static const struct wacom_features wacom_features_0x47 =
3338 	{ "Wacom Intuos2 6x8", 20320, 16240, 1023, 31,
3339 	  INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3340 static const struct wacom_features wacom_features_0x84 =
3341 	{ "Wacom Wireless Receiver", .type = WIRELESS, .touch_max = 16 };
3342 static const struct wacom_features wacom_features_0xD0 =
3343 	{ "Wacom Bamboo 2FG", 14720, 9200, 1023, 31,
3344 	  BAMBOO_TOUCH, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3345 static const struct wacom_features wacom_features_0xD1 =
3346 	{ "Wacom Bamboo 2FG 4x5", 14720, 9200, 1023, 31,
3347 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3348 static const struct wacom_features wacom_features_0xD2 =
3349 	{ "Wacom Bamboo Craft", 14720, 9200, 1023, 31,
3350 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3351 static const struct wacom_features wacom_features_0xD3 =
3352 	{ "Wacom Bamboo 2FG 6x8", 21648, 13700, 1023, 31,
3353 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3354 static const struct wacom_features wacom_features_0xD4 =
3355 	{ "Wacom Bamboo Pen", 14720, 9200, 1023, 31,
3356 	  BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3357 static const struct wacom_features wacom_features_0xD5 =
3358 	{ "Wacom Bamboo Pen 6x8", 21648, 13700, 1023, 31,
3359 	  BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3360 static const struct wacom_features wacom_features_0xD6 =
3361 	{ "Wacom BambooPT 2FG 4x5", 14720, 9200, 1023, 31,
3362 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3363 static const struct wacom_features wacom_features_0xD7 =
3364 	{ "Wacom BambooPT 2FG Small", 14720, 9200, 1023, 31,
3365 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3366 static const struct wacom_features wacom_features_0xD8 =
3367 	{ "Wacom Bamboo Comic 2FG", 21648, 13700, 1023, 31,
3368 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3369 static const struct wacom_features wacom_features_0xDA =
3370 	{ "Wacom Bamboo 2FG 4x5 SE", 14720, 9200, 1023, 31,
3371 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3372 static const struct wacom_features wacom_features_0xDB =
3373 	{ "Wacom Bamboo 2FG 6x8 SE", 21648, 13700, 1023, 31,
3374 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 };
3375 static const struct wacom_features wacom_features_0xDD =
3376         { "Wacom Bamboo Connect", 14720, 9200, 1023, 31,
3377           BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3378 static const struct wacom_features wacom_features_0xDE =
3379         { "Wacom Bamboo 16FG 4x5", 14720, 9200, 1023, 31,
3380 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
3381 static const struct wacom_features wacom_features_0xDF =
3382         { "Wacom Bamboo 16FG 6x8", 21648, 13700, 1023, 31,
3383 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16 };
3384 static const struct wacom_features wacom_features_0x300 =
3385 	{ "Wacom Bamboo One S", 14720, 9225, 1023, 31,
3386 	  BAMBOO_PEN, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3387 static const struct wacom_features wacom_features_0x301 =
3388 	{ "Wacom Bamboo One M", 21648, 13530, 1023, 31,
3389 	  BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3390 static const struct wacom_features wacom_features_0x302 =
3391 	{ "Wacom Intuos PT S", 15200, 9500, 1023, 31,
3392 	  INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3393 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3394 static const struct wacom_features wacom_features_0x303 =
3395 	{ "Wacom Intuos PT M", 21600, 13500, 1023, 31,
3396 	  INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3397 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3398 static const struct wacom_features wacom_features_0x30E =
3399 	{ "Wacom Intuos S", 15200, 9500, 1023, 31,
3400 	  INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3401 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3402 static const struct wacom_features wacom_features_0x6004 =
3403 	{ "ISD-V4", 12800, 8000, 255, 0,
3404 	  TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
3405 static const struct wacom_features wacom_features_0x307 =
3406 	{ "Wacom ISDv5 307", 59152, 33448, 2047, 63,
3407 	  CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
3408 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3409 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x309 };
3410 static const struct wacom_features wacom_features_0x309 =
3411 	{ "Wacom ISDv5 309", .type = WACOM_24HDT, /* Touch */
3412 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x0307, .touch_max = 10,
3413 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3414 static const struct wacom_features wacom_features_0x30A =
3415 	{ "Wacom ISDv5 30A", 59152, 33448, 2047, 63,
3416 	  CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 9,
3417 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3418 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30C };
3419 static const struct wacom_features wacom_features_0x30C =
3420 	{ "Wacom ISDv5 30C", .type = WACOM_24HDT, /* Touch */
3421 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30A, .touch_max = 10,
3422 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3423 static const struct wacom_features wacom_features_0x318 =
3424 	{ "Wacom USB Bamboo PAD", 4095, 4095, /* Touch */
3425 	  .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
3426 static const struct wacom_features wacom_features_0x319 =
3427 	{ "Wacom Wireless Bamboo PAD", 4095, 4095, /* Touch */
3428 	  .type = BAMBOO_PAD, 35, 48, .touch_max = 4 };
3429 static const struct wacom_features wacom_features_0x325 =
3430 	{ "Wacom ISDv5 325", 59552, 33848, 2047, 63,
3431 	  CINTIQ_COMPANION_2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 11,
3432 	  WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
3433 	  .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x326 };
3434 static const struct wacom_features wacom_features_0x326 = /* Touch */
3435 	{ "Wacom ISDv5 326", .type = HID_GENERIC, .oVid = USB_VENDOR_ID_WACOM,
3436 	  .oPid = 0x325 };
3437 static const struct wacom_features wacom_features_0x323 =
3438 	{ "Wacom Intuos P M", 21600, 13500, 1023, 31,
3439 	  INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3440 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3441 static const struct wacom_features wacom_features_0x331 =
3442 	{ "Wacom Express Key Remote", .type = REMOTE,
3443 	  .numbered_buttons = 18, .check_for_hid_type = true,
3444 	  .hid_type = HID_TYPE_USBNONE };
3445 static const struct wacom_features wacom_features_0x33B =
3446 	{ "Wacom Intuos S 2", 15200, 9500, 2047, 63,
3447 	  INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3448 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3449 static const struct wacom_features wacom_features_0x33C =
3450 	{ "Wacom Intuos PT S 2", 15200, 9500, 2047, 63,
3451 	  INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3452 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3453 static const struct wacom_features wacom_features_0x33D =
3454 	{ "Wacom Intuos P M 2", 21600, 13500, 2047, 63,
3455 	  INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES,
3456 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3457 static const struct wacom_features wacom_features_0x33E =
3458 	{ "Wacom Intuos PT M 2", 21600, 13500, 2047, 63,
3459 	  INTUOSHT2, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 16,
3460 	  .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
3461 static const struct wacom_features wacom_features_0x343 =
3462 	{ "Wacom DTK1651", 34616, 19559, 1023, 0,
3463 	  DTUS, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4,
3464 	  WACOM_DTU_OFFSET, WACOM_DTU_OFFSET };
3465 
3466 static const struct wacom_features wacom_features_HID_ANY_ID =
3467 	{ "Wacom HID", .type = HID_GENERIC };
3468 
3469 #define USB_DEVICE_WACOM(prod)						\
3470 	HID_DEVICE(BUS_USB, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3471 	.driver_data = (kernel_ulong_t)&wacom_features_##prod
3472 
3473 #define BT_DEVICE_WACOM(prod)						\
3474 	HID_DEVICE(BUS_BLUETOOTH, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3475 	.driver_data = (kernel_ulong_t)&wacom_features_##prod
3476 
3477 #define I2C_DEVICE_WACOM(prod)						\
3478 	HID_DEVICE(BUS_I2C, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\
3479 	.driver_data = (kernel_ulong_t)&wacom_features_##prod
3480 
3481 #define USB_DEVICE_LENOVO(prod)					\
3482 	HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, prod),			\
3483 	.driver_data = (kernel_ulong_t)&wacom_features_##prod
3484 
3485 const struct hid_device_id wacom_ids[] = {
3486 	{ USB_DEVICE_WACOM(0x00) },
3487 	{ USB_DEVICE_WACOM(0x03) },
3488 	{ USB_DEVICE_WACOM(0x10) },
3489 	{ USB_DEVICE_WACOM(0x11) },
3490 	{ USB_DEVICE_WACOM(0x12) },
3491 	{ USB_DEVICE_WACOM(0x13) },
3492 	{ USB_DEVICE_WACOM(0x14) },
3493 	{ USB_DEVICE_WACOM(0x15) },
3494 	{ USB_DEVICE_WACOM(0x16) },
3495 	{ USB_DEVICE_WACOM(0x17) },
3496 	{ USB_DEVICE_WACOM(0x18) },
3497 	{ USB_DEVICE_WACOM(0x19) },
3498 	{ USB_DEVICE_WACOM(0x20) },
3499 	{ USB_DEVICE_WACOM(0x21) },
3500 	{ USB_DEVICE_WACOM(0x22) },
3501 	{ USB_DEVICE_WACOM(0x23) },
3502 	{ USB_DEVICE_WACOM(0x24) },
3503 	{ USB_DEVICE_WACOM(0x26) },
3504 	{ USB_DEVICE_WACOM(0x27) },
3505 	{ USB_DEVICE_WACOM(0x28) },
3506 	{ USB_DEVICE_WACOM(0x29) },
3507 	{ USB_DEVICE_WACOM(0x2A) },
3508 	{ USB_DEVICE_WACOM(0x30) },
3509 	{ USB_DEVICE_WACOM(0x31) },
3510 	{ USB_DEVICE_WACOM(0x32) },
3511 	{ USB_DEVICE_WACOM(0x33) },
3512 	{ USB_DEVICE_WACOM(0x34) },
3513 	{ USB_DEVICE_WACOM(0x35) },
3514 	{ USB_DEVICE_WACOM(0x37) },
3515 	{ USB_DEVICE_WACOM(0x38) },
3516 	{ USB_DEVICE_WACOM(0x39) },
3517 	{ USB_DEVICE_WACOM(0x3F) },
3518 	{ USB_DEVICE_WACOM(0x41) },
3519 	{ USB_DEVICE_WACOM(0x42) },
3520 	{ USB_DEVICE_WACOM(0x43) },
3521 	{ USB_DEVICE_WACOM(0x44) },
3522 	{ USB_DEVICE_WACOM(0x45) },
3523 	{ USB_DEVICE_WACOM(0x47) },
3524 	{ USB_DEVICE_WACOM(0x57) },
3525 	{ USB_DEVICE_WACOM(0x59) },
3526 	{ USB_DEVICE_WACOM(0x5B) },
3527 	{ USB_DEVICE_WACOM(0x5D) },
3528 	{ USB_DEVICE_WACOM(0x5E) },
3529 	{ USB_DEVICE_WACOM(0x60) },
3530 	{ USB_DEVICE_WACOM(0x61) },
3531 	{ USB_DEVICE_WACOM(0x62) },
3532 	{ USB_DEVICE_WACOM(0x63) },
3533 	{ USB_DEVICE_WACOM(0x64) },
3534 	{ USB_DEVICE_WACOM(0x65) },
3535 	{ USB_DEVICE_WACOM(0x69) },
3536 	{ USB_DEVICE_WACOM(0x6A) },
3537 	{ USB_DEVICE_WACOM(0x6B) },
3538 	{ BT_DEVICE_WACOM(0x81) },
3539 	{ USB_DEVICE_WACOM(0x84) },
3540 	{ USB_DEVICE_WACOM(0x90) },
3541 	{ USB_DEVICE_WACOM(0x93) },
3542 	{ USB_DEVICE_WACOM(0x97) },
3543 	{ USB_DEVICE_WACOM(0x9A) },
3544 	{ USB_DEVICE_WACOM(0x9F) },
3545 	{ USB_DEVICE_WACOM(0xB0) },
3546 	{ USB_DEVICE_WACOM(0xB1) },
3547 	{ USB_DEVICE_WACOM(0xB2) },
3548 	{ USB_DEVICE_WACOM(0xB3) },
3549 	{ USB_DEVICE_WACOM(0xB4) },
3550 	{ USB_DEVICE_WACOM(0xB5) },
3551 	{ USB_DEVICE_WACOM(0xB7) },
3552 	{ USB_DEVICE_WACOM(0xB8) },
3553 	{ USB_DEVICE_WACOM(0xB9) },
3554 	{ USB_DEVICE_WACOM(0xBA) },
3555 	{ USB_DEVICE_WACOM(0xBB) },
3556 	{ USB_DEVICE_WACOM(0xBC) },
3557 	{ BT_DEVICE_WACOM(0xBD) },
3558 	{ USB_DEVICE_WACOM(0xC0) },
3559 	{ USB_DEVICE_WACOM(0xC2) },
3560 	{ USB_DEVICE_WACOM(0xC4) },
3561 	{ USB_DEVICE_WACOM(0xC5) },
3562 	{ USB_DEVICE_WACOM(0xC6) },
3563 	{ USB_DEVICE_WACOM(0xC7) },
3564 	{ USB_DEVICE_WACOM(0xCC) },
3565 	{ USB_DEVICE_WACOM(0xCE) },
3566 	{ USB_DEVICE_WACOM(0xD0) },
3567 	{ USB_DEVICE_WACOM(0xD1) },
3568 	{ USB_DEVICE_WACOM(0xD2) },
3569 	{ USB_DEVICE_WACOM(0xD3) },
3570 	{ USB_DEVICE_WACOM(0xD4) },
3571 	{ USB_DEVICE_WACOM(0xD5) },
3572 	{ USB_DEVICE_WACOM(0xD6) },
3573 	{ USB_DEVICE_WACOM(0xD7) },
3574 	{ USB_DEVICE_WACOM(0xD8) },
3575 	{ USB_DEVICE_WACOM(0xDA) },
3576 	{ USB_DEVICE_WACOM(0xDB) },
3577 	{ USB_DEVICE_WACOM(0xDD) },
3578 	{ USB_DEVICE_WACOM(0xDE) },
3579 	{ USB_DEVICE_WACOM(0xDF) },
3580 	{ USB_DEVICE_WACOM(0xE2) },
3581 	{ USB_DEVICE_WACOM(0xE3) },
3582 	{ USB_DEVICE_WACOM(0xE5) },
3583 	{ USB_DEVICE_WACOM(0xE6) },
3584 	{ USB_DEVICE_WACOM(0xEC) },
3585 	{ USB_DEVICE_WACOM(0xED) },
3586 	{ USB_DEVICE_WACOM(0xEF) },
3587 	{ USB_DEVICE_WACOM(0xF0) },
3588 	{ USB_DEVICE_WACOM(0xF4) },
3589 	{ USB_DEVICE_WACOM(0xF6) },
3590 	{ USB_DEVICE_WACOM(0xF8) },
3591 	{ USB_DEVICE_WACOM(0xFA) },
3592 	{ USB_DEVICE_WACOM(0xFB) },
3593 	{ USB_DEVICE_WACOM(0x100) },
3594 	{ USB_DEVICE_WACOM(0x101) },
3595 	{ USB_DEVICE_WACOM(0x10D) },
3596 	{ USB_DEVICE_WACOM(0x10E) },
3597 	{ USB_DEVICE_WACOM(0x10F) },
3598 	{ USB_DEVICE_WACOM(0x116) },
3599 	{ USB_DEVICE_WACOM(0x12C) },
3600 	{ USB_DEVICE_WACOM(0x300) },
3601 	{ USB_DEVICE_WACOM(0x301) },
3602 	{ USB_DEVICE_WACOM(0x302) },
3603 	{ USB_DEVICE_WACOM(0x303) },
3604 	{ USB_DEVICE_WACOM(0x304) },
3605 	{ USB_DEVICE_WACOM(0x307) },
3606 	{ USB_DEVICE_WACOM(0x309) },
3607 	{ USB_DEVICE_WACOM(0x30A) },
3608 	{ USB_DEVICE_WACOM(0x30C) },
3609 	{ USB_DEVICE_WACOM(0x30E) },
3610 	{ USB_DEVICE_WACOM(0x314) },
3611 	{ USB_DEVICE_WACOM(0x315) },
3612 	{ USB_DEVICE_WACOM(0x317) },
3613 	{ USB_DEVICE_WACOM(0x318) },
3614 	{ USB_DEVICE_WACOM(0x319) },
3615 	{ USB_DEVICE_WACOM(0x323) },
3616 	{ USB_DEVICE_WACOM(0x325) },
3617 	{ USB_DEVICE_WACOM(0x326) },
3618 	{ USB_DEVICE_WACOM(0x32A) },
3619 	{ USB_DEVICE_WACOM(0x32B) },
3620 	{ USB_DEVICE_WACOM(0x32C) },
3621 	{ USB_DEVICE_WACOM(0x32F) },
3622 	{ USB_DEVICE_WACOM(0x331) },
3623 	{ USB_DEVICE_WACOM(0x333) },
3624 	{ USB_DEVICE_WACOM(0x335) },
3625 	{ USB_DEVICE_WACOM(0x336) },
3626 	{ USB_DEVICE_WACOM(0x33B) },
3627 	{ USB_DEVICE_WACOM(0x33C) },
3628 	{ USB_DEVICE_WACOM(0x33D) },
3629 	{ USB_DEVICE_WACOM(0x33E) },
3630 	{ USB_DEVICE_WACOM(0x343) },
3631 	{ USB_DEVICE_WACOM(0x4001) },
3632 	{ USB_DEVICE_WACOM(0x4004) },
3633 	{ USB_DEVICE_WACOM(0x5000) },
3634 	{ USB_DEVICE_WACOM(0x5002) },
3635 	{ USB_DEVICE_LENOVO(0x6004) },
3636 
3637 	{ USB_DEVICE_WACOM(HID_ANY_ID) },
3638 	{ I2C_DEVICE_WACOM(HID_ANY_ID) },
3639 	{ }
3640 };
3641 MODULE_DEVICE_TABLE(hid, wacom_ids);
3642