xref: /openbmc/linux/drivers/hid/wacom_sys.c (revision a6c76bb0)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * drivers/input/tablet/wacom_sys.c
4  *
5  *  USB Wacom tablet support - system specific code
6  */
7 
8 /*
9  */
10 
11 #include "wacom_wac.h"
12 #include "wacom.h"
13 #include <linux/input/mt.h>
14 
15 #define WAC_MSG_RETRIES		5
16 #define WAC_CMD_RETRIES		10
17 
18 #define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
19 #define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)
20 #define DEV_ATTR_RO_PERM (S_IRUSR | S_IRGRP)
21 
22 static int wacom_get_report(struct hid_device *hdev, u8 type, u8 *buf,
23 			    size_t size, unsigned int retries)
24 {
25 	int retval;
26 
27 	do {
28 		retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
29 				HID_REQ_GET_REPORT);
30 	} while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);
31 
32 	if (retval < 0)
33 		hid_err(hdev, "wacom_get_report: ran out of retries "
34 			"(last error = %d)\n", retval);
35 
36 	return retval;
37 }
38 
39 static int wacom_set_report(struct hid_device *hdev, u8 type, u8 *buf,
40 			    size_t size, unsigned int retries)
41 {
42 	int retval;
43 
44 	do {
45 		retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
46 				HID_REQ_SET_REPORT);
47 	} while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);
48 
49 	if (retval < 0)
50 		hid_err(hdev, "wacom_set_report: ran out of retries "
51 			"(last error = %d)\n", retval);
52 
53 	return retval;
54 }
55 
56 static void wacom_wac_queue_insert(struct hid_device *hdev,
57 				   struct kfifo_rec_ptr_2 *fifo,
58 				   u8 *raw_data, int size)
59 {
60 	bool warned = false;
61 
62 	while (kfifo_avail(fifo) < size) {
63 		if (!warned)
64 			hid_warn(hdev, "%s: kfifo has filled, starting to drop events\n", __func__);
65 		warned = true;
66 
67 		kfifo_skip(fifo);
68 	}
69 
70 	kfifo_in(fifo, raw_data, size);
71 }
72 
73 static void wacom_wac_queue_flush(struct hid_device *hdev,
74 				  struct kfifo_rec_ptr_2 *fifo)
75 {
76 	while (!kfifo_is_empty(fifo)) {
77 		u8 buf[WACOM_PKGLEN_MAX];
78 		int size;
79 		int err;
80 
81 		size = kfifo_out(fifo, buf, sizeof(buf));
82 		err = hid_report_raw_event(hdev, HID_INPUT_REPORT, buf, size, false);
83 		if (err) {
84 			hid_warn(hdev, "%s: unable to flush event due to error %d\n",
85 				 __func__, err);
86 		}
87 	}
88 }
89 
90 static int wacom_wac_pen_serial_enforce(struct hid_device *hdev,
91 		struct hid_report *report, u8 *raw_data, int report_size)
92 {
93 	struct wacom *wacom = hid_get_drvdata(hdev);
94 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
95 	struct wacom_features *features = &wacom_wac->features;
96 	bool flush = false;
97 	bool insert = false;
98 	int i, j;
99 
100 	if (wacom_wac->serial[0] || !(features->quirks & WACOM_QUIRK_TOOLSERIAL))
101 		return 0;
102 
103 	/* Queue events which have invalid tool type or serial number */
104 	for (i = 0; i < report->maxfield; i++) {
105 		for (j = 0; j < report->field[i]->maxusage; j++) {
106 			struct hid_field *field = report->field[i];
107 			struct hid_usage *usage = &field->usage[j];
108 			unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
109 			unsigned int offset;
110 			unsigned int size;
111 			unsigned int value;
112 
113 			if (equivalent_usage != HID_DG_INRANGE &&
114 			    equivalent_usage != HID_DG_TOOLSERIALNUMBER &&
115 			    equivalent_usage != WACOM_HID_WD_SERIALHI &&
116 			    equivalent_usage != WACOM_HID_WD_TOOLTYPE)
117 				continue;
118 
119 			offset = field->report_offset;
120 			size = field->report_size;
121 			value = hid_field_extract(hdev, raw_data+1, offset + j * size, size);
122 
123 			/* If we go out of range, we need to flush the queue ASAP */
124 			if (equivalent_usage == HID_DG_INRANGE)
125 				value = !value;
126 
127 			if (value) {
128 				flush = true;
129 				switch (equivalent_usage) {
130 				case HID_DG_TOOLSERIALNUMBER:
131 					wacom_wac->serial[0] = value;
132 					break;
133 
134 				case WACOM_HID_WD_SERIALHI:
135 					wacom_wac->serial[0] |= ((__u64)value) << 32;
136 					break;
137 
138 				case WACOM_HID_WD_TOOLTYPE:
139 					wacom_wac->id[0] = value;
140 					break;
141 				}
142 			}
143 			else {
144 				insert = true;
145 			}
146 		}
147 	}
148 
149 	if (flush)
150 		wacom_wac_queue_flush(hdev, &wacom_wac->pen_fifo);
151 	else if (insert)
152 		wacom_wac_queue_insert(hdev, &wacom_wac->pen_fifo,
153 				       raw_data, report_size);
154 
155 	return insert && !flush;
156 }
157 
158 static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
159 		u8 *raw_data, int size)
160 {
161 	struct wacom *wacom = hid_get_drvdata(hdev);
162 
163 	if (size > WACOM_PKGLEN_MAX)
164 		return 1;
165 
166 	if (wacom_wac_pen_serial_enforce(hdev, report, raw_data, size))
167 		return -1;
168 
169 	memcpy(wacom->wacom_wac.data, raw_data, size);
170 
171 	wacom_wac_irq(&wacom->wacom_wac, size);
172 
173 	return 0;
174 }
175 
176 static int wacom_open(struct input_dev *dev)
177 {
178 	struct wacom *wacom = input_get_drvdata(dev);
179 
180 	return hid_hw_open(wacom->hdev);
181 }
182 
183 static void wacom_close(struct input_dev *dev)
184 {
185 	struct wacom *wacom = input_get_drvdata(dev);
186 
187 	/*
188 	 * wacom->hdev should never be null, but surprisingly, I had the case
189 	 * once while unplugging the Wacom Wireless Receiver.
190 	 */
191 	if (wacom->hdev)
192 		hid_hw_close(wacom->hdev);
193 }
194 
195 /*
196  * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
197  */
198 static int wacom_calc_hid_res(int logical_extents, int physical_extents,
199 			       unsigned unit, int exponent)
200 {
201 	struct hid_field field = {
202 		.logical_maximum = logical_extents,
203 		.physical_maximum = physical_extents,
204 		.unit = unit,
205 		.unit_exponent = exponent,
206 	};
207 
208 	return hidinput_calc_abs_res(&field, ABS_X);
209 }
210 
211 static void wacom_hid_usage_quirk(struct hid_device *hdev,
212 		struct hid_field *field, struct hid_usage *usage)
213 {
214 	struct wacom *wacom = hid_get_drvdata(hdev);
215 	struct wacom_features *features = &wacom->wacom_wac.features;
216 	unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
217 
218 	/*
219 	 * The Dell Canvas 27 needs to be switched to its vendor-defined
220 	 * report to provide the best resolution.
221 	 */
222 	if (hdev->vendor == USB_VENDOR_ID_WACOM &&
223 	    hdev->product == 0x4200 &&
224 	    field->application == HID_UP_MSVENDOR) {
225 		wacom->wacom_wac.mode_report = field->report->id;
226 		wacom->wacom_wac.mode_value = 2;
227 	}
228 
229 	/*
230 	 * ISDv4 devices which predate HID's adoption of the
231 	 * HID_DG_BARELSWITCH2 usage use 0x000D0000 in its
232 	 * position instead. We can accurately detect if a
233 	 * usage with that value should be HID_DG_BARRELSWITCH2
234 	 * based on the surrounding usages, which have remained
235 	 * constant across generations.
236 	 */
237 	if (features->type == HID_GENERIC &&
238 	    usage->hid == 0x000D0000 &&
239 	    field->application == HID_DG_PEN &&
240 	    field->physical == HID_DG_STYLUS) {
241 		int i = usage->usage_index;
242 
243 		if (i-4 >= 0 && i+1 < field->maxusage &&
244 		    field->usage[i-4].hid == HID_DG_TIPSWITCH &&
245 		    field->usage[i-3].hid == HID_DG_BARRELSWITCH &&
246 		    field->usage[i-2].hid == HID_DG_ERASER &&
247 		    field->usage[i-1].hid == HID_DG_INVERT &&
248 		    field->usage[i+1].hid == HID_DG_INRANGE) {
249 			usage->hid = HID_DG_BARRELSWITCH2;
250 		}
251 	}
252 
253 	/*
254 	 * Wacom's AES devices use different vendor-defined usages to
255 	 * report serial number information compared to their branded
256 	 * hardware. The usages are also sometimes ill-defined and do
257 	 * not have the correct logical min/max values set. Lets patch
258 	 * the descriptor to use the branded usage convention and fix
259 	 * the errors.
260 	 */
261 	if (usage->hid == WACOM_HID_WT_SERIALNUMBER &&
262 	    field->report_size == 16 &&
263 	    field->index + 2 < field->report->maxfield) {
264 		struct hid_field *a = field->report->field[field->index + 1];
265 		struct hid_field *b = field->report->field[field->index + 2];
266 
267 		if (a->maxusage > 0 &&
268 		    a->usage[0].hid == HID_DG_TOOLSERIALNUMBER &&
269 		    a->report_size == 32 &&
270 		    b->maxusage > 0 &&
271 		    b->usage[0].hid == 0xFF000000 &&
272 		    b->report_size == 8) {
273 			features->quirks |= WACOM_QUIRK_AESPEN;
274 			usage->hid = WACOM_HID_WD_TOOLTYPE;
275 			field->logical_minimum = S16_MIN;
276 			field->logical_maximum = S16_MAX;
277 			a->logical_minimum = S32_MIN;
278 			a->logical_maximum = S32_MAX;
279 			b->usage[0].hid = WACOM_HID_WD_SERIALHI;
280 			b->logical_minimum = 0;
281 			b->logical_maximum = U8_MAX;
282 		}
283 	}
284 
285 	/* 2nd-generation Intuos Pro Large has incorrect Y maximum */
286 	if (hdev->vendor == USB_VENDOR_ID_WACOM &&
287 	    hdev->product == 0x0358 &&
288 	    WACOM_PEN_FIELD(field) &&
289 	    equivalent_usage == HID_GD_Y) {
290 		field->logical_maximum = 43200;
291 	}
292 }
293 
294 static void wacom_feature_mapping(struct hid_device *hdev,
295 		struct hid_field *field, struct hid_usage *usage)
296 {
297 	struct wacom *wacom = hid_get_drvdata(hdev);
298 	struct wacom_features *features = &wacom->wacom_wac.features;
299 	struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
300 	unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
301 	u8 *data;
302 	int ret;
303 	u32 n;
304 
305 	wacom_hid_usage_quirk(hdev, field, usage);
306 
307 	switch (equivalent_usage) {
308 	case WACOM_HID_WD_TOUCH_RING_SETTING:
309 		wacom->generic_has_leds = true;
310 		break;
311 	case HID_DG_CONTACTMAX:
312 		/* leave touch_max as is if predefined */
313 		if (!features->touch_max) {
314 			/* read manually */
315 			n = hid_report_len(field->report);
316 			data = hid_alloc_report_buf(field->report, GFP_KERNEL);
317 			if (!data)
318 				break;
319 			data[0] = field->report->id;
320 			ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
321 					       data, n, WAC_CMD_RETRIES);
322 			if (ret == n && features->type == HID_GENERIC) {
323 				ret = hid_report_raw_event(hdev,
324 					HID_FEATURE_REPORT, data, n, 0);
325 			} else if (ret == 2 && features->type != HID_GENERIC) {
326 				features->touch_max = data[1];
327 			} else {
328 				features->touch_max = 16;
329 				hid_warn(hdev, "wacom_feature_mapping: "
330 					 "could not get HID_DG_CONTACTMAX, "
331 					 "defaulting to %d\n",
332 					  features->touch_max);
333 			}
334 			kfree(data);
335 		}
336 		break;
337 	case HID_DG_INPUTMODE:
338 		/* Ignore if value index is out of bounds. */
339 		if (usage->usage_index >= field->report_count) {
340 			dev_err(&hdev->dev, "HID_DG_INPUTMODE out of range\n");
341 			break;
342 		}
343 
344 		hid_data->inputmode = field->report->id;
345 		hid_data->inputmode_index = usage->usage_index;
346 		break;
347 
348 	case HID_UP_DIGITIZER:
349 		if (field->report->id == 0x0B &&
350 		    (field->application == WACOM_HID_G9_PEN ||
351 		     field->application == WACOM_HID_G11_PEN)) {
352 			wacom->wacom_wac.mode_report = field->report->id;
353 			wacom->wacom_wac.mode_value = 0;
354 		}
355 		break;
356 
357 	case WACOM_HID_WD_DATAMODE:
358 		wacom->wacom_wac.mode_report = field->report->id;
359 		wacom->wacom_wac.mode_value = 2;
360 		break;
361 
362 	case WACOM_HID_UP_G9:
363 	case WACOM_HID_UP_G11:
364 		if (field->report->id == 0x03 &&
365 		    (field->application == WACOM_HID_G9_TOUCHSCREEN ||
366 		     field->application == WACOM_HID_G11_TOUCHSCREEN)) {
367 			wacom->wacom_wac.mode_report = field->report->id;
368 			wacom->wacom_wac.mode_value = 0;
369 		}
370 		break;
371 	case WACOM_HID_WD_OFFSETLEFT:
372 	case WACOM_HID_WD_OFFSETTOP:
373 	case WACOM_HID_WD_OFFSETRIGHT:
374 	case WACOM_HID_WD_OFFSETBOTTOM:
375 		/* read manually */
376 		n = hid_report_len(field->report);
377 		data = hid_alloc_report_buf(field->report, GFP_KERNEL);
378 		if (!data)
379 			break;
380 		data[0] = field->report->id;
381 		ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
382 					data, n, WAC_CMD_RETRIES);
383 		if (ret == n) {
384 			ret = hid_report_raw_event(hdev, HID_FEATURE_REPORT,
385 						   data, n, 0);
386 		} else {
387 			hid_warn(hdev, "%s: could not retrieve sensor offsets\n",
388 				 __func__);
389 		}
390 		kfree(data);
391 		break;
392 	}
393 }
394 
395 /*
396  * Interface Descriptor of wacom devices can be incomplete and
397  * inconsistent so wacom_features table is used to store stylus
398  * device's packet lengths, various maximum values, and tablet
399  * resolution based on product ID's.
400  *
401  * For devices that contain 2 interfaces, wacom_features table is
402  * inaccurate for the touch interface.  Since the Interface Descriptor
403  * for touch interfaces has pretty complete data, this function exists
404  * to query tablet for this missing information instead of hard coding in
405  * an additional table.
406  *
407  * A typical Interface Descriptor for a stylus will contain a
408  * boot mouse application collection that is not of interest and this
409  * function will ignore it.
410  *
411  * It also contains a digitizer application collection that also is not
412  * of interest since any information it contains would be duplicate
413  * of what is in wacom_features. Usually it defines a report of an array
414  * of bytes that could be used as max length of the stylus packet returned.
415  * If it happens to define a Digitizer-Stylus Physical Collection then
416  * the X and Y logical values contain valid data but it is ignored.
417  *
418  * A typical Interface Descriptor for a touch interface will contain a
419  * Digitizer-Finger Physical Collection which will define both logical
420  * X/Y maximum as well as the physical size of tablet. Since touch
421  * interfaces haven't supported pressure or distance, this is enough
422  * information to override invalid values in the wacom_features table.
423  *
424  * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
425  * data. We deal with them after returning from this function.
426  */
427 static void wacom_usage_mapping(struct hid_device *hdev,
428 		struct hid_field *field, struct hid_usage *usage)
429 {
430 	struct wacom *wacom = hid_get_drvdata(hdev);
431 	struct wacom_features *features = &wacom->wacom_wac.features;
432 	bool finger = WACOM_FINGER_FIELD(field);
433 	bool pen = WACOM_PEN_FIELD(field);
434 	unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
435 
436 	/*
437 	* Requiring Stylus Usage will ignore boot mouse
438 	* X/Y values and some cases of invalid Digitizer X/Y
439 	* values commonly reported.
440 	*/
441 	if (pen)
442 		features->device_type |= WACOM_DEVICETYPE_PEN;
443 	else if (finger)
444 		features->device_type |= WACOM_DEVICETYPE_TOUCH;
445 	else
446 		return;
447 
448 	wacom_hid_usage_quirk(hdev, field, usage);
449 
450 	switch (equivalent_usage) {
451 	case HID_GD_X:
452 		features->x_max = field->logical_maximum;
453 		if (finger) {
454 			features->x_phy = field->physical_maximum;
455 			if ((features->type != BAMBOO_PT) &&
456 			    (features->type != BAMBOO_TOUCH)) {
457 				features->unit = field->unit;
458 				features->unitExpo = field->unit_exponent;
459 			}
460 		}
461 		break;
462 	case HID_GD_Y:
463 		features->y_max = field->logical_maximum;
464 		if (finger) {
465 			features->y_phy = field->physical_maximum;
466 			if ((features->type != BAMBOO_PT) &&
467 			    (features->type != BAMBOO_TOUCH)) {
468 				features->unit = field->unit;
469 				features->unitExpo = field->unit_exponent;
470 			}
471 		}
472 		break;
473 	case HID_DG_TIPPRESSURE:
474 		if (pen)
475 			features->pressure_max = field->logical_maximum;
476 		break;
477 	}
478 
479 	if (features->type == HID_GENERIC)
480 		wacom_wac_usage_mapping(hdev, field, usage);
481 }
482 
483 static void wacom_post_parse_hid(struct hid_device *hdev,
484 				 struct wacom_features *features)
485 {
486 	struct wacom *wacom = hid_get_drvdata(hdev);
487 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
488 
489 	if (features->type == HID_GENERIC) {
490 		/* Any last-minute generic device setup */
491 		if (wacom_wac->has_mode_change) {
492 			if (wacom_wac->is_direct_mode)
493 				features->device_type |= WACOM_DEVICETYPE_DIRECT;
494 			else
495 				features->device_type &= ~WACOM_DEVICETYPE_DIRECT;
496 		}
497 
498 		if (features->touch_max > 1) {
499 			if (features->device_type & WACOM_DEVICETYPE_DIRECT)
500 				input_mt_init_slots(wacom_wac->touch_input,
501 						    wacom_wac->features.touch_max,
502 						    INPUT_MT_DIRECT);
503 			else
504 				input_mt_init_slots(wacom_wac->touch_input,
505 						    wacom_wac->features.touch_max,
506 						    INPUT_MT_POINTER);
507 		}
508 	}
509 }
510 
511 static void wacom_parse_hid(struct hid_device *hdev,
512 			   struct wacom_features *features)
513 {
514 	struct hid_report_enum *rep_enum;
515 	struct hid_report *hreport;
516 	int i, j;
517 
518 	/* check features first */
519 	rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
520 	list_for_each_entry(hreport, &rep_enum->report_list, list) {
521 		for (i = 0; i < hreport->maxfield; i++) {
522 			/* Ignore if report count is out of bounds. */
523 			if (hreport->field[i]->report_count < 1)
524 				continue;
525 
526 			for (j = 0; j < hreport->field[i]->maxusage; j++) {
527 				wacom_feature_mapping(hdev, hreport->field[i],
528 						hreport->field[i]->usage + j);
529 			}
530 		}
531 	}
532 
533 	/* now check the input usages */
534 	rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
535 	list_for_each_entry(hreport, &rep_enum->report_list, list) {
536 
537 		if (!hreport->maxfield)
538 			continue;
539 
540 		for (i = 0; i < hreport->maxfield; i++)
541 			for (j = 0; j < hreport->field[i]->maxusage; j++)
542 				wacom_usage_mapping(hdev, hreport->field[i],
543 						hreport->field[i]->usage + j);
544 	}
545 
546 	wacom_post_parse_hid(hdev, features);
547 }
548 
549 static int wacom_hid_set_device_mode(struct hid_device *hdev)
550 {
551 	struct wacom *wacom = hid_get_drvdata(hdev);
552 	struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
553 	struct hid_report *r;
554 	struct hid_report_enum *re;
555 
556 	if (hid_data->inputmode < 0)
557 		return 0;
558 
559 	re = &(hdev->report_enum[HID_FEATURE_REPORT]);
560 	r = re->report_id_hash[hid_data->inputmode];
561 	if (r) {
562 		r->field[0]->value[hid_data->inputmode_index] = 2;
563 		hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
564 	}
565 	return 0;
566 }
567 
568 static int wacom_set_device_mode(struct hid_device *hdev,
569 				 struct wacom_wac *wacom_wac)
570 {
571 	u8 *rep_data;
572 	struct hid_report *r;
573 	struct hid_report_enum *re;
574 	u32 length;
575 	int error = -ENOMEM, limit = 0;
576 
577 	if (wacom_wac->mode_report < 0)
578 		return 0;
579 
580 	re = &(hdev->report_enum[HID_FEATURE_REPORT]);
581 	r = re->report_id_hash[wacom_wac->mode_report];
582 	if (!r)
583 		return -EINVAL;
584 
585 	rep_data = hid_alloc_report_buf(r, GFP_KERNEL);
586 	if (!rep_data)
587 		return -ENOMEM;
588 
589 	length = hid_report_len(r);
590 
591 	do {
592 		rep_data[0] = wacom_wac->mode_report;
593 		rep_data[1] = wacom_wac->mode_value;
594 
595 		error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
596 					 length, 1);
597 		if (error >= 0)
598 			error = wacom_get_report(hdev, HID_FEATURE_REPORT,
599 			                         rep_data, length, 1);
600 	} while (error >= 0 &&
601 		 rep_data[1] != wacom_wac->mode_report &&
602 		 limit++ < WAC_MSG_RETRIES);
603 
604 	kfree(rep_data);
605 
606 	return error < 0 ? error : 0;
607 }
608 
609 static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
610 		struct wacom_features *features)
611 {
612 	struct wacom *wacom = hid_get_drvdata(hdev);
613 	int ret;
614 	u8 rep_data[2];
615 
616 	switch (features->type) {
617 	case GRAPHIRE_BT:
618 		rep_data[0] = 0x03;
619 		rep_data[1] = 0x00;
620 		ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
621 					3);
622 
623 		if (ret >= 0) {
624 			rep_data[0] = speed == 0 ? 0x05 : 0x06;
625 			rep_data[1] = 0x00;
626 
627 			ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
628 						rep_data, 2, 3);
629 
630 			if (ret >= 0) {
631 				wacom->wacom_wac.bt_high_speed = speed;
632 				return 0;
633 			}
634 		}
635 
636 		/*
637 		 * Note that if the raw queries fail, it's not a hard failure
638 		 * and it is safe to continue
639 		 */
640 		hid_warn(hdev, "failed to poke device, command %d, err %d\n",
641 			 rep_data[0], ret);
642 		break;
643 	case INTUOS4WL:
644 		if (speed == 1)
645 			wacom->wacom_wac.bt_features &= ~0x20;
646 		else
647 			wacom->wacom_wac.bt_features |= 0x20;
648 
649 		rep_data[0] = 0x03;
650 		rep_data[1] = wacom->wacom_wac.bt_features;
651 
652 		ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
653 					1);
654 		if (ret >= 0)
655 			wacom->wacom_wac.bt_high_speed = speed;
656 		break;
657 	}
658 
659 	return 0;
660 }
661 
662 /*
663  * Switch the tablet into its most-capable mode. Wacom tablets are
664  * typically configured to power-up in a mode which sends mouse-like
665  * reports to the OS. To get absolute position, pressure data, etc.
666  * from the tablet, it is necessary to switch the tablet out of this
667  * mode and into one which sends the full range of tablet data.
668  */
669 static int _wacom_query_tablet_data(struct wacom *wacom)
670 {
671 	struct hid_device *hdev = wacom->hdev;
672 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
673 	struct wacom_features *features = &wacom_wac->features;
674 
675 	if (hdev->bus == BUS_BLUETOOTH)
676 		return wacom_bt_query_tablet_data(hdev, 1, features);
677 
678 	if (features->type != HID_GENERIC) {
679 		if (features->device_type & WACOM_DEVICETYPE_TOUCH) {
680 			if (features->type > TABLETPC) {
681 				/* MT Tablet PC touch */
682 				wacom_wac->mode_report = 3;
683 				wacom_wac->mode_value = 4;
684 			} else if (features->type == WACOM_24HDT) {
685 				wacom_wac->mode_report = 18;
686 				wacom_wac->mode_value = 2;
687 			} else if (features->type == WACOM_27QHDT) {
688 				wacom_wac->mode_report = 131;
689 				wacom_wac->mode_value = 2;
690 			} else if (features->type == BAMBOO_PAD) {
691 				wacom_wac->mode_report = 2;
692 				wacom_wac->mode_value = 2;
693 			}
694 		} else if (features->device_type & WACOM_DEVICETYPE_PEN) {
695 			if (features->type <= BAMBOO_PT) {
696 				wacom_wac->mode_report = 2;
697 				wacom_wac->mode_value = 2;
698 			}
699 		}
700 	}
701 
702 	wacom_set_device_mode(hdev, wacom_wac);
703 
704 	if (features->type == HID_GENERIC)
705 		return wacom_hid_set_device_mode(hdev);
706 
707 	return 0;
708 }
709 
710 static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
711 					 struct wacom_features *features)
712 {
713 	struct wacom *wacom = hid_get_drvdata(hdev);
714 	struct usb_interface *intf = wacom->intf;
715 
716 	/* default features */
717 	features->x_fuzz = 4;
718 	features->y_fuzz = 4;
719 	features->pressure_fuzz = 0;
720 	features->distance_fuzz = 1;
721 	features->tilt_fuzz = 1;
722 
723 	/*
724 	 * The wireless device HID is basic and layout conflicts with
725 	 * other tablets (monitor and touch interface can look like pen).
726 	 * Skip the query for this type and modify defaults based on
727 	 * interface number.
728 	 */
729 	if (features->type == WIRELESS) {
730 		if (intf->cur_altsetting->desc.bInterfaceNumber == 0)
731 			features->device_type = WACOM_DEVICETYPE_WL_MONITOR;
732 		else
733 			features->device_type = WACOM_DEVICETYPE_NONE;
734 		return;
735 	}
736 
737 	wacom_parse_hid(hdev, features);
738 }
739 
740 struct wacom_hdev_data {
741 	struct list_head list;
742 	struct kref kref;
743 	struct hid_device *dev;
744 	struct wacom_shared shared;
745 };
746 
747 static LIST_HEAD(wacom_udev_list);
748 static DEFINE_MUTEX(wacom_udev_list_lock);
749 
750 static bool wacom_are_sibling(struct hid_device *hdev,
751 		struct hid_device *sibling)
752 {
753 	struct wacom *wacom = hid_get_drvdata(hdev);
754 	struct wacom_features *features = &wacom->wacom_wac.features;
755 	struct wacom *sibling_wacom = hid_get_drvdata(sibling);
756 	struct wacom_features *sibling_features = &sibling_wacom->wacom_wac.features;
757 	__u32 oVid = features->oVid ? features->oVid : hdev->vendor;
758 	__u32 oPid = features->oPid ? features->oPid : hdev->product;
759 
760 	/* The defined oVid/oPid must match that of the sibling */
761 	if (features->oVid != HID_ANY_ID && sibling->vendor != oVid)
762 		return false;
763 	if (features->oPid != HID_ANY_ID && sibling->product != oPid)
764 		return false;
765 
766 	/*
767 	 * Devices with the same VID/PID must share the same physical
768 	 * device path, while those with different VID/PID must share
769 	 * the same physical parent device path.
770 	 */
771 	if (hdev->vendor == sibling->vendor && hdev->product == sibling->product) {
772 		if (!hid_compare_device_paths(hdev, sibling, '/'))
773 			return false;
774 	} else {
775 		if (!hid_compare_device_paths(hdev, sibling, '.'))
776 			return false;
777 	}
778 
779 	/* Skip the remaining heuristics unless you are a HID_GENERIC device */
780 	if (features->type != HID_GENERIC)
781 		return true;
782 
783 	/*
784 	 * Direct-input devices may not be siblings of indirect-input
785 	 * devices.
786 	 */
787 	if ((features->device_type & WACOM_DEVICETYPE_DIRECT) &&
788 	    !(sibling_features->device_type & WACOM_DEVICETYPE_DIRECT))
789 		return false;
790 
791 	/*
792 	 * Indirect-input devices may not be siblings of direct-input
793 	 * devices.
794 	 */
795 	if (!(features->device_type & WACOM_DEVICETYPE_DIRECT) &&
796 	    (sibling_features->device_type & WACOM_DEVICETYPE_DIRECT))
797 		return false;
798 
799 	/* Pen devices may only be siblings of touch devices */
800 	if ((features->device_type & WACOM_DEVICETYPE_PEN) &&
801 	    !(sibling_features->device_type & WACOM_DEVICETYPE_TOUCH))
802 		return false;
803 
804 	/* Touch devices may only be siblings of pen devices */
805 	if ((features->device_type & WACOM_DEVICETYPE_TOUCH) &&
806 	    !(sibling_features->device_type & WACOM_DEVICETYPE_PEN))
807 		return false;
808 
809 	/*
810 	 * No reason could be found for these two devices to NOT be
811 	 * siblings, so there's a good chance they ARE siblings
812 	 */
813 	return true;
814 }
815 
816 static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
817 {
818 	struct wacom_hdev_data *data;
819 
820 	/* Try to find an already-probed interface from the same device */
821 	list_for_each_entry(data, &wacom_udev_list, list) {
822 		if (hid_compare_device_paths(hdev, data->dev, '/')) {
823 			kref_get(&data->kref);
824 			return data;
825 		}
826 	}
827 
828 	/* Fallback to finding devices that appear to be "siblings" */
829 	list_for_each_entry(data, &wacom_udev_list, list) {
830 		if (wacom_are_sibling(hdev, data->dev)) {
831 			kref_get(&data->kref);
832 			return data;
833 		}
834 	}
835 
836 	return NULL;
837 }
838 
839 static void wacom_release_shared_data(struct kref *kref)
840 {
841 	struct wacom_hdev_data *data =
842 		container_of(kref, struct wacom_hdev_data, kref);
843 
844 	mutex_lock(&wacom_udev_list_lock);
845 	list_del(&data->list);
846 	mutex_unlock(&wacom_udev_list_lock);
847 
848 	kfree(data);
849 }
850 
851 static void wacom_remove_shared_data(void *res)
852 {
853 	struct wacom *wacom = res;
854 	struct wacom_hdev_data *data;
855 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
856 
857 	if (wacom_wac->shared) {
858 		data = container_of(wacom_wac->shared, struct wacom_hdev_data,
859 				    shared);
860 
861 		if (wacom_wac->shared->touch == wacom->hdev)
862 			wacom_wac->shared->touch = NULL;
863 		else if (wacom_wac->shared->pen == wacom->hdev)
864 			wacom_wac->shared->pen = NULL;
865 
866 		kref_put(&data->kref, wacom_release_shared_data);
867 		wacom_wac->shared = NULL;
868 	}
869 }
870 
871 static int wacom_add_shared_data(struct hid_device *hdev)
872 {
873 	struct wacom *wacom = hid_get_drvdata(hdev);
874 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
875 	struct wacom_hdev_data *data;
876 	int retval = 0;
877 
878 	mutex_lock(&wacom_udev_list_lock);
879 
880 	data = wacom_get_hdev_data(hdev);
881 	if (!data) {
882 		data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
883 		if (!data) {
884 			retval = -ENOMEM;
885 			goto out;
886 		}
887 
888 		kref_init(&data->kref);
889 		data->dev = hdev;
890 		list_add_tail(&data->list, &wacom_udev_list);
891 	}
892 
893 	wacom_wac->shared = &data->shared;
894 
895 	retval = devm_add_action(&hdev->dev, wacom_remove_shared_data, wacom);
896 	if (retval) {
897 		mutex_unlock(&wacom_udev_list_lock);
898 		wacom_remove_shared_data(wacom);
899 		return retval;
900 	}
901 
902 	if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)
903 		wacom_wac->shared->touch = hdev;
904 	else if (wacom_wac->features.device_type & WACOM_DEVICETYPE_PEN)
905 		wacom_wac->shared->pen = hdev;
906 
907 out:
908 	mutex_unlock(&wacom_udev_list_lock);
909 	return retval;
910 }
911 
912 static int wacom_led_control(struct wacom *wacom)
913 {
914 	unsigned char *buf;
915 	int retval;
916 	unsigned char report_id = WAC_CMD_LED_CONTROL;
917 	int buf_size = 9;
918 
919 	if (!wacom->led.groups)
920 		return -ENOTSUPP;
921 
922 	if (wacom->wacom_wac.features.type == REMOTE)
923 		return -ENOTSUPP;
924 
925 	if (wacom->wacom_wac.pid) { /* wireless connected */
926 		report_id = WAC_CMD_WL_LED_CONTROL;
927 		buf_size = 13;
928 	}
929 	else if (wacom->wacom_wac.features.type == INTUOSP2_BT) {
930 		report_id = WAC_CMD_WL_INTUOSP2;
931 		buf_size = 51;
932 	}
933 	buf = kzalloc(buf_size, GFP_KERNEL);
934 	if (!buf)
935 		return -ENOMEM;
936 
937 	if (wacom->wacom_wac.features.type == HID_GENERIC) {
938 		buf[0] = WAC_CMD_LED_CONTROL_GENERIC;
939 		buf[1] = wacom->led.llv;
940 		buf[2] = wacom->led.groups[0].select & 0x03;
941 
942 	} else if ((wacom->wacom_wac.features.type >= INTUOS5S &&
943 	    wacom->wacom_wac.features.type <= INTUOSPL)) {
944 		/*
945 		 * Touch Ring and crop mark LED luminance may take on
946 		 * one of four values:
947 		 *    0 = Low; 1 = Medium; 2 = High; 3 = Off
948 		 */
949 		int ring_led = wacom->led.groups[0].select & 0x03;
950 		int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
951 		int crop_lum = 0;
952 		unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
953 
954 		buf[0] = report_id;
955 		if (wacom->wacom_wac.pid) {
956 			wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
957 					 buf, buf_size, WAC_CMD_RETRIES);
958 			buf[0] = report_id;
959 			buf[4] = led_bits;
960 		} else
961 			buf[1] = led_bits;
962 	}
963 	else if (wacom->wacom_wac.features.type == INTUOSP2_BT) {
964 		buf[0] = report_id;
965 		buf[4] = 100; // Power Connection LED (ORANGE)
966 		buf[5] = 100; // BT Connection LED (BLUE)
967 		buf[6] = 100; // Paper Mode (RED?)
968 		buf[7] = 100; // Paper Mode (GREEN?)
969 		buf[8] = 100; // Paper Mode (BLUE?)
970 		buf[9] = wacom->led.llv;
971 		buf[10] = wacom->led.groups[0].select & 0x03;
972 	}
973 	else {
974 		int led = wacom->led.groups[0].select | 0x4;
975 
976 		if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
977 		    wacom->wacom_wac.features.type == WACOM_24HD)
978 			led |= (wacom->led.groups[1].select << 4) | 0x40;
979 
980 		buf[0] = report_id;
981 		buf[1] = led;
982 		buf[2] = wacom->led.llv;
983 		buf[3] = wacom->led.hlv;
984 		buf[4] = wacom->led.img_lum;
985 	}
986 
987 	retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
988 				  WAC_CMD_RETRIES);
989 	kfree(buf);
990 
991 	return retval;
992 }
993 
994 static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
995 		const unsigned len, const void *img)
996 {
997 	unsigned char *buf;
998 	int i, retval;
999 	const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
1000 
1001 	buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
1002 	if (!buf)
1003 		return -ENOMEM;
1004 
1005 	/* Send 'start' command */
1006 	buf[0] = WAC_CMD_ICON_START;
1007 	buf[1] = 1;
1008 	retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
1009 				  WAC_CMD_RETRIES);
1010 	if (retval < 0)
1011 		goto out;
1012 
1013 	buf[0] = xfer_id;
1014 	buf[1] = button_id & 0x07;
1015 	for (i = 0; i < 4; i++) {
1016 		buf[2] = i;
1017 		memcpy(buf + 3, img + i * chunk_len, chunk_len);
1018 
1019 		retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
1020 					  buf, chunk_len + 3, WAC_CMD_RETRIES);
1021 		if (retval < 0)
1022 			break;
1023 	}
1024 
1025 	/* Send 'stop' */
1026 	buf[0] = WAC_CMD_ICON_START;
1027 	buf[1] = 0;
1028 	wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
1029 			 WAC_CMD_RETRIES);
1030 
1031 out:
1032 	kfree(buf);
1033 	return retval;
1034 }
1035 
1036 static ssize_t wacom_led_select_store(struct device *dev, int set_id,
1037 				      const char *buf, size_t count)
1038 {
1039 	struct hid_device *hdev = to_hid_device(dev);
1040 	struct wacom *wacom = hid_get_drvdata(hdev);
1041 	unsigned int id;
1042 	int err;
1043 
1044 	err = kstrtouint(buf, 10, &id);
1045 	if (err)
1046 		return err;
1047 
1048 	mutex_lock(&wacom->lock);
1049 
1050 	wacom->led.groups[set_id].select = id & 0x3;
1051 	err = wacom_led_control(wacom);
1052 
1053 	mutex_unlock(&wacom->lock);
1054 
1055 	return err < 0 ? err : count;
1056 }
1057 
1058 #define DEVICE_LED_SELECT_ATTR(SET_ID)					\
1059 static ssize_t wacom_led##SET_ID##_select_store(struct device *dev,	\
1060 	struct device_attribute *attr, const char *buf, size_t count)	\
1061 {									\
1062 	return wacom_led_select_store(dev, SET_ID, buf, count);		\
1063 }									\
1064 static ssize_t wacom_led##SET_ID##_select_show(struct device *dev,	\
1065 	struct device_attribute *attr, char *buf)			\
1066 {									\
1067 	struct hid_device *hdev = to_hid_device(dev);\
1068 	struct wacom *wacom = hid_get_drvdata(hdev);			\
1069 	return scnprintf(buf, PAGE_SIZE, "%d\n",			\
1070 			 wacom->led.groups[SET_ID].select);		\
1071 }									\
1072 static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM,	\
1073 		    wacom_led##SET_ID##_select_show,			\
1074 		    wacom_led##SET_ID##_select_store)
1075 
1076 DEVICE_LED_SELECT_ATTR(0);
1077 DEVICE_LED_SELECT_ATTR(1);
1078 
1079 static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
1080 				     const char *buf, size_t count)
1081 {
1082 	unsigned int value;
1083 	int err;
1084 
1085 	err = kstrtouint(buf, 10, &value);
1086 	if (err)
1087 		return err;
1088 
1089 	mutex_lock(&wacom->lock);
1090 
1091 	*dest = value & 0x7f;
1092 	err = wacom_led_control(wacom);
1093 
1094 	mutex_unlock(&wacom->lock);
1095 
1096 	return err < 0 ? err : count;
1097 }
1098 
1099 #define DEVICE_LUMINANCE_ATTR(name, field)				\
1100 static ssize_t wacom_##name##_luminance_store(struct device *dev,	\
1101 	struct device_attribute *attr, const char *buf, size_t count)	\
1102 {									\
1103 	struct hid_device *hdev = to_hid_device(dev);\
1104 	struct wacom *wacom = hid_get_drvdata(hdev);			\
1105 									\
1106 	return wacom_luminance_store(wacom, &wacom->led.field,		\
1107 				     buf, count);			\
1108 }									\
1109 static ssize_t wacom_##name##_luminance_show(struct device *dev,	\
1110 	struct device_attribute *attr, char *buf)			\
1111 {									\
1112 	struct wacom *wacom = dev_get_drvdata(dev);			\
1113 	return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field);	\
1114 }									\
1115 static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM,			\
1116 		   wacom_##name##_luminance_show,			\
1117 		   wacom_##name##_luminance_store)
1118 
1119 DEVICE_LUMINANCE_ATTR(status0, llv);
1120 DEVICE_LUMINANCE_ATTR(status1, hlv);
1121 DEVICE_LUMINANCE_ATTR(buttons, img_lum);
1122 
1123 static ssize_t wacom_button_image_store(struct device *dev, int button_id,
1124 					const char *buf, size_t count)
1125 {
1126 	struct hid_device *hdev = to_hid_device(dev);
1127 	struct wacom *wacom = hid_get_drvdata(hdev);
1128 	int err;
1129 	unsigned len;
1130 	u8 xfer_id;
1131 
1132 	if (hdev->bus == BUS_BLUETOOTH) {
1133 		len = 256;
1134 		xfer_id = WAC_CMD_ICON_BT_XFER;
1135 	} else {
1136 		len = 1024;
1137 		xfer_id = WAC_CMD_ICON_XFER;
1138 	}
1139 
1140 	if (count != len)
1141 		return -EINVAL;
1142 
1143 	mutex_lock(&wacom->lock);
1144 
1145 	err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
1146 
1147 	mutex_unlock(&wacom->lock);
1148 
1149 	return err < 0 ? err : count;
1150 }
1151 
1152 #define DEVICE_BTNIMG_ATTR(BUTTON_ID)					\
1153 static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev,	\
1154 	struct device_attribute *attr, const char *buf, size_t count)	\
1155 {									\
1156 	return wacom_button_image_store(dev, BUTTON_ID, buf, count);	\
1157 }									\
1158 static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM,	\
1159 		   NULL, wacom_btnimg##BUTTON_ID##_store)
1160 
1161 DEVICE_BTNIMG_ATTR(0);
1162 DEVICE_BTNIMG_ATTR(1);
1163 DEVICE_BTNIMG_ATTR(2);
1164 DEVICE_BTNIMG_ATTR(3);
1165 DEVICE_BTNIMG_ATTR(4);
1166 DEVICE_BTNIMG_ATTR(5);
1167 DEVICE_BTNIMG_ATTR(6);
1168 DEVICE_BTNIMG_ATTR(7);
1169 
1170 static struct attribute *cintiq_led_attrs[] = {
1171 	&dev_attr_status_led0_select.attr,
1172 	&dev_attr_status_led1_select.attr,
1173 	NULL
1174 };
1175 
1176 static const struct attribute_group cintiq_led_attr_group = {
1177 	.name = "wacom_led",
1178 	.attrs = cintiq_led_attrs,
1179 };
1180 
1181 static struct attribute *intuos4_led_attrs[] = {
1182 	&dev_attr_status0_luminance.attr,
1183 	&dev_attr_status1_luminance.attr,
1184 	&dev_attr_status_led0_select.attr,
1185 	&dev_attr_buttons_luminance.attr,
1186 	&dev_attr_button0_rawimg.attr,
1187 	&dev_attr_button1_rawimg.attr,
1188 	&dev_attr_button2_rawimg.attr,
1189 	&dev_attr_button3_rawimg.attr,
1190 	&dev_attr_button4_rawimg.attr,
1191 	&dev_attr_button5_rawimg.attr,
1192 	&dev_attr_button6_rawimg.attr,
1193 	&dev_attr_button7_rawimg.attr,
1194 	NULL
1195 };
1196 
1197 static const struct attribute_group intuos4_led_attr_group = {
1198 	.name = "wacom_led",
1199 	.attrs = intuos4_led_attrs,
1200 };
1201 
1202 static struct attribute *intuos5_led_attrs[] = {
1203 	&dev_attr_status0_luminance.attr,
1204 	&dev_attr_status_led0_select.attr,
1205 	NULL
1206 };
1207 
1208 static const struct attribute_group intuos5_led_attr_group = {
1209 	.name = "wacom_led",
1210 	.attrs = intuos5_led_attrs,
1211 };
1212 
1213 static struct attribute *generic_led_attrs[] = {
1214 	&dev_attr_status0_luminance.attr,
1215 	&dev_attr_status_led0_select.attr,
1216 	NULL
1217 };
1218 
1219 static const struct attribute_group generic_led_attr_group = {
1220 	.name = "wacom_led",
1221 	.attrs = generic_led_attrs,
1222 };
1223 
1224 struct wacom_sysfs_group_devres {
1225 	const struct attribute_group *group;
1226 	struct kobject *root;
1227 };
1228 
1229 static void wacom_devm_sysfs_group_release(struct device *dev, void *res)
1230 {
1231 	struct wacom_sysfs_group_devres *devres = res;
1232 	struct kobject *kobj = devres->root;
1233 
1234 	dev_dbg(dev, "%s: dropping reference to %s\n",
1235 		__func__, devres->group->name);
1236 	sysfs_remove_group(kobj, devres->group);
1237 }
1238 
1239 static int __wacom_devm_sysfs_create_group(struct wacom *wacom,
1240 					   struct kobject *root,
1241 					   const struct attribute_group *group)
1242 {
1243 	struct wacom_sysfs_group_devres *devres;
1244 	int error;
1245 
1246 	devres = devres_alloc(wacom_devm_sysfs_group_release,
1247 			      sizeof(struct wacom_sysfs_group_devres),
1248 			      GFP_KERNEL);
1249 	if (!devres)
1250 		return -ENOMEM;
1251 
1252 	devres->group = group;
1253 	devres->root = root;
1254 
1255 	error = sysfs_create_group(devres->root, group);
1256 	if (error) {
1257 		devres_free(devres);
1258 		return error;
1259 	}
1260 
1261 	devres_add(&wacom->hdev->dev, devres);
1262 
1263 	return 0;
1264 }
1265 
1266 static int wacom_devm_sysfs_create_group(struct wacom *wacom,
1267 					 const struct attribute_group *group)
1268 {
1269 	return __wacom_devm_sysfs_create_group(wacom, &wacom->hdev->dev.kobj,
1270 					       group);
1271 }
1272 
1273 static void wacom_devm_kfifo_release(struct device *dev, void *res)
1274 {
1275 	struct kfifo_rec_ptr_2 *devres = res;
1276 
1277 	kfifo_free(devres);
1278 }
1279 
1280 static int wacom_devm_kfifo_alloc(struct wacom *wacom)
1281 {
1282 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1283 	struct kfifo_rec_ptr_2 *pen_fifo = &wacom_wac->pen_fifo;
1284 	int error;
1285 
1286 	pen_fifo = devres_alloc(wacom_devm_kfifo_release,
1287 			      sizeof(struct kfifo_rec_ptr_2),
1288 			      GFP_KERNEL);
1289 
1290 	if (!pen_fifo)
1291 		return -ENOMEM;
1292 
1293 	error = kfifo_alloc(pen_fifo, WACOM_PKGLEN_MAX, GFP_KERNEL);
1294 	if (error) {
1295 		devres_free(pen_fifo);
1296 		return error;
1297 	}
1298 
1299 	devres_add(&wacom->hdev->dev, pen_fifo);
1300 
1301 	return 0;
1302 }
1303 
1304 enum led_brightness wacom_leds_brightness_get(struct wacom_led *led)
1305 {
1306 	struct wacom *wacom = led->wacom;
1307 
1308 	if (wacom->led.max_hlv)
1309 		return led->hlv * LED_FULL / wacom->led.max_hlv;
1310 
1311 	if (wacom->led.max_llv)
1312 		return led->llv * LED_FULL / wacom->led.max_llv;
1313 
1314 	/* device doesn't support brightness tuning */
1315 	return LED_FULL;
1316 }
1317 
1318 static enum led_brightness __wacom_led_brightness_get(struct led_classdev *cdev)
1319 {
1320 	struct wacom_led *led = container_of(cdev, struct wacom_led, cdev);
1321 	struct wacom *wacom = led->wacom;
1322 
1323 	if (wacom->led.groups[led->group].select != led->id)
1324 		return LED_OFF;
1325 
1326 	return wacom_leds_brightness_get(led);
1327 }
1328 
1329 static int wacom_led_brightness_set(struct led_classdev *cdev,
1330 				    enum led_brightness brightness)
1331 {
1332 	struct wacom_led *led = container_of(cdev, struct wacom_led, cdev);
1333 	struct wacom *wacom = led->wacom;
1334 	int error;
1335 
1336 	mutex_lock(&wacom->lock);
1337 
1338 	if (!wacom->led.groups || (brightness == LED_OFF &&
1339 	    wacom->led.groups[led->group].select != led->id)) {
1340 		error = 0;
1341 		goto out;
1342 	}
1343 
1344 	led->llv = wacom->led.llv = wacom->led.max_llv * brightness / LED_FULL;
1345 	led->hlv = wacom->led.hlv = wacom->led.max_hlv * brightness / LED_FULL;
1346 
1347 	wacom->led.groups[led->group].select = led->id;
1348 
1349 	error = wacom_led_control(wacom);
1350 
1351 out:
1352 	mutex_unlock(&wacom->lock);
1353 
1354 	return error;
1355 }
1356 
1357 static void wacom_led_readonly_brightness_set(struct led_classdev *cdev,
1358 					       enum led_brightness brightness)
1359 {
1360 }
1361 
1362 static int wacom_led_register_one(struct device *dev, struct wacom *wacom,
1363 				  struct wacom_led *led, unsigned int group,
1364 				  unsigned int id, bool read_only)
1365 {
1366 	int error;
1367 	char *name;
1368 
1369 	name = devm_kasprintf(dev, GFP_KERNEL,
1370 			      "%s::wacom-%d.%d",
1371 			      dev_name(dev),
1372 			      group,
1373 			      id);
1374 	if (!name)
1375 		return -ENOMEM;
1376 
1377 	if (!read_only) {
1378 		led->trigger.name = name;
1379 		error = devm_led_trigger_register(dev, &led->trigger);
1380 		if (error) {
1381 			hid_err(wacom->hdev,
1382 				"failed to register LED trigger %s: %d\n",
1383 				led->cdev.name, error);
1384 			return error;
1385 		}
1386 	}
1387 
1388 	led->group = group;
1389 	led->id = id;
1390 	led->wacom = wacom;
1391 	led->llv = wacom->led.llv;
1392 	led->hlv = wacom->led.hlv;
1393 	led->cdev.name = name;
1394 	led->cdev.max_brightness = LED_FULL;
1395 	led->cdev.flags = LED_HW_PLUGGABLE;
1396 	led->cdev.brightness_get = __wacom_led_brightness_get;
1397 	if (!read_only) {
1398 		led->cdev.brightness_set_blocking = wacom_led_brightness_set;
1399 		led->cdev.default_trigger = led->cdev.name;
1400 	} else {
1401 		led->cdev.brightness_set = wacom_led_readonly_brightness_set;
1402 	}
1403 
1404 	error = devm_led_classdev_register(dev, &led->cdev);
1405 	if (error) {
1406 		hid_err(wacom->hdev,
1407 			"failed to register LED %s: %d\n",
1408 			led->cdev.name, error);
1409 		led->cdev.name = NULL;
1410 		return error;
1411 	}
1412 
1413 	return 0;
1414 }
1415 
1416 static void wacom_led_groups_release_one(void *data)
1417 {
1418 	struct wacom_group_leds *group = data;
1419 
1420 	devres_release_group(group->dev, group);
1421 }
1422 
1423 static int wacom_led_groups_alloc_and_register_one(struct device *dev,
1424 						   struct wacom *wacom,
1425 						   int group_id, int count,
1426 						   bool read_only)
1427 {
1428 	struct wacom_led *leds;
1429 	int i, error;
1430 
1431 	if (group_id >= wacom->led.count || count <= 0)
1432 		return -EINVAL;
1433 
1434 	if (!devres_open_group(dev, &wacom->led.groups[group_id], GFP_KERNEL))
1435 		return -ENOMEM;
1436 
1437 	leds = devm_kcalloc(dev, count, sizeof(struct wacom_led), GFP_KERNEL);
1438 	if (!leds) {
1439 		error = -ENOMEM;
1440 		goto err;
1441 	}
1442 
1443 	wacom->led.groups[group_id].leds = leds;
1444 	wacom->led.groups[group_id].count = count;
1445 
1446 	for (i = 0; i < count; i++) {
1447 		error = wacom_led_register_one(dev, wacom, &leds[i],
1448 					       group_id, i, read_only);
1449 		if (error)
1450 			goto err;
1451 	}
1452 
1453 	wacom->led.groups[group_id].dev = dev;
1454 
1455 	devres_close_group(dev, &wacom->led.groups[group_id]);
1456 
1457 	/*
1458 	 * There is a bug (?) in devm_led_classdev_register() in which its
1459 	 * increments the refcount of the parent. If the parent is an input
1460 	 * device, that means the ref count never reaches 0 when
1461 	 * devm_input_device_release() gets called.
1462 	 * This means that the LEDs are still there after disconnect.
1463 	 * Manually force the release of the group so that the leds are released
1464 	 * once we are done using them.
1465 	 */
1466 	error = devm_add_action_or_reset(&wacom->hdev->dev,
1467 					 wacom_led_groups_release_one,
1468 					 &wacom->led.groups[group_id]);
1469 	if (error)
1470 		return error;
1471 
1472 	return 0;
1473 
1474 err:
1475 	devres_release_group(dev, &wacom->led.groups[group_id]);
1476 	return error;
1477 }
1478 
1479 struct wacom_led *wacom_led_find(struct wacom *wacom, unsigned int group_id,
1480 				 unsigned int id)
1481 {
1482 	struct wacom_group_leds *group;
1483 
1484 	if (group_id >= wacom->led.count)
1485 		return NULL;
1486 
1487 	group = &wacom->led.groups[group_id];
1488 
1489 	if (!group->leds)
1490 		return NULL;
1491 
1492 	id %= group->count;
1493 
1494 	return &group->leds[id];
1495 }
1496 
1497 /**
1498  * wacom_led_next: gives the next available led with a wacom trigger.
1499  *
1500  * returns the next available struct wacom_led which has its default trigger
1501  * or the current one if none is available.
1502  */
1503 struct wacom_led *wacom_led_next(struct wacom *wacom, struct wacom_led *cur)
1504 {
1505 	struct wacom_led *next_led;
1506 	int group, next;
1507 
1508 	if (!wacom || !cur)
1509 		return NULL;
1510 
1511 	group = cur->group;
1512 	next = cur->id;
1513 
1514 	do {
1515 		next_led = wacom_led_find(wacom, group, ++next);
1516 		if (!next_led || next_led == cur)
1517 			return next_led;
1518 	} while (next_led->cdev.trigger != &next_led->trigger);
1519 
1520 	return next_led;
1521 }
1522 
1523 static void wacom_led_groups_release(void *data)
1524 {
1525 	struct wacom *wacom = data;
1526 
1527 	wacom->led.groups = NULL;
1528 	wacom->led.count = 0;
1529 }
1530 
1531 static int wacom_led_groups_allocate(struct wacom *wacom, int count)
1532 {
1533 	struct device *dev = &wacom->hdev->dev;
1534 	struct wacom_group_leds *groups;
1535 	int error;
1536 
1537 	groups = devm_kcalloc(dev, count, sizeof(struct wacom_group_leds),
1538 			      GFP_KERNEL);
1539 	if (!groups)
1540 		return -ENOMEM;
1541 
1542 	error = devm_add_action_or_reset(dev, wacom_led_groups_release, wacom);
1543 	if (error)
1544 		return error;
1545 
1546 	wacom->led.groups = groups;
1547 	wacom->led.count = count;
1548 
1549 	return 0;
1550 }
1551 
1552 static int wacom_leds_alloc_and_register(struct wacom *wacom, int group_count,
1553 					 int led_per_group, bool read_only)
1554 {
1555 	struct device *dev;
1556 	int i, error;
1557 
1558 	if (!wacom->wacom_wac.pad_input)
1559 		return -EINVAL;
1560 
1561 	dev = &wacom->wacom_wac.pad_input->dev;
1562 
1563 	error = wacom_led_groups_allocate(wacom, group_count);
1564 	if (error)
1565 		return error;
1566 
1567 	for (i = 0; i < group_count; i++) {
1568 		error = wacom_led_groups_alloc_and_register_one(dev, wacom, i,
1569 								led_per_group,
1570 								read_only);
1571 		if (error)
1572 			return error;
1573 	}
1574 
1575 	return 0;
1576 }
1577 
1578 int wacom_initialize_leds(struct wacom *wacom)
1579 {
1580 	int error;
1581 
1582 	if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
1583 		return 0;
1584 
1585 	/* Initialize default values */
1586 	switch (wacom->wacom_wac.features.type) {
1587 	case HID_GENERIC:
1588 		if (!wacom->generic_has_leds)
1589 			return 0;
1590 		wacom->led.llv = 100;
1591 		wacom->led.max_llv = 100;
1592 
1593 		error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1594 		if (error) {
1595 			hid_err(wacom->hdev,
1596 				"cannot create leds err: %d\n", error);
1597 			return error;
1598 		}
1599 
1600 		error = wacom_devm_sysfs_create_group(wacom,
1601 						      &generic_led_attr_group);
1602 		break;
1603 
1604 	case INTUOS4S:
1605 	case INTUOS4:
1606 	case INTUOS4WL:
1607 	case INTUOS4L:
1608 		wacom->led.llv = 10;
1609 		wacom->led.hlv = 20;
1610 		wacom->led.max_llv = 127;
1611 		wacom->led.max_hlv = 127;
1612 		wacom->led.img_lum = 10;
1613 
1614 		error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1615 		if (error) {
1616 			hid_err(wacom->hdev,
1617 				"cannot create leds err: %d\n", error);
1618 			return error;
1619 		}
1620 
1621 		error = wacom_devm_sysfs_create_group(wacom,
1622 						      &intuos4_led_attr_group);
1623 		break;
1624 
1625 	case WACOM_24HD:
1626 	case WACOM_21UX2:
1627 		wacom->led.llv = 0;
1628 		wacom->led.hlv = 0;
1629 		wacom->led.img_lum = 0;
1630 
1631 		error = wacom_leds_alloc_and_register(wacom, 2, 4, false);
1632 		if (error) {
1633 			hid_err(wacom->hdev,
1634 				"cannot create leds err: %d\n", error);
1635 			return error;
1636 		}
1637 
1638 		error = wacom_devm_sysfs_create_group(wacom,
1639 						      &cintiq_led_attr_group);
1640 		break;
1641 
1642 	case INTUOS5S:
1643 	case INTUOS5:
1644 	case INTUOS5L:
1645 	case INTUOSPS:
1646 	case INTUOSPM:
1647 	case INTUOSPL:
1648 		wacom->led.llv = 32;
1649 		wacom->led.max_llv = 96;
1650 
1651 		error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1652 		if (error) {
1653 			hid_err(wacom->hdev,
1654 				"cannot create leds err: %d\n", error);
1655 			return error;
1656 		}
1657 
1658 		error = wacom_devm_sysfs_create_group(wacom,
1659 						      &intuos5_led_attr_group);
1660 		break;
1661 
1662 	case INTUOSP2_BT:
1663 		wacom->led.llv = 50;
1664 		wacom->led.max_llv = 100;
1665 		error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1666 		if (error) {
1667 			hid_err(wacom->hdev,
1668 				"cannot create leds err: %d\n", error);
1669 			return error;
1670 		}
1671 		return 0;
1672 
1673 	case REMOTE:
1674 		wacom->led.llv = 255;
1675 		wacom->led.max_llv = 255;
1676 		error = wacom_led_groups_allocate(wacom, 5);
1677 		if (error) {
1678 			hid_err(wacom->hdev,
1679 				"cannot create leds err: %d\n", error);
1680 			return error;
1681 		}
1682 		return 0;
1683 
1684 	default:
1685 		return 0;
1686 	}
1687 
1688 	if (error) {
1689 		hid_err(wacom->hdev,
1690 			"cannot create sysfs group err: %d\n", error);
1691 		return error;
1692 	}
1693 
1694 	return 0;
1695 }
1696 
1697 static void wacom_init_work(struct work_struct *work)
1698 {
1699 	struct wacom *wacom = container_of(work, struct wacom, init_work.work);
1700 
1701 	_wacom_query_tablet_data(wacom);
1702 	wacom_led_control(wacom);
1703 }
1704 
1705 static void wacom_query_tablet_data(struct wacom *wacom)
1706 {
1707 	schedule_delayed_work(&wacom->init_work, msecs_to_jiffies(1000));
1708 }
1709 
1710 static enum power_supply_property wacom_battery_props[] = {
1711 	POWER_SUPPLY_PROP_MODEL_NAME,
1712 	POWER_SUPPLY_PROP_PRESENT,
1713 	POWER_SUPPLY_PROP_STATUS,
1714 	POWER_SUPPLY_PROP_SCOPE,
1715 	POWER_SUPPLY_PROP_CAPACITY
1716 };
1717 
1718 static int wacom_battery_get_property(struct power_supply *psy,
1719 				      enum power_supply_property psp,
1720 				      union power_supply_propval *val)
1721 {
1722 	struct wacom_battery *battery = power_supply_get_drvdata(psy);
1723 	int ret = 0;
1724 
1725 	switch (psp) {
1726 		case POWER_SUPPLY_PROP_MODEL_NAME:
1727 			val->strval = battery->wacom->wacom_wac.name;
1728 			break;
1729 		case POWER_SUPPLY_PROP_PRESENT:
1730 			val->intval = battery->bat_connected;
1731 			break;
1732 		case POWER_SUPPLY_PROP_SCOPE:
1733 			val->intval = POWER_SUPPLY_SCOPE_DEVICE;
1734 			break;
1735 		case POWER_SUPPLY_PROP_CAPACITY:
1736 			val->intval = battery->battery_capacity;
1737 			break;
1738 		case POWER_SUPPLY_PROP_STATUS:
1739 			if (battery->bat_status != WACOM_POWER_SUPPLY_STATUS_AUTO)
1740 				val->intval = battery->bat_status;
1741 			else if (battery->bat_charging)
1742 				val->intval = POWER_SUPPLY_STATUS_CHARGING;
1743 			else if (battery->battery_capacity == 100 &&
1744 				    battery->ps_connected)
1745 				val->intval = POWER_SUPPLY_STATUS_FULL;
1746 			else if (battery->ps_connected)
1747 				val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
1748 			else
1749 				val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
1750 			break;
1751 		default:
1752 			ret = -EINVAL;
1753 			break;
1754 	}
1755 
1756 	return ret;
1757 }
1758 
1759 static int __wacom_initialize_battery(struct wacom *wacom,
1760 				      struct wacom_battery *battery)
1761 {
1762 	static atomic_t battery_no = ATOMIC_INIT(0);
1763 	struct device *dev = &wacom->hdev->dev;
1764 	struct power_supply_config psy_cfg = { .drv_data = battery, };
1765 	struct power_supply *ps_bat;
1766 	struct power_supply_desc *bat_desc = &battery->bat_desc;
1767 	unsigned long n;
1768 	int error;
1769 
1770 	if (!devres_open_group(dev, bat_desc, GFP_KERNEL))
1771 		return -ENOMEM;
1772 
1773 	battery->wacom = wacom;
1774 
1775 	n = atomic_inc_return(&battery_no) - 1;
1776 
1777 	bat_desc->properties = wacom_battery_props;
1778 	bat_desc->num_properties = ARRAY_SIZE(wacom_battery_props);
1779 	bat_desc->get_property = wacom_battery_get_property;
1780 	sprintf(battery->bat_name, "wacom_battery_%ld", n);
1781 	bat_desc->name = battery->bat_name;
1782 	bat_desc->type = POWER_SUPPLY_TYPE_USB;
1783 	bat_desc->use_for_apm = 0;
1784 
1785 	ps_bat = devm_power_supply_register(dev, bat_desc, &psy_cfg);
1786 	if (IS_ERR(ps_bat)) {
1787 		error = PTR_ERR(ps_bat);
1788 		goto err;
1789 	}
1790 
1791 	power_supply_powers(ps_bat, &wacom->hdev->dev);
1792 
1793 	battery->battery = ps_bat;
1794 
1795 	devres_close_group(dev, bat_desc);
1796 	return 0;
1797 
1798 err:
1799 	devres_release_group(dev, bat_desc);
1800 	return error;
1801 }
1802 
1803 static int wacom_initialize_battery(struct wacom *wacom)
1804 {
1805 	if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY)
1806 		return __wacom_initialize_battery(wacom, &wacom->battery);
1807 
1808 	return 0;
1809 }
1810 
1811 static void wacom_destroy_battery(struct wacom *wacom)
1812 {
1813 	if (wacom->battery.battery) {
1814 		devres_release_group(&wacom->hdev->dev,
1815 				     &wacom->battery.bat_desc);
1816 		wacom->battery.battery = NULL;
1817 	}
1818 }
1819 
1820 static ssize_t wacom_show_speed(struct device *dev,
1821 				struct device_attribute
1822 				*attr, char *buf)
1823 {
1824 	struct hid_device *hdev = to_hid_device(dev);
1825 	struct wacom *wacom = hid_get_drvdata(hdev);
1826 
1827 	return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
1828 }
1829 
1830 static ssize_t wacom_store_speed(struct device *dev,
1831 				struct device_attribute *attr,
1832 				const char *buf, size_t count)
1833 {
1834 	struct hid_device *hdev = to_hid_device(dev);
1835 	struct wacom *wacom = hid_get_drvdata(hdev);
1836 	u8 new_speed;
1837 
1838 	if (kstrtou8(buf, 0, &new_speed))
1839 		return -EINVAL;
1840 
1841 	if (new_speed != 0 && new_speed != 1)
1842 		return -EINVAL;
1843 
1844 	wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
1845 
1846 	return count;
1847 }
1848 
1849 static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
1850 		wacom_show_speed, wacom_store_speed);
1851 
1852 
1853 static ssize_t wacom_show_remote_mode(struct kobject *kobj,
1854 				      struct kobj_attribute *kattr,
1855 				      char *buf, int index)
1856 {
1857 	struct device *dev = kobj_to_dev(kobj->parent);
1858 	struct hid_device *hdev = to_hid_device(dev);
1859 	struct wacom *wacom = hid_get_drvdata(hdev);
1860 	u8 mode;
1861 
1862 	mode = wacom->led.groups[index].select;
1863 	return sprintf(buf, "%d\n", mode < 3 ? mode : -1);
1864 }
1865 
1866 #define DEVICE_EKR_ATTR_GROUP(SET_ID)					\
1867 static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj,	\
1868 			       struct kobj_attribute *kattr, char *buf)	\
1869 {									\
1870 	return wacom_show_remote_mode(kobj, kattr, buf, SET_ID);	\
1871 }									\
1872 static struct kobj_attribute remote##SET_ID##_mode_attr = {		\
1873 	.attr = {.name = "remote_mode",					\
1874 		.mode = DEV_ATTR_RO_PERM},				\
1875 	.show = wacom_show_remote##SET_ID##_mode,			\
1876 };									\
1877 static struct attribute *remote##SET_ID##_serial_attrs[] = {		\
1878 	&remote##SET_ID##_mode_attr.attr,				\
1879 	NULL								\
1880 };									\
1881 static const struct attribute_group remote##SET_ID##_serial_group = {	\
1882 	.name = NULL,							\
1883 	.attrs = remote##SET_ID##_serial_attrs,				\
1884 }
1885 
1886 DEVICE_EKR_ATTR_GROUP(0);
1887 DEVICE_EKR_ATTR_GROUP(1);
1888 DEVICE_EKR_ATTR_GROUP(2);
1889 DEVICE_EKR_ATTR_GROUP(3);
1890 DEVICE_EKR_ATTR_GROUP(4);
1891 
1892 static int wacom_remote_create_attr_group(struct wacom *wacom, __u32 serial,
1893 					  int index)
1894 {
1895 	int error = 0;
1896 	struct wacom_remote *remote = wacom->remote;
1897 
1898 	remote->remotes[index].group.name = devm_kasprintf(&wacom->hdev->dev,
1899 							  GFP_KERNEL,
1900 							  "%d", serial);
1901 	if (!remote->remotes[index].group.name)
1902 		return -ENOMEM;
1903 
1904 	error = __wacom_devm_sysfs_create_group(wacom, remote->remote_dir,
1905 						&remote->remotes[index].group);
1906 	if (error) {
1907 		remote->remotes[index].group.name = NULL;
1908 		hid_err(wacom->hdev,
1909 			"cannot create sysfs group err: %d\n", error);
1910 		return error;
1911 	}
1912 
1913 	return 0;
1914 }
1915 
1916 static int wacom_cmd_unpair_remote(struct wacom *wacom, unsigned char selector)
1917 {
1918 	const size_t buf_size = 2;
1919 	unsigned char *buf;
1920 	int retval;
1921 
1922 	buf = kzalloc(buf_size, GFP_KERNEL);
1923 	if (!buf)
1924 		return -ENOMEM;
1925 
1926 	buf[0] = WAC_CMD_DELETE_PAIRING;
1927 	buf[1] = selector;
1928 
1929 	retval = wacom_set_report(wacom->hdev, HID_OUTPUT_REPORT, buf,
1930 				  buf_size, WAC_CMD_RETRIES);
1931 	kfree(buf);
1932 
1933 	return retval;
1934 }
1935 
1936 static ssize_t wacom_store_unpair_remote(struct kobject *kobj,
1937 					 struct kobj_attribute *attr,
1938 					 const char *buf, size_t count)
1939 {
1940 	unsigned char selector = 0;
1941 	struct device *dev = kobj_to_dev(kobj->parent);
1942 	struct hid_device *hdev = to_hid_device(dev);
1943 	struct wacom *wacom = hid_get_drvdata(hdev);
1944 	int err;
1945 
1946 	if (!strncmp(buf, "*\n", 2)) {
1947 		selector = WAC_CMD_UNPAIR_ALL;
1948 	} else {
1949 		hid_info(wacom->hdev, "remote: unrecognized unpair code: %s\n",
1950 			 buf);
1951 		return -1;
1952 	}
1953 
1954 	mutex_lock(&wacom->lock);
1955 
1956 	err = wacom_cmd_unpair_remote(wacom, selector);
1957 	mutex_unlock(&wacom->lock);
1958 
1959 	return err < 0 ? err : count;
1960 }
1961 
1962 static struct kobj_attribute unpair_remote_attr = {
1963 	.attr = {.name = "unpair_remote", .mode = 0200},
1964 	.store = wacom_store_unpair_remote,
1965 };
1966 
1967 static const struct attribute *remote_unpair_attrs[] = {
1968 	&unpair_remote_attr.attr,
1969 	NULL
1970 };
1971 
1972 static void wacom_remotes_destroy(void *data)
1973 {
1974 	struct wacom *wacom = data;
1975 	struct wacom_remote *remote = wacom->remote;
1976 
1977 	if (!remote)
1978 		return;
1979 
1980 	kobject_put(remote->remote_dir);
1981 	kfifo_free(&remote->remote_fifo);
1982 	wacom->remote = NULL;
1983 }
1984 
1985 static int wacom_initialize_remotes(struct wacom *wacom)
1986 {
1987 	int error = 0;
1988 	struct wacom_remote *remote;
1989 	int i;
1990 
1991 	if (wacom->wacom_wac.features.type != REMOTE)
1992 		return 0;
1993 
1994 	remote = devm_kzalloc(&wacom->hdev->dev, sizeof(*wacom->remote),
1995 			      GFP_KERNEL);
1996 	if (!remote)
1997 		return -ENOMEM;
1998 
1999 	wacom->remote = remote;
2000 
2001 	spin_lock_init(&remote->remote_lock);
2002 
2003 	error = kfifo_alloc(&remote->remote_fifo,
2004 			5 * sizeof(struct wacom_remote_data),
2005 			GFP_KERNEL);
2006 	if (error) {
2007 		hid_err(wacom->hdev, "failed allocating remote_fifo\n");
2008 		return -ENOMEM;
2009 	}
2010 
2011 	remote->remotes[0].group = remote0_serial_group;
2012 	remote->remotes[1].group = remote1_serial_group;
2013 	remote->remotes[2].group = remote2_serial_group;
2014 	remote->remotes[3].group = remote3_serial_group;
2015 	remote->remotes[4].group = remote4_serial_group;
2016 
2017 	remote->remote_dir = kobject_create_and_add("wacom_remote",
2018 						    &wacom->hdev->dev.kobj);
2019 	if (!remote->remote_dir)
2020 		return -ENOMEM;
2021 
2022 	error = sysfs_create_files(remote->remote_dir, remote_unpair_attrs);
2023 
2024 	if (error) {
2025 		hid_err(wacom->hdev,
2026 			"cannot create sysfs group err: %d\n", error);
2027 		return error;
2028 	}
2029 
2030 	for (i = 0; i < WACOM_MAX_REMOTES; i++) {
2031 		wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
2032 		remote->remotes[i].serial = 0;
2033 	}
2034 
2035 	error = devm_add_action_or_reset(&wacom->hdev->dev,
2036 					 wacom_remotes_destroy, wacom);
2037 	if (error)
2038 		return error;
2039 
2040 	return 0;
2041 }
2042 
2043 static struct input_dev *wacom_allocate_input(struct wacom *wacom)
2044 {
2045 	struct input_dev *input_dev;
2046 	struct hid_device *hdev = wacom->hdev;
2047 	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
2048 
2049 	input_dev = devm_input_allocate_device(&hdev->dev);
2050 	if (!input_dev)
2051 		return NULL;
2052 
2053 	input_dev->name = wacom_wac->features.name;
2054 	input_dev->phys = hdev->phys;
2055 	input_dev->dev.parent = &hdev->dev;
2056 	input_dev->open = wacom_open;
2057 	input_dev->close = wacom_close;
2058 	input_dev->uniq = hdev->uniq;
2059 	input_dev->id.bustype = hdev->bus;
2060 	input_dev->id.vendor  = hdev->vendor;
2061 	input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
2062 	input_dev->id.version = hdev->version;
2063 	input_set_drvdata(input_dev, wacom);
2064 
2065 	return input_dev;
2066 }
2067 
2068 static int wacom_allocate_inputs(struct wacom *wacom)
2069 {
2070 	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
2071 
2072 	wacom_wac->pen_input = wacom_allocate_input(wacom);
2073 	wacom_wac->touch_input = wacom_allocate_input(wacom);
2074 	wacom_wac->pad_input = wacom_allocate_input(wacom);
2075 	if (!wacom_wac->pen_input ||
2076 	    !wacom_wac->touch_input ||
2077 	    !wacom_wac->pad_input)
2078 		return -ENOMEM;
2079 
2080 	wacom_wac->pen_input->name = wacom_wac->pen_name;
2081 	wacom_wac->touch_input->name = wacom_wac->touch_name;
2082 	wacom_wac->pad_input->name = wacom_wac->pad_name;
2083 
2084 	return 0;
2085 }
2086 
2087 static int wacom_register_inputs(struct wacom *wacom)
2088 {
2089 	struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev;
2090 	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
2091 	int error = 0;
2092 
2093 	pen_input_dev = wacom_wac->pen_input;
2094 	touch_input_dev = wacom_wac->touch_input;
2095 	pad_input_dev = wacom_wac->pad_input;
2096 
2097 	if (!pen_input_dev || !touch_input_dev || !pad_input_dev)
2098 		return -EINVAL;
2099 
2100 	error = wacom_setup_pen_input_capabilities(pen_input_dev, wacom_wac);
2101 	if (error) {
2102 		/* no pen in use on this interface */
2103 		input_free_device(pen_input_dev);
2104 		wacom_wac->pen_input = NULL;
2105 		pen_input_dev = NULL;
2106 	} else {
2107 		error = input_register_device(pen_input_dev);
2108 		if (error)
2109 			goto fail;
2110 	}
2111 
2112 	error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac);
2113 	if (error) {
2114 		/* no touch in use on this interface */
2115 		input_free_device(touch_input_dev);
2116 		wacom_wac->touch_input = NULL;
2117 		touch_input_dev = NULL;
2118 	} else {
2119 		error = input_register_device(touch_input_dev);
2120 		if (error)
2121 			goto fail;
2122 	}
2123 
2124 	error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
2125 	if (error) {
2126 		/* no pad in use on this interface */
2127 		input_free_device(pad_input_dev);
2128 		wacom_wac->pad_input = NULL;
2129 		pad_input_dev = NULL;
2130 	} else {
2131 		error = input_register_device(pad_input_dev);
2132 		if (error)
2133 			goto fail;
2134 	}
2135 
2136 	return 0;
2137 
2138 fail:
2139 	wacom_wac->pad_input = NULL;
2140 	wacom_wac->touch_input = NULL;
2141 	wacom_wac->pen_input = NULL;
2142 	return error;
2143 }
2144 
2145 /*
2146  * Not all devices report physical dimensions from HID.
2147  * Compute the default from hardcoded logical dimension
2148  * and resolution before driver overwrites them.
2149  */
2150 static void wacom_set_default_phy(struct wacom_features *features)
2151 {
2152 	if (features->x_resolution) {
2153 		features->x_phy = (features->x_max * 100) /
2154 					features->x_resolution;
2155 		features->y_phy = (features->y_max * 100) /
2156 					features->y_resolution;
2157 	}
2158 }
2159 
2160 static void wacom_calculate_res(struct wacom_features *features)
2161 {
2162 	/* set unit to "100th of a mm" for devices not reported by HID */
2163 	if (!features->unit) {
2164 		features->unit = 0x11;
2165 		features->unitExpo = -3;
2166 	}
2167 
2168 	features->x_resolution = wacom_calc_hid_res(features->x_max,
2169 						    features->x_phy,
2170 						    features->unit,
2171 						    features->unitExpo);
2172 	features->y_resolution = wacom_calc_hid_res(features->y_max,
2173 						    features->y_phy,
2174 						    features->unit,
2175 						    features->unitExpo);
2176 }
2177 
2178 void wacom_battery_work(struct work_struct *work)
2179 {
2180 	struct wacom *wacom = container_of(work, struct wacom, battery_work);
2181 
2182 	if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
2183 	     !wacom->battery.battery) {
2184 		wacom_initialize_battery(wacom);
2185 	}
2186 	else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
2187 		 wacom->battery.battery) {
2188 		wacom_destroy_battery(wacom);
2189 	}
2190 }
2191 
2192 static size_t wacom_compute_pktlen(struct hid_device *hdev)
2193 {
2194 	struct hid_report_enum *report_enum;
2195 	struct hid_report *report;
2196 	size_t size = 0;
2197 
2198 	report_enum = hdev->report_enum + HID_INPUT_REPORT;
2199 
2200 	list_for_each_entry(report, &report_enum->report_list, list) {
2201 		size_t report_size = hid_report_len(report);
2202 		if (report_size > size)
2203 			size = report_size;
2204 	}
2205 
2206 	return size;
2207 }
2208 
2209 static void wacom_update_name(struct wacom *wacom, const char *suffix)
2210 {
2211 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2212 	struct wacom_features *features = &wacom_wac->features;
2213 	char name[WACOM_NAME_MAX - 20]; /* Leave some room for suffixes */
2214 
2215 	/* Generic devices name unspecified */
2216 	if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) {
2217 		char *product_name = wacom->hdev->name;
2218 
2219 		if (hid_is_using_ll_driver(wacom->hdev, &usb_hid_driver)) {
2220 			struct usb_interface *intf = to_usb_interface(wacom->hdev->dev.parent);
2221 			struct usb_device *dev = interface_to_usbdev(intf);
2222 			product_name = dev->product;
2223 		}
2224 
2225 		if (wacom->hdev->bus == BUS_I2C) {
2226 			snprintf(name, sizeof(name), "%s %X",
2227 				 features->name, wacom->hdev->product);
2228 		} else if (strstr(product_name, "Wacom") ||
2229 			   strstr(product_name, "wacom") ||
2230 			   strstr(product_name, "WACOM")) {
2231 			strlcpy(name, product_name, sizeof(name));
2232 		} else {
2233 			snprintf(name, sizeof(name), "Wacom %s", product_name);
2234 		}
2235 
2236 		/* strip out excess whitespaces */
2237 		while (1) {
2238 			char *gap = strstr(name, "  ");
2239 			if (gap == NULL)
2240 				break;
2241 			/* shift everything including the terminator */
2242 			memmove(gap, gap+1, strlen(gap));
2243 		}
2244 
2245 		/* get rid of trailing whitespace */
2246 		if (name[strlen(name)-1] == ' ')
2247 			name[strlen(name)-1] = '\0';
2248 	} else {
2249 		strlcpy(name, features->name, sizeof(name));
2250 	}
2251 
2252 	snprintf(wacom_wac->name, sizeof(wacom_wac->name), "%s%s",
2253 		 name, suffix);
2254 
2255 	/* Append the device type to the name */
2256 	snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name),
2257 		"%s%s Pen", name, suffix);
2258 	snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name),
2259 		"%s%s Finger", name, suffix);
2260 	snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
2261 		"%s%s Pad", name, suffix);
2262 }
2263 
2264 static void wacom_release_resources(struct wacom *wacom)
2265 {
2266 	struct hid_device *hdev = wacom->hdev;
2267 
2268 	if (!wacom->resources)
2269 		return;
2270 
2271 	devres_release_group(&hdev->dev, wacom);
2272 
2273 	wacom->resources = false;
2274 
2275 	wacom->wacom_wac.pen_input = NULL;
2276 	wacom->wacom_wac.touch_input = NULL;
2277 	wacom->wacom_wac.pad_input = NULL;
2278 }
2279 
2280 static void wacom_set_shared_values(struct wacom_wac *wacom_wac)
2281 {
2282 	if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH) {
2283 		wacom_wac->shared->type = wacom_wac->features.type;
2284 		wacom_wac->shared->touch_input = wacom_wac->touch_input;
2285 	}
2286 
2287 	if (wacom_wac->has_mute_touch_switch) {
2288 		wacom_wac->shared->has_mute_touch_switch = true;
2289 		wacom_wac->shared->is_touch_on = true;
2290 	}
2291 
2292 	if (wacom_wac->shared->has_mute_touch_switch &&
2293 	    wacom_wac->shared->touch_input) {
2294 		set_bit(EV_SW, wacom_wac->shared->touch_input->evbit);
2295 		input_set_capability(wacom_wac->shared->touch_input, EV_SW,
2296 				     SW_MUTE_DEVICE);
2297 	}
2298 }
2299 
2300 static int wacom_parse_and_register(struct wacom *wacom, bool wireless)
2301 {
2302 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2303 	struct wacom_features *features = &wacom_wac->features;
2304 	struct hid_device *hdev = wacom->hdev;
2305 	int error;
2306 	unsigned int connect_mask = HID_CONNECT_HIDRAW;
2307 
2308 	features->pktlen = wacom_compute_pktlen(hdev);
2309 	if (features->pktlen > WACOM_PKGLEN_MAX)
2310 		return -EINVAL;
2311 
2312 	if (!devres_open_group(&hdev->dev, wacom, GFP_KERNEL))
2313 		return -ENOMEM;
2314 
2315 	wacom->resources = true;
2316 
2317 	error = wacom_allocate_inputs(wacom);
2318 	if (error)
2319 		goto fail;
2320 
2321 	/*
2322 	 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
2323 	 * into debug mode for the touch part.
2324 	 * We ignore the other interfaces.
2325 	 */
2326 	if (features->type == BAMBOO_PAD) {
2327 		if (features->pktlen == WACOM_PKGLEN_PENABLED) {
2328 			features->type = HID_GENERIC;
2329 		} else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) &&
2330 			   (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) {
2331 			error = -ENODEV;
2332 			goto fail;
2333 		}
2334 	}
2335 
2336 	/* set the default size in case we do not get them from hid */
2337 	wacom_set_default_phy(features);
2338 
2339 	/* Retrieve the physical and logical size for touch devices */
2340 	wacom_retrieve_hid_descriptor(hdev, features);
2341 	wacom_setup_device_quirks(wacom);
2342 
2343 	if (features->device_type == WACOM_DEVICETYPE_NONE &&
2344 	    features->type != WIRELESS) {
2345 		error = features->type == HID_GENERIC ? -ENODEV : 0;
2346 
2347 		dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.",
2348 			 hdev->name,
2349 			 error ? "Ignoring" : "Assuming pen");
2350 
2351 		if (error)
2352 			goto fail;
2353 
2354 		features->device_type |= WACOM_DEVICETYPE_PEN;
2355 	}
2356 
2357 	wacom_calculate_res(features);
2358 
2359 	wacom_update_name(wacom, wireless ? " (WL)" : "");
2360 
2361 	/* pen only Bamboo neither support touch nor pad */
2362 	if ((features->type == BAMBOO_PEN) &&
2363 	    ((features->device_type & WACOM_DEVICETYPE_TOUCH) ||
2364 	    (features->device_type & WACOM_DEVICETYPE_PAD))) {
2365 		error = -ENODEV;
2366 		goto fail;
2367 	}
2368 
2369 	error = wacom_add_shared_data(hdev);
2370 	if (error)
2371 		goto fail;
2372 
2373 	if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) &&
2374 	     (features->quirks & WACOM_QUIRK_BATTERY)) {
2375 		error = wacom_initialize_battery(wacom);
2376 		if (error)
2377 			goto fail;
2378 	}
2379 
2380 	error = wacom_register_inputs(wacom);
2381 	if (error)
2382 		goto fail;
2383 
2384 	if (wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD) {
2385 		error = wacom_initialize_leds(wacom);
2386 		if (error)
2387 			goto fail;
2388 
2389 		error = wacom_initialize_remotes(wacom);
2390 		if (error)
2391 			goto fail;
2392 	}
2393 
2394 	if (features->type == HID_GENERIC)
2395 		connect_mask |= HID_CONNECT_DRIVER;
2396 
2397 	/* Regular HID work starts now */
2398 	error = hid_hw_start(hdev, connect_mask);
2399 	if (error) {
2400 		hid_err(hdev, "hw start failed\n");
2401 		goto fail;
2402 	}
2403 
2404 	if (!wireless) {
2405 		/* Note that if query fails it is not a hard failure */
2406 		wacom_query_tablet_data(wacom);
2407 	}
2408 
2409 	/* touch only Bamboo doesn't support pen */
2410 	if ((features->type == BAMBOO_TOUCH) &&
2411 	    (features->device_type & WACOM_DEVICETYPE_PEN)) {
2412 		cancel_delayed_work_sync(&wacom->init_work);
2413 		_wacom_query_tablet_data(wacom);
2414 		error = -ENODEV;
2415 		goto fail_quirks;
2416 	}
2417 
2418 	if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
2419 		error = hid_hw_open(hdev);
2420 
2421 	wacom_set_shared_values(wacom_wac);
2422 	devres_close_group(&hdev->dev, wacom);
2423 
2424 	return 0;
2425 
2426 fail_quirks:
2427 	hid_hw_stop(hdev);
2428 fail:
2429 	wacom_release_resources(wacom);
2430 	return error;
2431 }
2432 
2433 static void wacom_wireless_work(struct work_struct *work)
2434 {
2435 	struct wacom *wacom = container_of(work, struct wacom, wireless_work);
2436 	struct usb_device *usbdev = wacom->usbdev;
2437 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2438 	struct hid_device *hdev1, *hdev2;
2439 	struct wacom *wacom1, *wacom2;
2440 	struct wacom_wac *wacom_wac1, *wacom_wac2;
2441 	int error;
2442 
2443 	/*
2444 	 * Regardless if this is a disconnect or a new tablet,
2445 	 * remove any existing input and battery devices.
2446 	 */
2447 
2448 	wacom_destroy_battery(wacom);
2449 
2450 	/* Stylus interface */
2451 	hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
2452 	wacom1 = hid_get_drvdata(hdev1);
2453 	wacom_wac1 = &(wacom1->wacom_wac);
2454 	wacom_release_resources(wacom1);
2455 
2456 	/* Touch interface */
2457 	hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
2458 	wacom2 = hid_get_drvdata(hdev2);
2459 	wacom_wac2 = &(wacom2->wacom_wac);
2460 	wacom_release_resources(wacom2);
2461 
2462 	if (wacom_wac->pid == 0) {
2463 		hid_info(wacom->hdev, "wireless tablet disconnected\n");
2464 	} else {
2465 		const struct hid_device_id *id = wacom_ids;
2466 
2467 		hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
2468 			 wacom_wac->pid);
2469 
2470 		while (id->bus) {
2471 			if (id->vendor == USB_VENDOR_ID_WACOM &&
2472 			    id->product == wacom_wac->pid)
2473 				break;
2474 			id++;
2475 		}
2476 
2477 		if (!id->bus) {
2478 			hid_info(wacom->hdev, "ignoring unknown PID.\n");
2479 			return;
2480 		}
2481 
2482 		/* Stylus interface */
2483 		wacom_wac1->features =
2484 			*((struct wacom_features *)id->driver_data);
2485 
2486 		wacom_wac1->pid = wacom_wac->pid;
2487 		hid_hw_stop(hdev1);
2488 		error = wacom_parse_and_register(wacom1, true);
2489 		if (error)
2490 			goto fail;
2491 
2492 		/* Touch interface */
2493 		if (wacom_wac1->features.touch_max ||
2494 		    (wacom_wac1->features.type >= INTUOSHT &&
2495 		    wacom_wac1->features.type <= BAMBOO_PT)) {
2496 			wacom_wac2->features =
2497 				*((struct wacom_features *)id->driver_data);
2498 			wacom_wac2->pid = wacom_wac->pid;
2499 			hid_hw_stop(hdev2);
2500 			error = wacom_parse_and_register(wacom2, true);
2501 			if (error)
2502 				goto fail;
2503 		}
2504 
2505 		strlcpy(wacom_wac->name, wacom_wac1->name,
2506 			sizeof(wacom_wac->name));
2507 		error = wacom_initialize_battery(wacom);
2508 		if (error)
2509 			goto fail;
2510 	}
2511 
2512 	return;
2513 
2514 fail:
2515 	wacom_release_resources(wacom1);
2516 	wacom_release_resources(wacom2);
2517 	return;
2518 }
2519 
2520 static void wacom_remote_destroy_one(struct wacom *wacom, unsigned int index)
2521 {
2522 	struct wacom_remote *remote = wacom->remote;
2523 	u32 serial = remote->remotes[index].serial;
2524 	int i;
2525 	unsigned long flags;
2526 
2527 	for (i = 0; i < WACOM_MAX_REMOTES; i++) {
2528 		if (remote->remotes[i].serial == serial) {
2529 
2530 			spin_lock_irqsave(&remote->remote_lock, flags);
2531 			remote->remotes[i].registered = false;
2532 			spin_unlock_irqrestore(&remote->remote_lock, flags);
2533 
2534 			if (remote->remotes[i].battery.battery)
2535 				devres_release_group(&wacom->hdev->dev,
2536 						     &remote->remotes[i].battery.bat_desc);
2537 
2538 			if (remote->remotes[i].group.name)
2539 				devres_release_group(&wacom->hdev->dev,
2540 						     &remote->remotes[i]);
2541 
2542 			remote->remotes[i].serial = 0;
2543 			remote->remotes[i].group.name = NULL;
2544 			remote->remotes[i].battery.battery = NULL;
2545 			wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
2546 		}
2547 	}
2548 }
2549 
2550 static int wacom_remote_create_one(struct wacom *wacom, u32 serial,
2551 				   unsigned int index)
2552 {
2553 	struct wacom_remote *remote = wacom->remote;
2554 	struct device *dev = &wacom->hdev->dev;
2555 	int error, k;
2556 
2557 	/* A remote can pair more than once with an EKR,
2558 	 * check to make sure this serial isn't already paired.
2559 	 */
2560 	for (k = 0; k < WACOM_MAX_REMOTES; k++) {
2561 		if (remote->remotes[k].serial == serial)
2562 			break;
2563 	}
2564 
2565 	if (k < WACOM_MAX_REMOTES) {
2566 		remote->remotes[index].serial = serial;
2567 		return 0;
2568 	}
2569 
2570 	if (!devres_open_group(dev, &remote->remotes[index], GFP_KERNEL))
2571 		return -ENOMEM;
2572 
2573 	error = wacom_remote_create_attr_group(wacom, serial, index);
2574 	if (error)
2575 		goto fail;
2576 
2577 	remote->remotes[index].input = wacom_allocate_input(wacom);
2578 	if (!remote->remotes[index].input) {
2579 		error = -ENOMEM;
2580 		goto fail;
2581 	}
2582 	remote->remotes[index].input->uniq = remote->remotes[index].group.name;
2583 	remote->remotes[index].input->name = wacom->wacom_wac.pad_name;
2584 
2585 	if (!remote->remotes[index].input->name) {
2586 		error = -EINVAL;
2587 		goto fail;
2588 	}
2589 
2590 	error = wacom_setup_pad_input_capabilities(remote->remotes[index].input,
2591 						   &wacom->wacom_wac);
2592 	if (error)
2593 		goto fail;
2594 
2595 	remote->remotes[index].serial = serial;
2596 
2597 	error = input_register_device(remote->remotes[index].input);
2598 	if (error)
2599 		goto fail;
2600 
2601 	error = wacom_led_groups_alloc_and_register_one(
2602 					&remote->remotes[index].input->dev,
2603 					wacom, index, 3, true);
2604 	if (error)
2605 		goto fail;
2606 
2607 	remote->remotes[index].registered = true;
2608 
2609 	devres_close_group(dev, &remote->remotes[index]);
2610 	return 0;
2611 
2612 fail:
2613 	devres_release_group(dev, &remote->remotes[index]);
2614 	remote->remotes[index].serial = 0;
2615 	return error;
2616 }
2617 
2618 static int wacom_remote_attach_battery(struct wacom *wacom, int index)
2619 {
2620 	struct wacom_remote *remote = wacom->remote;
2621 	int error;
2622 
2623 	if (!remote->remotes[index].registered)
2624 		return 0;
2625 
2626 	if (remote->remotes[index].battery.battery)
2627 		return 0;
2628 
2629 	if (wacom->led.groups[index].select == WACOM_STATUS_UNKNOWN)
2630 		return 0;
2631 
2632 	error = __wacom_initialize_battery(wacom,
2633 					&wacom->remote->remotes[index].battery);
2634 	if (error)
2635 		return error;
2636 
2637 	return 0;
2638 }
2639 
2640 static void wacom_remote_work(struct work_struct *work)
2641 {
2642 	struct wacom *wacom = container_of(work, struct wacom, remote_work);
2643 	struct wacom_remote *remote = wacom->remote;
2644 	struct wacom_remote_data data;
2645 	unsigned long flags;
2646 	unsigned int count;
2647 	u32 serial;
2648 	int i;
2649 
2650 	spin_lock_irqsave(&remote->remote_lock, flags);
2651 
2652 	count = kfifo_out(&remote->remote_fifo, &data, sizeof(data));
2653 
2654 	if (count != sizeof(data)) {
2655 		hid_err(wacom->hdev,
2656 			"workitem triggered without status available\n");
2657 		spin_unlock_irqrestore(&remote->remote_lock, flags);
2658 		return;
2659 	}
2660 
2661 	if (!kfifo_is_empty(&remote->remote_fifo))
2662 		wacom_schedule_work(&wacom->wacom_wac, WACOM_WORKER_REMOTE);
2663 
2664 	spin_unlock_irqrestore(&remote->remote_lock, flags);
2665 
2666 	for (i = 0; i < WACOM_MAX_REMOTES; i++) {
2667 		serial = data.remote[i].serial;
2668 		if (data.remote[i].connected) {
2669 
2670 			if (remote->remotes[i].serial == serial) {
2671 				wacom_remote_attach_battery(wacom, i);
2672 				continue;
2673 			}
2674 
2675 			if (remote->remotes[i].serial)
2676 				wacom_remote_destroy_one(wacom, i);
2677 
2678 			wacom_remote_create_one(wacom, serial, i);
2679 
2680 		} else if (remote->remotes[i].serial) {
2681 			wacom_remote_destroy_one(wacom, i);
2682 		}
2683 	}
2684 }
2685 
2686 static void wacom_mode_change_work(struct work_struct *work)
2687 {
2688 	struct wacom *wacom = container_of(work, struct wacom, mode_change_work);
2689 	struct wacom_shared *shared = wacom->wacom_wac.shared;
2690 	struct wacom *wacom1 = NULL;
2691 	struct wacom *wacom2 = NULL;
2692 	bool is_direct = wacom->wacom_wac.is_direct_mode;
2693 	int error = 0;
2694 
2695 	if (shared->pen) {
2696 		wacom1 = hid_get_drvdata(shared->pen);
2697 		wacom_release_resources(wacom1);
2698 		hid_hw_stop(wacom1->hdev);
2699 		wacom1->wacom_wac.has_mode_change = true;
2700 		wacom1->wacom_wac.is_direct_mode = is_direct;
2701 	}
2702 
2703 	if (shared->touch) {
2704 		wacom2 = hid_get_drvdata(shared->touch);
2705 		wacom_release_resources(wacom2);
2706 		hid_hw_stop(wacom2->hdev);
2707 		wacom2->wacom_wac.has_mode_change = true;
2708 		wacom2->wacom_wac.is_direct_mode = is_direct;
2709 	}
2710 
2711 	if (wacom1) {
2712 		error = wacom_parse_and_register(wacom1, false);
2713 		if (error)
2714 			return;
2715 	}
2716 
2717 	if (wacom2) {
2718 		error = wacom_parse_and_register(wacom2, false);
2719 		if (error)
2720 			return;
2721 	}
2722 
2723 	return;
2724 }
2725 
2726 static int wacom_probe(struct hid_device *hdev,
2727 		const struct hid_device_id *id)
2728 {
2729 	struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
2730 	struct usb_device *dev = interface_to_usbdev(intf);
2731 	struct wacom *wacom;
2732 	struct wacom_wac *wacom_wac;
2733 	struct wacom_features *features;
2734 	int error;
2735 
2736 	if (!id->driver_data)
2737 		return -EINVAL;
2738 
2739 	hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
2740 
2741 	/* hid-core sets this quirk for the boot interface */
2742 	hdev->quirks &= ~HID_QUIRK_NOGET;
2743 
2744 	wacom = devm_kzalloc(&hdev->dev, sizeof(struct wacom), GFP_KERNEL);
2745 	if (!wacom)
2746 		return -ENOMEM;
2747 
2748 	hid_set_drvdata(hdev, wacom);
2749 	wacom->hdev = hdev;
2750 
2751 	wacom_wac = &wacom->wacom_wac;
2752 	wacom_wac->features = *((struct wacom_features *)id->driver_data);
2753 	features = &wacom_wac->features;
2754 
2755 	if (features->check_for_hid_type && features->hid_type != hdev->type)
2756 		return -ENODEV;
2757 
2758 	error = wacom_devm_kfifo_alloc(wacom);
2759 	if (error)
2760 		return error;
2761 
2762 	wacom_wac->hid_data.inputmode = -1;
2763 	wacom_wac->mode_report = -1;
2764 
2765 	wacom->usbdev = dev;
2766 	wacom->intf = intf;
2767 	mutex_init(&wacom->lock);
2768 	INIT_DELAYED_WORK(&wacom->init_work, wacom_init_work);
2769 	INIT_WORK(&wacom->wireless_work, wacom_wireless_work);
2770 	INIT_WORK(&wacom->battery_work, wacom_battery_work);
2771 	INIT_WORK(&wacom->remote_work, wacom_remote_work);
2772 	INIT_WORK(&wacom->mode_change_work, wacom_mode_change_work);
2773 
2774 	/* ask for the report descriptor to be loaded by HID */
2775 	error = hid_parse(hdev);
2776 	if (error) {
2777 		hid_err(hdev, "parse failed\n");
2778 		return error;
2779 	}
2780 
2781 	error = wacom_parse_and_register(wacom, false);
2782 	if (error)
2783 		return error;
2784 
2785 	if (hdev->bus == BUS_BLUETOOTH) {
2786 		error = device_create_file(&hdev->dev, &dev_attr_speed);
2787 		if (error)
2788 			hid_warn(hdev,
2789 				 "can't create sysfs speed attribute err: %d\n",
2790 				 error);
2791 	}
2792 
2793 	return 0;
2794 }
2795 
2796 static void wacom_remove(struct hid_device *hdev)
2797 {
2798 	struct wacom *wacom = hid_get_drvdata(hdev);
2799 	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2800 	struct wacom_features *features = &wacom_wac->features;
2801 
2802 	if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
2803 		hid_hw_close(hdev);
2804 
2805 	hid_hw_stop(hdev);
2806 
2807 	cancel_delayed_work_sync(&wacom->init_work);
2808 	cancel_work_sync(&wacom->wireless_work);
2809 	cancel_work_sync(&wacom->battery_work);
2810 	cancel_work_sync(&wacom->remote_work);
2811 	cancel_work_sync(&wacom->mode_change_work);
2812 	if (hdev->bus == BUS_BLUETOOTH)
2813 		device_remove_file(&hdev->dev, &dev_attr_speed);
2814 
2815 	/* make sure we don't trigger the LEDs */
2816 	wacom_led_groups_release(wacom);
2817 
2818 	if (wacom->wacom_wac.features.type != REMOTE)
2819 		wacom_release_resources(wacom);
2820 }
2821 
2822 #ifdef CONFIG_PM
2823 static int wacom_resume(struct hid_device *hdev)
2824 {
2825 	struct wacom *wacom = hid_get_drvdata(hdev);
2826 
2827 	mutex_lock(&wacom->lock);
2828 
2829 	/* switch to wacom mode first */
2830 	_wacom_query_tablet_data(wacom);
2831 	wacom_led_control(wacom);
2832 
2833 	mutex_unlock(&wacom->lock);
2834 
2835 	return 0;
2836 }
2837 
2838 static int wacom_reset_resume(struct hid_device *hdev)
2839 {
2840 	return wacom_resume(hdev);
2841 }
2842 #endif /* CONFIG_PM */
2843 
2844 static struct hid_driver wacom_driver = {
2845 	.name =		"wacom",
2846 	.id_table =	wacom_ids,
2847 	.probe =	wacom_probe,
2848 	.remove =	wacom_remove,
2849 	.report =	wacom_wac_report,
2850 #ifdef CONFIG_PM
2851 	.resume =	wacom_resume,
2852 	.reset_resume =	wacom_reset_resume,
2853 #endif
2854 	.raw_event =	wacom_raw_event,
2855 };
2856 module_hid_driver(wacom_driver);
2857 
2858 MODULE_VERSION(DRIVER_VERSION);
2859 MODULE_AUTHOR(DRIVER_AUTHOR);
2860 MODULE_DESCRIPTION(DRIVER_DESC);
2861 MODULE_LICENSE("GPL");
2862