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