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