blob: 67442f409174dfd2f2c711bdd6ea1bf92a73827a [file] [log] [blame]
Ping Cheng3bea7332006-07-13 18:01:36 -07001/*
Dmitry Torokhov4104d132007-05-07 16:16:29 -04002 * drivers/input/tablet/wacom_sys.c
Ping Cheng3bea7332006-07-13 18:01:36 -07003 *
Ping Cheng232f5692009-12-15 00:35:24 -08004 * USB Wacom tablet support - system specific code
Ping Cheng3bea7332006-07-13 18:01:36 -07005 */
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
Ping Cheng3bea7332006-07-13 18:01:36 -070014#include "wacom_wac.h"
Dmitry Torokhov51269fe2010-03-19 22:18:15 -070015#include "wacom.h"
Ping Cheng3bea7332006-07-13 18:01:36 -070016
Ping Cheng545f4e92008-11-24 11:44:27 -050017/* 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
Ping Chengf393ee22012-04-29 21:09:17 -070031#define HID_USAGE_CONTACTMAX 0x55
Chris Bagwell41343612011-10-26 22:32:52 -070032#define HID_COLLECTION 0xa1
33#define HID_COLLECTION_LOGICAL 0x02
34#define HID_COLLECTION_END 0xc0
Ping Cheng545f4e92008-11-24 11:44:27 -050035
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 */
Ping Cheng3bea7332006-07-13 18:01:36 -070052#define USB_REQ_GET_REPORT 0x01
53#define USB_REQ_SET_REPORT 0x09
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070054
Ping Cheng545f4e92008-11-24 11:44:27 -050055#define WAC_HID_FEATURE_REPORT 0x03
Ping Chenga417ea42011-08-16 00:17:56 -070056#define WAC_MSG_RETRIES 5
Ping Cheng3bea7332006-07-13 18:01:36 -070057
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070058#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)
Ping Cheng3bea7332006-07-13 18:01:36 -070065{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070066 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,
Chris Bagwell6e8ec532011-10-26 22:24:22 -070072 USB_DIR_IN | USB_TYPE_CLASS |
73 USB_RECIP_INTERFACE,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070074 (type << 8) + id,
75 intf->altsetting[0].desc.bInterfaceNumber,
76 buf, size, 100);
77 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
78
79 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070080}
81
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070082static int wacom_set_report(struct usb_interface *intf, u8 type, u8 id,
83 void *buf, size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070084{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070085 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;
Ping Cheng3bea7332006-07-13 18:01:36 -070098}
99
Adrian Bunk54c9b2262006-11-20 03:23:58 +0100100static void wacom_sys_irq(struct urb *urb)
Ping Cheng3bea7332006-07-13 18:01:36 -0700101{
102 struct wacom *wacom = urb->context;
Greg Kroah-Hartman65e78a202012-05-04 15:33:13 -0700103 struct device *dev = &wacom->intf->dev;
Ping Cheng3bea7332006-07-13 18:01:36 -0700104 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 */
Greg Kroah-Hartman3b6aee22012-05-01 21:24:28 -0700114 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
115 __func__, urb->status);
Ping Cheng3bea7332006-07-13 18:01:36 -0700116 return;
117 default:
Greg Kroah-Hartman3b6aee22012-05-01 21:24:28 -0700118 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
119 __func__, urb->status);
Ping Cheng3bea7332006-07-13 18:01:36 -0700120 goto exit;
121 }
122
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700123 wacom_wac_irq(&wacom->wacom_wac, urb->actual_length);
Ping Cheng3bea7332006-07-13 18:01:36 -0700124
125 exit:
Oliver Neukume7224092008-04-15 01:31:57 -0400126 usb_mark_last_busy(wacom->usbdev);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700127 retval = usb_submit_urb(urb, GFP_ATOMIC);
Ping Cheng3bea7332006-07-13 18:01:36 -0700128 if (retval)
Greg Kroah-Hartman3b6aee22012-05-01 21:24:28 -0700129 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartmanb3169fe2012-04-25 14:48:44 -0700130 __func__, retval);
Ping Cheng3bea7332006-07-13 18:01:36 -0700131}
132
Ping Cheng3bea7332006-07-13 18:01:36 -0700133static int wacom_open(struct input_dev *dev)
134{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400135 struct wacom *wacom = input_get_drvdata(dev);
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700136 int retval = 0;
137
138 if (usb_autopm_get_interface(wacom->intf) < 0)
139 return -EIO;
Ping Cheng3bea7332006-07-13 18:01:36 -0700140
Oliver Neukume7224092008-04-15 01:31:57 -0400141 mutex_lock(&wacom->lock);
Ping Cheng3bea7332006-07-13 18:01:36 -0700142
Oliver Neukume7224092008-04-15 01:31:57 -0400143 if (usb_submit_urb(wacom->irq, GFP_KERNEL)) {
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700144 retval = -EIO;
145 goto out;
Oliver Neukume7224092008-04-15 01:31:57 -0400146 }
147
Dmitry Torokhov51269fe2010-03-19 22:18:15 -0700148 wacom->open = true;
Oliver Neukume7224092008-04-15 01:31:57 -0400149 wacom->intf->needs_remote_wakeup = 1;
150
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700151out:
Oliver Neukume7224092008-04-15 01:31:57 -0400152 mutex_unlock(&wacom->lock);
Dmitry Torokhov62ecae02010-10-10 14:24:16 -0700153 usb_autopm_put_interface(wacom->intf);
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700154 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -0700155}
156
157static void wacom_close(struct input_dev *dev)
158{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400159 struct wacom *wacom = input_get_drvdata(dev);
Dmitry Torokhov62ecae02010-10-10 14:24:16 -0700160 int autopm_error;
161
162 autopm_error = usb_autopm_get_interface(wacom->intf);
Ping Cheng3bea7332006-07-13 18:01:36 -0700163
Oliver Neukume7224092008-04-15 01:31:57 -0400164 mutex_lock(&wacom->lock);
Ping Cheng3bea7332006-07-13 18:01:36 -0700165 usb_kill_urb(wacom->irq);
Dmitry Torokhov51269fe2010-03-19 22:18:15 -0700166 wacom->open = false;
Oliver Neukume7224092008-04-15 01:31:57 -0400167 wacom->intf->needs_remote_wakeup = 0;
168 mutex_unlock(&wacom->lock);
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700169
Dmitry Torokhov62ecae02010-10-10 14:24:16 -0700170 if (!autopm_error)
171 usb_autopm_put_interface(wacom->intf);
Ping Cheng3bea7332006-07-13 18:01:36 -0700172}
173
Chris Bagwell16bf2882012-03-25 23:26:20 -0700174/*
Jason Gerecke115d5e12012-10-03 17:24:32 -0700175 * 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
244/*
Chris Bagwell16bf2882012-03-25 23:26:20 -0700245 * 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
Chris Bagwell41343612011-10-26 22:32:52 -0700257static 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;
Ping Cheng8b4a0c12012-01-31 00:07:33 -0800266 features->device_type = BTN_TOOL_FINGER;
Chris Bagwell41343612011-10-26 22:32:52 -0700267
Chris Bagwell16bf2882012-03-25 23:26:20 -0700268 wacom_set_phy_from_res(features);
Chris Bagwell41343612011-10-26 22:32:52 -0700269
270 features->x_max = features->y_max =
271 get_unaligned_le16(&report[10]);
272
273 length = 11;
274 }
275 return length;
276}
277
Ping Chengf393ee22012-04-29 21:09:17 -0700278static 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,
Ping Cheng61c91dd2012-06-28 16:46:27 -0700289 rep_data[0], rep_data, 2,
Ping Chengf393ee22012-04-29 21:09:17 -0700290 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
Chris Bagwell428f8582011-10-26 22:26:59 -0700299/*
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.
Chris Bagwell41343612011-10-26 22:32:52 -0700327 *
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.
Jason Gereckeae584ca2012-04-03 15:50:40 -0700331 *
332 * Intuos5 touch interface does not contain useful data. We deal with
333 * this after returning from this function.
Chris Bagwell428f8582011-10-26 22:26:59 -0700334 */
335static int wacom_parse_hid(struct usb_interface *intf,
336 struct hid_descriptor *hid_desc,
Ping Chengec67bbe2009-12-15 00:35:24 -0800337 struct wacom_features *features)
Ping Cheng545f4e92008-11-24 11:44:27 -0500338{
339 struct usb_device *dev = interface_to_usbdev(intf);
Ping Chengec67bbe2009-12-15 00:35:24 -0800340 char limit = 0;
341 /* result has to be defined as int for some devices */
342 int result = 0;
Ping Cheng545f4e92008-11-24 11:44:27 -0500343 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 */
Ping Chenga417ea42011-08-16 00:17:56 -0700360 } while (result < 0 && limit++ < WAC_MSG_RETRIES);
Ping Cheng545f4e92008-11-24 11:44:27 -0500361
Ping Cheng384318e2009-04-28 07:49:54 -0700362 /* No need to parse the Descriptor. It isn't an error though */
Ping Cheng545f4e92008-11-24 11:44:27 -0500363 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) {
Ping Cheng84eb5aa2011-03-12 20:35:18 -0800388 features->device_type = BTN_TOOL_FINGER;
Ping Cheng3699dd72012-11-03 12:16:13 -0700389
390 switch (features->type) {
391 case TABLETPC2FG:
Ping Chengec67bbe2009-12-15 00:35:24 -0800392 features->pktlen = WACOM_PKGLEN_TPC2FG;
Ping Cheng3699dd72012-11-03 12:16:13 -0700393 break;
394
395 case MTSCREEN:
396 case WACOM_24HDT:
397 features->pktlen = WACOM_PKGLEN_MTOUCH;
398 break;
399
400 case BAMBOO_PT:
401 features->pktlen = WACOM_PKGLEN_BBTOUCH;
402 break;
403
404 default:
405 features->pktlen = WACOM_PKGLEN_GRAPHIRE;
406 break;
Ping Chengec67bbe2009-12-15 00:35:24 -0800407 }
Ping Cheng19635182012-04-29 21:09:18 -0700408
Ping Cheng3699dd72012-11-03 12:16:13 -0700409 switch (features->type) {
410 case BAMBOO_PT:
Ping Cheng4a880812010-09-05 12:25:40 -0700411 features->x_phy =
412 get_unaligned_le16(&report[i + 5]);
413 features->x_max =
414 get_unaligned_le16(&report[i + 8]);
415 i += 15;
Ping Cheng3699dd72012-11-03 12:16:13 -0700416 break;
417
418 case WACOM_24HDT:
Jason Gereckeb1e42792012-10-21 00:38:04 -0700419 features->x_max =
420 get_unaligned_le16(&report[i + 3]);
421 features->x_phy =
422 get_unaligned_le16(&report[i + 8]);
423 features->unit = report[i - 1];
424 features->unitExpo = report[i - 3];
425 i += 12;
Ping Cheng3699dd72012-11-03 12:16:13 -0700426 break;
427
428 default:
Ping Cheng4a880812010-09-05 12:25:40 -0700429 features->x_max =
430 get_unaligned_le16(&report[i + 3]);
431 features->x_phy =
432 get_unaligned_le16(&report[i + 6]);
433 features->unit = report[i + 9];
434 features->unitExpo = report[i + 11];
435 i += 12;
Ping Cheng3699dd72012-11-03 12:16:13 -0700436 break;
Ping Cheng4a880812010-09-05 12:25:40 -0700437 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500438 } else if (pen) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800439 /* penabled only accepts exact bytes of data */
Ping Cheng3699dd72012-11-03 12:16:13 -0700440 if (features->type >= TABLETPC)
Ping Cheng57e413d2010-03-01 23:50:24 -0800441 features->pktlen = WACOM_PKGLEN_GRAPHIRE;
Ping Chengec67bbe2009-12-15 00:35:24 -0800442 features->device_type = BTN_TOOL_PEN;
Ping Cheng545f4e92008-11-24 11:44:27 -0500443 features->x_max =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700444 get_unaligned_le16(&report[i + 3]);
Ping Cheng545f4e92008-11-24 11:44:27 -0500445 i += 4;
446 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500447 }
448 break;
449
450 case HID_USAGE_Y:
Ping Chengec67bbe2009-12-15 00:35:24 -0800451 if (usage == WCM_DESKTOP) {
452 if (finger) {
Ping Cheng3699dd72012-11-03 12:16:13 -0700453 switch (features->type) {
454 case TABLETPC2FG:
455 case MTSCREEN:
Ping Chengec67bbe2009-12-15 00:35:24 -0800456 features->y_max =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700457 get_unaligned_le16(&report[i + 3]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800458 features->y_phy =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700459 get_unaligned_le16(&report[i + 6]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800460 i += 7;
Ping Cheng3699dd72012-11-03 12:16:13 -0700461 break;
462
463 case WACOM_24HDT:
Jason Gereckeb1e42792012-10-21 00:38:04 -0700464 features->y_max =
465 get_unaligned_le16(&report[i + 3]);
466 features->y_phy =
467 get_unaligned_le16(&report[i - 2]);
468 i += 7;
Ping Cheng3699dd72012-11-03 12:16:13 -0700469 break;
470
471 case BAMBOO_PT:
Ping Cheng4a880812010-09-05 12:25:40 -0700472 features->y_phy =
473 get_unaligned_le16(&report[i + 3]);
474 features->y_max =
475 get_unaligned_le16(&report[i + 6]);
476 i += 12;
Ping Cheng3699dd72012-11-03 12:16:13 -0700477 break;
478
479 default:
Ping Chengec67bbe2009-12-15 00:35:24 -0800480 features->y_max =
481 features->x_max;
482 features->y_phy =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700483 get_unaligned_le16(&report[i + 3]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800484 i += 4;
Ping Cheng3699dd72012-11-03 12:16:13 -0700485 break;
Ping Chengec67bbe2009-12-15 00:35:24 -0800486 }
487 } else if (pen) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800488 features->y_max =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700489 get_unaligned_le16(&report[i + 3]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800490 i += 4;
491 }
492 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500493 break;
494
495 case HID_USAGE_FINGER:
496 finger = 1;
497 i++;
498 break;
499
Chris Bagwell428f8582011-10-26 22:26:59 -0700500 /*
501 * Requiring Stylus Usage will ignore boot mouse
502 * X/Y values and some cases of invalid Digitizer X/Y
503 * values commonly reported.
504 */
Ping Cheng545f4e92008-11-24 11:44:27 -0500505 case HID_USAGE_STYLUS:
506 pen = 1;
507 i++;
508 break;
Ping Chengf393ee22012-04-29 21:09:17 -0700509
510 case HID_USAGE_CONTACTMAX:
Ping Cheng1cecc5c2012-06-28 16:47:30 -0700511 /* leave touch_max as is if predefined */
512 if (!features->touch_max)
513 wacom_retrieve_report_data(intf, features);
Ping Chengf393ee22012-04-29 21:09:17 -0700514 i++;
515 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500516 }
517 break;
518
Chris Bagwell41343612011-10-26 22:32:52 -0700519 case HID_COLLECTION_END:
Ping Chengec67bbe2009-12-15 00:35:24 -0800520 /* reset UsagePage and Finger */
Ping Cheng545f4e92008-11-24 11:44:27 -0500521 finger = usage = 0;
522 break;
Chris Bagwell41343612011-10-26 22:32:52 -0700523
524 case HID_COLLECTION:
525 i++;
526 switch (report[i]) {
527 case HID_COLLECTION_LOGICAL:
528 i += wacom_parse_logical_collection(&report[i],
529 features);
530 break;
531 }
532 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500533 }
534 }
535
Ping Cheng545f4e92008-11-24 11:44:27 -0500536 out:
Ping Cheng384318e2009-04-28 07:49:54 -0700537 result = 0;
Ping Cheng545f4e92008-11-24 11:44:27 -0500538 kfree(report);
539 return result;
540}
541
Jason Gereckefe494bc2012-10-03 17:25:35 -0700542static int wacom_set_device_mode(struct usb_interface *intf, int report_id, int length, int mode)
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700543{
544 unsigned char *rep_data;
Jason Gereckefe494bc2012-10-03 17:25:35 -0700545 int error = -ENOMEM, limit = 0;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700546
Jason Gereckefe494bc2012-10-03 17:25:35 -0700547 rep_data = kzalloc(length, GFP_KERNEL);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700548 if (!rep_data)
Ping Chengec67bbe2009-12-15 00:35:24 -0800549 return error;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700550
Jason Gereckefe494bc2012-10-03 17:25:35 -0700551 rep_data[0] = report_id;
552 rep_data[1] = mode;
553
554 do {
555 error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT,
556 report_id, rep_data, length, 1);
557 if (error >= 0)
558 error = wacom_get_report(intf, WAC_HID_FEATURE_REPORT,
559 report_id, rep_data, length, 1);
560 } while ((error < 0 || rep_data[1] != mode) && limit++ < WAC_MSG_RETRIES);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700561
562 kfree(rep_data);
563
564 return error < 0 ? error : 0;
565}
566
Jason Gereckefe494bc2012-10-03 17:25:35 -0700567/*
568 * Switch the tablet into its most-capable mode. Wacom tablets are
569 * typically configured to power-up in a mode which sends mouse-like
570 * reports to the OS. To get absolute position, pressure data, etc.
571 * from the tablet, it is necessary to switch the tablet out of this
572 * mode and into one which sends the full range of tablet data.
573 */
574static int wacom_query_tablet_data(struct usb_interface *intf, struct wacom_features *features)
575{
576 if (features->device_type == BTN_TOOL_FINGER) {
577 if (features->type > TABLETPC) {
578 /* MT Tablet PC touch */
579 return wacom_set_device_mode(intf, 3, 4, 4);
580 }
Jason Gereckeb1e42792012-10-21 00:38:04 -0700581 else if (features->type == WACOM_24HDT) {
582 return wacom_set_device_mode(intf, 18, 3, 2);
583 }
Jason Gereckefe494bc2012-10-03 17:25:35 -0700584 } else if (features->device_type == BTN_TOOL_PEN) {
585 if (features->type <= BAMBOO_PT && features->type != WIRELESS) {
586 return wacom_set_device_mode(intf, 2, 2, 2);
587 }
588 }
589
590 return 0;
591}
592
Ping Chengec67bbe2009-12-15 00:35:24 -0800593static int wacom_retrieve_hid_descriptor(struct usb_interface *intf,
Ping Cheng19635182012-04-29 21:09:18 -0700594 struct wacom_features *features)
Ping Chengec67bbe2009-12-15 00:35:24 -0800595{
596 int error = 0;
597 struct usb_host_interface *interface = intf->cur_altsetting;
598 struct hid_descriptor *hid_desc;
599
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700600 /* default features */
Ping Chengec67bbe2009-12-15 00:35:24 -0800601 features->device_type = BTN_TOOL_PEN;
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700602 features->x_fuzz = 4;
603 features->y_fuzz = 4;
604 features->pressure_fuzz = 0;
605 features->distance_fuzz = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800606
Chris Bagwelld3825d52012-03-25 23:26:11 -0700607 /*
608 * The wireless device HID is basic and layout conflicts with
609 * other tablets (monitor and touch interface can look like pen).
610 * Skip the query for this type and modify defaults based on
611 * interface number.
612 */
613 if (features->type == WIRELESS) {
614 if (intf->cur_altsetting->desc.bInterfaceNumber == 0) {
615 features->device_type = 0;
616 } else if (intf->cur_altsetting->desc.bInterfaceNumber == 2) {
Ping Chengadad0042012-06-28 16:48:17 -0700617 features->device_type = BTN_TOOL_FINGER;
Chris Bagwelld3825d52012-03-25 23:26:11 -0700618 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
619 }
620 }
621
Ping Cheng19635182012-04-29 21:09:18 -0700622 /* only devices that support touch need to retrieve the info */
Ping Chengea2e6022012-06-12 00:14:12 -0700623 if (features->type < BAMBOO_PT) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800624 goto out;
Ping Cheng19635182012-04-29 21:09:18 -0700625 }
Ping Chengec67bbe2009-12-15 00:35:24 -0800626
Dmitry Torokhova882c932012-05-02 00:13:38 -0700627 error = usb_get_extra_descriptor(interface, HID_DEVICET_HID, &hid_desc);
628 if (error) {
629 error = usb_get_extra_descriptor(&interface->endpoint[0],
630 HID_DEVICET_REPORT, &hid_desc);
631 if (error) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700632 dev_err(&intf->dev,
633 "can not retrieve extra class descriptor\n");
Ping Chengec67bbe2009-12-15 00:35:24 -0800634 goto out;
635 }
636 }
637 error = wacom_parse_hid(intf, hid_desc, features);
638 if (error)
639 goto out;
Jason Gerecke115d5e12012-10-03 17:24:32 -0700640 wacom_fix_phy_from_hid(features);
Ping Chengec67bbe2009-12-15 00:35:24 -0800641
Ping Chengec67bbe2009-12-15 00:35:24 -0800642 out:
643 return error;
644}
645
Ping Cheng4492eff2010-03-19 22:18:15 -0700646struct wacom_usbdev_data {
647 struct list_head list;
648 struct kref kref;
649 struct usb_device *dev;
650 struct wacom_shared shared;
651};
652
653static LIST_HEAD(wacom_udev_list);
654static DEFINE_MUTEX(wacom_udev_list_lock);
655
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700656static struct usb_device *wacom_get_sibling(struct usb_device *dev, int vendor, int product)
657{
658 int port1;
659 struct usb_device *sibling;
660
661 if (vendor == 0 && product == 0)
662 return dev;
663
664 if (dev->parent == NULL)
665 return NULL;
666
667 usb_hub_for_each_child(dev->parent, port1, sibling) {
668 struct usb_device_descriptor *d;
669 if (sibling == NULL)
670 continue;
671
672 d = &sibling->descriptor;
673 if (d->idVendor == vendor && d->idProduct == product)
674 return sibling;
675 }
676
677 return NULL;
678}
679
Ping Cheng4492eff2010-03-19 22:18:15 -0700680static struct wacom_usbdev_data *wacom_get_usbdev_data(struct usb_device *dev)
681{
682 struct wacom_usbdev_data *data;
683
684 list_for_each_entry(data, &wacom_udev_list, list) {
685 if (data->dev == dev) {
686 kref_get(&data->kref);
687 return data;
688 }
689 }
690
691 return NULL;
692}
693
694static int wacom_add_shared_data(struct wacom_wac *wacom,
695 struct usb_device *dev)
696{
697 struct wacom_usbdev_data *data;
698 int retval = 0;
699
700 mutex_lock(&wacom_udev_list_lock);
701
702 data = wacom_get_usbdev_data(dev);
703 if (!data) {
704 data = kzalloc(sizeof(struct wacom_usbdev_data), GFP_KERNEL);
705 if (!data) {
706 retval = -ENOMEM;
707 goto out;
708 }
709
710 kref_init(&data->kref);
711 data->dev = dev;
712 list_add_tail(&data->list, &wacom_udev_list);
713 }
714
715 wacom->shared = &data->shared;
716
717out:
718 mutex_unlock(&wacom_udev_list_lock);
719 return retval;
720}
721
722static void wacom_release_shared_data(struct kref *kref)
723{
724 struct wacom_usbdev_data *data =
725 container_of(kref, struct wacom_usbdev_data, kref);
726
727 mutex_lock(&wacom_udev_list_lock);
728 list_del(&data->list);
729 mutex_unlock(&wacom_udev_list_lock);
730
731 kfree(data);
732}
733
734static void wacom_remove_shared_data(struct wacom_wac *wacom)
735{
736 struct wacom_usbdev_data *data;
737
738 if (wacom->shared) {
739 data = container_of(wacom->shared, struct wacom_usbdev_data, shared);
740 kref_put(&data->kref, wacom_release_shared_data);
741 wacom->shared = NULL;
742 }
743}
744
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700745static int wacom_led_control(struct wacom *wacom)
746{
747 unsigned char *buf;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700748 int retval;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700749
750 buf = kzalloc(9, GFP_KERNEL);
751 if (!buf)
752 return -ENOMEM;
753
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700754 if (wacom->wacom_wac.features.type >= INTUOS5S &&
755 wacom->wacom_wac.features.type <= INTUOS5L) {
756 /*
757 * Touch Ring and crop mark LED luminance may take on
758 * one of four values:
759 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
760 */
761 int ring_led = wacom->led.select[0] & 0x03;
762 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
763 int crop_lum = 0;
Ping Cheng09e7d942011-10-04 23:51:14 -0700764
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700765 buf[0] = WAC_CMD_LED_CONTROL;
766 buf[1] = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
767 }
768 else {
769 int led = wacom->led.select[0] | 0x4;
Ping Cheng09e7d942011-10-04 23:51:14 -0700770
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700771 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
772 wacom->wacom_wac.features.type == WACOM_24HD)
773 led |= (wacom->led.select[1] << 4) | 0x40;
774
775 buf[0] = WAC_CMD_LED_CONTROL;
776 buf[1] = led;
777 buf[2] = wacom->led.llv;
778 buf[3] = wacom->led.hlv;
779 buf[4] = wacom->led.img_lum;
780 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700781
782 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_LED_CONTROL,
783 buf, 9, WAC_CMD_RETRIES);
784 kfree(buf);
785
786 return retval;
787}
788
789static int wacom_led_putimage(struct wacom *wacom, int button_id, const void *img)
790{
791 unsigned char *buf;
792 int i, retval;
793
794 buf = kzalloc(259, GFP_KERNEL);
795 if (!buf)
796 return -ENOMEM;
797
798 /* Send 'start' command */
799 buf[0] = WAC_CMD_ICON_START;
800 buf[1] = 1;
801 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START,
802 buf, 2, WAC_CMD_RETRIES);
803 if (retval < 0)
804 goto out;
805
806 buf[0] = WAC_CMD_ICON_XFER;
807 buf[1] = button_id & 0x07;
808 for (i = 0; i < 4; i++) {
809 buf[2] = i;
810 memcpy(buf + 3, img + i * 256, 256);
811
812 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_XFER,
813 buf, 259, WAC_CMD_RETRIES);
814 if (retval < 0)
815 break;
816 }
817
818 /* Send 'stop' */
819 buf[0] = WAC_CMD_ICON_START;
820 buf[1] = 0;
821 wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START,
822 buf, 2, WAC_CMD_RETRIES);
823
824out:
825 kfree(buf);
826 return retval;
827}
828
Ping Cheng09e7d942011-10-04 23:51:14 -0700829static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700830 const char *buf, size_t count)
831{
832 struct wacom *wacom = dev_get_drvdata(dev);
833 unsigned int id;
834 int err;
835
836 err = kstrtouint(buf, 10, &id);
837 if (err)
838 return err;
839
840 mutex_lock(&wacom->lock);
841
Ping Cheng09e7d942011-10-04 23:51:14 -0700842 wacom->led.select[set_id] = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700843 err = wacom_led_control(wacom);
844
845 mutex_unlock(&wacom->lock);
846
847 return err < 0 ? err : count;
848}
849
Ping Cheng09e7d942011-10-04 23:51:14 -0700850#define DEVICE_LED_SELECT_ATTR(SET_ID) \
851static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
852 struct device_attribute *attr, const char *buf, size_t count) \
853{ \
854 return wacom_led_select_store(dev, SET_ID, buf, count); \
855} \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700856static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
857 struct device_attribute *attr, char *buf) \
858{ \
859 struct wacom *wacom = dev_get_drvdata(dev); \
860 return snprintf(buf, 2, "%d\n", wacom->led.select[SET_ID]); \
861} \
862static DEVICE_ATTR(status_led##SET_ID##_select, S_IWUSR | S_IRUSR, \
863 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -0700864 wacom_led##SET_ID##_select_store)
865
866DEVICE_LED_SELECT_ATTR(0);
867DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700868
869static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
870 const char *buf, size_t count)
871{
872 unsigned int value;
873 int err;
874
875 err = kstrtouint(buf, 10, &value);
876 if (err)
877 return err;
878
879 mutex_lock(&wacom->lock);
880
881 *dest = value & 0x7f;
882 err = wacom_led_control(wacom);
883
884 mutex_unlock(&wacom->lock);
885
886 return err < 0 ? err : count;
887}
888
889#define DEVICE_LUMINANCE_ATTR(name, field) \
890static ssize_t wacom_##name##_luminance_store(struct device *dev, \
891 struct device_attribute *attr, const char *buf, size_t count) \
892{ \
893 struct wacom *wacom = dev_get_drvdata(dev); \
894 \
895 return wacom_luminance_store(wacom, &wacom->led.field, \
896 buf, count); \
897} \
898static DEVICE_ATTR(name##_luminance, S_IWUSR, \
899 NULL, wacom_##name##_luminance_store)
900
901DEVICE_LUMINANCE_ATTR(status0, llv);
902DEVICE_LUMINANCE_ATTR(status1, hlv);
903DEVICE_LUMINANCE_ATTR(buttons, img_lum);
904
905static ssize_t wacom_button_image_store(struct device *dev, int button_id,
906 const char *buf, size_t count)
907{
908 struct wacom *wacom = dev_get_drvdata(dev);
909 int err;
910
911 if (count != 1024)
912 return -EINVAL;
913
914 mutex_lock(&wacom->lock);
915
916 err = wacom_led_putimage(wacom, button_id, buf);
917
918 mutex_unlock(&wacom->lock);
919
920 return err < 0 ? err : count;
921}
922
923#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
924static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
925 struct device_attribute *attr, const char *buf, size_t count) \
926{ \
927 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
928} \
929static DEVICE_ATTR(button##BUTTON_ID##_rawimg, S_IWUSR, \
930 NULL, wacom_btnimg##BUTTON_ID##_store)
931
932DEVICE_BTNIMG_ATTR(0);
933DEVICE_BTNIMG_ATTR(1);
934DEVICE_BTNIMG_ATTR(2);
935DEVICE_BTNIMG_ATTR(3);
936DEVICE_BTNIMG_ATTR(4);
937DEVICE_BTNIMG_ATTR(5);
938DEVICE_BTNIMG_ATTR(6);
939DEVICE_BTNIMG_ATTR(7);
940
Ping Cheng09e7d942011-10-04 23:51:14 -0700941static struct attribute *cintiq_led_attrs[] = {
942 &dev_attr_status_led0_select.attr,
943 &dev_attr_status_led1_select.attr,
944 NULL
945};
946
947static struct attribute_group cintiq_led_attr_group = {
948 .name = "wacom_led",
949 .attrs = cintiq_led_attrs,
950};
951
952static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700953 &dev_attr_status0_luminance.attr,
954 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -0700955 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700956 &dev_attr_buttons_luminance.attr,
957 &dev_attr_button0_rawimg.attr,
958 &dev_attr_button1_rawimg.attr,
959 &dev_attr_button2_rawimg.attr,
960 &dev_attr_button3_rawimg.attr,
961 &dev_attr_button4_rawimg.attr,
962 &dev_attr_button5_rawimg.attr,
963 &dev_attr_button6_rawimg.attr,
964 &dev_attr_button7_rawimg.attr,
965 NULL
966};
967
Ping Cheng09e7d942011-10-04 23:51:14 -0700968static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700969 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -0700970 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700971};
972
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700973static struct attribute *intuos5_led_attrs[] = {
974 &dev_attr_status0_luminance.attr,
975 &dev_attr_status_led0_select.attr,
976 NULL
977};
978
979static struct attribute_group intuos5_led_attr_group = {
980 .name = "wacom_led",
981 .attrs = intuos5_led_attrs,
982};
983
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700984static int wacom_initialize_leds(struct wacom *wacom)
985{
986 int error;
987
Ping Cheng09e7d942011-10-04 23:51:14 -0700988 /* Initialize default values */
989 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700990 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700991 case INTUOS4:
992 case INTUOS4L:
993 wacom->led.select[0] = 0;
994 wacom->led.select[1] = 0;
Ping Chengf4fa9a62011-10-04 23:49:42 -0700995 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700996 wacom->led.hlv = 20;
997 wacom->led.img_lum = 10;
Ping Cheng09e7d942011-10-04 23:51:14 -0700998 error = sysfs_create_group(&wacom->intf->dev.kobj,
999 &intuos4_led_attr_group);
1000 break;
1001
Jason Gerecke246835f2011-12-12 00:12:04 -08001002 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -07001003 case WACOM_21UX2:
1004 wacom->led.select[0] = 0;
1005 wacom->led.select[1] = 0;
1006 wacom->led.llv = 0;
1007 wacom->led.hlv = 0;
1008 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001009
1010 error = sysfs_create_group(&wacom->intf->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -07001011 &cintiq_led_attr_group);
1012 break;
1013
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001014 case INTUOS5S:
1015 case INTUOS5:
1016 case INTUOS5L:
1017 wacom->led.select[0] = 0;
1018 wacom->led.select[1] = 0;
1019 wacom->led.llv = 32;
1020 wacom->led.hlv = 0;
1021 wacom->led.img_lum = 0;
1022
1023 error = sysfs_create_group(&wacom->intf->dev.kobj,
1024 &intuos5_led_attr_group);
1025 break;
1026
Ping Cheng09e7d942011-10-04 23:51:14 -07001027 default:
1028 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001029 }
1030
Ping Cheng09e7d942011-10-04 23:51:14 -07001031 if (error) {
1032 dev_err(&wacom->intf->dev,
1033 "cannot create sysfs group err: %d\n", error);
1034 return error;
1035 }
1036 wacom_led_control(wacom);
1037
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001038 return 0;
1039}
1040
1041static void wacom_destroy_leds(struct wacom *wacom)
1042{
Ping Cheng09e7d942011-10-04 23:51:14 -07001043 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -07001044 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -07001045 case INTUOS4:
1046 case INTUOS4L:
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001047 sysfs_remove_group(&wacom->intf->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -07001048 &intuos4_led_attr_group);
1049 break;
1050
Jason Gerecke246835f2011-12-12 00:12:04 -08001051 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -07001052 case WACOM_21UX2:
1053 sysfs_remove_group(&wacom->intf->dev.kobj,
1054 &cintiq_led_attr_group);
1055 break;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001056
1057 case INTUOS5S:
1058 case INTUOS5:
1059 case INTUOS5L:
1060 sysfs_remove_group(&wacom->intf->dev.kobj,
1061 &intuos5_led_attr_group);
1062 break;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001063 }
1064}
1065
Chris Bagwella1d552c2012-03-25 23:26:30 -07001066static enum power_supply_property wacom_battery_props[] = {
1067 POWER_SUPPLY_PROP_CAPACITY
1068};
1069
1070static int wacom_battery_get_property(struct power_supply *psy,
1071 enum power_supply_property psp,
1072 union power_supply_propval *val)
1073{
1074 struct wacom *wacom = container_of(psy, struct wacom, battery);
1075 int ret = 0;
1076
1077 switch (psp) {
1078 case POWER_SUPPLY_PROP_CAPACITY:
1079 val->intval =
1080 wacom->wacom_wac.battery_capacity * 100 / 31;
1081 break;
1082 default:
1083 ret = -EINVAL;
1084 break;
1085 }
1086
1087 return ret;
1088}
1089
1090static int wacom_initialize_battery(struct wacom *wacom)
1091{
1092 int error = 0;
1093
1094 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_MONITOR) {
1095 wacom->battery.properties = wacom_battery_props;
1096 wacom->battery.num_properties = ARRAY_SIZE(wacom_battery_props);
1097 wacom->battery.get_property = wacom_battery_get_property;
1098 wacom->battery.name = "wacom_battery";
1099 wacom->battery.type = POWER_SUPPLY_TYPE_BATTERY;
1100 wacom->battery.use_for_apm = 0;
1101
1102 error = power_supply_register(&wacom->usbdev->dev,
1103 &wacom->battery);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001104
1105 if (!error)
1106 power_supply_powers(&wacom->battery,
1107 &wacom->usbdev->dev);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001108 }
1109
1110 return error;
1111}
1112
1113static void wacom_destroy_battery(struct wacom *wacom)
1114{
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001115 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_MONITOR &&
1116 wacom->battery.dev) {
Chris Bagwella1d552c2012-03-25 23:26:30 -07001117 power_supply_unregister(&wacom->battery);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001118 wacom->battery.dev = NULL;
1119 }
Chris Bagwella1d552c2012-03-25 23:26:30 -07001120}
1121
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001122static int wacom_register_input(struct wacom *wacom)
1123{
1124 struct input_dev *input_dev;
1125 struct usb_interface *intf = wacom->intf;
1126 struct usb_device *dev = interface_to_usbdev(intf);
1127 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1128 int error;
1129
1130 input_dev = input_allocate_device();
Ping Cheng19635182012-04-29 21:09:18 -07001131 if (!input_dev) {
1132 error = -ENOMEM;
1133 goto fail1;
1134 }
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001135
1136 input_dev->name = wacom_wac->name;
1137 input_dev->dev.parent = &intf->dev;
1138 input_dev->open = wacom_open;
1139 input_dev->close = wacom_close;
1140 usb_to_input_id(dev, &input_dev->id);
1141 input_set_drvdata(input_dev, wacom);
1142
1143 wacom_wac->input = input_dev;
Ping Cheng19635182012-04-29 21:09:18 -07001144 error = wacom_setup_input_capabilities(input_dev, wacom_wac);
1145 if (error)
1146 goto fail1;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001147
1148 error = input_register_device(input_dev);
Ping Cheng19635182012-04-29 21:09:18 -07001149 if (error)
1150 goto fail2;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001151
Ping Cheng19635182012-04-29 21:09:18 -07001152 return 0;
1153
1154fail2:
1155 input_free_device(input_dev);
1156 wacom_wac->input = NULL;
1157fail1:
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001158 return error;
1159}
1160
Chris Bagwell16bf2882012-03-25 23:26:20 -07001161static void wacom_wireless_work(struct work_struct *work)
1162{
1163 struct wacom *wacom = container_of(work, struct wacom, work);
1164 struct usb_device *usbdev = wacom->usbdev;
1165 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001166 struct wacom *wacom1, *wacom2;
1167 struct wacom_wac *wacom_wac1, *wacom_wac2;
1168 int error;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001169
1170 /*
1171 * Regardless if this is a disconnect or a new tablet,
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001172 * remove any existing input and battery devices.
Chris Bagwell16bf2882012-03-25 23:26:20 -07001173 */
1174
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001175 wacom_destroy_battery(wacom);
1176
Chris Bagwell16bf2882012-03-25 23:26:20 -07001177 /* Stylus interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001178 wacom1 = usb_get_intfdata(usbdev->config->interface[1]);
1179 wacom_wac1 = &(wacom1->wacom_wac);
1180 if (wacom_wac1->input)
1181 input_unregister_device(wacom_wac1->input);
1182 wacom_wac1->input = NULL;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001183
1184 /* Touch interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001185 wacom2 = usb_get_intfdata(usbdev->config->interface[2]);
1186 wacom_wac2 = &(wacom2->wacom_wac);
1187 if (wacom_wac2->input)
1188 input_unregister_device(wacom_wac2->input);
1189 wacom_wac2->input = NULL;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001190
1191 if (wacom_wac->pid == 0) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001192 dev_info(&wacom->intf->dev, "wireless tablet disconnected\n");
Chris Bagwell16bf2882012-03-25 23:26:20 -07001193 } else {
1194 const struct usb_device_id *id = wacom_ids;
1195
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001196 dev_info(&wacom->intf->dev,
1197 "wireless tablet connected with PID %x\n",
1198 wacom_wac->pid);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001199
1200 while (id->match_flags) {
1201 if (id->idVendor == USB_VENDOR_ID_WACOM &&
1202 id->idProduct == wacom_wac->pid)
1203 break;
1204 id++;
1205 }
1206
1207 if (!id->match_flags) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001208 dev_info(&wacom->intf->dev,
1209 "ignoring unknown PID.\n");
Chris Bagwell16bf2882012-03-25 23:26:20 -07001210 return;
1211 }
1212
1213 /* Stylus interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001214 wacom_wac1->features =
Chris Bagwell16bf2882012-03-25 23:26:20 -07001215 *((struct wacom_features *)id->driver_info);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001216 wacom_wac1->features.device_type = BTN_TOOL_PEN;
1217 error = wacom_register_input(wacom1);
1218 if (error)
1219 goto fail1;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001220
1221 /* Touch interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001222 wacom_wac2->features =
Chris Bagwell16bf2882012-03-25 23:26:20 -07001223 *((struct wacom_features *)id->driver_info);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001224 wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
1225 wacom_wac2->features.device_type = BTN_TOOL_FINGER;
1226 wacom_set_phy_from_res(&wacom_wac2->features);
1227 wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
1228 error = wacom_register_input(wacom2);
1229 if (error)
1230 goto fail2;
1231
1232 error = wacom_initialize_battery(wacom);
1233 if (error)
1234 goto fail3;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001235 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001236
1237 return;
1238
1239fail3:
1240 input_unregister_device(wacom_wac2->input);
1241 wacom_wac2->input = NULL;
1242fail2:
1243 input_unregister_device(wacom_wac1->input);
1244 wacom_wac1->input = NULL;
1245fail1:
1246 return;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001247}
1248
Ping Cheng3bea7332006-07-13 18:01:36 -07001249static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *id)
1250{
1251 struct usb_device *dev = interface_to_usbdev(intf);
1252 struct usb_endpoint_descriptor *endpoint;
1253 struct wacom *wacom;
1254 struct wacom_wac *wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -08001255 struct wacom_features *features;
Jason Childse33da8a2010-02-17 22:38:31 -08001256 int error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001257
Jason Childse33da8a2010-02-17 22:38:31 -08001258 if (!id->driver_info)
Bastian Blankb036f6f2010-02-10 23:06:23 -08001259 return -EINVAL;
1260
Ping Cheng3bea7332006-07-13 18:01:36 -07001261 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
Dan Carpenterf1823942012-03-29 22:38:11 -07001262 if (!wacom)
1263 return -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -07001264
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001265 wacom_wac = &wacom->wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -08001266 wacom_wac->features = *((struct wacom_features *)id->driver_info);
1267 features = &wacom_wac->features;
1268 if (features->pktlen > WACOM_PKGLEN_MAX) {
1269 error = -EINVAL;
Ping Cheng3bea7332006-07-13 18:01:36 -07001270 goto fail1;
Jason Childse33da8a2010-02-17 22:38:31 -08001271 }
1272
Daniel Mack997ea582010-04-12 13:17:25 +02001273 wacom_wac->data = usb_alloc_coherent(dev, WACOM_PKGLEN_MAX,
1274 GFP_KERNEL, &wacom->data_dma);
Jason Childse33da8a2010-02-17 22:38:31 -08001275 if (!wacom_wac->data) {
1276 error = -ENOMEM;
1277 goto fail1;
1278 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001279
1280 wacom->irq = usb_alloc_urb(0, GFP_KERNEL);
Jason Childse33da8a2010-02-17 22:38:31 -08001281 if (!wacom->irq) {
1282 error = -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -07001283 goto fail2;
Jason Childse33da8a2010-02-17 22:38:31 -08001284 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001285
1286 wacom->usbdev = dev;
Oliver Neukume7224092008-04-15 01:31:57 -04001287 wacom->intf = intf;
1288 mutex_init(&wacom->lock);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001289 INIT_WORK(&wacom->work, wacom_wireless_work);
Ping Cheng3bea7332006-07-13 18:01:36 -07001290 usb_make_path(dev, wacom->phys, sizeof(wacom->phys));
1291 strlcat(wacom->phys, "/input0", sizeof(wacom->phys));
1292
Ping Cheng545f4e92008-11-24 11:44:27 -05001293 endpoint = &intf->cur_altsetting->endpoint[0].desc;
1294
Ping Chengf393ee22012-04-29 21:09:17 -07001295 /* Retrieve the physical and logical size for touch devices */
Ping Chengec67bbe2009-12-15 00:35:24 -08001296 error = wacom_retrieve_hid_descriptor(intf, features);
1297 if (error)
Alexander Strakh4b6d4432011-02-11 00:44:41 -08001298 goto fail3;
Ping Cheng545f4e92008-11-24 11:44:27 -05001299
Jason Gereckeae584ca2012-04-03 15:50:40 -07001300 /*
1301 * Intuos5 has no useful data about its touch interface in its
1302 * HID descriptor. If this is the touch interface (wMaxPacketSize
1303 * of WACOM_PKGLEN_BBTOUCH3), override the table values.
1304 */
1305 if (features->type >= INTUOS5S && features->type <= INTUOS5L) {
1306 if (endpoint->wMaxPacketSize == WACOM_PKGLEN_BBTOUCH3) {
1307 features->device_type = BTN_TOOL_FINGER;
1308 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
1309
Jason Gerecke32edbf562012-06-12 00:28:37 -07001310 wacom_set_phy_from_res(features);
Jason Gereckeae584ca2012-04-03 15:50:40 -07001311
1312 features->x_max = 4096;
1313 features->y_max = 4096;
1314 } else {
1315 features->device_type = BTN_TOOL_PEN;
1316 }
1317 }
1318
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001319 wacom_setup_device_quirks(features);
1320
Ping Cheng49b764a2010-02-20 00:53:49 -08001321 strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
1322
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001323 if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
Jason Gereckeaea2bf62012-10-21 00:38:03 -07001324 struct usb_device *other_dev;
1325
Ping Cheng49b764a2010-02-20 00:53:49 -08001326 /* Append the device type to the name */
1327 strlcat(wacom_wac->name,
1328 features->device_type == BTN_TOOL_PEN ?
1329 " Pen" : " Finger",
1330 sizeof(wacom_wac->name));
Ping Cheng4492eff2010-03-19 22:18:15 -07001331
Jason Gereckeaea2bf62012-10-21 00:38:03 -07001332
1333 other_dev = wacom_get_sibling(dev, features->oVid, features->oPid);
1334 if (other_dev == NULL || wacom_get_usbdev_data(other_dev) == NULL)
1335 other_dev = dev;
1336 error = wacom_add_shared_data(wacom_wac, other_dev);
Ping Cheng4492eff2010-03-19 22:18:15 -07001337 if (error)
1338 goto fail3;
Ping Cheng49b764a2010-02-20 00:53:49 -08001339 }
1340
Ping Cheng3bea7332006-07-13 18:01:36 -07001341 usb_fill_int_urb(wacom->irq, dev,
1342 usb_rcvintpipe(dev, endpoint->bEndpointAddress),
Ping Chengec67bbe2009-12-15 00:35:24 -08001343 wacom_wac->data, features->pktlen,
Ping Cheng8d32e3a2006-09-26 13:34:47 -07001344 wacom_sys_irq, wacom, endpoint->bInterval);
Ping Cheng3bea7332006-07-13 18:01:36 -07001345 wacom->irq->transfer_dma = wacom->data_dma;
1346 wacom->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1347
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001348 error = wacom_initialize_leds(wacom);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001349 if (error)
Ping Cheng4492eff2010-03-19 22:18:15 -07001350 goto fail4;
Ping Cheng3bea7332006-07-13 18:01:36 -07001351
Chris Bagwelld3825d52012-03-25 23:26:11 -07001352 if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
1353 error = wacom_register_input(wacom);
1354 if (error)
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001355 goto fail5;
Chris Bagwelld3825d52012-03-25 23:26:11 -07001356 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001357
Ping Chengec67bbe2009-12-15 00:35:24 -08001358 /* Note that if query fails it is not a hard failure */
1359 wacom_query_tablet_data(intf, features);
Ping Cheng3bea7332006-07-13 18:01:36 -07001360
1361 usb_set_intfdata(intf, wacom);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001362
1363 if (features->quirks & WACOM_QUIRK_MONITOR) {
1364 if (usb_submit_urb(wacom->irq, GFP_KERNEL))
1365 goto fail5;
1366 }
1367
Ping Cheng3bea7332006-07-13 18:01:36 -07001368 return 0;
1369
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001370 fail5: wacom_destroy_leds(wacom);
Ping Cheng4492eff2010-03-19 22:18:15 -07001371 fail4: wacom_remove_shared_data(wacom_wac);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001372 fail3: usb_free_urb(wacom->irq);
Daniel Mack997ea582010-04-12 13:17:25 +02001373 fail2: usb_free_coherent(dev, WACOM_PKGLEN_MAX, wacom_wac->data, wacom->data_dma);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001374 fail1: kfree(wacom);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001375 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001376}
1377
1378static void wacom_disconnect(struct usb_interface *intf)
1379{
Oliver Neukume7224092008-04-15 01:31:57 -04001380 struct wacom *wacom = usb_get_intfdata(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -07001381
1382 usb_set_intfdata(intf, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04001383
1384 usb_kill_urb(wacom->irq);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001385 cancel_work_sync(&wacom->work);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001386 if (wacom->wacom_wac.input)
1387 input_unregister_device(wacom->wacom_wac.input);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001388 wacom_destroy_battery(wacom);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001389 wacom_destroy_leds(wacom);
Oliver Neukume7224092008-04-15 01:31:57 -04001390 usb_free_urb(wacom->irq);
Daniel Mack997ea582010-04-12 13:17:25 +02001391 usb_free_coherent(interface_to_usbdev(intf), WACOM_PKGLEN_MAX,
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001392 wacom->wacom_wac.data, wacom->data_dma);
1393 wacom_remove_shared_data(&wacom->wacom_wac);
Oliver Neukume7224092008-04-15 01:31:57 -04001394 kfree(wacom);
1395}
1396
1397static int wacom_suspend(struct usb_interface *intf, pm_message_t message)
1398{
1399 struct wacom *wacom = usb_get_intfdata(intf);
1400
1401 mutex_lock(&wacom->lock);
1402 usb_kill_urb(wacom->irq);
1403 mutex_unlock(&wacom->lock);
1404
1405 return 0;
1406}
1407
1408static int wacom_resume(struct usb_interface *intf)
1409{
1410 struct wacom *wacom = usb_get_intfdata(intf);
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001411 struct wacom_features *features = &wacom->wacom_wac.features;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001412 int rv = 0;
Oliver Neukume7224092008-04-15 01:31:57 -04001413
1414 mutex_lock(&wacom->lock);
Ping Cheng38101472010-04-13 23:07:52 -07001415
1416 /* switch to wacom mode first */
1417 wacom_query_tablet_data(intf, features);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001418 wacom_led_control(wacom);
Ping Cheng38101472010-04-13 23:07:52 -07001419
Chris Bagwelld3825d52012-03-25 23:26:11 -07001420 if ((wacom->open || features->quirks & WACOM_QUIRK_MONITOR)
1421 && usb_submit_urb(wacom->irq, GFP_NOIO) < 0)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001422 rv = -EIO;
Ping Cheng38101472010-04-13 23:07:52 -07001423
Oliver Neukume7224092008-04-15 01:31:57 -04001424 mutex_unlock(&wacom->lock);
1425
1426 return rv;
1427}
1428
1429static int wacom_reset_resume(struct usb_interface *intf)
1430{
1431 return wacom_resume(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -07001432}
1433
1434static struct usb_driver wacom_driver = {
1435 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08001436 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07001437 .probe = wacom_probe,
1438 .disconnect = wacom_disconnect,
Oliver Neukume7224092008-04-15 01:31:57 -04001439 .suspend = wacom_suspend,
1440 .resume = wacom_resume,
1441 .reset_resume = wacom_reset_resume,
1442 .supports_autosuspend = 1,
Ping Cheng3bea7332006-07-13 18:01:36 -07001443};
1444
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001445module_usb_driver(wacom_driver);