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" |
Jason Gerecke | b58ba1b | 2014-12-05 13:37:32 -0800 | [diff] [blame] | 16 | #include <linux/input/mt.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 |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 19 | #define WAC_CMD_RETRIES 10 |
| 20 | |
Ping Cheng | e0984bc | 2014-09-10 12:40:05 -0700 | [diff] [blame] | 21 | #define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP) |
| 22 | #define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP) |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 23 | #define DEV_ATTR_RO_PERM (S_IRUSR | S_IRGRP) |
Ping Cheng | e0984bc | 2014-09-10 12:40:05 -0700 | [diff] [blame] | 24 | |
Ping Cheng | c64d883 | 2014-09-10 12:41:04 -0700 | [diff] [blame] | 25 | static int wacom_get_report(struct hid_device *hdev, u8 type, u8 *buf, |
| 26 | 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 { |
Ping Cheng | c64d883 | 2014-09-10 12:41:04 -0700 | [diff] [blame] | 31 | retval = hid_hw_raw_request(hdev, buf[0], buf, size, type, |
Benjamin Tissoires | 27b20a9 | 2014-07-24 12:56:22 -0700 | [diff] [blame] | 32 | HID_REQ_GET_REPORT); |
Jason Gerecke | aef3156 | 2015-05-21 10:44:31 -0700 | [diff] [blame] | 33 | } while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries); |
| 34 | |
| 35 | if (retval < 0) |
| 36 | hid_err(hdev, "wacom_get_report: ran out of retries " |
| 37 | "(last error = %d)\n", retval); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 38 | |
| 39 | return retval; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 42 | static int wacom_set_report(struct hid_device *hdev, u8 type, u8 *buf, |
| 43 | size_t size, unsigned int retries) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 44 | { |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 45 | int retval; |
| 46 | |
| 47 | do { |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 48 | retval = hid_hw_raw_request(hdev, buf[0], buf, size, type, |
Benjamin Tissoires | 27b20a9 | 2014-07-24 12:56:22 -0700 | [diff] [blame] | 49 | HID_REQ_SET_REPORT); |
Jason Gerecke | aef3156 | 2015-05-21 10:44:31 -0700 | [diff] [blame] | 50 | } while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries); |
| 51 | |
| 52 | if (retval < 0) |
| 53 | hid_err(hdev, "wacom_set_report: ran out of retries " |
| 54 | "(last error = %d)\n", retval); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 55 | |
| 56 | return retval; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 59 | static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report, |
| 60 | u8 *raw_data, int size) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 61 | { |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 62 | struct wacom *wacom = hid_get_drvdata(hdev); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 63 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 64 | if (size > WACOM_PKGLEN_MAX) |
| 65 | return 1; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 66 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 67 | memcpy(wacom->wacom_wac.data, raw_data, size); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 68 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 69 | wacom_wac_irq(&wacom->wacom_wac, size); |
| 70 | |
| 71 | return 0; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 72 | } |
| 73 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 74 | static int wacom_open(struct input_dev *dev) |
| 75 | { |
Dmitry Torokhov | 7791bda | 2007-04-12 01:34:39 -0400 | [diff] [blame] | 76 | struct wacom *wacom = input_get_drvdata(dev); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 77 | |
Benjamin Tissoires | dff6741 | 2014-12-01 11:52:40 -0500 | [diff] [blame] | 78 | return hid_hw_open(wacom->hdev); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static void wacom_close(struct input_dev *dev) |
| 82 | { |
Dmitry Torokhov | 7791bda | 2007-04-12 01:34:39 -0400 | [diff] [blame] | 83 | struct wacom *wacom = input_get_drvdata(dev); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 84 | |
Benjamin Tissoires | 3dad188 | 2016-07-13 18:05:54 +0200 | [diff] [blame] | 85 | /* |
| 86 | * wacom->hdev should never be null, but surprisingly, I had the case |
| 87 | * once while unplugging the Wacom Wireless Receiver. |
| 88 | */ |
| 89 | if (wacom->hdev) |
| 90 | hid_hw_close(wacom->hdev); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 93 | /* |
Benjamin Tissoires | 198fdee | 2014-07-24 13:03:05 -0700 | [diff] [blame] | 94 | * 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] | 95 | */ |
| 96 | static int wacom_calc_hid_res(int logical_extents, int physical_extents, |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 97 | unsigned unit, int exponent) |
Jason Gerecke | 115d5e1 | 2012-10-03 17:24:32 -0700 | [diff] [blame] | 98 | { |
Benjamin Tissoires | 198fdee | 2014-07-24 13:03:05 -0700 | [diff] [blame] | 99 | struct hid_field field = { |
| 100 | .logical_maximum = logical_extents, |
| 101 | .physical_maximum = physical_extents, |
| 102 | .unit = unit, |
| 103 | .unit_exponent = exponent, |
| 104 | }; |
Jason Gerecke | 115d5e1 | 2012-10-03 17:24:32 -0700 | [diff] [blame] | 105 | |
Benjamin Tissoires | 198fdee | 2014-07-24 13:03:05 -0700 | [diff] [blame] | 106 | return hidinput_calc_abs_res(&field, ABS_X); |
Jason Gerecke | 115d5e1 | 2012-10-03 17:24:32 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 109 | static void wacom_feature_mapping(struct hid_device *hdev, |
| 110 | struct hid_field *field, struct hid_usage *usage) |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 111 | { |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 112 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 113 | struct wacom_features *features = &wacom->wacom_wac.features; |
Benjamin Tissoires | 5ae6e89 | 2014-09-23 12:08:09 -0400 | [diff] [blame] | 114 | struct hid_data *hid_data = &wacom->wacom_wac.hid_data; |
Aaron Armstrong Skomra | ac2423c | 2017-01-25 12:08:40 -0800 | [diff] [blame] | 115 | unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid); |
Benjamin Tissoires | 8ffffd5 | 2014-09-16 16:56:39 -0400 | [diff] [blame] | 116 | u8 *data; |
| 117 | int ret; |
Jason Gerecke | 345857b | 2016-10-19 18:03:50 -0700 | [diff] [blame] | 118 | int n; |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 119 | |
Aaron Armstrong Skomra | ac2423c | 2017-01-25 12:08:40 -0800 | [diff] [blame] | 120 | switch (equivalent_usage) { |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 121 | case HID_DG_CONTACTMAX: |
| 122 | /* leave touch_max as is if predefined */ |
Benjamin Tissoires | 8ffffd5 | 2014-09-16 16:56:39 -0400 | [diff] [blame] | 123 | if (!features->touch_max) { |
| 124 | /* read manually */ |
| 125 | data = kzalloc(2, GFP_KERNEL); |
| 126 | if (!data) |
| 127 | break; |
| 128 | data[0] = field->report->id; |
| 129 | ret = wacom_get_report(hdev, HID_FEATURE_REPORT, |
Jason Gerecke | 05e8fd9 | 2015-05-21 10:44:32 -0700 | [diff] [blame] | 130 | data, 2, WAC_CMD_RETRIES); |
| 131 | if (ret == 2) { |
Benjamin Tissoires | 8ffffd5 | 2014-09-16 16:56:39 -0400 | [diff] [blame] | 132 | features->touch_max = data[1]; |
Jason Gerecke | 05e8fd9 | 2015-05-21 10:44:32 -0700 | [diff] [blame] | 133 | } else { |
| 134 | features->touch_max = 16; |
| 135 | hid_warn(hdev, "wacom_feature_mapping: " |
| 136 | "could not get HID_DG_CONTACTMAX, " |
| 137 | "defaulting to %d\n", |
| 138 | features->touch_max); |
| 139 | } |
Benjamin Tissoires | 8ffffd5 | 2014-09-16 16:56:39 -0400 | [diff] [blame] | 140 | kfree(data); |
| 141 | } |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 142 | break; |
Benjamin Tissoires | 5ae6e89 | 2014-09-23 12:08:09 -0400 | [diff] [blame] | 143 | case HID_DG_INPUTMODE: |
| 144 | /* Ignore if value index is out of bounds. */ |
| 145 | if (usage->usage_index >= field->report_count) { |
| 146 | dev_err(&hdev->dev, "HID_DG_INPUTMODE out of range\n"); |
| 147 | break; |
| 148 | } |
| 149 | |
| 150 | hid_data->inputmode = field->report->id; |
| 151 | hid_data->inputmode_index = usage->usage_index; |
| 152 | break; |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 153 | |
| 154 | case HID_UP_DIGITIZER: |
| 155 | if (field->report->id == 0x0B && |
Jason Gerecke | 8de8228 | 2016-10-19 18:03:37 -0700 | [diff] [blame] | 156 | (field->application == WACOM_HID_G9_PEN || |
| 157 | field->application == WACOM_HID_G11_PEN)) { |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 158 | wacom->wacom_wac.mode_report = field->report->id; |
| 159 | wacom->wacom_wac.mode_value = 0; |
| 160 | } |
| 161 | break; |
| 162 | |
Jason Gerecke | c9c0958 | 2016-10-19 18:03:43 -0700 | [diff] [blame] | 163 | case WACOM_HID_WD_DATAMODE: |
| 164 | wacom->wacom_wac.mode_report = field->report->id; |
| 165 | wacom->wacom_wac.mode_value = 2; |
| 166 | break; |
| 167 | |
Jason Gerecke | 8de8228 | 2016-10-19 18:03:37 -0700 | [diff] [blame] | 168 | case WACOM_HID_UP_G9: |
| 169 | case WACOM_HID_UP_G11: |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 170 | if (field->report->id == 0x03 && |
Jason Gerecke | 8de8228 | 2016-10-19 18:03:37 -0700 | [diff] [blame] | 171 | (field->application == WACOM_HID_G9_TOUCHSCREEN || |
| 172 | field->application == WACOM_HID_G11_TOUCHSCREEN)) { |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 173 | wacom->wacom_wac.mode_report = field->report->id; |
| 174 | wacom->wacom_wac.mode_value = 0; |
| 175 | } |
| 176 | break; |
Jason Gerecke | 345857b | 2016-10-19 18:03:50 -0700 | [diff] [blame] | 177 | case WACOM_HID_WD_OFFSETLEFT: |
| 178 | case WACOM_HID_WD_OFFSETTOP: |
| 179 | case WACOM_HID_WD_OFFSETRIGHT: |
| 180 | case WACOM_HID_WD_OFFSETBOTTOM: |
| 181 | /* read manually */ |
| 182 | n = hid_report_len(field->report); |
| 183 | data = hid_alloc_report_buf(field->report, GFP_KERNEL); |
| 184 | if (!data) |
| 185 | break; |
| 186 | data[0] = field->report->id; |
| 187 | ret = wacom_get_report(hdev, HID_FEATURE_REPORT, |
| 188 | data, n, WAC_CMD_RETRIES); |
| 189 | if (ret == n) { |
| 190 | ret = hid_report_raw_event(hdev, HID_FEATURE_REPORT, |
| 191 | data, n, 0); |
| 192 | } else { |
| 193 | hid_warn(hdev, "%s: could not retrieve sensor offsets\n", |
| 194 | __func__); |
| 195 | } |
| 196 | kfree(data); |
| 197 | break; |
Ping Cheng | f393ee2 | 2012-04-29 21:09:17 -0700 | [diff] [blame] | 198 | } |
| 199 | } |
| 200 | |
Chris Bagwell | 428f858 | 2011-10-26 22:26:59 -0700 | [diff] [blame] | 201 | /* |
| 202 | * Interface Descriptor of wacom devices can be incomplete and |
| 203 | * inconsistent so wacom_features table is used to store stylus |
| 204 | * device's packet lengths, various maximum values, and tablet |
| 205 | * resolution based on product ID's. |
| 206 | * |
| 207 | * For devices that contain 2 interfaces, wacom_features table is |
| 208 | * inaccurate for the touch interface. Since the Interface Descriptor |
| 209 | * for touch interfaces has pretty complete data, this function exists |
| 210 | * to query tablet for this missing information instead of hard coding in |
| 211 | * an additional table. |
| 212 | * |
| 213 | * A typical Interface Descriptor for a stylus will contain a |
| 214 | * boot mouse application collection that is not of interest and this |
| 215 | * function will ignore it. |
| 216 | * |
| 217 | * It also contains a digitizer application collection that also is not |
| 218 | * of interest since any information it contains would be duplicate |
| 219 | * of what is in wacom_features. Usually it defines a report of an array |
| 220 | * of bytes that could be used as max length of the stylus packet returned. |
| 221 | * If it happens to define a Digitizer-Stylus Physical Collection then |
| 222 | * the X and Y logical values contain valid data but it is ignored. |
| 223 | * |
| 224 | * A typical Interface Descriptor for a touch interface will contain a |
| 225 | * Digitizer-Finger Physical Collection which will define both logical |
| 226 | * X/Y maximum as well as the physical size of tablet. Since touch |
| 227 | * interfaces haven't supported pressure or distance, this is enough |
| 228 | * information to override invalid values in the wacom_features table. |
Chris Bagwell | 4134361 | 2011-10-26 22:32:52 -0700 | [diff] [blame] | 229 | * |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 230 | * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful |
| 231 | * data. We deal with them after returning from this function. |
Chris Bagwell | 428f858 | 2011-10-26 22:26:59 -0700 | [diff] [blame] | 232 | */ |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 233 | static void wacom_usage_mapping(struct hid_device *hdev, |
| 234 | struct hid_field *field, struct hid_usage *usage) |
| 235 | { |
| 236 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 237 | struct wacom_features *features = &wacom->wacom_wac.features; |
Benjamin Tissoires | d97a552 | 2015-01-05 16:32:12 -0500 | [diff] [blame] | 238 | bool finger = WACOM_FINGER_FIELD(field); |
| 239 | bool pen = WACOM_PEN_FIELD(field); |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 240 | |
| 241 | /* |
| 242 | * Requiring Stylus Usage will ignore boot mouse |
| 243 | * X/Y values and some cases of invalid Digitizer X/Y |
| 244 | * values commonly reported. |
| 245 | */ |
Jason Gerecke | 042628a | 2015-04-30 17:51:54 -0700 | [diff] [blame] | 246 | if (pen) |
Jason Gerecke | aa86b18 | 2015-06-15 18:01:42 -0700 | [diff] [blame] | 247 | features->device_type |= WACOM_DEVICETYPE_PEN; |
Jason Gerecke | 042628a | 2015-04-30 17:51:54 -0700 | [diff] [blame] | 248 | else if (finger) |
Jason Gerecke | aa86b18 | 2015-06-15 18:01:42 -0700 | [diff] [blame] | 249 | features->device_type |= WACOM_DEVICETYPE_TOUCH; |
Jason Gerecke | 042628a | 2015-04-30 17:51:54 -0700 | [diff] [blame] | 250 | else |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 251 | return; |
| 252 | |
Ping Cheng | 30ebc1a | 2014-11-18 13:29:16 -0800 | [diff] [blame] | 253 | /* |
| 254 | * Bamboo models do not support HID_DG_CONTACTMAX. |
| 255 | * And, Bamboo Pen only descriptor contains touch. |
| 256 | */ |
Ping Cheng | 3b164a0 | 2015-09-23 09:59:10 -0700 | [diff] [blame] | 257 | if (features->type > BAMBOO_PT) { |
Ping Cheng | 30ebc1a | 2014-11-18 13:29:16 -0800 | [diff] [blame] | 258 | /* ISDv4 touch devices at least supports one touch point */ |
| 259 | if (finger && !features->touch_max) |
| 260 | features->touch_max = 1; |
| 261 | } |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 262 | |
Jason Gerecke | 6005a13 | 2016-10-19 18:03:40 -0700 | [diff] [blame] | 263 | /* |
| 264 | * ISDv4 devices which predate HID's adoption of the |
| 265 | * HID_DG_BARELSWITCH2 usage use 0x000D0000 in its |
| 266 | * position instead. We can accurately detect if a |
| 267 | * usage with that value should be HID_DG_BARRELSWITCH2 |
| 268 | * based on the surrounding usages, which have remained |
| 269 | * constant across generations. |
| 270 | */ |
| 271 | if (features->type == HID_GENERIC && |
| 272 | usage->hid == 0x000D0000 && |
| 273 | field->application == HID_DG_PEN && |
| 274 | field->physical == HID_DG_STYLUS) { |
| 275 | int i = usage->usage_index; |
| 276 | |
| 277 | if (i-4 >= 0 && i+1 < field->maxusage && |
| 278 | field->usage[i-4].hid == HID_DG_TIPSWITCH && |
| 279 | field->usage[i-3].hid == HID_DG_BARRELSWITCH && |
| 280 | field->usage[i-2].hid == HID_DG_ERASER && |
| 281 | field->usage[i-1].hid == HID_DG_INVERT && |
| 282 | field->usage[i+1].hid == HID_DG_INRANGE) { |
| 283 | usage->hid = HID_DG_BARRELSWITCH2; |
| 284 | } |
| 285 | } |
| 286 | |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 287 | switch (usage->hid) { |
| 288 | case HID_GD_X: |
| 289 | features->x_max = field->logical_maximum; |
| 290 | if (finger) { |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 291 | features->x_phy = field->physical_maximum; |
Ping Cheng | 3b164a0 | 2015-09-23 09:59:10 -0700 | [diff] [blame] | 292 | if ((features->type != BAMBOO_PT) && |
| 293 | (features->type != BAMBOO_TOUCH)) { |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 294 | features->unit = field->unit; |
| 295 | features->unitExpo = field->unit_exponent; |
| 296 | } |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 297 | } |
| 298 | break; |
| 299 | case HID_GD_Y: |
| 300 | features->y_max = field->logical_maximum; |
| 301 | if (finger) { |
| 302 | features->y_phy = field->physical_maximum; |
Ping Cheng | 3b164a0 | 2015-09-23 09:59:10 -0700 | [diff] [blame] | 303 | if ((features->type != BAMBOO_PT) && |
| 304 | (features->type != BAMBOO_TOUCH)) { |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 305 | features->unit = field->unit; |
| 306 | features->unitExpo = field->unit_exponent; |
| 307 | } |
| 308 | } |
| 309 | break; |
| 310 | case HID_DG_TIPPRESSURE: |
| 311 | if (pen) |
| 312 | features->pressure_max = field->logical_maximum; |
| 313 | break; |
| 314 | } |
Benjamin Tissoires | 7704ac9 | 2014-09-23 12:08:08 -0400 | [diff] [blame] | 315 | |
| 316 | if (features->type == HID_GENERIC) |
| 317 | wacom_wac_usage_mapping(hdev, field, usage); |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 318 | } |
| 319 | |
Jason Gerecke | b58ba1b | 2014-12-05 13:37:32 -0800 | [diff] [blame] | 320 | static void wacom_post_parse_hid(struct hid_device *hdev, |
| 321 | struct wacom_features *features) |
| 322 | { |
| 323 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 324 | struct wacom_wac *wacom_wac = &wacom->wacom_wac; |
| 325 | |
| 326 | if (features->type == HID_GENERIC) { |
| 327 | /* Any last-minute generic device setup */ |
| 328 | if (features->touch_max > 1) { |
Aaron Armstrong Skomra | ac2423c | 2017-01-25 12:08:40 -0800 | [diff] [blame] | 329 | if (features->device_type & WACOM_DEVICETYPE_DIRECT) |
| 330 | input_mt_init_slots(wacom_wac->touch_input, |
| 331 | wacom_wac->features.touch_max, |
| 332 | INPUT_MT_DIRECT); |
| 333 | else |
| 334 | input_mt_init_slots(wacom_wac->touch_input, |
| 335 | wacom_wac->features.touch_max, |
| 336 | INPUT_MT_POINTER); |
Jason Gerecke | b58ba1b | 2014-12-05 13:37:32 -0800 | [diff] [blame] | 337 | } |
| 338 | } |
| 339 | } |
| 340 | |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 341 | static void wacom_parse_hid(struct hid_device *hdev, |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 342 | struct wacom_features *features) |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 343 | { |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 344 | struct hid_report_enum *rep_enum; |
| 345 | struct hid_report *hreport; |
| 346 | int i, j; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 347 | |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 348 | /* check features first */ |
| 349 | rep_enum = &hdev->report_enum[HID_FEATURE_REPORT]; |
| 350 | list_for_each_entry(hreport, &rep_enum->report_list, list) { |
| 351 | for (i = 0; i < hreport->maxfield; i++) { |
| 352 | /* Ignore if report count is out of bounds. */ |
| 353 | if (hreport->field[i]->report_count < 1) |
| 354 | continue; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 355 | |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 356 | for (j = 0; j < hreport->field[i]->maxusage; j++) { |
| 357 | wacom_feature_mapping(hdev, hreport->field[i], |
| 358 | hreport->field[i]->usage + j); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 359 | } |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 360 | } |
| 361 | } |
| 362 | |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 363 | /* now check the input usages */ |
| 364 | rep_enum = &hdev->report_enum[HID_INPUT_REPORT]; |
| 365 | list_for_each_entry(hreport, &rep_enum->report_list, list) { |
| 366 | |
| 367 | if (!hreport->maxfield) |
| 368 | continue; |
| 369 | |
| 370 | for (i = 0; i < hreport->maxfield; i++) |
| 371 | for (j = 0; j < hreport->field[i]->maxusage; j++) |
| 372 | wacom_usage_mapping(hdev, hreport->field[i], |
| 373 | hreport->field[i]->usage + j); |
| 374 | } |
Jason Gerecke | b58ba1b | 2014-12-05 13:37:32 -0800 | [diff] [blame] | 375 | |
| 376 | wacom_post_parse_hid(hdev, features); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 377 | } |
| 378 | |
Benjamin Tissoires | 5ae6e89 | 2014-09-23 12:08:09 -0400 | [diff] [blame] | 379 | static int wacom_hid_set_device_mode(struct hid_device *hdev) |
| 380 | { |
| 381 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 382 | struct hid_data *hid_data = &wacom->wacom_wac.hid_data; |
| 383 | struct hid_report *r; |
| 384 | struct hid_report_enum *re; |
| 385 | |
| 386 | if (hid_data->inputmode < 0) |
| 387 | return 0; |
| 388 | |
| 389 | re = &(hdev->report_enum[HID_FEATURE_REPORT]); |
| 390 | r = re->report_id_hash[hid_data->inputmode]; |
| 391 | if (r) { |
| 392 | r->field[0]->value[hid_data->inputmode_index] = 2; |
| 393 | hid_hw_request(hdev, r, HID_REQ_SET_REPORT); |
| 394 | } |
| 395 | return 0; |
| 396 | } |
| 397 | |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 398 | static int wacom_set_device_mode(struct hid_device *hdev, |
| 399 | struct wacom_wac *wacom_wac) |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 400 | { |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 401 | u8 *rep_data; |
| 402 | struct hid_report *r; |
| 403 | struct hid_report_enum *re; |
| 404 | int length; |
Jason Gerecke | fe494bc | 2012-10-03 17:25:35 -0700 | [diff] [blame] | 405 | int error = -ENOMEM, limit = 0; |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 406 | |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 407 | if (wacom_wac->mode_report < 0) |
| 408 | return 0; |
| 409 | |
| 410 | re = &(hdev->report_enum[HID_FEATURE_REPORT]); |
| 411 | r = re->report_id_hash[wacom_wac->mode_report]; |
| 412 | if (!r) |
| 413 | return -EINVAL; |
| 414 | |
| 415 | rep_data = hid_alloc_report_buf(r, GFP_KERNEL); |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 416 | if (!rep_data) |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 417 | return -ENOMEM; |
| 418 | |
| 419 | length = hid_report_len(r); |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 420 | |
Jason Gerecke | fe494bc | 2012-10-03 17:25:35 -0700 | [diff] [blame] | 421 | do { |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 422 | rep_data[0] = wacom_wac->mode_report; |
| 423 | rep_data[1] = wacom_wac->mode_value; |
Chris Bagwell | 9937c02 | 2013-01-23 19:37:34 -0800 | [diff] [blame] | 424 | |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 425 | error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, |
| 426 | length, 1); |
Benjamin Tissoires | 3cb8315 | 2014-07-24 12:47:47 -0700 | [diff] [blame] | 427 | if (error >= 0) |
Benjamin Tissoires | 27b20a9 | 2014-07-24 12:56:22 -0700 | [diff] [blame] | 428 | error = wacom_get_report(hdev, HID_FEATURE_REPORT, |
Ping Cheng | c64d883 | 2014-09-10 12:41:04 -0700 | [diff] [blame] | 429 | rep_data, length, 1); |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 430 | } while (error >= 0 && |
| 431 | rep_data[1] != wacom_wac->mode_report && |
| 432 | limit++ < WAC_MSG_RETRIES); |
Dmitry Torokhov | 3b7307c | 2009-08-20 21:41:04 -0700 | [diff] [blame] | 433 | |
| 434 | kfree(rep_data); |
| 435 | |
| 436 | return error < 0 ? error : 0; |
| 437 | } |
| 438 | |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 439 | static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed, |
| 440 | struct wacom_features *features) |
| 441 | { |
Benjamin Tissoires | 387142b | 2014-08-06 13:52:56 -0700 | [diff] [blame] | 442 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 443 | int ret; |
| 444 | u8 rep_data[2]; |
| 445 | |
| 446 | switch (features->type) { |
| 447 | case GRAPHIRE_BT: |
| 448 | rep_data[0] = 0x03; |
| 449 | rep_data[1] = 0x00; |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 450 | ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2, |
| 451 | 3); |
Benjamin Tissoires | 387142b | 2014-08-06 13:52:56 -0700 | [diff] [blame] | 452 | |
| 453 | if (ret >= 0) { |
| 454 | rep_data[0] = speed == 0 ? 0x05 : 0x06; |
| 455 | rep_data[1] = 0x00; |
| 456 | |
| 457 | ret = wacom_set_report(hdev, HID_FEATURE_REPORT, |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 458 | rep_data, 2, 3); |
Benjamin Tissoires | 387142b | 2014-08-06 13:52:56 -0700 | [diff] [blame] | 459 | |
| 460 | if (ret >= 0) { |
| 461 | wacom->wacom_wac.bt_high_speed = speed; |
| 462 | return 0; |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | /* |
| 467 | * Note that if the raw queries fail, it's not a hard failure |
| 468 | * and it is safe to continue |
| 469 | */ |
| 470 | hid_warn(hdev, "failed to poke device, command %d, err %d\n", |
| 471 | rep_data[0], ret); |
| 472 | break; |
Benjamin Tissoires | 81af7e6 | 2014-08-06 13:55:56 -0700 | [diff] [blame] | 473 | case INTUOS4WL: |
| 474 | if (speed == 1) |
| 475 | wacom->wacom_wac.bt_features &= ~0x20; |
| 476 | else |
| 477 | wacom->wacom_wac.bt_features |= 0x20; |
| 478 | |
| 479 | rep_data[0] = 0x03; |
| 480 | rep_data[1] = wacom->wacom_wac.bt_features; |
| 481 | |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 482 | ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2, |
| 483 | 1); |
Benjamin Tissoires | 81af7e6 | 2014-08-06 13:55:56 -0700 | [diff] [blame] | 484 | if (ret >= 0) |
| 485 | wacom->wacom_wac.bt_high_speed = speed; |
| 486 | break; |
Benjamin Tissoires | 387142b | 2014-08-06 13:52:56 -0700 | [diff] [blame] | 487 | } |
| 488 | |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 489 | return 0; |
| 490 | } |
| 491 | |
Jason Gerecke | fe494bc | 2012-10-03 17:25:35 -0700 | [diff] [blame] | 492 | /* |
| 493 | * Switch the tablet into its most-capable mode. Wacom tablets are |
| 494 | * typically configured to power-up in a mode which sends mouse-like |
| 495 | * reports to the OS. To get absolute position, pressure data, etc. |
| 496 | * from the tablet, it is necessary to switch the tablet out of this |
| 497 | * mode and into one which sends the full range of tablet data. |
| 498 | */ |
Benjamin Tissoires | a544c61 | 2017-01-20 16:20:13 +0100 | [diff] [blame] | 499 | static int _wacom_query_tablet_data(struct wacom *wacom) |
Jason Gerecke | fe494bc | 2012-10-03 17:25:35 -0700 | [diff] [blame] | 500 | { |
Benjamin Tissoires | a544c61 | 2017-01-20 16:20:13 +0100 | [diff] [blame] | 501 | struct hid_device *hdev = wacom->hdev; |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 502 | struct wacom_wac *wacom_wac = &wacom->wacom_wac; |
Benjamin Tissoires | a544c61 | 2017-01-20 16:20:13 +0100 | [diff] [blame] | 503 | struct wacom_features *features = &wacom_wac->features; |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 504 | |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 505 | if (hdev->bus == BUS_BLUETOOTH) |
| 506 | return wacom_bt_query_tablet_data(hdev, 1, features); |
| 507 | |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 508 | if (features->type != HID_GENERIC) { |
| 509 | if (features->device_type & WACOM_DEVICETYPE_TOUCH) { |
| 510 | if (features->type > TABLETPC) { |
| 511 | /* MT Tablet PC touch */ |
| 512 | wacom_wac->mode_report = 3; |
| 513 | wacom_wac->mode_value = 4; |
| 514 | } else if (features->type == WACOM_24HDT) { |
| 515 | wacom_wac->mode_report = 18; |
| 516 | wacom_wac->mode_value = 2; |
| 517 | } else if (features->type == WACOM_27QHDT) { |
| 518 | wacom_wac->mode_report = 131; |
| 519 | wacom_wac->mode_value = 2; |
| 520 | } else if (features->type == BAMBOO_PAD) { |
| 521 | wacom_wac->mode_report = 2; |
| 522 | wacom_wac->mode_value = 2; |
| 523 | } |
| 524 | } else if (features->device_type & WACOM_DEVICETYPE_PEN) { |
| 525 | if (features->type <= BAMBOO_PT) { |
| 526 | wacom_wac->mode_report = 2; |
| 527 | wacom_wac->mode_value = 2; |
| 528 | } |
Jason Gerecke | fe494bc | 2012-10-03 17:25:35 -0700 | [diff] [blame] | 529 | } |
| 530 | } |
| 531 | |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 532 | wacom_set_device_mode(hdev, wacom_wac); |
| 533 | |
| 534 | if (features->type == HID_GENERIC) |
| 535 | return wacom_hid_set_device_mode(hdev); |
| 536 | |
Jason Gerecke | fe494bc | 2012-10-03 17:25:35 -0700 | [diff] [blame] | 537 | return 0; |
| 538 | } |
| 539 | |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 540 | static void wacom_retrieve_hid_descriptor(struct hid_device *hdev, |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 541 | struct wacom_features *features) |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 542 | { |
Benjamin Tissoires | 27b20a9 | 2014-07-24 12:56:22 -0700 | [diff] [blame] | 543 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 544 | struct usb_interface *intf = wacom->intf; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 545 | |
Henrik Rydberg | fed87e6 | 2010-09-05 12:25:11 -0700 | [diff] [blame] | 546 | /* default features */ |
Henrik Rydberg | fed87e6 | 2010-09-05 12:25:11 -0700 | [diff] [blame] | 547 | features->x_fuzz = 4; |
| 548 | features->y_fuzz = 4; |
| 549 | features->pressure_fuzz = 0; |
Jason Gerecke | bef7e20 | 2016-04-22 14:30:53 -0700 | [diff] [blame] | 550 | features->distance_fuzz = 1; |
| 551 | features->tilt_fuzz = 1; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 552 | |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 553 | /* |
| 554 | * The wireless device HID is basic and layout conflicts with |
| 555 | * other tablets (monitor and touch interface can look like pen). |
| 556 | * Skip the query for this type and modify defaults based on |
| 557 | * interface number. |
| 558 | */ |
| 559 | if (features->type == WIRELESS) { |
Jason Gerecke | 3f14a63 | 2015-08-03 10:17:05 -0700 | [diff] [blame] | 560 | if (intf->cur_altsetting->desc.bInterfaceNumber == 0) |
Jason Gerecke | ccad85c | 2015-08-03 10:17:04 -0700 | [diff] [blame] | 561 | features->device_type = WACOM_DEVICETYPE_WL_MONITOR; |
Jason Gerecke | 3f14a63 | 2015-08-03 10:17:05 -0700 | [diff] [blame] | 562 | else |
Jason Gerecke | aa86b18 | 2015-06-15 18:01:42 -0700 | [diff] [blame] | 563 | features->device_type = WACOM_DEVICETYPE_NONE; |
Jason Gerecke | 3f14a63 | 2015-08-03 10:17:05 -0700 | [diff] [blame] | 564 | return; |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 565 | } |
| 566 | |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 567 | wacom_parse_hid(hdev, features); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 568 | } |
| 569 | |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 570 | struct wacom_hdev_data { |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 571 | struct list_head list; |
| 572 | struct kref kref; |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 573 | struct hid_device *dev; |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 574 | struct wacom_shared shared; |
| 575 | }; |
| 576 | |
| 577 | static LIST_HEAD(wacom_udev_list); |
| 578 | static DEFINE_MUTEX(wacom_udev_list_lock); |
| 579 | |
Jason Gerecke | 41372d5 | 2016-08-08 12:06:30 -0700 | [diff] [blame] | 580 | static bool compare_device_paths(struct hid_device *hdev_a, |
| 581 | struct hid_device *hdev_b, char separator) |
| 582 | { |
| 583 | int n1 = strrchr(hdev_a->phys, separator) - hdev_a->phys; |
| 584 | int n2 = strrchr(hdev_b->phys, separator) - hdev_b->phys; |
| 585 | |
| 586 | if (n1 != n2 || n1 <= 0 || n2 <= 0) |
| 587 | return false; |
| 588 | |
| 589 | return !strncmp(hdev_a->phys, hdev_b->phys, n1); |
| 590 | } |
| 591 | |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 592 | static bool wacom_are_sibling(struct hid_device *hdev, |
| 593 | struct hid_device *sibling) |
Jason Gerecke | aea2bf6 | 2012-10-21 00:38:03 -0700 | [diff] [blame] | 594 | { |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 595 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 596 | struct wacom_features *features = &wacom->wacom_wac.features; |
Jason Gerecke | 41372d5 | 2016-08-08 12:06:30 -0700 | [diff] [blame] | 597 | struct wacom *sibling_wacom = hid_get_drvdata(sibling); |
| 598 | struct wacom_features *sibling_features = &sibling_wacom->wacom_wac.features; |
| 599 | __u32 oVid = features->oVid ? features->oVid : hdev->vendor; |
| 600 | __u32 oPid = features->oPid ? features->oPid : hdev->product; |
Jason Gerecke | aea2bf6 | 2012-10-21 00:38:03 -0700 | [diff] [blame] | 601 | |
Jason Gerecke | 41372d5 | 2016-08-08 12:06:30 -0700 | [diff] [blame] | 602 | /* The defined oVid/oPid must match that of the sibling */ |
| 603 | if (features->oVid != HID_ANY_ID && sibling->vendor != oVid) |
| 604 | return false; |
| 605 | if (features->oPid != HID_ANY_ID && sibling->product != oPid) |
| 606 | return false; |
| 607 | |
| 608 | /* |
| 609 | * Devices with the same VID/PID must share the same physical |
| 610 | * device path, while those with different VID/PID must share |
| 611 | * the same physical parent device path. |
| 612 | */ |
| 613 | if (hdev->vendor == sibling->vendor && hdev->product == sibling->product) { |
| 614 | if (!compare_device_paths(hdev, sibling, '/')) |
| 615 | return false; |
| 616 | } else { |
| 617 | if (!compare_device_paths(hdev, sibling, '.')) |
| 618 | return false; |
Jason Gerecke | aea2bf6 | 2012-10-21 00:38:03 -0700 | [diff] [blame] | 619 | } |
| 620 | |
Jason Gerecke | 41372d5 | 2016-08-08 12:06:30 -0700 | [diff] [blame] | 621 | /* Skip the remaining heuristics unless you are a HID_GENERIC device */ |
| 622 | if (features->type != HID_GENERIC) |
| 623 | return true; |
| 624 | |
| 625 | /* |
| 626 | * Direct-input devices may not be siblings of indirect-input |
| 627 | * devices. |
| 628 | */ |
| 629 | if ((features->device_type & WACOM_DEVICETYPE_DIRECT) && |
| 630 | !(sibling_features->device_type & WACOM_DEVICETYPE_DIRECT)) |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 631 | return false; |
| 632 | |
Jason Gerecke | 41372d5 | 2016-08-08 12:06:30 -0700 | [diff] [blame] | 633 | /* |
| 634 | * Indirect-input devices may not be siblings of direct-input |
| 635 | * devices. |
| 636 | */ |
| 637 | if (!(features->device_type & WACOM_DEVICETYPE_DIRECT) && |
| 638 | (sibling_features->device_type & WACOM_DEVICETYPE_DIRECT)) |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 639 | return false; |
| 640 | |
Jason Gerecke | 41372d5 | 2016-08-08 12:06:30 -0700 | [diff] [blame] | 641 | /* Pen devices may only be siblings of touch devices */ |
| 642 | if ((features->device_type & WACOM_DEVICETYPE_PEN) && |
| 643 | !(sibling_features->device_type & WACOM_DEVICETYPE_TOUCH)) |
| 644 | return false; |
| 645 | |
| 646 | /* Touch devices may only be siblings of pen devices */ |
| 647 | if ((features->device_type & WACOM_DEVICETYPE_TOUCH) && |
| 648 | !(sibling_features->device_type & WACOM_DEVICETYPE_PEN)) |
| 649 | return false; |
| 650 | |
| 651 | /* |
| 652 | * No reason could be found for these two devices to NOT be |
| 653 | * siblings, so there's a good chance they ARE siblings |
| 654 | */ |
| 655 | return true; |
Jason Gerecke | aea2bf6 | 2012-10-21 00:38:03 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 658 | 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] | 659 | { |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 660 | struct wacom_hdev_data *data; |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 661 | |
Jason Gerecke | 41372d5 | 2016-08-08 12:06:30 -0700 | [diff] [blame] | 662 | /* Try to find an already-probed interface from the same device */ |
| 663 | list_for_each_entry(data, &wacom_udev_list, list) { |
| 664 | if (compare_device_paths(hdev, data->dev, '/')) |
| 665 | return data; |
| 666 | } |
| 667 | |
| 668 | /* Fallback to finding devices that appear to be "siblings" */ |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 669 | list_for_each_entry(data, &wacom_udev_list, list) { |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 670 | if (wacom_are_sibling(hdev, data->dev)) { |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 671 | kref_get(&data->kref); |
| 672 | return data; |
| 673 | } |
| 674 | } |
| 675 | |
| 676 | return NULL; |
| 677 | } |
| 678 | |
Benjamin Tissoires | 1c817c8 | 2016-07-13 18:05:59 +0200 | [diff] [blame] | 679 | static void wacom_release_shared_data(struct kref *kref) |
| 680 | { |
| 681 | struct wacom_hdev_data *data = |
| 682 | container_of(kref, struct wacom_hdev_data, kref); |
| 683 | |
| 684 | mutex_lock(&wacom_udev_list_lock); |
| 685 | list_del(&data->list); |
| 686 | mutex_unlock(&wacom_udev_list_lock); |
| 687 | |
| 688 | kfree(data); |
| 689 | } |
| 690 | |
| 691 | static void wacom_remove_shared_data(void *res) |
| 692 | { |
| 693 | struct wacom *wacom = res; |
| 694 | struct wacom_hdev_data *data; |
| 695 | struct wacom_wac *wacom_wac = &wacom->wacom_wac; |
| 696 | |
| 697 | if (wacom_wac->shared) { |
| 698 | data = container_of(wacom_wac->shared, struct wacom_hdev_data, |
| 699 | shared); |
| 700 | |
| 701 | if (wacom_wac->shared->touch == wacom->hdev) |
| 702 | wacom_wac->shared->touch = NULL; |
| 703 | else if (wacom_wac->shared->pen == wacom->hdev) |
| 704 | wacom_wac->shared->pen = NULL; |
| 705 | |
| 706 | kref_put(&data->kref, wacom_release_shared_data); |
| 707 | wacom_wac->shared = NULL; |
| 708 | } |
| 709 | } |
| 710 | |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 711 | static int wacom_add_shared_data(struct hid_device *hdev) |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 712 | { |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 713 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 714 | struct wacom_wac *wacom_wac = &wacom->wacom_wac; |
| 715 | struct wacom_hdev_data *data; |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 716 | int retval = 0; |
| 717 | |
| 718 | mutex_lock(&wacom_udev_list_lock); |
| 719 | |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 720 | data = wacom_get_hdev_data(hdev); |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 721 | if (!data) { |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 722 | data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL); |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 723 | if (!data) { |
| 724 | retval = -ENOMEM; |
| 725 | goto out; |
| 726 | } |
| 727 | |
| 728 | kref_init(&data->kref); |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 729 | data->dev = hdev; |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 730 | list_add_tail(&data->list, &wacom_udev_list); |
| 731 | } |
| 732 | |
Benjamin Tissoires | 4451e08 | 2014-07-24 13:01:05 -0700 | [diff] [blame] | 733 | wacom_wac->shared = &data->shared; |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 734 | |
Benjamin Tissoires | 1c817c8 | 2016-07-13 18:05:59 +0200 | [diff] [blame] | 735 | retval = devm_add_action(&hdev->dev, wacom_remove_shared_data, wacom); |
| 736 | if (retval) { |
| 737 | mutex_unlock(&wacom_udev_list_lock); |
| 738 | wacom_remove_shared_data(wacom); |
| 739 | return retval; |
| 740 | } |
| 741 | |
Jason Gerecke | a9ce785 | 2017-01-17 15:38:58 -0800 | [diff] [blame] | 742 | if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH) |
| 743 | wacom_wac->shared->touch = hdev; |
| 744 | else if (wacom_wac->features.device_type & WACOM_DEVICETYPE_PEN) |
| 745 | wacom_wac->shared->pen = hdev; |
| 746 | |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 747 | out: |
| 748 | mutex_unlock(&wacom_udev_list_lock); |
| 749 | return retval; |
| 750 | } |
| 751 | |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 752 | static int wacom_led_control(struct wacom *wacom) |
| 753 | { |
| 754 | unsigned char *buf; |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 755 | int retval; |
Ping Cheng | 912ca21 | 2014-09-10 12:41:31 -0700 | [diff] [blame] | 756 | unsigned char report_id = WAC_CMD_LED_CONTROL; |
| 757 | int buf_size = 9; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 758 | |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 759 | if (!wacom->led.groups) |
| 760 | return -ENOTSUPP; |
| 761 | |
Ping Cheng | 912ca21 | 2014-09-10 12:41:31 -0700 | [diff] [blame] | 762 | if (wacom->wacom_wac.pid) { /* wireless connected */ |
| 763 | report_id = WAC_CMD_WL_LED_CONTROL; |
| 764 | buf_size = 13; |
| 765 | } |
Jason Gerecke | 4922cd2 | 2017-01-25 12:08:37 -0800 | [diff] [blame] | 766 | else if (wacom->wacom_wac.features.type == INTUOSP2_BT) { |
| 767 | report_id = WAC_CMD_WL_INTUOSP2; |
| 768 | buf_size = 51; |
| 769 | } |
Ping Cheng | 912ca21 | 2014-09-10 12:41:31 -0700 | [diff] [blame] | 770 | buf = kzalloc(buf_size, GFP_KERNEL); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 771 | if (!buf) |
| 772 | return -ENOMEM; |
| 773 | |
Aaron Armstrong Skomra | 10c55ca | 2017-01-25 12:08:42 -0800 | [diff] [blame] | 774 | if (wacom->wacom_wac.features.type == HID_GENERIC) { |
| 775 | buf[0] = WAC_CMD_LED_CONTROL_GENERIC; |
| 776 | buf[1] = wacom->led.llv; |
| 777 | buf[2] = wacom->led.groups[0].select & 0x03; |
| 778 | |
| 779 | } else if ((wacom->wacom_wac.features.type >= INTUOS5S && |
| 780 | wacom->wacom_wac.features.type <= INTUOSPL)) { |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 781 | /* |
| 782 | * Touch Ring and crop mark LED luminance may take on |
| 783 | * one of four values: |
| 784 | * 0 = Low; 1 = Medium; 2 = High; 3 = Off |
| 785 | */ |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 786 | int ring_led = wacom->led.groups[0].select & 0x03; |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 787 | int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03; |
| 788 | int crop_lum = 0; |
Ping Cheng | 912ca21 | 2014-09-10 12:41:31 -0700 | [diff] [blame] | 789 | unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led); |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 790 | |
Ping Cheng | 912ca21 | 2014-09-10 12:41:31 -0700 | [diff] [blame] | 791 | buf[0] = report_id; |
| 792 | if (wacom->wacom_wac.pid) { |
| 793 | wacom_get_report(wacom->hdev, HID_FEATURE_REPORT, |
| 794 | buf, buf_size, WAC_CMD_RETRIES); |
| 795 | buf[0] = report_id; |
| 796 | buf[4] = led_bits; |
| 797 | } else |
| 798 | buf[1] = led_bits; |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 799 | } |
Jason Gerecke | 4922cd2 | 2017-01-25 12:08:37 -0800 | [diff] [blame] | 800 | else if (wacom->wacom_wac.features.type == INTUOSP2_BT) { |
| 801 | buf[0] = report_id; |
| 802 | buf[4] = 100; // Power Connection LED (ORANGE) |
| 803 | buf[5] = 100; // BT Connection LED (BLUE) |
| 804 | buf[6] = 100; // Paper Mode (RED?) |
| 805 | buf[7] = 100; // Paper Mode (GREEN?) |
| 806 | buf[8] = 100; // Paper Mode (BLUE?) |
| 807 | buf[9] = wacom->led.llv; |
| 808 | buf[10] = wacom->led.groups[0].select & 0x03; |
| 809 | } |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 810 | else { |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 811 | int led = wacom->led.groups[0].select | 0x4; |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 812 | |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 813 | if (wacom->wacom_wac.features.type == WACOM_21UX2 || |
| 814 | wacom->wacom_wac.features.type == WACOM_24HD) |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 815 | led |= (wacom->led.groups[1].select << 4) | 0x40; |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 816 | |
Ping Cheng | 912ca21 | 2014-09-10 12:41:31 -0700 | [diff] [blame] | 817 | buf[0] = report_id; |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 818 | buf[1] = led; |
| 819 | buf[2] = wacom->led.llv; |
| 820 | buf[3] = wacom->led.hlv; |
| 821 | buf[4] = wacom->led.img_lum; |
| 822 | } |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 823 | |
Ping Cheng | 912ca21 | 2014-09-10 12:41:31 -0700 | [diff] [blame] | 824 | retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size, |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 825 | WAC_CMD_RETRIES); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 826 | kfree(buf); |
| 827 | |
| 828 | return retval; |
| 829 | } |
| 830 | |
Benjamin Tissoires | 849e2f0 | 2014-08-06 13:58:25 -0700 | [diff] [blame] | 831 | static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id, |
| 832 | const unsigned len, const void *img) |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 833 | { |
| 834 | unsigned char *buf; |
| 835 | int i, retval; |
Benjamin Tissoires | 849e2f0 | 2014-08-06 13:58:25 -0700 | [diff] [blame] | 836 | const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */ |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 837 | |
Benjamin Tissoires | 849e2f0 | 2014-08-06 13:58:25 -0700 | [diff] [blame] | 838 | buf = kzalloc(chunk_len + 3 , GFP_KERNEL); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 839 | if (!buf) |
| 840 | return -ENOMEM; |
| 841 | |
| 842 | /* Send 'start' command */ |
| 843 | buf[0] = WAC_CMD_ICON_START; |
| 844 | buf[1] = 1; |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 845 | retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2, |
| 846 | WAC_CMD_RETRIES); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 847 | if (retval < 0) |
| 848 | goto out; |
| 849 | |
Benjamin Tissoires | 849e2f0 | 2014-08-06 13:58:25 -0700 | [diff] [blame] | 850 | buf[0] = xfer_id; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 851 | buf[1] = button_id & 0x07; |
| 852 | for (i = 0; i < 4; i++) { |
| 853 | buf[2] = i; |
Benjamin Tissoires | 849e2f0 | 2014-08-06 13:58:25 -0700 | [diff] [blame] | 854 | memcpy(buf + 3, img + i * chunk_len, chunk_len); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 855 | |
Benjamin Tissoires | 27b20a9 | 2014-07-24 12:56:22 -0700 | [diff] [blame] | 856 | retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 857 | buf, chunk_len + 3, WAC_CMD_RETRIES); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 858 | if (retval < 0) |
| 859 | break; |
| 860 | } |
| 861 | |
| 862 | /* Send 'stop' */ |
| 863 | buf[0] = WAC_CMD_ICON_START; |
| 864 | buf[1] = 0; |
Przemo Firszt | 296b737 | 2014-08-06 14:00:38 -0700 | [diff] [blame] | 865 | wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2, |
| 866 | WAC_CMD_RETRIES); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 867 | |
| 868 | out: |
| 869 | kfree(buf); |
| 870 | return retval; |
| 871 | } |
| 872 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 873 | 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] | 874 | const char *buf, size_t count) |
| 875 | { |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 876 | struct hid_device *hdev = to_hid_device(dev); |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 877 | struct wacom *wacom = hid_get_drvdata(hdev); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 878 | unsigned int id; |
| 879 | int err; |
| 880 | |
| 881 | err = kstrtouint(buf, 10, &id); |
| 882 | if (err) |
| 883 | return err; |
| 884 | |
| 885 | mutex_lock(&wacom->lock); |
| 886 | |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 887 | wacom->led.groups[set_id].select = id & 0x3; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 888 | err = wacom_led_control(wacom); |
| 889 | |
| 890 | mutex_unlock(&wacom->lock); |
| 891 | |
| 892 | return err < 0 ? err : count; |
| 893 | } |
| 894 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 895 | #define DEVICE_LED_SELECT_ATTR(SET_ID) \ |
| 896 | static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \ |
| 897 | struct device_attribute *attr, const char *buf, size_t count) \ |
| 898 | { \ |
| 899 | return wacom_led_select_store(dev, SET_ID, buf, count); \ |
| 900 | } \ |
Ping Cheng | 04c59ab | 2011-10-04 23:51:49 -0700 | [diff] [blame] | 901 | static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \ |
| 902 | struct device_attribute *attr, char *buf) \ |
| 903 | { \ |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 904 | struct hid_device *hdev = to_hid_device(dev);\ |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 905 | struct wacom *wacom = hid_get_drvdata(hdev); \ |
Ping Cheng | 37449ad | 2014-09-10 12:40:30 -0700 | [diff] [blame] | 906 | return scnprintf(buf, PAGE_SIZE, "%d\n", \ |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 907 | wacom->led.groups[SET_ID].select); \ |
Ping Cheng | 04c59ab | 2011-10-04 23:51:49 -0700 | [diff] [blame] | 908 | } \ |
Ping Cheng | e0984bc | 2014-09-10 12:40:05 -0700 | [diff] [blame] | 909 | static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \ |
Ping Cheng | 04c59ab | 2011-10-04 23:51:49 -0700 | [diff] [blame] | 910 | wacom_led##SET_ID##_select_show, \ |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 911 | wacom_led##SET_ID##_select_store) |
| 912 | |
| 913 | DEVICE_LED_SELECT_ATTR(0); |
| 914 | DEVICE_LED_SELECT_ATTR(1); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 915 | |
| 916 | static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest, |
| 917 | const char *buf, size_t count) |
| 918 | { |
| 919 | unsigned int value; |
| 920 | int err; |
| 921 | |
| 922 | err = kstrtouint(buf, 10, &value); |
| 923 | if (err) |
| 924 | return err; |
| 925 | |
| 926 | mutex_lock(&wacom->lock); |
| 927 | |
| 928 | *dest = value & 0x7f; |
| 929 | err = wacom_led_control(wacom); |
| 930 | |
| 931 | mutex_unlock(&wacom->lock); |
| 932 | |
| 933 | return err < 0 ? err : count; |
| 934 | } |
| 935 | |
| 936 | #define DEVICE_LUMINANCE_ATTR(name, field) \ |
| 937 | static ssize_t wacom_##name##_luminance_store(struct device *dev, \ |
| 938 | struct device_attribute *attr, const char *buf, size_t count) \ |
| 939 | { \ |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 940 | struct hid_device *hdev = to_hid_device(dev);\ |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 941 | struct wacom *wacom = hid_get_drvdata(hdev); \ |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 942 | \ |
| 943 | return wacom_luminance_store(wacom, &wacom->led.field, \ |
| 944 | buf, count); \ |
| 945 | } \ |
Ping Cheng | 37449ad | 2014-09-10 12:40:30 -0700 | [diff] [blame] | 946 | static ssize_t wacom_##name##_luminance_show(struct device *dev, \ |
| 947 | struct device_attribute *attr, char *buf) \ |
| 948 | { \ |
| 949 | struct wacom *wacom = dev_get_drvdata(dev); \ |
| 950 | return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \ |
| 951 | } \ |
Ping Cheng | e0984bc | 2014-09-10 12:40:05 -0700 | [diff] [blame] | 952 | static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \ |
Ping Cheng | 37449ad | 2014-09-10 12:40:30 -0700 | [diff] [blame] | 953 | wacom_##name##_luminance_show, \ |
| 954 | wacom_##name##_luminance_store) |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 955 | |
| 956 | DEVICE_LUMINANCE_ATTR(status0, llv); |
| 957 | DEVICE_LUMINANCE_ATTR(status1, hlv); |
| 958 | DEVICE_LUMINANCE_ATTR(buttons, img_lum); |
| 959 | |
| 960 | static ssize_t wacom_button_image_store(struct device *dev, int button_id, |
| 961 | const char *buf, size_t count) |
| 962 | { |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 963 | struct hid_device *hdev = to_hid_device(dev); |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 964 | struct wacom *wacom = hid_get_drvdata(hdev); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 965 | int err; |
Benjamin Tissoires | 849e2f0 | 2014-08-06 13:58:25 -0700 | [diff] [blame] | 966 | unsigned len; |
| 967 | u8 xfer_id; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 968 | |
Benjamin Tissoires | 849e2f0 | 2014-08-06 13:58:25 -0700 | [diff] [blame] | 969 | if (hdev->bus == BUS_BLUETOOTH) { |
| 970 | len = 256; |
| 971 | xfer_id = WAC_CMD_ICON_BT_XFER; |
| 972 | } else { |
| 973 | len = 1024; |
| 974 | xfer_id = WAC_CMD_ICON_XFER; |
| 975 | } |
| 976 | |
| 977 | if (count != len) |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 978 | return -EINVAL; |
| 979 | |
| 980 | mutex_lock(&wacom->lock); |
| 981 | |
Benjamin Tissoires | 849e2f0 | 2014-08-06 13:58:25 -0700 | [diff] [blame] | 982 | err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf); |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 983 | |
| 984 | mutex_unlock(&wacom->lock); |
| 985 | |
| 986 | return err < 0 ? err : count; |
| 987 | } |
| 988 | |
| 989 | #define DEVICE_BTNIMG_ATTR(BUTTON_ID) \ |
| 990 | static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \ |
| 991 | struct device_attribute *attr, const char *buf, size_t count) \ |
| 992 | { \ |
| 993 | return wacom_button_image_store(dev, BUTTON_ID, buf, count); \ |
| 994 | } \ |
Ping Cheng | e0984bc | 2014-09-10 12:40:05 -0700 | [diff] [blame] | 995 | static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \ |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 996 | NULL, wacom_btnimg##BUTTON_ID##_store) |
| 997 | |
| 998 | DEVICE_BTNIMG_ATTR(0); |
| 999 | DEVICE_BTNIMG_ATTR(1); |
| 1000 | DEVICE_BTNIMG_ATTR(2); |
| 1001 | DEVICE_BTNIMG_ATTR(3); |
| 1002 | DEVICE_BTNIMG_ATTR(4); |
| 1003 | DEVICE_BTNIMG_ATTR(5); |
| 1004 | DEVICE_BTNIMG_ATTR(6); |
| 1005 | DEVICE_BTNIMG_ATTR(7); |
| 1006 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1007 | static struct attribute *cintiq_led_attrs[] = { |
| 1008 | &dev_attr_status_led0_select.attr, |
| 1009 | &dev_attr_status_led1_select.attr, |
| 1010 | NULL |
| 1011 | }; |
| 1012 | |
| 1013 | static struct attribute_group cintiq_led_attr_group = { |
| 1014 | .name = "wacom_led", |
| 1015 | .attrs = cintiq_led_attrs, |
| 1016 | }; |
| 1017 | |
| 1018 | static struct attribute *intuos4_led_attrs[] = { |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1019 | &dev_attr_status0_luminance.attr, |
| 1020 | &dev_attr_status1_luminance.attr, |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1021 | &dev_attr_status_led0_select.attr, |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1022 | &dev_attr_buttons_luminance.attr, |
| 1023 | &dev_attr_button0_rawimg.attr, |
| 1024 | &dev_attr_button1_rawimg.attr, |
| 1025 | &dev_attr_button2_rawimg.attr, |
| 1026 | &dev_attr_button3_rawimg.attr, |
| 1027 | &dev_attr_button4_rawimg.attr, |
| 1028 | &dev_attr_button5_rawimg.attr, |
| 1029 | &dev_attr_button6_rawimg.attr, |
| 1030 | &dev_attr_button7_rawimg.attr, |
| 1031 | NULL |
| 1032 | }; |
| 1033 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1034 | static struct attribute_group intuos4_led_attr_group = { |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1035 | .name = "wacom_led", |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1036 | .attrs = intuos4_led_attrs, |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1037 | }; |
| 1038 | |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 1039 | static struct attribute *intuos5_led_attrs[] = { |
| 1040 | &dev_attr_status0_luminance.attr, |
| 1041 | &dev_attr_status_led0_select.attr, |
| 1042 | NULL |
| 1043 | }; |
| 1044 | |
| 1045 | static struct attribute_group intuos5_led_attr_group = { |
| 1046 | .name = "wacom_led", |
| 1047 | .attrs = intuos5_led_attrs, |
| 1048 | }; |
| 1049 | |
Aaron Armstrong Skomra | 10c55ca | 2017-01-25 12:08:42 -0800 | [diff] [blame] | 1050 | static struct attribute *generic_led_attrs[] = { |
| 1051 | &dev_attr_status0_luminance.attr, |
| 1052 | &dev_attr_status_led0_select.attr, |
| 1053 | NULL |
| 1054 | }; |
| 1055 | |
| 1056 | static struct attribute_group generic_led_attr_group = { |
| 1057 | .name = "wacom_led", |
| 1058 | .attrs = generic_led_attrs, |
| 1059 | }; |
| 1060 | |
Benjamin Tissoires | 2df68a8 | 2016-07-13 18:05:56 +0200 | [diff] [blame] | 1061 | struct wacom_sysfs_group_devres { |
| 1062 | struct attribute_group *group; |
| 1063 | struct kobject *root; |
| 1064 | }; |
| 1065 | |
| 1066 | static void wacom_devm_sysfs_group_release(struct device *dev, void *res) |
| 1067 | { |
| 1068 | struct wacom_sysfs_group_devres *devres = res; |
| 1069 | struct kobject *kobj = devres->root; |
| 1070 | |
| 1071 | dev_dbg(dev, "%s: dropping reference to %s\n", |
| 1072 | __func__, devres->group->name); |
| 1073 | sysfs_remove_group(kobj, devres->group); |
| 1074 | } |
| 1075 | |
Benjamin Tissoires | f9036bd | 2016-07-13 18:06:05 +0200 | [diff] [blame] | 1076 | static int __wacom_devm_sysfs_create_group(struct wacom *wacom, |
| 1077 | struct kobject *root, |
| 1078 | struct attribute_group *group) |
Benjamin Tissoires | 2df68a8 | 2016-07-13 18:05:56 +0200 | [diff] [blame] | 1079 | { |
| 1080 | struct wacom_sysfs_group_devres *devres; |
| 1081 | int error; |
| 1082 | |
| 1083 | devres = devres_alloc(wacom_devm_sysfs_group_release, |
| 1084 | sizeof(struct wacom_sysfs_group_devres), |
| 1085 | GFP_KERNEL); |
| 1086 | if (!devres) |
| 1087 | return -ENOMEM; |
| 1088 | |
| 1089 | devres->group = group; |
Benjamin Tissoires | f9036bd | 2016-07-13 18:06:05 +0200 | [diff] [blame] | 1090 | devres->root = root; |
Benjamin Tissoires | 2df68a8 | 2016-07-13 18:05:56 +0200 | [diff] [blame] | 1091 | |
| 1092 | error = sysfs_create_group(devres->root, group); |
| 1093 | if (error) |
| 1094 | return error; |
| 1095 | |
| 1096 | devres_add(&wacom->hdev->dev, devres); |
| 1097 | |
| 1098 | return 0; |
| 1099 | } |
| 1100 | |
Benjamin Tissoires | f9036bd | 2016-07-13 18:06:05 +0200 | [diff] [blame] | 1101 | static int wacom_devm_sysfs_create_group(struct wacom *wacom, |
| 1102 | struct attribute_group *group) |
| 1103 | { |
| 1104 | return __wacom_devm_sysfs_create_group(wacom, &wacom->hdev->dev.kobj, |
| 1105 | group); |
| 1106 | } |
| 1107 | |
Benjamin Tissoires | 34736aa | 2016-07-13 18:06:12 +0200 | [diff] [blame] | 1108 | enum led_brightness wacom_leds_brightness_get(struct wacom_led *led) |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1109 | { |
| 1110 | struct wacom *wacom = led->wacom; |
| 1111 | |
| 1112 | if (wacom->led.max_hlv) |
| 1113 | return led->hlv * LED_FULL / wacom->led.max_hlv; |
| 1114 | |
| 1115 | if (wacom->led.max_llv) |
| 1116 | return led->llv * LED_FULL / wacom->led.max_llv; |
| 1117 | |
| 1118 | /* device doesn't support brightness tuning */ |
| 1119 | return LED_FULL; |
| 1120 | } |
| 1121 | |
| 1122 | static enum led_brightness __wacom_led_brightness_get(struct led_classdev *cdev) |
| 1123 | { |
| 1124 | struct wacom_led *led = container_of(cdev, struct wacom_led, cdev); |
| 1125 | struct wacom *wacom = led->wacom; |
| 1126 | |
| 1127 | if (wacom->led.groups[led->group].select != led->id) |
| 1128 | return LED_OFF; |
| 1129 | |
| 1130 | return wacom_leds_brightness_get(led); |
| 1131 | } |
| 1132 | |
| 1133 | static int wacom_led_brightness_set(struct led_classdev *cdev, |
| 1134 | enum led_brightness brightness) |
| 1135 | { |
| 1136 | struct wacom_led *led = container_of(cdev, struct wacom_led, cdev); |
| 1137 | struct wacom *wacom = led->wacom; |
| 1138 | int error; |
| 1139 | |
| 1140 | mutex_lock(&wacom->lock); |
| 1141 | |
| 1142 | if (!wacom->led.groups || (brightness == LED_OFF && |
| 1143 | wacom->led.groups[led->group].select != led->id)) { |
| 1144 | error = 0; |
| 1145 | goto out; |
| 1146 | } |
| 1147 | |
| 1148 | led->llv = wacom->led.llv = wacom->led.max_llv * brightness / LED_FULL; |
| 1149 | led->hlv = wacom->led.hlv = wacom->led.max_hlv * brightness / LED_FULL; |
| 1150 | |
| 1151 | wacom->led.groups[led->group].select = led->id; |
| 1152 | |
| 1153 | error = wacom_led_control(wacom); |
| 1154 | |
| 1155 | out: |
| 1156 | mutex_unlock(&wacom->lock); |
| 1157 | |
| 1158 | return error; |
| 1159 | } |
| 1160 | |
| 1161 | static void wacom_led_readonly_brightness_set(struct led_classdev *cdev, |
| 1162 | enum led_brightness brightness) |
| 1163 | { |
| 1164 | } |
| 1165 | |
| 1166 | static int wacom_led_register_one(struct device *dev, struct wacom *wacom, |
| 1167 | struct wacom_led *led, unsigned int group, |
| 1168 | unsigned int id, bool read_only) |
| 1169 | { |
| 1170 | int error; |
| 1171 | char *name; |
| 1172 | |
| 1173 | name = devm_kasprintf(dev, GFP_KERNEL, |
| 1174 | "%s::wacom-%d.%d", |
| 1175 | dev_name(dev), |
| 1176 | group, |
| 1177 | id); |
| 1178 | if (!name) |
| 1179 | return -ENOMEM; |
| 1180 | |
Benjamin Tissoires | 34736aa | 2016-07-13 18:06:12 +0200 | [diff] [blame] | 1181 | if (!read_only) { |
| 1182 | led->trigger.name = name; |
| 1183 | error = devm_led_trigger_register(dev, &led->trigger); |
| 1184 | if (error) { |
| 1185 | hid_err(wacom->hdev, |
| 1186 | "failed to register LED trigger %s: %d\n", |
| 1187 | led->cdev.name, error); |
| 1188 | return error; |
| 1189 | } |
| 1190 | } |
| 1191 | |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1192 | led->group = group; |
| 1193 | led->id = id; |
| 1194 | led->wacom = wacom; |
| 1195 | led->llv = wacom->led.llv; |
| 1196 | led->hlv = wacom->led.hlv; |
| 1197 | led->cdev.name = name; |
| 1198 | led->cdev.max_brightness = LED_FULL; |
| 1199 | led->cdev.flags = LED_HW_PLUGGABLE; |
| 1200 | led->cdev.brightness_get = __wacom_led_brightness_get; |
Benjamin Tissoires | 34736aa | 2016-07-13 18:06:12 +0200 | [diff] [blame] | 1201 | if (!read_only) { |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1202 | led->cdev.brightness_set_blocking = wacom_led_brightness_set; |
Benjamin Tissoires | 34736aa | 2016-07-13 18:06:12 +0200 | [diff] [blame] | 1203 | led->cdev.default_trigger = led->cdev.name; |
| 1204 | } else { |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1205 | led->cdev.brightness_set = wacom_led_readonly_brightness_set; |
Benjamin Tissoires | 34736aa | 2016-07-13 18:06:12 +0200 | [diff] [blame] | 1206 | } |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1207 | |
| 1208 | error = devm_led_classdev_register(dev, &led->cdev); |
| 1209 | if (error) { |
| 1210 | hid_err(wacom->hdev, |
| 1211 | "failed to register LED %s: %d\n", |
| 1212 | led->cdev.name, error); |
| 1213 | led->cdev.name = NULL; |
| 1214 | return error; |
| 1215 | } |
| 1216 | |
| 1217 | return 0; |
| 1218 | } |
| 1219 | |
Benjamin Tissoires | 589e506 | 2016-07-13 18:06:11 +0200 | [diff] [blame] | 1220 | static void wacom_led_groups_release_one(void *data) |
| 1221 | { |
| 1222 | struct wacom_group_leds *group = data; |
| 1223 | |
| 1224 | devres_release_group(group->dev, group); |
| 1225 | } |
| 1226 | |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1227 | static int wacom_led_groups_alloc_and_register_one(struct device *dev, |
| 1228 | struct wacom *wacom, |
| 1229 | int group_id, int count, |
| 1230 | bool read_only) |
| 1231 | { |
| 1232 | struct wacom_led *leds; |
| 1233 | int i, error; |
| 1234 | |
| 1235 | if (group_id >= wacom->led.count || count <= 0) |
| 1236 | return -EINVAL; |
| 1237 | |
| 1238 | if (!devres_open_group(dev, &wacom->led.groups[group_id], GFP_KERNEL)) |
| 1239 | return -ENOMEM; |
| 1240 | |
| 1241 | leds = devm_kzalloc(dev, sizeof(struct wacom_led) * count, GFP_KERNEL); |
| 1242 | if (!leds) { |
| 1243 | error = -ENOMEM; |
| 1244 | goto err; |
| 1245 | } |
| 1246 | |
| 1247 | wacom->led.groups[group_id].leds = leds; |
| 1248 | wacom->led.groups[group_id].count = count; |
| 1249 | |
| 1250 | for (i = 0; i < count; i++) { |
| 1251 | error = wacom_led_register_one(dev, wacom, &leds[i], |
| 1252 | group_id, i, read_only); |
| 1253 | if (error) |
| 1254 | goto err; |
| 1255 | } |
| 1256 | |
Benjamin Tissoires | 589e506 | 2016-07-13 18:06:11 +0200 | [diff] [blame] | 1257 | wacom->led.groups[group_id].dev = dev; |
| 1258 | |
| 1259 | devres_close_group(dev, &wacom->led.groups[group_id]); |
| 1260 | |
| 1261 | /* |
| 1262 | * There is a bug (?) in devm_led_classdev_register() in which its |
| 1263 | * increments the refcount of the parent. If the parent is an input |
| 1264 | * device, that means the ref count never reaches 0 when |
| 1265 | * devm_input_device_release() gets called. |
| 1266 | * This means that the LEDs are still there after disconnect. |
| 1267 | * Manually force the release of the group so that the leds are released |
| 1268 | * once we are done using them. |
| 1269 | */ |
| 1270 | error = devm_add_action_or_reset(&wacom->hdev->dev, |
| 1271 | wacom_led_groups_release_one, |
| 1272 | &wacom->led.groups[group_id]); |
| 1273 | if (error) |
| 1274 | return error; |
| 1275 | |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1276 | return 0; |
| 1277 | |
| 1278 | err: |
| 1279 | devres_release_group(dev, &wacom->led.groups[group_id]); |
| 1280 | return error; |
| 1281 | } |
| 1282 | |
Benjamin Tissoires | 34736aa | 2016-07-13 18:06:12 +0200 | [diff] [blame] | 1283 | struct wacom_led *wacom_led_find(struct wacom *wacom, unsigned int group_id, |
| 1284 | unsigned int id) |
| 1285 | { |
| 1286 | struct wacom_group_leds *group; |
| 1287 | |
| 1288 | if (group_id >= wacom->led.count) |
| 1289 | return NULL; |
| 1290 | |
| 1291 | group = &wacom->led.groups[group_id]; |
| 1292 | |
| 1293 | if (!group->leds) |
| 1294 | return NULL; |
| 1295 | |
| 1296 | id %= group->count; |
| 1297 | |
| 1298 | return &group->leds[id]; |
| 1299 | } |
| 1300 | |
| 1301 | /** |
| 1302 | * wacom_led_next: gives the next available led with a wacom trigger. |
| 1303 | * |
| 1304 | * returns the next available struct wacom_led which has its default trigger |
| 1305 | * or the current one if none is available. |
| 1306 | */ |
| 1307 | struct wacom_led *wacom_led_next(struct wacom *wacom, struct wacom_led *cur) |
| 1308 | { |
| 1309 | struct wacom_led *next_led; |
| 1310 | int group, next; |
| 1311 | |
| 1312 | if (!wacom || !cur) |
| 1313 | return NULL; |
| 1314 | |
| 1315 | group = cur->group; |
| 1316 | next = cur->id; |
| 1317 | |
| 1318 | do { |
| 1319 | next_led = wacom_led_find(wacom, group, ++next); |
| 1320 | if (!next_led || next_led == cur) |
| 1321 | return next_led; |
| 1322 | } while (next_led->cdev.trigger != &next_led->trigger); |
| 1323 | |
| 1324 | return next_led; |
| 1325 | } |
| 1326 | |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1327 | static void wacom_led_groups_release(void *data) |
| 1328 | { |
| 1329 | struct wacom *wacom = data; |
| 1330 | |
| 1331 | wacom->led.groups = NULL; |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1332 | wacom->led.count = 0; |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1333 | } |
| 1334 | |
| 1335 | static int wacom_led_groups_allocate(struct wacom *wacom, int count) |
| 1336 | { |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1337 | struct device *dev = &wacom->hdev->dev; |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1338 | struct wacom_group_leds *groups; |
| 1339 | int error; |
| 1340 | |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1341 | groups = devm_kzalloc(dev, sizeof(struct wacom_group_leds) * count, |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1342 | GFP_KERNEL); |
| 1343 | if (!groups) |
| 1344 | return -ENOMEM; |
| 1345 | |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1346 | error = devm_add_action_or_reset(dev, wacom_led_groups_release, wacom); |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1347 | if (error) |
| 1348 | return error; |
| 1349 | |
| 1350 | wacom->led.groups = groups; |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1351 | wacom->led.count = count; |
| 1352 | |
| 1353 | return 0; |
| 1354 | } |
| 1355 | |
| 1356 | static int wacom_leds_alloc_and_register(struct wacom *wacom, int group_count, |
| 1357 | int led_per_group, bool read_only) |
| 1358 | { |
| 1359 | struct device *dev; |
| 1360 | int i, error; |
| 1361 | |
| 1362 | if (!wacom->wacom_wac.pad_input) |
| 1363 | return -EINVAL; |
| 1364 | |
| 1365 | dev = &wacom->wacom_wac.pad_input->dev; |
| 1366 | |
| 1367 | error = wacom_led_groups_allocate(wacom, group_count); |
| 1368 | if (error) |
| 1369 | return error; |
| 1370 | |
| 1371 | for (i = 0; i < group_count; i++) { |
| 1372 | error = wacom_led_groups_alloc_and_register_one(dev, wacom, i, |
| 1373 | led_per_group, |
| 1374 | read_only); |
| 1375 | if (error) |
| 1376 | return error; |
| 1377 | } |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1378 | |
| 1379 | return 0; |
| 1380 | } |
| 1381 | |
Aaron Armstrong Skomra | 10c55ca | 2017-01-25 12:08:42 -0800 | [diff] [blame] | 1382 | int wacom_initialize_leds(struct wacom *wacom) |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1383 | { |
| 1384 | int error; |
| 1385 | |
Jason Gerecke | 862cf55 | 2015-06-15 18:01:43 -0700 | [diff] [blame] | 1386 | if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD)) |
| 1387 | return 0; |
| 1388 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1389 | /* Initialize default values */ |
| 1390 | switch (wacom->wacom_wac.features.type) { |
Aaron Armstrong Skomra | 10c55ca | 2017-01-25 12:08:42 -0800 | [diff] [blame] | 1391 | case HID_GENERIC: |
| 1392 | if (!wacom->generic_has_leds) |
| 1393 | return 0; |
| 1394 | wacom->led.llv = 100; |
| 1395 | wacom->led.max_llv = 100; |
| 1396 | |
| 1397 | error = wacom_leds_alloc_and_register(wacom, 1, 4, false); |
| 1398 | if (error) { |
| 1399 | hid_err(wacom->hdev, |
| 1400 | "cannot create leds err: %d\n", error); |
| 1401 | return error; |
| 1402 | } |
| 1403 | |
| 1404 | error = wacom_devm_sysfs_create_group(wacom, |
| 1405 | &generic_led_attr_group); |
| 1406 | break; |
| 1407 | |
Jason Gerecke | a19fc98 | 2012-06-12 00:27:53 -0700 | [diff] [blame] | 1408 | case INTUOS4S: |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1409 | case INTUOS4: |
Benjamin Tissoires | 81af7e6 | 2014-08-06 13:55:56 -0700 | [diff] [blame] | 1410 | case INTUOS4WL: |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1411 | case INTUOS4L: |
Ping Cheng | f4fa9a6 | 2011-10-04 23:49:42 -0700 | [diff] [blame] | 1412 | wacom->led.llv = 10; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1413 | wacom->led.hlv = 20; |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1414 | wacom->led.max_llv = 127; |
| 1415 | wacom->led.max_hlv = 127; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1416 | wacom->led.img_lum = 10; |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1417 | |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1418 | error = wacom_leds_alloc_and_register(wacom, 1, 4, false); |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1419 | if (error) { |
| 1420 | hid_err(wacom->hdev, |
| 1421 | "cannot create leds err: %d\n", error); |
| 1422 | return error; |
| 1423 | } |
| 1424 | |
Benjamin Tissoires | 2df68a8 | 2016-07-13 18:05:56 +0200 | [diff] [blame] | 1425 | error = wacom_devm_sysfs_create_group(wacom, |
| 1426 | &intuos4_led_attr_group); |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1427 | break; |
| 1428 | |
Jason Gerecke | 246835f | 2011-12-12 00:12:04 -0800 | [diff] [blame] | 1429 | case WACOM_24HD: |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1430 | case WACOM_21UX2: |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1431 | wacom->led.llv = 0; |
| 1432 | wacom->led.hlv = 0; |
| 1433 | wacom->led.img_lum = 0; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1434 | |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1435 | error = wacom_leds_alloc_and_register(wacom, 2, 4, false); |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1436 | if (error) { |
| 1437 | hid_err(wacom->hdev, |
| 1438 | "cannot create leds err: %d\n", error); |
| 1439 | return error; |
| 1440 | } |
| 1441 | |
Benjamin Tissoires | 2df68a8 | 2016-07-13 18:05:56 +0200 | [diff] [blame] | 1442 | error = wacom_devm_sysfs_create_group(wacom, |
| 1443 | &cintiq_led_attr_group); |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1444 | break; |
| 1445 | |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 1446 | case INTUOS5S: |
| 1447 | case INTUOS5: |
| 1448 | case INTUOS5L: |
Ping Cheng | 9a35c41 | 2013-09-20 09:51:56 -0700 | [diff] [blame] | 1449 | case INTUOSPS: |
| 1450 | case INTUOSPM: |
| 1451 | case INTUOSPL: |
Jason Gerecke | 862cf55 | 2015-06-15 18:01:43 -0700 | [diff] [blame] | 1452 | wacom->led.llv = 32; |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1453 | wacom->led.max_llv = 96; |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 1454 | |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1455 | error = wacom_leds_alloc_and_register(wacom, 1, 4, false); |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1456 | if (error) { |
| 1457 | hid_err(wacom->hdev, |
| 1458 | "cannot create leds err: %d\n", error); |
| 1459 | return error; |
| 1460 | } |
| 1461 | |
Benjamin Tissoires | 2df68a8 | 2016-07-13 18:05:56 +0200 | [diff] [blame] | 1462 | error = wacom_devm_sysfs_create_group(wacom, |
| 1463 | &intuos5_led_attr_group); |
Jason Gerecke | 9b5b95d | 2012-04-03 15:50:37 -0700 | [diff] [blame] | 1464 | break; |
| 1465 | |
Jason Gerecke | 4922cd2 | 2017-01-25 12:08:37 -0800 | [diff] [blame] | 1466 | case INTUOSP2_BT: |
| 1467 | wacom->led.llv = 50; |
| 1468 | wacom->led.max_llv = 100; |
| 1469 | error = wacom_leds_alloc_and_register(wacom, 1, 4, false); |
| 1470 | if (error) { |
| 1471 | hid_err(wacom->hdev, |
| 1472 | "cannot create leds err: %d\n", error); |
| 1473 | return error; |
| 1474 | } |
| 1475 | return 0; |
| 1476 | |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1477 | case REMOTE: |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 1478 | wacom->led.llv = 255; |
| 1479 | wacom->led.max_llv = 255; |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1480 | error = wacom_led_groups_allocate(wacom, 5); |
| 1481 | if (error) { |
| 1482 | hid_err(wacom->hdev, |
| 1483 | "cannot create leds err: %d\n", error); |
| 1484 | return error; |
| 1485 | } |
| 1486 | return 0; |
| 1487 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1488 | default: |
| 1489 | return 0; |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1490 | } |
| 1491 | |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1492 | if (error) { |
Benjamin Tissoires | c31a408 | 2014-07-24 12:59:45 -0700 | [diff] [blame] | 1493 | hid_err(wacom->hdev, |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1494 | "cannot create sysfs group err: %d\n", error); |
| 1495 | return error; |
| 1496 | } |
Ping Cheng | 09e7d94 | 2011-10-04 23:51:14 -0700 | [diff] [blame] | 1497 | |
Eduard Hasenleithner | 5d7e7d4 | 2011-09-07 14:08:54 -0700 | [diff] [blame] | 1498 | return 0; |
| 1499 | } |
| 1500 | |
Benjamin Tissoires | a544c61 | 2017-01-20 16:20:13 +0100 | [diff] [blame] | 1501 | static void wacom_init_work(struct work_struct *work) |
| 1502 | { |
| 1503 | struct wacom *wacom = container_of(work, struct wacom, init_work.work); |
| 1504 | |
| 1505 | _wacom_query_tablet_data(wacom); |
| 1506 | wacom_led_control(wacom); |
| 1507 | } |
| 1508 | |
| 1509 | static void wacom_query_tablet_data(struct wacom *wacom) |
| 1510 | { |
| 1511 | schedule_delayed_work(&wacom->init_work, msecs_to_jiffies(1000)); |
| 1512 | } |
| 1513 | |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1514 | static enum power_supply_property wacom_battery_props[] = { |
Benjamin Tissoires | 9956953 | 2016-07-13 18:06:17 +0200 | [diff] [blame] | 1515 | POWER_SUPPLY_PROP_MODEL_NAME, |
Jason Gerecke | 71fa641 | 2015-03-11 10:25:41 -0700 | [diff] [blame] | 1516 | POWER_SUPPLY_PROP_PRESENT, |
Benjamin Tissoires | ac8d101 | 2014-07-25 17:29:48 -0700 | [diff] [blame] | 1517 | POWER_SUPPLY_PROP_STATUS, |
Bastien Nocera | 6e2a6e8 | 2013-10-15 23:33:00 -0700 | [diff] [blame] | 1518 | POWER_SUPPLY_PROP_SCOPE, |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1519 | POWER_SUPPLY_PROP_CAPACITY |
| 1520 | }; |
| 1521 | |
| 1522 | static int wacom_battery_get_property(struct power_supply *psy, |
| 1523 | enum power_supply_property psp, |
| 1524 | union power_supply_propval *val) |
| 1525 | { |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1526 | struct wacom_battery *battery = power_supply_get_drvdata(psy); |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1527 | int ret = 0; |
| 1528 | |
| 1529 | switch (psp) { |
Benjamin Tissoires | 9956953 | 2016-07-13 18:06:17 +0200 | [diff] [blame] | 1530 | case POWER_SUPPLY_PROP_MODEL_NAME: |
| 1531 | val->strval = battery->wacom->wacom_wac.name; |
| 1532 | break; |
Jason Gerecke | 71fa641 | 2015-03-11 10:25:41 -0700 | [diff] [blame] | 1533 | case POWER_SUPPLY_PROP_PRESENT: |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1534 | val->intval = battery->bat_connected; |
Jason Gerecke | 71fa641 | 2015-03-11 10:25:41 -0700 | [diff] [blame] | 1535 | break; |
Bastien Nocera | 6e2a6e8 | 2013-10-15 23:33:00 -0700 | [diff] [blame] | 1536 | case POWER_SUPPLY_PROP_SCOPE: |
| 1537 | val->intval = POWER_SUPPLY_SCOPE_DEVICE; |
| 1538 | break; |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1539 | case POWER_SUPPLY_PROP_CAPACITY: |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1540 | val->intval = battery->battery_capacity; |
Benjamin Tissoires | ac8d101 | 2014-07-25 17:29:48 -0700 | [diff] [blame] | 1541 | break; |
| 1542 | case POWER_SUPPLY_PROP_STATUS: |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1543 | if (battery->bat_charging) |
Benjamin Tissoires | ac8d101 | 2014-07-25 17:29:48 -0700 | [diff] [blame] | 1544 | val->intval = POWER_SUPPLY_STATUS_CHARGING; |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1545 | else if (battery->battery_capacity == 100 && |
| 1546 | battery->ps_connected) |
Benjamin Tissoires | ac8d101 | 2014-07-25 17:29:48 -0700 | [diff] [blame] | 1547 | val->intval = POWER_SUPPLY_STATUS_FULL; |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1548 | else if (battery->ps_connected) |
Jason Gerecke | b0882cb | 2015-03-06 11:47:43 -0800 | [diff] [blame] | 1549 | val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING; |
Benjamin Tissoires | ac8d101 | 2014-07-25 17:29:48 -0700 | [diff] [blame] | 1550 | else |
| 1551 | val->intval = POWER_SUPPLY_STATUS_DISCHARGING; |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1552 | break; |
| 1553 | default: |
| 1554 | ret = -EINVAL; |
| 1555 | break; |
| 1556 | } |
| 1557 | |
| 1558 | return ret; |
| 1559 | } |
| 1560 | |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1561 | static int __wacom_initialize_battery(struct wacom *wacom, |
| 1562 | struct wacom_battery *battery) |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1563 | { |
Benjamin Tissoires | d70420b9 | 2014-07-25 17:31:51 -0700 | [diff] [blame] | 1564 | static atomic_t battery_no = ATOMIC_INIT(0); |
Benjamin Tissoires | b189da9 | 2016-07-13 18:05:53 +0200 | [diff] [blame] | 1565 | struct device *dev = &wacom->hdev->dev; |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1566 | struct power_supply_config psy_cfg = { .drv_data = battery, }; |
Benjamin Tissoires | 136ae5e | 2016-07-13 18:06:16 +0200 | [diff] [blame] | 1567 | struct power_supply *ps_bat; |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1568 | struct power_supply_desc *bat_desc = &battery->bat_desc; |
Benjamin Tissoires | d70420b9 | 2014-07-25 17:31:51 -0700 | [diff] [blame] | 1569 | unsigned long n; |
Benjamin Tissoires | b189da9 | 2016-07-13 18:05:53 +0200 | [diff] [blame] | 1570 | int error; |
| 1571 | |
| 1572 | if (!devres_open_group(dev, bat_desc, GFP_KERNEL)) |
| 1573 | return -ENOMEM; |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1574 | |
Benjamin Tissoires | 9956953 | 2016-07-13 18:06:17 +0200 | [diff] [blame] | 1575 | battery->wacom = wacom; |
| 1576 | |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1577 | n = atomic_inc_return(&battery_no) - 1; |
Benjamin Tissoires | 7dbd229 | 2014-07-25 17:32:41 -0700 | [diff] [blame] | 1578 | |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1579 | bat_desc->properties = wacom_battery_props; |
| 1580 | bat_desc->num_properties = ARRAY_SIZE(wacom_battery_props); |
| 1581 | bat_desc->get_property = wacom_battery_get_property; |
| 1582 | sprintf(battery->bat_name, "wacom_battery_%ld", n); |
| 1583 | bat_desc->name = battery->bat_name; |
Benjamin Tissoires | 9698329 | 2016-07-13 18:06:15 +0200 | [diff] [blame] | 1584 | bat_desc->type = POWER_SUPPLY_TYPE_USB; |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1585 | bat_desc->use_for_apm = 0; |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1586 | |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1587 | ps_bat = devm_power_supply_register(dev, bat_desc, &psy_cfg); |
| 1588 | if (IS_ERR(ps_bat)) { |
| 1589 | error = PTR_ERR(ps_bat); |
| 1590 | goto err; |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1591 | } |
| 1592 | |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1593 | power_supply_powers(ps_bat, &wacom->hdev->dev); |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1594 | |
| 1595 | battery->battery = ps_bat; |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1596 | |
Benjamin Tissoires | b189da9 | 2016-07-13 18:05:53 +0200 | [diff] [blame] | 1597 | devres_close_group(dev, bat_desc); |
Benjamin Tissoires | 7dbd229 | 2014-07-25 17:32:41 -0700 | [diff] [blame] | 1598 | return 0; |
Benjamin Tissoires | b189da9 | 2016-07-13 18:05:53 +0200 | [diff] [blame] | 1599 | |
| 1600 | err: |
| 1601 | devres_release_group(dev, bat_desc); |
| 1602 | return error; |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1603 | } |
| 1604 | |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1605 | static int wacom_initialize_battery(struct wacom *wacom) |
| 1606 | { |
| 1607 | if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) |
| 1608 | return __wacom_initialize_battery(wacom, &wacom->battery); |
| 1609 | |
| 1610 | return 0; |
| 1611 | } |
| 1612 | |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1613 | static void wacom_destroy_battery(struct wacom *wacom) |
| 1614 | { |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1615 | if (wacom->battery.battery) { |
| 1616 | devres_release_group(&wacom->hdev->dev, |
| 1617 | &wacom->battery.bat_desc); |
| 1618 | wacom->battery.battery = NULL; |
Chris Bagwell | b7af2bb | 2012-06-12 00:25:23 -0700 | [diff] [blame] | 1619 | } |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1620 | } |
| 1621 | |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 1622 | static ssize_t wacom_show_speed(struct device *dev, |
| 1623 | struct device_attribute |
| 1624 | *attr, char *buf) |
| 1625 | { |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 1626 | struct hid_device *hdev = to_hid_device(dev); |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 1627 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 1628 | |
| 1629 | return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed); |
| 1630 | } |
| 1631 | |
| 1632 | static ssize_t wacom_store_speed(struct device *dev, |
| 1633 | struct device_attribute *attr, |
| 1634 | const char *buf, size_t count) |
| 1635 | { |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 1636 | struct hid_device *hdev = to_hid_device(dev); |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 1637 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 1638 | u8 new_speed; |
| 1639 | |
| 1640 | if (kstrtou8(buf, 0, &new_speed)) |
| 1641 | return -EINVAL; |
| 1642 | |
| 1643 | if (new_speed != 0 && new_speed != 1) |
| 1644 | return -EINVAL; |
| 1645 | |
| 1646 | wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features); |
| 1647 | |
| 1648 | return count; |
| 1649 | } |
| 1650 | |
Ping Cheng | e0984bc | 2014-09-10 12:40:05 -0700 | [diff] [blame] | 1651 | static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM, |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 1652 | wacom_show_speed, wacom_store_speed); |
| 1653 | |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1654 | |
| 1655 | static ssize_t wacom_show_remote_mode(struct kobject *kobj, |
| 1656 | struct kobj_attribute *kattr, |
| 1657 | char *buf, int index) |
| 1658 | { |
Geliang Tang | 2cf8383 | 2015-12-27 17:25:24 +0800 | [diff] [blame] | 1659 | struct device *dev = kobj_to_dev(kobj->parent); |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 1660 | struct hid_device *hdev = to_hid_device(dev); |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1661 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 1662 | u8 mode; |
| 1663 | |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1664 | mode = wacom->led.groups[index].select; |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1665 | if (mode >= 0 && mode < 3) |
| 1666 | return snprintf(buf, PAGE_SIZE, "%d\n", mode); |
| 1667 | else |
| 1668 | return snprintf(buf, PAGE_SIZE, "%d\n", -1); |
| 1669 | } |
| 1670 | |
| 1671 | #define DEVICE_EKR_ATTR_GROUP(SET_ID) \ |
| 1672 | static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj, \ |
| 1673 | struct kobj_attribute *kattr, char *buf) \ |
| 1674 | { \ |
| 1675 | return wacom_show_remote_mode(kobj, kattr, buf, SET_ID); \ |
| 1676 | } \ |
| 1677 | static struct kobj_attribute remote##SET_ID##_mode_attr = { \ |
| 1678 | .attr = {.name = "remote_mode", \ |
| 1679 | .mode = DEV_ATTR_RO_PERM}, \ |
| 1680 | .show = wacom_show_remote##SET_ID##_mode, \ |
| 1681 | }; \ |
| 1682 | static struct attribute *remote##SET_ID##_serial_attrs[] = { \ |
| 1683 | &remote##SET_ID##_mode_attr.attr, \ |
| 1684 | NULL \ |
| 1685 | }; \ |
| 1686 | static struct attribute_group remote##SET_ID##_serial_group = { \ |
| 1687 | .name = NULL, \ |
| 1688 | .attrs = remote##SET_ID##_serial_attrs, \ |
| 1689 | } |
| 1690 | |
| 1691 | DEVICE_EKR_ATTR_GROUP(0); |
| 1692 | DEVICE_EKR_ATTR_GROUP(1); |
| 1693 | DEVICE_EKR_ATTR_GROUP(2); |
| 1694 | DEVICE_EKR_ATTR_GROUP(3); |
| 1695 | DEVICE_EKR_ATTR_GROUP(4); |
| 1696 | |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 1697 | static int wacom_remote_create_attr_group(struct wacom *wacom, __u32 serial, |
| 1698 | int index) |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1699 | { |
| 1700 | int error = 0; |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 1701 | struct wacom_remote *remote = wacom->remote; |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1702 | |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 1703 | remote->remotes[index].group.name = devm_kasprintf(&wacom->hdev->dev, |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 1704 | GFP_KERNEL, |
| 1705 | "%d", serial); |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 1706 | if (!remote->remotes[index].group.name) |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1707 | return -ENOMEM; |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1708 | |
Benjamin Tissoires | f9036bd | 2016-07-13 18:06:05 +0200 | [diff] [blame] | 1709 | error = __wacom_devm_sysfs_create_group(wacom, remote->remote_dir, |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 1710 | &remote->remotes[index].group); |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1711 | if (error) { |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 1712 | remote->remotes[index].group.name = NULL; |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1713 | hid_err(wacom->hdev, |
| 1714 | "cannot create sysfs group err: %d\n", error); |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1715 | return error; |
| 1716 | } |
| 1717 | |
| 1718 | return 0; |
| 1719 | } |
| 1720 | |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1721 | static int wacom_cmd_unpair_remote(struct wacom *wacom, unsigned char selector) |
| 1722 | { |
| 1723 | const size_t buf_size = 2; |
| 1724 | unsigned char *buf; |
| 1725 | int retval; |
| 1726 | |
| 1727 | buf = kzalloc(buf_size, GFP_KERNEL); |
| 1728 | if (!buf) |
| 1729 | return -ENOMEM; |
| 1730 | |
| 1731 | buf[0] = WAC_CMD_DELETE_PAIRING; |
| 1732 | buf[1] = selector; |
| 1733 | |
| 1734 | retval = wacom_set_report(wacom->hdev, HID_OUTPUT_REPORT, buf, |
| 1735 | buf_size, WAC_CMD_RETRIES); |
| 1736 | kfree(buf); |
| 1737 | |
| 1738 | return retval; |
| 1739 | } |
| 1740 | |
| 1741 | static ssize_t wacom_store_unpair_remote(struct kobject *kobj, |
| 1742 | struct kobj_attribute *attr, |
| 1743 | const char *buf, size_t count) |
| 1744 | { |
| 1745 | unsigned char selector = 0; |
Geliang Tang | 2cf8383 | 2015-12-27 17:25:24 +0800 | [diff] [blame] | 1746 | struct device *dev = kobj_to_dev(kobj->parent); |
Geliang Tang | ee79a8f | 2015-12-27 17:25:21 +0800 | [diff] [blame] | 1747 | struct hid_device *hdev = to_hid_device(dev); |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1748 | struct wacom *wacom = hid_get_drvdata(hdev); |
| 1749 | int err; |
| 1750 | |
| 1751 | if (!strncmp(buf, "*\n", 2)) { |
| 1752 | selector = WAC_CMD_UNPAIR_ALL; |
| 1753 | } else { |
| 1754 | hid_info(wacom->hdev, "remote: unrecognized unpair code: %s\n", |
| 1755 | buf); |
| 1756 | return -1; |
| 1757 | } |
| 1758 | |
| 1759 | mutex_lock(&wacom->lock); |
| 1760 | |
| 1761 | err = wacom_cmd_unpair_remote(wacom, selector); |
| 1762 | mutex_unlock(&wacom->lock); |
| 1763 | |
| 1764 | return err < 0 ? err : count; |
| 1765 | } |
| 1766 | |
| 1767 | static struct kobj_attribute unpair_remote_attr = { |
| 1768 | .attr = {.name = "unpair_remote", .mode = 0200}, |
| 1769 | .store = wacom_store_unpair_remote, |
| 1770 | }; |
| 1771 | |
| 1772 | static const struct attribute *remote_unpair_attrs[] = { |
| 1773 | &unpair_remote_attr.attr, |
| 1774 | NULL |
| 1775 | }; |
| 1776 | |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 1777 | static void wacom_remotes_destroy(void *data) |
| 1778 | { |
| 1779 | struct wacom *wacom = data; |
| 1780 | struct wacom_remote *remote = wacom->remote; |
| 1781 | |
| 1782 | if (!remote) |
| 1783 | return; |
| 1784 | |
| 1785 | kobject_put(remote->remote_dir); |
| 1786 | kfifo_free(&remote->remote_fifo); |
| 1787 | wacom->remote = NULL; |
| 1788 | } |
| 1789 | |
| 1790 | static int wacom_initialize_remotes(struct wacom *wacom) |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1791 | { |
| 1792 | int error = 0; |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 1793 | struct wacom_remote *remote; |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1794 | int i; |
| 1795 | |
| 1796 | if (wacom->wacom_wac.features.type != REMOTE) |
| 1797 | return 0; |
| 1798 | |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 1799 | remote = devm_kzalloc(&wacom->hdev->dev, sizeof(*wacom->remote), |
| 1800 | GFP_KERNEL); |
| 1801 | if (!remote) |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1802 | return -ENOMEM; |
| 1803 | |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 1804 | wacom->remote = remote; |
| 1805 | |
| 1806 | spin_lock_init(&remote->remote_lock); |
| 1807 | |
| 1808 | error = kfifo_alloc(&remote->remote_fifo, |
| 1809 | 5 * sizeof(struct wacom_remote_data), |
| 1810 | GFP_KERNEL); |
| 1811 | if (error) { |
| 1812 | hid_err(wacom->hdev, "failed allocating remote_fifo\n"); |
| 1813 | return -ENOMEM; |
| 1814 | } |
| 1815 | |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 1816 | remote->remotes[0].group = remote0_serial_group; |
| 1817 | remote->remotes[1].group = remote1_serial_group; |
| 1818 | remote->remotes[2].group = remote2_serial_group; |
| 1819 | remote->remotes[3].group = remote3_serial_group; |
| 1820 | remote->remotes[4].group = remote4_serial_group; |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 1821 | |
| 1822 | remote->remote_dir = kobject_create_and_add("wacom_remote", |
| 1823 | &wacom->hdev->dev.kobj); |
| 1824 | if (!remote->remote_dir) |
| 1825 | return -ENOMEM; |
| 1826 | |
| 1827 | error = sysfs_create_files(remote->remote_dir, remote_unpair_attrs); |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1828 | |
| 1829 | if (error) { |
| 1830 | hid_err(wacom->hdev, |
| 1831 | "cannot create sysfs group err: %d\n", error); |
| 1832 | return error; |
| 1833 | } |
| 1834 | |
| 1835 | for (i = 0; i < WACOM_MAX_REMOTES; i++) { |
Benjamin Tissoires | a50aac7 | 2016-07-13 18:06:00 +0200 | [diff] [blame] | 1836 | wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN; |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 1837 | remote->remotes[i].serial = 0; |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1838 | } |
| 1839 | |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 1840 | error = devm_add_action_or_reset(&wacom->hdev->dev, |
| 1841 | wacom_remotes_destroy, wacom); |
| 1842 | if (error) |
| 1843 | return error; |
| 1844 | |
Aaron Skomra | 72b236d | 2015-08-20 16:05:17 -0700 | [diff] [blame] | 1845 | return 0; |
| 1846 | } |
| 1847 | |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1848 | static struct input_dev *wacom_allocate_input(struct wacom *wacom) |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1849 | { |
| 1850 | struct input_dev *input_dev; |
Benjamin Tissoires | b6c79f2 | 2014-07-24 13:00:03 -0700 | [diff] [blame] | 1851 | struct hid_device *hdev = wacom->hdev; |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1852 | struct wacom_wac *wacom_wac = &(wacom->wacom_wac); |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1853 | |
Benjamin Tissoires | 3dad188 | 2016-07-13 18:05:54 +0200 | [diff] [blame] | 1854 | input_dev = devm_input_allocate_device(&hdev->dev); |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1855 | if (!input_dev) |
| 1856 | return NULL; |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1857 | |
Jason Gerecke | 2bdd163 | 2015-07-13 18:03:45 -0700 | [diff] [blame] | 1858 | input_dev->name = wacom_wac->features.name; |
Benjamin Tissoires | b6c79f2 | 2014-07-24 13:00:03 -0700 | [diff] [blame] | 1859 | input_dev->phys = hdev->phys; |
| 1860 | input_dev->dev.parent = &hdev->dev; |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1861 | input_dev->open = wacom_open; |
| 1862 | input_dev->close = wacom_close; |
Benjamin Tissoires | b6c79f2 | 2014-07-24 13:00:03 -0700 | [diff] [blame] | 1863 | input_dev->uniq = hdev->uniq; |
| 1864 | input_dev->id.bustype = hdev->bus; |
| 1865 | input_dev->id.vendor = hdev->vendor; |
Benjamin Tissoires | 12969e3 | 2014-09-11 13:14:04 -0400 | [diff] [blame] | 1866 | input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product; |
Benjamin Tissoires | b6c79f2 | 2014-07-24 13:00:03 -0700 | [diff] [blame] | 1867 | input_dev->id.version = hdev->version; |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1868 | input_set_drvdata(input_dev, wacom); |
| 1869 | |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1870 | return input_dev; |
| 1871 | } |
| 1872 | |
Jason Gerecke | d9f2d20 | 2015-07-13 18:03:44 -0700 | [diff] [blame] | 1873 | static int wacom_allocate_inputs(struct wacom *wacom) |
| 1874 | { |
| 1875 | struct wacom_wac *wacom_wac = &(wacom->wacom_wac); |
| 1876 | |
| 1877 | wacom_wac->pen_input = wacom_allocate_input(wacom); |
| 1878 | wacom_wac->touch_input = wacom_allocate_input(wacom); |
| 1879 | wacom_wac->pad_input = wacom_allocate_input(wacom); |
Benjamin Tissoires | 3dad188 | 2016-07-13 18:05:54 +0200 | [diff] [blame] | 1880 | if (!wacom_wac->pen_input || |
| 1881 | !wacom_wac->touch_input || |
| 1882 | !wacom_wac->pad_input) |
Jason Gerecke | d9f2d20 | 2015-07-13 18:03:44 -0700 | [diff] [blame] | 1883 | return -ENOMEM; |
Jason Gerecke | d9f2d20 | 2015-07-13 18:03:44 -0700 | [diff] [blame] | 1884 | |
Jason Gerecke | 2bdd163 | 2015-07-13 18:03:45 -0700 | [diff] [blame] | 1885 | wacom_wac->pen_input->name = wacom_wac->pen_name; |
Jason Gerecke | d9f2d20 | 2015-07-13 18:03:44 -0700 | [diff] [blame] | 1886 | wacom_wac->touch_input->name = wacom_wac->touch_name; |
| 1887 | wacom_wac->pad_input->name = wacom_wac->pad_name; |
| 1888 | |
| 1889 | return 0; |
| 1890 | } |
| 1891 | |
Benjamin Tissoires | 008f4d9 | 2014-07-24 12:51:26 -0700 | [diff] [blame] | 1892 | static int wacom_register_inputs(struct wacom *wacom) |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1893 | { |
Jason Gerecke | 2a6cdbd | 2015-06-15 18:01:45 -0700 | [diff] [blame] | 1894 | struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev; |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1895 | struct wacom_wac *wacom_wac = &(wacom->wacom_wac); |
Jason Gerecke | 2636a3f | 2015-06-15 18:01:44 -0700 | [diff] [blame] | 1896 | int error = 0; |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1897 | |
Jason Gerecke | 2a6cdbd | 2015-06-15 18:01:45 -0700 | [diff] [blame] | 1898 | pen_input_dev = wacom_wac->pen_input; |
| 1899 | touch_input_dev = wacom_wac->touch_input; |
Benjamin Tissoires | 2546dac | 2014-09-23 12:08:06 -0400 | [diff] [blame] | 1900 | pad_input_dev = wacom_wac->pad_input; |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1901 | |
Jason Gerecke | 2a6cdbd | 2015-06-15 18:01:45 -0700 | [diff] [blame] | 1902 | if (!pen_input_dev || !touch_input_dev || !pad_input_dev) |
Benjamin Tissoires | 2546dac | 2014-09-23 12:08:06 -0400 | [diff] [blame] | 1903 | return -EINVAL; |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1904 | |
Jason Gerecke | 2a6cdbd | 2015-06-15 18:01:45 -0700 | [diff] [blame] | 1905 | error = wacom_setup_pen_input_capabilities(pen_input_dev, wacom_wac); |
| 1906 | if (error) { |
| 1907 | /* no pen in use on this interface */ |
| 1908 | input_free_device(pen_input_dev); |
| 1909 | wacom_wac->pen_input = NULL; |
| 1910 | pen_input_dev = NULL; |
| 1911 | } else { |
| 1912 | error = input_register_device(pen_input_dev); |
Ping Cheng | 30ebc1a | 2014-11-18 13:29:16 -0800 | [diff] [blame] | 1913 | if (error) |
Benjamin Tissoires | 3dad188 | 2016-07-13 18:05:54 +0200 | [diff] [blame] | 1914 | goto fail; |
Jason Gerecke | 2a6cdbd | 2015-06-15 18:01:45 -0700 | [diff] [blame] | 1915 | } |
| 1916 | |
| 1917 | error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac); |
| 1918 | if (error) { |
| 1919 | /* no touch in use on this interface */ |
| 1920 | input_free_device(touch_input_dev); |
| 1921 | wacom_wac->touch_input = NULL; |
| 1922 | touch_input_dev = NULL; |
| 1923 | } else { |
| 1924 | error = input_register_device(touch_input_dev); |
| 1925 | if (error) |
Benjamin Tissoires | 3dad188 | 2016-07-13 18:05:54 +0200 | [diff] [blame] | 1926 | goto fail; |
Ping Cheng | 30ebc1a | 2014-11-18 13:29:16 -0800 | [diff] [blame] | 1927 | } |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1928 | |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1929 | error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac); |
| 1930 | if (error) { |
| 1931 | /* no pad in use on this interface */ |
| 1932 | input_free_device(pad_input_dev); |
| 1933 | wacom_wac->pad_input = NULL; |
| 1934 | pad_input_dev = NULL; |
| 1935 | } else { |
| 1936 | error = input_register_device(pad_input_dev); |
| 1937 | if (error) |
Benjamin Tissoires | 3dad188 | 2016-07-13 18:05:54 +0200 | [diff] [blame] | 1938 | goto fail; |
Benjamin Tissoires | d2d13f1 | 2014-07-24 12:48:28 -0700 | [diff] [blame] | 1939 | } |
| 1940 | |
Ping Cheng | 1963518 | 2012-04-29 21:09:18 -0700 | [diff] [blame] | 1941 | return 0; |
| 1942 | |
Benjamin Tissoires | 3dad188 | 2016-07-13 18:05:54 +0200 | [diff] [blame] | 1943 | fail: |
| 1944 | wacom_wac->pad_input = NULL; |
Jason Gerecke | 2a6cdbd | 2015-06-15 18:01:45 -0700 | [diff] [blame] | 1945 | wacom_wac->touch_input = NULL; |
Jason Gerecke | 2a6cdbd | 2015-06-15 18:01:45 -0700 | [diff] [blame] | 1946 | wacom_wac->pen_input = NULL; |
Chris Bagwell | 3aac0ef | 2012-03-25 23:25:45 -0700 | [diff] [blame] | 1947 | return error; |
| 1948 | } |
| 1949 | |
Jason Gerecke | 0be0171 | 2015-08-05 15:44:53 -0700 | [diff] [blame] | 1950 | /* |
| 1951 | * Not all devices report physical dimensions from HID. |
| 1952 | * Compute the default from hardcoded logical dimension |
| 1953 | * and resolution before driver overwrites them. |
| 1954 | */ |
| 1955 | static void wacom_set_default_phy(struct wacom_features *features) |
| 1956 | { |
| 1957 | if (features->x_resolution) { |
| 1958 | features->x_phy = (features->x_max * 100) / |
| 1959 | features->x_resolution; |
| 1960 | features->y_phy = (features->y_max * 100) / |
| 1961 | features->y_resolution; |
| 1962 | } |
| 1963 | } |
| 1964 | |
| 1965 | static void wacom_calculate_res(struct wacom_features *features) |
| 1966 | { |
| 1967 | /* set unit to "100th of a mm" for devices not reported by HID */ |
| 1968 | if (!features->unit) { |
| 1969 | features->unit = 0x11; |
| 1970 | features->unitExpo = -3; |
| 1971 | } |
| 1972 | |
| 1973 | features->x_resolution = wacom_calc_hid_res(features->x_max, |
| 1974 | features->x_phy, |
| 1975 | features->unit, |
| 1976 | features->unitExpo); |
| 1977 | features->y_resolution = wacom_calc_hid_res(features->y_max, |
| 1978 | features->y_phy, |
| 1979 | features->unit, |
| 1980 | features->unitExpo); |
| 1981 | } |
| 1982 | |
Jason Gerecke | fce9957 | 2015-03-06 11:47:40 -0800 | [diff] [blame] | 1983 | void wacom_battery_work(struct work_struct *work) |
| 1984 | { |
Benjamin Tissoires | d17d1f1 | 2016-07-13 18:05:52 +0200 | [diff] [blame] | 1985 | struct wacom *wacom = container_of(work, struct wacom, battery_work); |
Jason Gerecke | fce9957 | 2015-03-06 11:47:40 -0800 | [diff] [blame] | 1986 | |
| 1987 | if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) && |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1988 | !wacom->battery.battery) { |
Jason Gerecke | fce9957 | 2015-03-06 11:47:40 -0800 | [diff] [blame] | 1989 | wacom_initialize_battery(wacom); |
| 1990 | } |
| 1991 | else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) && |
Benjamin Tissoires | 59d69bc | 2016-07-13 18:06:08 +0200 | [diff] [blame] | 1992 | wacom->battery.battery) { |
Jason Gerecke | fce9957 | 2015-03-06 11:47:40 -0800 | [diff] [blame] | 1993 | wacom_destroy_battery(wacom); |
| 1994 | } |
| 1995 | } |
| 1996 | |
Benjamin Tissoires | 01c846f | 2014-07-24 12:59:11 -0700 | [diff] [blame] | 1997 | static size_t wacom_compute_pktlen(struct hid_device *hdev) |
| 1998 | { |
| 1999 | struct hid_report_enum *report_enum; |
| 2000 | struct hid_report *report; |
| 2001 | size_t size = 0; |
| 2002 | |
| 2003 | report_enum = hdev->report_enum + HID_INPUT_REPORT; |
| 2004 | |
| 2005 | list_for_each_entry(report, &report_enum->report_list, list) { |
Mathieu Magnaudet | dabb05c6 | 2014-11-27 16:02:36 +0100 | [diff] [blame] | 2006 | size_t report_size = hid_report_len(report); |
Benjamin Tissoires | 01c846f | 2014-07-24 12:59:11 -0700 | [diff] [blame] | 2007 | if (report_size > size) |
| 2008 | size = report_size; |
| 2009 | } |
| 2010 | |
| 2011 | return size; |
| 2012 | } |
| 2013 | |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2014 | static void wacom_update_name(struct wacom *wacom, const char *suffix) |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2015 | { |
| 2016 | struct wacom_wac *wacom_wac = &wacom->wacom_wac; |
| 2017 | struct wacom_features *features = &wacom_wac->features; |
Jason Gerecke | 44b5250 | 2015-06-15 18:01:41 -0700 | [diff] [blame] | 2018 | char name[WACOM_NAME_MAX]; |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2019 | |
| 2020 | /* Generic devices name unspecified */ |
| 2021 | if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) { |
| 2022 | if (strstr(wacom->hdev->name, "Wacom") || |
| 2023 | strstr(wacom->hdev->name, "wacom") || |
| 2024 | strstr(wacom->hdev->name, "WACOM")) { |
| 2025 | /* name is in HID descriptor, use it */ |
Jason Gerecke | 44b5250 | 2015-06-15 18:01:41 -0700 | [diff] [blame] | 2026 | strlcpy(name, wacom->hdev->name, sizeof(name)); |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2027 | |
| 2028 | /* strip out excess whitespaces */ |
| 2029 | while (1) { |
Jason Gerecke | 44b5250 | 2015-06-15 18:01:41 -0700 | [diff] [blame] | 2030 | char *gap = strstr(name, " "); |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2031 | if (gap == NULL) |
| 2032 | break; |
| 2033 | /* shift everything including the terminator */ |
| 2034 | memmove(gap, gap+1, strlen(gap)); |
| 2035 | } |
Jason Gerecke | f2209d4 | 2016-10-19 18:03:41 -0700 | [diff] [blame] | 2036 | |
| 2037 | /* strip off excessive prefixing */ |
| 2038 | if (strstr(name, "Wacom Co.,Ltd. Wacom ") == name) { |
| 2039 | int n = strlen(name); |
| 2040 | int x = strlen("Wacom Co.,Ltd. "); |
| 2041 | memmove(name, name+x, n-x+1); |
| 2042 | } |
| 2043 | if (strstr(name, "Wacom Co., Ltd. Wacom ") == name) { |
| 2044 | int n = strlen(name); |
| 2045 | int x = strlen("Wacom Co., Ltd. "); |
| 2046 | memmove(name, name+x, n-x+1); |
| 2047 | } |
| 2048 | |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2049 | /* get rid of trailing whitespace */ |
Jason Gerecke | 44b5250 | 2015-06-15 18:01:41 -0700 | [diff] [blame] | 2050 | if (name[strlen(name)-1] == ' ') |
| 2051 | name[strlen(name)-1] = '\0'; |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2052 | } else { |
| 2053 | /* no meaningful name retrieved. use product ID */ |
Jason Gerecke | 44b5250 | 2015-06-15 18:01:41 -0700 | [diff] [blame] | 2054 | snprintf(name, sizeof(name), |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2055 | "%s %X", features->name, wacom->hdev->product); |
| 2056 | } |
| 2057 | } else { |
Jason Gerecke | 44b5250 | 2015-06-15 18:01:41 -0700 | [diff] [blame] | 2058 | strlcpy(name, features->name, sizeof(name)); |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2059 | } |
| 2060 | |
Benjamin Tissoires | 9956953 | 2016-07-13 18:06:17 +0200 | [diff] [blame] | 2061 | snprintf(wacom_wac->name, sizeof(wacom_wac->name), "%s%s", |
| 2062 | name, suffix); |
| 2063 | |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2064 | /* Append the device type to the name */ |
Jason Gerecke | 2a6cdbd | 2015-06-15 18:01:45 -0700 | [diff] [blame] | 2065 | snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name), |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2066 | "%s%s Pen", name, suffix); |
Jason Gerecke | 2a6cdbd | 2015-06-15 18:01:45 -0700 | [diff] [blame] | 2067 | snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name), |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2068 | "%s%s Finger", name, suffix); |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2069 | snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name), |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2070 | "%s%s Pad", name, suffix); |
Ping Cheng | c24eab4 | 2015-04-24 15:32:51 -0700 | [diff] [blame] | 2071 | } |
| 2072 | |
Benjamin Tissoires | 84dfbd7 | 2016-07-13 18:05:55 +0200 | [diff] [blame] | 2073 | static void wacom_release_resources(struct wacom *wacom) |
| 2074 | { |
| 2075 | struct hid_device *hdev = wacom->hdev; |
| 2076 | |
| 2077 | if (!wacom->resources) |
| 2078 | return; |
| 2079 | |
| 2080 | devres_release_group(&hdev->dev, wacom); |
| 2081 | |
| 2082 | wacom->resources = false; |
| 2083 | |
| 2084 | wacom->wacom_wac.pen_input = NULL; |
| 2085 | wacom->wacom_wac.touch_input = NULL; |
| 2086 | wacom->wacom_wac.pad_input = NULL; |
| 2087 | } |
| 2088 | |
Aaron Armstrong Skomra | d2ec58a | 2017-01-25 12:08:41 -0800 | [diff] [blame] | 2089 | static void wacom_set_shared_values(struct wacom_wac *wacom_wac) |
| 2090 | { |
| 2091 | if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH) { |
| 2092 | wacom_wac->shared->type = wacom_wac->features.type; |
| 2093 | wacom_wac->shared->touch_input = wacom_wac->touch_input; |
| 2094 | } |
| 2095 | |
| 2096 | if (wacom_wac->has_mute_touch_switch) |
| 2097 | wacom_wac->shared->has_mute_touch_switch = true; |
| 2098 | |
| 2099 | if (wacom_wac->shared->has_mute_touch_switch && |
| 2100 | wacom_wac->shared->touch_input) { |
| 2101 | set_bit(EV_SW, wacom_wac->shared->touch_input->evbit); |
| 2102 | input_set_capability(wacom_wac->shared->touch_input, EV_SW, |
| 2103 | SW_MUTE_DEVICE); |
| 2104 | } |
| 2105 | } |
| 2106 | |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2107 | static int wacom_parse_and_register(struct wacom *wacom, bool wireless) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2108 | { |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2109 | struct wacom_wac *wacom_wac = &wacom->wacom_wac; |
| 2110 | struct wacom_features *features = &wacom_wac->features; |
| 2111 | struct hid_device *hdev = wacom->hdev; |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 2112 | int error; |
Benjamin Tissoires | 7704ac9 | 2014-09-23 12:08:08 -0400 | [diff] [blame] | 2113 | unsigned int connect_mask = HID_CONNECT_HIDRAW; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2114 | |
Benjamin Tissoires | 01c846f | 2014-07-24 12:59:11 -0700 | [diff] [blame] | 2115 | features->pktlen = wacom_compute_pktlen(hdev); |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2116 | if (features->pktlen > WACOM_PKGLEN_MAX) |
| 2117 | return -EINVAL; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2118 | |
Benjamin Tissoires | 84dfbd7 | 2016-07-13 18:05:55 +0200 | [diff] [blame] | 2119 | if (!devres_open_group(&hdev->dev, wacom, GFP_KERNEL)) |
| 2120 | return -ENOMEM; |
| 2121 | |
| 2122 | wacom->resources = true; |
| 2123 | |
Jason Gerecke | 3f14a63 | 2015-08-03 10:17:05 -0700 | [diff] [blame] | 2124 | error = wacom_allocate_inputs(wacom); |
| 2125 | if (error) |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2126 | goto fail; |
Benjamin Tissoires | 494078b | 2014-09-23 12:08:07 -0400 | [diff] [blame] | 2127 | |
Benjamin Tissoires | 8c97a76 | 2015-02-26 11:28:50 -0500 | [diff] [blame] | 2128 | /* |
| 2129 | * Bamboo Pad has a generic hid handling for the Pen, and we switch it |
| 2130 | * into debug mode for the touch part. |
| 2131 | * We ignore the other interfaces. |
| 2132 | */ |
| 2133 | if (features->type == BAMBOO_PAD) { |
| 2134 | if (features->pktlen == WACOM_PKGLEN_PENABLED) { |
| 2135 | features->type = HID_GENERIC; |
| 2136 | } else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) && |
| 2137 | (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) { |
| 2138 | error = -ENODEV; |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2139 | goto fail; |
Benjamin Tissoires | 8c97a76 | 2015-02-26 11:28:50 -0500 | [diff] [blame] | 2140 | } |
| 2141 | } |
| 2142 | |
Ping Cheng | 401d7d1 | 2013-07-28 00:38:54 -0700 | [diff] [blame] | 2143 | /* set the default size in case we do not get them from hid */ |
| 2144 | wacom_set_default_phy(features); |
| 2145 | |
Ping Cheng | f393ee2 | 2012-04-29 21:09:17 -0700 | [diff] [blame] | 2146 | /* Retrieve the physical and logical size for touch devices */ |
Benjamin Tissoires | c669fb2 | 2014-07-24 13:02:14 -0700 | [diff] [blame] | 2147 | wacom_retrieve_hid_descriptor(hdev, features); |
Ping Cheng | 42f4f27 | 2015-04-15 16:53:54 -0700 | [diff] [blame] | 2148 | wacom_setup_device_quirks(wacom); |
Jason Gerecke | 042628a | 2015-04-30 17:51:54 -0700 | [diff] [blame] | 2149 | |
Jason Gerecke | aa86b18 | 2015-06-15 18:01:42 -0700 | [diff] [blame] | 2150 | if (features->device_type == WACOM_DEVICETYPE_NONE && |
| 2151 | features->type != WIRELESS) { |
Jason Gerecke | 8e116d3 | 2015-04-30 17:51:55 -0700 | [diff] [blame] | 2152 | error = features->type == HID_GENERIC ? -ENODEV : 0; |
| 2153 | |
Jason Gerecke | 042628a | 2015-04-30 17:51:54 -0700 | [diff] [blame] | 2154 | dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.", |
Jason Gerecke | 8e116d3 | 2015-04-30 17:51:55 -0700 | [diff] [blame] | 2155 | hdev->name, |
| 2156 | error ? "Ignoring" : "Assuming pen"); |
| 2157 | |
| 2158 | if (error) |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2159 | goto fail; |
Jason Gerecke | 042628a | 2015-04-30 17:51:54 -0700 | [diff] [blame] | 2160 | |
Jason Gerecke | aa86b18 | 2015-06-15 18:01:42 -0700 | [diff] [blame] | 2161 | features->device_type |= WACOM_DEVICETYPE_PEN; |
Jason Gerecke | 042628a | 2015-04-30 17:51:54 -0700 | [diff] [blame] | 2162 | } |
| 2163 | |
Ping Cheng | 401d7d1 | 2013-07-28 00:38:54 -0700 | [diff] [blame] | 2164 | wacom_calculate_res(features); |
| 2165 | |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2166 | wacom_update_name(wacom, wireless ? " (WL)" : ""); |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 2167 | |
Jason Gerecke | a9ce785 | 2017-01-17 15:38:58 -0800 | [diff] [blame] | 2168 | error = wacom_add_shared_data(hdev); |
| 2169 | if (error) |
| 2170 | goto fail; |
Ping Cheng | 49b764a | 2010-02-20 00:53:49 -0800 | [diff] [blame] | 2171 | |
Jason Gerecke | ccad85c | 2015-08-03 10:17:04 -0700 | [diff] [blame] | 2172 | if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) && |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 2173 | (features->quirks & WACOM_QUIRK_BATTERY)) { |
| 2174 | error = wacom_initialize_battery(wacom); |
| 2175 | if (error) |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2176 | goto fail; |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 2177 | } |
| 2178 | |
Jason Gerecke | 3f14a63 | 2015-08-03 10:17:05 -0700 | [diff] [blame] | 2179 | error = wacom_register_inputs(wacom); |
| 2180 | if (error) |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2181 | goto fail; |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 2182 | |
Benjamin Tissoires | b62f646 | 2016-07-13 18:05:50 +0200 | [diff] [blame] | 2183 | if (wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD) { |
Benjamin Tissoires | 85d2c77 | 2016-07-13 18:05:51 +0200 | [diff] [blame] | 2184 | error = wacom_initialize_leds(wacom); |
| 2185 | if (error) |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2186 | goto fail; |
Benjamin Tissoires | 85d2c77 | 2016-07-13 18:05:51 +0200 | [diff] [blame] | 2187 | |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 2188 | error = wacom_initialize_remotes(wacom); |
Benjamin Tissoires | b62f646 | 2016-07-13 18:05:50 +0200 | [diff] [blame] | 2189 | if (error) |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2190 | goto fail; |
Benjamin Tissoires | b62f646 | 2016-07-13 18:05:50 +0200 | [diff] [blame] | 2191 | } |
| 2192 | |
Benjamin Tissoires | 7704ac9 | 2014-09-23 12:08:08 -0400 | [diff] [blame] | 2193 | if (features->type == HID_GENERIC) |
| 2194 | connect_mask |= HID_CONNECT_DRIVER; |
| 2195 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2196 | /* Regular HID work starts now */ |
Benjamin Tissoires | 7704ac9 | 2014-09-23 12:08:08 -0400 | [diff] [blame] | 2197 | error = hid_hw_start(hdev, connect_mask); |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2198 | if (error) { |
| 2199 | hid_err(hdev, "hw start failed\n"); |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2200 | goto fail; |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2201 | } |
| 2202 | |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2203 | if (!wireless) { |
| 2204 | /* Note that if query fails it is not a hard failure */ |
Benjamin Tissoires | a544c61 | 2017-01-20 16:20:13 +0100 | [diff] [blame] | 2205 | wacom_query_tablet_data(wacom); |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2206 | } |
Jason Gerecke | 86e88f0 | 2015-11-03 16:57:58 -0800 | [diff] [blame] | 2207 | |
| 2208 | /* touch only Bamboo doesn't support pen */ |
| 2209 | if ((features->type == BAMBOO_TOUCH) && |
| 2210 | (features->device_type & WACOM_DEVICETYPE_PEN)) { |
| 2211 | error = -ENODEV; |
Benjamin Tissoires | b62f646 | 2016-07-13 18:05:50 +0200 | [diff] [blame] | 2212 | goto fail_quirks; |
Jason Gerecke | 86e88f0 | 2015-11-03 16:57:58 -0800 | [diff] [blame] | 2213 | } |
| 2214 | |
| 2215 | /* pen only Bamboo neither support touch nor pad */ |
| 2216 | if ((features->type == BAMBOO_PEN) && |
| 2217 | ((features->device_type & WACOM_DEVICETYPE_TOUCH) || |
| 2218 | (features->device_type & WACOM_DEVICETYPE_PAD))) { |
| 2219 | error = -ENODEV; |
Benjamin Tissoires | b62f646 | 2016-07-13 18:05:50 +0200 | [diff] [blame] | 2220 | goto fail_quirks; |
Jason Gerecke | 86e88f0 | 2015-11-03 16:57:58 -0800 | [diff] [blame] | 2221 | } |
| 2222 | |
Jason Gerecke | ccad85c | 2015-08-03 10:17:04 -0700 | [diff] [blame] | 2223 | if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR) |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2224 | error = hid_hw_open(hdev); |
| 2225 | |
Aaron Armstrong Skomra | d2ec58a | 2017-01-25 12:08:41 -0800 | [diff] [blame] | 2226 | wacom_set_shared_values(wacom_wac); |
Benjamin Tissoires | 84dfbd7 | 2016-07-13 18:05:55 +0200 | [diff] [blame] | 2227 | devres_close_group(&hdev->dev, wacom); |
| 2228 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2229 | return 0; |
| 2230 | |
Benjamin Tissoires | b62f646 | 2016-07-13 18:05:50 +0200 | [diff] [blame] | 2231 | fail_quirks: |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2232 | hid_hw_stop(hdev); |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2233 | fail: |
Benjamin Tissoires | 84dfbd7 | 2016-07-13 18:05:55 +0200 | [diff] [blame] | 2234 | wacom_release_resources(wacom); |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2235 | return error; |
| 2236 | } |
| 2237 | |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2238 | static void wacom_wireless_work(struct work_struct *work) |
| 2239 | { |
Benjamin Tissoires | d17d1f1 | 2016-07-13 18:05:52 +0200 | [diff] [blame] | 2240 | struct wacom *wacom = container_of(work, struct wacom, wireless_work); |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2241 | struct usb_device *usbdev = wacom->usbdev; |
| 2242 | struct wacom_wac *wacom_wac = &wacom->wacom_wac; |
| 2243 | struct hid_device *hdev1, *hdev2; |
| 2244 | struct wacom *wacom1, *wacom2; |
| 2245 | struct wacom_wac *wacom_wac1, *wacom_wac2; |
| 2246 | int error; |
| 2247 | |
| 2248 | /* |
| 2249 | * Regardless if this is a disconnect or a new tablet, |
| 2250 | * remove any existing input and battery devices. |
| 2251 | */ |
| 2252 | |
| 2253 | wacom_destroy_battery(wacom); |
| 2254 | |
| 2255 | /* Stylus interface */ |
| 2256 | hdev1 = usb_get_intfdata(usbdev->config->interface[1]); |
| 2257 | wacom1 = hid_get_drvdata(hdev1); |
| 2258 | wacom_wac1 = &(wacom1->wacom_wac); |
Benjamin Tissoires | 84dfbd7 | 2016-07-13 18:05:55 +0200 | [diff] [blame] | 2259 | wacom_release_resources(wacom1); |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2260 | |
| 2261 | /* Touch interface */ |
| 2262 | hdev2 = usb_get_intfdata(usbdev->config->interface[2]); |
| 2263 | wacom2 = hid_get_drvdata(hdev2); |
| 2264 | wacom_wac2 = &(wacom2->wacom_wac); |
Benjamin Tissoires | 84dfbd7 | 2016-07-13 18:05:55 +0200 | [diff] [blame] | 2265 | wacom_release_resources(wacom2); |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2266 | |
| 2267 | if (wacom_wac->pid == 0) { |
| 2268 | hid_info(wacom->hdev, "wireless tablet disconnected\n"); |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2269 | } else { |
| 2270 | const struct hid_device_id *id = wacom_ids; |
| 2271 | |
| 2272 | hid_info(wacom->hdev, "wireless tablet connected with PID %x\n", |
| 2273 | wacom_wac->pid); |
| 2274 | |
| 2275 | while (id->bus) { |
| 2276 | if (id->vendor == USB_VENDOR_ID_WACOM && |
| 2277 | id->product == wacom_wac->pid) |
| 2278 | break; |
| 2279 | id++; |
| 2280 | } |
| 2281 | |
| 2282 | if (!id->bus) { |
| 2283 | hid_info(wacom->hdev, "ignoring unknown PID.\n"); |
| 2284 | return; |
| 2285 | } |
| 2286 | |
| 2287 | /* Stylus interface */ |
| 2288 | wacom_wac1->features = |
| 2289 | *((struct wacom_features *)id->driver_data); |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2290 | |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2291 | wacom_wac1->pid = wacom_wac->pid; |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2292 | hid_hw_stop(hdev1); |
| 2293 | error = wacom_parse_and_register(wacom1, true); |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2294 | if (error) |
| 2295 | goto fail; |
| 2296 | |
| 2297 | /* Touch interface */ |
| 2298 | if (wacom_wac1->features.touch_max || |
| 2299 | (wacom_wac1->features.type >= INTUOSHT && |
| 2300 | wacom_wac1->features.type <= BAMBOO_PT)) { |
| 2301 | wacom_wac2->features = |
| 2302 | *((struct wacom_features *)id->driver_data); |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2303 | wacom_wac2->pid = wacom_wac->pid; |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2304 | hid_hw_stop(hdev2); |
| 2305 | error = wacom_parse_and_register(wacom2, true); |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2306 | if (error) |
| 2307 | goto fail; |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2308 | } |
| 2309 | |
Benjamin Tissoires | 9956953 | 2016-07-13 18:06:17 +0200 | [diff] [blame] | 2310 | strlcpy(wacom_wac->name, wacom_wac1->name, |
| 2311 | sizeof(wacom_wac->name)); |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2312 | error = wacom_initialize_battery(wacom); |
| 2313 | if (error) |
| 2314 | goto fail; |
| 2315 | } |
| 2316 | |
| 2317 | return; |
| 2318 | |
| 2319 | fail: |
Benjamin Tissoires | 84dfbd7 | 2016-07-13 18:05:55 +0200 | [diff] [blame] | 2320 | wacom_release_resources(wacom1); |
Benjamin Tissoires | 84dfbd7 | 2016-07-13 18:05:55 +0200 | [diff] [blame] | 2321 | wacom_release_resources(wacom2); |
Benjamin Tissoires | a2f091a | 2016-02-12 17:27:42 +0100 | [diff] [blame] | 2322 | return; |
| 2323 | } |
| 2324 | |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2325 | static void wacom_remote_destroy_one(struct wacom *wacom, unsigned int index) |
| 2326 | { |
| 2327 | struct wacom_remote *remote = wacom->remote; |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2328 | u32 serial = remote->remotes[index].serial; |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2329 | int i; |
Benjamin Tissoires | 7c35dc3 | 2016-07-13 18:06:07 +0200 | [diff] [blame] | 2330 | unsigned long flags; |
| 2331 | |
| 2332 | spin_lock_irqsave(&remote->remote_lock, flags); |
| 2333 | remote->remotes[index].registered = false; |
| 2334 | spin_unlock_irqrestore(&remote->remote_lock, flags); |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2335 | |
Benjamin Tissoires | 9f1015d4 | 2016-07-13 18:06:09 +0200 | [diff] [blame] | 2336 | if (remote->remotes[index].battery.battery) |
| 2337 | devres_release_group(&wacom->hdev->dev, |
| 2338 | &remote->remotes[index].battery.bat_desc); |
| 2339 | |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2340 | if (remote->remotes[index].group.name) |
| 2341 | devres_release_group(&wacom->hdev->dev, |
| 2342 | &remote->remotes[index]); |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2343 | |
| 2344 | for (i = 0; i < WACOM_MAX_REMOTES; i++) { |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2345 | if (remote->remotes[i].serial == serial) { |
| 2346 | remote->remotes[i].serial = 0; |
| 2347 | remote->remotes[i].group.name = NULL; |
Benjamin Tissoires | 7c35dc3 | 2016-07-13 18:06:07 +0200 | [diff] [blame] | 2348 | remote->remotes[i].registered = false; |
Benjamin Tissoires | 9f1015d4 | 2016-07-13 18:06:09 +0200 | [diff] [blame] | 2349 | remote->remotes[i].battery.battery = NULL; |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2350 | wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN; |
| 2351 | } |
| 2352 | } |
| 2353 | } |
| 2354 | |
| 2355 | static int wacom_remote_create_one(struct wacom *wacom, u32 serial, |
| 2356 | unsigned int index) |
| 2357 | { |
| 2358 | struct wacom_remote *remote = wacom->remote; |
Benjamin Tissoires | f9036bd | 2016-07-13 18:06:05 +0200 | [diff] [blame] | 2359 | struct device *dev = &wacom->hdev->dev; |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2360 | int error, k; |
| 2361 | |
| 2362 | /* A remote can pair more than once with an EKR, |
| 2363 | * check to make sure this serial isn't already paired. |
| 2364 | */ |
| 2365 | for (k = 0; k < WACOM_MAX_REMOTES; k++) { |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2366 | if (remote->remotes[k].serial == serial) |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2367 | break; |
| 2368 | } |
| 2369 | |
| 2370 | if (k < WACOM_MAX_REMOTES) { |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2371 | remote->remotes[index].serial = serial; |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2372 | return 0; |
| 2373 | } |
| 2374 | |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2375 | if (!devres_open_group(dev, &remote->remotes[index], GFP_KERNEL)) |
Benjamin Tissoires | f9036bd | 2016-07-13 18:06:05 +0200 | [diff] [blame] | 2376 | return -ENOMEM; |
| 2377 | |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2378 | error = wacom_remote_create_attr_group(wacom, serial, index); |
| 2379 | if (error) |
Benjamin Tissoires | f9036bd | 2016-07-13 18:06:05 +0200 | [diff] [blame] | 2380 | goto fail; |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2381 | |
Benjamin Tissoires | 7c35dc3 | 2016-07-13 18:06:07 +0200 | [diff] [blame] | 2382 | remote->remotes[index].input = wacom_allocate_input(wacom); |
| 2383 | if (!remote->remotes[index].input) { |
| 2384 | error = -ENOMEM; |
| 2385 | goto fail; |
| 2386 | } |
| 2387 | remote->remotes[index].input->uniq = remote->remotes[index].group.name; |
| 2388 | remote->remotes[index].input->name = wacom->wacom_wac.pad_name; |
| 2389 | |
| 2390 | if (!remote->remotes[index].input->name) { |
| 2391 | error = -EINVAL; |
| 2392 | goto fail; |
| 2393 | } |
| 2394 | |
| 2395 | error = wacom_setup_pad_input_capabilities(remote->remotes[index].input, |
| 2396 | &wacom->wacom_wac); |
| 2397 | if (error) |
| 2398 | goto fail; |
| 2399 | |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2400 | remote->remotes[index].serial = serial; |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2401 | |
Benjamin Tissoires | 7c35dc3 | 2016-07-13 18:06:07 +0200 | [diff] [blame] | 2402 | error = input_register_device(remote->remotes[index].input); |
| 2403 | if (error) |
| 2404 | goto fail; |
| 2405 | |
Benjamin Tissoires | 97f5541 | 2016-07-13 18:06:10 +0200 | [diff] [blame] | 2406 | error = wacom_led_groups_alloc_and_register_one( |
| 2407 | &remote->remotes[index].input->dev, |
| 2408 | wacom, index, 3, true); |
| 2409 | if (error) |
| 2410 | goto fail; |
| 2411 | |
Benjamin Tissoires | 7c35dc3 | 2016-07-13 18:06:07 +0200 | [diff] [blame] | 2412 | remote->remotes[index].registered = true; |
| 2413 | |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2414 | devres_close_group(dev, &remote->remotes[index]); |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2415 | return 0; |
Benjamin Tissoires | f9036bd | 2016-07-13 18:06:05 +0200 | [diff] [blame] | 2416 | |
| 2417 | fail: |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2418 | devres_release_group(dev, &remote->remotes[index]); |
| 2419 | remote->remotes[index].serial = 0; |
Benjamin Tissoires | f9036bd | 2016-07-13 18:06:05 +0200 | [diff] [blame] | 2420 | return error; |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2421 | } |
| 2422 | |
Benjamin Tissoires | 9f1015d4 | 2016-07-13 18:06:09 +0200 | [diff] [blame] | 2423 | static int wacom_remote_attach_battery(struct wacom *wacom, int index) |
| 2424 | { |
| 2425 | struct wacom_remote *remote = wacom->remote; |
| 2426 | int error; |
| 2427 | |
| 2428 | if (!remote->remotes[index].registered) |
| 2429 | return 0; |
| 2430 | |
| 2431 | if (remote->remotes[index].battery.battery) |
| 2432 | return 0; |
| 2433 | |
| 2434 | if (wacom->led.groups[index].select == WACOM_STATUS_UNKNOWN) |
| 2435 | return 0; |
| 2436 | |
| 2437 | error = __wacom_initialize_battery(wacom, |
| 2438 | &wacom->remote->remotes[index].battery); |
| 2439 | if (error) |
| 2440 | return error; |
| 2441 | |
| 2442 | return 0; |
| 2443 | } |
| 2444 | |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2445 | static void wacom_remote_work(struct work_struct *work) |
| 2446 | { |
| 2447 | struct wacom *wacom = container_of(work, struct wacom, remote_work); |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 2448 | struct wacom_remote *remote = wacom->remote; |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2449 | struct wacom_remote_data data; |
| 2450 | unsigned long flags; |
| 2451 | unsigned int count; |
| 2452 | u32 serial; |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2453 | int i; |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2454 | |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 2455 | spin_lock_irqsave(&remote->remote_lock, flags); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2456 | |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 2457 | count = kfifo_out(&remote->remote_fifo, &data, sizeof(data)); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2458 | |
| 2459 | if (count != sizeof(data)) { |
| 2460 | hid_err(wacom->hdev, |
| 2461 | "workitem triggered without status available\n"); |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 2462 | spin_unlock_irqrestore(&remote->remote_lock, flags); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2463 | return; |
| 2464 | } |
| 2465 | |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 2466 | if (!kfifo_is_empty(&remote->remote_fifo)) |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2467 | wacom_schedule_work(&wacom->wacom_wac, WACOM_WORKER_REMOTE); |
| 2468 | |
Benjamin Tissoires | 83e6b40 | 2016-07-13 18:06:02 +0200 | [diff] [blame] | 2469 | spin_unlock_irqrestore(&remote->remote_lock, flags); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2470 | |
| 2471 | for (i = 0; i < WACOM_MAX_REMOTES; i++) { |
| 2472 | serial = data.remote[i].serial; |
| 2473 | if (data.remote[i].connected) { |
| 2474 | |
Benjamin Tissoires | 9f1015d4 | 2016-07-13 18:06:09 +0200 | [diff] [blame] | 2475 | if (remote->remotes[i].serial == serial) { |
| 2476 | wacom_remote_attach_battery(wacom, i); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2477 | continue; |
Benjamin Tissoires | 9f1015d4 | 2016-07-13 18:06:09 +0200 | [diff] [blame] | 2478 | } |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2479 | |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2480 | if (remote->remotes[i].serial) |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2481 | wacom_remote_destroy_one(wacom, i); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2482 | |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2483 | wacom_remote_create_one(wacom, serial, i); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2484 | |
Benjamin Tissoires | e7749f6 | 2016-07-13 18:06:06 +0200 | [diff] [blame] | 2485 | } else if (remote->remotes[i].serial) { |
Benjamin Tissoires | 04bfa27 | 2016-07-13 18:06:04 +0200 | [diff] [blame] | 2486 | wacom_remote_destroy_one(wacom, i); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2487 | } |
| 2488 | } |
| 2489 | } |
| 2490 | |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2491 | static int wacom_probe(struct hid_device *hdev, |
| 2492 | const struct hid_device_id *id) |
| 2493 | { |
| 2494 | struct usb_interface *intf = to_usb_interface(hdev->dev.parent); |
| 2495 | struct usb_device *dev = interface_to_usbdev(intf); |
| 2496 | struct wacom *wacom; |
| 2497 | struct wacom_wac *wacom_wac; |
| 2498 | struct wacom_features *features; |
| 2499 | int error; |
| 2500 | |
| 2501 | if (!id->driver_data) |
| 2502 | return -EINVAL; |
| 2503 | |
| 2504 | hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS; |
| 2505 | |
| 2506 | /* hid-core sets this quirk for the boot interface */ |
| 2507 | hdev->quirks &= ~HID_QUIRK_NOGET; |
| 2508 | |
Benjamin Tissoires | 19b6433 | 2016-07-13 18:05:58 +0200 | [diff] [blame] | 2509 | wacom = devm_kzalloc(&hdev->dev, sizeof(struct wacom), GFP_KERNEL); |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2510 | if (!wacom) |
| 2511 | return -ENOMEM; |
| 2512 | |
| 2513 | hid_set_drvdata(hdev, wacom); |
| 2514 | wacom->hdev = hdev; |
| 2515 | |
| 2516 | wacom_wac = &wacom->wacom_wac; |
| 2517 | wacom_wac->features = *((struct wacom_features *)id->driver_data); |
| 2518 | features = &wacom_wac->features; |
| 2519 | |
| 2520 | if (features->check_for_hid_type && features->hid_type != hdev->type) { |
| 2521 | error = -ENODEV; |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2522 | goto fail; |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2523 | } |
| 2524 | |
Jason Gerecke | c6fa1ae | 2016-04-04 11:26:51 -0700 | [diff] [blame] | 2525 | wacom_wac->hid_data.inputmode = -1; |
Jason Gerecke | 326ea2a | 2016-04-04 11:26:52 -0700 | [diff] [blame] | 2526 | wacom_wac->mode_report = -1; |
Jason Gerecke | c6fa1ae | 2016-04-04 11:26:51 -0700 | [diff] [blame] | 2527 | |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2528 | wacom->usbdev = dev; |
| 2529 | wacom->intf = intf; |
| 2530 | mutex_init(&wacom->lock); |
Benjamin Tissoires | a544c61 | 2017-01-20 16:20:13 +0100 | [diff] [blame] | 2531 | INIT_DELAYED_WORK(&wacom->init_work, wacom_init_work); |
Benjamin Tissoires | d17d1f1 | 2016-07-13 18:05:52 +0200 | [diff] [blame] | 2532 | INIT_WORK(&wacom->wireless_work, wacom_wireless_work); |
| 2533 | INIT_WORK(&wacom->battery_work, wacom_battery_work); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2534 | INIT_WORK(&wacom->remote_work, wacom_remote_work); |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2535 | |
| 2536 | /* ask for the report descriptor to be loaded by HID */ |
| 2537 | error = hid_parse(hdev); |
| 2538 | if (error) { |
| 2539 | hid_err(hdev, "parse failed\n"); |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2540 | goto fail; |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2541 | } |
| 2542 | |
Benjamin Tissoires | fd5f92b | 2016-02-12 17:27:43 +0100 | [diff] [blame] | 2543 | error = wacom_parse_and_register(wacom, false); |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2544 | if (error) |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2545 | goto fail; |
Benjamin Tissoires | c58ac3a | 2016-02-12 17:27:41 +0100 | [diff] [blame] | 2546 | |
| 2547 | if (hdev->bus == BUS_BLUETOOTH) { |
| 2548 | error = device_create_file(&hdev->dev, &dev_attr_speed); |
| 2549 | if (error) |
| 2550 | hid_warn(hdev, |
| 2551 | "can't create sysfs speed attribute err: %d\n", |
| 2552 | error); |
| 2553 | } |
| 2554 | |
| 2555 | return 0; |
| 2556 | |
Benjamin Tissoires | 3888b0d | 2016-07-13 18:06:03 +0200 | [diff] [blame] | 2557 | fail: |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2558 | hid_set_drvdata(hdev, NULL); |
Dmitry Torokhov | 5014186 | 2007-04-12 01:33:39 -0400 | [diff] [blame] | 2559 | return error; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2560 | } |
| 2561 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2562 | static void wacom_remove(struct hid_device *hdev) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2563 | { |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2564 | struct wacom *wacom = hid_get_drvdata(hdev); |
Benjamin Tissoires | f620516 | 2016-02-12 17:27:45 +0100 | [diff] [blame] | 2565 | struct wacom_wac *wacom_wac = &wacom->wacom_wac; |
| 2566 | struct wacom_features *features = &wacom_wac->features; |
| 2567 | |
| 2568 | if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR) |
| 2569 | hid_hw_close(hdev); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2570 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2571 | hid_hw_stop(hdev); |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 2572 | |
Benjamin Tissoires | a544c61 | 2017-01-20 16:20:13 +0100 | [diff] [blame] | 2573 | cancel_delayed_work_sync(&wacom->init_work); |
Benjamin Tissoires | d17d1f1 | 2016-07-13 18:05:52 +0200 | [diff] [blame] | 2574 | cancel_work_sync(&wacom->wireless_work); |
| 2575 | cancel_work_sync(&wacom->battery_work); |
Benjamin Tissoires | e6f2813 | 2016-07-13 18:06:01 +0200 | [diff] [blame] | 2576 | cancel_work_sync(&wacom->remote_work); |
Benjamin Tissoires | f81a129 | 2014-08-06 13:48:01 -0700 | [diff] [blame] | 2577 | if (hdev->bus == BUS_BLUETOOTH) |
| 2578 | device_remove_file(&hdev->dev, &dev_attr_speed); |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2579 | |
Benjamin Tissoires | c0265a94 | 2017-01-20 16:20:12 +0100 | [diff] [blame] | 2580 | /* make sure we don't trigger the LEDs */ |
| 2581 | wacom_led_groups_release(wacom); |
Benjamin Tissoires | 5b779fc | 2017-01-20 16:20:11 +0100 | [diff] [blame] | 2582 | wacom_release_resources(wacom); |
| 2583 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2584 | hid_set_drvdata(hdev, NULL); |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 2585 | } |
| 2586 | |
Geert Uytterhoeven | 41a7458 | 2014-08-11 11:03:19 -0700 | [diff] [blame] | 2587 | #ifdef CONFIG_PM |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2588 | static int wacom_resume(struct hid_device *hdev) |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 2589 | { |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2590 | struct wacom *wacom = hid_get_drvdata(hdev); |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 2591 | |
| 2592 | mutex_lock(&wacom->lock); |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2593 | |
| 2594 | /* switch to wacom mode first */ |
Benjamin Tissoires | a544c61 | 2017-01-20 16:20:13 +0100 | [diff] [blame] | 2595 | _wacom_query_tablet_data(wacom); |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2596 | wacom_led_control(wacom); |
| 2597 | |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 2598 | mutex_unlock(&wacom->lock); |
| 2599 | |
| 2600 | return 0; |
| 2601 | } |
| 2602 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2603 | static int wacom_reset_resume(struct hid_device *hdev) |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 2604 | { |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2605 | return wacom_resume(hdev); |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 2606 | } |
Geert Uytterhoeven | 41a7458 | 2014-08-11 11:03:19 -0700 | [diff] [blame] | 2607 | #endif /* CONFIG_PM */ |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 2608 | |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2609 | static struct hid_driver wacom_driver = { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2610 | .name = "wacom", |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 2611 | .id_table = wacom_ids, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2612 | .probe = wacom_probe, |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2613 | .remove = wacom_remove, |
Benjamin Tissoires | 7704ac9 | 2014-09-23 12:08:08 -0400 | [diff] [blame] | 2614 | .report = wacom_wac_report, |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2615 | #ifdef CONFIG_PM |
Oliver Neukum | e722409 | 2008-04-15 01:31:57 -0400 | [diff] [blame] | 2616 | .resume = wacom_resume, |
| 2617 | .reset_resume = wacom_reset_resume, |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2618 | #endif |
| 2619 | .raw_event = wacom_raw_event, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 2620 | }; |
Benjamin Tissoires | 29b4739 | 2014-07-24 12:52:23 -0700 | [diff] [blame] | 2621 | module_hid_driver(wacom_driver); |
Benjamin Tissoires | f2e0a7d | 2014-08-06 14:07:49 -0700 | [diff] [blame] | 2622 | |
| 2623 | MODULE_VERSION(DRIVER_VERSION); |
| 2624 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 2625 | MODULE_DESCRIPTION(DRIVER_DESC); |
Grant Grundler | 7021b60 | 2017-01-05 11:07:04 -0800 | [diff] [blame] | 2626 | MODULE_LICENSE("GPL"); |