Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1 | /* |
Dmitry Torokhov | 4104d13 | 2007-05-07 16:16:29 -0400 | [diff] [blame] | 2 | * drivers/input/tablet/wacom_sys.c |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 3 | * |
Ping Cheng | 232f569 | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 4 | * USB Wacom tablet support - system specific code |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 5 | */ |
| 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 Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 14 | #include "wacom_wac.h" |
Dmitry Torokhov | 51269fe | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 15 | #include "wacom.h" |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 16 | |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 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 |
Ping Cheng | f393ee2 | 2012-04-29 21:09:17 -0700 | [diff] [blame] | 31 | #define HID_USAGE_CONTACTMAX 0x55 |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 32 | #define HID_COLLECTION 0xa1 |
| 33 | #define HID_COLLECTION_LOGICAL 0x02 |
| 34 | #define HID_COLLECTION_END 0xc0 |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 35 | |
| 36 | enum { |
| 37 | WCM_UNDEFINED = 0, |
| 38 | WCM_DESKTOP, |
| 39 | WCM_DIGITIZER, |
| 40 | }; |
| 41 | |
| 42 | struct 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 Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 52 | #define USB_REQ_GET_REPORT 0x01 |
| 53 | #define USB_REQ_SET_REPORT 0x09 |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 54 | |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 55 | #define WAC_HID_FEATURE_REPORT 0x03 |
Ping Cheng | a417ea4 | 2011-08-16 00:17:56 -0700 | [diff] [blame] | 56 | #define WAC_MSG_RETRIES 5 |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 57 | |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 58 | #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 | |
| 63 | static int wacom_get_report(struct usb_interface *intf, u8 type, u8 id, |
| 64 | void *buf, size_t size, unsigned int retries) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 65 | { |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 66 | 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 Bagwell | 6e8ec53 | 2011-10-26 22:24:22 -0700 | [diff] [blame] | 72 | USB_DIR_IN | USB_TYPE_CLASS | |
| 73 | USB_RECIP_INTERFACE, |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 74 | (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 Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 82 | static int wacom_set_report(struct usb_interface *intf, u8 type, u8 id, |
| 83 | void *buf, size_t size, unsigned int retries) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 84 | { |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 85 | 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 Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Adrian Bunk | 54c9b226 | 2006-11-20 03:23:58 +0100 | [diff] [blame] | 100 | static void wacom_sys_irq(struct urb *urb) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 101 | { |
| 102 | struct wacom *wacom = urb->context; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 103 | int retval; |
| 104 | |
| 105 | switch (urb->status) { |
| 106 | case 0: |
| 107 | /* success */ |
| 108 | break; |
| 109 | case -ECONNRESET: |
| 110 | case -ENOENT: |
| 111 | case -ESHUTDOWN: |
| 112 | /* this urb is terminated, clean up */ |
Harvey Harrison | ea3e6c5 | 2008-05-05 11:36:18 -0400 | [diff] [blame] | 113 | dbg("%s - urb shutting down with status: %d", __func__, urb->status); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 114 | return; |
| 115 | default: |
Harvey Harrison | ea3e6c5 | 2008-05-05 11:36:18 -0400 | [diff] [blame] | 116 | dbg("%s - nonzero urb status received: %d", __func__, urb->status); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 117 | goto exit; |
| 118 | } |
| 119 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 120 | wacom_wac_irq(&wacom->wacom_wac, urb->actual_length); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 121 | |
| 122 | exit: |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 123 | usb_mark_last_busy(wacom->usbdev); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 124 | retval = usb_submit_urb(urb, GFP_ATOMIC); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 125 | if (retval) |
| 126 | err ("%s - usb_submit_urb failed with result %d", |
Harvey Harrison | ea3e6c5 | 2008-05-05 11:36:18 -0400 | [diff] [blame] | 127 | __func__, retval); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 130 | static int wacom_open(struct input_dev *dev) |
| 131 | { |
Dmitry Torokhov | 7791bda | 2007-04-12 01:34:39 -0400 | [diff] [blame] | 132 | struct wacom *wacom = input_get_drvdata(dev); |
Dmitry Torokhov | f6cd378 | 2010-10-04 21:46:11 -0700 | [diff] [blame] | 133 | int retval = 0; |
| 134 | |
| 135 | if (usb_autopm_get_interface(wacom->intf) < 0) |
| 136 | return -EIO; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 137 | |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 138 | mutex_lock(&wacom->lock); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 139 | |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 140 | if (usb_submit_urb(wacom->irq, GFP_KERNEL)) { |
Dmitry Torokhov | f6cd378 | 2010-10-04 21:46:11 -0700 | [diff] [blame] | 141 | retval = -EIO; |
| 142 | goto out; |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 143 | } |
| 144 | |
Dmitry Torokhov | 51269fe | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 145 | wacom->open = true; |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 146 | wacom->intf->needs_remote_wakeup = 1; |
| 147 | |
Dmitry Torokhov | f6cd378 | 2010-10-04 21:46:11 -0700 | [diff] [blame] | 148 | out: |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 149 | mutex_unlock(&wacom->lock); |
Dmitry Torokhov | 62ecae0 | 2010-10-10 14:24:16 -0700 | [diff] [blame] | 150 | usb_autopm_put_interface(wacom->intf); |
Dmitry Torokhov | f6cd378 | 2010-10-04 21:46:11 -0700 | [diff] [blame] | 151 | return retval; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | static void wacom_close(struct input_dev *dev) |
| 155 | { |
Dmitry Torokhov | 7791bda | 2007-04-12 01:34:39 -0400 | [diff] [blame] | 156 | struct wacom *wacom = input_get_drvdata(dev); |
Dmitry Torokhov | 62ecae0 | 2010-10-10 14:24:16 -0700 | [diff] [blame] | 157 | int autopm_error; |
| 158 | |
| 159 | autopm_error = usb_autopm_get_interface(wacom->intf); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 160 | |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 161 | mutex_lock(&wacom->lock); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 162 | usb_kill_urb(wacom->irq); |
Dmitry Torokhov | 51269fe | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 163 | wacom->open = false; |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 164 | wacom->intf->needs_remote_wakeup = 0; |
| 165 | mutex_unlock(&wacom->lock); |
Dmitry Torokhov | f6cd378 | 2010-10-04 21:46:11 -0700 | [diff] [blame] | 166 | |
Dmitry Torokhov | 62ecae0 | 2010-10-10 14:24:16 -0700 | [diff] [blame] | 167 | if (!autopm_error) |
| 168 | usb_autopm_put_interface(wacom->intf); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 171 | /* |
| 172 | * Static values for max X/Y and resolution of Pen interface is stored in |
| 173 | * features. This mean physical size of active area can be computed. |
| 174 | * This is useful to do when Pen and Touch have same active area of tablet. |
| 175 | * This means for Touch device, we only need to find max X/Y value and we |
| 176 | * have enough information to compute resolution of touch. |
| 177 | */ |
| 178 | static void wacom_set_phy_from_res(struct wacom_features *features) |
| 179 | { |
| 180 | features->x_phy = (features->x_max * 100) / features->x_resolution; |
| 181 | features->y_phy = (features->y_max * 100) / features->y_resolution; |
| 182 | } |
| 183 | |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 184 | static int wacom_parse_logical_collection(unsigned char *report, |
| 185 | struct wacom_features *features) |
| 186 | { |
| 187 | int length = 0; |
| 188 | |
| 189 | if (features->type == BAMBOO_PT) { |
| 190 | |
| 191 | /* Logical collection is only used by 3rd gen Bamboo Touch */ |
| 192 | features->pktlen = WACOM_PKGLEN_BBTOUCH3; |
Ping Cheng | 8b4a0c1f | 2012-01-31 00:07:33 -0800 | [diff] [blame] | 193 | features->device_type = BTN_TOOL_FINGER; |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 194 | |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 195 | wacom_set_phy_from_res(features); |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 196 | |
| 197 | features->x_max = features->y_max = |
| 198 | get_unaligned_le16(&report[10]); |
| 199 | |
| 200 | length = 11; |
| 201 | } |
| 202 | return length; |
| 203 | } |
| 204 | |
Ping Cheng | f393ee2 | 2012-04-29 21:09:17 -0700 | [diff] [blame] | 205 | static void wacom_retrieve_report_data(struct usb_interface *intf, |
| 206 | struct wacom_features *features) |
| 207 | { |
| 208 | int result = 0; |
| 209 | unsigned char *rep_data; |
| 210 | |
| 211 | rep_data = kmalloc(2, GFP_KERNEL); |
| 212 | if (rep_data) { |
| 213 | |
| 214 | rep_data[0] = 12; |
| 215 | result = wacom_get_report(intf, WAC_HID_FEATURE_REPORT, |
| 216 | rep_data[0], &rep_data, 2, |
| 217 | WAC_MSG_RETRIES); |
| 218 | |
| 219 | if (result >= 0 && rep_data[1] > 2) |
| 220 | features->touch_max = rep_data[1]; |
| 221 | |
| 222 | kfree(rep_data); |
| 223 | } |
| 224 | } |
| 225 | |
Chris Bagwell | 428f858 | 2011-10-26 22:26:59 -0700 | [diff] [blame] | 226 | /* |
| 227 | * Interface Descriptor of wacom devices can be incomplete and |
| 228 | * inconsistent so wacom_features table is used to store stylus |
| 229 | * device's packet lengths, various maximum values, and tablet |
| 230 | * resolution based on product ID's. |
| 231 | * |
| 232 | * For devices that contain 2 interfaces, wacom_features table is |
| 233 | * inaccurate for the touch interface. Since the Interface Descriptor |
| 234 | * for touch interfaces has pretty complete data, this function exists |
| 235 | * to query tablet for this missing information instead of hard coding in |
| 236 | * an additional table. |
| 237 | * |
| 238 | * A typical Interface Descriptor for a stylus will contain a |
| 239 | * boot mouse application collection that is not of interest and this |
| 240 | * function will ignore it. |
| 241 | * |
| 242 | * It also contains a digitizer application collection that also is not |
| 243 | * of interest since any information it contains would be duplicate |
| 244 | * of what is in wacom_features. Usually it defines a report of an array |
| 245 | * of bytes that could be used as max length of the stylus packet returned. |
| 246 | * If it happens to define a Digitizer-Stylus Physical Collection then |
| 247 | * the X and Y logical values contain valid data but it is ignored. |
| 248 | * |
| 249 | * A typical Interface Descriptor for a touch interface will contain a |
| 250 | * Digitizer-Finger Physical Collection which will define both logical |
| 251 | * X/Y maximum as well as the physical size of tablet. Since touch |
| 252 | * interfaces haven't supported pressure or distance, this is enough |
| 253 | * information to override invalid values in the wacom_features table. |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 254 | * |
| 255 | * 3rd gen Bamboo Touch no longer define a Digitizer-Finger Pysical |
| 256 | * Collection. Instead they define a Logical Collection with a single |
| 257 | * Logical Maximum for both X and Y. |
Jason Gerecke | ae584ca | 2012-04-03 15:50:40 -0700 | [diff] [blame] | 258 | * |
| 259 | * Intuos5 touch interface does not contain useful data. We deal with |
| 260 | * this after returning from this function. |
Chris Bagwell | 428f858 | 2011-10-26 22:26:59 -0700 | [diff] [blame] | 261 | */ |
| 262 | static int wacom_parse_hid(struct usb_interface *intf, |
| 263 | struct hid_descriptor *hid_desc, |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 264 | struct wacom_features *features) |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 265 | { |
| 266 | struct usb_device *dev = interface_to_usbdev(intf); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 267 | char limit = 0; |
| 268 | /* result has to be defined as int for some devices */ |
| 269 | int result = 0; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 270 | int i = 0, usage = WCM_UNDEFINED, finger = 0, pen = 0; |
| 271 | unsigned char *report; |
| 272 | |
| 273 | report = kzalloc(hid_desc->wDescriptorLength, GFP_KERNEL); |
| 274 | if (!report) |
| 275 | return -ENOMEM; |
| 276 | |
| 277 | /* retrive report descriptors */ |
| 278 | do { |
| 279 | result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 280 | USB_REQ_GET_DESCRIPTOR, |
| 281 | USB_RECIP_INTERFACE | USB_DIR_IN, |
| 282 | HID_DEVICET_REPORT << 8, |
| 283 | intf->altsetting[0].desc.bInterfaceNumber, /* interface */ |
| 284 | report, |
| 285 | hid_desc->wDescriptorLength, |
| 286 | 5000); /* 5 secs */ |
Ping Cheng | a417ea4 | 2011-08-16 00:17:56 -0700 | [diff] [blame] | 287 | } while (result < 0 && limit++ < WAC_MSG_RETRIES); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 288 | |
Ping Cheng | 384318e | 2009-04-28 07:49:54 -0700 | [diff] [blame] | 289 | /* No need to parse the Descriptor. It isn't an error though */ |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 290 | if (result < 0) |
| 291 | goto out; |
| 292 | |
| 293 | for (i = 0; i < hid_desc->wDescriptorLength; i++) { |
| 294 | |
| 295 | switch (report[i]) { |
| 296 | case HID_USAGE_PAGE: |
| 297 | switch (report[i + 1]) { |
| 298 | case HID_USAGE_PAGE_DIGITIZER: |
| 299 | usage = WCM_DIGITIZER; |
| 300 | i++; |
| 301 | break; |
| 302 | |
| 303 | case HID_USAGE_PAGE_DESKTOP: |
| 304 | usage = WCM_DESKTOP; |
| 305 | i++; |
| 306 | break; |
| 307 | } |
| 308 | break; |
| 309 | |
| 310 | case HID_USAGE: |
| 311 | switch (report[i + 1]) { |
| 312 | case HID_USAGE_X: |
| 313 | if (usage == WCM_DESKTOP) { |
| 314 | if (finger) { |
Ping Cheng | 84eb5aa | 2011-03-12 20:35:18 -0800 | [diff] [blame] | 315 | features->device_type = BTN_TOOL_FINGER; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 316 | if (features->type == TABLETPC2FG) { |
| 317 | /* need to reset back */ |
| 318 | features->pktlen = WACOM_PKGLEN_TPC2FG; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 319 | } |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 320 | |
| 321 | if (features->type == MTSCREEN) |
| 322 | features->pktlen = WACOM_PKGLEN_MTOUCH; |
| 323 | |
Ping Cheng | 4a88081 | 2010-09-05 12:25:40 -0700 | [diff] [blame] | 324 | if (features->type == BAMBOO_PT) { |
| 325 | /* need to reset back */ |
| 326 | features->pktlen = WACOM_PKGLEN_BBTOUCH; |
Ping Cheng | 4a88081 | 2010-09-05 12:25:40 -0700 | [diff] [blame] | 327 | features->x_phy = |
| 328 | get_unaligned_le16(&report[i + 5]); |
| 329 | features->x_max = |
| 330 | get_unaligned_le16(&report[i + 8]); |
| 331 | i += 15; |
| 332 | } else { |
| 333 | features->x_max = |
| 334 | get_unaligned_le16(&report[i + 3]); |
| 335 | features->x_phy = |
| 336 | get_unaligned_le16(&report[i + 6]); |
| 337 | features->unit = report[i + 9]; |
| 338 | features->unitExpo = report[i + 11]; |
| 339 | i += 12; |
| 340 | } |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 341 | } else if (pen) { |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 342 | /* penabled only accepts exact bytes of data */ |
| 343 | if (features->type == TABLETPC2FG) |
Ping Cheng | 57e413d | 2010-03-01 23:50:24 -0800 | [diff] [blame] | 344 | features->pktlen = WACOM_PKGLEN_GRAPHIRE; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 345 | features->device_type = BTN_TOOL_PEN; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 346 | features->x_max = |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 347 | get_unaligned_le16(&report[i + 3]); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 348 | i += 4; |
| 349 | } |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 350 | } |
| 351 | break; |
| 352 | |
| 353 | case HID_USAGE_Y: |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 354 | if (usage == WCM_DESKTOP) { |
| 355 | if (finger) { |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 356 | int type = features->type; |
| 357 | |
| 358 | if (type == TABLETPC2FG || type == MTSCREEN) { |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 359 | features->y_max = |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 360 | get_unaligned_le16(&report[i + 3]); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 361 | features->y_phy = |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 362 | get_unaligned_le16(&report[i + 6]); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 363 | i += 7; |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 364 | } else if (type == BAMBOO_PT) { |
Ping Cheng | 4a88081 | 2010-09-05 12:25:40 -0700 | [diff] [blame] | 365 | features->y_phy = |
| 366 | get_unaligned_le16(&report[i + 3]); |
| 367 | features->y_max = |
| 368 | get_unaligned_le16(&report[i + 6]); |
| 369 | i += 12; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 370 | } else { |
| 371 | features->y_max = |
| 372 | features->x_max; |
| 373 | features->y_phy = |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 374 | get_unaligned_le16(&report[i + 3]); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 375 | i += 4; |
| 376 | } |
| 377 | } else if (pen) { |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 378 | features->y_max = |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 379 | get_unaligned_le16(&report[i + 3]); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 380 | i += 4; |
| 381 | } |
| 382 | } |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 383 | break; |
| 384 | |
| 385 | case HID_USAGE_FINGER: |
| 386 | finger = 1; |
| 387 | i++; |
| 388 | break; |
| 389 | |
Chris Bagwell | 428f858 | 2011-10-26 22:26:59 -0700 | [diff] [blame] | 390 | /* |
| 391 | * Requiring Stylus Usage will ignore boot mouse |
| 392 | * X/Y values and some cases of invalid Digitizer X/Y |
| 393 | * values commonly reported. |
| 394 | */ |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 395 | case HID_USAGE_STYLUS: |
| 396 | pen = 1; |
| 397 | i++; |
| 398 | break; |
Ping Cheng | f393ee2 | 2012-04-29 21:09:17 -0700 | [diff] [blame] | 399 | |
| 400 | case HID_USAGE_CONTACTMAX: |
| 401 | wacom_retrieve_report_data(intf, features); |
| 402 | i++; |
| 403 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 404 | } |
| 405 | break; |
| 406 | |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 407 | case HID_COLLECTION_END: |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 408 | /* reset UsagePage and Finger */ |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 409 | finger = usage = 0; |
| 410 | break; |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 411 | |
| 412 | case HID_COLLECTION: |
| 413 | i++; |
| 414 | switch (report[i]) { |
| 415 | case HID_COLLECTION_LOGICAL: |
| 416 | i += wacom_parse_logical_collection(&report[i], |
| 417 | features); |
| 418 | break; |
| 419 | } |
| 420 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 421 | } |
| 422 | } |
| 423 | |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 424 | out: |
Ping Cheng | 384318e | 2009-04-28 07:49:54 -0700 | [diff] [blame] | 425 | result = 0; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 426 | kfree(report); |
| 427 | return result; |
| 428 | } |
| 429 | |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 430 | static int wacom_query_tablet_data(struct usb_interface *intf, struct wacom_features *features) |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 431 | { |
| 432 | unsigned char *rep_data; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 433 | int limit = 0, report_id = 2; |
| 434 | int error = -ENOMEM; |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 435 | |
Ping Cheng | 3b48c91 | 2011-08-16 00:17:57 -0700 | [diff] [blame] | 436 | rep_data = kmalloc(4, GFP_KERNEL); |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 437 | if (!rep_data) |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 438 | return error; |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 439 | |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 440 | /* ask to report Wacom data */ |
| 441 | if (features->device_type == BTN_TOOL_FINGER) { |
| 442 | /* if it is an MT Tablet PC touch */ |
Ping Cheng | ea2e602 | 2012-06-12 00:14:12 -0700 | [diff] [blame] | 443 | if (features->type > TABLETPC) { |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 444 | do { |
| 445 | rep_data[0] = 3; |
| 446 | rep_data[1] = 4; |
| 447 | rep_data[2] = 0; |
| 448 | rep_data[3] = 0; |
| 449 | report_id = 3; |
| 450 | error = wacom_set_report(intf, |
| 451 | WAC_HID_FEATURE_REPORT, |
| 452 | report_id, |
| 453 | rep_data, 4, 1); |
| 454 | if (error >= 0) |
| 455 | error = wacom_get_report(intf, |
| 456 | WAC_HID_FEATURE_REPORT, |
| 457 | report_id, |
| 458 | rep_data, 4, 1); |
| 459 | } while ((error < 0 || rep_data[1] != 4) && |
| 460 | limit++ < WAC_MSG_RETRIES); |
| 461 | } |
Ping Cheng | ea2e602 | 2012-06-12 00:14:12 -0700 | [diff] [blame] | 462 | } else if (features->type <= BAMBOO_PT && |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 463 | features->type != WIRELESS && |
Chris Bagwell | 6e8ec53 | 2011-10-26 22:24:22 -0700 | [diff] [blame] | 464 | features->device_type == BTN_TOOL_PEN) { |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 465 | do { |
| 466 | rep_data[0] = 2; |
| 467 | rep_data[1] = 2; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 468 | error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT, |
| 469 | report_id, rep_data, 2, 1); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 470 | if (error >= 0) |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 471 | error = wacom_get_report(intf, |
| 472 | WAC_HID_FEATURE_REPORT, |
| 473 | report_id, rep_data, 2, 1); |
Ping Cheng | a417ea4 | 2011-08-16 00:17:56 -0700 | [diff] [blame] | 474 | } while ((error < 0 || rep_data[1] != 2) && limit++ < WAC_MSG_RETRIES); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 475 | } |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 476 | |
| 477 | kfree(rep_data); |
| 478 | |
| 479 | return error < 0 ? error : 0; |
| 480 | } |
| 481 | |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 482 | static int wacom_retrieve_hid_descriptor(struct usb_interface *intf, |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 483 | struct wacom_features *features) |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 484 | { |
| 485 | int error = 0; |
| 486 | struct usb_host_interface *interface = intf->cur_altsetting; |
| 487 | struct hid_descriptor *hid_desc; |
| 488 | |
Henrik Rydberg | fed87e6 | 2010-09-05 12:25:11 -0700 | [diff] [blame] | 489 | /* default features */ |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 490 | features->device_type = BTN_TOOL_PEN; |
Henrik Rydberg | fed87e6 | 2010-09-05 12:25:11 -0700 | [diff] [blame] | 491 | features->x_fuzz = 4; |
| 492 | features->y_fuzz = 4; |
| 493 | features->pressure_fuzz = 0; |
| 494 | features->distance_fuzz = 0; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 495 | |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 496 | /* |
| 497 | * The wireless device HID is basic and layout conflicts with |
| 498 | * other tablets (monitor and touch interface can look like pen). |
| 499 | * Skip the query for this type and modify defaults based on |
| 500 | * interface number. |
| 501 | */ |
| 502 | if (features->type == WIRELESS) { |
| 503 | if (intf->cur_altsetting->desc.bInterfaceNumber == 0) { |
| 504 | features->device_type = 0; |
| 505 | } else if (intf->cur_altsetting->desc.bInterfaceNumber == 2) { |
Ping Cheng | adad004 | 2012-06-28 16:48:17 -0700 | [diff] [blame^] | 506 | features->device_type = BTN_TOOL_FINGER; |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 507 | features->pktlen = WACOM_PKGLEN_BBTOUCH3; |
| 508 | } |
| 509 | } |
| 510 | |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 511 | /* only devices that support touch need to retrieve the info */ |
Ping Cheng | ea2e602 | 2012-06-12 00:14:12 -0700 | [diff] [blame] | 512 | if (features->type < BAMBOO_PT) { |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 513 | goto out; |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 514 | } |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 515 | |
Dmitry Torokhov | a882c93 | 2012-05-02 00:13:38 -0700 | [diff] [blame] | 516 | error = usb_get_extra_descriptor(interface, HID_DEVICET_HID, &hid_desc); |
| 517 | if (error) { |
| 518 | error = usb_get_extra_descriptor(&interface->endpoint[0], |
| 519 | HID_DEVICET_REPORT, &hid_desc); |
| 520 | if (error) { |
Dmitry Torokhov | eb71d1b | 2012-05-02 00:13:38 -0700 | [diff] [blame] | 521 | dev_err(&intf->dev, |
| 522 | "can not retrieve extra class descriptor\n"); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 523 | goto out; |
| 524 | } |
| 525 | } |
| 526 | error = wacom_parse_hid(intf, hid_desc, features); |
| 527 | if (error) |
| 528 | goto out; |
| 529 | |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 530 | out: |
| 531 | return error; |
| 532 | } |
| 533 | |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 534 | struct wacom_usbdev_data { |
| 535 | struct list_head list; |
| 536 | struct kref kref; |
| 537 | struct usb_device *dev; |
| 538 | struct wacom_shared shared; |
| 539 | }; |
| 540 | |
| 541 | static LIST_HEAD(wacom_udev_list); |
| 542 | static DEFINE_MUTEX(wacom_udev_list_lock); |
| 543 | |
| 544 | static struct wacom_usbdev_data *wacom_get_usbdev_data(struct usb_device *dev) |
| 545 | { |
| 546 | struct wacom_usbdev_data *data; |
| 547 | |
| 548 | list_for_each_entry(data, &wacom_udev_list, list) { |
| 549 | if (data->dev == dev) { |
| 550 | kref_get(&data->kref); |
| 551 | return data; |
| 552 | } |
| 553 | } |
| 554 | |
| 555 | return NULL; |
| 556 | } |
| 557 | |
| 558 | static int wacom_add_shared_data(struct wacom_wac *wacom, |
| 559 | struct usb_device *dev) |
| 560 | { |
| 561 | struct wacom_usbdev_data *data; |
| 562 | int retval = 0; |
| 563 | |
| 564 | mutex_lock(&wacom_udev_list_lock); |
| 565 | |
| 566 | data = wacom_get_usbdev_data(dev); |
| 567 | if (!data) { |
| 568 | data = kzalloc(sizeof(struct wacom_usbdev_data), GFP_KERNEL); |
| 569 | if (!data) { |
| 570 | retval = -ENOMEM; |
| 571 | goto out; |
| 572 | } |
| 573 | |
| 574 | kref_init(&data->kref); |
| 575 | data->dev = dev; |
| 576 | list_add_tail(&data->list, &wacom_udev_list); |
| 577 | } |
| 578 | |
| 579 | wacom->shared = &data->shared; |
| 580 | |
| 581 | out: |
| 582 | mutex_unlock(&wacom_udev_list_lock); |
| 583 | return retval; |
| 584 | } |
| 585 | |
| 586 | static void wacom_release_shared_data(struct kref *kref) |
| 587 | { |
| 588 | struct wacom_usbdev_data *data = |
| 589 | container_of(kref, struct wacom_usbdev_data, kref); |
| 590 | |
| 591 | mutex_lock(&wacom_udev_list_lock); |
| 592 | list_del(&data->list); |
| 593 | mutex_unlock(&wacom_udev_list_lock); |
| 594 | |
| 595 | kfree(data); |
| 596 | } |
| 597 | |
| 598 | static void wacom_remove_shared_data(struct wacom_wac *wacom) |
| 599 | { |
| 600 | struct wacom_usbdev_data *data; |
| 601 | |
| 602 | if (wacom->shared) { |
| 603 | data = container_of(wacom->shared, struct wacom_usbdev_data, shared); |
| 604 | kref_put(&data->kref, wacom_release_shared_data); |
| 605 | wacom->shared = NULL; |
| 606 | } |
| 607 | } |
| 608 | |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 609 | static int wacom_led_control(struct wacom *wacom) |
| 610 | { |
| 611 | unsigned char *buf; |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 612 | int retval; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 613 | |
| 614 | buf = kzalloc(9, GFP_KERNEL); |
| 615 | if (!buf) |
| 616 | return -ENOMEM; |
| 617 | |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 618 | if (wacom->wacom_wac.features.type >= INTUOS5S && |
| 619 | wacom->wacom_wac.features.type <= INTUOS5L) { |
| 620 | /* |
| 621 | * Touch Ring and crop mark LED luminance may take on |
| 622 | * one of four values: |
| 623 | * 0 = Low; 1 = Medium; 2 = High; 3 = Off |
| 624 | */ |
| 625 | int ring_led = wacom->led.select[0] & 0x03; |
| 626 | int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03; |
| 627 | int crop_lum = 0; |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 628 | |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 629 | buf[0] = WAC_CMD_LED_CONTROL; |
| 630 | buf[1] = (crop_lum << 4) | (ring_lum << 2) | (ring_led); |
| 631 | } |
| 632 | else { |
| 633 | int led = wacom->led.select[0] | 0x4; |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 634 | |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 635 | if (wacom->wacom_wac.features.type == WACOM_21UX2 || |
| 636 | wacom->wacom_wac.features.type == WACOM_24HD) |
| 637 | led |= (wacom->led.select[1] << 4) | 0x40; |
| 638 | |
| 639 | buf[0] = WAC_CMD_LED_CONTROL; |
| 640 | buf[1] = led; |
| 641 | buf[2] = wacom->led.llv; |
| 642 | buf[3] = wacom->led.hlv; |
| 643 | buf[4] = wacom->led.img_lum; |
| 644 | } |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 645 | |
| 646 | retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_LED_CONTROL, |
| 647 | buf, 9, WAC_CMD_RETRIES); |
| 648 | kfree(buf); |
| 649 | |
| 650 | return retval; |
| 651 | } |
| 652 | |
| 653 | static int wacom_led_putimage(struct wacom *wacom, int button_id, const void *img) |
| 654 | { |
| 655 | unsigned char *buf; |
| 656 | int i, retval; |
| 657 | |
| 658 | buf = kzalloc(259, GFP_KERNEL); |
| 659 | if (!buf) |
| 660 | return -ENOMEM; |
| 661 | |
| 662 | /* Send 'start' command */ |
| 663 | buf[0] = WAC_CMD_ICON_START; |
| 664 | buf[1] = 1; |
| 665 | retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START, |
| 666 | buf, 2, WAC_CMD_RETRIES); |
| 667 | if (retval < 0) |
| 668 | goto out; |
| 669 | |
| 670 | buf[0] = WAC_CMD_ICON_XFER; |
| 671 | buf[1] = button_id & 0x07; |
| 672 | for (i = 0; i < 4; i++) { |
| 673 | buf[2] = i; |
| 674 | memcpy(buf + 3, img + i * 256, 256); |
| 675 | |
| 676 | retval = wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_XFER, |
| 677 | buf, 259, WAC_CMD_RETRIES); |
| 678 | if (retval < 0) |
| 679 | break; |
| 680 | } |
| 681 | |
| 682 | /* Send 'stop' */ |
| 683 | buf[0] = WAC_CMD_ICON_START; |
| 684 | buf[1] = 0; |
| 685 | wacom_set_report(wacom->intf, 0x03, WAC_CMD_ICON_START, |
| 686 | buf, 2, WAC_CMD_RETRIES); |
| 687 | |
| 688 | out: |
| 689 | kfree(buf); |
| 690 | return retval; |
| 691 | } |
| 692 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 693 | static ssize_t wacom_led_select_store(struct device *dev, int set_id, |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 694 | const char *buf, size_t count) |
| 695 | { |
| 696 | struct wacom *wacom = dev_get_drvdata(dev); |
| 697 | unsigned int id; |
| 698 | int err; |
| 699 | |
| 700 | err = kstrtouint(buf, 10, &id); |
| 701 | if (err) |
| 702 | return err; |
| 703 | |
| 704 | mutex_lock(&wacom->lock); |
| 705 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 706 | wacom->led.select[set_id] = id & 0x3; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 707 | err = wacom_led_control(wacom); |
| 708 | |
| 709 | mutex_unlock(&wacom->lock); |
| 710 | |
| 711 | return err < 0 ? err : count; |
| 712 | } |
| 713 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 714 | #define DEVICE_LED_SELECT_ATTR(SET_ID) \ |
| 715 | static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \ |
| 716 | struct device_attribute *attr, const char *buf, size_t count) \ |
| 717 | { \ |
| 718 | return wacom_led_select_store(dev, SET_ID, buf, count); \ |
| 719 | } \ |
Ping Cheng | 04c59ab | 2011-10-04 23:51:49 -0700 | [diff] [blame] | 720 | static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \ |
| 721 | struct device_attribute *attr, char *buf) \ |
| 722 | { \ |
| 723 | struct wacom *wacom = dev_get_drvdata(dev); \ |
| 724 | return snprintf(buf, 2, "%d\n", wacom->led.select[SET_ID]); \ |
| 725 | } \ |
| 726 | static DEVICE_ATTR(status_led##SET_ID##_select, S_IWUSR | S_IRUSR, \ |
| 727 | wacom_led##SET_ID##_select_show, \ |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 728 | wacom_led##SET_ID##_select_store) |
| 729 | |
| 730 | DEVICE_LED_SELECT_ATTR(0); |
| 731 | DEVICE_LED_SELECT_ATTR(1); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 732 | |
| 733 | static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest, |
| 734 | const char *buf, size_t count) |
| 735 | { |
| 736 | unsigned int value; |
| 737 | int err; |
| 738 | |
| 739 | err = kstrtouint(buf, 10, &value); |
| 740 | if (err) |
| 741 | return err; |
| 742 | |
| 743 | mutex_lock(&wacom->lock); |
| 744 | |
| 745 | *dest = value & 0x7f; |
| 746 | err = wacom_led_control(wacom); |
| 747 | |
| 748 | mutex_unlock(&wacom->lock); |
| 749 | |
| 750 | return err < 0 ? err : count; |
| 751 | } |
| 752 | |
| 753 | #define DEVICE_LUMINANCE_ATTR(name, field) \ |
| 754 | static ssize_t wacom_##name##_luminance_store(struct device *dev, \ |
| 755 | struct device_attribute *attr, const char *buf, size_t count) \ |
| 756 | { \ |
| 757 | struct wacom *wacom = dev_get_drvdata(dev); \ |
| 758 | \ |
| 759 | return wacom_luminance_store(wacom, &wacom->led.field, \ |
| 760 | buf, count); \ |
| 761 | } \ |
| 762 | static DEVICE_ATTR(name##_luminance, S_IWUSR, \ |
| 763 | NULL, wacom_##name##_luminance_store) |
| 764 | |
| 765 | DEVICE_LUMINANCE_ATTR(status0, llv); |
| 766 | DEVICE_LUMINANCE_ATTR(status1, hlv); |
| 767 | DEVICE_LUMINANCE_ATTR(buttons, img_lum); |
| 768 | |
| 769 | static ssize_t wacom_button_image_store(struct device *dev, int button_id, |
| 770 | const char *buf, size_t count) |
| 771 | { |
| 772 | struct wacom *wacom = dev_get_drvdata(dev); |
| 773 | int err; |
| 774 | |
| 775 | if (count != 1024) |
| 776 | return -EINVAL; |
| 777 | |
| 778 | mutex_lock(&wacom->lock); |
| 779 | |
| 780 | err = wacom_led_putimage(wacom, button_id, buf); |
| 781 | |
| 782 | mutex_unlock(&wacom->lock); |
| 783 | |
| 784 | return err < 0 ? err : count; |
| 785 | } |
| 786 | |
| 787 | #define DEVICE_BTNIMG_ATTR(BUTTON_ID) \ |
| 788 | static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \ |
| 789 | struct device_attribute *attr, const char *buf, size_t count) \ |
| 790 | { \ |
| 791 | return wacom_button_image_store(dev, BUTTON_ID, buf, count); \ |
| 792 | } \ |
| 793 | static DEVICE_ATTR(button##BUTTON_ID##_rawimg, S_IWUSR, \ |
| 794 | NULL, wacom_btnimg##BUTTON_ID##_store) |
| 795 | |
| 796 | DEVICE_BTNIMG_ATTR(0); |
| 797 | DEVICE_BTNIMG_ATTR(1); |
| 798 | DEVICE_BTNIMG_ATTR(2); |
| 799 | DEVICE_BTNIMG_ATTR(3); |
| 800 | DEVICE_BTNIMG_ATTR(4); |
| 801 | DEVICE_BTNIMG_ATTR(5); |
| 802 | DEVICE_BTNIMG_ATTR(6); |
| 803 | DEVICE_BTNIMG_ATTR(7); |
| 804 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 805 | static struct attribute *cintiq_led_attrs[] = { |
| 806 | &dev_attr_status_led0_select.attr, |
| 807 | &dev_attr_status_led1_select.attr, |
| 808 | NULL |
| 809 | }; |
| 810 | |
| 811 | static struct attribute_group cintiq_led_attr_group = { |
| 812 | .name = "wacom_led", |
| 813 | .attrs = cintiq_led_attrs, |
| 814 | }; |
| 815 | |
| 816 | static struct attribute *intuos4_led_attrs[] = { |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 817 | &dev_attr_status0_luminance.attr, |
| 818 | &dev_attr_status1_luminance.attr, |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 819 | &dev_attr_status_led0_select.attr, |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 820 | &dev_attr_buttons_luminance.attr, |
| 821 | &dev_attr_button0_rawimg.attr, |
| 822 | &dev_attr_button1_rawimg.attr, |
| 823 | &dev_attr_button2_rawimg.attr, |
| 824 | &dev_attr_button3_rawimg.attr, |
| 825 | &dev_attr_button4_rawimg.attr, |
| 826 | &dev_attr_button5_rawimg.attr, |
| 827 | &dev_attr_button6_rawimg.attr, |
| 828 | &dev_attr_button7_rawimg.attr, |
| 829 | NULL |
| 830 | }; |
| 831 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 832 | static struct attribute_group intuos4_led_attr_group = { |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 833 | .name = "wacom_led", |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 834 | .attrs = intuos4_led_attrs, |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 835 | }; |
| 836 | |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 837 | static struct attribute *intuos5_led_attrs[] = { |
| 838 | &dev_attr_status0_luminance.attr, |
| 839 | &dev_attr_status_led0_select.attr, |
| 840 | NULL |
| 841 | }; |
| 842 | |
| 843 | static struct attribute_group intuos5_led_attr_group = { |
| 844 | .name = "wacom_led", |
| 845 | .attrs = intuos5_led_attrs, |
| 846 | }; |
| 847 | |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 848 | static int wacom_initialize_leds(struct wacom *wacom) |
| 849 | { |
| 850 | int error; |
| 851 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 852 | /* Initialize default values */ |
| 853 | switch (wacom->wacom_wac.features.type) { |
Jason Gerecke | a19fc98 | 2012-06-12 00:27:53 -0700 | [diff] [blame] | 854 | case INTUOS4S: |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 855 | case INTUOS4: |
| 856 | case INTUOS4L: |
| 857 | wacom->led.select[0] = 0; |
| 858 | wacom->led.select[1] = 0; |
Ping Cheng | f4fa9a6 | 2011-10-04 23:49:42 -0700 | [diff] [blame] | 859 | wacom->led.llv = 10; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 860 | wacom->led.hlv = 20; |
| 861 | wacom->led.img_lum = 10; |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 862 | error = sysfs_create_group(&wacom->intf->dev.kobj, |
| 863 | &intuos4_led_attr_group); |
| 864 | break; |
| 865 | |
Jason Gerecke | 246835f | 2011-12-12 00:12:04 -0800 | [diff] [blame] | 866 | case WACOM_24HD: |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 867 | case WACOM_21UX2: |
| 868 | wacom->led.select[0] = 0; |
| 869 | wacom->led.select[1] = 0; |
| 870 | wacom->led.llv = 0; |
| 871 | wacom->led.hlv = 0; |
| 872 | wacom->led.img_lum = 0; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 873 | |
| 874 | error = sysfs_create_group(&wacom->intf->dev.kobj, |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 875 | &cintiq_led_attr_group); |
| 876 | break; |
| 877 | |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 878 | case INTUOS5S: |
| 879 | case INTUOS5: |
| 880 | case INTUOS5L: |
| 881 | wacom->led.select[0] = 0; |
| 882 | wacom->led.select[1] = 0; |
| 883 | wacom->led.llv = 32; |
| 884 | wacom->led.hlv = 0; |
| 885 | wacom->led.img_lum = 0; |
| 886 | |
| 887 | error = sysfs_create_group(&wacom->intf->dev.kobj, |
| 888 | &intuos5_led_attr_group); |
| 889 | break; |
| 890 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 891 | default: |
| 892 | return 0; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 893 | } |
| 894 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 895 | if (error) { |
| 896 | dev_err(&wacom->intf->dev, |
| 897 | "cannot create sysfs group err: %d\n", error); |
| 898 | return error; |
| 899 | } |
| 900 | wacom_led_control(wacom); |
| 901 | |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 902 | return 0; |
| 903 | } |
| 904 | |
| 905 | static void wacom_destroy_leds(struct wacom *wacom) |
| 906 | { |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 907 | switch (wacom->wacom_wac.features.type) { |
Jason Gerecke | a19fc98 | 2012-06-12 00:27:53 -0700 | [diff] [blame] | 908 | case INTUOS4S: |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 909 | case INTUOS4: |
| 910 | case INTUOS4L: |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 911 | sysfs_remove_group(&wacom->intf->dev.kobj, |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 912 | &intuos4_led_attr_group); |
| 913 | break; |
| 914 | |
Jason Gerecke | 246835f | 2011-12-12 00:12:04 -0800 | [diff] [blame] | 915 | case WACOM_24HD: |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 916 | case WACOM_21UX2: |
| 917 | sysfs_remove_group(&wacom->intf->dev.kobj, |
| 918 | &cintiq_led_attr_group); |
| 919 | break; |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 920 | |
| 921 | case INTUOS5S: |
| 922 | case INTUOS5: |
| 923 | case INTUOS5L: |
| 924 | sysfs_remove_group(&wacom->intf->dev.kobj, |
| 925 | &intuos5_led_attr_group); |
| 926 | break; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 927 | } |
| 928 | } |
| 929 | |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 930 | static enum power_supply_property wacom_battery_props[] = { |
| 931 | POWER_SUPPLY_PROP_CAPACITY |
| 932 | }; |
| 933 | |
| 934 | static int wacom_battery_get_property(struct power_supply *psy, |
| 935 | enum power_supply_property psp, |
| 936 | union power_supply_propval *val) |
| 937 | { |
| 938 | struct wacom *wacom = container_of(psy, struct wacom, battery); |
| 939 | int ret = 0; |
| 940 | |
| 941 | switch (psp) { |
| 942 | case POWER_SUPPLY_PROP_CAPACITY: |
| 943 | val->intval = |
| 944 | wacom->wacom_wac.battery_capacity * 100 / 31; |
| 945 | break; |
| 946 | default: |
| 947 | ret = -EINVAL; |
| 948 | break; |
| 949 | } |
| 950 | |
| 951 | return ret; |
| 952 | } |
| 953 | |
| 954 | static int wacom_initialize_battery(struct wacom *wacom) |
| 955 | { |
| 956 | int error = 0; |
| 957 | |
| 958 | if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_MONITOR) { |
| 959 | wacom->battery.properties = wacom_battery_props; |
| 960 | wacom->battery.num_properties = ARRAY_SIZE(wacom_battery_props); |
| 961 | wacom->battery.get_property = wacom_battery_get_property; |
| 962 | wacom->battery.name = "wacom_battery"; |
| 963 | wacom->battery.type = POWER_SUPPLY_TYPE_BATTERY; |
| 964 | wacom->battery.use_for_apm = 0; |
| 965 | |
| 966 | error = power_supply_register(&wacom->usbdev->dev, |
| 967 | &wacom->battery); |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 968 | |
| 969 | if (!error) |
| 970 | power_supply_powers(&wacom->battery, |
| 971 | &wacom->usbdev->dev); |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | return error; |
| 975 | } |
| 976 | |
| 977 | static void wacom_destroy_battery(struct wacom *wacom) |
| 978 | { |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 979 | if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_MONITOR && |
| 980 | wacom->battery.dev) { |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 981 | power_supply_unregister(&wacom->battery); |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 982 | wacom->battery.dev = NULL; |
| 983 | } |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 984 | } |
| 985 | |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 986 | static int wacom_register_input(struct wacom *wacom) |
| 987 | { |
| 988 | struct input_dev *input_dev; |
| 989 | struct usb_interface *intf = wacom->intf; |
| 990 | struct usb_device *dev = interface_to_usbdev(intf); |
| 991 | struct wacom_wac *wacom_wac = &(wacom->wacom_wac); |
| 992 | int error; |
| 993 | |
| 994 | input_dev = input_allocate_device(); |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 995 | if (!input_dev) { |
| 996 | error = -ENOMEM; |
| 997 | goto fail1; |
| 998 | } |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 999 | |
| 1000 | input_dev->name = wacom_wac->name; |
| 1001 | input_dev->dev.parent = &intf->dev; |
| 1002 | input_dev->open = wacom_open; |
| 1003 | input_dev->close = wacom_close; |
| 1004 | usb_to_input_id(dev, &input_dev->id); |
| 1005 | input_set_drvdata(input_dev, wacom); |
| 1006 | |
| 1007 | wacom_wac->input = input_dev; |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 1008 | error = wacom_setup_input_capabilities(input_dev, wacom_wac); |
| 1009 | if (error) |
| 1010 | goto fail1; |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1011 | |
| 1012 | error = input_register_device(input_dev); |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 1013 | if (error) |
| 1014 | goto fail2; |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1015 | |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 1016 | return 0; |
| 1017 | |
| 1018 | fail2: |
| 1019 | input_free_device(input_dev); |
| 1020 | wacom_wac->input = NULL; |
| 1021 | fail1: |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1022 | return error; |
| 1023 | } |
| 1024 | |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1025 | static void wacom_wireless_work(struct work_struct *work) |
| 1026 | { |
| 1027 | struct wacom *wacom = container_of(work, struct wacom, work); |
| 1028 | struct usb_device *usbdev = wacom->usbdev; |
| 1029 | struct wacom_wac *wacom_wac = &wacom->wacom_wac; |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1030 | struct wacom *wacom1, *wacom2; |
| 1031 | struct wacom_wac *wacom_wac1, *wacom_wac2; |
| 1032 | int error; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1033 | |
| 1034 | /* |
| 1035 | * Regardless if this is a disconnect or a new tablet, |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1036 | * remove any existing input and battery devices. |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1037 | */ |
| 1038 | |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1039 | wacom_destroy_battery(wacom); |
| 1040 | |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1041 | /* Stylus interface */ |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1042 | wacom1 = usb_get_intfdata(usbdev->config->interface[1]); |
| 1043 | wacom_wac1 = &(wacom1->wacom_wac); |
| 1044 | if (wacom_wac1->input) |
| 1045 | input_unregister_device(wacom_wac1->input); |
| 1046 | wacom_wac1->input = NULL; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1047 | |
| 1048 | /* Touch interface */ |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1049 | wacom2 = usb_get_intfdata(usbdev->config->interface[2]); |
| 1050 | wacom_wac2 = &(wacom2->wacom_wac); |
| 1051 | if (wacom_wac2->input) |
| 1052 | input_unregister_device(wacom_wac2->input); |
| 1053 | wacom_wac2->input = NULL; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1054 | |
| 1055 | if (wacom_wac->pid == 0) { |
Dmitry Torokhov | eb71d1b | 2012-05-02 00:13:38 -0700 | [diff] [blame] | 1056 | dev_info(&wacom->intf->dev, "wireless tablet disconnected\n"); |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1057 | } else { |
| 1058 | const struct usb_device_id *id = wacom_ids; |
| 1059 | |
Dmitry Torokhov | eb71d1b | 2012-05-02 00:13:38 -0700 | [diff] [blame] | 1060 | dev_info(&wacom->intf->dev, |
| 1061 | "wireless tablet connected with PID %x\n", |
| 1062 | wacom_wac->pid); |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1063 | |
| 1064 | while (id->match_flags) { |
| 1065 | if (id->idVendor == USB_VENDOR_ID_WACOM && |
| 1066 | id->idProduct == wacom_wac->pid) |
| 1067 | break; |
| 1068 | id++; |
| 1069 | } |
| 1070 | |
| 1071 | if (!id->match_flags) { |
Dmitry Torokhov | eb71d1b | 2012-05-02 00:13:38 -0700 | [diff] [blame] | 1072 | dev_info(&wacom->intf->dev, |
| 1073 | "ignoring unknown PID.\n"); |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1074 | return; |
| 1075 | } |
| 1076 | |
| 1077 | /* Stylus interface */ |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1078 | wacom_wac1->features = |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1079 | *((struct wacom_features *)id->driver_info); |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1080 | wacom_wac1->features.device_type = BTN_TOOL_PEN; |
| 1081 | error = wacom_register_input(wacom1); |
| 1082 | if (error) |
| 1083 | goto fail1; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1084 | |
| 1085 | /* Touch interface */ |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1086 | wacom_wac2->features = |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1087 | *((struct wacom_features *)id->driver_info); |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1088 | wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3; |
| 1089 | wacom_wac2->features.device_type = BTN_TOOL_FINGER; |
| 1090 | wacom_set_phy_from_res(&wacom_wac2->features); |
| 1091 | wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096; |
| 1092 | error = wacom_register_input(wacom2); |
| 1093 | if (error) |
| 1094 | goto fail2; |
| 1095 | |
| 1096 | error = wacom_initialize_battery(wacom); |
| 1097 | if (error) |
| 1098 | goto fail3; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1099 | } |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1100 | |
| 1101 | return; |
| 1102 | |
| 1103 | fail3: |
| 1104 | input_unregister_device(wacom_wac2->input); |
| 1105 | wacom_wac2->input = NULL; |
| 1106 | fail2: |
| 1107 | input_unregister_device(wacom_wac1->input); |
| 1108 | wacom_wac1->input = NULL; |
| 1109 | fail1: |
| 1110 | return; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1111 | } |
| 1112 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1113 | static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *id) |
| 1114 | { |
| 1115 | struct usb_device *dev = interface_to_usbdev(intf); |
| 1116 | struct usb_endpoint_descriptor *endpoint; |
| 1117 | struct wacom *wacom; |
| 1118 | struct wacom_wac *wacom_wac; |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1119 | struct wacom_features *features; |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1120 | int error; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1121 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1122 | if (!id->driver_info) |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1123 | return -EINVAL; |
| 1124 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1125 | wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL); |
Dan Carpenter | f182394 | 2012-03-29 22:38:11 -0700 | [diff] [blame] | 1126 | if (!wacom) |
| 1127 | return -ENOMEM; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1128 | |
Dmitry Torokhov | 51269fe | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1129 | wacom_wac = &wacom->wacom_wac; |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1130 | wacom_wac->features = *((struct wacom_features *)id->driver_info); |
| 1131 | features = &wacom_wac->features; |
| 1132 | if (features->pktlen > WACOM_PKGLEN_MAX) { |
| 1133 | error = -EINVAL; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1134 | goto fail1; |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1135 | } |
| 1136 | |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 1137 | wacom_wac->data = usb_alloc_coherent(dev, WACOM_PKGLEN_MAX, |
| 1138 | GFP_KERNEL, &wacom->data_dma); |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1139 | if (!wacom_wac->data) { |
| 1140 | error = -ENOMEM; |
| 1141 | goto fail1; |
| 1142 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1143 | |
| 1144 | wacom->irq = usb_alloc_urb(0, GFP_KERNEL); |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1145 | if (!wacom->irq) { |
| 1146 | error = -ENOMEM; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1147 | goto fail2; |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1148 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1149 | |
| 1150 | wacom->usbdev = dev; |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 1151 | wacom->intf = intf; |
| 1152 | mutex_init(&wacom->lock); |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1153 | INIT_WORK(&wacom->work, wacom_wireless_work); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1154 | usb_make_path(dev, wacom->phys, sizeof(wacom->phys)); |
| 1155 | strlcat(wacom->phys, "/input0", sizeof(wacom->phys)); |
| 1156 | |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1157 | endpoint = &intf->cur_altsetting->endpoint[0].desc; |
| 1158 | |
Ping Cheng | f393ee2 | 2012-04-29 21:09:17 -0700 | [diff] [blame] | 1159 | /* Retrieve the physical and logical size for touch devices */ |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 1160 | error = wacom_retrieve_hid_descriptor(intf, features); |
| 1161 | if (error) |
Alexander Strakh | 4b6d443 | 2011-02-11 00:44:41 -0800 | [diff] [blame] | 1162 | goto fail3; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1163 | |
Jason Gerecke | ae584ca | 2012-04-03 15:50:40 -0700 | [diff] [blame] | 1164 | /* |
| 1165 | * Intuos5 has no useful data about its touch interface in its |
| 1166 | * HID descriptor. If this is the touch interface (wMaxPacketSize |
| 1167 | * of WACOM_PKGLEN_BBTOUCH3), override the table values. |
| 1168 | */ |
| 1169 | if (features->type >= INTUOS5S && features->type <= INTUOS5L) { |
| 1170 | if (endpoint->wMaxPacketSize == WACOM_PKGLEN_BBTOUCH3) { |
| 1171 | features->device_type = BTN_TOOL_FINGER; |
| 1172 | features->pktlen = WACOM_PKGLEN_BBTOUCH3; |
| 1173 | |
Jason Gerecke | 32edbf56 | 2012-06-12 00:28:37 -0700 | [diff] [blame] | 1174 | wacom_set_phy_from_res(features); |
Jason Gerecke | ae584ca | 2012-04-03 15:50:40 -0700 | [diff] [blame] | 1175 | |
| 1176 | features->x_max = 4096; |
| 1177 | features->y_max = 4096; |
| 1178 | } else { |
| 1179 | features->device_type = BTN_TOOL_PEN; |
| 1180 | } |
| 1181 | } |
| 1182 | |
Henrik Rydberg | bc73dd3 | 2010-09-05 12:26:16 -0700 | [diff] [blame] | 1183 | wacom_setup_device_quirks(features); |
| 1184 | |
Ping Cheng | 49b764a | 2010-02-20 00:53:49 -0800 | [diff] [blame] | 1185 | strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name)); |
| 1186 | |
Henrik Rydberg | bc73dd3 | 2010-09-05 12:26:16 -0700 | [diff] [blame] | 1187 | if (features->quirks & WACOM_QUIRK_MULTI_INPUT) { |
Ping Cheng | 49b764a | 2010-02-20 00:53:49 -0800 | [diff] [blame] | 1188 | /* Append the device type to the name */ |
| 1189 | strlcat(wacom_wac->name, |
| 1190 | features->device_type == BTN_TOOL_PEN ? |
| 1191 | " Pen" : " Finger", |
| 1192 | sizeof(wacom_wac->name)); |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1193 | |
| 1194 | error = wacom_add_shared_data(wacom_wac, dev); |
| 1195 | if (error) |
| 1196 | goto fail3; |
Ping Cheng | 49b764a | 2010-02-20 00:53:49 -0800 | [diff] [blame] | 1197 | } |
| 1198 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1199 | usb_fill_int_urb(wacom->irq, dev, |
| 1200 | usb_rcvintpipe(dev, endpoint->bEndpointAddress), |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 1201 | wacom_wac->data, features->pktlen, |
Ping Cheng | 8d32e3a | 2006-09-26 13:34:47 -0700 | [diff] [blame] | 1202 | wacom_sys_irq, wacom, endpoint->bInterval); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1203 | wacom->irq->transfer_dma = wacom->data_dma; |
| 1204 | wacom->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
| 1205 | |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1206 | error = wacom_initialize_leds(wacom); |
Dmitry Torokhov | 5014186 | 2007-04-12 01:33:39 -0400 | [diff] [blame] | 1207 | if (error) |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1208 | goto fail4; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1209 | |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1210 | if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) { |
| 1211 | error = wacom_register_input(wacom); |
| 1212 | if (error) |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1213 | goto fail5; |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1214 | } |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1215 | |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 1216 | /* Note that if query fails it is not a hard failure */ |
| 1217 | wacom_query_tablet_data(intf, features); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1218 | |
| 1219 | usb_set_intfdata(intf, wacom); |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1220 | |
| 1221 | if (features->quirks & WACOM_QUIRK_MONITOR) { |
| 1222 | if (usb_submit_urb(wacom->irq, GFP_KERNEL)) |
| 1223 | goto fail5; |
| 1224 | } |
| 1225 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1226 | return 0; |
| 1227 | |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1228 | fail5: wacom_destroy_leds(wacom); |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1229 | fail4: wacom_remove_shared_data(wacom_wac); |
Dmitry Torokhov | 5014186 | 2007-04-12 01:33:39 -0400 | [diff] [blame] | 1230 | fail3: usb_free_urb(wacom->irq); |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 1231 | fail2: usb_free_coherent(dev, WACOM_PKGLEN_MAX, wacom_wac->data, wacom->data_dma); |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1232 | fail1: kfree(wacom); |
Dmitry Torokhov | 5014186 | 2007-04-12 01:33:39 -0400 | [diff] [blame] | 1233 | return error; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | static void wacom_disconnect(struct usb_interface *intf) |
| 1237 | { |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 1238 | struct wacom *wacom = usb_get_intfdata(intf); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1239 | |
| 1240 | usb_set_intfdata(intf, NULL); |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 1241 | |
| 1242 | usb_kill_urb(wacom->irq); |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1243 | cancel_work_sync(&wacom->work); |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1244 | if (wacom->wacom_wac.input) |
| 1245 | input_unregister_device(wacom->wacom_wac.input); |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1246 | wacom_destroy_battery(wacom); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1247 | wacom_destroy_leds(wacom); |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 1248 | usb_free_urb(wacom->irq); |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 1249 | usb_free_coherent(interface_to_usbdev(intf), WACOM_PKGLEN_MAX, |
Dmitry Torokhov | 51269fe | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1250 | wacom->wacom_wac.data, wacom->data_dma); |
| 1251 | wacom_remove_shared_data(&wacom->wacom_wac); |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 1252 | kfree(wacom); |
| 1253 | } |
| 1254 | |
| 1255 | static int wacom_suspend(struct usb_interface *intf, pm_message_t message) |
| 1256 | { |
| 1257 | struct wacom *wacom = usb_get_intfdata(intf); |
| 1258 | |
| 1259 | mutex_lock(&wacom->lock); |
| 1260 | usb_kill_urb(wacom->irq); |
| 1261 | mutex_unlock(&wacom->lock); |
| 1262 | |
| 1263 | return 0; |
| 1264 | } |
| 1265 | |
| 1266 | static int wacom_resume(struct usb_interface *intf) |
| 1267 | { |
| 1268 | struct wacom *wacom = usb_get_intfdata(intf); |
Dmitry Torokhov | 51269fe | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1269 | struct wacom_features *features = &wacom->wacom_wac.features; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1270 | int rv = 0; |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 1271 | |
| 1272 | mutex_lock(&wacom->lock); |
Ping Cheng | 3810147 | 2010-04-13 23:07:52 -0700 | [diff] [blame] | 1273 | |
| 1274 | /* switch to wacom mode first */ |
| 1275 | wacom_query_tablet_data(intf, features); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1276 | wacom_led_control(wacom); |
Ping Cheng | 3810147 | 2010-04-13 23:07:52 -0700 | [diff] [blame] | 1277 | |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1278 | if ((wacom->open || features->quirks & WACOM_QUIRK_MONITOR) |
| 1279 | && usb_submit_urb(wacom->irq, GFP_NOIO) < 0) |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1280 | rv = -EIO; |
Ping Cheng | 3810147 | 2010-04-13 23:07:52 -0700 | [diff] [blame] | 1281 | |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 1282 | mutex_unlock(&wacom->lock); |
| 1283 | |
| 1284 | return rv; |
| 1285 | } |
| 1286 | |
| 1287 | static int wacom_reset_resume(struct usb_interface *intf) |
| 1288 | { |
| 1289 | return wacom_resume(intf); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1290 | } |
| 1291 | |
| 1292 | static struct usb_driver wacom_driver = { |
| 1293 | .name = "wacom", |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1294 | .id_table = wacom_ids, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1295 | .probe = wacom_probe, |
| 1296 | .disconnect = wacom_disconnect, |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 1297 | .suspend = wacom_suspend, |
| 1298 | .resume = wacom_resume, |
| 1299 | .reset_resume = wacom_reset_resume, |
| 1300 | .supports_autosuspend = 1, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1301 | }; |
| 1302 | |
Greg Kroah-Hartman | 08642e7 | 2011-11-18 09:48:31 -0800 | [diff] [blame] | 1303 | module_usb_driver(wacom_driver); |