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