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