blob: f6da2f8a9c18a08f5de28aa04d97805a08251fd3 [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
Chris Bagwell41343612011-10-26 22:32:52 -070031#define HID_COLLECTION 0xa1
32#define HID_COLLECTION_LOGICAL 0x02
33#define HID_COLLECTION_END 0xc0
Ping Cheng545f4e92008-11-24 11:44:27 -050034
35enum {
36 WCM_UNDEFINED = 0,
37 WCM_DESKTOP,
38 WCM_DIGITIZER,
39};
40
41struct hid_descriptor {
42 struct usb_descriptor_header header;
43 __le16 bcdHID;
44 u8 bCountryCode;
45 u8 bNumDescriptors;
46 u8 bDescriptorType;
47 __le16 wDescriptorLength;
48} __attribute__ ((packed));
49
50/* defines to get/set USB message */
Ping Cheng3bea7332006-07-13 18:01:36 -070051#define USB_REQ_GET_REPORT 0x01
52#define USB_REQ_SET_REPORT 0x09
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070053
Ping Cheng545f4e92008-11-24 11:44:27 -050054#define WAC_HID_FEATURE_REPORT 0x03
Ping Chenga417ea42011-08-16 00:17:56 -070055#define WAC_MSG_RETRIES 5
Ping Cheng3bea7332006-07-13 18:01:36 -070056
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070057#define WAC_CMD_LED_CONTROL 0x20
58#define WAC_CMD_ICON_START 0x21
59#define WAC_CMD_ICON_XFER 0x23
60#define WAC_CMD_RETRIES 10
61
62static int wacom_get_report(struct usb_interface *intf, u8 type, u8 id,
63 void *buf, size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070064{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070065 struct usb_device *dev = interface_to_usbdev(intf);
66 int retval;
67
68 do {
69 retval = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
70 USB_REQ_GET_REPORT,
Chris Bagwell6e8ec532011-10-26 22:24:22 -070071 USB_DIR_IN | USB_TYPE_CLASS |
72 USB_RECIP_INTERFACE,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070073 (type << 8) + id,
74 intf->altsetting[0].desc.bInterfaceNumber,
75 buf, size, 100);
76 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
77
78 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070079}
80
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070081static int wacom_set_report(struct usb_interface *intf, u8 type, u8 id,
82 void *buf, size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070083{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070084 struct usb_device *dev = interface_to_usbdev(intf);
85 int retval;
86
87 do {
88 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
89 USB_REQ_SET_REPORT,
90 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
91 (type << 8) + id,
92 intf->altsetting[0].desc.bInterfaceNumber,
93 buf, size, 1000);
94 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
95
96 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070097}
98
Adrian Bunk54c9b2262006-11-20 03:23:58 +010099static void wacom_sys_irq(struct urb *urb)
Ping Cheng3bea7332006-07-13 18:01:36 -0700100{
101 struct wacom *wacom = urb->context;
Ping Cheng3bea7332006-07-13 18:01:36 -0700102 int retval;
103
104 switch (urb->status) {
105 case 0:
106 /* success */
107 break;
108 case -ECONNRESET:
109 case -ENOENT:
110 case -ESHUTDOWN:
111 /* this urb is terminated, clean up */
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400112 dbg("%s - urb shutting down with status: %d", __func__, urb->status);
Ping Cheng3bea7332006-07-13 18:01:36 -0700113 return;
114 default:
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400115 dbg("%s - nonzero urb status received: %d", __func__, urb->status);
Ping Cheng3bea7332006-07-13 18:01:36 -0700116 goto exit;
117 }
118
Dmitry Torokhov95dd3b32010-03-19 22:18:15 -0700119 wacom_wac_irq(&wacom->wacom_wac, urb->actual_length);
Ping Cheng3bea7332006-07-13 18:01:36 -0700120
121 exit:
Oliver Neukume7224092008-04-15 01:31:57 -0400122 usb_mark_last_busy(wacom->usbdev);
Dmitry Torokhov73a97f42010-03-19 22:18:15 -0700123 retval = usb_submit_urb(urb, GFP_ATOMIC);
Ping Cheng3bea7332006-07-13 18:01:36 -0700124 if (retval)
125 err ("%s - usb_submit_urb failed with result %d",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400126 __func__, retval);
Ping Cheng3bea7332006-07-13 18:01:36 -0700127}
128
Ping Cheng3bea7332006-07-13 18:01:36 -0700129static int wacom_open(struct input_dev *dev)
130{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400131 struct wacom *wacom = input_get_drvdata(dev);
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700132 int retval = 0;
133
134 if (usb_autopm_get_interface(wacom->intf) < 0)
135 return -EIO;
Ping Cheng3bea7332006-07-13 18:01:36 -0700136
Oliver Neukume7224092008-04-15 01:31:57 -0400137 mutex_lock(&wacom->lock);
Ping Cheng3bea7332006-07-13 18:01:36 -0700138
Oliver Neukume7224092008-04-15 01:31:57 -0400139 if (usb_submit_urb(wacom->irq, GFP_KERNEL)) {
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700140 retval = -EIO;
141 goto out;
Oliver Neukume7224092008-04-15 01:31:57 -0400142 }
143
Dmitry Torokhov51269fe2010-03-19 22:18:15 -0700144 wacom->open = true;
Oliver Neukume7224092008-04-15 01:31:57 -0400145 wacom->intf->needs_remote_wakeup = 1;
146
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700147out:
Oliver Neukume7224092008-04-15 01:31:57 -0400148 mutex_unlock(&wacom->lock);
Dmitry Torokhov62ecae02010-10-10 14:24:16 -0700149 usb_autopm_put_interface(wacom->intf);
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700150 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -0700151}
152
153static void wacom_close(struct input_dev *dev)
154{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400155 struct wacom *wacom = input_get_drvdata(dev);
Dmitry Torokhov62ecae02010-10-10 14:24:16 -0700156 int autopm_error;
157
158 autopm_error = usb_autopm_get_interface(wacom->intf);
Ping Cheng3bea7332006-07-13 18:01:36 -0700159
Oliver Neukume7224092008-04-15 01:31:57 -0400160 mutex_lock(&wacom->lock);
Ping Cheng3bea7332006-07-13 18:01:36 -0700161 usb_kill_urb(wacom->irq);
Dmitry Torokhov51269fe2010-03-19 22:18:15 -0700162 wacom->open = false;
Oliver Neukume7224092008-04-15 01:31:57 -0400163 wacom->intf->needs_remote_wakeup = 0;
164 mutex_unlock(&wacom->lock);
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -0700165
Dmitry Torokhov62ecae02010-10-10 14:24:16 -0700166 if (!autopm_error)
167 usb_autopm_put_interface(wacom->intf);
Ping Cheng3bea7332006-07-13 18:01:36 -0700168}
169
Chris Bagwell41343612011-10-26 22:32:52 -0700170static int wacom_parse_logical_collection(unsigned char *report,
171 struct wacom_features *features)
172{
173 int length = 0;
174
175 if (features->type == BAMBOO_PT) {
176
177 /* Logical collection is only used by 3rd gen Bamboo Touch */
178 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
Ping Cheng8b4a0c1f2012-01-31 00:07:33 -0800179 features->device_type = BTN_TOOL_FINGER;
Chris Bagwell41343612011-10-26 22:32:52 -0700180
181 /*
182 * Stylus and Touch have same active area
183 * so compute physical size based on stylus
184 * data before its overwritten.
185 */
186 features->x_phy =
187 (features->x_max * features->x_resolution) / 100;
188 features->y_phy =
189 (features->y_max * features->y_resolution) / 100;
190
191 features->x_max = features->y_max =
192 get_unaligned_le16(&report[10]);
193
194 length = 11;
195 }
196 return length;
197}
198
Chris Bagwell428f8582011-10-26 22:26:59 -0700199/*
200 * Interface Descriptor of wacom devices can be incomplete and
201 * inconsistent so wacom_features table is used to store stylus
202 * device's packet lengths, various maximum values, and tablet
203 * resolution based on product ID's.
204 *
205 * For devices that contain 2 interfaces, wacom_features table is
206 * inaccurate for the touch interface. Since the Interface Descriptor
207 * for touch interfaces has pretty complete data, this function exists
208 * to query tablet for this missing information instead of hard coding in
209 * an additional table.
210 *
211 * A typical Interface Descriptor for a stylus will contain a
212 * boot mouse application collection that is not of interest and this
213 * function will ignore it.
214 *
215 * It also contains a digitizer application collection that also is not
216 * of interest since any information it contains would be duplicate
217 * of what is in wacom_features. Usually it defines a report of an array
218 * of bytes that could be used as max length of the stylus packet returned.
219 * If it happens to define a Digitizer-Stylus Physical Collection then
220 * the X and Y logical values contain valid data but it is ignored.
221 *
222 * A typical Interface Descriptor for a touch interface will contain a
223 * Digitizer-Finger Physical Collection which will define both logical
224 * X/Y maximum as well as the physical size of tablet. Since touch
225 * interfaces haven't supported pressure or distance, this is enough
226 * information to override invalid values in the wacom_features table.
Chris Bagwell41343612011-10-26 22:32:52 -0700227 *
228 * 3rd gen Bamboo Touch no longer define a Digitizer-Finger Pysical
229 * Collection. Instead they define a Logical Collection with a single
230 * Logical Maximum for both X and Y.
Chris Bagwell428f8582011-10-26 22:26:59 -0700231 */
232static int wacom_parse_hid(struct usb_interface *intf,
233 struct hid_descriptor *hid_desc,
Ping Chengec67bbe2009-12-15 00:35:24 -0800234 struct wacom_features *features)
Ping Cheng545f4e92008-11-24 11:44:27 -0500235{
236 struct usb_device *dev = interface_to_usbdev(intf);
Ping Chengec67bbe2009-12-15 00:35:24 -0800237 char limit = 0;
238 /* result has to be defined as int for some devices */
239 int result = 0;
Ping Cheng545f4e92008-11-24 11:44:27 -0500240 int i = 0, usage = WCM_UNDEFINED, finger = 0, pen = 0;
241 unsigned char *report;
242
243 report = kzalloc(hid_desc->wDescriptorLength, GFP_KERNEL);
244 if (!report)
245 return -ENOMEM;
246
247 /* retrive report descriptors */
248 do {
249 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
250 USB_REQ_GET_DESCRIPTOR,
251 USB_RECIP_INTERFACE | USB_DIR_IN,
252 HID_DEVICET_REPORT << 8,
253 intf->altsetting[0].desc.bInterfaceNumber, /* interface */
254 report,
255 hid_desc->wDescriptorLength,
256 5000); /* 5 secs */
Ping Chenga417ea42011-08-16 00:17:56 -0700257 } while (result < 0 && limit++ < WAC_MSG_RETRIES);
Ping Cheng545f4e92008-11-24 11:44:27 -0500258
Ping Cheng384318e2009-04-28 07:49:54 -0700259 /* No need to parse the Descriptor. It isn't an error though */
Ping Cheng545f4e92008-11-24 11:44:27 -0500260 if (result < 0)
261 goto out;
262
263 for (i = 0; i < hid_desc->wDescriptorLength; i++) {
264
265 switch (report[i]) {
266 case HID_USAGE_PAGE:
267 switch (report[i + 1]) {
268 case HID_USAGE_PAGE_DIGITIZER:
269 usage = WCM_DIGITIZER;
270 i++;
271 break;
272
273 case HID_USAGE_PAGE_DESKTOP:
274 usage = WCM_DESKTOP;
275 i++;
276 break;
277 }
278 break;
279
280 case HID_USAGE:
281 switch (report[i + 1]) {
282 case HID_USAGE_X:
283 if (usage == WCM_DESKTOP) {
284 if (finger) {
Ping Cheng84eb5aa2011-03-12 20:35:18 -0800285 features->device_type = BTN_TOOL_FINGER;
Ping Chengec67bbe2009-12-15 00:35:24 -0800286 if (features->type == TABLETPC2FG) {
287 /* need to reset back */
288 features->pktlen = WACOM_PKGLEN_TPC2FG;
Ping Chengec67bbe2009-12-15 00:35:24 -0800289 }
Ping Cheng4a880812010-09-05 12:25:40 -0700290 if (features->type == BAMBOO_PT) {
291 /* need to reset back */
292 features->pktlen = WACOM_PKGLEN_BBTOUCH;
Ping Cheng4a880812010-09-05 12:25:40 -0700293 features->x_phy =
294 get_unaligned_le16(&report[i + 5]);
295 features->x_max =
296 get_unaligned_le16(&report[i + 8]);
297 i += 15;
298 } else {
299 features->x_max =
300 get_unaligned_le16(&report[i + 3]);
301 features->x_phy =
302 get_unaligned_le16(&report[i + 6]);
303 features->unit = report[i + 9];
304 features->unitExpo = report[i + 11];
305 i += 12;
306 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500307 } else if (pen) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800308 /* penabled only accepts exact bytes of data */
309 if (features->type == TABLETPC2FG)
Ping Cheng57e413d2010-03-01 23:50:24 -0800310 features->pktlen = WACOM_PKGLEN_GRAPHIRE;
Ping Chengec67bbe2009-12-15 00:35:24 -0800311 features->device_type = BTN_TOOL_PEN;
Ping Cheng545f4e92008-11-24 11:44:27 -0500312 features->x_max =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700313 get_unaligned_le16(&report[i + 3]);
Ping Cheng545f4e92008-11-24 11:44:27 -0500314 i += 4;
315 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500316 }
317 break;
318
319 case HID_USAGE_Y:
Ping Chengec67bbe2009-12-15 00:35:24 -0800320 if (usage == WCM_DESKTOP) {
321 if (finger) {
Ping Cheng84eb5aa2011-03-12 20:35:18 -0800322 features->device_type = BTN_TOOL_FINGER;
Ping Chengec67bbe2009-12-15 00:35:24 -0800323 if (features->type == TABLETPC2FG) {
324 /* need to reset back */
325 features->pktlen = WACOM_PKGLEN_TPC2FG;
Ping Chengec67bbe2009-12-15 00:35:24 -0800326 features->y_max =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700327 get_unaligned_le16(&report[i + 3]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800328 features->y_phy =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700329 get_unaligned_le16(&report[i + 6]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800330 i += 7;
Ping Cheng4a880812010-09-05 12:25:40 -0700331 } else if (features->type == BAMBOO_PT) {
332 /* need to reset back */
333 features->pktlen = WACOM_PKGLEN_BBTOUCH;
Ping Cheng4a880812010-09-05 12:25:40 -0700334 features->y_phy =
335 get_unaligned_le16(&report[i + 3]);
336 features->y_max =
337 get_unaligned_le16(&report[i + 6]);
338 i += 12;
Ping Chengec67bbe2009-12-15 00:35:24 -0800339 } else {
340 features->y_max =
341 features->x_max;
342 features->y_phy =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700343 get_unaligned_le16(&report[i + 3]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800344 i += 4;
345 }
346 } else if (pen) {
347 /* penabled only accepts exact bytes of data */
348 if (features->type == TABLETPC2FG)
Ping Cheng57e413d2010-03-01 23:50:24 -0800349 features->pktlen = WACOM_PKGLEN_GRAPHIRE;
Ping Chengec67bbe2009-12-15 00:35:24 -0800350 features->device_type = BTN_TOOL_PEN;
351 features->y_max =
Dmitry Torokhov252f7762010-03-19 22:33:38 -0700352 get_unaligned_le16(&report[i + 3]);
Ping Chengec67bbe2009-12-15 00:35:24 -0800353 i += 4;
354 }
355 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500356 break;
357
358 case HID_USAGE_FINGER:
359 finger = 1;
360 i++;
361 break;
362
Chris Bagwell428f8582011-10-26 22:26:59 -0700363 /*
364 * Requiring Stylus Usage will ignore boot mouse
365 * X/Y values and some cases of invalid Digitizer X/Y
366 * values commonly reported.
367 */
Ping Cheng545f4e92008-11-24 11:44:27 -0500368 case HID_USAGE_STYLUS:
369 pen = 1;
370 i++;
371 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500372 }
373 break;
374
Chris Bagwell41343612011-10-26 22:32:52 -0700375 case HID_COLLECTION_END:
Ping Chengec67bbe2009-12-15 00:35:24 -0800376 /* reset UsagePage and Finger */
Ping Cheng545f4e92008-11-24 11:44:27 -0500377 finger = usage = 0;
378 break;
Chris Bagwell41343612011-10-26 22:32:52 -0700379
380 case HID_COLLECTION:
381 i++;
382 switch (report[i]) {
383 case HID_COLLECTION_LOGICAL:
384 i += wacom_parse_logical_collection(&report[i],
385 features);
386 break;
387 }
388 break;
Ping Cheng545f4e92008-11-24 11:44:27 -0500389 }
390 }
391
Ping Cheng545f4e92008-11-24 11:44:27 -0500392 out:
Ping Cheng384318e2009-04-28 07:49:54 -0700393 result = 0;
Ping Cheng545f4e92008-11-24 11:44:27 -0500394 kfree(report);
395 return result;
396}
397
Ping Chengec67bbe2009-12-15 00:35:24 -0800398static int wacom_query_tablet_data(struct usb_interface *intf, struct wacom_features *features)
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700399{
400 unsigned char *rep_data;
Ping Chengec67bbe2009-12-15 00:35:24 -0800401 int limit = 0, report_id = 2;
402 int error = -ENOMEM;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700403
Ping Cheng3b48c912011-08-16 00:17:57 -0700404 rep_data = kmalloc(4, GFP_KERNEL);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700405 if (!rep_data)
Ping Chengec67bbe2009-12-15 00:35:24 -0800406 return error;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700407
Ping Cheng3b48c912011-08-16 00:17:57 -0700408 /* ask to report tablet data if it is MT Tablet PC or
Chris Bagwell3dc9f402010-09-12 00:08:40 -0700409 * not a Tablet PC */
410 if (features->type == TABLETPC2FG) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800411 do {
412 rep_data[0] = 3;
413 rep_data[1] = 4;
Ping Cheng3b48c912011-08-16 00:17:57 -0700414 rep_data[2] = 0;
415 rep_data[3] = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800416 report_id = 3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700417 error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT,
418 report_id, rep_data, 4, 1);
Ping Chengec67bbe2009-12-15 00:35:24 -0800419 if (error >= 0)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700420 error = wacom_get_report(intf,
421 WAC_HID_FEATURE_REPORT,
422 report_id, rep_data, 4, 1);
Ping Chenga417ea42011-08-16 00:17:56 -0700423 } while ((error < 0 || rep_data[1] != 4) && limit++ < WAC_MSG_RETRIES);
Chris Bagwell6e8ec532011-10-26 22:24:22 -0700424 } else if (features->type != TABLETPC &&
425 features->device_type == BTN_TOOL_PEN) {
Ping Chengec67bbe2009-12-15 00:35:24 -0800426 do {
427 rep_data[0] = 2;
428 rep_data[1] = 2;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700429 error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT,
430 report_id, rep_data, 2, 1);
Ping Chengec67bbe2009-12-15 00:35:24 -0800431 if (error >= 0)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700432 error = wacom_get_report(intf,
433 WAC_HID_FEATURE_REPORT,
434 report_id, rep_data, 2, 1);
Ping Chenga417ea42011-08-16 00:17:56 -0700435 } while ((error < 0 || rep_data[1] != 2) && limit++ < WAC_MSG_RETRIES);
Ping Chengec67bbe2009-12-15 00:35:24 -0800436 }
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700437
438 kfree(rep_data);
439
440 return error < 0 ? error : 0;
441}
442
Ping Chengec67bbe2009-12-15 00:35:24 -0800443static int wacom_retrieve_hid_descriptor(struct usb_interface *intf,
444 struct wacom_features *features)
445{
446 int error = 0;
447 struct usb_host_interface *interface = intf->cur_altsetting;
448 struct hid_descriptor *hid_desc;
449
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700450 /* default features */
Ping Chengec67bbe2009-12-15 00:35:24 -0800451 features->device_type = BTN_TOOL_PEN;
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700452 features->x_fuzz = 4;
453 features->y_fuzz = 4;
454 features->pressure_fuzz = 0;
455 features->distance_fuzz = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800456
Chris Bagwell3dc9f402010-09-12 00:08:40 -0700457 /* only Tablet PCs and Bamboo P&T need to retrieve the info */
Ping Cheng4a880812010-09-05 12:25:40 -0700458 if ((features->type != TABLETPC) && (features->type != TABLETPC2FG) &&
459 (features->type != BAMBOO_PT))
Ping Chengec67bbe2009-12-15 00:35:24 -0800460 goto out;
461
462 if (usb_get_extra_descriptor(interface, HID_DEVICET_HID, &hid_desc)) {
463 if (usb_get_extra_descriptor(&interface->endpoint[0],
464 HID_DEVICET_REPORT, &hid_desc)) {
465 printk("wacom: can not retrieve extra class descriptor\n");
466 error = 1;
467 goto out;
468 }
469 }
470 error = wacom_parse_hid(intf, hid_desc, features);
471 if (error)
472 goto out;
473
Ping Chengec67bbe2009-12-15 00:35:24 -0800474 out:
475 return error;
476}
477
Ping Cheng4492eff2010-03-19 22:18:15 -0700478struct wacom_usbdev_data {
479 struct list_head list;
480 struct kref kref;
481 struct usb_device *dev;
482 struct wacom_shared shared;
483};
484
485static LIST_HEAD(wacom_udev_list);
486static DEFINE_MUTEX(wacom_udev_list_lock);
487
488static struct wacom_usbdev_data *wacom_get_usbdev_data(struct usb_device *dev)
489{
490 struct wacom_usbdev_data *data;
491
492 list_for_each_entry(data, &wacom_udev_list, list) {
493 if (data->dev == dev) {
494 kref_get(&data->kref);
495 return data;
496 }
497 }
498
499 return NULL;
500}
501
502static int wacom_add_shared_data(struct wacom_wac *wacom,
503 struct usb_device *dev)
504{
505 struct wacom_usbdev_data *data;
506 int retval = 0;
507
508 mutex_lock(&wacom_udev_list_lock);
509
510 data = wacom_get_usbdev_data(dev);
511 if (!data) {
512 data = kzalloc(sizeof(struct wacom_usbdev_data), GFP_KERNEL);
513 if (!data) {
514 retval = -ENOMEM;
515 goto out;
516 }
517
518 kref_init(&data->kref);
519 data->dev = dev;
520 list_add_tail(&data->list, &wacom_udev_list);
521 }
522
523 wacom->shared = &data->shared;
524
525out:
526 mutex_unlock(&wacom_udev_list_lock);
527 return retval;
528}
529
530static void wacom_release_shared_data(struct kref *kref)
531{
532 struct wacom_usbdev_data *data =
533 container_of(kref, struct wacom_usbdev_data, kref);
534
535 mutex_lock(&wacom_udev_list_lock);
536 list_del(&data->list);
537 mutex_unlock(&wacom_udev_list_lock);
538
539 kfree(data);
540}
541
542static void wacom_remove_shared_data(struct wacom_wac *wacom)
543{
544 struct wacom_usbdev_data *data;
545
546 if (wacom->shared) {
547 data = container_of(wacom->shared, struct wacom_usbdev_data, shared);
548 kref_put(&data->kref, wacom_release_shared_data);
549 wacom->shared = NULL;
550 }
551}
552
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700553static int wacom_led_control(struct wacom *wacom)
554{
555 unsigned char *buf;
Ping Cheng09e7d942011-10-04 23:51:14 -0700556 int retval, led = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700557
558 buf = kzalloc(9, GFP_KERNEL);
559 if (!buf)
560 return -ENOMEM;
561
Jason Gerecke246835f2011-12-12 00:12:04 -0800562 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
563 wacom->wacom_wac.features.type == WACOM_24HD)
Ping Cheng09e7d942011-10-04 23:51:14 -0700564 led = (wacom->led.select[1] << 4) | 0x40;
565
566 led |= wacom->led.select[0] | 0x4;
567
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700568 buf[0] = WAC_CMD_LED_CONTROL;
Ping Cheng09e7d942011-10-04 23:51:14 -0700569 buf[1] = led;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700570 buf[2] = wacom->led.llv;
571 buf[3] = wacom->led.hlv;
572 buf[4] = wacom->led.img_lum;
573
574 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_LED_CONTROL,
575 buf, 9, WAC_CMD_RETRIES);
576 kfree(buf);
577
578 return retval;
579}
580
581static int wacom_led_putimage(struct wacom *wacom, int button_id, const void *img)
582{
583 unsigned char *buf;
584 int i, retval;
585
586 buf = kzalloc(259, GFP_KERNEL);
587 if (!buf)
588 return -ENOMEM;
589
590 /* Send 'start' command */
591 buf[0] = WAC_CMD_ICON_START;
592 buf[1] = 1;
593 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START,
594 buf, 2, WAC_CMD_RETRIES);
595 if (retval < 0)
596 goto out;
597
598 buf[0] = WAC_CMD_ICON_XFER;
599 buf[1] = button_id & 0x07;
600 for (i = 0; i < 4; i++) {
601 buf[2] = i;
602 memcpy(buf + 3, img + i * 256, 256);
603
604 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_XFER,
605 buf, 259, WAC_CMD_RETRIES);
606 if (retval < 0)
607 break;
608 }
609
610 /* Send 'stop' */
611 buf[0] = WAC_CMD_ICON_START;
612 buf[1] = 0;
613 wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START,
614 buf, 2, WAC_CMD_RETRIES);
615
616out:
617 kfree(buf);
618 return retval;
619}
620
Ping Cheng09e7d942011-10-04 23:51:14 -0700621static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700622 const char *buf, size_t count)
623{
624 struct wacom *wacom = dev_get_drvdata(dev);
625 unsigned int id;
626 int err;
627
628 err = kstrtouint(buf, 10, &id);
629 if (err)
630 return err;
631
632 mutex_lock(&wacom->lock);
633
Ping Cheng09e7d942011-10-04 23:51:14 -0700634 wacom->led.select[set_id] = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700635 err = wacom_led_control(wacom);
636
637 mutex_unlock(&wacom->lock);
638
639 return err < 0 ? err : count;
640}
641
Ping Cheng09e7d942011-10-04 23:51:14 -0700642#define DEVICE_LED_SELECT_ATTR(SET_ID) \
643static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
644 struct device_attribute *attr, const char *buf, size_t count) \
645{ \
646 return wacom_led_select_store(dev, SET_ID, buf, count); \
647} \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700648static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
649 struct device_attribute *attr, char *buf) \
650{ \
651 struct wacom *wacom = dev_get_drvdata(dev); \
652 return snprintf(buf, 2, "%d\n", wacom->led.select[SET_ID]); \
653} \
654static DEVICE_ATTR(status_led##SET_ID##_select, S_IWUSR | S_IRUSR, \
655 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -0700656 wacom_led##SET_ID##_select_store)
657
658DEVICE_LED_SELECT_ATTR(0);
659DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700660
661static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
662 const char *buf, size_t count)
663{
664 unsigned int value;
665 int err;
666
667 err = kstrtouint(buf, 10, &value);
668 if (err)
669 return err;
670
671 mutex_lock(&wacom->lock);
672
673 *dest = value & 0x7f;
674 err = wacom_led_control(wacom);
675
676 mutex_unlock(&wacom->lock);
677
678 return err < 0 ? err : count;
679}
680
681#define DEVICE_LUMINANCE_ATTR(name, field) \
682static ssize_t wacom_##name##_luminance_store(struct device *dev, \
683 struct device_attribute *attr, const char *buf, size_t count) \
684{ \
685 struct wacom *wacom = dev_get_drvdata(dev); \
686 \
687 return wacom_luminance_store(wacom, &wacom->led.field, \
688 buf, count); \
689} \
690static DEVICE_ATTR(name##_luminance, S_IWUSR, \
691 NULL, wacom_##name##_luminance_store)
692
693DEVICE_LUMINANCE_ATTR(status0, llv);
694DEVICE_LUMINANCE_ATTR(status1, hlv);
695DEVICE_LUMINANCE_ATTR(buttons, img_lum);
696
697static ssize_t wacom_button_image_store(struct device *dev, int button_id,
698 const char *buf, size_t count)
699{
700 struct wacom *wacom = dev_get_drvdata(dev);
701 int err;
702
703 if (count != 1024)
704 return -EINVAL;
705
706 mutex_lock(&wacom->lock);
707
708 err = wacom_led_putimage(wacom, button_id, buf);
709
710 mutex_unlock(&wacom->lock);
711
712 return err < 0 ? err : count;
713}
714
715#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
716static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
717 struct device_attribute *attr, const char *buf, size_t count) \
718{ \
719 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
720} \
721static DEVICE_ATTR(button##BUTTON_ID##_rawimg, S_IWUSR, \
722 NULL, wacom_btnimg##BUTTON_ID##_store)
723
724DEVICE_BTNIMG_ATTR(0);
725DEVICE_BTNIMG_ATTR(1);
726DEVICE_BTNIMG_ATTR(2);
727DEVICE_BTNIMG_ATTR(3);
728DEVICE_BTNIMG_ATTR(4);
729DEVICE_BTNIMG_ATTR(5);
730DEVICE_BTNIMG_ATTR(6);
731DEVICE_BTNIMG_ATTR(7);
732
Ping Cheng09e7d942011-10-04 23:51:14 -0700733static struct attribute *cintiq_led_attrs[] = {
734 &dev_attr_status_led0_select.attr,
735 &dev_attr_status_led1_select.attr,
736 NULL
737};
738
739static struct attribute_group cintiq_led_attr_group = {
740 .name = "wacom_led",
741 .attrs = cintiq_led_attrs,
742};
743
744static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700745 &dev_attr_status0_luminance.attr,
746 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -0700747 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700748 &dev_attr_buttons_luminance.attr,
749 &dev_attr_button0_rawimg.attr,
750 &dev_attr_button1_rawimg.attr,
751 &dev_attr_button2_rawimg.attr,
752 &dev_attr_button3_rawimg.attr,
753 &dev_attr_button4_rawimg.attr,
754 &dev_attr_button5_rawimg.attr,
755 &dev_attr_button6_rawimg.attr,
756 &dev_attr_button7_rawimg.attr,
757 NULL
758};
759
Ping Cheng09e7d942011-10-04 23:51:14 -0700760static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700761 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -0700762 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700763};
764
765static int wacom_initialize_leds(struct wacom *wacom)
766{
767 int error;
768
Ping Cheng09e7d942011-10-04 23:51:14 -0700769 /* Initialize default values */
770 switch (wacom->wacom_wac.features.type) {
771 case INTUOS4:
772 case INTUOS4L:
773 wacom->led.select[0] = 0;
774 wacom->led.select[1] = 0;
Ping Chengf4fa9a62011-10-04 23:49:42 -0700775 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700776 wacom->led.hlv = 20;
777 wacom->led.img_lum = 10;
Ping Cheng09e7d942011-10-04 23:51:14 -0700778 error = sysfs_create_group(&wacom->intf->dev.kobj,
779 &intuos4_led_attr_group);
780 break;
781
Jason Gerecke246835f2011-12-12 00:12:04 -0800782 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700783 case WACOM_21UX2:
784 wacom->led.select[0] = 0;
785 wacom->led.select[1] = 0;
786 wacom->led.llv = 0;
787 wacom->led.hlv = 0;
788 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700789
790 error = sysfs_create_group(&wacom->intf->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700791 &cintiq_led_attr_group);
792 break;
793
794 default:
795 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700796 }
797
Ping Cheng09e7d942011-10-04 23:51:14 -0700798 if (error) {
799 dev_err(&wacom->intf->dev,
800 "cannot create sysfs group err: %d\n", error);
801 return error;
802 }
803 wacom_led_control(wacom);
804
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700805 return 0;
806}
807
808static void wacom_destroy_leds(struct wacom *wacom)
809{
Ping Cheng09e7d942011-10-04 23:51:14 -0700810 switch (wacom->wacom_wac.features.type) {
811 case INTUOS4:
812 case INTUOS4L:
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700813 sysfs_remove_group(&wacom->intf->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700814 &intuos4_led_attr_group);
815 break;
816
Jason Gerecke246835f2011-12-12 00:12:04 -0800817 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700818 case WACOM_21UX2:
819 sysfs_remove_group(&wacom->intf->dev.kobj,
820 &cintiq_led_attr_group);
821 break;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700822 }
823}
824
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700825static int wacom_register_input(struct wacom *wacom)
826{
827 struct input_dev *input_dev;
828 struct usb_interface *intf = wacom->intf;
829 struct usb_device *dev = interface_to_usbdev(intf);
830 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
831 int error;
832
833 input_dev = input_allocate_device();
834 if (!input_dev)
835 return -ENOMEM;
836
837 input_dev->name = wacom_wac->name;
838 input_dev->dev.parent = &intf->dev;
839 input_dev->open = wacom_open;
840 input_dev->close = wacom_close;
841 usb_to_input_id(dev, &input_dev->id);
842 input_set_drvdata(input_dev, wacom);
843
844 wacom_wac->input = input_dev;
845 wacom_setup_input_capabilities(input_dev, wacom_wac);
846
847 error = input_register_device(input_dev);
848 if (error) {
849 input_free_device(input_dev);
850 wacom_wac->input = NULL;
851 }
852
853 return error;
854}
855
Ping Cheng3bea7332006-07-13 18:01:36 -0700856static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *id)
857{
858 struct usb_device *dev = interface_to_usbdev(intf);
859 struct usb_endpoint_descriptor *endpoint;
860 struct wacom *wacom;
861 struct wacom_wac *wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -0800862 struct wacom_features *features;
Jason Childse33da8a2010-02-17 22:38:31 -0800863 int error;
Ping Cheng3bea7332006-07-13 18:01:36 -0700864
Jason Childse33da8a2010-02-17 22:38:31 -0800865 if (!id->driver_info)
Bastian Blankb036f6f2010-02-10 23:06:23 -0800866 return -EINVAL;
867
Ping Cheng3bea7332006-07-13 18:01:36 -0700868 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
Ping Cheng3bea7332006-07-13 18:01:36 -0700869
Dmitry Torokhov51269fe2010-03-19 22:18:15 -0700870 wacom_wac = &wacom->wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -0800871 wacom_wac->features = *((struct wacom_features *)id->driver_info);
872 features = &wacom_wac->features;
873 if (features->pktlen > WACOM_PKGLEN_MAX) {
874 error = -EINVAL;
Ping Cheng3bea7332006-07-13 18:01:36 -0700875 goto fail1;
Jason Childse33da8a2010-02-17 22:38:31 -0800876 }
877
Daniel Mack997ea582010-04-12 13:17:25 +0200878 wacom_wac->data = usb_alloc_coherent(dev, WACOM_PKGLEN_MAX,
879 GFP_KERNEL, &wacom->data_dma);
Jason Childse33da8a2010-02-17 22:38:31 -0800880 if (!wacom_wac->data) {
881 error = -ENOMEM;
882 goto fail1;
883 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700884
885 wacom->irq = usb_alloc_urb(0, GFP_KERNEL);
Jason Childse33da8a2010-02-17 22:38:31 -0800886 if (!wacom->irq) {
887 error = -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -0700888 goto fail2;
Jason Childse33da8a2010-02-17 22:38:31 -0800889 }
Ping Cheng3bea7332006-07-13 18:01:36 -0700890
891 wacom->usbdev = dev;
Oliver Neukume7224092008-04-15 01:31:57 -0400892 wacom->intf = intf;
893 mutex_init(&wacom->lock);
Ping Cheng3bea7332006-07-13 18:01:36 -0700894 usb_make_path(dev, wacom->phys, sizeof(wacom->phys));
895 strlcat(wacom->phys, "/input0", sizeof(wacom->phys));
896
Ping Cheng545f4e92008-11-24 11:44:27 -0500897 endpoint = &intf->cur_altsetting->endpoint[0].desc;
898
Ping Chengec67bbe2009-12-15 00:35:24 -0800899 /* Retrieve the physical and logical size for OEM devices */
900 error = wacom_retrieve_hid_descriptor(intf, features);
901 if (error)
Alexander Strakh4b6d4432011-02-11 00:44:41 -0800902 goto fail3;
Ping Cheng545f4e92008-11-24 11:44:27 -0500903
Henrik Rydbergbc73dd32010-09-05 12:26:16 -0700904 wacom_setup_device_quirks(features);
905
Ping Cheng49b764a2010-02-20 00:53:49 -0800906 strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
907
Henrik Rydbergbc73dd32010-09-05 12:26:16 -0700908 if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
Ping Cheng49b764a2010-02-20 00:53:49 -0800909 /* Append the device type to the name */
910 strlcat(wacom_wac->name,
911 features->device_type == BTN_TOOL_PEN ?
912 " Pen" : " Finger",
913 sizeof(wacom_wac->name));
Ping Cheng4492eff2010-03-19 22:18:15 -0700914
915 error = wacom_add_shared_data(wacom_wac, dev);
916 if (error)
917 goto fail3;
Ping Cheng49b764a2010-02-20 00:53:49 -0800918 }
919
Ping Cheng3bea7332006-07-13 18:01:36 -0700920 usb_fill_int_urb(wacom->irq, dev,
921 usb_rcvintpipe(dev, endpoint->bEndpointAddress),
Ping Chengec67bbe2009-12-15 00:35:24 -0800922 wacom_wac->data, features->pktlen,
Ping Cheng8d32e3a2006-09-26 13:34:47 -0700923 wacom_sys_irq, wacom, endpoint->bInterval);
Ping Cheng3bea7332006-07-13 18:01:36 -0700924 wacom->irq->transfer_dma = wacom->data_dma;
925 wacom->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
926
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700927 error = wacom_initialize_leds(wacom);
Dmitry Torokhov50141862007-04-12 01:33:39 -0400928 if (error)
Ping Cheng4492eff2010-03-19 22:18:15 -0700929 goto fail4;
Ping Cheng3bea7332006-07-13 18:01:36 -0700930
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700931 error = wacom_register_input(wacom);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700932 if (error)
933 goto fail5;
934
Ping Chengec67bbe2009-12-15 00:35:24 -0800935 /* Note that if query fails it is not a hard failure */
936 wacom_query_tablet_data(intf, features);
Ping Cheng3bea7332006-07-13 18:01:36 -0700937
938 usb_set_intfdata(intf, wacom);
939 return 0;
940
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700941 fail5: wacom_destroy_leds(wacom);
Ping Cheng4492eff2010-03-19 22:18:15 -0700942 fail4: wacom_remove_shared_data(wacom_wac);
Dmitry Torokhov50141862007-04-12 01:33:39 -0400943 fail3: usb_free_urb(wacom->irq);
Daniel Mack997ea582010-04-12 13:17:25 +0200944 fail2: usb_free_coherent(dev, WACOM_PKGLEN_MAX, wacom_wac->data, wacom->data_dma);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700945 fail1: kfree(wacom);
Dmitry Torokhov50141862007-04-12 01:33:39 -0400946 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -0700947}
948
949static void wacom_disconnect(struct usb_interface *intf)
950{
Oliver Neukume7224092008-04-15 01:31:57 -0400951 struct wacom *wacom = usb_get_intfdata(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -0700952
953 usb_set_intfdata(intf, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -0400954
955 usb_kill_urb(wacom->irq);
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700956 input_unregister_device(wacom->wacom_wac.input);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700957 wacom_destroy_leds(wacom);
Oliver Neukume7224092008-04-15 01:31:57 -0400958 usb_free_urb(wacom->irq);
Daniel Mack997ea582010-04-12 13:17:25 +0200959 usb_free_coherent(interface_to_usbdev(intf), WACOM_PKGLEN_MAX,
Dmitry Torokhov51269fe2010-03-19 22:18:15 -0700960 wacom->wacom_wac.data, wacom->data_dma);
961 wacom_remove_shared_data(&wacom->wacom_wac);
Oliver Neukume7224092008-04-15 01:31:57 -0400962 kfree(wacom);
963}
964
965static int wacom_suspend(struct usb_interface *intf, pm_message_t message)
966{
967 struct wacom *wacom = usb_get_intfdata(intf);
968
969 mutex_lock(&wacom->lock);
970 usb_kill_urb(wacom->irq);
971 mutex_unlock(&wacom->lock);
972
973 return 0;
974}
975
976static int wacom_resume(struct usb_interface *intf)
977{
978 struct wacom *wacom = usb_get_intfdata(intf);
Dmitry Torokhov51269fe2010-03-19 22:18:15 -0700979 struct wacom_features *features = &wacom->wacom_wac.features;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700980 int rv = 0;
Oliver Neukume7224092008-04-15 01:31:57 -0400981
982 mutex_lock(&wacom->lock);
Ping Cheng38101472010-04-13 23:07:52 -0700983
984 /* switch to wacom mode first */
985 wacom_query_tablet_data(intf, features);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700986 wacom_led_control(wacom);
Ping Cheng38101472010-04-13 23:07:52 -0700987
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700988 if (wacom->open && usb_submit_urb(wacom->irq, GFP_NOIO) < 0)
989 rv = -EIO;
Ping Cheng38101472010-04-13 23:07:52 -0700990
Oliver Neukume7224092008-04-15 01:31:57 -0400991 mutex_unlock(&wacom->lock);
992
993 return rv;
994}
995
996static int wacom_reset_resume(struct usb_interface *intf)
997{
998 return wacom_resume(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -0700999}
1000
1001static struct usb_driver wacom_driver = {
1002 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08001003 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07001004 .probe = wacom_probe,
1005 .disconnect = wacom_disconnect,
Oliver Neukume7224092008-04-15 01:31:57 -04001006 .suspend = wacom_suspend,
1007 .resume = wacom_resume,
1008 .reset_resume = wacom_reset_resume,
1009 .supports_autosuspend = 1,
Ping Cheng3bea7332006-07-13 18:01:36 -07001010};
1011
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001012module_usb_driver(wacom_driver);