]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/input/tablet/wacom_sys.c
Input: twl6040-vibra - remove support for legacy (pdata) mode
[mirror_ubuntu-artful-kernel.git] / drivers / input / tablet / 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"
3bea733a 16
545f4e99
PC
17/* defines to get HID report descriptor */
18#define HID_DEVICET_HID (USB_TYPE_CLASS | 0x01)
19#define HID_DEVICET_REPORT (USB_TYPE_CLASS | 0x02)
20#define HID_USAGE_UNDEFINED 0x00
21#define HID_USAGE_PAGE 0x05
22#define HID_USAGE_PAGE_DIGITIZER 0x0d
23#define HID_USAGE_PAGE_DESKTOP 0x01
24#define HID_USAGE 0x09
25#define HID_USAGE_X 0x30
26#define HID_USAGE_Y 0x31
27#define HID_USAGE_X_TILT 0x3d
28#define HID_USAGE_Y_TILT 0x3e
29#define HID_USAGE_FINGER 0x22
30#define HID_USAGE_STYLUS 0x20
f393ee2b 31#define HID_USAGE_CONTACTMAX 0x55
4134361a
CB
32#define HID_COLLECTION 0xa1
33#define HID_COLLECTION_LOGICAL 0x02
34#define HID_COLLECTION_END 0xc0
545f4e99
PC
35
36enum {
37 WCM_UNDEFINED = 0,
38 WCM_DESKTOP,
39 WCM_DIGITIZER,
40};
41
42struct hid_descriptor {
43 struct usb_descriptor_header header;
44 __le16 bcdHID;
45 u8 bCountryCode;
46 u8 bNumDescriptors;
47 u8 bDescriptorType;
48 __le16 wDescriptorLength;
49} __attribute__ ((packed));
50
51/* defines to get/set USB message */
3bea733a
PC
52#define USB_REQ_GET_REPORT 0x01
53#define USB_REQ_SET_REPORT 0x09
5d7e7d47 54
545f4e99 55#define WAC_HID_FEATURE_REPORT 0x03
a417ea44 56#define WAC_MSG_RETRIES 5
3bea733a 57
5d7e7d47
EH
58#define WAC_CMD_LED_CONTROL 0x20
59#define WAC_CMD_ICON_START 0x21
60#define WAC_CMD_ICON_XFER 0x23
61#define WAC_CMD_RETRIES 10
62
63static int wacom_get_report(struct usb_interface *intf, u8 type, u8 id,
64 void *buf, size_t size, unsigned int retries)
3bea733a 65{
5d7e7d47
EH
66 struct usb_device *dev = interface_to_usbdev(intf);
67 int retval;
68
69 do {
70 retval = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
71 USB_REQ_GET_REPORT,
6e8ec537
CB
72 USB_DIR_IN | USB_TYPE_CLASS |
73 USB_RECIP_INTERFACE,
5d7e7d47
EH
74 (type << 8) + id,
75 intf->altsetting[0].desc.bInterfaceNumber,
76 buf, size, 100);
77 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
78
79 return retval;
3bea733a
PC
80}
81
5d7e7d47
EH
82static int wacom_set_report(struct usb_interface *intf, u8 type, u8 id,
83 void *buf, size_t size, unsigned int retries)
3bea733a 84{
5d7e7d47
EH
85 struct usb_device *dev = interface_to_usbdev(intf);
86 int retval;
87
88 do {
89 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
90 USB_REQ_SET_REPORT,
91 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
92 (type << 8) + id,
93 intf->altsetting[0].desc.bInterfaceNumber,
94 buf, size, 1000);
95 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
96
97 return retval;
3bea733a
PC
98}
99
54c9b226 100static void wacom_sys_irq(struct urb *urb)
3bea733a
PC
101{
102 struct wacom *wacom = urb->context;
65e78a20 103 struct device *dev = &wacom->intf->dev;
3bea733a
PC
104 int retval;
105
106 switch (urb->status) {
107 case 0:
108 /* success */
109 break;
110 case -ECONNRESET:
111 case -ENOENT:
112 case -ESHUTDOWN:
113 /* this urb is terminated, clean up */
3b6aee23
GKH
114 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
115 __func__, urb->status);
3bea733a
PC
116 return;
117 default:
3b6aee23
GKH
118 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
119 __func__, urb->status);
3bea733a
PC
120 goto exit;
121 }
122
95dd3b30 123 wacom_wac_irq(&wacom->wacom_wac, urb->actual_length);
3bea733a
PC
124
125 exit:
e7224094 126 usb_mark_last_busy(wacom->usbdev);
73a97f4f 127 retval = usb_submit_urb(urb, GFP_ATOMIC);
3bea733a 128 if (retval)
3b6aee23 129 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
b3169fec 130 __func__, retval);
3bea733a
PC
131}
132
3bea733a
PC
133static int wacom_open(struct input_dev *dev)
134{
7791bdae 135 struct wacom *wacom = input_get_drvdata(dev);
f6cd3783 136 int retval = 0;
3bea733a 137
f6cd3783 138 if (usb_autopm_get_interface(wacom->intf) < 0)
3bea733a 139 return -EIO;
f6cd3783
DT
140
141 mutex_lock(&wacom->lock);
e7224094
ON
142
143 if (usb_submit_urb(wacom->irq, GFP_KERNEL)) {
f6cd3783
DT
144 retval = -EIO;
145 goto out;
e7224094
ON
146 }
147
51269fe8 148 wacom->open = true;
e7224094 149 wacom->intf->needs_remote_wakeup = 1;
3bea733a 150
f6cd3783 151out:
e7224094 152 mutex_unlock(&wacom->lock);
62ecae09 153 usb_autopm_put_interface(wacom->intf);
f6cd3783 154 return retval;
3bea733a
PC
155}
156
157static void wacom_close(struct input_dev *dev)
158{
7791bdae 159 struct wacom *wacom = input_get_drvdata(dev);
62ecae09
DT
160 int autopm_error;
161
162 autopm_error = usb_autopm_get_interface(wacom->intf);
3bea733a 163
e7224094 164 mutex_lock(&wacom->lock);
3bea733a 165 usb_kill_urb(wacom->irq);
51269fe8 166 wacom->open = false;
e7224094
ON
167 wacom->intf->needs_remote_wakeup = 0;
168 mutex_unlock(&wacom->lock);
f6cd3783 169
62ecae09
DT
170 if (!autopm_error)
171 usb_autopm_put_interface(wacom->intf);
3bea733a
PC
172}
173
115d5e12
JG
174/*
175 * Calculate the resolution of the X or Y axis, given appropriate HID data.
176 * This function is little more than hidinput_calc_abs_res stripped down.
177 */
178static int wacom_calc_hid_res(int logical_extents, int physical_extents,
179 unsigned char unit, unsigned char exponent)
180{
181 int prev, unit_exponent;
182
183 /* Check if the extents are sane */
184 if (logical_extents <= 0 || physical_extents <= 0)
185 return 0;
186
187 /* Get signed value of nybble-sized twos-compliment exponent */
188 unit_exponent = exponent;
189 if (unit_exponent > 7)
190 unit_exponent -= 16;
191
192 /* Convert physical_extents to millimeters */
193 if (unit == 0x11) { /* If centimeters */
194 unit_exponent += 1;
195 } else if (unit == 0x13) { /* If inches */
196 prev = physical_extents;
197 physical_extents *= 254;
198 if (physical_extents < prev)
199 return 0;
200 unit_exponent -= 1;
201 } else {
202 return 0;
203 }
204
205 /* Apply negative unit exponent */
206 for (; unit_exponent < 0; unit_exponent++) {
207 prev = logical_extents;
208 logical_extents *= 10;
209 if (logical_extents < prev)
210 return 0;
211 }
212 /* Apply positive unit exponent */
213 for (; unit_exponent > 0; unit_exponent--) {
214 prev = physical_extents;
215 physical_extents *= 10;
216 if (physical_extents < prev)
217 return 0;
218 }
219
220 /* Calculate resolution */
221 return logical_extents / physical_extents;
222}
223
224/*
225 * The physical dimension specified by the HID descriptor is likely not in
226 * the "100th of a mm" units expected by wacom_calculate_touch_res. This
227 * function adjusts the value of [xy]_phy based on the unit and exponent
228 * provided by the HID descriptor. If an error occurs durring conversion
229 * (e.g. from the unit being left unspecified) [xy]_phy is not modified.
230 */
231static void wacom_fix_phy_from_hid(struct wacom_features *features)
232{
233 int xres = wacom_calc_hid_res(features->x_max, features->x_phy,
234 features->unit, features->unitExpo);
235 int yres = wacom_calc_hid_res(features->y_max, features->y_phy,
236 features->unit, features->unitExpo);
237
238 if (xres > 0 && yres > 0) {
239 features->x_phy = (100 * features->x_max) / xres;
240 features->y_phy = (100 * features->y_max) / yres;
241 }
242}
243
16bf288c
CB
244/*
245 * Static values for max X/Y and resolution of Pen interface is stored in
246 * features. This mean physical size of active area can be computed.
247 * This is useful to do when Pen and Touch have same active area of tablet.
248 * This means for Touch device, we only need to find max X/Y value and we
249 * have enough information to compute resolution of touch.
250 */
251static void wacom_set_phy_from_res(struct wacom_features *features)
252{
253 features->x_phy = (features->x_max * 100) / features->x_resolution;
254 features->y_phy = (features->y_max * 100) / features->y_resolution;
255}
256
4134361a
CB
257static int wacom_parse_logical_collection(unsigned char *report,
258 struct wacom_features *features)
259{
260 int length = 0;
261
262 if (features->type == BAMBOO_PT) {
263
264 /* Logical collection is only used by 3rd gen Bamboo Touch */
265 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
8b4a0c1f 266 features->device_type = BTN_TOOL_FINGER;
4134361a 267
16bf288c 268 wacom_set_phy_from_res(features);
4134361a
CB
269
270 features->x_max = features->y_max =
271 get_unaligned_le16(&report[10]);
272
273 length = 11;
274 }
275 return length;
276}
277
f393ee2b
PC
278static void wacom_retrieve_report_data(struct usb_interface *intf,
279 struct wacom_features *features)
280{
281 int result = 0;
282 unsigned char *rep_data;
283
284 rep_data = kmalloc(2, GFP_KERNEL);
285 if (rep_data) {
286
287 rep_data[0] = 12;
288 result = wacom_get_report(intf, WAC_HID_FEATURE_REPORT,
61c91dd4 289 rep_data[0], rep_data, 2,
f393ee2b
PC
290 WAC_MSG_RETRIES);
291
292 if (result >= 0 && rep_data[1] > 2)
293 features->touch_max = rep_data[1];
294
295 kfree(rep_data);
296 }
297}
298
428f8588
CB
299/*
300 * Interface Descriptor of wacom devices can be incomplete and
301 * inconsistent so wacom_features table is used to store stylus
302 * device's packet lengths, various maximum values, and tablet
303 * resolution based on product ID's.
304 *
305 * For devices that contain 2 interfaces, wacom_features table is
306 * inaccurate for the touch interface. Since the Interface Descriptor
307 * for touch interfaces has pretty complete data, this function exists
308 * to query tablet for this missing information instead of hard coding in
309 * an additional table.
310 *
311 * A typical Interface Descriptor for a stylus will contain a
312 * boot mouse application collection that is not of interest and this
313 * function will ignore it.
314 *
315 * It also contains a digitizer application collection that also is not
316 * of interest since any information it contains would be duplicate
317 * of what is in wacom_features. Usually it defines a report of an array
318 * of bytes that could be used as max length of the stylus packet returned.
319 * If it happens to define a Digitizer-Stylus Physical Collection then
320 * the X and Y logical values contain valid data but it is ignored.
321 *
322 * A typical Interface Descriptor for a touch interface will contain a
323 * Digitizer-Finger Physical Collection which will define both logical
324 * X/Y maximum as well as the physical size of tablet. Since touch
325 * interfaces haven't supported pressure or distance, this is enough
326 * information to override invalid values in the wacom_features table.
4134361a
CB
327 *
328 * 3rd gen Bamboo Touch no longer define a Digitizer-Finger Pysical
329 * Collection. Instead they define a Logical Collection with a single
330 * Logical Maximum for both X and Y.
ae584ca4
JG
331 *
332 * Intuos5 touch interface does not contain useful data. We deal with
333 * this after returning from this function.
428f8588
CB
334 */
335static int wacom_parse_hid(struct usb_interface *intf,
336 struct hid_descriptor *hid_desc,
ec67bbed 337 struct wacom_features *features)
545f4e99
PC
338{
339 struct usb_device *dev = interface_to_usbdev(intf);
ec67bbed
PC
340 char limit = 0;
341 /* result has to be defined as int for some devices */
342 int result = 0;
545f4e99
PC
343 int i = 0, usage = WCM_UNDEFINED, finger = 0, pen = 0;
344 unsigned char *report;
345
346 report = kzalloc(hid_desc->wDescriptorLength, GFP_KERNEL);
347 if (!report)
348 return -ENOMEM;
349
350 /* retrive report descriptors */
351 do {
352 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
353 USB_REQ_GET_DESCRIPTOR,
354 USB_RECIP_INTERFACE | USB_DIR_IN,
355 HID_DEVICET_REPORT << 8,
356 intf->altsetting[0].desc.bInterfaceNumber, /* interface */
357 report,
358 hid_desc->wDescriptorLength,
359 5000); /* 5 secs */
a417ea44 360 } while (result < 0 && limit++ < WAC_MSG_RETRIES);
545f4e99 361
384318ec 362 /* No need to parse the Descriptor. It isn't an error though */
545f4e99
PC
363 if (result < 0)
364 goto out;
365
366 for (i = 0; i < hid_desc->wDescriptorLength; i++) {
367
368 switch (report[i]) {
369 case HID_USAGE_PAGE:
370 switch (report[i + 1]) {
371 case HID_USAGE_PAGE_DIGITIZER:
372 usage = WCM_DIGITIZER;
373 i++;
374 break;
375
376 case HID_USAGE_PAGE_DESKTOP:
377 usage = WCM_DESKTOP;
378 i++;
379 break;
380 }
381 break;
382
383 case HID_USAGE:
384 switch (report[i + 1]) {
385 case HID_USAGE_X:
386 if (usage == WCM_DESKTOP) {
387 if (finger) {
84eb5aa6 388 features->device_type = BTN_TOOL_FINGER;
3699dd7e
PC
389
390 switch (features->type) {
391 case TABLETPC2FG:
ec67bbed 392 features->pktlen = WACOM_PKGLEN_TPC2FG;
3699dd7e 393 break;
1963518b 394
3699dd7e
PC
395 case MTSCREEN:
396 case WACOM_24HDT:
1963518b 397 features->pktlen = WACOM_PKGLEN_MTOUCH;
3699dd7e 398 break;
1963518b 399
6afdc289
PC
400 case MTTPC:
401 features->pktlen = WACOM_PKGLEN_MTTPC;
402 break;
403
3699dd7e 404 case BAMBOO_PT:
4a88081e 405 features->pktlen = WACOM_PKGLEN_BBTOUCH;
3699dd7e
PC
406 break;
407
408 default:
409 features->pktlen = WACOM_PKGLEN_GRAPHIRE;
410 break;
411 }
412
413 switch (features->type) {
414 case BAMBOO_PT:
4a88081e
PC
415 features->x_phy =
416 get_unaligned_le16(&report[i + 5]);
417 features->x_max =
418 get_unaligned_le16(&report[i + 8]);
419 i += 15;
3699dd7e
PC
420 break;
421
422 case WACOM_24HDT:
b1e4279e
JG
423 features->x_max =
424 get_unaligned_le16(&report[i + 3]);
425 features->x_phy =
426 get_unaligned_le16(&report[i + 8]);
427 features->unit = report[i - 1];
428 features->unitExpo = report[i - 3];
429 i += 12;
3699dd7e
PC
430 break;
431
432 default:
4a88081e
PC
433 features->x_max =
434 get_unaligned_le16(&report[i + 3]);
435 features->x_phy =
436 get_unaligned_le16(&report[i + 6]);
437 features->unit = report[i + 9];
438 features->unitExpo = report[i + 11];
439 i += 12;
3699dd7e 440 break;
4a88081e 441 }
545f4e99 442 } else if (pen) {
ec67bbed 443 /* penabled only accepts exact bytes of data */
3699dd7e 444 if (features->type >= TABLETPC)
57e413d9 445 features->pktlen = WACOM_PKGLEN_GRAPHIRE;
ec67bbed 446 features->device_type = BTN_TOOL_PEN;
545f4e99 447 features->x_max =
252f7769 448 get_unaligned_le16(&report[i + 3]);
545f4e99
PC
449 i += 4;
450 }
545f4e99
PC
451 }
452 break;
453
454 case HID_USAGE_Y:
ec67bbed
PC
455 if (usage == WCM_DESKTOP) {
456 if (finger) {
3699dd7e
PC
457 switch (features->type) {
458 case TABLETPC2FG:
459 case MTSCREEN:
6afdc289 460 case MTTPC:
ec67bbed 461 features->y_max =
252f7769 462 get_unaligned_le16(&report[i + 3]);
ec67bbed 463 features->y_phy =
252f7769 464 get_unaligned_le16(&report[i + 6]);
ec67bbed 465 i += 7;
3699dd7e
PC
466 break;
467
468 case WACOM_24HDT:
b1e4279e
JG
469 features->y_max =
470 get_unaligned_le16(&report[i + 3]);
471 features->y_phy =
472 get_unaligned_le16(&report[i - 2]);
473 i += 7;
3699dd7e
PC
474 break;
475
476 case BAMBOO_PT:
4a88081e
PC
477 features->y_phy =
478 get_unaligned_le16(&report[i + 3]);
479 features->y_max =
480 get_unaligned_le16(&report[i + 6]);
481 i += 12;
3699dd7e
PC
482 break;
483
484 default:
ec67bbed
PC
485 features->y_max =
486 features->x_max;
487 features->y_phy =
252f7769 488 get_unaligned_le16(&report[i + 3]);
ec67bbed 489 i += 4;
3699dd7e 490 break;
ec67bbed
PC
491 }
492 } else if (pen) {
ec67bbed 493 features->y_max =
252f7769 494 get_unaligned_le16(&report[i + 3]);
ec67bbed
PC
495 i += 4;
496 }
497 }
545f4e99
PC
498 break;
499
500 case HID_USAGE_FINGER:
501 finger = 1;
502 i++;
503 break;
504
428f8588
CB
505 /*
506 * Requiring Stylus Usage will ignore boot mouse
507 * X/Y values and some cases of invalid Digitizer X/Y
508 * values commonly reported.
509 */
545f4e99
PC
510 case HID_USAGE_STYLUS:
511 pen = 1;
512 i++;
513 break;
f393ee2b
PC
514
515 case HID_USAGE_CONTACTMAX:
1cecc5cc
PC
516 /* leave touch_max as is if predefined */
517 if (!features->touch_max)
518 wacom_retrieve_report_data(intf, features);
f393ee2b
PC
519 i++;
520 break;
545f4e99
PC
521 }
522 break;
523
4134361a 524 case HID_COLLECTION_END:
ec67bbed 525 /* reset UsagePage and Finger */
545f4e99
PC
526 finger = usage = 0;
527 break;
4134361a
CB
528
529 case HID_COLLECTION:
530 i++;
531 switch (report[i]) {
532 case HID_COLLECTION_LOGICAL:
533 i += wacom_parse_logical_collection(&report[i],
534 features);
535 break;
536 }
537 break;
545f4e99
PC
538 }
539 }
540
545f4e99 541 out:
384318ec 542 result = 0;
545f4e99
PC
543 kfree(report);
544 return result;
545}
546
fe494bc2 547static int wacom_set_device_mode(struct usb_interface *intf, int report_id, int length, int mode)
3b7307c2
DT
548{
549 unsigned char *rep_data;
fe494bc2 550 int error = -ENOMEM, limit = 0;
3b7307c2 551
fe494bc2 552 rep_data = kzalloc(length, GFP_KERNEL);
3b7307c2 553 if (!rep_data)
ec67bbed
PC
554 return error;
555
fe494bc2 556 do {
9937c026
CB
557 rep_data[0] = report_id;
558 rep_data[1] = mode;
559
fe494bc2
JG
560 error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT,
561 report_id, rep_data, length, 1);
562 if (error >= 0)
563 error = wacom_get_report(intf, WAC_HID_FEATURE_REPORT,
564 report_id, rep_data, length, 1);
565 } while ((error < 0 || rep_data[1] != mode) && limit++ < WAC_MSG_RETRIES);
566
567 kfree(rep_data);
568
569 return error < 0 ? error : 0;
570}
571
572/*
573 * Switch the tablet into its most-capable mode. Wacom tablets are
574 * typically configured to power-up in a mode which sends mouse-like
575 * reports to the OS. To get absolute position, pressure data, etc.
576 * from the tablet, it is necessary to switch the tablet out of this
577 * mode and into one which sends the full range of tablet data.
578 */
579static int wacom_query_tablet_data(struct usb_interface *intf, struct wacom_features *features)
580{
1963518b 581 if (features->device_type == BTN_TOOL_FINGER) {
ea2e6024 582 if (features->type > TABLETPC) {
fe494bc2
JG
583 /* MT Tablet PC touch */
584 return wacom_set_device_mode(intf, 3, 4, 4);
585 }
b1e4279e
JG
586 else if (features->type == WACOM_24HDT) {
587 return wacom_set_device_mode(intf, 18, 3, 2);
588 }
fe494bc2
JG
589 } else if (features->device_type == BTN_TOOL_PEN) {
590 if (features->type <= BAMBOO_PT && features->type != WIRELESS) {
591 return wacom_set_device_mode(intf, 2, 2, 2);
1963518b 592 }
ec67bbed 593 }
3b7307c2 594
fe494bc2 595 return 0;
3b7307c2
DT
596}
597
ec67bbed 598static int wacom_retrieve_hid_descriptor(struct usb_interface *intf,
1963518b 599 struct wacom_features *features)
ec67bbed
PC
600{
601 int error = 0;
602 struct usb_host_interface *interface = intf->cur_altsetting;
603 struct hid_descriptor *hid_desc;
604
fed87e65 605 /* default features */
ec67bbed 606 features->device_type = BTN_TOOL_PEN;
fed87e65
HR
607 features->x_fuzz = 4;
608 features->y_fuzz = 4;
609 features->pressure_fuzz = 0;
610 features->distance_fuzz = 0;
ec67bbed 611
d3825d51
CB
612 /*
613 * The wireless device HID is basic and layout conflicts with
614 * other tablets (monitor and touch interface can look like pen).
615 * Skip the query for this type and modify defaults based on
616 * interface number.
617 */
618 if (features->type == WIRELESS) {
619 if (intf->cur_altsetting->desc.bInterfaceNumber == 0) {
620 features->device_type = 0;
621 } else if (intf->cur_altsetting->desc.bInterfaceNumber == 2) {
adad004e 622 features->device_type = BTN_TOOL_FINGER;
d3825d51
CB
623 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
624 }
625 }
626
1963518b 627 /* only devices that support touch need to retrieve the info */
ea2e6024 628 if (features->type < BAMBOO_PT) {
ec67bbed 629 goto out;
1963518b 630 }
ec67bbed 631
a882c932
DT
632 error = usb_get_extra_descriptor(interface, HID_DEVICET_HID, &hid_desc);
633 if (error) {
634 error = usb_get_extra_descriptor(&interface->endpoint[0],
635 HID_DEVICET_REPORT, &hid_desc);
636 if (error) {
eb71d1bb
DT
637 dev_err(&intf->dev,
638 "can not retrieve extra class descriptor\n");
ec67bbed
PC
639 goto out;
640 }
641 }
642 error = wacom_parse_hid(intf, hid_desc, features);
643 if (error)
644 goto out;
115d5e12 645 wacom_fix_phy_from_hid(features);
ec67bbed 646
ec67bbed
PC
647 out:
648 return error;
649}
650
4492efff
PC
651struct wacom_usbdev_data {
652 struct list_head list;
653 struct kref kref;
654 struct usb_device *dev;
655 struct wacom_shared shared;
656};
657
658static LIST_HEAD(wacom_udev_list);
659static DEFINE_MUTEX(wacom_udev_list_lock);
660
aea2bf6a
JG
661static struct usb_device *wacom_get_sibling(struct usb_device *dev, int vendor, int product)
662{
663 int port1;
664 struct usb_device *sibling;
665
666 if (vendor == 0 && product == 0)
667 return dev;
668
669 if (dev->parent == NULL)
670 return NULL;
671
672 usb_hub_for_each_child(dev->parent, port1, sibling) {
673 struct usb_device_descriptor *d;
674 if (sibling == NULL)
675 continue;
676
677 d = &sibling->descriptor;
678 if (d->idVendor == vendor && d->idProduct == product)
679 return sibling;
680 }
681
682 return NULL;
683}
684
4492efff
PC
685static struct wacom_usbdev_data *wacom_get_usbdev_data(struct usb_device *dev)
686{
687 struct wacom_usbdev_data *data;
688
689 list_for_each_entry(data, &wacom_udev_list, list) {
690 if (data->dev == dev) {
691 kref_get(&data->kref);
692 return data;
693 }
694 }
695
696 return NULL;
697}
698
699static int wacom_add_shared_data(struct wacom_wac *wacom,
700 struct usb_device *dev)
701{
702 struct wacom_usbdev_data *data;
703 int retval = 0;
704
705 mutex_lock(&wacom_udev_list_lock);
706
707 data = wacom_get_usbdev_data(dev);
708 if (!data) {
709 data = kzalloc(sizeof(struct wacom_usbdev_data), GFP_KERNEL);
710 if (!data) {
711 retval = -ENOMEM;
712 goto out;
713 }
714
715 kref_init(&data->kref);
716 data->dev = dev;
717 list_add_tail(&data->list, &wacom_udev_list);
718 }
719
720 wacom->shared = &data->shared;
721
722out:
723 mutex_unlock(&wacom_udev_list_lock);
724 return retval;
725}
726
727static void wacom_release_shared_data(struct kref *kref)
728{
729 struct wacom_usbdev_data *data =
730 container_of(kref, struct wacom_usbdev_data, kref);
731
732 mutex_lock(&wacom_udev_list_lock);
733 list_del(&data->list);
734 mutex_unlock(&wacom_udev_list_lock);
735
736 kfree(data);
737}
738
739static void wacom_remove_shared_data(struct wacom_wac *wacom)
740{
741 struct wacom_usbdev_data *data;
742
743 if (wacom->shared) {
744 data = container_of(wacom->shared, struct wacom_usbdev_data, shared);
745 kref_put(&data->kref, wacom_release_shared_data);
746 wacom->shared = NULL;
747 }
748}
749
5d7e7d47
EH
750static int wacom_led_control(struct wacom *wacom)
751{
752 unsigned char *buf;
9b5b95dd 753 int retval;
5d7e7d47
EH
754
755 buf = kzalloc(9, GFP_KERNEL);
756 if (!buf)
757 return -ENOMEM;
758
9b5b95dd
JG
759 if (wacom->wacom_wac.features.type >= INTUOS5S &&
760 wacom->wacom_wac.features.type <= INTUOS5L) {
761 /*
762 * Touch Ring and crop mark LED luminance may take on
763 * one of four values:
764 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
765 */
766 int ring_led = wacom->led.select[0] & 0x03;
767 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
768 int crop_lum = 0;
769
770 buf[0] = WAC_CMD_LED_CONTROL;
771 buf[1] = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
772 }
773 else {
774 int led = wacom->led.select[0] | 0x4;
775
776 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
777 wacom->wacom_wac.features.type == WACOM_24HD)
778 led |= (wacom->led.select[1] << 4) | 0x40;
779
780 buf[0] = WAC_CMD_LED_CONTROL;
781 buf[1] = led;
782 buf[2] = wacom->led.llv;
783 buf[3] = wacom->led.hlv;
784 buf[4] = wacom->led.img_lum;
785 }
5d7e7d47
EH
786
787 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_LED_CONTROL,
788 buf, 9, WAC_CMD_RETRIES);
789 kfree(buf);
790
791 return retval;
792}
793
794static int wacom_led_putimage(struct wacom *wacom, int button_id, const void *img)
795{
796 unsigned char *buf;
797 int i, retval;
798
799 buf = kzalloc(259, GFP_KERNEL);
800 if (!buf)
801 return -ENOMEM;
802
803 /* Send 'start' command */
804 buf[0] = WAC_CMD_ICON_START;
805 buf[1] = 1;
806 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START,
807 buf, 2, WAC_CMD_RETRIES);
808 if (retval < 0)
809 goto out;
810
811 buf[0] = WAC_CMD_ICON_XFER;
812 buf[1] = button_id & 0x07;
813 for (i = 0; i < 4; i++) {
814 buf[2] = i;
815 memcpy(buf + 3, img + i * 256, 256);
816
817 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_XFER,
818 buf, 259, WAC_CMD_RETRIES);
819 if (retval < 0)
820 break;
821 }
822
823 /* Send 'stop' */
824 buf[0] = WAC_CMD_ICON_START;
825 buf[1] = 0;
826 wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START,
827 buf, 2, WAC_CMD_RETRIES);
828
829out:
830 kfree(buf);
831 return retval;
832}
833
09e7d941 834static ssize_t wacom_led_select_store(struct device *dev, int set_id,
5d7e7d47
EH
835 const char *buf, size_t count)
836{
837 struct wacom *wacom = dev_get_drvdata(dev);
838 unsigned int id;
839 int err;
840
841 err = kstrtouint(buf, 10, &id);
842 if (err)
843 return err;
844
845 mutex_lock(&wacom->lock);
846
09e7d941 847 wacom->led.select[set_id] = id & 0x3;
5d7e7d47
EH
848 err = wacom_led_control(wacom);
849
850 mutex_unlock(&wacom->lock);
851
852 return err < 0 ? err : count;
853}
854
09e7d941
PC
855#define DEVICE_LED_SELECT_ATTR(SET_ID) \
856static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
857 struct device_attribute *attr, const char *buf, size_t count) \
858{ \
859 return wacom_led_select_store(dev, SET_ID, buf, count); \
860} \
04c59abd
PC
861static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
862 struct device_attribute *attr, char *buf) \
863{ \
864 struct wacom *wacom = dev_get_drvdata(dev); \
865 return snprintf(buf, 2, "%d\n", wacom->led.select[SET_ID]); \
866} \
867static DEVICE_ATTR(status_led##SET_ID##_select, S_IWUSR | S_IRUSR, \
868 wacom_led##SET_ID##_select_show, \
09e7d941
PC
869 wacom_led##SET_ID##_select_store)
870
871DEVICE_LED_SELECT_ATTR(0);
872DEVICE_LED_SELECT_ATTR(1);
5d7e7d47
EH
873
874static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
875 const char *buf, size_t count)
876{
877 unsigned int value;
878 int err;
879
880 err = kstrtouint(buf, 10, &value);
881 if (err)
882 return err;
883
884 mutex_lock(&wacom->lock);
885
886 *dest = value & 0x7f;
887 err = wacom_led_control(wacom);
888
889 mutex_unlock(&wacom->lock);
890
891 return err < 0 ? err : count;
892}
893
894#define DEVICE_LUMINANCE_ATTR(name, field) \
895static ssize_t wacom_##name##_luminance_store(struct device *dev, \
896 struct device_attribute *attr, const char *buf, size_t count) \
897{ \
898 struct wacom *wacom = dev_get_drvdata(dev); \
899 \
900 return wacom_luminance_store(wacom, &wacom->led.field, \
901 buf, count); \
902} \
903static DEVICE_ATTR(name##_luminance, S_IWUSR, \
904 NULL, wacom_##name##_luminance_store)
905
906DEVICE_LUMINANCE_ATTR(status0, llv);
907DEVICE_LUMINANCE_ATTR(status1, hlv);
908DEVICE_LUMINANCE_ATTR(buttons, img_lum);
909
910static ssize_t wacom_button_image_store(struct device *dev, int button_id,
911 const char *buf, size_t count)
912{
913 struct wacom *wacom = dev_get_drvdata(dev);
914 int err;
915
916 if (count != 1024)
917 return -EINVAL;
918
919 mutex_lock(&wacom->lock);
920
921 err = wacom_led_putimage(wacom, button_id, buf);
922
923 mutex_unlock(&wacom->lock);
924
925 return err < 0 ? err : count;
926}
927
928#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
929static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
930 struct device_attribute *attr, const char *buf, size_t count) \
931{ \
932 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
933} \
934static DEVICE_ATTR(button##BUTTON_ID##_rawimg, S_IWUSR, \
935 NULL, wacom_btnimg##BUTTON_ID##_store)
936
937DEVICE_BTNIMG_ATTR(0);
938DEVICE_BTNIMG_ATTR(1);
939DEVICE_BTNIMG_ATTR(2);
940DEVICE_BTNIMG_ATTR(3);
941DEVICE_BTNIMG_ATTR(4);
942DEVICE_BTNIMG_ATTR(5);
943DEVICE_BTNIMG_ATTR(6);
944DEVICE_BTNIMG_ATTR(7);
945
09e7d941
PC
946static struct attribute *cintiq_led_attrs[] = {
947 &dev_attr_status_led0_select.attr,
948 &dev_attr_status_led1_select.attr,
949 NULL
950};
951
952static struct attribute_group cintiq_led_attr_group = {
953 .name = "wacom_led",
954 .attrs = cintiq_led_attrs,
955};
956
957static struct attribute *intuos4_led_attrs[] = {
5d7e7d47
EH
958 &dev_attr_status0_luminance.attr,
959 &dev_attr_status1_luminance.attr,
09e7d941 960 &dev_attr_status_led0_select.attr,
5d7e7d47
EH
961 &dev_attr_buttons_luminance.attr,
962 &dev_attr_button0_rawimg.attr,
963 &dev_attr_button1_rawimg.attr,
964 &dev_attr_button2_rawimg.attr,
965 &dev_attr_button3_rawimg.attr,
966 &dev_attr_button4_rawimg.attr,
967 &dev_attr_button5_rawimg.attr,
968 &dev_attr_button6_rawimg.attr,
969 &dev_attr_button7_rawimg.attr,
970 NULL
971};
972
09e7d941 973static struct attribute_group intuos4_led_attr_group = {
5d7e7d47 974 .name = "wacom_led",
09e7d941 975 .attrs = intuos4_led_attrs,
5d7e7d47
EH
976};
977
9b5b95dd
JG
978static struct attribute *intuos5_led_attrs[] = {
979 &dev_attr_status0_luminance.attr,
980 &dev_attr_status_led0_select.attr,
981 NULL
982};
983
984static struct attribute_group intuos5_led_attr_group = {
985 .name = "wacom_led",
986 .attrs = intuos5_led_attrs,
987};
988
5d7e7d47
EH
989static int wacom_initialize_leds(struct wacom *wacom)
990{
991 int error;
992
09e7d941
PC
993 /* Initialize default values */
994 switch (wacom->wacom_wac.features.type) {
a19fc986 995 case INTUOS4S:
09e7d941
PC
996 case INTUOS4:
997 case INTUOS4L:
998 wacom->led.select[0] = 0;
999 wacom->led.select[1] = 0;
f4fa9a6d 1000 wacom->led.llv = 10;
5d7e7d47
EH
1001 wacom->led.hlv = 20;
1002 wacom->led.img_lum = 10;
09e7d941
PC
1003 error = sysfs_create_group(&wacom->intf->dev.kobj,
1004 &intuos4_led_attr_group);
1005 break;
1006
246835fc 1007 case WACOM_24HD:
09e7d941
PC
1008 case WACOM_21UX2:
1009 wacom->led.select[0] = 0;
1010 wacom->led.select[1] = 0;
1011 wacom->led.llv = 0;
1012 wacom->led.hlv = 0;
1013 wacom->led.img_lum = 0;
5d7e7d47
EH
1014
1015 error = sysfs_create_group(&wacom->intf->dev.kobj,
09e7d941
PC
1016 &cintiq_led_attr_group);
1017 break;
1018
9b5b95dd
JG
1019 case INTUOS5S:
1020 case INTUOS5:
1021 case INTUOS5L:
1022 wacom->led.select[0] = 0;
1023 wacom->led.select[1] = 0;
1024 wacom->led.llv = 32;
1025 wacom->led.hlv = 0;
1026 wacom->led.img_lum = 0;
1027
1028 error = sysfs_create_group(&wacom->intf->dev.kobj,
1029 &intuos5_led_attr_group);
1030 break;
1031
09e7d941
PC
1032 default:
1033 return 0;
5d7e7d47
EH
1034 }
1035
09e7d941
PC
1036 if (error) {
1037 dev_err(&wacom->intf->dev,
1038 "cannot create sysfs group err: %d\n", error);
1039 return error;
1040 }
1041 wacom_led_control(wacom);
1042
5d7e7d47
EH
1043 return 0;
1044}
1045
1046static void wacom_destroy_leds(struct wacom *wacom)
1047{
09e7d941 1048 switch (wacom->wacom_wac.features.type) {
a19fc986 1049 case INTUOS4S:
09e7d941
PC
1050 case INTUOS4:
1051 case INTUOS4L:
5d7e7d47 1052 sysfs_remove_group(&wacom->intf->dev.kobj,
09e7d941
PC
1053 &intuos4_led_attr_group);
1054 break;
1055
246835fc 1056 case WACOM_24HD:
09e7d941
PC
1057 case WACOM_21UX2:
1058 sysfs_remove_group(&wacom->intf->dev.kobj,
1059 &cintiq_led_attr_group);
1060 break;
9b5b95dd
JG
1061
1062 case INTUOS5S:
1063 case INTUOS5:
1064 case INTUOS5L:
1065 sysfs_remove_group(&wacom->intf->dev.kobj,
1066 &intuos5_led_attr_group);
1067 break;
5d7e7d47
EH
1068 }
1069}
1070
a1d552cc
CB
1071static enum power_supply_property wacom_battery_props[] = {
1072 POWER_SUPPLY_PROP_CAPACITY
1073};
1074
1075static int wacom_battery_get_property(struct power_supply *psy,
1076 enum power_supply_property psp,
1077 union power_supply_propval *val)
1078{
1079 struct wacom *wacom = container_of(psy, struct wacom, battery);
1080 int ret = 0;
1081
1082 switch (psp) {
1083 case POWER_SUPPLY_PROP_CAPACITY:
1084 val->intval =
1085 wacom->wacom_wac.battery_capacity * 100 / 31;
1086 break;
1087 default:
1088 ret = -EINVAL;
1089 break;
1090 }
1091
1092 return ret;
1093}
1094
1095static int wacom_initialize_battery(struct wacom *wacom)
1096{
1097 int error = 0;
1098
1099 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_MONITOR) {
1100 wacom->battery.properties = wacom_battery_props;
1101 wacom->battery.num_properties = ARRAY_SIZE(wacom_battery_props);
1102 wacom->battery.get_property = wacom_battery_get_property;
1103 wacom->battery.name = "wacom_battery";
1104 wacom->battery.type = POWER_SUPPLY_TYPE_BATTERY;
1105 wacom->battery.use_for_apm = 0;
1106
1107 error = power_supply_register(&wacom->usbdev->dev,
1108 &wacom->battery);
b7af2bb8
CB
1109
1110 if (!error)
1111 power_supply_powers(&wacom->battery,
1112 &wacom->usbdev->dev);
a1d552cc
CB
1113 }
1114
1115 return error;
1116}
1117
1118static void wacom_destroy_battery(struct wacom *wacom)
1119{
b7af2bb8
CB
1120 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_MONITOR &&
1121 wacom->battery.dev) {
a1d552cc 1122 power_supply_unregister(&wacom->battery);
b7af2bb8
CB
1123 wacom->battery.dev = NULL;
1124 }
a1d552cc
CB
1125}
1126
3aac0ef1
CB
1127static int wacom_register_input(struct wacom *wacom)
1128{
1129 struct input_dev *input_dev;
1130 struct usb_interface *intf = wacom->intf;
1131 struct usb_device *dev = interface_to_usbdev(intf);
1132 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1133 int error;
1134
1135 input_dev = input_allocate_device();
1963518b
PC
1136 if (!input_dev) {
1137 error = -ENOMEM;
1138 goto fail1;
1139 }
3aac0ef1
CB
1140
1141 input_dev->name = wacom_wac->name;
1142 input_dev->dev.parent = &intf->dev;
1143 input_dev->open = wacom_open;
1144 input_dev->close = wacom_close;
1145 usb_to_input_id(dev, &input_dev->id);
1146 input_set_drvdata(input_dev, wacom);
1147
1148 wacom_wac->input = input_dev;
1963518b
PC
1149 error = wacom_setup_input_capabilities(input_dev, wacom_wac);
1150 if (error)
1151 goto fail1;
3aac0ef1
CB
1152
1153 error = input_register_device(input_dev);
1963518b
PC
1154 if (error)
1155 goto fail2;
1156
1157 return 0;
3aac0ef1 1158
1963518b
PC
1159fail2:
1160 input_free_device(input_dev);
1161 wacom_wac->input = NULL;
1162fail1:
3aac0ef1
CB
1163 return error;
1164}
1165
16bf288c
CB
1166static void wacom_wireless_work(struct work_struct *work)
1167{
1168 struct wacom *wacom = container_of(work, struct wacom, work);
1169 struct usb_device *usbdev = wacom->usbdev;
1170 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
b7af2bb8
CB
1171 struct wacom *wacom1, *wacom2;
1172 struct wacom_wac *wacom_wac1, *wacom_wac2;
1173 int error;
16bf288c
CB
1174
1175 /*
1176 * Regardless if this is a disconnect or a new tablet,
b7af2bb8 1177 * remove any existing input and battery devices.
16bf288c
CB
1178 */
1179
b7af2bb8
CB
1180 wacom_destroy_battery(wacom);
1181
16bf288c 1182 /* Stylus interface */
b7af2bb8
CB
1183 wacom1 = usb_get_intfdata(usbdev->config->interface[1]);
1184 wacom_wac1 = &(wacom1->wacom_wac);
1185 if (wacom_wac1->input)
1186 input_unregister_device(wacom_wac1->input);
1187 wacom_wac1->input = NULL;
16bf288c
CB
1188
1189 /* Touch interface */
b7af2bb8
CB
1190 wacom2 = usb_get_intfdata(usbdev->config->interface[2]);
1191 wacom_wac2 = &(wacom2->wacom_wac);
1192 if (wacom_wac2->input)
1193 input_unregister_device(wacom_wac2->input);
1194 wacom_wac2->input = NULL;
16bf288c
CB
1195
1196 if (wacom_wac->pid == 0) {
eb71d1bb 1197 dev_info(&wacom->intf->dev, "wireless tablet disconnected\n");
16bf288c
CB
1198 } else {
1199 const struct usb_device_id *id = wacom_ids;
1200
eb71d1bb
DT
1201 dev_info(&wacom->intf->dev,
1202 "wireless tablet connected with PID %x\n",
1203 wacom_wac->pid);
16bf288c
CB
1204
1205 while (id->match_flags) {
1206 if (id->idVendor == USB_VENDOR_ID_WACOM &&
1207 id->idProduct == wacom_wac->pid)
1208 break;
1209 id++;
1210 }
1211
1212 if (!id->match_flags) {
eb71d1bb
DT
1213 dev_info(&wacom->intf->dev,
1214 "ignoring unknown PID.\n");
16bf288c
CB
1215 return;
1216 }
1217
1218 /* Stylus interface */
b7af2bb8 1219 wacom_wac1->features =
16bf288c 1220 *((struct wacom_features *)id->driver_info);
b7af2bb8
CB
1221 wacom_wac1->features.device_type = BTN_TOOL_PEN;
1222 error = wacom_register_input(wacom1);
1223 if (error)
1224 goto fail1;
16bf288c
CB
1225
1226 /* Touch interface */
b7af2bb8 1227 wacom_wac2->features =
16bf288c 1228 *((struct wacom_features *)id->driver_info);
b7af2bb8
CB
1229 wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
1230 wacom_wac2->features.device_type = BTN_TOOL_FINGER;
1231 wacom_set_phy_from_res(&wacom_wac2->features);
1232 wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
1233 error = wacom_register_input(wacom2);
1234 if (error)
1235 goto fail2;
1236
1237 error = wacom_initialize_battery(wacom);
1238 if (error)
1239 goto fail3;
16bf288c 1240 }
b7af2bb8
CB
1241
1242 return;
1243
1244fail3:
1245 input_unregister_device(wacom_wac2->input);
1246 wacom_wac2->input = NULL;
1247fail2:
1248 input_unregister_device(wacom_wac1->input);
1249 wacom_wac1->input = NULL;
1250fail1:
1251 return;
16bf288c
CB
1252}
1253
3bea733a
PC
1254static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *id)
1255{
1256 struct usb_device *dev = interface_to_usbdev(intf);
1257 struct usb_endpoint_descriptor *endpoint;
1258 struct wacom *wacom;
1259 struct wacom_wac *wacom_wac;
e33da8a5 1260 struct wacom_features *features;
e33da8a5 1261 int error;
3bea733a 1262
e33da8a5 1263 if (!id->driver_info)
b036f6fb
BB
1264 return -EINVAL;
1265
3bea733a 1266 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
f1823940
DC
1267 if (!wacom)
1268 return -ENOMEM;
e33da8a5 1269
51269fe8 1270 wacom_wac = &wacom->wacom_wac;
e33da8a5
JC
1271 wacom_wac->features = *((struct wacom_features *)id->driver_info);
1272 features = &wacom_wac->features;
1273 if (features->pktlen > WACOM_PKGLEN_MAX) {
1274 error = -EINVAL;
3bea733a 1275 goto fail1;
e33da8a5 1276 }
3bea733a 1277
997ea58e
DM
1278 wacom_wac->data = usb_alloc_coherent(dev, WACOM_PKGLEN_MAX,
1279 GFP_KERNEL, &wacom->data_dma);
e33da8a5
JC
1280 if (!wacom_wac->data) {
1281 error = -ENOMEM;
3bea733a 1282 goto fail1;
e33da8a5 1283 }
3bea733a
PC
1284
1285 wacom->irq = usb_alloc_urb(0, GFP_KERNEL);
e33da8a5
JC
1286 if (!wacom->irq) {
1287 error = -ENOMEM;
3bea733a 1288 goto fail2;
e33da8a5 1289 }
3bea733a
PC
1290
1291 wacom->usbdev = dev;
e7224094
ON
1292 wacom->intf = intf;
1293 mutex_init(&wacom->lock);
16bf288c 1294 INIT_WORK(&wacom->work, wacom_wireless_work);
3bea733a
PC
1295 usb_make_path(dev, wacom->phys, sizeof(wacom->phys));
1296 strlcat(wacom->phys, "/input0", sizeof(wacom->phys));
1297
545f4e99
PC
1298 endpoint = &intf->cur_altsetting->endpoint[0].desc;
1299
f393ee2b 1300 /* Retrieve the physical and logical size for touch devices */
ec67bbed
PC
1301 error = wacom_retrieve_hid_descriptor(intf, features);
1302 if (error)
4b6d4434 1303 goto fail3;
545f4e99 1304
ae584ca4
JG
1305 /*
1306 * Intuos5 has no useful data about its touch interface in its
1307 * HID descriptor. If this is the touch interface (wMaxPacketSize
1308 * of WACOM_PKGLEN_BBTOUCH3), override the table values.
1309 */
1310 if (features->type >= INTUOS5S && features->type <= INTUOS5L) {
1311 if (endpoint->wMaxPacketSize == WACOM_PKGLEN_BBTOUCH3) {
1312 features->device_type = BTN_TOOL_FINGER;
1313 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
1314
32edbf56 1315 wacom_set_phy_from_res(features);
ae584ca4
JG
1316
1317 features->x_max = 4096;
1318 features->y_max = 4096;
1319 } else {
1320 features->device_type = BTN_TOOL_PEN;
1321 }
1322 }
1323
bc73dd39
HR
1324 wacom_setup_device_quirks(features);
1325
49b764ae
PC
1326 strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
1327
bc73dd39 1328 if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
aea2bf6a
JG
1329 struct usb_device *other_dev;
1330
49b764ae
PC
1331 /* Append the device type to the name */
1332 strlcat(wacom_wac->name,
1333 features->device_type == BTN_TOOL_PEN ?
1334 " Pen" : " Finger",
1335 sizeof(wacom_wac->name));
4492efff 1336
aea2bf6a
JG
1337
1338 other_dev = wacom_get_sibling(dev, features->oVid, features->oPid);
1339 if (other_dev == NULL || wacom_get_usbdev_data(other_dev) == NULL)
1340 other_dev = dev;
1341 error = wacom_add_shared_data(wacom_wac, other_dev);
4492efff
PC
1342 if (error)
1343 goto fail3;
49b764ae
PC
1344 }
1345
3bea733a
PC
1346 usb_fill_int_urb(wacom->irq, dev,
1347 usb_rcvintpipe(dev, endpoint->bEndpointAddress),
ec67bbed 1348 wacom_wac->data, features->pktlen,
8d32e3ae 1349 wacom_sys_irq, wacom, endpoint->bInterval);
3bea733a
PC
1350 wacom->irq->transfer_dma = wacom->data_dma;
1351 wacom->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1352
5d7e7d47 1353 error = wacom_initialize_leds(wacom);
5014186d 1354 if (error)
4492efff 1355 goto fail4;
3bea733a 1356
d3825d51
CB
1357 if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
1358 error = wacom_register_input(wacom);
1359 if (error)
b7af2bb8 1360 goto fail5;
d3825d51 1361 }
5d7e7d47 1362
ec67bbed
PC
1363 /* Note that if query fails it is not a hard failure */
1364 wacom_query_tablet_data(intf, features);
3bea733a
PC
1365
1366 usb_set_intfdata(intf, wacom);
d3825d51
CB
1367
1368 if (features->quirks & WACOM_QUIRK_MONITOR) {
1369 if (usb_submit_urb(wacom->irq, GFP_KERNEL))
1370 goto fail5;
1371 }
1372
3bea733a
PC
1373 return 0;
1374
5d7e7d47 1375 fail5: wacom_destroy_leds(wacom);
4492efff 1376 fail4: wacom_remove_shared_data(wacom_wac);
5014186d 1377 fail3: usb_free_urb(wacom->irq);
997ea58e 1378 fail2: usb_free_coherent(dev, WACOM_PKGLEN_MAX, wacom_wac->data, wacom->data_dma);
3aac0ef1 1379 fail1: kfree(wacom);
5014186d 1380 return error;
3bea733a
PC
1381}
1382
1383static void wacom_disconnect(struct usb_interface *intf)
1384{
e7224094 1385 struct wacom *wacom = usb_get_intfdata(intf);
3bea733a
PC
1386
1387 usb_set_intfdata(intf, NULL);
e7224094
ON
1388
1389 usb_kill_urb(wacom->irq);
16bf288c 1390 cancel_work_sync(&wacom->work);
d3825d51
CB
1391 if (wacom->wacom_wac.input)
1392 input_unregister_device(wacom->wacom_wac.input);
a1d552cc 1393 wacom_destroy_battery(wacom);
5d7e7d47 1394 wacom_destroy_leds(wacom);
e7224094 1395 usb_free_urb(wacom->irq);
997ea58e 1396 usb_free_coherent(interface_to_usbdev(intf), WACOM_PKGLEN_MAX,
51269fe8
DT
1397 wacom->wacom_wac.data, wacom->data_dma);
1398 wacom_remove_shared_data(&wacom->wacom_wac);
e7224094
ON
1399 kfree(wacom);
1400}
1401
1402static int wacom_suspend(struct usb_interface *intf, pm_message_t message)
1403{
1404 struct wacom *wacom = usb_get_intfdata(intf);
1405
1406 mutex_lock(&wacom->lock);
1407 usb_kill_urb(wacom->irq);
1408 mutex_unlock(&wacom->lock);
1409
1410 return 0;
1411}
1412
1413static int wacom_resume(struct usb_interface *intf)
1414{
1415 struct wacom *wacom = usb_get_intfdata(intf);
51269fe8 1416 struct wacom_features *features = &wacom->wacom_wac.features;
5d7e7d47 1417 int rv = 0;
e7224094
ON
1418
1419 mutex_lock(&wacom->lock);
38101475
PC
1420
1421 /* switch to wacom mode first */
1422 wacom_query_tablet_data(intf, features);
5d7e7d47 1423 wacom_led_control(wacom);
38101475 1424
d3825d51
CB
1425 if ((wacom->open || features->quirks & WACOM_QUIRK_MONITOR)
1426 && usb_submit_urb(wacom->irq, GFP_NOIO) < 0)
5d7e7d47 1427 rv = -EIO;
38101475 1428
e7224094
ON
1429 mutex_unlock(&wacom->lock);
1430
1431 return rv;
1432}
1433
1434static int wacom_reset_resume(struct usb_interface *intf)
1435{
1436 return wacom_resume(intf);
3bea733a
PC
1437}
1438
1439static struct usb_driver wacom_driver = {
1440 .name = "wacom",
b036f6fb 1441 .id_table = wacom_ids,
3bea733a
PC
1442 .probe = wacom_probe,
1443 .disconnect = wacom_disconnect,
e7224094
ON
1444 .suspend = wacom_suspend,
1445 .resume = wacom_resume,
1446 .reset_resume = wacom_reset_resume,
1447 .supports_autosuspend = 1,
3bea733a
PC
1448};
1449
08642e7c 1450module_usb_driver(wacom_driver);