HID: wacom: EKR: have one array of struct remotes instead of many arrays
[linux-block.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;
f393ee2b 125
c669fb2b
BT
126 switch (usage->hid) {
127 case HID_DG_CONTACTMAX:
128 /* leave touch_max as is if predefined */
8ffffd52
BT
129 if (!features->touch_max) {
130 /* read manually */
131 data = kzalloc(2, GFP_KERNEL);
132 if (!data)
133 break;
134 data[0] = field->report->id;
135 ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
05e8fd92
JG
136 data, 2, WAC_CMD_RETRIES);
137 if (ret == 2) {
8ffffd52 138 features->touch_max = data[1];
05e8fd92
JG
139 } else {
140 features->touch_max = 16;
141 hid_warn(hdev, "wacom_feature_mapping: "
142 "could not get HID_DG_CONTACTMAX, "
143 "defaulting to %d\n",
144 features->touch_max);
145 }
8ffffd52
BT
146 kfree(data);
147 }
c669fb2b 148 break;
5ae6e89f
BT
149 case HID_DG_INPUTMODE:
150 /* Ignore if value index is out of bounds. */
151 if (usage->usage_index >= field->report_count) {
152 dev_err(&hdev->dev, "HID_DG_INPUTMODE out of range\n");
153 break;
154 }
155
156 hid_data->inputmode = field->report->id;
157 hid_data->inputmode_index = usage->usage_index;
158 break;
326ea2a9
JG
159
160 case HID_UP_DIGITIZER:
161 if (field->report->id == 0x0B &&
162 (field->application == WACOM_G9_DIGITIZER ||
163 field->application == WACOM_G11_DIGITIZER)) {
164 wacom->wacom_wac.mode_report = field->report->id;
165 wacom->wacom_wac.mode_value = 0;
166 }
167 break;
168
169 case WACOM_G9_PAGE:
170 case WACOM_G11_PAGE:
171 if (field->report->id == 0x03 &&
172 (field->application == WACOM_G9_TOUCHSCREEN ||
173 field->application == WACOM_G11_TOUCHSCREEN)) {
174 wacom->wacom_wac.mode_report = field->report->id;
175 wacom->wacom_wac.mode_value = 0;
176 }
177 break;
f393ee2b
PC
178 }
179}
180
428f8588
CB
181/*
182 * Interface Descriptor of wacom devices can be incomplete and
183 * inconsistent so wacom_features table is used to store stylus
184 * device's packet lengths, various maximum values, and tablet
185 * resolution based on product ID's.
186 *
187 * For devices that contain 2 interfaces, wacom_features table is
188 * inaccurate for the touch interface. Since the Interface Descriptor
189 * for touch interfaces has pretty complete data, this function exists
190 * to query tablet for this missing information instead of hard coding in
191 * an additional table.
192 *
193 * A typical Interface Descriptor for a stylus will contain a
194 * boot mouse application collection that is not of interest and this
195 * function will ignore it.
196 *
197 * It also contains a digitizer application collection that also is not
198 * of interest since any information it contains would be duplicate
199 * of what is in wacom_features. Usually it defines a report of an array
200 * of bytes that could be used as max length of the stylus packet returned.
201 * If it happens to define a Digitizer-Stylus Physical Collection then
202 * the X and Y logical values contain valid data but it is ignored.
203 *
204 * A typical Interface Descriptor for a touch interface will contain a
205 * Digitizer-Finger Physical Collection which will define both logical
206 * X/Y maximum as well as the physical size of tablet. Since touch
207 * interfaces haven't supported pressure or distance, this is enough
208 * information to override invalid values in the wacom_features table.
4134361a 209 *
c669fb2b
BT
210 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
211 * data. We deal with them after returning from this function.
428f8588 212 */
c669fb2b
BT
213static void wacom_usage_mapping(struct hid_device *hdev,
214 struct hid_field *field, struct hid_usage *usage)
545f4e99 215{
c669fb2b
BT
216 struct wacom *wacom = hid_get_drvdata(hdev);
217 struct wacom_features *features = &wacom->wacom_wac.features;
d97a5522
BT
218 bool finger = WACOM_FINGER_FIELD(field);
219 bool pen = WACOM_PEN_FIELD(field);
e9fc413f 220
c669fb2b
BT
221 /*
222 * Requiring Stylus Usage will ignore boot mouse
223 * X/Y values and some cases of invalid Digitizer X/Y
224 * values commonly reported.
225 */
042628ab 226 if (pen)
aa86b18c 227 features->device_type |= WACOM_DEVICETYPE_PEN;
042628ab 228 else if (finger)
aa86b18c 229 features->device_type |= WACOM_DEVICETYPE_TOUCH;
042628ab 230 else
c669fb2b
BT
231 return;
232
30ebc1ae
PC
233 /*
234 * Bamboo models do not support HID_DG_CONTACTMAX.
235 * And, Bamboo Pen only descriptor contains touch.
236 */
3b164a00 237 if (features->type > BAMBOO_PT) {
30ebc1ae
PC
238 /* ISDv4 touch devices at least supports one touch point */
239 if (finger && !features->touch_max)
240 features->touch_max = 1;
241 }
c669fb2b
BT
242
243 switch (usage->hid) {
244 case HID_GD_X:
245 features->x_max = field->logical_maximum;
246 if (finger) {
c669fb2b 247 features->x_phy = field->physical_maximum;
3b164a00
PC
248 if ((features->type != BAMBOO_PT) &&
249 (features->type != BAMBOO_TOUCH)) {
c669fb2b
BT
250 features->unit = field->unit;
251 features->unitExpo = field->unit_exponent;
545f4e99 252 }
c669fb2b
BT
253 }
254 break;
255 case HID_GD_Y:
256 features->y_max = field->logical_maximum;
257 if (finger) {
258 features->y_phy = field->physical_maximum;
3b164a00
PC
259 if ((features->type != BAMBOO_PT) &&
260 (features->type != BAMBOO_TOUCH)) {
c669fb2b
BT
261 features->unit = field->unit;
262 features->unitExpo = field->unit_exponent;
263 }
264 }
265 break;
266 case HID_DG_TIPPRESSURE:
267 if (pen)
268 features->pressure_max = field->logical_maximum;
269 break;
270 }
7704ac93
BT
271
272 if (features->type == HID_GENERIC)
273 wacom_wac_usage_mapping(hdev, field, usage);
c669fb2b 274}
4134361a 275
b58ba1ba
JG
276static void wacom_post_parse_hid(struct hid_device *hdev,
277 struct wacom_features *features)
278{
279 struct wacom *wacom = hid_get_drvdata(hdev);
280 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
281
282 if (features->type == HID_GENERIC) {
283 /* Any last-minute generic device setup */
284 if (features->touch_max > 1) {
2a6cdbdd 285 input_mt_init_slots(wacom_wac->touch_input, wacom_wac->features.touch_max,
b58ba1ba
JG
286 INPUT_MT_DIRECT);
287 }
288 }
289}
290
c669fb2b
BT
291static void wacom_parse_hid(struct hid_device *hdev,
292 struct wacom_features *features)
293{
294 struct hid_report_enum *rep_enum;
295 struct hid_report *hreport;
296 int i, j;
297
298 /* check features first */
299 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
300 list_for_each_entry(hreport, &rep_enum->report_list, list) {
301 for (i = 0; i < hreport->maxfield; i++) {
302 /* Ignore if report count is out of bounds. */
303 if (hreport->field[i]->report_count < 1)
304 continue;
305
306 for (j = 0; j < hreport->field[i]->maxusage; j++) {
307 wacom_feature_mapping(hdev, hreport->field[i],
308 hreport->field[i]->usage + j);
4134361a 309 }
545f4e99
PC
310 }
311 }
312
c669fb2b
BT
313 /* now check the input usages */
314 rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
315 list_for_each_entry(hreport, &rep_enum->report_list, list) {
316
317 if (!hreport->maxfield)
318 continue;
319
320 for (i = 0; i < hreport->maxfield; i++)
321 for (j = 0; j < hreport->field[i]->maxusage; j++)
322 wacom_usage_mapping(hdev, hreport->field[i],
323 hreport->field[i]->usage + j);
324 }
b58ba1ba
JG
325
326 wacom_post_parse_hid(hdev, features);
545f4e99
PC
327}
328
5ae6e89f
BT
329static int wacom_hid_set_device_mode(struct hid_device *hdev)
330{
331 struct wacom *wacom = hid_get_drvdata(hdev);
332 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
333 struct hid_report *r;
334 struct hid_report_enum *re;
335
336 if (hid_data->inputmode < 0)
337 return 0;
338
339 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
340 r = re->report_id_hash[hid_data->inputmode];
341 if (r) {
342 r->field[0]->value[hid_data->inputmode_index] = 2;
343 hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
344 }
345 return 0;
346}
347
326ea2a9
JG
348static int wacom_set_device_mode(struct hid_device *hdev,
349 struct wacom_wac *wacom_wac)
3b7307c2 350{
326ea2a9
JG
351 u8 *rep_data;
352 struct hid_report *r;
353 struct hid_report_enum *re;
354 int length;
fe494bc2 355 int error = -ENOMEM, limit = 0;
3b7307c2 356
326ea2a9
JG
357 if (wacom_wac->mode_report < 0)
358 return 0;
359
360 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
361 r = re->report_id_hash[wacom_wac->mode_report];
362 if (!r)
363 return -EINVAL;
364
365 rep_data = hid_alloc_report_buf(r, GFP_KERNEL);
3b7307c2 366 if (!rep_data)
326ea2a9
JG
367 return -ENOMEM;
368
369 length = hid_report_len(r);
ec67bbed 370
fe494bc2 371 do {
326ea2a9
JG
372 rep_data[0] = wacom_wac->mode_report;
373 rep_data[1] = wacom_wac->mode_value;
9937c026 374
296b7378
PF
375 error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
376 length, 1);
3cb83157 377 if (error >= 0)
27b20a9d 378 error = wacom_get_report(hdev, HID_FEATURE_REPORT,
c64d8834 379 rep_data, length, 1);
326ea2a9
JG
380 } while (error >= 0 &&
381 rep_data[1] != wacom_wac->mode_report &&
382 limit++ < WAC_MSG_RETRIES);
fe494bc2
JG
383
384 kfree(rep_data);
385
386 return error < 0 ? error : 0;
387}
388
f81a1295
BT
389static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
390 struct wacom_features *features)
391{
387142bb
BT
392 struct wacom *wacom = hid_get_drvdata(hdev);
393 int ret;
394 u8 rep_data[2];
395
396 switch (features->type) {
397 case GRAPHIRE_BT:
398 rep_data[0] = 0x03;
399 rep_data[1] = 0x00;
296b7378
PF
400 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
401 3);
387142bb
BT
402
403 if (ret >= 0) {
404 rep_data[0] = speed == 0 ? 0x05 : 0x06;
405 rep_data[1] = 0x00;
406
407 ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
296b7378 408 rep_data, 2, 3);
387142bb
BT
409
410 if (ret >= 0) {
411 wacom->wacom_wac.bt_high_speed = speed;
412 return 0;
413 }
414 }
415
416 /*
417 * Note that if the raw queries fail, it's not a hard failure
418 * and it is safe to continue
419 */
420 hid_warn(hdev, "failed to poke device, command %d, err %d\n",
421 rep_data[0], ret);
422 break;
81af7e61
BT
423 case INTUOS4WL:
424 if (speed == 1)
425 wacom->wacom_wac.bt_features &= ~0x20;
426 else
427 wacom->wacom_wac.bt_features |= 0x20;
428
429 rep_data[0] = 0x03;
430 rep_data[1] = wacom->wacom_wac.bt_features;
431
296b7378
PF
432 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
433 1);
81af7e61
BT
434 if (ret >= 0)
435 wacom->wacom_wac.bt_high_speed = speed;
436 break;
387142bb
BT
437 }
438
f81a1295
BT
439 return 0;
440}
441
fe494bc2
JG
442/*
443 * Switch the tablet into its most-capable mode. Wacom tablets are
444 * typically configured to power-up in a mode which sends mouse-like
445 * reports to the OS. To get absolute position, pressure data, etc.
446 * from the tablet, it is necessary to switch the tablet out of this
447 * mode and into one which sends the full range of tablet data.
448 */
27b20a9d
BT
449static int wacom_query_tablet_data(struct hid_device *hdev,
450 struct wacom_features *features)
fe494bc2 451{
326ea2a9
JG
452 struct wacom *wacom = hid_get_drvdata(hdev);
453 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
454
f81a1295
BT
455 if (hdev->bus == BUS_BLUETOOTH)
456 return wacom_bt_query_tablet_data(hdev, 1, features);
457
326ea2a9
JG
458 if (features->type != HID_GENERIC) {
459 if (features->device_type & WACOM_DEVICETYPE_TOUCH) {
460 if (features->type > TABLETPC) {
461 /* MT Tablet PC touch */
462 wacom_wac->mode_report = 3;
463 wacom_wac->mode_value = 4;
464 } else if (features->type == WACOM_24HDT) {
465 wacom_wac->mode_report = 18;
466 wacom_wac->mode_value = 2;
467 } else if (features->type == WACOM_27QHDT) {
468 wacom_wac->mode_report = 131;
469 wacom_wac->mode_value = 2;
470 } else if (features->type == BAMBOO_PAD) {
471 wacom_wac->mode_report = 2;
472 wacom_wac->mode_value = 2;
473 }
474 } else if (features->device_type & WACOM_DEVICETYPE_PEN) {
475 if (features->type <= BAMBOO_PT) {
476 wacom_wac->mode_report = 2;
477 wacom_wac->mode_value = 2;
478 }
1963518b 479 }
ec67bbed 480 }
3b7307c2 481
326ea2a9
JG
482 wacom_set_device_mode(hdev, wacom_wac);
483
484 if (features->type == HID_GENERIC)
485 return wacom_hid_set_device_mode(hdev);
486
fe494bc2 487 return 0;
3b7307c2
DT
488}
489
c669fb2b 490static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
1963518b 491 struct wacom_features *features)
ec67bbed 492{
27b20a9d
BT
493 struct wacom *wacom = hid_get_drvdata(hdev);
494 struct usb_interface *intf = wacom->intf;
ec67bbed 495
fed87e65 496 /* default features */
fed87e65
HR
497 features->x_fuzz = 4;
498 features->y_fuzz = 4;
499 features->pressure_fuzz = 0;
bef7e200
JG
500 features->distance_fuzz = 1;
501 features->tilt_fuzz = 1;
ec67bbed 502
d3825d51
CB
503 /*
504 * The wireless device HID is basic and layout conflicts with
505 * other tablets (monitor and touch interface can look like pen).
506 * Skip the query for this type and modify defaults based on
507 * interface number.
508 */
509 if (features->type == WIRELESS) {
3f14a63a 510 if (intf->cur_altsetting->desc.bInterfaceNumber == 0)
ccad85cc 511 features->device_type = WACOM_DEVICETYPE_WL_MONITOR;
3f14a63a 512 else
aa86b18c 513 features->device_type = WACOM_DEVICETYPE_NONE;
3f14a63a 514 return;
d3825d51
CB
515 }
516
c669fb2b 517 wacom_parse_hid(hdev, features);
ec67bbed
PC
518}
519
4451e088 520struct wacom_hdev_data {
4492efff
PC
521 struct list_head list;
522 struct kref kref;
4451e088 523 struct hid_device *dev;
4492efff
PC
524 struct wacom_shared shared;
525};
526
527static LIST_HEAD(wacom_udev_list);
528static DEFINE_MUTEX(wacom_udev_list_lock);
529
4451e088
BT
530static bool wacom_are_sibling(struct hid_device *hdev,
531 struct hid_device *sibling)
aea2bf6a 532{
4451e088
BT
533 struct wacom *wacom = hid_get_drvdata(hdev);
534 struct wacom_features *features = &wacom->wacom_wac.features;
535 int vid = features->oVid;
536 int pid = features->oPid;
537 int n1,n2;
538
539 if (vid == 0 && pid == 0) {
540 vid = hdev->vendor;
541 pid = hdev->product;
542 }
aea2bf6a 543
4451e088
BT
544 if (vid != sibling->vendor || pid != sibling->product)
545 return false;
aea2bf6a 546
4451e088
BT
547 /* Compare the physical path. */
548 n1 = strrchr(hdev->phys, '.') - hdev->phys;
549 n2 = strrchr(sibling->phys, '.') - sibling->phys;
550 if (n1 != n2 || n1 <= 0 || n2 <= 0)
551 return false;
aea2bf6a 552
4451e088 553 return !strncmp(hdev->phys, sibling->phys, n1);
aea2bf6a
JG
554}
555
4451e088 556static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
4492efff 557{
4451e088 558 struct wacom_hdev_data *data;
4492efff
PC
559
560 list_for_each_entry(data, &wacom_udev_list, list) {
4451e088 561 if (wacom_are_sibling(hdev, data->dev)) {
4492efff
PC
562 kref_get(&data->kref);
563 return data;
564 }
565 }
566
567 return NULL;
568}
569
1c817c83
BT
570static void wacom_release_shared_data(struct kref *kref)
571{
572 struct wacom_hdev_data *data =
573 container_of(kref, struct wacom_hdev_data, kref);
574
575 mutex_lock(&wacom_udev_list_lock);
576 list_del(&data->list);
577 mutex_unlock(&wacom_udev_list_lock);
578
579 kfree(data);
580}
581
582static void wacom_remove_shared_data(void *res)
583{
584 struct wacom *wacom = res;
585 struct wacom_hdev_data *data;
586 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
587
588 if (wacom_wac->shared) {
589 data = container_of(wacom_wac->shared, struct wacom_hdev_data,
590 shared);
591
592 if (wacom_wac->shared->touch == wacom->hdev)
593 wacom_wac->shared->touch = NULL;
594 else if (wacom_wac->shared->pen == wacom->hdev)
595 wacom_wac->shared->pen = NULL;
596
597 kref_put(&data->kref, wacom_release_shared_data);
598 wacom_wac->shared = NULL;
599 }
600}
601
4451e088 602static int wacom_add_shared_data(struct hid_device *hdev)
4492efff 603{
4451e088
BT
604 struct wacom *wacom = hid_get_drvdata(hdev);
605 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
606 struct wacom_hdev_data *data;
4492efff
PC
607 int retval = 0;
608
609 mutex_lock(&wacom_udev_list_lock);
610
4451e088 611 data = wacom_get_hdev_data(hdev);
4492efff 612 if (!data) {
4451e088 613 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
4492efff
PC
614 if (!data) {
615 retval = -ENOMEM;
616 goto out;
617 }
618
619 kref_init(&data->kref);
4451e088 620 data->dev = hdev;
4492efff
PC
621 list_add_tail(&data->list, &wacom_udev_list);
622 }
623
4451e088 624 wacom_wac->shared = &data->shared;
4492efff 625
1c817c83
BT
626 retval = devm_add_action(&hdev->dev, wacom_remove_shared_data, wacom);
627 if (retval) {
628 mutex_unlock(&wacom_udev_list_lock);
629 wacom_remove_shared_data(wacom);
630 return retval;
631 }
632
aa86b18c 633 if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)
a97ac104 634 wacom_wac->shared->touch = hdev;
aa86b18c 635 else if (wacom_wac->features.device_type & WACOM_DEVICETYPE_PEN)
a97ac104
BT
636 wacom_wac->shared->pen = hdev;
637
4492efff
PC
638out:
639 mutex_unlock(&wacom_udev_list_lock);
640 return retval;
641}
642
5d7e7d47
EH
643static int wacom_led_control(struct wacom *wacom)
644{
645 unsigned char *buf;
9b5b95dd 646 int retval;
912ca216
PC
647 unsigned char report_id = WAC_CMD_LED_CONTROL;
648 int buf_size = 9;
5d7e7d47 649
a50aac71
BT
650 if (!wacom->led.groups)
651 return -ENOTSUPP;
652
912ca216
PC
653 if (wacom->wacom_wac.pid) { /* wireless connected */
654 report_id = WAC_CMD_WL_LED_CONTROL;
655 buf_size = 13;
656 }
657 buf = kzalloc(buf_size, GFP_KERNEL);
5d7e7d47
EH
658 if (!buf)
659 return -ENOMEM;
660
9b5b95dd 661 if (wacom->wacom_wac.features.type >= INTUOS5S &&
9a35c411 662 wacom->wacom_wac.features.type <= INTUOSPL) {
9b5b95dd
JG
663 /*
664 * Touch Ring and crop mark LED luminance may take on
665 * one of four values:
666 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
667 */
a50aac71 668 int ring_led = wacom->led.groups[0].select & 0x03;
9b5b95dd
JG
669 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
670 int crop_lum = 0;
912ca216
PC
671 unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
672
673 buf[0] = report_id;
674 if (wacom->wacom_wac.pid) {
675 wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
676 buf, buf_size, WAC_CMD_RETRIES);
677 buf[0] = report_id;
678 buf[4] = led_bits;
679 } else
680 buf[1] = led_bits;
9b5b95dd
JG
681 }
682 else {
a50aac71 683 int led = wacom->led.groups[0].select | 0x4;
9b5b95dd
JG
684
685 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
686 wacom->wacom_wac.features.type == WACOM_24HD)
a50aac71 687 led |= (wacom->led.groups[1].select << 4) | 0x40;
9b5b95dd 688
912ca216 689 buf[0] = report_id;
9b5b95dd
JG
690 buf[1] = led;
691 buf[2] = wacom->led.llv;
692 buf[3] = wacom->led.hlv;
693 buf[4] = wacom->led.img_lum;
694 }
5d7e7d47 695
912ca216 696 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
296b7378 697 WAC_CMD_RETRIES);
5d7e7d47
EH
698 kfree(buf);
699
700 return retval;
701}
702
849e2f06
BT
703static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
704 const unsigned len, const void *img)
5d7e7d47
EH
705{
706 unsigned char *buf;
707 int i, retval;
849e2f06 708 const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
5d7e7d47 709
849e2f06 710 buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
5d7e7d47
EH
711 if (!buf)
712 return -ENOMEM;
713
714 /* Send 'start' command */
715 buf[0] = WAC_CMD_ICON_START;
716 buf[1] = 1;
296b7378
PF
717 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
718 WAC_CMD_RETRIES);
5d7e7d47
EH
719 if (retval < 0)
720 goto out;
721
849e2f06 722 buf[0] = xfer_id;
5d7e7d47
EH
723 buf[1] = button_id & 0x07;
724 for (i = 0; i < 4; i++) {
725 buf[2] = i;
849e2f06 726 memcpy(buf + 3, img + i * chunk_len, chunk_len);
5d7e7d47 727
27b20a9d 728 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
296b7378 729 buf, chunk_len + 3, WAC_CMD_RETRIES);
5d7e7d47
EH
730 if (retval < 0)
731 break;
732 }
733
734 /* Send 'stop' */
735 buf[0] = WAC_CMD_ICON_START;
736 buf[1] = 0;
296b7378
PF
737 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
738 WAC_CMD_RETRIES);
5d7e7d47
EH
739
740out:
741 kfree(buf);
742 return retval;
743}
744
09e7d941 745static ssize_t wacom_led_select_store(struct device *dev, int set_id,
5d7e7d47
EH
746 const char *buf, size_t count)
747{
ee79a8f8 748 struct hid_device *hdev = to_hid_device(dev);
29b47391 749 struct wacom *wacom = hid_get_drvdata(hdev);
5d7e7d47
EH
750 unsigned int id;
751 int err;
752
753 err = kstrtouint(buf, 10, &id);
754 if (err)
755 return err;
756
757 mutex_lock(&wacom->lock);
758
a50aac71 759 wacom->led.groups[set_id].select = id & 0x3;
5d7e7d47
EH
760 err = wacom_led_control(wacom);
761
762 mutex_unlock(&wacom->lock);
763
764 return err < 0 ? err : count;
765}
766
09e7d941
PC
767#define DEVICE_LED_SELECT_ATTR(SET_ID) \
768static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
769 struct device_attribute *attr, const char *buf, size_t count) \
770{ \
771 return wacom_led_select_store(dev, SET_ID, buf, count); \
772} \
04c59abd
PC
773static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
774 struct device_attribute *attr, char *buf) \
775{ \
ee79a8f8 776 struct hid_device *hdev = to_hid_device(dev);\
29b47391 777 struct wacom *wacom = hid_get_drvdata(hdev); \
37449adc 778 return scnprintf(buf, PAGE_SIZE, "%d\n", \
a50aac71 779 wacom->led.groups[SET_ID].select); \
04c59abd 780} \
e0984bc3 781static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
04c59abd 782 wacom_led##SET_ID##_select_show, \
09e7d941
PC
783 wacom_led##SET_ID##_select_store)
784
785DEVICE_LED_SELECT_ATTR(0);
786DEVICE_LED_SELECT_ATTR(1);
5d7e7d47
EH
787
788static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
789 const char *buf, size_t count)
790{
791 unsigned int value;
792 int err;
793
794 err = kstrtouint(buf, 10, &value);
795 if (err)
796 return err;
797
798 mutex_lock(&wacom->lock);
799
800 *dest = value & 0x7f;
801 err = wacom_led_control(wacom);
802
803 mutex_unlock(&wacom->lock);
804
805 return err < 0 ? err : count;
806}
807
808#define DEVICE_LUMINANCE_ATTR(name, field) \
809static ssize_t wacom_##name##_luminance_store(struct device *dev, \
810 struct device_attribute *attr, const char *buf, size_t count) \
811{ \
ee79a8f8 812 struct hid_device *hdev = to_hid_device(dev);\
29b47391 813 struct wacom *wacom = hid_get_drvdata(hdev); \
5d7e7d47
EH
814 \
815 return wacom_luminance_store(wacom, &wacom->led.field, \
816 buf, count); \
817} \
37449adc
PC
818static ssize_t wacom_##name##_luminance_show(struct device *dev, \
819 struct device_attribute *attr, char *buf) \
820{ \
821 struct wacom *wacom = dev_get_drvdata(dev); \
822 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
823} \
e0984bc3 824static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
37449adc
PC
825 wacom_##name##_luminance_show, \
826 wacom_##name##_luminance_store)
5d7e7d47
EH
827
828DEVICE_LUMINANCE_ATTR(status0, llv);
829DEVICE_LUMINANCE_ATTR(status1, hlv);
830DEVICE_LUMINANCE_ATTR(buttons, img_lum);
831
832static ssize_t wacom_button_image_store(struct device *dev, int button_id,
833 const char *buf, size_t count)
834{
ee79a8f8 835 struct hid_device *hdev = to_hid_device(dev);
29b47391 836 struct wacom *wacom = hid_get_drvdata(hdev);
5d7e7d47 837 int err;
849e2f06
BT
838 unsigned len;
839 u8 xfer_id;
840
841 if (hdev->bus == BUS_BLUETOOTH) {
842 len = 256;
843 xfer_id = WAC_CMD_ICON_BT_XFER;
844 } else {
845 len = 1024;
846 xfer_id = WAC_CMD_ICON_XFER;
847 }
5d7e7d47 848
849e2f06 849 if (count != len)
5d7e7d47
EH
850 return -EINVAL;
851
852 mutex_lock(&wacom->lock);
853
849e2f06 854 err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
5d7e7d47
EH
855
856 mutex_unlock(&wacom->lock);
857
858 return err < 0 ? err : count;
859}
860
861#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
862static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
863 struct device_attribute *attr, const char *buf, size_t count) \
864{ \
865 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
866} \
e0984bc3 867static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
5d7e7d47
EH
868 NULL, wacom_btnimg##BUTTON_ID##_store)
869
870DEVICE_BTNIMG_ATTR(0);
871DEVICE_BTNIMG_ATTR(1);
872DEVICE_BTNIMG_ATTR(2);
873DEVICE_BTNIMG_ATTR(3);
874DEVICE_BTNIMG_ATTR(4);
875DEVICE_BTNIMG_ATTR(5);
876DEVICE_BTNIMG_ATTR(6);
877DEVICE_BTNIMG_ATTR(7);
878
09e7d941
PC
879static struct attribute *cintiq_led_attrs[] = {
880 &dev_attr_status_led0_select.attr,
881 &dev_attr_status_led1_select.attr,
882 NULL
883};
884
885static struct attribute_group cintiq_led_attr_group = {
886 .name = "wacom_led",
887 .attrs = cintiq_led_attrs,
888};
889
890static struct attribute *intuos4_led_attrs[] = {
5d7e7d47
EH
891 &dev_attr_status0_luminance.attr,
892 &dev_attr_status1_luminance.attr,
09e7d941 893 &dev_attr_status_led0_select.attr,
5d7e7d47
EH
894 &dev_attr_buttons_luminance.attr,
895 &dev_attr_button0_rawimg.attr,
896 &dev_attr_button1_rawimg.attr,
897 &dev_attr_button2_rawimg.attr,
898 &dev_attr_button3_rawimg.attr,
899 &dev_attr_button4_rawimg.attr,
900 &dev_attr_button5_rawimg.attr,
901 &dev_attr_button6_rawimg.attr,
902 &dev_attr_button7_rawimg.attr,
903 NULL
904};
905
09e7d941 906static struct attribute_group intuos4_led_attr_group = {
5d7e7d47 907 .name = "wacom_led",
09e7d941 908 .attrs = intuos4_led_attrs,
5d7e7d47
EH
909};
910
9b5b95dd
JG
911static struct attribute *intuos5_led_attrs[] = {
912 &dev_attr_status0_luminance.attr,
913 &dev_attr_status_led0_select.attr,
914 NULL
915};
916
917static struct attribute_group intuos5_led_attr_group = {
918 .name = "wacom_led",
919 .attrs = intuos5_led_attrs,
920};
921
2df68a88
BT
922struct wacom_sysfs_group_devres {
923 struct attribute_group *group;
924 struct kobject *root;
925};
926
927static void wacom_devm_sysfs_group_release(struct device *dev, void *res)
928{
929 struct wacom_sysfs_group_devres *devres = res;
930 struct kobject *kobj = devres->root;
931
932 dev_dbg(dev, "%s: dropping reference to %s\n",
933 __func__, devres->group->name);
934 sysfs_remove_group(kobj, devres->group);
935}
936
f9036bd4
BT
937static int __wacom_devm_sysfs_create_group(struct wacom *wacom,
938 struct kobject *root,
939 struct attribute_group *group)
2df68a88
BT
940{
941 struct wacom_sysfs_group_devres *devres;
942 int error;
943
944 devres = devres_alloc(wacom_devm_sysfs_group_release,
945 sizeof(struct wacom_sysfs_group_devres),
946 GFP_KERNEL);
947 if (!devres)
948 return -ENOMEM;
949
950 devres->group = group;
f9036bd4 951 devres->root = root;
2df68a88
BT
952
953 error = sysfs_create_group(devres->root, group);
954 if (error)
955 return error;
956
957 devres_add(&wacom->hdev->dev, devres);
958
959 return 0;
960}
961
f9036bd4
BT
962static int wacom_devm_sysfs_create_group(struct wacom *wacom,
963 struct attribute_group *group)
964{
965 return __wacom_devm_sysfs_create_group(wacom, &wacom->hdev->dev.kobj,
966 group);
967}
968
a50aac71
BT
969static void wacom_led_groups_release(void *data)
970{
971 struct wacom *wacom = data;
972
973 wacom->led.groups = NULL;
974}
975
976static int wacom_led_groups_allocate(struct wacom *wacom, int count)
977{
978 struct wacom_group_leds *groups;
979 int error;
980
981 groups = devm_kzalloc(&wacom->hdev->dev,
982 sizeof(struct wacom_group_leds) * count,
983 GFP_KERNEL);
984 if (!groups)
985 return -ENOMEM;
986
987 error = devm_add_action_or_reset(&wacom->hdev->dev,
988 wacom_led_groups_release,
989 wacom);
990 if (error)
991 return error;
992
993 wacom->led.groups = groups;
994
995 return 0;
996}
997
5d7e7d47
EH
998static int wacom_initialize_leds(struct wacom *wacom)
999{
1000 int error;
1001
862cf553
JG
1002 if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
1003 return 0;
1004
09e7d941
PC
1005 /* Initialize default values */
1006 switch (wacom->wacom_wac.features.type) {
a19fc986 1007 case INTUOS4S:
09e7d941 1008 case INTUOS4:
81af7e61 1009 case INTUOS4WL:
09e7d941 1010 case INTUOS4L:
f4fa9a6d 1011 wacom->led.llv = 10;
5d7e7d47
EH
1012 wacom->led.hlv = 20;
1013 wacom->led.img_lum = 10;
a50aac71
BT
1014
1015 error = wacom_led_groups_allocate(wacom, 1);
1016 if (error) {
1017 hid_err(wacom->hdev,
1018 "cannot create leds err: %d\n", error);
1019 return error;
1020 }
1021
2df68a88
BT
1022 error = wacom_devm_sysfs_create_group(wacom,
1023 &intuos4_led_attr_group);
09e7d941
PC
1024 break;
1025
246835fc 1026 case WACOM_24HD:
09e7d941 1027 case WACOM_21UX2:
09e7d941
PC
1028 wacom->led.llv = 0;
1029 wacom->led.hlv = 0;
1030 wacom->led.img_lum = 0;
5d7e7d47 1031
a50aac71
BT
1032 error = wacom_led_groups_allocate(wacom, 2);
1033 if (error) {
1034 hid_err(wacom->hdev,
1035 "cannot create leds err: %d\n", error);
1036 return error;
1037 }
1038
2df68a88
BT
1039 error = wacom_devm_sysfs_create_group(wacom,
1040 &cintiq_led_attr_group);
09e7d941
PC
1041 break;
1042
9b5b95dd
JG
1043 case INTUOS5S:
1044 case INTUOS5:
1045 case INTUOS5L:
9a35c411
PC
1046 case INTUOSPS:
1047 case INTUOSPM:
1048 case INTUOSPL:
862cf553
JG
1049 wacom->led.llv = 32;
1050 wacom->led.hlv = 0;
1051 wacom->led.img_lum = 0;
1052
a50aac71
BT
1053 error = wacom_led_groups_allocate(wacom, 1);
1054 if (error) {
1055 hid_err(wacom->hdev,
1056 "cannot create leds err: %d\n", error);
1057 return error;
1058 }
1059
2df68a88
BT
1060 error = wacom_devm_sysfs_create_group(wacom,
1061 &intuos5_led_attr_group);
9b5b95dd
JG
1062 break;
1063
a50aac71
BT
1064 case REMOTE:
1065 error = wacom_led_groups_allocate(wacom, 5);
1066 if (error) {
1067 hid_err(wacom->hdev,
1068 "cannot create leds err: %d\n", error);
1069 return error;
1070 }
1071 return 0;
1072
09e7d941
PC
1073 default:
1074 return 0;
5d7e7d47
EH
1075 }
1076
09e7d941 1077 if (error) {
c31a408f 1078 hid_err(wacom->hdev,
09e7d941
PC
1079 "cannot create sysfs group err: %d\n", error);
1080 return error;
1081 }
1082 wacom_led_control(wacom);
1083
5d7e7d47
EH
1084 return 0;
1085}
1086
a1d552cc 1087static enum power_supply_property wacom_battery_props[] = {
71fa641e 1088 POWER_SUPPLY_PROP_PRESENT,
ac8d1010 1089 POWER_SUPPLY_PROP_STATUS,
6e2a6e80 1090 POWER_SUPPLY_PROP_SCOPE,
a1d552cc
CB
1091 POWER_SUPPLY_PROP_CAPACITY
1092};
1093
7dbd229e
BT
1094static enum power_supply_property wacom_ac_props[] = {
1095 POWER_SUPPLY_PROP_PRESENT,
1096 POWER_SUPPLY_PROP_ONLINE,
1097 POWER_SUPPLY_PROP_SCOPE,
1098};
1099
a1d552cc
CB
1100static int wacom_battery_get_property(struct power_supply *psy,
1101 enum power_supply_property psp,
1102 union power_supply_propval *val)
1103{
297d716f 1104 struct wacom *wacom = power_supply_get_drvdata(psy);
a1d552cc
CB
1105 int ret = 0;
1106
1107 switch (psp) {
71fa641e
JG
1108 case POWER_SUPPLY_PROP_PRESENT:
1109 val->intval = wacom->wacom_wac.bat_connected;
1110 break;
6e2a6e80
BN
1111 case POWER_SUPPLY_PROP_SCOPE:
1112 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
1113 break;
a1d552cc
CB
1114 case POWER_SUPPLY_PROP_CAPACITY:
1115 val->intval =
ac8d1010
BT
1116 wacom->wacom_wac.battery_capacity;
1117 break;
1118 case POWER_SUPPLY_PROP_STATUS:
1119 if (wacom->wacom_wac.bat_charging)
1120 val->intval = POWER_SUPPLY_STATUS_CHARGING;
1121 else if (wacom->wacom_wac.battery_capacity == 100 &&
1122 wacom->wacom_wac.ps_connected)
1123 val->intval = POWER_SUPPLY_STATUS_FULL;
b0882cb7
JG
1124 else if (wacom->wacom_wac.ps_connected)
1125 val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
ac8d1010
BT
1126 else
1127 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
a1d552cc
CB
1128 break;
1129 default:
1130 ret = -EINVAL;
1131 break;
1132 }
1133
1134 return ret;
1135}
1136
7dbd229e
BT
1137static int wacom_ac_get_property(struct power_supply *psy,
1138 enum power_supply_property psp,
1139 union power_supply_propval *val)
1140{
297d716f 1141 struct wacom *wacom = power_supply_get_drvdata(psy);
7dbd229e
BT
1142 int ret = 0;
1143
1144 switch (psp) {
1145 case POWER_SUPPLY_PROP_PRESENT:
1146 /* fall through */
1147 case POWER_SUPPLY_PROP_ONLINE:
1148 val->intval = wacom->wacom_wac.ps_connected;
1149 break;
1150 case POWER_SUPPLY_PROP_SCOPE:
1151 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
1152 break;
1153 default:
1154 ret = -EINVAL;
1155 break;
1156 }
1157 return ret;
1158}
1159
a1d552cc
CB
1160static int wacom_initialize_battery(struct wacom *wacom)
1161{
d70420b9 1162 static atomic_t battery_no = ATOMIC_INIT(0);
b189da90 1163 struct device *dev = &wacom->hdev->dev;
297d716f 1164 struct power_supply_config psy_cfg = { .drv_data = wacom, };
b189da90 1165 struct power_supply_desc *bat_desc = &wacom->battery_desc;
d70420b9 1166 unsigned long n;
b189da90
BT
1167 int error;
1168
1169 if (!devres_open_group(dev, bat_desc, GFP_KERNEL))
1170 return -ENOMEM;
a1d552cc 1171
ac8d1010 1172 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) {
297d716f 1173 struct power_supply_desc *ac_desc = &wacom->ac_desc;
d70420b9 1174 n = atomic_inc_return(&battery_no) - 1;
7dbd229e 1175
297d716f
KK
1176 bat_desc->properties = wacom_battery_props;
1177 bat_desc->num_properties = ARRAY_SIZE(wacom_battery_props);
1178 bat_desc->get_property = wacom_battery_get_property;
d70420b9 1179 sprintf(wacom->wacom_wac.bat_name, "wacom_battery_%ld", n);
297d716f
KK
1180 bat_desc->name = wacom->wacom_wac.bat_name;
1181 bat_desc->type = POWER_SUPPLY_TYPE_BATTERY;
1182 bat_desc->use_for_apm = 0;
a1d552cc 1183
297d716f
KK
1184 ac_desc->properties = wacom_ac_props;
1185 ac_desc->num_properties = ARRAY_SIZE(wacom_ac_props);
1186 ac_desc->get_property = wacom_ac_get_property;
7dbd229e 1187 sprintf(wacom->wacom_wac.ac_name, "wacom_ac_%ld", n);
297d716f
KK
1188 ac_desc->name = wacom->wacom_wac.ac_name;
1189 ac_desc->type = POWER_SUPPLY_TYPE_MAINS;
1190 ac_desc->use_for_apm = 0;
1191
b189da90
BT
1192 wacom->battery = devm_power_supply_register(dev,
1193 &wacom->battery_desc,
1194 &psy_cfg);
1195 if (IS_ERR(wacom->battery)) {
1196 error = PTR_ERR(wacom->battery);
1197 goto err;
1198 }
297d716f
KK
1199
1200 power_supply_powers(wacom->battery, &wacom->hdev->dev);
1201
b189da90
BT
1202 wacom->ac = devm_power_supply_register(dev,
1203 &wacom->ac_desc,
1204 &psy_cfg);
297d716f 1205 if (IS_ERR(wacom->ac)) {
b189da90
BT
1206 error = PTR_ERR(wacom->ac);
1207 goto err;
7dbd229e
BT
1208 }
1209
297d716f 1210 power_supply_powers(wacom->ac, &wacom->hdev->dev);
a1d552cc
CB
1211 }
1212
b189da90 1213 devres_close_group(dev, bat_desc);
7dbd229e 1214 return 0;
b189da90
BT
1215
1216err:
1217 devres_release_group(dev, bat_desc);
1218 return error;
a1d552cc
CB
1219}
1220
1221static void wacom_destroy_battery(struct wacom *wacom)
1222{
8de29a35 1223 if (wacom->battery) {
b189da90 1224 devres_release_group(&wacom->hdev->dev, &wacom->battery_desc);
297d716f 1225 wacom->battery = NULL;
297d716f 1226 wacom->ac = NULL;
b7af2bb8 1227 }
a1d552cc
CB
1228}
1229
f81a1295
BT
1230static ssize_t wacom_show_speed(struct device *dev,
1231 struct device_attribute
1232 *attr, char *buf)
1233{
ee79a8f8 1234 struct hid_device *hdev = to_hid_device(dev);
f81a1295
BT
1235 struct wacom *wacom = hid_get_drvdata(hdev);
1236
1237 return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
1238}
1239
1240static ssize_t wacom_store_speed(struct device *dev,
1241 struct device_attribute *attr,
1242 const char *buf, size_t count)
1243{
ee79a8f8 1244 struct hid_device *hdev = to_hid_device(dev);
f81a1295
BT
1245 struct wacom *wacom = hid_get_drvdata(hdev);
1246 u8 new_speed;
1247
1248 if (kstrtou8(buf, 0, &new_speed))
1249 return -EINVAL;
1250
1251 if (new_speed != 0 && new_speed != 1)
1252 return -EINVAL;
1253
1254 wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
1255
1256 return count;
1257}
1258
e0984bc3 1259static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
f81a1295
BT
1260 wacom_show_speed, wacom_store_speed);
1261
72b236d6
AS
1262
1263static ssize_t wacom_show_remote_mode(struct kobject *kobj,
1264 struct kobj_attribute *kattr,
1265 char *buf, int index)
1266{
2cf83833 1267 struct device *dev = kobj_to_dev(kobj->parent);
ee79a8f8 1268 struct hid_device *hdev = to_hid_device(dev);
72b236d6
AS
1269 struct wacom *wacom = hid_get_drvdata(hdev);
1270 u8 mode;
1271
a50aac71 1272 mode = wacom->led.groups[index].select;
72b236d6
AS
1273 if (mode >= 0 && mode < 3)
1274 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
1275 else
1276 return snprintf(buf, PAGE_SIZE, "%d\n", -1);
1277}
1278
1279#define DEVICE_EKR_ATTR_GROUP(SET_ID) \
1280static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj, \
1281 struct kobj_attribute *kattr, char *buf) \
1282{ \
1283 return wacom_show_remote_mode(kobj, kattr, buf, SET_ID); \
1284} \
1285static struct kobj_attribute remote##SET_ID##_mode_attr = { \
1286 .attr = {.name = "remote_mode", \
1287 .mode = DEV_ATTR_RO_PERM}, \
1288 .show = wacom_show_remote##SET_ID##_mode, \
1289}; \
1290static struct attribute *remote##SET_ID##_serial_attrs[] = { \
1291 &remote##SET_ID##_mode_attr.attr, \
1292 NULL \
1293}; \
1294static struct attribute_group remote##SET_ID##_serial_group = { \
1295 .name = NULL, \
1296 .attrs = remote##SET_ID##_serial_attrs, \
1297}
1298
1299DEVICE_EKR_ATTR_GROUP(0);
1300DEVICE_EKR_ATTR_GROUP(1);
1301DEVICE_EKR_ATTR_GROUP(2);
1302DEVICE_EKR_ATTR_GROUP(3);
1303DEVICE_EKR_ATTR_GROUP(4);
1304
e6f2813a
BT
1305static int wacom_remote_create_attr_group(struct wacom *wacom, __u32 serial,
1306 int index)
72b236d6
AS
1307{
1308 int error = 0;
83e6b40e 1309 struct wacom_remote *remote = wacom->remote;
72b236d6 1310
e7749f6e 1311 remote->remotes[index].group.name = devm_kasprintf(&wacom->hdev->dev,
83e6b40e
BT
1312 GFP_KERNEL,
1313 "%d", serial);
e7749f6e 1314 if (!remote->remotes[index].group.name)
72b236d6 1315 return -ENOMEM;
72b236d6 1316
f9036bd4 1317 error = __wacom_devm_sysfs_create_group(wacom, remote->remote_dir,
e7749f6e 1318 &remote->remotes[index].group);
72b236d6 1319 if (error) {
e7749f6e 1320 remote->remotes[index].group.name = NULL;
72b236d6
AS
1321 hid_err(wacom->hdev,
1322 "cannot create sysfs group err: %d\n", error);
72b236d6
AS
1323 return error;
1324 }
1325
1326 return 0;
1327}
1328
72b236d6
AS
1329static int wacom_cmd_unpair_remote(struct wacom *wacom, unsigned char selector)
1330{
1331 const size_t buf_size = 2;
1332 unsigned char *buf;
1333 int retval;
1334
1335 buf = kzalloc(buf_size, GFP_KERNEL);
1336 if (!buf)
1337 return -ENOMEM;
1338
1339 buf[0] = WAC_CMD_DELETE_PAIRING;
1340 buf[1] = selector;
1341
1342 retval = wacom_set_report(wacom->hdev, HID_OUTPUT_REPORT, buf,
1343 buf_size, WAC_CMD_RETRIES);
1344 kfree(buf);
1345
1346 return retval;
1347}
1348
1349static ssize_t wacom_store_unpair_remote(struct kobject *kobj,
1350 struct kobj_attribute *attr,
1351 const char *buf, size_t count)
1352{
1353 unsigned char selector = 0;
2cf83833 1354 struct device *dev = kobj_to_dev(kobj->parent);
ee79a8f8 1355 struct hid_device *hdev = to_hid_device(dev);
72b236d6
AS
1356 struct wacom *wacom = hid_get_drvdata(hdev);
1357 int err;
1358
1359 if (!strncmp(buf, "*\n", 2)) {
1360 selector = WAC_CMD_UNPAIR_ALL;
1361 } else {
1362 hid_info(wacom->hdev, "remote: unrecognized unpair code: %s\n",
1363 buf);
1364 return -1;
1365 }
1366
1367 mutex_lock(&wacom->lock);
1368
1369 err = wacom_cmd_unpair_remote(wacom, selector);
1370 mutex_unlock(&wacom->lock);
1371
1372 return err < 0 ? err : count;
1373}
1374
1375static struct kobj_attribute unpair_remote_attr = {
1376 .attr = {.name = "unpair_remote", .mode = 0200},
1377 .store = wacom_store_unpair_remote,
1378};
1379
1380static const struct attribute *remote_unpair_attrs[] = {
1381 &unpair_remote_attr.attr,
1382 NULL
1383};
1384
83e6b40e
BT
1385static void wacom_remotes_destroy(void *data)
1386{
1387 struct wacom *wacom = data;
1388 struct wacom_remote *remote = wacom->remote;
1389
1390 if (!remote)
1391 return;
1392
1393 kobject_put(remote->remote_dir);
1394 kfifo_free(&remote->remote_fifo);
1395 wacom->remote = NULL;
1396}
1397
1398static int wacom_initialize_remotes(struct wacom *wacom)
72b236d6
AS
1399{
1400 int error = 0;
83e6b40e 1401 struct wacom_remote *remote;
72b236d6
AS
1402 int i;
1403
1404 if (wacom->wacom_wac.features.type != REMOTE)
1405 return 0;
1406
83e6b40e
BT
1407 remote = devm_kzalloc(&wacom->hdev->dev, sizeof(*wacom->remote),
1408 GFP_KERNEL);
1409 if (!remote)
1410 return -ENOMEM;
72b236d6 1411
83e6b40e
BT
1412 wacom->remote = remote;
1413
1414 spin_lock_init(&remote->remote_lock);
1415
1416 error = kfifo_alloc(&remote->remote_fifo,
1417 5 * sizeof(struct wacom_remote_data),
1418 GFP_KERNEL);
1419 if (error) {
1420 hid_err(wacom->hdev, "failed allocating remote_fifo\n");
72b236d6 1421 return -ENOMEM;
83e6b40e 1422 }
72b236d6 1423
e7749f6e
BT
1424 remote->remotes[0].group = remote0_serial_group;
1425 remote->remotes[1].group = remote1_serial_group;
1426 remote->remotes[2].group = remote2_serial_group;
1427 remote->remotes[3].group = remote3_serial_group;
1428 remote->remotes[4].group = remote4_serial_group;
83e6b40e
BT
1429
1430 remote->remote_dir = kobject_create_and_add("wacom_remote",
1431 &wacom->hdev->dev.kobj);
1432 if (!remote->remote_dir)
1433 return -ENOMEM;
1434
1435 error = sysfs_create_files(remote->remote_dir, remote_unpair_attrs);
72b236d6
AS
1436
1437 if (error) {
1438 hid_err(wacom->hdev,
1439 "cannot create sysfs group err: %d\n", error);
1440 return error;
1441 }
1442
1443 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
a50aac71 1444 wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
e7749f6e 1445 remote->remotes[i].serial = 0;
72b236d6
AS
1446 }
1447
83e6b40e
BT
1448 error = devm_add_action_or_reset(&wacom->hdev->dev,
1449 wacom_remotes_destroy, wacom);
1450 if (error)
1451 return error;
1452
72b236d6
AS
1453 return 0;
1454}
1455
d2d13f18 1456static struct input_dev *wacom_allocate_input(struct wacom *wacom)
3aac0ef1
CB
1457{
1458 struct input_dev *input_dev;
b6c79f2c 1459 struct hid_device *hdev = wacom->hdev;
3aac0ef1 1460 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
3aac0ef1 1461
3dad188e 1462 input_dev = devm_input_allocate_device(&hdev->dev);
d2d13f18
BT
1463 if (!input_dev)
1464 return NULL;
3aac0ef1 1465
2bdd163c 1466 input_dev->name = wacom_wac->features.name;
b6c79f2c
BT
1467 input_dev->phys = hdev->phys;
1468 input_dev->dev.parent = &hdev->dev;
3aac0ef1
CB
1469 input_dev->open = wacom_open;
1470 input_dev->close = wacom_close;
b6c79f2c
BT
1471 input_dev->uniq = hdev->uniq;
1472 input_dev->id.bustype = hdev->bus;
1473 input_dev->id.vendor = hdev->vendor;
12969e3b 1474 input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
b6c79f2c 1475 input_dev->id.version = hdev->version;
3aac0ef1
CB
1476 input_set_drvdata(input_dev, wacom);
1477
d2d13f18
BT
1478 return input_dev;
1479}
1480
d9f2d203
JG
1481static int wacom_allocate_inputs(struct wacom *wacom)
1482{
1483 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1484
1485 wacom_wac->pen_input = wacom_allocate_input(wacom);
1486 wacom_wac->touch_input = wacom_allocate_input(wacom);
1487 wacom_wac->pad_input = wacom_allocate_input(wacom);
3dad188e
BT
1488 if (!wacom_wac->pen_input ||
1489 !wacom_wac->touch_input ||
1490 !wacom_wac->pad_input)
d9f2d203 1491 return -ENOMEM;
d9f2d203 1492
2bdd163c 1493 wacom_wac->pen_input->name = wacom_wac->pen_name;
d9f2d203
JG
1494 wacom_wac->touch_input->name = wacom_wac->touch_name;
1495 wacom_wac->pad_input->name = wacom_wac->pad_name;
1496
1497 return 0;
1498}
1499
2546dacd
BT
1500static int wacom_register_inputs(struct wacom *wacom)
1501{
2a6cdbdd 1502 struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev;
2546dacd 1503 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
2636a3f2 1504 int error = 0;
2546dacd 1505
2a6cdbdd
JG
1506 pen_input_dev = wacom_wac->pen_input;
1507 touch_input_dev = wacom_wac->touch_input;
2546dacd
BT
1508 pad_input_dev = wacom_wac->pad_input;
1509
2a6cdbdd 1510 if (!pen_input_dev || !touch_input_dev || !pad_input_dev)
2546dacd
BT
1511 return -EINVAL;
1512
2a6cdbdd
JG
1513 error = wacom_setup_pen_input_capabilities(pen_input_dev, wacom_wac);
1514 if (error) {
1515 /* no pen in use on this interface */
1516 input_free_device(pen_input_dev);
1517 wacom_wac->pen_input = NULL;
1518 pen_input_dev = NULL;
1519 } else {
1520 error = input_register_device(pen_input_dev);
1521 if (error)
3dad188e 1522 goto fail;
2a6cdbdd
JG
1523 }
1524
1525 error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac);
1526 if (error) {
1527 /* no touch in use on this interface */
1528 input_free_device(touch_input_dev);
1529 wacom_wac->touch_input = NULL;
1530 touch_input_dev = NULL;
1531 } else {
1532 error = input_register_device(touch_input_dev);
30ebc1ae 1533 if (error)
3dad188e 1534 goto fail;
30ebc1ae 1535 }
1963518b 1536
d2d13f18
BT
1537 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
1538 if (error) {
1539 /* no pad in use on this interface */
1540 input_free_device(pad_input_dev);
1541 wacom_wac->pad_input = NULL;
1542 pad_input_dev = NULL;
1543 } else {
1544 error = input_register_device(pad_input_dev);
1545 if (error)
3dad188e 1546 goto fail;
d2d13f18
BT
1547 }
1548
1963518b 1549 return 0;
3aac0ef1 1550
3dad188e
BT
1551fail:
1552 wacom_wac->pad_input = NULL;
2a6cdbdd 1553 wacom_wac->touch_input = NULL;
2a6cdbdd 1554 wacom_wac->pen_input = NULL;
3aac0ef1
CB
1555 return error;
1556}
1557
0be01712
JG
1558/*
1559 * Not all devices report physical dimensions from HID.
1560 * Compute the default from hardcoded logical dimension
1561 * and resolution before driver overwrites them.
1562 */
1563static void wacom_set_default_phy(struct wacom_features *features)
1564{
1565 if (features->x_resolution) {
1566 features->x_phy = (features->x_max * 100) /
1567 features->x_resolution;
1568 features->y_phy = (features->y_max * 100) /
1569 features->y_resolution;
1570 }
1571}
1572
1573static void wacom_calculate_res(struct wacom_features *features)
1574{
1575 /* set unit to "100th of a mm" for devices not reported by HID */
1576 if (!features->unit) {
1577 features->unit = 0x11;
1578 features->unitExpo = -3;
1579 }
1580
1581 features->x_resolution = wacom_calc_hid_res(features->x_max,
1582 features->x_phy,
1583 features->unit,
1584 features->unitExpo);
1585 features->y_resolution = wacom_calc_hid_res(features->y_max,
1586 features->y_phy,
1587 features->unit,
1588 features->unitExpo);
1589}
1590
fce9957d
JG
1591void wacom_battery_work(struct work_struct *work)
1592{
d17d1f17 1593 struct wacom *wacom = container_of(work, struct wacom, battery_work);
fce9957d
JG
1594
1595 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
8de29a35 1596 !wacom->battery) {
fce9957d
JG
1597 wacom_initialize_battery(wacom);
1598 }
1599 else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
8de29a35 1600 wacom->battery) {
fce9957d
JG
1601 wacom_destroy_battery(wacom);
1602 }
1603}
1604
01c846f9
BT
1605static size_t wacom_compute_pktlen(struct hid_device *hdev)
1606{
1607 struct hid_report_enum *report_enum;
1608 struct hid_report *report;
1609 size_t size = 0;
1610
1611 report_enum = hdev->report_enum + HID_INPUT_REPORT;
1612
1613 list_for_each_entry(report, &report_enum->report_list, list) {
dabb05c6 1614 size_t report_size = hid_report_len(report);
01c846f9
BT
1615 if (report_size > size)
1616 size = report_size;
1617 }
1618
1619 return size;
1620}
1621
fd5f92b6 1622static void wacom_update_name(struct wacom *wacom, const char *suffix)
c24eab4e
PC
1623{
1624 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1625 struct wacom_features *features = &wacom_wac->features;
44b5250b 1626 char name[WACOM_NAME_MAX];
c24eab4e
PC
1627
1628 /* Generic devices name unspecified */
1629 if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) {
1630 if (strstr(wacom->hdev->name, "Wacom") ||
1631 strstr(wacom->hdev->name, "wacom") ||
1632 strstr(wacom->hdev->name, "WACOM")) {
1633 /* name is in HID descriptor, use it */
44b5250b 1634 strlcpy(name, wacom->hdev->name, sizeof(name));
c24eab4e
PC
1635
1636 /* strip out excess whitespaces */
1637 while (1) {
44b5250b 1638 char *gap = strstr(name, " ");
c24eab4e
PC
1639 if (gap == NULL)
1640 break;
1641 /* shift everything including the terminator */
1642 memmove(gap, gap+1, strlen(gap));
1643 }
1644 /* get rid of trailing whitespace */
44b5250b
JG
1645 if (name[strlen(name)-1] == ' ')
1646 name[strlen(name)-1] = '\0';
c24eab4e
PC
1647 } else {
1648 /* no meaningful name retrieved. use product ID */
44b5250b 1649 snprintf(name, sizeof(name),
c24eab4e
PC
1650 "%s %X", features->name, wacom->hdev->product);
1651 }
1652 } else {
44b5250b 1653 strlcpy(name, features->name, sizeof(name));
c24eab4e
PC
1654 }
1655
1656 /* Append the device type to the name */
2a6cdbdd 1657 snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name),
fd5f92b6 1658 "%s%s Pen", name, suffix);
2a6cdbdd 1659 snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name),
fd5f92b6 1660 "%s%s Finger", name, suffix);
c24eab4e 1661 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
fd5f92b6 1662 "%s%s Pad", name, suffix);
c24eab4e
PC
1663}
1664
84dfbd7f
BT
1665static void wacom_release_resources(struct wacom *wacom)
1666{
1667 struct hid_device *hdev = wacom->hdev;
1668
1669 if (!wacom->resources)
1670 return;
1671
1672 devres_release_group(&hdev->dev, wacom);
1673
1674 wacom->resources = false;
1675
1676 wacom->wacom_wac.pen_input = NULL;
1677 wacom->wacom_wac.touch_input = NULL;
1678 wacom->wacom_wac.pad_input = NULL;
1679}
1680
fd5f92b6 1681static int wacom_parse_and_register(struct wacom *wacom, bool wireless)
3bea733a 1682{
c58ac3a8
BT
1683 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1684 struct wacom_features *features = &wacom_wac->features;
1685 struct hid_device *hdev = wacom->hdev;
e33da8a5 1686 int error;
7704ac93 1687 unsigned int connect_mask = HID_CONNECT_HIDRAW;
3bea733a 1688
01c846f9 1689 features->pktlen = wacom_compute_pktlen(hdev);
c58ac3a8
BT
1690 if (features->pktlen > WACOM_PKGLEN_MAX)
1691 return -EINVAL;
3bea733a 1692
84dfbd7f
BT
1693 if (!devres_open_group(&hdev->dev, wacom, GFP_KERNEL))
1694 return -ENOMEM;
1695
1696 wacom->resources = true;
1697
3f14a63a
JG
1698 error = wacom_allocate_inputs(wacom);
1699 if (error)
3888b0d5 1700 goto fail;
494078b0 1701
8c97a765
BT
1702 /*
1703 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
1704 * into debug mode for the touch part.
1705 * We ignore the other interfaces.
1706 */
1707 if (features->type == BAMBOO_PAD) {
1708 if (features->pktlen == WACOM_PKGLEN_PENABLED) {
1709 features->type = HID_GENERIC;
1710 } else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) &&
1711 (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) {
1712 error = -ENODEV;
3888b0d5 1713 goto fail;
8c97a765
BT
1714 }
1715 }
1716
401d7d10
PC
1717 /* set the default size in case we do not get them from hid */
1718 wacom_set_default_phy(features);
1719
f393ee2b 1720 /* Retrieve the physical and logical size for touch devices */
c669fb2b 1721 wacom_retrieve_hid_descriptor(hdev, features);
42f4f272 1722 wacom_setup_device_quirks(wacom);
042628ab 1723
aa86b18c
JG
1724 if (features->device_type == WACOM_DEVICETYPE_NONE &&
1725 features->type != WIRELESS) {
8e116d31
JG
1726 error = features->type == HID_GENERIC ? -ENODEV : 0;
1727
042628ab 1728 dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.",
8e116d31
JG
1729 hdev->name,
1730 error ? "Ignoring" : "Assuming pen");
1731
1732 if (error)
3888b0d5 1733 goto fail;
042628ab 1734
aa86b18c 1735 features->device_type |= WACOM_DEVICETYPE_PEN;
042628ab
JG
1736 }
1737
401d7d10
PC
1738 wacom_calculate_res(features);
1739
fd5f92b6 1740 wacom_update_name(wacom, wireless ? " (WL)" : "");
4492efff 1741
f3586d2f
PC
1742 error = wacom_add_shared_data(hdev);
1743 if (error)
3888b0d5 1744 goto fail;
49b764ae 1745
ccad85cc 1746 if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) &&
f81a1295
BT
1747 (features->quirks & WACOM_QUIRK_BATTERY)) {
1748 error = wacom_initialize_battery(wacom);
1749 if (error)
3888b0d5 1750 goto fail;
f81a1295
BT
1751 }
1752
3f14a63a
JG
1753 error = wacom_register_inputs(wacom);
1754 if (error)
3888b0d5 1755 goto fail;
f81a1295 1756
b62f6465 1757 if (wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD) {
85d2c77b
BT
1758 error = wacom_initialize_leds(wacom);
1759 if (error)
3888b0d5 1760 goto fail;
85d2c77b 1761
83e6b40e 1762 error = wacom_initialize_remotes(wacom);
b62f6465 1763 if (error)
3888b0d5 1764 goto fail;
b62f6465
BT
1765 }
1766
7704ac93
BT
1767 if (features->type == HID_GENERIC)
1768 connect_mask |= HID_CONNECT_DRIVER;
1769
29b47391 1770 /* Regular HID work starts now */
7704ac93 1771 error = hid_hw_start(hdev, connect_mask);
29b47391
BT
1772 if (error) {
1773 hid_err(hdev, "hw start failed\n");
3888b0d5 1774 goto fail;
d3825d51 1775 }
961794a0 1776
fd5f92b6
BT
1777 if (!wireless) {
1778 /* Note that if query fails it is not a hard failure */
1779 wacom_query_tablet_data(hdev, features);
1780 }
86e88f0e
JG
1781
1782 /* touch only Bamboo doesn't support pen */
1783 if ((features->type == BAMBOO_TOUCH) &&
1784 (features->device_type & WACOM_DEVICETYPE_PEN)) {
1785 error = -ENODEV;
b62f6465 1786 goto fail_quirks;
86e88f0e
JG
1787 }
1788
1789 /* pen only Bamboo neither support touch nor pad */
1790 if ((features->type == BAMBOO_PEN) &&
1791 ((features->device_type & WACOM_DEVICETYPE_TOUCH) ||
1792 (features->device_type & WACOM_DEVICETYPE_PAD))) {
1793 error = -ENODEV;
b62f6465 1794 goto fail_quirks;
86e88f0e
JG
1795 }
1796
ccad85cc 1797 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
29b47391
BT
1798 error = hid_hw_open(hdev);
1799
eda01dab 1800 if ((wacom_wac->features.type == INTUOSHT ||
97f9afa4 1801 wacom_wac->features.type == INTUOSHT2) &&
eda01dab 1802 (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)) {
97f9afa4
BT
1803 wacom_wac->shared->type = wacom_wac->features.type;
1804 wacom_wac->shared->touch_input = wacom_wac->touch_input;
961794a0
PC
1805 }
1806
84dfbd7f
BT
1807 devres_close_group(&hdev->dev, wacom);
1808
3bea733a
PC
1809 return 0;
1810
b62f6465 1811fail_quirks:
c58ac3a8 1812 hid_hw_stop(hdev);
3888b0d5 1813fail:
84dfbd7f 1814 wacom_release_resources(wacom);
c58ac3a8
BT
1815 return error;
1816}
1817
a2f091af
BT
1818static void wacom_wireless_work(struct work_struct *work)
1819{
d17d1f17 1820 struct wacom *wacom = container_of(work, struct wacom, wireless_work);
a2f091af
BT
1821 struct usb_device *usbdev = wacom->usbdev;
1822 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1823 struct hid_device *hdev1, *hdev2;
1824 struct wacom *wacom1, *wacom2;
1825 struct wacom_wac *wacom_wac1, *wacom_wac2;
1826 int error;
1827
1828 /*
1829 * Regardless if this is a disconnect or a new tablet,
1830 * remove any existing input and battery devices.
1831 */
1832
1833 wacom_destroy_battery(wacom);
1834
1835 /* Stylus interface */
1836 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
1837 wacom1 = hid_get_drvdata(hdev1);
1838 wacom_wac1 = &(wacom1->wacom_wac);
84dfbd7f 1839 wacom_release_resources(wacom1);
a2f091af
BT
1840
1841 /* Touch interface */
1842 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
1843 wacom2 = hid_get_drvdata(hdev2);
1844 wacom_wac2 = &(wacom2->wacom_wac);
84dfbd7f 1845 wacom_release_resources(wacom2);
a2f091af
BT
1846
1847 if (wacom_wac->pid == 0) {
1848 hid_info(wacom->hdev, "wireless tablet disconnected\n");
a2f091af
BT
1849 } else {
1850 const struct hid_device_id *id = wacom_ids;
1851
1852 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
1853 wacom_wac->pid);
1854
1855 while (id->bus) {
1856 if (id->vendor == USB_VENDOR_ID_WACOM &&
1857 id->product == wacom_wac->pid)
1858 break;
1859 id++;
1860 }
1861
1862 if (!id->bus) {
1863 hid_info(wacom->hdev, "ignoring unknown PID.\n");
1864 return;
1865 }
1866
1867 /* Stylus interface */
1868 wacom_wac1->features =
1869 *((struct wacom_features *)id->driver_data);
fd5f92b6 1870
a2f091af 1871 wacom_wac1->pid = wacom_wac->pid;
fd5f92b6
BT
1872 hid_hw_stop(hdev1);
1873 error = wacom_parse_and_register(wacom1, true);
a2f091af
BT
1874 if (error)
1875 goto fail;
1876
1877 /* Touch interface */
1878 if (wacom_wac1->features.touch_max ||
1879 (wacom_wac1->features.type >= INTUOSHT &&
1880 wacom_wac1->features.type <= BAMBOO_PT)) {
1881 wacom_wac2->features =
1882 *((struct wacom_features *)id->driver_data);
a2f091af 1883 wacom_wac2->pid = wacom_wac->pid;
fd5f92b6
BT
1884 hid_hw_stop(hdev2);
1885 error = wacom_parse_and_register(wacom2, true);
a2f091af
BT
1886 if (error)
1887 goto fail;
a2f091af
BT
1888 }
1889
1890 error = wacom_initialize_battery(wacom);
1891 if (error)
1892 goto fail;
1893 }
1894
1895 return;
1896
1897fail:
84dfbd7f 1898 wacom_release_resources(wacom1);
84dfbd7f 1899 wacom_release_resources(wacom2);
a2f091af
BT
1900 return;
1901}
1902
04bfa27b
BT
1903static void wacom_remote_destroy_one(struct wacom *wacom, unsigned int index)
1904{
1905 struct wacom_remote *remote = wacom->remote;
e7749f6e 1906 u32 serial = remote->remotes[index].serial;
04bfa27b
BT
1907 int i;
1908
e7749f6e
BT
1909 if (remote->remotes[index].group.name)
1910 devres_release_group(&wacom->hdev->dev,
1911 &remote->remotes[index]);
04bfa27b
BT
1912
1913 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
e7749f6e
BT
1914 if (remote->remotes[i].serial == serial) {
1915 remote->remotes[i].serial = 0;
1916 remote->remotes[i].group.name = NULL;
04bfa27b
BT
1917 wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
1918 }
1919 }
1920}
1921
1922static int wacom_remote_create_one(struct wacom *wacom, u32 serial,
1923 unsigned int index)
1924{
1925 struct wacom_remote *remote = wacom->remote;
f9036bd4 1926 struct device *dev = &wacom->hdev->dev;
04bfa27b
BT
1927 int error, k;
1928
1929 /* A remote can pair more than once with an EKR,
1930 * check to make sure this serial isn't already paired.
1931 */
1932 for (k = 0; k < WACOM_MAX_REMOTES; k++) {
e7749f6e 1933 if (remote->remotes[k].serial == serial)
04bfa27b
BT
1934 break;
1935 }
1936
1937 if (k < WACOM_MAX_REMOTES) {
e7749f6e 1938 remote->remotes[index].serial = serial;
04bfa27b
BT
1939 return 0;
1940 }
1941
e7749f6e 1942 if (!devres_open_group(dev, &remote->remotes[index], GFP_KERNEL))
f9036bd4
BT
1943 return -ENOMEM;
1944
04bfa27b
BT
1945 error = wacom_remote_create_attr_group(wacom, serial, index);
1946 if (error)
f9036bd4 1947 goto fail;
04bfa27b 1948
e7749f6e 1949 remote->remotes[index].serial = serial;
04bfa27b 1950
e7749f6e 1951 devres_close_group(dev, &remote->remotes[index]);
04bfa27b 1952 return 0;
f9036bd4
BT
1953
1954fail:
e7749f6e
BT
1955 devres_release_group(dev, &remote->remotes[index]);
1956 remote->remotes[index].serial = 0;
f9036bd4 1957 return error;
04bfa27b
BT
1958}
1959
e6f2813a
BT
1960static void wacom_remote_work(struct work_struct *work)
1961{
1962 struct wacom *wacom = container_of(work, struct wacom, remote_work);
83e6b40e 1963 struct wacom_remote *remote = wacom->remote;
e6f2813a
BT
1964 struct wacom_remote_data data;
1965 unsigned long flags;
1966 unsigned int count;
1967 u32 serial;
04bfa27b 1968 int i;
e6f2813a 1969
83e6b40e 1970 spin_lock_irqsave(&remote->remote_lock, flags);
e6f2813a 1971
83e6b40e 1972 count = kfifo_out(&remote->remote_fifo, &data, sizeof(data));
e6f2813a
BT
1973
1974 if (count != sizeof(data)) {
1975 hid_err(wacom->hdev,
1976 "workitem triggered without status available\n");
83e6b40e 1977 spin_unlock_irqrestore(&remote->remote_lock, flags);
e6f2813a
BT
1978 return;
1979 }
1980
83e6b40e 1981 if (!kfifo_is_empty(&remote->remote_fifo))
e6f2813a
BT
1982 wacom_schedule_work(&wacom->wacom_wac, WACOM_WORKER_REMOTE);
1983
83e6b40e 1984 spin_unlock_irqrestore(&remote->remote_lock, flags);
e6f2813a
BT
1985
1986 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1987 serial = data.remote[i].serial;
1988 if (data.remote[i].connected) {
1989
e7749f6e 1990 if (remote->remotes[i].serial == serial)
e6f2813a
BT
1991 continue;
1992
e7749f6e 1993 if (remote->remotes[i].serial)
04bfa27b 1994 wacom_remote_destroy_one(wacom, i);
e6f2813a 1995
04bfa27b 1996 wacom_remote_create_one(wacom, serial, i);
e6f2813a 1997
e7749f6e 1998 } else if (remote->remotes[i].serial) {
04bfa27b 1999 wacom_remote_destroy_one(wacom, i);
e6f2813a
BT
2000 }
2001 }
2002}
2003
c58ac3a8
BT
2004static int wacom_probe(struct hid_device *hdev,
2005 const struct hid_device_id *id)
2006{
2007 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
2008 struct usb_device *dev = interface_to_usbdev(intf);
2009 struct wacom *wacom;
2010 struct wacom_wac *wacom_wac;
2011 struct wacom_features *features;
2012 int error;
2013
2014 if (!id->driver_data)
2015 return -EINVAL;
2016
2017 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
2018
2019 /* hid-core sets this quirk for the boot interface */
2020 hdev->quirks &= ~HID_QUIRK_NOGET;
2021
19b64330 2022 wacom = devm_kzalloc(&hdev->dev, sizeof(struct wacom), GFP_KERNEL);
c58ac3a8
BT
2023 if (!wacom)
2024 return -ENOMEM;
2025
2026 hid_set_drvdata(hdev, wacom);
2027 wacom->hdev = hdev;
2028
2029 wacom_wac = &wacom->wacom_wac;
2030 wacom_wac->features = *((struct wacom_features *)id->driver_data);
2031 features = &wacom_wac->features;
2032
2033 if (features->check_for_hid_type && features->hid_type != hdev->type) {
2034 error = -ENODEV;
3888b0d5 2035 goto fail;
c58ac3a8
BT
2036 }
2037
c6fa1aeb 2038 wacom_wac->hid_data.inputmode = -1;
326ea2a9 2039 wacom_wac->mode_report = -1;
c6fa1aeb 2040
c58ac3a8
BT
2041 wacom->usbdev = dev;
2042 wacom->intf = intf;
2043 mutex_init(&wacom->lock);
d17d1f17
BT
2044 INIT_WORK(&wacom->wireless_work, wacom_wireless_work);
2045 INIT_WORK(&wacom->battery_work, wacom_battery_work);
e6f2813a 2046 INIT_WORK(&wacom->remote_work, wacom_remote_work);
c58ac3a8
BT
2047
2048 /* ask for the report descriptor to be loaded by HID */
2049 error = hid_parse(hdev);
2050 if (error) {
2051 hid_err(hdev, "parse failed\n");
3888b0d5 2052 goto fail;
c58ac3a8
BT
2053 }
2054
fd5f92b6 2055 error = wacom_parse_and_register(wacom, false);
c58ac3a8 2056 if (error)
3888b0d5 2057 goto fail;
c58ac3a8
BT
2058
2059 if (hdev->bus == BUS_BLUETOOTH) {
2060 error = device_create_file(&hdev->dev, &dev_attr_speed);
2061 if (error)
2062 hid_warn(hdev,
2063 "can't create sysfs speed attribute err: %d\n",
2064 error);
2065 }
2066
2067 return 0;
2068
3888b0d5 2069fail:
29b47391 2070 hid_set_drvdata(hdev, NULL);
5014186d 2071 return error;
3bea733a
PC
2072}
2073
29b47391 2074static void wacom_remove(struct hid_device *hdev)
3bea733a 2075{
29b47391 2076 struct wacom *wacom = hid_get_drvdata(hdev);
f6205161
BT
2077 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2078 struct wacom_features *features = &wacom_wac->features;
2079
2080 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
2081 hid_hw_close(hdev);
3bea733a 2082
29b47391 2083 hid_hw_stop(hdev);
e7224094 2084
d17d1f17
BT
2085 cancel_work_sync(&wacom->wireless_work);
2086 cancel_work_sync(&wacom->battery_work);
e6f2813a 2087 cancel_work_sync(&wacom->remote_work);
f81a1295
BT
2088 if (hdev->bus == BUS_BLUETOOTH)
2089 device_remove_file(&hdev->dev, &dev_attr_speed);
e7224094 2090
29b47391 2091 hid_set_drvdata(hdev, NULL);
e7224094
ON
2092}
2093
41a74581 2094#ifdef CONFIG_PM
29b47391 2095static int wacom_resume(struct hid_device *hdev)
e7224094 2096{
29b47391 2097 struct wacom *wacom = hid_get_drvdata(hdev);
51269fe8 2098 struct wacom_features *features = &wacom->wacom_wac.features;
e7224094
ON
2099
2100 mutex_lock(&wacom->lock);
38101475
PC
2101
2102 /* switch to wacom mode first */
27b20a9d 2103 wacom_query_tablet_data(hdev, features);
5d7e7d47 2104 wacom_led_control(wacom);
38101475 2105
e7224094
ON
2106 mutex_unlock(&wacom->lock);
2107
29b47391 2108 return 0;
e7224094
ON
2109}
2110
29b47391 2111static int wacom_reset_resume(struct hid_device *hdev)
e7224094 2112{
29b47391 2113 return wacom_resume(hdev);
3bea733a 2114}
41a74581 2115#endif /* CONFIG_PM */
3bea733a 2116
29b47391 2117static struct hid_driver wacom_driver = {
3bea733a 2118 .name = "wacom",
b036f6fb 2119 .id_table = wacom_ids,
3bea733a 2120 .probe = wacom_probe,
29b47391 2121 .remove = wacom_remove,
7704ac93 2122 .report = wacom_wac_report,
29b47391 2123#ifdef CONFIG_PM
e7224094
ON
2124 .resume = wacom_resume,
2125 .reset_resume = wacom_reset_resume,
29b47391
BT
2126#endif
2127 .raw_event = wacom_raw_event,
3bea733a 2128};
29b47391 2129module_hid_driver(wacom_driver);
f2e0a7d4
BT
2130
2131MODULE_VERSION(DRIVER_VERSION);
2132MODULE_AUTHOR(DRIVER_AUTHOR);
2133MODULE_DESCRIPTION(DRIVER_DESC);
2134MODULE_LICENSE(DRIVER_LICENSE);