Input: wacom - isolate input registration
[linux-2.6/btrfs-unstable.git] / drivers / input / tablet / wacom_sys.c
blobf6da2f8a9c18a08f5de28aa04d97805a08251fd3
1 /*
2 * drivers/input/tablet/wacom_sys.c
4 * USB Wacom tablet support - system specific code
5 */
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.
14 #include "wacom_wac.h"
15 #include "wacom.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 0xa1
32 #define HID_COLLECTION_LOGICAL 0x02
33 #define HID_COLLECTION_END 0xc0
35 enum {
36 WCM_UNDEFINED = 0,
37 WCM_DESKTOP,
38 WCM_DIGITIZER,
41 struct 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));
50 /* defines to get/set USB message */
51 #define USB_REQ_GET_REPORT 0x01
52 #define USB_REQ_SET_REPORT 0x09
54 #define WAC_HID_FEATURE_REPORT 0x03
55 #define WAC_MSG_RETRIES 5
57 #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
62 static int wacom_get_report(struct usb_interface *intf, u8 type, u8 id,
63 void *buf, size_t size, unsigned int retries)
65 struct usb_device *dev = interface_to_usbdev(intf);
66 int retval;
68 do {
69 retval = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
70 USB_REQ_GET_REPORT,
71 USB_DIR_IN | USB_TYPE_CLASS |
72 USB_RECIP_INTERFACE,
73 (type << 8) + id,
74 intf->altsetting[0].desc.bInterfaceNumber,
75 buf, size, 100);
76 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
78 return retval;
81 static int wacom_set_report(struct usb_interface *intf, u8 type, u8 id,
82 void *buf, size_t size, unsigned int retries)
84 struct usb_device *dev = interface_to_usbdev(intf);
85 int retval;
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);
96 return retval;
99 static void wacom_sys_irq(struct urb *urb)
101 struct wacom *wacom = urb->context;
102 int retval;
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 */
112 dbg("%s - urb shutting down with status: %d", __func__, urb->status);
113 return;
114 default:
115 dbg("%s - nonzero urb status received: %d", __func__, urb->status);
116 goto exit;
119 wacom_wac_irq(&wacom->wacom_wac, urb->actual_length);
121 exit:
122 usb_mark_last_busy(wacom->usbdev);
123 retval = usb_submit_urb(urb, GFP_ATOMIC);
124 if (retval)
125 err ("%s - usb_submit_urb failed with result %d",
126 __func__, retval);
129 static int wacom_open(struct input_dev *dev)
131 struct wacom *wacom = input_get_drvdata(dev);
132 int retval = 0;
134 if (usb_autopm_get_interface(wacom->intf) < 0)
135 return -EIO;
137 mutex_lock(&wacom->lock);
139 if (usb_submit_urb(wacom->irq, GFP_KERNEL)) {
140 retval = -EIO;
141 goto out;
144 wacom->open = true;
145 wacom->intf->needs_remote_wakeup = 1;
147 out:
148 mutex_unlock(&wacom->lock);
149 usb_autopm_put_interface(wacom->intf);
150 return retval;
153 static void wacom_close(struct input_dev *dev)
155 struct wacom *wacom = input_get_drvdata(dev);
156 int autopm_error;
158 autopm_error = usb_autopm_get_interface(wacom->intf);
160 mutex_lock(&wacom->lock);
161 usb_kill_urb(wacom->irq);
162 wacom->open = false;
163 wacom->intf->needs_remote_wakeup = 0;
164 mutex_unlock(&wacom->lock);
166 if (!autopm_error)
167 usb_autopm_put_interface(wacom->intf);
170 static int wacom_parse_logical_collection(unsigned char *report,
171 struct wacom_features *features)
173 int length = 0;
175 if (features->type == BAMBOO_PT) {
177 /* Logical collection is only used by 3rd gen Bamboo Touch */
178 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
179 features->device_type = BTN_TOOL_FINGER;
182 * Stylus and Touch have same active area
183 * so compute physical size based on stylus
184 * data before its overwritten.
186 features->x_phy =
187 (features->x_max * features->x_resolution) / 100;
188 features->y_phy =
189 (features->y_max * features->y_resolution) / 100;
191 features->x_max = features->y_max =
192 get_unaligned_le16(&report[10]);
194 length = 11;
196 return length;
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.
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.
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.
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.
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.
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.
232 static int wacom_parse_hid(struct usb_interface *intf,
233 struct hid_descriptor *hid_desc,
234 struct wacom_features *features)
236 struct usb_device *dev = interface_to_usbdev(intf);
237 char limit = 0;
238 /* result has to be defined as int for some devices */
239 int result = 0;
240 int i = 0, usage = WCM_UNDEFINED, finger = 0, pen = 0;
241 unsigned char *report;
243 report = kzalloc(hid_desc->wDescriptorLength, GFP_KERNEL);
244 if (!report)
245 return -ENOMEM;
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 */
257 } while (result < 0 && limit++ < WAC_MSG_RETRIES);
259 /* No need to parse the Descriptor. It isn't an error though */
260 if (result < 0)
261 goto out;
263 for (i = 0; i < hid_desc->wDescriptorLength; i++) {
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;
273 case HID_USAGE_PAGE_DESKTOP:
274 usage = WCM_DESKTOP;
275 i++;
276 break;
278 break;
280 case HID_USAGE:
281 switch (report[i + 1]) {
282 case HID_USAGE_X:
283 if (usage == WCM_DESKTOP) {
284 if (finger) {
285 features->device_type = BTN_TOOL_FINGER;
286 if (features->type == TABLETPC2FG) {
287 /* need to reset back */
288 features->pktlen = WACOM_PKGLEN_TPC2FG;
290 if (features->type == BAMBOO_PT) {
291 /* need to reset back */
292 features->pktlen = WACOM_PKGLEN_BBTOUCH;
293 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;
307 } else if (pen) {
308 /* penabled only accepts exact bytes of data */
309 if (features->type == TABLETPC2FG)
310 features->pktlen = WACOM_PKGLEN_GRAPHIRE;
311 features->device_type = BTN_TOOL_PEN;
312 features->x_max =
313 get_unaligned_le16(&report[i + 3]);
314 i += 4;
317 break;
319 case HID_USAGE_Y:
320 if (usage == WCM_DESKTOP) {
321 if (finger) {
322 features->device_type = BTN_TOOL_FINGER;
323 if (features->type == TABLETPC2FG) {
324 /* need to reset back */
325 features->pktlen = WACOM_PKGLEN_TPC2FG;
326 features->y_max =
327 get_unaligned_le16(&report[i + 3]);
328 features->y_phy =
329 get_unaligned_le16(&report[i + 6]);
330 i += 7;
331 } else if (features->type == BAMBOO_PT) {
332 /* need to reset back */
333 features->pktlen = WACOM_PKGLEN_BBTOUCH;
334 features->y_phy =
335 get_unaligned_le16(&report[i + 3]);
336 features->y_max =
337 get_unaligned_le16(&report[i + 6]);
338 i += 12;
339 } else {
340 features->y_max =
341 features->x_max;
342 features->y_phy =
343 get_unaligned_le16(&report[i + 3]);
344 i += 4;
346 } else if (pen) {
347 /* penabled only accepts exact bytes of data */
348 if (features->type == TABLETPC2FG)
349 features->pktlen = WACOM_PKGLEN_GRAPHIRE;
350 features->device_type = BTN_TOOL_PEN;
351 features->y_max =
352 get_unaligned_le16(&report[i + 3]);
353 i += 4;
356 break;
358 case HID_USAGE_FINGER:
359 finger = 1;
360 i++;
361 break;
364 * Requiring Stylus Usage will ignore boot mouse
365 * X/Y values and some cases of invalid Digitizer X/Y
366 * values commonly reported.
368 case HID_USAGE_STYLUS:
369 pen = 1;
370 i++;
371 break;
373 break;
375 case HID_COLLECTION_END:
376 /* reset UsagePage and Finger */
377 finger = usage = 0;
378 break;
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;
388 break;
392 out:
393 result = 0;
394 kfree(report);
395 return result;
398 static int wacom_query_tablet_data(struct usb_interface *intf, struct wacom_features *features)
400 unsigned char *rep_data;
401 int limit = 0, report_id = 2;
402 int error = -ENOMEM;
404 rep_data = kmalloc(4, GFP_KERNEL);
405 if (!rep_data)
406 return error;
408 /* ask to report tablet data if it is MT Tablet PC or
409 * not a Tablet PC */
410 if (features->type == TABLETPC2FG) {
411 do {
412 rep_data[0] = 3;
413 rep_data[1] = 4;
414 rep_data[2] = 0;
415 rep_data[3] = 0;
416 report_id = 3;
417 error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT,
418 report_id, rep_data, 4, 1);
419 if (error >= 0)
420 error = wacom_get_report(intf,
421 WAC_HID_FEATURE_REPORT,
422 report_id, rep_data, 4, 1);
423 } while ((error < 0 || rep_data[1] != 4) && limit++ < WAC_MSG_RETRIES);
424 } else if (features->type != TABLETPC &&
425 features->device_type == BTN_TOOL_PEN) {
426 do {
427 rep_data[0] = 2;
428 rep_data[1] = 2;
429 error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT,
430 report_id, rep_data, 2, 1);
431 if (error >= 0)
432 error = wacom_get_report(intf,
433 WAC_HID_FEATURE_REPORT,
434 report_id, rep_data, 2, 1);
435 } while ((error < 0 || rep_data[1] != 2) && limit++ < WAC_MSG_RETRIES);
438 kfree(rep_data);
440 return error < 0 ? error : 0;
443 static int wacom_retrieve_hid_descriptor(struct usb_interface *intf,
444 struct wacom_features *features)
446 int error = 0;
447 struct usb_host_interface *interface = intf->cur_altsetting;
448 struct hid_descriptor *hid_desc;
450 /* default features */
451 features->device_type = BTN_TOOL_PEN;
452 features->x_fuzz = 4;
453 features->y_fuzz = 4;
454 features->pressure_fuzz = 0;
455 features->distance_fuzz = 0;
457 /* only Tablet PCs and Bamboo P&T need to retrieve the info */
458 if ((features->type != TABLETPC) && (features->type != TABLETPC2FG) &&
459 (features->type != BAMBOO_PT))
460 goto out;
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;
470 error = wacom_parse_hid(intf, hid_desc, features);
471 if (error)
472 goto out;
474 out:
475 return error;
478 struct wacom_usbdev_data {
479 struct list_head list;
480 struct kref kref;
481 struct usb_device *dev;
482 struct wacom_shared shared;
485 static LIST_HEAD(wacom_udev_list);
486 static DEFINE_MUTEX(wacom_udev_list_lock);
488 static struct wacom_usbdev_data *wacom_get_usbdev_data(struct usb_device *dev)
490 struct wacom_usbdev_data *data;
492 list_for_each_entry(data, &wacom_udev_list, list) {
493 if (data->dev == dev) {
494 kref_get(&data->kref);
495 return data;
499 return NULL;
502 static int wacom_add_shared_data(struct wacom_wac *wacom,
503 struct usb_device *dev)
505 struct wacom_usbdev_data *data;
506 int retval = 0;
508 mutex_lock(&wacom_udev_list_lock);
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;
518 kref_init(&data->kref);
519 data->dev = dev;
520 list_add_tail(&data->list, &wacom_udev_list);
523 wacom->shared = &data->shared;
525 out:
526 mutex_unlock(&wacom_udev_list_lock);
527 return retval;
530 static void wacom_release_shared_data(struct kref *kref)
532 struct wacom_usbdev_data *data =
533 container_of(kref, struct wacom_usbdev_data, kref);
535 mutex_lock(&wacom_udev_list_lock);
536 list_del(&data->list);
537 mutex_unlock(&wacom_udev_list_lock);
539 kfree(data);
542 static void wacom_remove_shared_data(struct wacom_wac *wacom)
544 struct wacom_usbdev_data *data;
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;
553 static int wacom_led_control(struct wacom *wacom)
555 unsigned char *buf;
556 int retval, led = 0;
558 buf = kzalloc(9, GFP_KERNEL);
559 if (!buf)
560 return -ENOMEM;
562 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
563 wacom->wacom_wac.features.type == WACOM_24HD)
564 led = (wacom->led.select[1] << 4) | 0x40;
566 led |= wacom->led.select[0] | 0x4;
568 buf[0] = WAC_CMD_LED_CONTROL;
569 buf[1] = led;
570 buf[2] = wacom->led.llv;
571 buf[3] = wacom->led.hlv;
572 buf[4] = wacom->led.img_lum;
574 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_LED_CONTROL,
575 buf, 9, WAC_CMD_RETRIES);
576 kfree(buf);
578 return retval;
581 static int wacom_led_putimage(struct wacom *wacom, int button_id, const void *img)
583 unsigned char *buf;
584 int i, retval;
586 buf = kzalloc(259, GFP_KERNEL);
587 if (!buf)
588 return -ENOMEM;
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;
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);
604 retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_XFER,
605 buf, 259, WAC_CMD_RETRIES);
606 if (retval < 0)
607 break;
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);
616 out:
617 kfree(buf);
618 return retval;
621 static ssize_t wacom_led_select_store(struct device *dev, int set_id,
622 const char *buf, size_t count)
624 struct wacom *wacom = dev_get_drvdata(dev);
625 unsigned int id;
626 int err;
628 err = kstrtouint(buf, 10, &id);
629 if (err)
630 return err;
632 mutex_lock(&wacom->lock);
634 wacom->led.select[set_id] = id & 0x3;
635 err = wacom_led_control(wacom);
637 mutex_unlock(&wacom->lock);
639 return err < 0 ? err : count;
642 #define DEVICE_LED_SELECT_ATTR(SET_ID) \
643 static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
644 struct device_attribute *attr, const char *buf, size_t count) \
646 return wacom_led_select_store(dev, SET_ID, buf, count); \
648 static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
649 struct device_attribute *attr, char *buf) \
651 struct wacom *wacom = dev_get_drvdata(dev); \
652 return snprintf(buf, 2, "%d\n", wacom->led.select[SET_ID]); \
654 static DEVICE_ATTR(status_led##SET_ID##_select, S_IWUSR | S_IRUSR, \
655 wacom_led##SET_ID##_select_show, \
656 wacom_led##SET_ID##_select_store)
658 DEVICE_LED_SELECT_ATTR(0);
659 DEVICE_LED_SELECT_ATTR(1);
661 static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
662 const char *buf, size_t count)
664 unsigned int value;
665 int err;
667 err = kstrtouint(buf, 10, &value);
668 if (err)
669 return err;
671 mutex_lock(&wacom->lock);
673 *dest = value & 0x7f;
674 err = wacom_led_control(wacom);
676 mutex_unlock(&wacom->lock);
678 return err < 0 ? err : count;
681 #define DEVICE_LUMINANCE_ATTR(name, field) \
682 static ssize_t wacom_##name##_luminance_store(struct device *dev, \
683 struct device_attribute *attr, const char *buf, size_t count) \
685 struct wacom *wacom = dev_get_drvdata(dev); \
687 return wacom_luminance_store(wacom, &wacom->led.field, \
688 buf, count); \
690 static DEVICE_ATTR(name##_luminance, S_IWUSR, \
691 NULL, wacom_##name##_luminance_store)
693 DEVICE_LUMINANCE_ATTR(status0, llv);
694 DEVICE_LUMINANCE_ATTR(status1, hlv);
695 DEVICE_LUMINANCE_ATTR(buttons, img_lum);
697 static ssize_t wacom_button_image_store(struct device *dev, int button_id,
698 const char *buf, size_t count)
700 struct wacom *wacom = dev_get_drvdata(dev);
701 int err;
703 if (count != 1024)
704 return -EINVAL;
706 mutex_lock(&wacom->lock);
708 err = wacom_led_putimage(wacom, button_id, buf);
710 mutex_unlock(&wacom->lock);
712 return err < 0 ? err : count;
715 #define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
716 static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
717 struct device_attribute *attr, const char *buf, size_t count) \
719 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
721 static DEVICE_ATTR(button##BUTTON_ID##_rawimg, S_IWUSR, \
722 NULL, wacom_btnimg##BUTTON_ID##_store)
724 DEVICE_BTNIMG_ATTR(0);
725 DEVICE_BTNIMG_ATTR(1);
726 DEVICE_BTNIMG_ATTR(2);
727 DEVICE_BTNIMG_ATTR(3);
728 DEVICE_BTNIMG_ATTR(4);
729 DEVICE_BTNIMG_ATTR(5);
730 DEVICE_BTNIMG_ATTR(6);
731 DEVICE_BTNIMG_ATTR(7);
733 static struct attribute *cintiq_led_attrs[] = {
734 &dev_attr_status_led0_select.attr,
735 &dev_attr_status_led1_select.attr,
736 NULL
739 static struct attribute_group cintiq_led_attr_group = {
740 .name = "wacom_led",
741 .attrs = cintiq_led_attrs,
744 static struct attribute *intuos4_led_attrs[] = {
745 &dev_attr_status0_luminance.attr,
746 &dev_attr_status1_luminance.attr,
747 &dev_attr_status_led0_select.attr,
748 &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
760 static struct attribute_group intuos4_led_attr_group = {
761 .name = "wacom_led",
762 .attrs = intuos4_led_attrs,
765 static int wacom_initialize_leds(struct wacom *wacom)
767 int error;
769 /* 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;
775 wacom->led.llv = 10;
776 wacom->led.hlv = 20;
777 wacom->led.img_lum = 10;
778 error = sysfs_create_group(&wacom->intf->dev.kobj,
779 &intuos4_led_attr_group);
780 break;
782 case WACOM_24HD:
783 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;
790 error = sysfs_create_group(&wacom->intf->dev.kobj,
791 &cintiq_led_attr_group);
792 break;
794 default:
795 return 0;
798 if (error) {
799 dev_err(&wacom->intf->dev,
800 "cannot create sysfs group err: %d\n", error);
801 return error;
803 wacom_led_control(wacom);
805 return 0;
808 static void wacom_destroy_leds(struct wacom *wacom)
810 switch (wacom->wacom_wac.features.type) {
811 case INTUOS4:
812 case INTUOS4L:
813 sysfs_remove_group(&wacom->intf->dev.kobj,
814 &intuos4_led_attr_group);
815 break;
817 case WACOM_24HD:
818 case WACOM_21UX2:
819 sysfs_remove_group(&wacom->intf->dev.kobj,
820 &cintiq_led_attr_group);
821 break;
825 static int wacom_register_input(struct wacom *wacom)
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;
833 input_dev = input_allocate_device();
834 if (!input_dev)
835 return -ENOMEM;
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);
844 wacom_wac->input = input_dev;
845 wacom_setup_input_capabilities(input_dev, wacom_wac);
847 error = input_register_device(input_dev);
848 if (error) {
849 input_free_device(input_dev);
850 wacom_wac->input = NULL;
853 return error;
856 static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *id)
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;
862 struct wacom_features *features;
863 int error;
865 if (!id->driver_info)
866 return -EINVAL;
868 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
870 wacom_wac = &wacom->wacom_wac;
871 wacom_wac->features = *((struct wacom_features *)id->driver_info);
872 features = &wacom_wac->features;
873 if (features->pktlen > WACOM_PKGLEN_MAX) {
874 error = -EINVAL;
875 goto fail1;
878 wacom_wac->data = usb_alloc_coherent(dev, WACOM_PKGLEN_MAX,
879 GFP_KERNEL, &wacom->data_dma);
880 if (!wacom_wac->data) {
881 error = -ENOMEM;
882 goto fail1;
885 wacom->irq = usb_alloc_urb(0, GFP_KERNEL);
886 if (!wacom->irq) {
887 error = -ENOMEM;
888 goto fail2;
891 wacom->usbdev = dev;
892 wacom->intf = intf;
893 mutex_init(&wacom->lock);
894 usb_make_path(dev, wacom->phys, sizeof(wacom->phys));
895 strlcat(wacom->phys, "/input0", sizeof(wacom->phys));
897 endpoint = &intf->cur_altsetting->endpoint[0].desc;
899 /* Retrieve the physical and logical size for OEM devices */
900 error = wacom_retrieve_hid_descriptor(intf, features);
901 if (error)
902 goto fail3;
904 wacom_setup_device_quirks(features);
906 strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
908 if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
909 /* 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));
915 error = wacom_add_shared_data(wacom_wac, dev);
916 if (error)
917 goto fail3;
920 usb_fill_int_urb(wacom->irq, dev,
921 usb_rcvintpipe(dev, endpoint->bEndpointAddress),
922 wacom_wac->data, features->pktlen,
923 wacom_sys_irq, wacom, endpoint->bInterval);
924 wacom->irq->transfer_dma = wacom->data_dma;
925 wacom->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
927 error = wacom_initialize_leds(wacom);
928 if (error)
929 goto fail4;
931 error = wacom_register_input(wacom);
932 if (error)
933 goto fail5;
935 /* Note that if query fails it is not a hard failure */
936 wacom_query_tablet_data(intf, features);
938 usb_set_intfdata(intf, wacom);
939 return 0;
941 fail5: wacom_destroy_leds(wacom);
942 fail4: wacom_remove_shared_data(wacom_wac);
943 fail3: usb_free_urb(wacom->irq);
944 fail2: usb_free_coherent(dev, WACOM_PKGLEN_MAX, wacom_wac->data, wacom->data_dma);
945 fail1: kfree(wacom);
946 return error;
949 static void wacom_disconnect(struct usb_interface *intf)
951 struct wacom *wacom = usb_get_intfdata(intf);
953 usb_set_intfdata(intf, NULL);
955 usb_kill_urb(wacom->irq);
956 input_unregister_device(wacom->wacom_wac.input);
957 wacom_destroy_leds(wacom);
958 usb_free_urb(wacom->irq);
959 usb_free_coherent(interface_to_usbdev(intf), WACOM_PKGLEN_MAX,
960 wacom->wacom_wac.data, wacom->data_dma);
961 wacom_remove_shared_data(&wacom->wacom_wac);
962 kfree(wacom);
965 static int wacom_suspend(struct usb_interface *intf, pm_message_t message)
967 struct wacom *wacom = usb_get_intfdata(intf);
969 mutex_lock(&wacom->lock);
970 usb_kill_urb(wacom->irq);
971 mutex_unlock(&wacom->lock);
973 return 0;
976 static int wacom_resume(struct usb_interface *intf)
978 struct wacom *wacom = usb_get_intfdata(intf);
979 struct wacom_features *features = &wacom->wacom_wac.features;
980 int rv = 0;
982 mutex_lock(&wacom->lock);
984 /* switch to wacom mode first */
985 wacom_query_tablet_data(intf, features);
986 wacom_led_control(wacom);
988 if (wacom->open && usb_submit_urb(wacom->irq, GFP_NOIO) < 0)
989 rv = -EIO;
991 mutex_unlock(&wacom->lock);
993 return rv;
996 static int wacom_reset_resume(struct usb_interface *intf)
998 return wacom_resume(intf);
1001 static struct usb_driver wacom_driver = {
1002 .name = "wacom",
1003 .id_table = wacom_ids,
1004 .probe = wacom_probe,
1005 .disconnect = wacom_disconnect,
1006 .suspend = wacom_suspend,
1007 .resume = wacom_resume,
1008 .reset_resume = wacom_reset_resume,
1009 .supports_autosuspend = 1,
1012 module_usb_driver(wacom_driver);