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