2 * drivers/input/tablet/wacom_sys.c
4 * USB Wacom tablet support - system specific code
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.
14 #include "wacom_wac.h"
17 /* defines to get HID report descriptor */
18 #define HID_DEVICET_HID (USB_TYPE_CLASS | 0x01)
19 #define HID_DEVICET_REPORT (USB_TYPE_CLASS | 0x02)
20 #define HID_USAGE_UNDEFINED 0x00
21 #define HID_USAGE_PAGE 0x05
22 #define HID_USAGE_PAGE_DIGITIZER 0x0d
23 #define HID_USAGE_PAGE_DESKTOP 0x01
24 #define HID_USAGE 0x09
25 #define HID_USAGE_X 0x30
26 #define HID_USAGE_Y 0x31
27 #define HID_USAGE_X_TILT 0x3d
28 #define HID_USAGE_Y_TILT 0x3e
29 #define HID_USAGE_FINGER 0x22
30 #define HID_USAGE_STYLUS 0x20
31 #define HID_COLLECTION 0xc0
39 struct hid_descriptor
{
40 struct usb_descriptor_header header
;
45 __le16 wDescriptorLength
;
46 } __attribute__ ((packed
));
48 /* defines to get/set USB message */
49 #define USB_REQ_GET_REPORT 0x01
50 #define USB_REQ_SET_REPORT 0x09
52 #define WAC_HID_FEATURE_REPORT 0x03
53 #define WAC_MSG_RETRIES 5
55 #define WAC_CMD_LED_CONTROL 0x20
56 #define WAC_CMD_ICON_START 0x21
57 #define WAC_CMD_ICON_XFER 0x23
58 #define WAC_CMD_RETRIES 10
60 static int wacom_get_report(struct usb_interface
*intf
, u8 type
, u8 id
,
61 void *buf
, size_t size
, unsigned int retries
)
63 struct usb_device
*dev
= interface_to_usbdev(intf
);
67 retval
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0),
69 USB_TYPE_CLASS
| USB_RECIP_INTERFACE
,
71 intf
->altsetting
[0].desc
.bInterfaceNumber
,
73 } while ((retval
== -ETIMEDOUT
|| retval
== -EPIPE
) && --retries
);
78 static int wacom_set_report(struct usb_interface
*intf
, u8 type
, u8 id
,
79 void *buf
, size_t size
, unsigned int retries
)
81 struct usb_device
*dev
= interface_to_usbdev(intf
);
85 retval
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
87 USB_TYPE_CLASS
| USB_RECIP_INTERFACE
,
89 intf
->altsetting
[0].desc
.bInterfaceNumber
,
91 } while ((retval
== -ETIMEDOUT
|| retval
== -EPIPE
) && --retries
);
96 static void wacom_sys_irq(struct urb
*urb
)
98 struct wacom
*wacom
= urb
->context
;
101 switch (urb
->status
) {
108 /* this urb is terminated, clean up */
109 dbg("%s - urb shutting down with status: %d", __func__
, urb
->status
);
112 dbg("%s - nonzero urb status received: %d", __func__
, urb
->status
);
116 wacom_wac_irq(&wacom
->wacom_wac
, urb
->actual_length
);
119 usb_mark_last_busy(wacom
->usbdev
);
120 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
122 err ("%s - usb_submit_urb failed with result %d",
126 static int wacom_open(struct input_dev
*dev
)
128 struct wacom
*wacom
= input_get_drvdata(dev
);
131 if (usb_autopm_get_interface(wacom
->intf
) < 0)
134 mutex_lock(&wacom
->lock
);
136 if (usb_submit_urb(wacom
->irq
, GFP_KERNEL
)) {
142 wacom
->intf
->needs_remote_wakeup
= 1;
145 mutex_unlock(&wacom
->lock
);
146 usb_autopm_put_interface(wacom
->intf
);
150 static void wacom_close(struct input_dev
*dev
)
152 struct wacom
*wacom
= input_get_drvdata(dev
);
155 autopm_error
= usb_autopm_get_interface(wacom
->intf
);
157 mutex_lock(&wacom
->lock
);
158 usb_kill_urb(wacom
->irq
);
160 wacom
->intf
->needs_remote_wakeup
= 0;
161 mutex_unlock(&wacom
->lock
);
164 usb_autopm_put_interface(wacom
->intf
);
167 static int wacom_parse_hid(struct usb_interface
*intf
, struct hid_descriptor
*hid_desc
,
168 struct wacom_features
*features
)
170 struct usb_device
*dev
= interface_to_usbdev(intf
);
172 /* result has to be defined as int for some devices */
174 int i
= 0, usage
= WCM_UNDEFINED
, finger
= 0, pen
= 0;
175 unsigned char *report
;
177 report
= kzalloc(hid_desc
->wDescriptorLength
, GFP_KERNEL
);
181 /* retrive report descriptors */
183 result
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0),
184 USB_REQ_GET_DESCRIPTOR
,
185 USB_RECIP_INTERFACE
| USB_DIR_IN
,
186 HID_DEVICET_REPORT
<< 8,
187 intf
->altsetting
[0].desc
.bInterfaceNumber
, /* interface */
189 hid_desc
->wDescriptorLength
,
191 } while (result
< 0 && limit
++ < WAC_MSG_RETRIES
);
193 /* No need to parse the Descriptor. It isn't an error though */
197 for (i
= 0; i
< hid_desc
->wDescriptorLength
; i
++) {
201 switch (report
[i
+ 1]) {
202 case HID_USAGE_PAGE_DIGITIZER
:
203 usage
= WCM_DIGITIZER
;
207 case HID_USAGE_PAGE_DESKTOP
:
215 switch (report
[i
+ 1]) {
217 if (usage
== WCM_DESKTOP
) {
219 features
->device_type
= BTN_TOOL_FINGER
;
220 if (features
->type
== TABLETPC2FG
) {
221 /* need to reset back */
222 features
->pktlen
= WACOM_PKGLEN_TPC2FG
;
223 features
->device_type
= BTN_TOOL_DOUBLETAP
;
225 if (features
->type
== BAMBOO_PT
) {
226 /* need to reset back */
227 features
->pktlen
= WACOM_PKGLEN_BBTOUCH
;
228 features
->device_type
= BTN_TOOL_DOUBLETAP
;
230 get_unaligned_le16(&report
[i
+ 5]);
232 get_unaligned_le16(&report
[i
+ 8]);
236 get_unaligned_le16(&report
[i
+ 3]);
238 get_unaligned_le16(&report
[i
+ 6]);
239 features
->unit
= report
[i
+ 9];
240 features
->unitExpo
= report
[i
+ 11];
244 /* penabled only accepts exact bytes of data */
245 if (features
->type
== TABLETPC2FG
)
246 features
->pktlen
= WACOM_PKGLEN_GRAPHIRE
;
247 if (features
->type
== BAMBOO_PT
)
248 features
->pktlen
= WACOM_PKGLEN_BBFUN
;
249 features
->device_type
= BTN_TOOL_PEN
;
251 get_unaligned_le16(&report
[i
+ 3]);
258 if (usage
== WCM_DESKTOP
) {
260 features
->device_type
= BTN_TOOL_FINGER
;
261 if (features
->type
== TABLETPC2FG
) {
262 /* need to reset back */
263 features
->pktlen
= WACOM_PKGLEN_TPC2FG
;
264 features
->device_type
= BTN_TOOL_DOUBLETAP
;
266 get_unaligned_le16(&report
[i
+ 3]);
268 get_unaligned_le16(&report
[i
+ 6]);
270 } else if (features
->type
== BAMBOO_PT
) {
271 /* need to reset back */
272 features
->pktlen
= WACOM_PKGLEN_BBTOUCH
;
273 features
->device_type
= BTN_TOOL_DOUBLETAP
;
275 get_unaligned_le16(&report
[i
+ 3]);
277 get_unaligned_le16(&report
[i
+ 6]);
283 get_unaligned_le16(&report
[i
+ 3]);
287 /* penabled only accepts exact bytes of data */
288 if (features
->type
== TABLETPC2FG
)
289 features
->pktlen
= WACOM_PKGLEN_GRAPHIRE
;
290 if (features
->type
== BAMBOO_PT
)
291 features
->pktlen
= WACOM_PKGLEN_BBFUN
;
292 features
->device_type
= BTN_TOOL_PEN
;
294 get_unaligned_le16(&report
[i
+ 3]);
300 case HID_USAGE_FINGER
:
305 case HID_USAGE_STYLUS
:
313 /* reset UsagePage and Finger */
325 static int wacom_query_tablet_data(struct usb_interface
*intf
, struct wacom_features
*features
)
327 unsigned char *rep_data
;
328 int limit
= 0, report_id
= 2;
331 rep_data
= kmalloc(4, GFP_KERNEL
);
335 /* ask to report tablet data if it is MT Tablet PC or
337 if (features
->type
== TABLETPC2FG
) {
344 error
= wacom_set_report(intf
, WAC_HID_FEATURE_REPORT
,
345 report_id
, rep_data
, 4, 1);
347 error
= wacom_get_report(intf
,
348 WAC_HID_FEATURE_REPORT
,
349 report_id
, rep_data
, 4, 1);
350 } while ((error
< 0 || rep_data
[1] != 4) && limit
++ < WAC_MSG_RETRIES
);
351 } else if (features
->type
!= TABLETPC
) {
355 error
= wacom_set_report(intf
, WAC_HID_FEATURE_REPORT
,
356 report_id
, rep_data
, 2, 1);
358 error
= wacom_get_report(intf
,
359 WAC_HID_FEATURE_REPORT
,
360 report_id
, rep_data
, 2, 1);
361 } while ((error
< 0 || rep_data
[1] != 2) && limit
++ < WAC_MSG_RETRIES
);
366 return error
< 0 ? error
: 0;
369 static int wacom_retrieve_hid_descriptor(struct usb_interface
*intf
,
370 struct wacom_features
*features
)
373 struct usb_host_interface
*interface
= intf
->cur_altsetting
;
374 struct hid_descriptor
*hid_desc
;
376 /* default features */
377 features
->device_type
= BTN_TOOL_PEN
;
378 features
->x_fuzz
= 4;
379 features
->y_fuzz
= 4;
380 features
->pressure_fuzz
= 0;
381 features
->distance_fuzz
= 0;
383 /* only Tablet PCs and Bamboo P&T need to retrieve the info */
384 if ((features
->type
!= TABLETPC
) && (features
->type
!= TABLETPC2FG
) &&
385 (features
->type
!= BAMBOO_PT
))
388 if (usb_get_extra_descriptor(interface
, HID_DEVICET_HID
, &hid_desc
)) {
389 if (usb_get_extra_descriptor(&interface
->endpoint
[0],
390 HID_DEVICET_REPORT
, &hid_desc
)) {
391 printk("wacom: can not retrieve extra class descriptor\n");
396 error
= wacom_parse_hid(intf
, hid_desc
, features
);
404 struct wacom_usbdev_data
{
405 struct list_head list
;
407 struct usb_device
*dev
;
408 struct wacom_shared shared
;
411 static LIST_HEAD(wacom_udev_list
);
412 static DEFINE_MUTEX(wacom_udev_list_lock
);
414 static struct wacom_usbdev_data
*wacom_get_usbdev_data(struct usb_device
*dev
)
416 struct wacom_usbdev_data
*data
;
418 list_for_each_entry(data
, &wacom_udev_list
, list
) {
419 if (data
->dev
== dev
) {
420 kref_get(&data
->kref
);
428 static int wacom_add_shared_data(struct wacom_wac
*wacom
,
429 struct usb_device
*dev
)
431 struct wacom_usbdev_data
*data
;
434 mutex_lock(&wacom_udev_list_lock
);
436 data
= wacom_get_usbdev_data(dev
);
438 data
= kzalloc(sizeof(struct wacom_usbdev_data
), GFP_KERNEL
);
444 kref_init(&data
->kref
);
446 list_add_tail(&data
->list
, &wacom_udev_list
);
449 wacom
->shared
= &data
->shared
;
452 mutex_unlock(&wacom_udev_list_lock
);
456 static void wacom_release_shared_data(struct kref
*kref
)
458 struct wacom_usbdev_data
*data
=
459 container_of(kref
, struct wacom_usbdev_data
, kref
);
461 mutex_lock(&wacom_udev_list_lock
);
462 list_del(&data
->list
);
463 mutex_unlock(&wacom_udev_list_lock
);
468 static void wacom_remove_shared_data(struct wacom_wac
*wacom
)
470 struct wacom_usbdev_data
*data
;
473 data
= container_of(wacom
->shared
, struct wacom_usbdev_data
, shared
);
474 kref_put(&data
->kref
, wacom_release_shared_data
);
475 wacom
->shared
= NULL
;
479 static int wacom_led_control(struct wacom
*wacom
)
484 buf
= kzalloc(9, GFP_KERNEL
);
488 if (wacom
->wacom_wac
.features
.type
== WACOM_21UX2
)
489 led
= (wacom
->led
.select
[1] << 4) | 0x40;
491 led
|= wacom
->led
.select
[0] | 0x4;
493 buf
[0] = WAC_CMD_LED_CONTROL
;
495 buf
[2] = wacom
->led
.llv
;
496 buf
[3] = wacom
->led
.hlv
;
497 buf
[4] = wacom
->led
.img_lum
;
499 retval
= wacom_set_report(wacom
->intf
, 0x03, WAC_CMD_LED_CONTROL
,
500 buf
, 9, WAC_CMD_RETRIES
);
506 static int wacom_led_putimage(struct wacom
*wacom
, int button_id
, const void *img
)
511 buf
= kzalloc(259, GFP_KERNEL
);
515 /* Send 'start' command */
516 buf
[0] = WAC_CMD_ICON_START
;
518 retval
= wacom_set_report(wacom
->intf
, 0x03, WAC_CMD_ICON_START
,
519 buf
, 2, WAC_CMD_RETRIES
);
523 buf
[0] = WAC_CMD_ICON_XFER
;
524 buf
[1] = button_id
& 0x07;
525 for (i
= 0; i
< 4; i
++) {
527 memcpy(buf
+ 3, img
+ i
* 256, 256);
529 retval
= wacom_set_report(wacom
->intf
, 0x03, WAC_CMD_ICON_XFER
,
530 buf
, 259, WAC_CMD_RETRIES
);
536 buf
[0] = WAC_CMD_ICON_START
;
538 wacom_set_report(wacom
->intf
, 0x03, WAC_CMD_ICON_START
,
539 buf
, 2, WAC_CMD_RETRIES
);
546 static ssize_t
wacom_led_select_store(struct device
*dev
, int set_id
,
547 const char *buf
, size_t count
)
549 struct wacom
*wacom
= dev_get_drvdata(dev
);
553 err
= kstrtouint(buf
, 10, &id
);
557 mutex_lock(&wacom
->lock
);
559 wacom
->led
.select
[set_id
] = id
& 0x3;
560 err
= wacom_led_control(wacom
);
562 mutex_unlock(&wacom
->lock
);
564 return err
< 0 ? err
: count
;
567 #define DEVICE_LED_SELECT_ATTR(SET_ID) \
568 static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
569 struct device_attribute *attr, const char *buf, size_t count) \
571 return wacom_led_select_store(dev, SET_ID, buf, count); \
573 static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
574 struct device_attribute *attr, char *buf) \
576 struct wacom *wacom = dev_get_drvdata(dev); \
577 return snprintf(buf, 2, "%d\n", wacom->led.select[SET_ID]); \
579 static DEVICE_ATTR(status_led##SET_ID##_select, S_IWUSR | S_IRUSR, \
580 wacom_led##SET_ID##_select_show, \
581 wacom_led##SET_ID##_select_store)
583 DEVICE_LED_SELECT_ATTR(0);
584 DEVICE_LED_SELECT_ATTR(1);
586 static ssize_t
wacom_luminance_store(struct wacom
*wacom
, u8
*dest
,
587 const char *buf
, size_t count
)
592 err
= kstrtouint(buf
, 10, &value
);
596 mutex_lock(&wacom
->lock
);
598 *dest
= value
& 0x7f;
599 err
= wacom_led_control(wacom
);
601 mutex_unlock(&wacom
->lock
);
603 return err
< 0 ? err
: count
;
606 #define DEVICE_LUMINANCE_ATTR(name, field) \
607 static ssize_t wacom_##name##_luminance_store(struct device *dev, \
608 struct device_attribute *attr, const char *buf, size_t count) \
610 struct wacom *wacom = dev_get_drvdata(dev); \
612 return wacom_luminance_store(wacom, &wacom->led.field, \
615 static DEVICE_ATTR(name##_luminance, S_IWUSR, \
616 NULL, wacom_##name##_luminance_store)
618 DEVICE_LUMINANCE_ATTR(status0
, llv
);
619 DEVICE_LUMINANCE_ATTR(status1
, hlv
);
620 DEVICE_LUMINANCE_ATTR(buttons
, img_lum
);
622 static ssize_t
wacom_button_image_store(struct device
*dev
, int button_id
,
623 const char *buf
, size_t count
)
625 struct wacom
*wacom
= dev_get_drvdata(dev
);
631 mutex_lock(&wacom
->lock
);
633 err
= wacom_led_putimage(wacom
, button_id
, buf
);
635 mutex_unlock(&wacom
->lock
);
637 return err
< 0 ? err
: count
;
640 #define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
641 static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
642 struct device_attribute *attr, const char *buf, size_t count) \
644 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
646 static DEVICE_ATTR(button##BUTTON_ID##_rawimg, S_IWUSR, \
647 NULL, wacom_btnimg##BUTTON_ID##_store)
649 DEVICE_BTNIMG_ATTR(0);
650 DEVICE_BTNIMG_ATTR(1);
651 DEVICE_BTNIMG_ATTR(2);
652 DEVICE_BTNIMG_ATTR(3);
653 DEVICE_BTNIMG_ATTR(4);
654 DEVICE_BTNIMG_ATTR(5);
655 DEVICE_BTNIMG_ATTR(6);
656 DEVICE_BTNIMG_ATTR(7);
658 static struct attribute
*cintiq_led_attrs
[] = {
659 &dev_attr_status_led0_select
.attr
,
660 &dev_attr_status_led1_select
.attr
,
664 static struct attribute_group cintiq_led_attr_group
= {
666 .attrs
= cintiq_led_attrs
,
669 static struct attribute
*intuos4_led_attrs
[] = {
670 &dev_attr_status0_luminance
.attr
,
671 &dev_attr_status1_luminance
.attr
,
672 &dev_attr_status_led0_select
.attr
,
673 &dev_attr_buttons_luminance
.attr
,
674 &dev_attr_button0_rawimg
.attr
,
675 &dev_attr_button1_rawimg
.attr
,
676 &dev_attr_button2_rawimg
.attr
,
677 &dev_attr_button3_rawimg
.attr
,
678 &dev_attr_button4_rawimg
.attr
,
679 &dev_attr_button5_rawimg
.attr
,
680 &dev_attr_button6_rawimg
.attr
,
681 &dev_attr_button7_rawimg
.attr
,
685 static struct attribute_group intuos4_led_attr_group
= {
687 .attrs
= intuos4_led_attrs
,
690 static int wacom_initialize_leds(struct wacom
*wacom
)
694 /* Initialize default values */
695 switch (wacom
->wacom_wac
.features
.type
) {
698 wacom
->led
.select
[0] = 0;
699 wacom
->led
.select
[1] = 0;
702 wacom
->led
.img_lum
= 10;
703 error
= sysfs_create_group(&wacom
->intf
->dev
.kobj
,
704 &intuos4_led_attr_group
);
708 wacom
->led
.select
[0] = 0;
709 wacom
->led
.select
[1] = 0;
712 wacom
->led
.img_lum
= 0;
714 error
= sysfs_create_group(&wacom
->intf
->dev
.kobj
,
715 &cintiq_led_attr_group
);
723 dev_err(&wacom
->intf
->dev
,
724 "cannot create sysfs group err: %d\n", error
);
727 wacom_led_control(wacom
);
732 static void wacom_destroy_leds(struct wacom
*wacom
)
734 switch (wacom
->wacom_wac
.features
.type
) {
737 sysfs_remove_group(&wacom
->intf
->dev
.kobj
,
738 &intuos4_led_attr_group
);
742 sysfs_remove_group(&wacom
->intf
->dev
.kobj
,
743 &cintiq_led_attr_group
);
748 static int wacom_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
750 struct usb_device
*dev
= interface_to_usbdev(intf
);
751 struct usb_endpoint_descriptor
*endpoint
;
753 struct wacom_wac
*wacom_wac
;
754 struct wacom_features
*features
;
755 struct input_dev
*input_dev
;
758 if (!id
->driver_info
)
761 wacom
= kzalloc(sizeof(struct wacom
), GFP_KERNEL
);
762 input_dev
= input_allocate_device();
763 if (!wacom
|| !input_dev
) {
768 wacom_wac
= &wacom
->wacom_wac
;
769 wacom_wac
->features
= *((struct wacom_features
*)id
->driver_info
);
770 features
= &wacom_wac
->features
;
771 if (features
->pktlen
> WACOM_PKGLEN_MAX
) {
776 wacom_wac
->data
= usb_alloc_coherent(dev
, WACOM_PKGLEN_MAX
,
777 GFP_KERNEL
, &wacom
->data_dma
);
778 if (!wacom_wac
->data
) {
783 wacom
->irq
= usb_alloc_urb(0, GFP_KERNEL
);
791 mutex_init(&wacom
->lock
);
792 usb_make_path(dev
, wacom
->phys
, sizeof(wacom
->phys
));
793 strlcat(wacom
->phys
, "/input0", sizeof(wacom
->phys
));
795 wacom_wac
->input
= input_dev
;
797 endpoint
= &intf
->cur_altsetting
->endpoint
[0].desc
;
799 /* Retrieve the physical and logical size for OEM devices */
800 error
= wacom_retrieve_hid_descriptor(intf
, features
);
804 wacom_setup_device_quirks(features
);
806 strlcpy(wacom_wac
->name
, features
->name
, sizeof(wacom_wac
->name
));
808 if (features
->quirks
& WACOM_QUIRK_MULTI_INPUT
) {
809 /* Append the device type to the name */
810 strlcat(wacom_wac
->name
,
811 features
->device_type
== BTN_TOOL_PEN
?
813 sizeof(wacom_wac
->name
));
815 error
= wacom_add_shared_data(wacom_wac
, dev
);
820 input_dev
->name
= wacom_wac
->name
;
821 input_dev
->dev
.parent
= &intf
->dev
;
822 input_dev
->open
= wacom_open
;
823 input_dev
->close
= wacom_close
;
824 usb_to_input_id(dev
, &input_dev
->id
);
825 input_set_drvdata(input_dev
, wacom
);
827 wacom_setup_input_capabilities(input_dev
, wacom_wac
);
829 usb_fill_int_urb(wacom
->irq
, dev
,
830 usb_rcvintpipe(dev
, endpoint
->bEndpointAddress
),
831 wacom_wac
->data
, features
->pktlen
,
832 wacom_sys_irq
, wacom
, endpoint
->bInterval
);
833 wacom
->irq
->transfer_dma
= wacom
->data_dma
;
834 wacom
->irq
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
836 error
= wacom_initialize_leds(wacom
);
840 error
= input_register_device(input_dev
);
844 /* Note that if query fails it is not a hard failure */
845 wacom_query_tablet_data(intf
, features
);
847 usb_set_intfdata(intf
, wacom
);
850 fail5
: wacom_destroy_leds(wacom
);
851 fail4
: wacom_remove_shared_data(wacom_wac
);
852 fail3
: usb_free_urb(wacom
->irq
);
853 fail2
: usb_free_coherent(dev
, WACOM_PKGLEN_MAX
, wacom_wac
->data
, wacom
->data_dma
);
854 fail1
: input_free_device(input_dev
);
859 static void wacom_disconnect(struct usb_interface
*intf
)
861 struct wacom
*wacom
= usb_get_intfdata(intf
);
863 usb_set_intfdata(intf
, NULL
);
865 usb_kill_urb(wacom
->irq
);
866 input_unregister_device(wacom
->wacom_wac
.input
);
867 wacom_destroy_leds(wacom
);
868 usb_free_urb(wacom
->irq
);
869 usb_free_coherent(interface_to_usbdev(intf
), WACOM_PKGLEN_MAX
,
870 wacom
->wacom_wac
.data
, wacom
->data_dma
);
871 wacom_remove_shared_data(&wacom
->wacom_wac
);
875 static int wacom_suspend(struct usb_interface
*intf
, pm_message_t message
)
877 struct wacom
*wacom
= usb_get_intfdata(intf
);
879 mutex_lock(&wacom
->lock
);
880 usb_kill_urb(wacom
->irq
);
881 mutex_unlock(&wacom
->lock
);
886 static int wacom_resume(struct usb_interface
*intf
)
888 struct wacom
*wacom
= usb_get_intfdata(intf
);
889 struct wacom_features
*features
= &wacom
->wacom_wac
.features
;
892 mutex_lock(&wacom
->lock
);
894 /* switch to wacom mode first */
895 wacom_query_tablet_data(intf
, features
);
896 wacom_led_control(wacom
);
898 if (wacom
->open
&& usb_submit_urb(wacom
->irq
, GFP_NOIO
) < 0)
901 mutex_unlock(&wacom
->lock
);
906 static int wacom_reset_resume(struct usb_interface
*intf
)
908 return wacom_resume(intf
);
911 static struct usb_driver wacom_driver
= {
913 .id_table
= wacom_ids
,
914 .probe
= wacom_probe
,
915 .disconnect
= wacom_disconnect
,
916 .suspend
= wacom_suspend
,
917 .resume
= wacom_resume
,
918 .reset_resume
= wacom_reset_resume
,
919 .supports_autosuspend
= 1,
922 static int __init
wacom_init(void)
926 result
= usb_register(&wacom_driver
);
928 printk(KERN_INFO KBUILD_MODNAME
": " DRIVER_VERSION
":"
933 static void __exit
wacom_exit(void)
935 usb_deregister(&wacom_driver
);
938 module_init(wacom_init
);
939 module_exit(wacom_exit
);