blob: b44bba2a60c24b8ef1be5c2d9d82057cd55bd8dc [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 Chengec67bbe2009-12-15 00:35:24 -0800389 if (features->type == TABLETPC2FG) {
390 /* need to reset back */
391 features->pktlen = WACOM_PKGLEN_TPC2FG;
Ping Chengec67bbe2009-12-15 00:35:24 -0800392 }
Ping Cheng19635182012-04-29 21:09:18 -0700393
394 if (features->type == MTSCREEN)
395 features->pktlen = WACOM_PKGLEN_MTOUCH;
396
Ping Cheng4a880812010-09-05 12:25:40 -0700397 if (features->type == BAMBOO_PT) {
398 /* need to reset back */
399 features->pktlen = WACOM_PKGLEN_BBTOUCH;
Ping Cheng4a880812010-09-05 12:25:40 -0700400 features->x_phy =
401 get_unaligned_le16(&report[i + 5]);
402 features->x_max =
403 get_unaligned_le16(&report[i + 8]);
404 i += 15;
405 } else {
406 features->x_max =
407 get_unaligned_le16(&report[i + 3]);
408 features->x_phy =
409 get_unaligned_le16(&report[i + 6]);
410 features->unit = report[i + 9];
411 features->unitExpo = report[i + 11];
412 i += 12;
413 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500414 } else if (pen) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800415 /* penabled only accepts exact bytes of data */
416 if (features->type == TABLETPC2FG)
Ping Cheng57e413d2010-03-01 23:50:24 -0800417 features->pktlen = WACOM_PKGLEN_GRAPHIRE;
Ping Chengec67bbe2009-12-15 00:35:24 -0800418 features->device_type = BTN_TOOL_PEN;
Ping Cheng545f4e92008-11-24 11:44:27 -0500419 features->x_max =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700420 get_unaligned_le16(&report[i + 3]);
Ping Cheng545f4e92008-11-24 11:44:27 -0500421 i += 4;
422 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500423 }
424 break;
425
426 case HID_USAGE_Y:
Ping Chengec67bbe2009-12-15 00:35:24 -0800427 if (usage == WCM_DESKTOP) {
428 if (finger) {
Ping Cheng19635182012-04-29 21:09:18 -0700429 int type = features->type;
430
431 if (type == TABLETPC2FG || type == MTSCREEN) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800432 features->y_max =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700433 get_unaligned_le16(&report[i + 3]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800434 features->y_phy =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700435 get_unaligned_le16(&report[i + 6]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800436 i += 7;
Ping Cheng19635182012-04-29 21:09:18 -0700437 } else if (type == BAMBOO_PT) {
Ping Cheng4a880812010-09-05 12:25:40 -0700438 features->y_phy =
439 get_unaligned_le16(&report[i + 3]);
440 features->y_max =
441 get_unaligned_le16(&report[i + 6]);
442 i += 12;
Ping Chengec67bbe2009-12-15 00:35:24 -0800443 } else {
444 features->y_max =
445 features->x_max;
446 features->y_phy =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700447 get_unaligned_le16(&report[i + 3]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800448 i += 4;
449 }
450 } else if (pen) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800451 features->y_max =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700452 get_unaligned_le16(&report[i + 3]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800453 i += 4;
454 }
455 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500456 break;
457
458 case HID_USAGE_FINGER:
459 finger = 1;
460 i++;
461 break;
462
Chris Bagwell428f8582011-10-26 22:26:59 -0700463 /*
464 * Requiring Stylus Usage will ignore boot mouse
465 * X/Y values and some cases of invalid Digitizer X/Y
466 * values commonly reported.
467 */
Ping Cheng545f4e92008-11-24 11:44:27 -0500468 case HID_USAGE_STYLUS:
469 pen = 1;
470 i++;
471 break;
Ping Chengf393ee22012-04-29 21:09:17 -0700472
473 case HID_USAGE_CONTACTMAX:
Ping Cheng1cecc5c2012-06-28 16:47:30 -0700474 /* leave touch_max as is if predefined */
475 if (!features->touch_max)
476 wacom_retrieve_report_data(intf, features);
Ping Chengf393ee22012-04-29 21:09:17 -0700477 i++;
478 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500479 }
480 break;
481
Chris Bagwell41343612011-10-26 22:32:52 -0700482 case HID_COLLECTION_END:
Ping Chengec67bbe2009-12-15 00:35:24 -0800483 /* reset UsagePage and Finger */
Ping Cheng545f4e92008-11-24 11:44:27 -0500484 finger = usage = 0;
485 break;
Chris Bagwell41343612011-10-26 22:32:52 -0700486
487 case HID_COLLECTION:
488 i++;
489 switch (report[i]) {
490 case HID_COLLECTION_LOGICAL:
491 i += wacom_parse_logical_collection(&report[i],
492 features);
493 break;
494 }
495 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500496 }
497 }
498
Ping Cheng545f4e92008-11-24 11:44:27 -0500499 out:
Ping Cheng384318e2009-04-28 07:49:54 -0700500 result = 0;
Ping Cheng545f4e92008-11-24 11:44:27 -0500501 kfree(report);
502 return result;
503}
504
Ping Chengec67bbe2009-12-15 00:35:24 -0800505static int wacom_query_tablet_data(struct usb_interface *intf, struct wacom_features *features)
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700506{
507 unsigned char *rep_data;
Ping Chengec67bbe2009-12-15 00:35:24 -0800508 int limit = 0, report_id = 2;
509 int error = -ENOMEM;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700510
Ping Cheng3b48c912011-08-16 00:17:57 -0700511 rep_data = kmalloc(4, GFP_KERNEL);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700512 if (!rep_data)
Ping Chengec67bbe2009-12-15 00:35:24 -0800513 return error;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700514
Ping Cheng19635182012-04-29 21:09:18 -0700515 /* ask to report Wacom data */
516 if (features->device_type == BTN_TOOL_FINGER) {
517 /* if it is an MT Tablet PC touch */
Ping Chengea2e6022012-06-12 00:14:12 -0700518 if (features->type > TABLETPC) {
Ping Cheng19635182012-04-29 21:09:18 -0700519 do {
520 rep_data[0] = 3;
521 rep_data[1] = 4;
522 rep_data[2] = 0;
523 rep_data[3] = 0;
524 report_id = 3;
525 error = wacom_set_report(intf,
526 WAC_HID_FEATURE_REPORT,
527 report_id,
528 rep_data, 4, 1);
529 if (error >= 0)
530 error = wacom_get_report(intf,
531 WAC_HID_FEATURE_REPORT,
532 report_id,
533 rep_data, 4, 1);
534 } while ((error < 0 || rep_data[1] != 4) &&
535 limit++ < WAC_MSG_RETRIES);
536 }
Ping Chengea2e6022012-06-12 00:14:12 -0700537 } else if (features->type <= BAMBOO_PT &&
Chris Bagwelld3825d52012-03-25 23:26:11 -0700538 features->type != WIRELESS &&
Chris Bagwell6e8ec532011-10-26 22:24:22 -0700539 features->device_type == BTN_TOOL_PEN) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800540 do {
541 rep_data[0] = 2;
542 rep_data[1] = 2;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700543 error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT,
544 report_id, rep_data, 2, 1);
Ping Chengec67bbe2009-12-15 00:35:24 -0800545 if (error >= 0)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700546 error = wacom_get_report(intf,
547 WAC_HID_FEATURE_REPORT,
548 report_id, rep_data, 2, 1);
Ping Chenga417ea42011-08-16 00:17:56 -0700549 } while ((error < 0 || rep_data[1] != 2) && limit++ < WAC_MSG_RETRIES);
Ping Chengec67bbe2009-12-15 00:35:24 -0800550 }
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700551
552 kfree(rep_data);
553
554 return error < 0 ? error : 0;
555}
556
Ping Chengec67bbe2009-12-15 00:35:24 -0800557static int wacom_retrieve_hid_descriptor(struct usb_interface *intf,
Ping Cheng19635182012-04-29 21:09:18 -0700558 struct wacom_features *features)
Ping Chengec67bbe2009-12-15 00:35:24 -0800559{
560 int error = 0;
561 struct usb_host_interface *interface = intf->cur_altsetting;
562 struct hid_descriptor *hid_desc;
563
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700564 /* default features */
Ping Chengec67bbe2009-12-15 00:35:24 -0800565 features->device_type = BTN_TOOL_PEN;
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700566 features->x_fuzz = 4;
567 features->y_fuzz = 4;
568 features->pressure_fuzz = 0;
569 features->distance_fuzz = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800570
Chris Bagwelld3825d52012-03-25 23:26:11 -0700571 /*
572 * The wireless device HID is basic and layout conflicts with
573 * other tablets (monitor and touch interface can look like pen).
574 * Skip the query for this type and modify defaults based on
575 * interface number.
576 */
577 if (features->type == WIRELESS) {
578 if (intf->cur_altsetting->desc.bInterfaceNumber == 0) {
579 features->device_type = 0;
580 } else if (intf->cur_altsetting->desc.bInterfaceNumber == 2) {
Ping Chengadad0042012-06-28 16:48:17 -0700581 features->device_type = BTN_TOOL_FINGER;
Chris Bagwelld3825d52012-03-25 23:26:11 -0700582 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
583 }
584 }
585
Ping Cheng19635182012-04-29 21:09:18 -0700586 /* only devices that support touch need to retrieve the info */
Ping Chengea2e6022012-06-12 00:14:12 -0700587 if (features->type < BAMBOO_PT) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800588 goto out;
Ping Cheng19635182012-04-29 21:09:18 -0700589 }
Ping Chengec67bbe2009-12-15 00:35:24 -0800590
Dmitry Torokhova882c932012-05-02 00:13:38 -0700591 error = usb_get_extra_descriptor(interface, HID_DEVICET_HID, &hid_desc);
592 if (error) {
593 error = usb_get_extra_descriptor(&interface->endpoint[0],
594 HID_DEVICET_REPORT, &hid_desc);
595 if (error) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -0700596 dev_err(&intf->dev,
597 "can not retrieve extra class descriptor\n");
Ping Chengec67bbe2009-12-15 00:35:24 -0800598 goto out;
599 }
600 }
601 error = wacom_parse_hid(intf, hid_desc, features);
602 if (error)
603 goto out;
Jason Gerecke115d5e12012-10-03 17:24:32 -0700604 wacom_fix_phy_from_hid(features);
Ping Chengec67bbe2009-12-15 00:35:24 -0800605
Ping Chengec67bbe2009-12-15 00:35:24 -0800606 out:
607 return error;
608}
609
Ping Cheng4492eff2010-03-19 22:18:15 -0700610struct wacom_usbdev_data {
611 struct list_head list;
612 struct kref kref;
613 struct usb_device *dev;
614 struct wacom_shared shared;
615};
616
617static LIST_HEAD(wacom_udev_list);
618static DEFINE_MUTEX(wacom_udev_list_lock);
619
620static struct wacom_usbdev_data *wacom_get_usbdev_data(struct usb_device *dev)
621{
622 struct wacom_usbdev_data *data;
623
624 list_for_each_entry(data, &wacom_udev_list, list) {
625 if (data->dev == dev) {
626 kref_get(&data->kref);
627 return data;
628 }
629 }
630
631 return NULL;
632}
633
634static int wacom_add_shared_data(struct wacom_wac *wacom,
635 struct usb_device *dev)
636{
637 struct wacom_usbdev_data *data;
638 int retval = 0;
639
640 mutex_lock(&wacom_udev_list_lock);
641
642 data = wacom_get_usbdev_data(dev);
643 if (!data) {
644 data = kzalloc(sizeof(struct wacom_usbdev_data), GFP_KERNEL);
645 if (!data) {
646 retval = -ENOMEM;
647 goto out;
648 }
649
650 kref_init(&data->kref);
651 data->dev = dev;
652 list_add_tail(&data->list, &wacom_udev_list);
653 }
654
655 wacom->shared = &data->shared;
656
657out:
658 mutex_unlock(&wacom_udev_list_lock);
659 return retval;
660}
661
662static void wacom_release_shared_data(struct kref *kref)
663{
664 struct wacom_usbdev_data *data =
665 container_of(kref, struct wacom_usbdev_data, kref);
666
667 mutex_lock(&wacom_udev_list_lock);
668 list_del(&data->list);
669 mutex_unlock(&wacom_udev_list_lock);
670
671 kfree(data);
672}
673
674static void wacom_remove_shared_data(struct wacom_wac *wacom)
675{
676 struct wacom_usbdev_data *data;
677
678 if (wacom->shared) {
679 data = container_of(wacom->shared, struct wacom_usbdev_data, shared);
680 kref_put(&data->kref, wacom_release_shared_data);
681 wacom->shared = NULL;
682 }
683}
684
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700685static int wacom_led_control(struct wacom *wacom)
686{
687 unsigned char *buf;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700688 int retval;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700689
690 buf = kzalloc(9, GFP_KERNEL);
691 if (!buf)
692 return -ENOMEM;
693
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700694 if (wacom->wacom_wac.features.type >= INTUOS5S &&
695 wacom->wacom_wac.features.type <= INTUOS5L) {
696 /*
697 * Touch Ring and crop mark LED luminance may take on
698 * one of four values:
699 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
700 */
701 int ring_led = wacom->led.select[0] & 0x03;
702 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
703 int crop_lum = 0;
Ping Cheng09e7d942011-10-04 23:51:14 -0700704
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700705 buf[0] = WAC_CMD_LED_CONTROL;
706 buf[1] = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
707 }
708 else {
709 int led = wacom->led.select[0] | 0x4;
Ping Cheng09e7d942011-10-04 23:51:14 -0700710
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700711 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
712 wacom->wacom_wac.features.type == WACOM_24HD)
713 led |= (wacom->led.select[1] << 4) | 0x40;
714
715 buf[0] = WAC_CMD_LED_CONTROL;
716 buf[1] = led;
717 buf[2] = wacom->led.llv;
718 buf[3] = wacom->led.hlv;
719 buf[4] = wacom->led.img_lum;
720 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700721
722 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_LED_CONTROL,
723 buf, 9, WAC_CMD_RETRIES);
724 kfree(buf);
725
726 return retval;
727}
728
729static int wacom_led_putimage(struct wacom *wacom, int button_id, const void *img)
730{
731 unsigned char *buf;
732 int i, retval;
733
734 buf = kzalloc(259, GFP_KERNEL);
735 if (!buf)
736 return -ENOMEM;
737
738 /* Send 'start' command */
739 buf[0] = WAC_CMD_ICON_START;
740 buf[1] = 1;
741 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START,
742 buf, 2, WAC_CMD_RETRIES);
743 if (retval < 0)
744 goto out;
745
746 buf[0] = WAC_CMD_ICON_XFER;
747 buf[1] = button_id & 0x07;
748 for (i = 0; i < 4; i++) {
749 buf[2] = i;
750 memcpy(buf + 3, img + i * 256, 256);
751
752 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_XFER,
753 buf, 259, WAC_CMD_RETRIES);
754 if (retval < 0)
755 break;
756 }
757
758 /* Send 'stop' */
759 buf[0] = WAC_CMD_ICON_START;
760 buf[1] = 0;
761 wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START,
762 buf, 2, WAC_CMD_RETRIES);
763
764out:
765 kfree(buf);
766 return retval;
767}
768
Ping Cheng09e7d942011-10-04 23:51:14 -0700769static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700770 const char *buf, size_t count)
771{
772 struct wacom *wacom = dev_get_drvdata(dev);
773 unsigned int id;
774 int err;
775
776 err = kstrtouint(buf, 10, &id);
777 if (err)
778 return err;
779
780 mutex_lock(&wacom->lock);
781
Ping Cheng09e7d942011-10-04 23:51:14 -0700782 wacom->led.select[set_id] = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700783 err = wacom_led_control(wacom);
784
785 mutex_unlock(&wacom->lock);
786
787 return err < 0 ? err : count;
788}
789
Ping Cheng09e7d942011-10-04 23:51:14 -0700790#define DEVICE_LED_SELECT_ATTR(SET_ID) \
791static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
792 struct device_attribute *attr, const char *buf, size_t count) \
793{ \
794 return wacom_led_select_store(dev, SET_ID, buf, count); \
795} \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700796static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
797 struct device_attribute *attr, char *buf) \
798{ \
799 struct wacom *wacom = dev_get_drvdata(dev); \
800 return snprintf(buf, 2, "%d\n", wacom->led.select[SET_ID]); \
801} \
802static DEVICE_ATTR(status_led##SET_ID##_select, S_IWUSR | S_IRUSR, \
803 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -0700804 wacom_led##SET_ID##_select_store)
805
806DEVICE_LED_SELECT_ATTR(0);
807DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700808
809static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
810 const char *buf, size_t count)
811{
812 unsigned int value;
813 int err;
814
815 err = kstrtouint(buf, 10, &value);
816 if (err)
817 return err;
818
819 mutex_lock(&wacom->lock);
820
821 *dest = value & 0x7f;
822 err = wacom_led_control(wacom);
823
824 mutex_unlock(&wacom->lock);
825
826 return err < 0 ? err : count;
827}
828
829#define DEVICE_LUMINANCE_ATTR(name, field) \
830static ssize_t wacom_##name##_luminance_store(struct device *dev, \
831 struct device_attribute *attr, const char *buf, size_t count) \
832{ \
833 struct wacom *wacom = dev_get_drvdata(dev); \
834 \
835 return wacom_luminance_store(wacom, &wacom->led.field, \
836 buf, count); \
837} \
838static DEVICE_ATTR(name##_luminance, S_IWUSR, \
839 NULL, wacom_##name##_luminance_store)
840
841DEVICE_LUMINANCE_ATTR(status0, llv);
842DEVICE_LUMINANCE_ATTR(status1, hlv);
843DEVICE_LUMINANCE_ATTR(buttons, img_lum);
844
845static ssize_t wacom_button_image_store(struct device *dev, int button_id,
846 const char *buf, size_t count)
847{
848 struct wacom *wacom = dev_get_drvdata(dev);
849 int err;
850
851 if (count != 1024)
852 return -EINVAL;
853
854 mutex_lock(&wacom->lock);
855
856 err = wacom_led_putimage(wacom, button_id, buf);
857
858 mutex_unlock(&wacom->lock);
859
860 return err < 0 ? err : count;
861}
862
863#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
864static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
865 struct device_attribute *attr, const char *buf, size_t count) \
866{ \
867 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
868} \
869static DEVICE_ATTR(button##BUTTON_ID##_rawimg, S_IWUSR, \
870 NULL, wacom_btnimg##BUTTON_ID##_store)
871
872DEVICE_BTNIMG_ATTR(0);
873DEVICE_BTNIMG_ATTR(1);
874DEVICE_BTNIMG_ATTR(2);
875DEVICE_BTNIMG_ATTR(3);
876DEVICE_BTNIMG_ATTR(4);
877DEVICE_BTNIMG_ATTR(5);
878DEVICE_BTNIMG_ATTR(6);
879DEVICE_BTNIMG_ATTR(7);
880
Ping Cheng09e7d942011-10-04 23:51:14 -0700881static struct attribute *cintiq_led_attrs[] = {
882 &dev_attr_status_led0_select.attr,
883 &dev_attr_status_led1_select.attr,
884 NULL
885};
886
887static struct attribute_group cintiq_led_attr_group = {
888 .name = "wacom_led",
889 .attrs = cintiq_led_attrs,
890};
891
892static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700893 &dev_attr_status0_luminance.attr,
894 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -0700895 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700896 &dev_attr_buttons_luminance.attr,
897 &dev_attr_button0_rawimg.attr,
898 &dev_attr_button1_rawimg.attr,
899 &dev_attr_button2_rawimg.attr,
900 &dev_attr_button3_rawimg.attr,
901 &dev_attr_button4_rawimg.attr,
902 &dev_attr_button5_rawimg.attr,
903 &dev_attr_button6_rawimg.attr,
904 &dev_attr_button7_rawimg.attr,
905 NULL
906};
907
Ping Cheng09e7d942011-10-04 23:51:14 -0700908static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700909 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -0700910 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700911};
912
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700913static struct attribute *intuos5_led_attrs[] = {
914 &dev_attr_status0_luminance.attr,
915 &dev_attr_status_led0_select.attr,
916 NULL
917};
918
919static struct attribute_group intuos5_led_attr_group = {
920 .name = "wacom_led",
921 .attrs = intuos5_led_attrs,
922};
923
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700924static int wacom_initialize_leds(struct wacom *wacom)
925{
926 int error;
927
Ping Cheng09e7d942011-10-04 23:51:14 -0700928 /* Initialize default values */
929 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700930 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700931 case INTUOS4:
932 case INTUOS4L:
933 wacom->led.select[0] = 0;
934 wacom->led.select[1] = 0;
Ping Chengf4fa9a62011-10-04 23:49:42 -0700935 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700936 wacom->led.hlv = 20;
937 wacom->led.img_lum = 10;
Ping Cheng09e7d942011-10-04 23:51:14 -0700938 error = sysfs_create_group(&wacom->intf->dev.kobj,
939 &intuos4_led_attr_group);
940 break;
941
Jason Gerecke246835f2011-12-12 00:12:04 -0800942 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700943 case WACOM_21UX2:
944 wacom->led.select[0] = 0;
945 wacom->led.select[1] = 0;
946 wacom->led.llv = 0;
947 wacom->led.hlv = 0;
948 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700949
950 error = sysfs_create_group(&wacom->intf->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700951 &cintiq_led_attr_group);
952 break;
953
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700954 case INTUOS5S:
955 case INTUOS5:
956 case INTUOS5L:
957 wacom->led.select[0] = 0;
958 wacom->led.select[1] = 0;
959 wacom->led.llv = 32;
960 wacom->led.hlv = 0;
961 wacom->led.img_lum = 0;
962
963 error = sysfs_create_group(&wacom->intf->dev.kobj,
964 &intuos5_led_attr_group);
965 break;
966
Ping Cheng09e7d942011-10-04 23:51:14 -0700967 default:
968 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700969 }
970
Ping Cheng09e7d942011-10-04 23:51:14 -0700971 if (error) {
972 dev_err(&wacom->intf->dev,
973 "cannot create sysfs group err: %d\n", error);
974 return error;
975 }
976 wacom_led_control(wacom);
977
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700978 return 0;
979}
980
981static void wacom_destroy_leds(struct wacom *wacom)
982{
Ping Cheng09e7d942011-10-04 23:51:14 -0700983 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700984 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700985 case INTUOS4:
986 case INTUOS4L:
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700987 sysfs_remove_group(&wacom->intf->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700988 &intuos4_led_attr_group);
989 break;
990
Jason Gerecke246835f2011-12-12 00:12:04 -0800991 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700992 case WACOM_21UX2:
993 sysfs_remove_group(&wacom->intf->dev.kobj,
994 &cintiq_led_attr_group);
995 break;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700996
997 case INTUOS5S:
998 case INTUOS5:
999 case INTUOS5L:
1000 sysfs_remove_group(&wacom->intf->dev.kobj,
1001 &intuos5_led_attr_group);
1002 break;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001003 }
1004}
1005
Chris Bagwella1d552c2012-03-25 23:26:30 -07001006static enum power_supply_property wacom_battery_props[] = {
1007 POWER_SUPPLY_PROP_CAPACITY
1008};
1009
1010static int wacom_battery_get_property(struct power_supply *psy,
1011 enum power_supply_property psp,
1012 union power_supply_propval *val)
1013{
1014 struct wacom *wacom = container_of(psy, struct wacom, battery);
1015 int ret = 0;
1016
1017 switch (psp) {
1018 case POWER_SUPPLY_PROP_CAPACITY:
1019 val->intval =
1020 wacom->wacom_wac.battery_capacity * 100 / 31;
1021 break;
1022 default:
1023 ret = -EINVAL;
1024 break;
1025 }
1026
1027 return ret;
1028}
1029
1030static int wacom_initialize_battery(struct wacom *wacom)
1031{
1032 int error = 0;
1033
1034 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_MONITOR) {
1035 wacom->battery.properties = wacom_battery_props;
1036 wacom->battery.num_properties = ARRAY_SIZE(wacom_battery_props);
1037 wacom->battery.get_property = wacom_battery_get_property;
1038 wacom->battery.name = "wacom_battery";
1039 wacom->battery.type = POWER_SUPPLY_TYPE_BATTERY;
1040 wacom->battery.use_for_apm = 0;
1041
1042 error = power_supply_register(&wacom->usbdev->dev,
1043 &wacom->battery);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001044
1045 if (!error)
1046 power_supply_powers(&wacom->battery,
1047 &wacom->usbdev->dev);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001048 }
1049
1050 return error;
1051}
1052
1053static void wacom_destroy_battery(struct wacom *wacom)
1054{
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001055 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_MONITOR &&
1056 wacom->battery.dev) {
Chris Bagwella1d552c2012-03-25 23:26:30 -07001057 power_supply_unregister(&wacom->battery);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001058 wacom->battery.dev = NULL;
1059 }
Chris Bagwella1d552c2012-03-25 23:26:30 -07001060}
1061
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001062static int wacom_register_input(struct wacom *wacom)
1063{
1064 struct input_dev *input_dev;
1065 struct usb_interface *intf = wacom->intf;
1066 struct usb_device *dev = interface_to_usbdev(intf);
1067 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1068 int error;
1069
1070 input_dev = input_allocate_device();
Ping Cheng19635182012-04-29 21:09:18 -07001071 if (!input_dev) {
1072 error = -ENOMEM;
1073 goto fail1;
1074 }
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001075
1076 input_dev->name = wacom_wac->name;
1077 input_dev->dev.parent = &intf->dev;
1078 input_dev->open = wacom_open;
1079 input_dev->close = wacom_close;
1080 usb_to_input_id(dev, &input_dev->id);
1081 input_set_drvdata(input_dev, wacom);
1082
1083 wacom_wac->input = input_dev;
Ping Cheng19635182012-04-29 21:09:18 -07001084 error = wacom_setup_input_capabilities(input_dev, wacom_wac);
1085 if (error)
1086 goto fail1;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001087
1088 error = input_register_device(input_dev);
Ping Cheng19635182012-04-29 21:09:18 -07001089 if (error)
1090 goto fail2;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001091
Ping Cheng19635182012-04-29 21:09:18 -07001092 return 0;
1093
1094fail2:
1095 input_free_device(input_dev);
1096 wacom_wac->input = NULL;
1097fail1:
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001098 return error;
1099}
1100
Chris Bagwell16bf2882012-03-25 23:26:20 -07001101static void wacom_wireless_work(struct work_struct *work)
1102{
1103 struct wacom *wacom = container_of(work, struct wacom, work);
1104 struct usb_device *usbdev = wacom->usbdev;
1105 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001106 struct wacom *wacom1, *wacom2;
1107 struct wacom_wac *wacom_wac1, *wacom_wac2;
1108 int error;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001109
1110 /*
1111 * Regardless if this is a disconnect or a new tablet,
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001112 * remove any existing input and battery devices.
Chris Bagwell16bf2882012-03-25 23:26:20 -07001113 */
1114
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001115 wacom_destroy_battery(wacom);
1116
Chris Bagwell16bf2882012-03-25 23:26:20 -07001117 /* Stylus interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001118 wacom1 = usb_get_intfdata(usbdev->config->interface[1]);
1119 wacom_wac1 = &(wacom1->wacom_wac);
1120 if (wacom_wac1->input)
1121 input_unregister_device(wacom_wac1->input);
1122 wacom_wac1->input = NULL;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001123
1124 /* Touch interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001125 wacom2 = usb_get_intfdata(usbdev->config->interface[2]);
1126 wacom_wac2 = &(wacom2->wacom_wac);
1127 if (wacom_wac2->input)
1128 input_unregister_device(wacom_wac2->input);
1129 wacom_wac2->input = NULL;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001130
1131 if (wacom_wac->pid == 0) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001132 dev_info(&wacom->intf->dev, "wireless tablet disconnected\n");
Chris Bagwell16bf2882012-03-25 23:26:20 -07001133 } else {
1134 const struct usb_device_id *id = wacom_ids;
1135
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001136 dev_info(&wacom->intf->dev,
1137 "wireless tablet connected with PID %x\n",
1138 wacom_wac->pid);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001139
1140 while (id->match_flags) {
1141 if (id->idVendor == USB_VENDOR_ID_WACOM &&
1142 id->idProduct == wacom_wac->pid)
1143 break;
1144 id++;
1145 }
1146
1147 if (!id->match_flags) {
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001148 dev_info(&wacom->intf->dev,
1149 "ignoring unknown PID.\n");
Chris Bagwell16bf2882012-03-25 23:26:20 -07001150 return;
1151 }
1152
1153 /* Stylus interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001154 wacom_wac1->features =
Chris Bagwell16bf2882012-03-25 23:26:20 -07001155 *((struct wacom_features *)id->driver_info);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001156 wacom_wac1->features.device_type = BTN_TOOL_PEN;
1157 error = wacom_register_input(wacom1);
1158 if (error)
1159 goto fail1;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001160
1161 /* Touch interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001162 wacom_wac2->features =
Chris Bagwell16bf2882012-03-25 23:26:20 -07001163 *((struct wacom_features *)id->driver_info);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001164 wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
1165 wacom_wac2->features.device_type = BTN_TOOL_FINGER;
1166 wacom_set_phy_from_res(&wacom_wac2->features);
1167 wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
1168 error = wacom_register_input(wacom2);
1169 if (error)
1170 goto fail2;
1171
1172 error = wacom_initialize_battery(wacom);
1173 if (error)
1174 goto fail3;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001175 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001176
1177 return;
1178
1179fail3:
1180 input_unregister_device(wacom_wac2->input);
1181 wacom_wac2->input = NULL;
1182fail2:
1183 input_unregister_device(wacom_wac1->input);
1184 wacom_wac1->input = NULL;
1185fail1:
1186 return;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001187}
1188
Ping Cheng3bea7332006-07-13 18:01:36 -07001189static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *id)
1190{
1191 struct usb_device *dev = interface_to_usbdev(intf);
1192 struct usb_endpoint_descriptor *endpoint;
1193 struct wacom *wacom;
1194 struct wacom_wac *wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -08001195 struct wacom_features *features;
Jason Childse33da8a2010-02-17 22:38:31 -08001196 int error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001197
Jason Childse33da8a2010-02-17 22:38:31 -08001198 if (!id->driver_info)
Bastian Blankb036f6f2010-02-10 23:06:23 -08001199 return -EINVAL;
1200
Ping Cheng3bea7332006-07-13 18:01:36 -07001201 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
Dan Carpenterf1823942012-03-29 22:38:11 -07001202 if (!wacom)
1203 return -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -07001204
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001205 wacom_wac = &wacom->wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -08001206 wacom_wac->features = *((struct wacom_features *)id->driver_info);
1207 features = &wacom_wac->features;
1208 if (features->pktlen > WACOM_PKGLEN_MAX) {
1209 error = -EINVAL;
Ping Cheng3bea7332006-07-13 18:01:36 -07001210 goto fail1;
Jason Childse33da8a2010-02-17 22:38:31 -08001211 }
1212
Daniel Mack997ea582010-04-12 13:17:25 +02001213 wacom_wac->data = usb_alloc_coherent(dev, WACOM_PKGLEN_MAX,
1214 GFP_KERNEL, &wacom->data_dma);
Jason Childse33da8a2010-02-17 22:38:31 -08001215 if (!wacom_wac->data) {
1216 error = -ENOMEM;
1217 goto fail1;
1218 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001219
1220 wacom->irq = usb_alloc_urb(0, GFP_KERNEL);
Jason Childse33da8a2010-02-17 22:38:31 -08001221 if (!wacom->irq) {
1222 error = -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -07001223 goto fail2;
Jason Childse33da8a2010-02-17 22:38:31 -08001224 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001225
1226 wacom->usbdev = dev;
Oliver Neukume7224092008-04-15 01:31:57 -04001227 wacom->intf = intf;
1228 mutex_init(&wacom->lock);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001229 INIT_WORK(&wacom->work, wacom_wireless_work);
Ping Cheng3bea7332006-07-13 18:01:36 -07001230 usb_make_path(dev, wacom->phys, sizeof(wacom->phys));
1231 strlcat(wacom->phys, "/input0", sizeof(wacom->phys));
1232
Ping Cheng545f4e92008-11-24 11:44:27 -05001233 endpoint = &intf->cur_altsetting->endpoint[0].desc;
1234
Ping Chengf393ee22012-04-29 21:09:17 -07001235 /* Retrieve the physical and logical size for touch devices */
Ping Chengec67bbe2009-12-15 00:35:24 -08001236 error = wacom_retrieve_hid_descriptor(intf, features);
1237 if (error)
Alexander Strakh4b6d4432011-02-11 00:44:41 -08001238 goto fail3;
Ping Cheng545f4e92008-11-24 11:44:27 -05001239
Jason Gereckeae584ca2012-04-03 15:50:40 -07001240 /*
1241 * Intuos5 has no useful data about its touch interface in its
1242 * HID descriptor. If this is the touch interface (wMaxPacketSize
1243 * of WACOM_PKGLEN_BBTOUCH3), override the table values.
1244 */
1245 if (features->type >= INTUOS5S && features->type <= INTUOS5L) {
1246 if (endpoint->wMaxPacketSize == WACOM_PKGLEN_BBTOUCH3) {
1247 features->device_type = BTN_TOOL_FINGER;
1248 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
1249
Jason Gerecke32edbf562012-06-12 00:28:37 -07001250 wacom_set_phy_from_res(features);
Jason Gereckeae584ca2012-04-03 15:50:40 -07001251
1252 features->x_max = 4096;
1253 features->y_max = 4096;
1254 } else {
1255 features->device_type = BTN_TOOL_PEN;
1256 }
1257 }
1258
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001259 wacom_setup_device_quirks(features);
1260
Ping Cheng49b764a2010-02-20 00:53:49 -08001261 strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
1262
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001263 if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
Ping Cheng49b764a2010-02-20 00:53:49 -08001264 /* Append the device type to the name */
1265 strlcat(wacom_wac->name,
1266 features->device_type == BTN_TOOL_PEN ?
1267 " Pen" : " Finger",
1268 sizeof(wacom_wac->name));
Ping Cheng4492eff2010-03-19 22:18:15 -07001269
1270 error = wacom_add_shared_data(wacom_wac, dev);
1271 if (error)
1272 goto fail3;
Ping Cheng49b764a2010-02-20 00:53:49 -08001273 }
1274
Ping Cheng3bea7332006-07-13 18:01:36 -07001275 usb_fill_int_urb(wacom->irq, dev,
1276 usb_rcvintpipe(dev, endpoint->bEndpointAddress),
Ping Chengec67bbe2009-12-15 00:35:24 -08001277 wacom_wac->data, features->pktlen,
Ping Cheng8d32e3a2006-09-26 13:34:47 -07001278 wacom_sys_irq, wacom, endpoint->bInterval);
Ping Cheng3bea7332006-07-13 18:01:36 -07001279 wacom->irq->transfer_dma = wacom->data_dma;
1280 wacom->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1281
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001282 error = wacom_initialize_leds(wacom);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001283 if (error)
Ping Cheng4492eff2010-03-19 22:18:15 -07001284 goto fail4;
Ping Cheng3bea7332006-07-13 18:01:36 -07001285
Chris Bagwelld3825d52012-03-25 23:26:11 -07001286 if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
1287 error = wacom_register_input(wacom);
1288 if (error)
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001289 goto fail5;
Chris Bagwelld3825d52012-03-25 23:26:11 -07001290 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001291
Ping Chengec67bbe2009-12-15 00:35:24 -08001292 /* Note that if query fails it is not a hard failure */
1293 wacom_query_tablet_data(intf, features);
Ping Cheng3bea7332006-07-13 18:01:36 -07001294
1295 usb_set_intfdata(intf, wacom);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001296
1297 if (features->quirks & WACOM_QUIRK_MONITOR) {
1298 if (usb_submit_urb(wacom->irq, GFP_KERNEL))
1299 goto fail5;
1300 }
1301
Ping Cheng3bea7332006-07-13 18:01:36 -07001302 return 0;
1303
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001304 fail5: wacom_destroy_leds(wacom);
Ping Cheng4492eff2010-03-19 22:18:15 -07001305 fail4: wacom_remove_shared_data(wacom_wac);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001306 fail3: usb_free_urb(wacom->irq);
Daniel Mack997ea582010-04-12 13:17:25 +02001307 fail2: usb_free_coherent(dev, WACOM_PKGLEN_MAX, wacom_wac->data, wacom->data_dma);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001308 fail1: kfree(wacom);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001309 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001310}
1311
1312static void wacom_disconnect(struct usb_interface *intf)
1313{
Oliver Neukume7224092008-04-15 01:31:57 -04001314 struct wacom *wacom = usb_get_intfdata(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -07001315
1316 usb_set_intfdata(intf, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04001317
1318 usb_kill_urb(wacom->irq);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001319 cancel_work_sync(&wacom->work);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001320 if (wacom->wacom_wac.input)
1321 input_unregister_device(wacom->wacom_wac.input);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001322 wacom_destroy_battery(wacom);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001323 wacom_destroy_leds(wacom);
Oliver Neukume7224092008-04-15 01:31:57 -04001324 usb_free_urb(wacom->irq);
Daniel Mack997ea582010-04-12 13:17:25 +02001325 usb_free_coherent(interface_to_usbdev(intf), WACOM_PKGLEN_MAX,
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001326 wacom->wacom_wac.data, wacom->data_dma);
1327 wacom_remove_shared_data(&wacom->wacom_wac);
Oliver Neukume7224092008-04-15 01:31:57 -04001328 kfree(wacom);
1329}
1330
1331static int wacom_suspend(struct usb_interface *intf, pm_message_t message)
1332{
1333 struct wacom *wacom = usb_get_intfdata(intf);
1334
1335 mutex_lock(&wacom->lock);
1336 usb_kill_urb(wacom->irq);
1337 mutex_unlock(&wacom->lock);
1338
1339 return 0;
1340}
1341
1342static int wacom_resume(struct usb_interface *intf)
1343{
1344 struct wacom *wacom = usb_get_intfdata(intf);
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001345 struct wacom_features *features = &wacom->wacom_wac.features;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001346 int rv = 0;
Oliver Neukume7224092008-04-15 01:31:57 -04001347
1348 mutex_lock(&wacom->lock);
Ping Cheng38101472010-04-13 23:07:52 -07001349
1350 /* switch to wacom mode first */
1351 wacom_query_tablet_data(intf, features);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001352 wacom_led_control(wacom);
Ping Cheng38101472010-04-13 23:07:52 -07001353
Chris Bagwelld3825d52012-03-25 23:26:11 -07001354 if ((wacom->open || features->quirks & WACOM_QUIRK_MONITOR)
1355 && usb_submit_urb(wacom->irq, GFP_NOIO) < 0)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001356 rv = -EIO;
Ping Cheng38101472010-04-13 23:07:52 -07001357
Oliver Neukume7224092008-04-15 01:31:57 -04001358 mutex_unlock(&wacom->lock);
1359
1360 return rv;
1361}
1362
1363static int wacom_reset_resume(struct usb_interface *intf)
1364{
1365 return wacom_resume(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -07001366}
1367
1368static struct usb_driver wacom_driver = {
1369 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08001370 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07001371 .probe = wacom_probe,
1372 .disconnect = wacom_disconnect,
Oliver Neukume7224092008-04-15 01:31:57 -04001373 .suspend = wacom_suspend,
1374 .resume = wacom_resume,
1375 .reset_resume = wacom_reset_resume,
1376 .supports_autosuspend = 1,
Ping Cheng3bea7332006-07-13 18:01:36 -07001377};
1378
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001379module_usb_driver(wacom_driver);