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