blob: ae2408d5e53d38991126dcad9648c13acb98bc7a [file] [log] [blame]
Ping Cheng3bea7332006-07-13 18:01:36 -07001/*
Dmitry Torokhov4104d132007-05-07 16:16:29 -04002 * drivers/input/tablet/wacom_sys.c
Ping Cheng3bea7332006-07-13 18:01:36 -07003 *
Ping Cheng232f5692009-12-15 00:35:24 -08004 * USB Wacom tablet support - system specific code
Ping Cheng3bea7332006-07-13 18:01:36 -07005 */
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 Cheng3bea7332006-07-13 18:01:36 -070014#include "wacom_wac.h"
Dmitry Torokhov51269fe2010-03-19 22:18:15 -070015#include "wacom.h"
Jason Gereckeb58ba1b2014-12-05 13:37:32 -080016#include <linux/input/mt.h>
Ping Cheng3bea7332006-07-13 18:01:36 -070017
Ping Chenga417ea42011-08-16 00:17:56 -070018#define WAC_MSG_RETRIES 5
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070019#define WAC_CMD_RETRIES 10
20
Ping Chenge0984bc2014-09-10 12:40:05 -070021#define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
22#define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)
Aaron Skomra72b236d2015-08-20 16:05:17 -070023#define DEV_ATTR_RO_PERM (S_IRUSR | S_IRGRP)
Ping Chenge0984bc2014-09-10 12:40:05 -070024
Ping Chengc64d8832014-09-10 12:41:04 -070025static int wacom_get_report(struct hid_device *hdev, u8 type, u8 *buf,
26 size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070027{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070028 int retval;
29
30 do {
Ping Chengc64d8832014-09-10 12:41:04 -070031 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070032 HID_REQ_GET_REPORT);
Jason Gereckeaef31562015-05-21 10:44:31 -070033 } while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);
34
35 if (retval < 0)
36 hid_err(hdev, "wacom_get_report: ran out of retries "
37 "(last error = %d)\n", retval);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070038
39 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070040}
41
Przemo Firszt296b7372014-08-06 14:00:38 -070042static int wacom_set_report(struct hid_device *hdev, u8 type, u8 *buf,
43 size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070044{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070045 int retval;
46
47 do {
Przemo Firszt296b7372014-08-06 14:00:38 -070048 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070049 HID_REQ_SET_REPORT);
Jason Gereckeaef31562015-05-21 10:44:31 -070050 } while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);
51
52 if (retval < 0)
53 hid_err(hdev, "wacom_set_report: ran out of retries "
54 "(last error = %d)\n", retval);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070055
56 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070057}
58
Benjamin Tissoires29b47392014-07-24 12:52:23 -070059static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
60 u8 *raw_data, int size)
Ping Cheng3bea7332006-07-13 18:01:36 -070061{
Benjamin Tissoires29b47392014-07-24 12:52:23 -070062 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070063
Benjamin Tissoires29b47392014-07-24 12:52:23 -070064 if (size > WACOM_PKGLEN_MAX)
65 return 1;
Ping Cheng3bea7332006-07-13 18:01:36 -070066
Benjamin Tissoires29b47392014-07-24 12:52:23 -070067 memcpy(wacom->wacom_wac.data, raw_data, size);
Ping Cheng3bea7332006-07-13 18:01:36 -070068
Benjamin Tissoires29b47392014-07-24 12:52:23 -070069 wacom_wac_irq(&wacom->wacom_wac, size);
70
71 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -070072}
73
Ping Cheng3bea7332006-07-13 18:01:36 -070074static int wacom_open(struct input_dev *dev)
75{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -040076 struct wacom *wacom = input_get_drvdata(dev);
Ping Cheng3bea7332006-07-13 18:01:36 -070077
Benjamin Tissoiresdff67412014-12-01 11:52:40 -050078 return hid_hw_open(wacom->hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070079}
80
81static void wacom_close(struct input_dev *dev)
82{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -040083 struct wacom *wacom = input_get_drvdata(dev);
Ping Cheng3bea7332006-07-13 18:01:36 -070084
Benjamin Tissoires3dad1882016-07-13 18:05:54 +020085 /*
86 * wacom->hdev should never be null, but surprisingly, I had the case
87 * once while unplugging the Wacom Wireless Receiver.
88 */
89 if (wacom->hdev)
90 hid_hw_close(wacom->hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070091}
92
Chris Bagwell16bf2882012-03-25 23:26:20 -070093/*
Benjamin Tissoires198fdee2014-07-24 13:03:05 -070094 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
Jason Gerecke115d5e12012-10-03 17:24:32 -070095 */
96static int wacom_calc_hid_res(int logical_extents, int physical_extents,
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -070097 unsigned unit, int exponent)
Jason Gerecke115d5e12012-10-03 17:24:32 -070098{
Benjamin Tissoires198fdee2014-07-24 13:03:05 -070099 struct hid_field field = {
100 .logical_maximum = logical_extents,
101 .physical_maximum = physical_extents,
102 .unit = unit,
103 .unit_exponent = exponent,
104 };
Jason Gerecke115d5e12012-10-03 17:24:32 -0700105
Benjamin Tissoires198fdee2014-07-24 13:03:05 -0700106 return hidinput_calc_abs_res(&field, ABS_X);
Jason Gerecke115d5e12012-10-03 17:24:32 -0700107}
108
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700109static void wacom_feature_mapping(struct hid_device *hdev,
110 struct hid_field *field, struct hid_usage *usage)
Chris Bagwell41343612011-10-26 22:32:52 -0700111{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700112 struct wacom *wacom = hid_get_drvdata(hdev);
113 struct wacom_features *features = &wacom->wacom_wac.features;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400114 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -0800115 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400116 u8 *data;
117 int ret;
Jason Gerecke345857b2016-10-19 18:03:50 -0700118 int n;
Chris Bagwell41343612011-10-26 22:32:52 -0700119
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -0800120 switch (equivalent_usage) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700121 case HID_DG_CONTACTMAX:
122 /* leave touch_max as is if predefined */
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400123 if (!features->touch_max) {
124 /* read manually */
125 data = kzalloc(2, GFP_KERNEL);
126 if (!data)
127 break;
128 data[0] = field->report->id;
129 ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
Jason Gerecke05e8fd92015-05-21 10:44:32 -0700130 data, 2, WAC_CMD_RETRIES);
131 if (ret == 2) {
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400132 features->touch_max = data[1];
Jason Gerecke05e8fd92015-05-21 10:44:32 -0700133 } else {
134 features->touch_max = 16;
135 hid_warn(hdev, "wacom_feature_mapping: "
136 "could not get HID_DG_CONTACTMAX, "
137 "defaulting to %d\n",
138 features->touch_max);
139 }
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400140 kfree(data);
141 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700142 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400143 case HID_DG_INPUTMODE:
144 /* Ignore if value index is out of bounds. */
145 if (usage->usage_index >= field->report_count) {
146 dev_err(&hdev->dev, "HID_DG_INPUTMODE out of range\n");
147 break;
148 }
149
150 hid_data->inputmode = field->report->id;
151 hid_data->inputmode_index = usage->usage_index;
152 break;
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700153
154 case HID_UP_DIGITIZER:
155 if (field->report->id == 0x0B &&
Jason Gerecke8de82282016-10-19 18:03:37 -0700156 (field->application == WACOM_HID_G9_PEN ||
157 field->application == WACOM_HID_G11_PEN)) {
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700158 wacom->wacom_wac.mode_report = field->report->id;
159 wacom->wacom_wac.mode_value = 0;
160 }
161 break;
162
Jason Gereckec9c09582016-10-19 18:03:43 -0700163 case WACOM_HID_WD_DATAMODE:
164 wacom->wacom_wac.mode_report = field->report->id;
165 wacom->wacom_wac.mode_value = 2;
166 break;
167
Jason Gerecke8de82282016-10-19 18:03:37 -0700168 case WACOM_HID_UP_G9:
169 case WACOM_HID_UP_G11:
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700170 if (field->report->id == 0x03 &&
Jason Gerecke8de82282016-10-19 18:03:37 -0700171 (field->application == WACOM_HID_G9_TOUCHSCREEN ||
172 field->application == WACOM_HID_G11_TOUCHSCREEN)) {
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700173 wacom->wacom_wac.mode_report = field->report->id;
174 wacom->wacom_wac.mode_value = 0;
175 }
176 break;
Jason Gerecke345857b2016-10-19 18:03:50 -0700177 case WACOM_HID_WD_OFFSETLEFT:
178 case WACOM_HID_WD_OFFSETTOP:
179 case WACOM_HID_WD_OFFSETRIGHT:
180 case WACOM_HID_WD_OFFSETBOTTOM:
181 /* read manually */
182 n = hid_report_len(field->report);
183 data = hid_alloc_report_buf(field->report, GFP_KERNEL);
184 if (!data)
185 break;
186 data[0] = field->report->id;
187 ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
188 data, n, WAC_CMD_RETRIES);
189 if (ret == n) {
190 ret = hid_report_raw_event(hdev, HID_FEATURE_REPORT,
191 data, n, 0);
192 } else {
193 hid_warn(hdev, "%s: could not retrieve sensor offsets\n",
194 __func__);
195 }
196 kfree(data);
197 break;
Ping Chengf393ee22012-04-29 21:09:17 -0700198 }
199}
200
Chris Bagwell428f8582011-10-26 22:26:59 -0700201/*
202 * Interface Descriptor of wacom devices can be incomplete and
203 * inconsistent so wacom_features table is used to store stylus
204 * device's packet lengths, various maximum values, and tablet
205 * resolution based on product ID's.
206 *
207 * For devices that contain 2 interfaces, wacom_features table is
208 * inaccurate for the touch interface. Since the Interface Descriptor
209 * for touch interfaces has pretty complete data, this function exists
210 * to query tablet for this missing information instead of hard coding in
211 * an additional table.
212 *
213 * A typical Interface Descriptor for a stylus will contain a
214 * boot mouse application collection that is not of interest and this
215 * function will ignore it.
216 *
217 * It also contains a digitizer application collection that also is not
218 * of interest since any information it contains would be duplicate
219 * of what is in wacom_features. Usually it defines a report of an array
220 * of bytes that could be used as max length of the stylus packet returned.
221 * If it happens to define a Digitizer-Stylus Physical Collection then
222 * the X and Y logical values contain valid data but it is ignored.
223 *
224 * A typical Interface Descriptor for a touch interface will contain a
225 * Digitizer-Finger Physical Collection which will define both logical
226 * X/Y maximum as well as the physical size of tablet. Since touch
227 * interfaces haven't supported pressure or distance, this is enough
228 * information to override invalid values in the wacom_features table.
Chris Bagwell41343612011-10-26 22:32:52 -0700229 *
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700230 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
231 * data. We deal with them after returning from this function.
Chris Bagwell428f8582011-10-26 22:26:59 -0700232 */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700233static void wacom_usage_mapping(struct hid_device *hdev,
234 struct hid_field *field, struct hid_usage *usage)
235{
236 struct wacom *wacom = hid_get_drvdata(hdev);
237 struct wacom_features *features = &wacom->wacom_wac.features;
Benjamin Tissoiresd97a5522015-01-05 16:32:12 -0500238 bool finger = WACOM_FINGER_FIELD(field);
239 bool pen = WACOM_PEN_FIELD(field);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700240
241 /*
242 * Requiring Stylus Usage will ignore boot mouse
243 * X/Y values and some cases of invalid Digitizer X/Y
244 * values commonly reported.
245 */
Jason Gerecke042628a2015-04-30 17:51:54 -0700246 if (pen)
Jason Gereckeaa86b182015-06-15 18:01:42 -0700247 features->device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke042628a2015-04-30 17:51:54 -0700248 else if (finger)
Jason Gereckeaa86b182015-06-15 18:01:42 -0700249 features->device_type |= WACOM_DEVICETYPE_TOUCH;
Jason Gerecke042628a2015-04-30 17:51:54 -0700250 else
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700251 return;
252
Ping Cheng30ebc1a2014-11-18 13:29:16 -0800253 /*
254 * Bamboo models do not support HID_DG_CONTACTMAX.
255 * And, Bamboo Pen only descriptor contains touch.
256 */
Ping Cheng3b164a02015-09-23 09:59:10 -0700257 if (features->type > BAMBOO_PT) {
Ping Cheng30ebc1a2014-11-18 13:29:16 -0800258 /* ISDv4 touch devices at least supports one touch point */
259 if (finger && !features->touch_max)
260 features->touch_max = 1;
261 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700262
Jason Gerecke6005a132016-10-19 18:03:40 -0700263 /*
264 * ISDv4 devices which predate HID's adoption of the
265 * HID_DG_BARELSWITCH2 usage use 0x000D0000 in its
266 * position instead. We can accurately detect if a
267 * usage with that value should be HID_DG_BARRELSWITCH2
268 * based on the surrounding usages, which have remained
269 * constant across generations.
270 */
271 if (features->type == HID_GENERIC &&
272 usage->hid == 0x000D0000 &&
273 field->application == HID_DG_PEN &&
274 field->physical == HID_DG_STYLUS) {
275 int i = usage->usage_index;
276
277 if (i-4 >= 0 && i+1 < field->maxusage &&
278 field->usage[i-4].hid == HID_DG_TIPSWITCH &&
279 field->usage[i-3].hid == HID_DG_BARRELSWITCH &&
280 field->usage[i-2].hid == HID_DG_ERASER &&
281 field->usage[i-1].hid == HID_DG_INVERT &&
282 field->usage[i+1].hid == HID_DG_INRANGE) {
283 usage->hid = HID_DG_BARRELSWITCH2;
284 }
285 }
286
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700287 switch (usage->hid) {
288 case HID_GD_X:
289 features->x_max = field->logical_maximum;
290 if (finger) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700291 features->x_phy = field->physical_maximum;
Ping Cheng3b164a02015-09-23 09:59:10 -0700292 if ((features->type != BAMBOO_PT) &&
293 (features->type != BAMBOO_TOUCH)) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700294 features->unit = field->unit;
295 features->unitExpo = field->unit_exponent;
296 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700297 }
298 break;
299 case HID_GD_Y:
300 features->y_max = field->logical_maximum;
301 if (finger) {
302 features->y_phy = field->physical_maximum;
Ping Cheng3b164a02015-09-23 09:59:10 -0700303 if ((features->type != BAMBOO_PT) &&
304 (features->type != BAMBOO_TOUCH)) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700305 features->unit = field->unit;
306 features->unitExpo = field->unit_exponent;
307 }
308 }
309 break;
310 case HID_DG_TIPPRESSURE:
311 if (pen)
312 features->pressure_max = field->logical_maximum;
313 break;
314 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -0400315
316 if (features->type == HID_GENERIC)
317 wacom_wac_usage_mapping(hdev, field, usage);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700318}
319
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800320static void wacom_post_parse_hid(struct hid_device *hdev,
321 struct wacom_features *features)
322{
323 struct wacom *wacom = hid_get_drvdata(hdev);
324 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
325
326 if (features->type == HID_GENERIC) {
327 /* Any last-minute generic device setup */
Benjamin Tissoires4082da82017-02-14 21:27:18 -0800328 if (wacom_wac->has_mode_change) {
329 if (wacom_wac->is_direct_mode)
330 features->device_type |= WACOM_DEVICETYPE_DIRECT;
331 else
332 features->device_type &= ~WACOM_DEVICETYPE_DIRECT;
333 }
334
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800335 if (features->touch_max > 1) {
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -0800336 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
337 input_mt_init_slots(wacom_wac->touch_input,
338 wacom_wac->features.touch_max,
339 INPUT_MT_DIRECT);
340 else
341 input_mt_init_slots(wacom_wac->touch_input,
342 wacom_wac->features.touch_max,
343 INPUT_MT_POINTER);
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800344 }
345 }
346}
347
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700348static void wacom_parse_hid(struct hid_device *hdev,
Ping Chengec67bbe2009-12-15 00:35:24 -0800349 struct wacom_features *features)
Ping Cheng545f4e92008-11-24 11:44:27 -0500350{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700351 struct hid_report_enum *rep_enum;
352 struct hid_report *hreport;
353 int i, j;
Ping Cheng545f4e92008-11-24 11:44:27 -0500354
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700355 /* check features first */
356 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
357 list_for_each_entry(hreport, &rep_enum->report_list, list) {
358 for (i = 0; i < hreport->maxfield; i++) {
359 /* Ignore if report count is out of bounds. */
360 if (hreport->field[i]->report_count < 1)
361 continue;
Ping Cheng545f4e92008-11-24 11:44:27 -0500362
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700363 for (j = 0; j < hreport->field[i]->maxusage; j++) {
364 wacom_feature_mapping(hdev, hreport->field[i],
365 hreport->field[i]->usage + j);
Ping Cheng545f4e92008-11-24 11:44:27 -0500366 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500367 }
368 }
369
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700370 /* now check the input usages */
371 rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
372 list_for_each_entry(hreport, &rep_enum->report_list, list) {
373
374 if (!hreport->maxfield)
375 continue;
376
377 for (i = 0; i < hreport->maxfield; i++)
378 for (j = 0; j < hreport->field[i]->maxusage; j++)
379 wacom_usage_mapping(hdev, hreport->field[i],
380 hreport->field[i]->usage + j);
381 }
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800382
383 wacom_post_parse_hid(hdev, features);
Ping Cheng545f4e92008-11-24 11:44:27 -0500384}
385
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400386static int wacom_hid_set_device_mode(struct hid_device *hdev)
387{
388 struct wacom *wacom = hid_get_drvdata(hdev);
389 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
390 struct hid_report *r;
391 struct hid_report_enum *re;
392
393 if (hid_data->inputmode < 0)
394 return 0;
395
396 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
397 r = re->report_id_hash[hid_data->inputmode];
398 if (r) {
399 r->field[0]->value[hid_data->inputmode_index] = 2;
400 hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
401 }
402 return 0;
403}
404
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700405static int wacom_set_device_mode(struct hid_device *hdev,
406 struct wacom_wac *wacom_wac)
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700407{
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700408 u8 *rep_data;
409 struct hid_report *r;
410 struct hid_report_enum *re;
411 int length;
Jason Gereckefe494bc2012-10-03 17:25:35 -0700412 int error = -ENOMEM, limit = 0;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700413
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700414 if (wacom_wac->mode_report < 0)
415 return 0;
416
417 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
418 r = re->report_id_hash[wacom_wac->mode_report];
419 if (!r)
420 return -EINVAL;
421
422 rep_data = hid_alloc_report_buf(r, GFP_KERNEL);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700423 if (!rep_data)
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700424 return -ENOMEM;
425
426 length = hid_report_len(r);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700427
Jason Gereckefe494bc2012-10-03 17:25:35 -0700428 do {
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700429 rep_data[0] = wacom_wac->mode_report;
430 rep_data[1] = wacom_wac->mode_value;
Chris Bagwell9937c022013-01-23 19:37:34 -0800431
Przemo Firszt296b7372014-08-06 14:00:38 -0700432 error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
433 length, 1);
Benjamin Tissoires3cb83152014-07-24 12:47:47 -0700434 if (error >= 0)
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700435 error = wacom_get_report(hdev, HID_FEATURE_REPORT,
Ping Chengc64d8832014-09-10 12:41:04 -0700436 rep_data, length, 1);
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700437 } while (error >= 0 &&
438 rep_data[1] != wacom_wac->mode_report &&
439 limit++ < WAC_MSG_RETRIES);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700440
441 kfree(rep_data);
442
443 return error < 0 ? error : 0;
444}
445
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700446static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
447 struct wacom_features *features)
448{
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700449 struct wacom *wacom = hid_get_drvdata(hdev);
450 int ret;
451 u8 rep_data[2];
452
453 switch (features->type) {
454 case GRAPHIRE_BT:
455 rep_data[0] = 0x03;
456 rep_data[1] = 0x00;
Przemo Firszt296b7372014-08-06 14:00:38 -0700457 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
458 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700459
460 if (ret >= 0) {
461 rep_data[0] = speed == 0 ? 0x05 : 0x06;
462 rep_data[1] = 0x00;
463
464 ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700465 rep_data, 2, 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700466
467 if (ret >= 0) {
468 wacom->wacom_wac.bt_high_speed = speed;
469 return 0;
470 }
471 }
472
473 /*
474 * Note that if the raw queries fail, it's not a hard failure
475 * and it is safe to continue
476 */
477 hid_warn(hdev, "failed to poke device, command %d, err %d\n",
478 rep_data[0], ret);
479 break;
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700480 case INTUOS4WL:
481 if (speed == 1)
482 wacom->wacom_wac.bt_features &= ~0x20;
483 else
484 wacom->wacom_wac.bt_features |= 0x20;
485
486 rep_data[0] = 0x03;
487 rep_data[1] = wacom->wacom_wac.bt_features;
488
Przemo Firszt296b7372014-08-06 14:00:38 -0700489 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
490 1);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700491 if (ret >= 0)
492 wacom->wacom_wac.bt_high_speed = speed;
493 break;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700494 }
495
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700496 return 0;
497}
498
Jason Gereckefe494bc2012-10-03 17:25:35 -0700499/*
500 * Switch the tablet into its most-capable mode. Wacom tablets are
501 * typically configured to power-up in a mode which sends mouse-like
502 * reports to the OS. To get absolute position, pressure data, etc.
503 * from the tablet, it is necessary to switch the tablet out of this
504 * mode and into one which sends the full range of tablet data.
505 */
Benjamin Tissoiresa544c612017-01-20 16:20:13 +0100506static int _wacom_query_tablet_data(struct wacom *wacom)
Jason Gereckefe494bc2012-10-03 17:25:35 -0700507{
Benjamin Tissoiresa544c612017-01-20 16:20:13 +0100508 struct hid_device *hdev = wacom->hdev;
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700509 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Benjamin Tissoiresa544c612017-01-20 16:20:13 +0100510 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700511
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700512 if (hdev->bus == BUS_BLUETOOTH)
513 return wacom_bt_query_tablet_data(hdev, 1, features);
514
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700515 if (features->type != HID_GENERIC) {
516 if (features->device_type & WACOM_DEVICETYPE_TOUCH) {
517 if (features->type > TABLETPC) {
518 /* MT Tablet PC touch */
519 wacom_wac->mode_report = 3;
520 wacom_wac->mode_value = 4;
521 } else if (features->type == WACOM_24HDT) {
522 wacom_wac->mode_report = 18;
523 wacom_wac->mode_value = 2;
524 } else if (features->type == WACOM_27QHDT) {
525 wacom_wac->mode_report = 131;
526 wacom_wac->mode_value = 2;
527 } else if (features->type == BAMBOO_PAD) {
528 wacom_wac->mode_report = 2;
529 wacom_wac->mode_value = 2;
530 }
531 } else if (features->device_type & WACOM_DEVICETYPE_PEN) {
532 if (features->type <= BAMBOO_PT) {
533 wacom_wac->mode_report = 2;
534 wacom_wac->mode_value = 2;
535 }
Jason Gereckefe494bc2012-10-03 17:25:35 -0700536 }
537 }
538
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700539 wacom_set_device_mode(hdev, wacom_wac);
540
541 if (features->type == HID_GENERIC)
542 return wacom_hid_set_device_mode(hdev);
543
Jason Gereckefe494bc2012-10-03 17:25:35 -0700544 return 0;
545}
546
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700547static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
Ping Cheng19635182012-04-29 21:09:18 -0700548 struct wacom_features *features)
Ping Chengec67bbe2009-12-15 00:35:24 -0800549{
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700550 struct wacom *wacom = hid_get_drvdata(hdev);
551 struct usb_interface *intf = wacom->intf;
Ping Chengec67bbe2009-12-15 00:35:24 -0800552
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700553 /* default features */
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700554 features->x_fuzz = 4;
555 features->y_fuzz = 4;
556 features->pressure_fuzz = 0;
Jason Gereckebef7e202016-04-22 14:30:53 -0700557 features->distance_fuzz = 1;
558 features->tilt_fuzz = 1;
Ping Chengec67bbe2009-12-15 00:35:24 -0800559
Chris Bagwelld3825d52012-03-25 23:26:11 -0700560 /*
561 * The wireless device HID is basic and layout conflicts with
562 * other tablets (monitor and touch interface can look like pen).
563 * Skip the query for this type and modify defaults based on
564 * interface number.
565 */
566 if (features->type == WIRELESS) {
Jason Gerecke3f14a632015-08-03 10:17:05 -0700567 if (intf->cur_altsetting->desc.bInterfaceNumber == 0)
Jason Gereckeccad85c2015-08-03 10:17:04 -0700568 features->device_type = WACOM_DEVICETYPE_WL_MONITOR;
Jason Gerecke3f14a632015-08-03 10:17:05 -0700569 else
Jason Gereckeaa86b182015-06-15 18:01:42 -0700570 features->device_type = WACOM_DEVICETYPE_NONE;
Jason Gerecke3f14a632015-08-03 10:17:05 -0700571 return;
Chris Bagwelld3825d52012-03-25 23:26:11 -0700572 }
573
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700574 wacom_parse_hid(hdev, features);
Ping Chengec67bbe2009-12-15 00:35:24 -0800575}
576
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700577struct wacom_hdev_data {
Ping Cheng4492eff2010-03-19 22:18:15 -0700578 struct list_head list;
579 struct kref kref;
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700580 struct hid_device *dev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700581 struct wacom_shared shared;
582};
583
584static LIST_HEAD(wacom_udev_list);
585static DEFINE_MUTEX(wacom_udev_list_lock);
586
Jason Gerecke41372d52016-08-08 12:06:30 -0700587static bool compare_device_paths(struct hid_device *hdev_a,
588 struct hid_device *hdev_b, char separator)
589{
590 int n1 = strrchr(hdev_a->phys, separator) - hdev_a->phys;
591 int n2 = strrchr(hdev_b->phys, separator) - hdev_b->phys;
592
593 if (n1 != n2 || n1 <= 0 || n2 <= 0)
594 return false;
595
596 return !strncmp(hdev_a->phys, hdev_b->phys, n1);
597}
598
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700599static bool wacom_are_sibling(struct hid_device *hdev,
600 struct hid_device *sibling)
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700601{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700602 struct wacom *wacom = hid_get_drvdata(hdev);
603 struct wacom_features *features = &wacom->wacom_wac.features;
Jason Gerecke41372d52016-08-08 12:06:30 -0700604 struct wacom *sibling_wacom = hid_get_drvdata(sibling);
605 struct wacom_features *sibling_features = &sibling_wacom->wacom_wac.features;
606 __u32 oVid = features->oVid ? features->oVid : hdev->vendor;
607 __u32 oPid = features->oPid ? features->oPid : hdev->product;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700608
Jason Gerecke41372d52016-08-08 12:06:30 -0700609 /* The defined oVid/oPid must match that of the sibling */
610 if (features->oVid != HID_ANY_ID && sibling->vendor != oVid)
611 return false;
612 if (features->oPid != HID_ANY_ID && sibling->product != oPid)
613 return false;
614
615 /*
616 * Devices with the same VID/PID must share the same physical
617 * device path, while those with different VID/PID must share
618 * the same physical parent device path.
619 */
620 if (hdev->vendor == sibling->vendor && hdev->product == sibling->product) {
621 if (!compare_device_paths(hdev, sibling, '/'))
622 return false;
623 } else {
624 if (!compare_device_paths(hdev, sibling, '.'))
625 return false;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700626 }
627
Jason Gerecke41372d52016-08-08 12:06:30 -0700628 /* Skip the remaining heuristics unless you are a HID_GENERIC device */
629 if (features->type != HID_GENERIC)
630 return true;
631
632 /*
633 * Direct-input devices may not be siblings of indirect-input
634 * devices.
635 */
636 if ((features->device_type & WACOM_DEVICETYPE_DIRECT) &&
637 !(sibling_features->device_type & WACOM_DEVICETYPE_DIRECT))
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700638 return false;
639
Jason Gerecke41372d52016-08-08 12:06:30 -0700640 /*
641 * Indirect-input devices may not be siblings of direct-input
642 * devices.
643 */
644 if (!(features->device_type & WACOM_DEVICETYPE_DIRECT) &&
645 (sibling_features->device_type & WACOM_DEVICETYPE_DIRECT))
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700646 return false;
647
Jason Gerecke41372d52016-08-08 12:06:30 -0700648 /* Pen devices may only be siblings of touch devices */
649 if ((features->device_type & WACOM_DEVICETYPE_PEN) &&
650 !(sibling_features->device_type & WACOM_DEVICETYPE_TOUCH))
651 return false;
652
653 /* Touch devices may only be siblings of pen devices */
654 if ((features->device_type & WACOM_DEVICETYPE_TOUCH) &&
655 !(sibling_features->device_type & WACOM_DEVICETYPE_PEN))
656 return false;
657
658 /*
659 * No reason could be found for these two devices to NOT be
660 * siblings, so there's a good chance they ARE siblings
661 */
662 return true;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700663}
664
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700665static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700666{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700667 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700668
Jason Gerecke41372d52016-08-08 12:06:30 -0700669 /* Try to find an already-probed interface from the same device */
670 list_for_each_entry(data, &wacom_udev_list, list) {
671 if (compare_device_paths(hdev, data->dev, '/'))
672 return data;
673 }
674
675 /* Fallback to finding devices that appear to be "siblings" */
Ping Cheng4492eff2010-03-19 22:18:15 -0700676 list_for_each_entry(data, &wacom_udev_list, list) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700677 if (wacom_are_sibling(hdev, data->dev)) {
Ping Cheng4492eff2010-03-19 22:18:15 -0700678 kref_get(&data->kref);
679 return data;
680 }
681 }
682
683 return NULL;
684}
685
Benjamin Tissoires1c817c82016-07-13 18:05:59 +0200686static void wacom_release_shared_data(struct kref *kref)
687{
688 struct wacom_hdev_data *data =
689 container_of(kref, struct wacom_hdev_data, kref);
690
691 mutex_lock(&wacom_udev_list_lock);
692 list_del(&data->list);
693 mutex_unlock(&wacom_udev_list_lock);
694
695 kfree(data);
696}
697
698static void wacom_remove_shared_data(void *res)
699{
700 struct wacom *wacom = res;
701 struct wacom_hdev_data *data;
702 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
703
704 if (wacom_wac->shared) {
705 data = container_of(wacom_wac->shared, struct wacom_hdev_data,
706 shared);
707
708 if (wacom_wac->shared->touch == wacom->hdev)
709 wacom_wac->shared->touch = NULL;
710 else if (wacom_wac->shared->pen == wacom->hdev)
711 wacom_wac->shared->pen = NULL;
712
713 kref_put(&data->kref, wacom_release_shared_data);
714 wacom_wac->shared = NULL;
715 }
716}
717
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700718static int wacom_add_shared_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700719{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700720 struct wacom *wacom = hid_get_drvdata(hdev);
721 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
722 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700723 int retval = 0;
724
725 mutex_lock(&wacom_udev_list_lock);
726
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700727 data = wacom_get_hdev_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -0700728 if (!data) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700729 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
Ping Cheng4492eff2010-03-19 22:18:15 -0700730 if (!data) {
731 retval = -ENOMEM;
732 goto out;
733 }
734
735 kref_init(&data->kref);
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700736 data->dev = hdev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700737 list_add_tail(&data->list, &wacom_udev_list);
738 }
739
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700740 wacom_wac->shared = &data->shared;
Ping Cheng4492eff2010-03-19 22:18:15 -0700741
Benjamin Tissoires1c817c82016-07-13 18:05:59 +0200742 retval = devm_add_action(&hdev->dev, wacom_remove_shared_data, wacom);
743 if (retval) {
744 mutex_unlock(&wacom_udev_list_lock);
745 wacom_remove_shared_data(wacom);
746 return retval;
747 }
748
Jason Gereckea9ce7852017-01-17 15:38:58 -0800749 if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)
750 wacom_wac->shared->touch = hdev;
751 else if (wacom_wac->features.device_type & WACOM_DEVICETYPE_PEN)
752 wacom_wac->shared->pen = hdev;
753
Ping Cheng4492eff2010-03-19 22:18:15 -0700754out:
755 mutex_unlock(&wacom_udev_list_lock);
756 return retval;
757}
758
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700759static int wacom_led_control(struct wacom *wacom)
760{
761 unsigned char *buf;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700762 int retval;
Ping Cheng912ca212014-09-10 12:41:31 -0700763 unsigned char report_id = WAC_CMD_LED_CONTROL;
764 int buf_size = 9;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700765
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200766 if (!wacom->led.groups)
767 return -ENOTSUPP;
768
Ping Cheng912ca212014-09-10 12:41:31 -0700769 if (wacom->wacom_wac.pid) { /* wireless connected */
770 report_id = WAC_CMD_WL_LED_CONTROL;
771 buf_size = 13;
772 }
Jason Gerecke4922cd22017-01-25 12:08:37 -0800773 else if (wacom->wacom_wac.features.type == INTUOSP2_BT) {
774 report_id = WAC_CMD_WL_INTUOSP2;
775 buf_size = 51;
776 }
Ping Cheng912ca212014-09-10 12:41:31 -0700777 buf = kzalloc(buf_size, GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700778 if (!buf)
779 return -ENOMEM;
780
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -0800781 if (wacom->wacom_wac.features.type == HID_GENERIC) {
782 buf[0] = WAC_CMD_LED_CONTROL_GENERIC;
783 buf[1] = wacom->led.llv;
784 buf[2] = wacom->led.groups[0].select & 0x03;
785
786 } else if ((wacom->wacom_wac.features.type >= INTUOS5S &&
787 wacom->wacom_wac.features.type <= INTUOSPL)) {
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700788 /*
789 * Touch Ring and crop mark LED luminance may take on
790 * one of four values:
791 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
792 */
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200793 int ring_led = wacom->led.groups[0].select & 0x03;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700794 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
795 int crop_lum = 0;
Ping Cheng912ca212014-09-10 12:41:31 -0700796 unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
Ping Cheng09e7d942011-10-04 23:51:14 -0700797
Ping Cheng912ca212014-09-10 12:41:31 -0700798 buf[0] = report_id;
799 if (wacom->wacom_wac.pid) {
800 wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
801 buf, buf_size, WAC_CMD_RETRIES);
802 buf[0] = report_id;
803 buf[4] = led_bits;
804 } else
805 buf[1] = led_bits;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700806 }
Jason Gerecke4922cd22017-01-25 12:08:37 -0800807 else if (wacom->wacom_wac.features.type == INTUOSP2_BT) {
808 buf[0] = report_id;
809 buf[4] = 100; // Power Connection LED (ORANGE)
810 buf[5] = 100; // BT Connection LED (BLUE)
811 buf[6] = 100; // Paper Mode (RED?)
812 buf[7] = 100; // Paper Mode (GREEN?)
813 buf[8] = 100; // Paper Mode (BLUE?)
814 buf[9] = wacom->led.llv;
815 buf[10] = wacom->led.groups[0].select & 0x03;
816 }
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700817 else {
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200818 int led = wacom->led.groups[0].select | 0x4;
Ping Cheng09e7d942011-10-04 23:51:14 -0700819
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700820 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
821 wacom->wacom_wac.features.type == WACOM_24HD)
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200822 led |= (wacom->led.groups[1].select << 4) | 0x40;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700823
Ping Cheng912ca212014-09-10 12:41:31 -0700824 buf[0] = report_id;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700825 buf[1] = led;
826 buf[2] = wacom->led.llv;
827 buf[3] = wacom->led.hlv;
828 buf[4] = wacom->led.img_lum;
829 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700830
Ping Cheng912ca212014-09-10 12:41:31 -0700831 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
Przemo Firszt296b7372014-08-06 14:00:38 -0700832 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700833 kfree(buf);
834
835 return retval;
836}
837
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700838static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
839 const unsigned len, const void *img)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700840{
841 unsigned char *buf;
842 int i, retval;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700843 const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700844
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700845 buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700846 if (!buf)
847 return -ENOMEM;
848
849 /* Send 'start' command */
850 buf[0] = WAC_CMD_ICON_START;
851 buf[1] = 1;
Przemo Firszt296b7372014-08-06 14:00:38 -0700852 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
853 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700854 if (retval < 0)
855 goto out;
856
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700857 buf[0] = xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700858 buf[1] = button_id & 0x07;
859 for (i = 0; i < 4; i++) {
860 buf[2] = i;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700861 memcpy(buf + 3, img + i * chunk_len, chunk_len);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700862
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700863 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700864 buf, chunk_len + 3, WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700865 if (retval < 0)
866 break;
867 }
868
869 /* Send 'stop' */
870 buf[0] = WAC_CMD_ICON_START;
871 buf[1] = 0;
Przemo Firszt296b7372014-08-06 14:00:38 -0700872 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
873 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700874
875out:
876 kfree(buf);
877 return retval;
878}
879
Ping Cheng09e7d942011-10-04 23:51:14 -0700880static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700881 const char *buf, size_t count)
882{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800883 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700884 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700885 unsigned int id;
886 int err;
887
888 err = kstrtouint(buf, 10, &id);
889 if (err)
890 return err;
891
892 mutex_lock(&wacom->lock);
893
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200894 wacom->led.groups[set_id].select = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700895 err = wacom_led_control(wacom);
896
897 mutex_unlock(&wacom->lock);
898
899 return err < 0 ? err : count;
900}
901
Ping Cheng09e7d942011-10-04 23:51:14 -0700902#define DEVICE_LED_SELECT_ATTR(SET_ID) \
903static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
904 struct device_attribute *attr, const char *buf, size_t count) \
905{ \
906 return wacom_led_select_store(dev, SET_ID, buf, count); \
907} \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700908static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
909 struct device_attribute *attr, char *buf) \
910{ \
Geliang Tangee79a8f2015-12-27 17:25:21 +0800911 struct hid_device *hdev = to_hid_device(dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700912 struct wacom *wacom = hid_get_drvdata(hdev); \
Ping Cheng37449ad2014-09-10 12:40:30 -0700913 return scnprintf(buf, PAGE_SIZE, "%d\n", \
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200914 wacom->led.groups[SET_ID].select); \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700915} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700916static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700917 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -0700918 wacom_led##SET_ID##_select_store)
919
920DEVICE_LED_SELECT_ATTR(0);
921DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700922
923static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
924 const char *buf, size_t count)
925{
926 unsigned int value;
927 int err;
928
929 err = kstrtouint(buf, 10, &value);
930 if (err)
931 return err;
932
933 mutex_lock(&wacom->lock);
934
935 *dest = value & 0x7f;
936 err = wacom_led_control(wacom);
937
938 mutex_unlock(&wacom->lock);
939
940 return err < 0 ? err : count;
941}
942
943#define DEVICE_LUMINANCE_ATTR(name, field) \
944static ssize_t wacom_##name##_luminance_store(struct device *dev, \
945 struct device_attribute *attr, const char *buf, size_t count) \
946{ \
Geliang Tangee79a8f2015-12-27 17:25:21 +0800947 struct hid_device *hdev = to_hid_device(dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700948 struct wacom *wacom = hid_get_drvdata(hdev); \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700949 \
950 return wacom_luminance_store(wacom, &wacom->led.field, \
951 buf, count); \
952} \
Ping Cheng37449ad2014-09-10 12:40:30 -0700953static ssize_t wacom_##name##_luminance_show(struct device *dev, \
954 struct device_attribute *attr, char *buf) \
955{ \
956 struct wacom *wacom = dev_get_drvdata(dev); \
957 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
958} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700959static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
Ping Cheng37449ad2014-09-10 12:40:30 -0700960 wacom_##name##_luminance_show, \
961 wacom_##name##_luminance_store)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700962
963DEVICE_LUMINANCE_ATTR(status0, llv);
964DEVICE_LUMINANCE_ATTR(status1, hlv);
965DEVICE_LUMINANCE_ATTR(buttons, img_lum);
966
967static ssize_t wacom_button_image_store(struct device *dev, int button_id,
968 const char *buf, size_t count)
969{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800970 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700971 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700972 int err;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700973 unsigned len;
974 u8 xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700975
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700976 if (hdev->bus == BUS_BLUETOOTH) {
977 len = 256;
978 xfer_id = WAC_CMD_ICON_BT_XFER;
979 } else {
980 len = 1024;
981 xfer_id = WAC_CMD_ICON_XFER;
982 }
983
984 if (count != len)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700985 return -EINVAL;
986
987 mutex_lock(&wacom->lock);
988
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700989 err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700990
991 mutex_unlock(&wacom->lock);
992
993 return err < 0 ? err : count;
994}
995
996#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
997static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
998 struct device_attribute *attr, const char *buf, size_t count) \
999{ \
1000 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
1001} \
Ping Chenge0984bc2014-09-10 12:40:05 -07001002static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001003 NULL, wacom_btnimg##BUTTON_ID##_store)
1004
1005DEVICE_BTNIMG_ATTR(0);
1006DEVICE_BTNIMG_ATTR(1);
1007DEVICE_BTNIMG_ATTR(2);
1008DEVICE_BTNIMG_ATTR(3);
1009DEVICE_BTNIMG_ATTR(4);
1010DEVICE_BTNIMG_ATTR(5);
1011DEVICE_BTNIMG_ATTR(6);
1012DEVICE_BTNIMG_ATTR(7);
1013
Ping Cheng09e7d942011-10-04 23:51:14 -07001014static struct attribute *cintiq_led_attrs[] = {
1015 &dev_attr_status_led0_select.attr,
1016 &dev_attr_status_led1_select.attr,
1017 NULL
1018};
1019
1020static struct attribute_group cintiq_led_attr_group = {
1021 .name = "wacom_led",
1022 .attrs = cintiq_led_attrs,
1023};
1024
1025static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001026 &dev_attr_status0_luminance.attr,
1027 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -07001028 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001029 &dev_attr_buttons_luminance.attr,
1030 &dev_attr_button0_rawimg.attr,
1031 &dev_attr_button1_rawimg.attr,
1032 &dev_attr_button2_rawimg.attr,
1033 &dev_attr_button3_rawimg.attr,
1034 &dev_attr_button4_rawimg.attr,
1035 &dev_attr_button5_rawimg.attr,
1036 &dev_attr_button6_rawimg.attr,
1037 &dev_attr_button7_rawimg.attr,
1038 NULL
1039};
1040
Ping Cheng09e7d942011-10-04 23:51:14 -07001041static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001042 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -07001043 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001044};
1045
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001046static struct attribute *intuos5_led_attrs[] = {
1047 &dev_attr_status0_luminance.attr,
1048 &dev_attr_status_led0_select.attr,
1049 NULL
1050};
1051
1052static struct attribute_group intuos5_led_attr_group = {
1053 .name = "wacom_led",
1054 .attrs = intuos5_led_attrs,
1055};
1056
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001057static struct attribute *generic_led_attrs[] = {
1058 &dev_attr_status0_luminance.attr,
1059 &dev_attr_status_led0_select.attr,
1060 NULL
1061};
1062
1063static struct attribute_group generic_led_attr_group = {
1064 .name = "wacom_led",
1065 .attrs = generic_led_attrs,
1066};
1067
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001068struct wacom_sysfs_group_devres {
1069 struct attribute_group *group;
1070 struct kobject *root;
1071};
1072
1073static void wacom_devm_sysfs_group_release(struct device *dev, void *res)
1074{
1075 struct wacom_sysfs_group_devres *devres = res;
1076 struct kobject *kobj = devres->root;
1077
1078 dev_dbg(dev, "%s: dropping reference to %s\n",
1079 __func__, devres->group->name);
1080 sysfs_remove_group(kobj, devres->group);
1081}
1082
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02001083static int __wacom_devm_sysfs_create_group(struct wacom *wacom,
1084 struct kobject *root,
1085 struct attribute_group *group)
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001086{
1087 struct wacom_sysfs_group_devres *devres;
1088 int error;
1089
1090 devres = devres_alloc(wacom_devm_sysfs_group_release,
1091 sizeof(struct wacom_sysfs_group_devres),
1092 GFP_KERNEL);
1093 if (!devres)
1094 return -ENOMEM;
1095
1096 devres->group = group;
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02001097 devres->root = root;
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001098
1099 error = sysfs_create_group(devres->root, group);
1100 if (error)
1101 return error;
1102
1103 devres_add(&wacom->hdev->dev, devres);
1104
1105 return 0;
1106}
1107
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02001108static int wacom_devm_sysfs_create_group(struct wacom *wacom,
1109 struct attribute_group *group)
1110{
1111 return __wacom_devm_sysfs_create_group(wacom, &wacom->hdev->dev.kobj,
1112 group);
1113}
1114
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001115enum led_brightness wacom_leds_brightness_get(struct wacom_led *led)
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001116{
1117 struct wacom *wacom = led->wacom;
1118
1119 if (wacom->led.max_hlv)
1120 return led->hlv * LED_FULL / wacom->led.max_hlv;
1121
1122 if (wacom->led.max_llv)
1123 return led->llv * LED_FULL / wacom->led.max_llv;
1124
1125 /* device doesn't support brightness tuning */
1126 return LED_FULL;
1127}
1128
1129static enum led_brightness __wacom_led_brightness_get(struct led_classdev *cdev)
1130{
1131 struct wacom_led *led = container_of(cdev, struct wacom_led, cdev);
1132 struct wacom *wacom = led->wacom;
1133
1134 if (wacom->led.groups[led->group].select != led->id)
1135 return LED_OFF;
1136
1137 return wacom_leds_brightness_get(led);
1138}
1139
1140static int wacom_led_brightness_set(struct led_classdev *cdev,
1141 enum led_brightness brightness)
1142{
1143 struct wacom_led *led = container_of(cdev, struct wacom_led, cdev);
1144 struct wacom *wacom = led->wacom;
1145 int error;
1146
1147 mutex_lock(&wacom->lock);
1148
1149 if (!wacom->led.groups || (brightness == LED_OFF &&
1150 wacom->led.groups[led->group].select != led->id)) {
1151 error = 0;
1152 goto out;
1153 }
1154
1155 led->llv = wacom->led.llv = wacom->led.max_llv * brightness / LED_FULL;
1156 led->hlv = wacom->led.hlv = wacom->led.max_hlv * brightness / LED_FULL;
1157
1158 wacom->led.groups[led->group].select = led->id;
1159
1160 error = wacom_led_control(wacom);
1161
1162out:
1163 mutex_unlock(&wacom->lock);
1164
1165 return error;
1166}
1167
1168static void wacom_led_readonly_brightness_set(struct led_classdev *cdev,
1169 enum led_brightness brightness)
1170{
1171}
1172
1173static int wacom_led_register_one(struct device *dev, struct wacom *wacom,
1174 struct wacom_led *led, unsigned int group,
1175 unsigned int id, bool read_only)
1176{
1177 int error;
1178 char *name;
1179
1180 name = devm_kasprintf(dev, GFP_KERNEL,
1181 "%s::wacom-%d.%d",
1182 dev_name(dev),
1183 group,
1184 id);
1185 if (!name)
1186 return -ENOMEM;
1187
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001188 if (!read_only) {
1189 led->trigger.name = name;
1190 error = devm_led_trigger_register(dev, &led->trigger);
1191 if (error) {
1192 hid_err(wacom->hdev,
1193 "failed to register LED trigger %s: %d\n",
1194 led->cdev.name, error);
1195 return error;
1196 }
1197 }
1198
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001199 led->group = group;
1200 led->id = id;
1201 led->wacom = wacom;
1202 led->llv = wacom->led.llv;
1203 led->hlv = wacom->led.hlv;
1204 led->cdev.name = name;
1205 led->cdev.max_brightness = LED_FULL;
1206 led->cdev.flags = LED_HW_PLUGGABLE;
1207 led->cdev.brightness_get = __wacom_led_brightness_get;
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001208 if (!read_only) {
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001209 led->cdev.brightness_set_blocking = wacom_led_brightness_set;
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001210 led->cdev.default_trigger = led->cdev.name;
1211 } else {
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001212 led->cdev.brightness_set = wacom_led_readonly_brightness_set;
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001213 }
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001214
1215 error = devm_led_classdev_register(dev, &led->cdev);
1216 if (error) {
1217 hid_err(wacom->hdev,
1218 "failed to register LED %s: %d\n",
1219 led->cdev.name, error);
1220 led->cdev.name = NULL;
1221 return error;
1222 }
1223
1224 return 0;
1225}
1226
Benjamin Tissoires589e5062016-07-13 18:06:11 +02001227static void wacom_led_groups_release_one(void *data)
1228{
1229 struct wacom_group_leds *group = data;
1230
1231 devres_release_group(group->dev, group);
1232}
1233
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001234static int wacom_led_groups_alloc_and_register_one(struct device *dev,
1235 struct wacom *wacom,
1236 int group_id, int count,
1237 bool read_only)
1238{
1239 struct wacom_led *leds;
1240 int i, error;
1241
1242 if (group_id >= wacom->led.count || count <= 0)
1243 return -EINVAL;
1244
1245 if (!devres_open_group(dev, &wacom->led.groups[group_id], GFP_KERNEL))
1246 return -ENOMEM;
1247
1248 leds = devm_kzalloc(dev, sizeof(struct wacom_led) * count, GFP_KERNEL);
1249 if (!leds) {
1250 error = -ENOMEM;
1251 goto err;
1252 }
1253
1254 wacom->led.groups[group_id].leds = leds;
1255 wacom->led.groups[group_id].count = count;
1256
1257 for (i = 0; i < count; i++) {
1258 error = wacom_led_register_one(dev, wacom, &leds[i],
1259 group_id, i, read_only);
1260 if (error)
1261 goto err;
1262 }
1263
Benjamin Tissoires589e5062016-07-13 18:06:11 +02001264 wacom->led.groups[group_id].dev = dev;
1265
1266 devres_close_group(dev, &wacom->led.groups[group_id]);
1267
1268 /*
1269 * There is a bug (?) in devm_led_classdev_register() in which its
1270 * increments the refcount of the parent. If the parent is an input
1271 * device, that means the ref count never reaches 0 when
1272 * devm_input_device_release() gets called.
1273 * This means that the LEDs are still there after disconnect.
1274 * Manually force the release of the group so that the leds are released
1275 * once we are done using them.
1276 */
1277 error = devm_add_action_or_reset(&wacom->hdev->dev,
1278 wacom_led_groups_release_one,
1279 &wacom->led.groups[group_id]);
1280 if (error)
1281 return error;
1282
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001283 return 0;
1284
1285err:
1286 devres_release_group(dev, &wacom->led.groups[group_id]);
1287 return error;
1288}
1289
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001290struct wacom_led *wacom_led_find(struct wacom *wacom, unsigned int group_id,
1291 unsigned int id)
1292{
1293 struct wacom_group_leds *group;
1294
1295 if (group_id >= wacom->led.count)
1296 return NULL;
1297
1298 group = &wacom->led.groups[group_id];
1299
1300 if (!group->leds)
1301 return NULL;
1302
1303 id %= group->count;
1304
1305 return &group->leds[id];
1306}
1307
1308/**
1309 * wacom_led_next: gives the next available led with a wacom trigger.
1310 *
1311 * returns the next available struct wacom_led which has its default trigger
1312 * or the current one if none is available.
1313 */
1314struct wacom_led *wacom_led_next(struct wacom *wacom, struct wacom_led *cur)
1315{
1316 struct wacom_led *next_led;
1317 int group, next;
1318
1319 if (!wacom || !cur)
1320 return NULL;
1321
1322 group = cur->group;
1323 next = cur->id;
1324
1325 do {
1326 next_led = wacom_led_find(wacom, group, ++next);
1327 if (!next_led || next_led == cur)
1328 return next_led;
1329 } while (next_led->cdev.trigger != &next_led->trigger);
1330
1331 return next_led;
1332}
1333
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001334static void wacom_led_groups_release(void *data)
1335{
1336 struct wacom *wacom = data;
1337
1338 wacom->led.groups = NULL;
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001339 wacom->led.count = 0;
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001340}
1341
1342static int wacom_led_groups_allocate(struct wacom *wacom, int count)
1343{
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001344 struct device *dev = &wacom->hdev->dev;
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001345 struct wacom_group_leds *groups;
1346 int error;
1347
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001348 groups = devm_kzalloc(dev, sizeof(struct wacom_group_leds) * count,
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001349 GFP_KERNEL);
1350 if (!groups)
1351 return -ENOMEM;
1352
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001353 error = devm_add_action_or_reset(dev, wacom_led_groups_release, wacom);
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001354 if (error)
1355 return error;
1356
1357 wacom->led.groups = groups;
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001358 wacom->led.count = count;
1359
1360 return 0;
1361}
1362
1363static int wacom_leds_alloc_and_register(struct wacom *wacom, int group_count,
1364 int led_per_group, bool read_only)
1365{
1366 struct device *dev;
1367 int i, error;
1368
1369 if (!wacom->wacom_wac.pad_input)
1370 return -EINVAL;
1371
1372 dev = &wacom->wacom_wac.pad_input->dev;
1373
1374 error = wacom_led_groups_allocate(wacom, group_count);
1375 if (error)
1376 return error;
1377
1378 for (i = 0; i < group_count; i++) {
1379 error = wacom_led_groups_alloc_and_register_one(dev, wacom, i,
1380 led_per_group,
1381 read_only);
1382 if (error)
1383 return error;
1384 }
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001385
1386 return 0;
1387}
1388
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001389int wacom_initialize_leds(struct wacom *wacom)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001390{
1391 int error;
1392
Jason Gerecke862cf552015-06-15 18:01:43 -07001393 if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
1394 return 0;
1395
Ping Cheng09e7d942011-10-04 23:51:14 -07001396 /* Initialize default values */
1397 switch (wacom->wacom_wac.features.type) {
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001398 case HID_GENERIC:
1399 if (!wacom->generic_has_leds)
1400 return 0;
1401 wacom->led.llv = 100;
1402 wacom->led.max_llv = 100;
1403
1404 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1405 if (error) {
1406 hid_err(wacom->hdev,
1407 "cannot create leds err: %d\n", error);
1408 return error;
1409 }
1410
1411 error = wacom_devm_sysfs_create_group(wacom,
1412 &generic_led_attr_group);
1413 break;
1414
Jason Gereckea19fc982012-06-12 00:27:53 -07001415 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -07001416 case INTUOS4:
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001417 case INTUOS4WL:
Ping Cheng09e7d942011-10-04 23:51:14 -07001418 case INTUOS4L:
Ping Chengf4fa9a62011-10-04 23:49:42 -07001419 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001420 wacom->led.hlv = 20;
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001421 wacom->led.max_llv = 127;
1422 wacom->led.max_hlv = 127;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001423 wacom->led.img_lum = 10;
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001424
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001425 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001426 if (error) {
1427 hid_err(wacom->hdev,
1428 "cannot create leds err: %d\n", error);
1429 return error;
1430 }
1431
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001432 error = wacom_devm_sysfs_create_group(wacom,
1433 &intuos4_led_attr_group);
Ping Cheng09e7d942011-10-04 23:51:14 -07001434 break;
1435
Jason Gerecke246835f2011-12-12 00:12:04 -08001436 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -07001437 case WACOM_21UX2:
Ping Cheng09e7d942011-10-04 23:51:14 -07001438 wacom->led.llv = 0;
1439 wacom->led.hlv = 0;
1440 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001441
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001442 error = wacom_leds_alloc_and_register(wacom, 2, 4, false);
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001443 if (error) {
1444 hid_err(wacom->hdev,
1445 "cannot create leds err: %d\n", error);
1446 return error;
1447 }
1448
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001449 error = wacom_devm_sysfs_create_group(wacom,
1450 &cintiq_led_attr_group);
Ping Cheng09e7d942011-10-04 23:51:14 -07001451 break;
1452
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001453 case INTUOS5S:
1454 case INTUOS5:
1455 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -07001456 case INTUOSPS:
1457 case INTUOSPM:
1458 case INTUOSPL:
Jason Gerecke862cf552015-06-15 18:01:43 -07001459 wacom->led.llv = 32;
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001460 wacom->led.max_llv = 96;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001461
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001462 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001463 if (error) {
1464 hid_err(wacom->hdev,
1465 "cannot create leds err: %d\n", error);
1466 return error;
1467 }
1468
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001469 error = wacom_devm_sysfs_create_group(wacom,
1470 &intuos5_led_attr_group);
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001471 break;
1472
Jason Gerecke4922cd22017-01-25 12:08:37 -08001473 case INTUOSP2_BT:
1474 wacom->led.llv = 50;
1475 wacom->led.max_llv = 100;
1476 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1477 if (error) {
1478 hid_err(wacom->hdev,
1479 "cannot create leds err: %d\n", error);
1480 return error;
1481 }
1482 return 0;
1483
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001484 case REMOTE:
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001485 wacom->led.llv = 255;
1486 wacom->led.max_llv = 255;
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001487 error = wacom_led_groups_allocate(wacom, 5);
1488 if (error) {
1489 hid_err(wacom->hdev,
1490 "cannot create leds err: %d\n", error);
1491 return error;
1492 }
1493 return 0;
1494
Ping Cheng09e7d942011-10-04 23:51:14 -07001495 default:
1496 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001497 }
1498
Ping Cheng09e7d942011-10-04 23:51:14 -07001499 if (error) {
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -07001500 hid_err(wacom->hdev,
Ping Cheng09e7d942011-10-04 23:51:14 -07001501 "cannot create sysfs group err: %d\n", error);
1502 return error;
1503 }
Ping Cheng09e7d942011-10-04 23:51:14 -07001504
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001505 return 0;
1506}
1507
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01001508static void wacom_init_work(struct work_struct *work)
1509{
1510 struct wacom *wacom = container_of(work, struct wacom, init_work.work);
1511
1512 _wacom_query_tablet_data(wacom);
1513 wacom_led_control(wacom);
1514}
1515
1516static void wacom_query_tablet_data(struct wacom *wacom)
1517{
1518 schedule_delayed_work(&wacom->init_work, msecs_to_jiffies(1000));
1519}
1520
Chris Bagwella1d552c2012-03-25 23:26:30 -07001521static enum power_supply_property wacom_battery_props[] = {
Benjamin Tissoires99569532016-07-13 18:06:17 +02001522 POWER_SUPPLY_PROP_MODEL_NAME,
Jason Gerecke71fa6412015-03-11 10:25:41 -07001523 POWER_SUPPLY_PROP_PRESENT,
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001524 POWER_SUPPLY_PROP_STATUS,
Bastien Nocera6e2a6e82013-10-15 23:33:00 -07001525 POWER_SUPPLY_PROP_SCOPE,
Chris Bagwella1d552c2012-03-25 23:26:30 -07001526 POWER_SUPPLY_PROP_CAPACITY
1527};
1528
1529static int wacom_battery_get_property(struct power_supply *psy,
1530 enum power_supply_property psp,
1531 union power_supply_propval *val)
1532{
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001533 struct wacom_battery *battery = power_supply_get_drvdata(psy);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001534 int ret = 0;
1535
1536 switch (psp) {
Benjamin Tissoires99569532016-07-13 18:06:17 +02001537 case POWER_SUPPLY_PROP_MODEL_NAME:
1538 val->strval = battery->wacom->wacom_wac.name;
1539 break;
Jason Gerecke71fa6412015-03-11 10:25:41 -07001540 case POWER_SUPPLY_PROP_PRESENT:
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001541 val->intval = battery->bat_connected;
Jason Gerecke71fa6412015-03-11 10:25:41 -07001542 break;
Bastien Nocera6e2a6e82013-10-15 23:33:00 -07001543 case POWER_SUPPLY_PROP_SCOPE:
1544 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
1545 break;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001546 case POWER_SUPPLY_PROP_CAPACITY:
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001547 val->intval = battery->battery_capacity;
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001548 break;
1549 case POWER_SUPPLY_PROP_STATUS:
Jason Gerecke16e45982017-04-28 09:25:33 -07001550 if (battery->bat_status != WACOM_POWER_SUPPLY_STATUS_AUTO)
1551 val->intval = battery->bat_status;
1552 else if (battery->bat_charging)
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001553 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001554 else if (battery->battery_capacity == 100 &&
1555 battery->ps_connected)
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001556 val->intval = POWER_SUPPLY_STATUS_FULL;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001557 else if (battery->ps_connected)
Jason Gereckeb0882cb2015-03-06 11:47:43 -08001558 val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001559 else
1560 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001561 break;
1562 default:
1563 ret = -EINVAL;
1564 break;
1565 }
1566
1567 return ret;
1568}
1569
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001570static int __wacom_initialize_battery(struct wacom *wacom,
1571 struct wacom_battery *battery)
Chris Bagwella1d552c2012-03-25 23:26:30 -07001572{
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001573 static atomic_t battery_no = ATOMIC_INIT(0);
Benjamin Tissoiresb189da92016-07-13 18:05:53 +02001574 struct device *dev = &wacom->hdev->dev;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001575 struct power_supply_config psy_cfg = { .drv_data = battery, };
Benjamin Tissoires136ae5e2016-07-13 18:06:16 +02001576 struct power_supply *ps_bat;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001577 struct power_supply_desc *bat_desc = &battery->bat_desc;
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001578 unsigned long n;
Benjamin Tissoiresb189da92016-07-13 18:05:53 +02001579 int error;
1580
1581 if (!devres_open_group(dev, bat_desc, GFP_KERNEL))
1582 return -ENOMEM;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001583
Benjamin Tissoires99569532016-07-13 18:06:17 +02001584 battery->wacom = wacom;
1585
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001586 n = atomic_inc_return(&battery_no) - 1;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001587
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001588 bat_desc->properties = wacom_battery_props;
1589 bat_desc->num_properties = ARRAY_SIZE(wacom_battery_props);
1590 bat_desc->get_property = wacom_battery_get_property;
1591 sprintf(battery->bat_name, "wacom_battery_%ld", n);
1592 bat_desc->name = battery->bat_name;
Benjamin Tissoires96983292016-07-13 18:06:15 +02001593 bat_desc->type = POWER_SUPPLY_TYPE_USB;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001594 bat_desc->use_for_apm = 0;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001595
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001596 ps_bat = devm_power_supply_register(dev, bat_desc, &psy_cfg);
1597 if (IS_ERR(ps_bat)) {
1598 error = PTR_ERR(ps_bat);
1599 goto err;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001600 }
1601
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001602 power_supply_powers(ps_bat, &wacom->hdev->dev);
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001603
1604 battery->battery = ps_bat;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001605
Benjamin Tissoiresb189da92016-07-13 18:05:53 +02001606 devres_close_group(dev, bat_desc);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001607 return 0;
Benjamin Tissoiresb189da92016-07-13 18:05:53 +02001608
1609err:
1610 devres_release_group(dev, bat_desc);
1611 return error;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001612}
1613
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001614static int wacom_initialize_battery(struct wacom *wacom)
1615{
1616 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY)
1617 return __wacom_initialize_battery(wacom, &wacom->battery);
1618
1619 return 0;
1620}
1621
Chris Bagwella1d552c2012-03-25 23:26:30 -07001622static void wacom_destroy_battery(struct wacom *wacom)
1623{
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001624 if (wacom->battery.battery) {
1625 devres_release_group(&wacom->hdev->dev,
1626 &wacom->battery.bat_desc);
1627 wacom->battery.battery = NULL;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001628 }
Chris Bagwella1d552c2012-03-25 23:26:30 -07001629}
1630
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001631static ssize_t wacom_show_speed(struct device *dev,
1632 struct device_attribute
1633 *attr, char *buf)
1634{
Geliang Tangee79a8f2015-12-27 17:25:21 +08001635 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001636 struct wacom *wacom = hid_get_drvdata(hdev);
1637
1638 return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
1639}
1640
1641static ssize_t wacom_store_speed(struct device *dev,
1642 struct device_attribute *attr,
1643 const char *buf, size_t count)
1644{
Geliang Tangee79a8f2015-12-27 17:25:21 +08001645 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001646 struct wacom *wacom = hid_get_drvdata(hdev);
1647 u8 new_speed;
1648
1649 if (kstrtou8(buf, 0, &new_speed))
1650 return -EINVAL;
1651
1652 if (new_speed != 0 && new_speed != 1)
1653 return -EINVAL;
1654
1655 wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
1656
1657 return count;
1658}
1659
Ping Chenge0984bc2014-09-10 12:40:05 -07001660static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001661 wacom_show_speed, wacom_store_speed);
1662
Aaron Skomra72b236d2015-08-20 16:05:17 -07001663
1664static ssize_t wacom_show_remote_mode(struct kobject *kobj,
1665 struct kobj_attribute *kattr,
1666 char *buf, int index)
1667{
Geliang Tang2cf83832015-12-27 17:25:24 +08001668 struct device *dev = kobj_to_dev(kobj->parent);
Geliang Tangee79a8f2015-12-27 17:25:21 +08001669 struct hid_device *hdev = to_hid_device(dev);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001670 struct wacom *wacom = hid_get_drvdata(hdev);
1671 u8 mode;
1672
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001673 mode = wacom->led.groups[index].select;
Christos Gkekasbc35f732017-07-08 20:25:48 +01001674 return sprintf(buf, "%d\n", mode < 3 ? mode : -1);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001675}
1676
1677#define DEVICE_EKR_ATTR_GROUP(SET_ID) \
1678static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj, \
1679 struct kobj_attribute *kattr, char *buf) \
1680{ \
1681 return wacom_show_remote_mode(kobj, kattr, buf, SET_ID); \
1682} \
1683static struct kobj_attribute remote##SET_ID##_mode_attr = { \
1684 .attr = {.name = "remote_mode", \
1685 .mode = DEV_ATTR_RO_PERM}, \
1686 .show = wacom_show_remote##SET_ID##_mode, \
1687}; \
1688static struct attribute *remote##SET_ID##_serial_attrs[] = { \
1689 &remote##SET_ID##_mode_attr.attr, \
1690 NULL \
1691}; \
1692static struct attribute_group remote##SET_ID##_serial_group = { \
1693 .name = NULL, \
1694 .attrs = remote##SET_ID##_serial_attrs, \
1695}
1696
1697DEVICE_EKR_ATTR_GROUP(0);
1698DEVICE_EKR_ATTR_GROUP(1);
1699DEVICE_EKR_ATTR_GROUP(2);
1700DEVICE_EKR_ATTR_GROUP(3);
1701DEVICE_EKR_ATTR_GROUP(4);
1702
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02001703static int wacom_remote_create_attr_group(struct wacom *wacom, __u32 serial,
1704 int index)
Aaron Skomra72b236d2015-08-20 16:05:17 -07001705{
1706 int error = 0;
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001707 struct wacom_remote *remote = wacom->remote;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001708
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001709 remote->remotes[index].group.name = devm_kasprintf(&wacom->hdev->dev,
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001710 GFP_KERNEL,
1711 "%d", serial);
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001712 if (!remote->remotes[index].group.name)
Aaron Skomra72b236d2015-08-20 16:05:17 -07001713 return -ENOMEM;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001714
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02001715 error = __wacom_devm_sysfs_create_group(wacom, remote->remote_dir,
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001716 &remote->remotes[index].group);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001717 if (error) {
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001718 remote->remotes[index].group.name = NULL;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001719 hid_err(wacom->hdev,
1720 "cannot create sysfs group err: %d\n", error);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001721 return error;
1722 }
1723
1724 return 0;
1725}
1726
Aaron Skomra72b236d2015-08-20 16:05:17 -07001727static int wacom_cmd_unpair_remote(struct wacom *wacom, unsigned char selector)
1728{
1729 const size_t buf_size = 2;
1730 unsigned char *buf;
1731 int retval;
1732
1733 buf = kzalloc(buf_size, GFP_KERNEL);
1734 if (!buf)
1735 return -ENOMEM;
1736
1737 buf[0] = WAC_CMD_DELETE_PAIRING;
1738 buf[1] = selector;
1739
1740 retval = wacom_set_report(wacom->hdev, HID_OUTPUT_REPORT, buf,
1741 buf_size, WAC_CMD_RETRIES);
1742 kfree(buf);
1743
1744 return retval;
1745}
1746
1747static ssize_t wacom_store_unpair_remote(struct kobject *kobj,
1748 struct kobj_attribute *attr,
1749 const char *buf, size_t count)
1750{
1751 unsigned char selector = 0;
Geliang Tang2cf83832015-12-27 17:25:24 +08001752 struct device *dev = kobj_to_dev(kobj->parent);
Geliang Tangee79a8f2015-12-27 17:25:21 +08001753 struct hid_device *hdev = to_hid_device(dev);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001754 struct wacom *wacom = hid_get_drvdata(hdev);
1755 int err;
1756
1757 if (!strncmp(buf, "*\n", 2)) {
1758 selector = WAC_CMD_UNPAIR_ALL;
1759 } else {
1760 hid_info(wacom->hdev, "remote: unrecognized unpair code: %s\n",
1761 buf);
1762 return -1;
1763 }
1764
1765 mutex_lock(&wacom->lock);
1766
1767 err = wacom_cmd_unpair_remote(wacom, selector);
1768 mutex_unlock(&wacom->lock);
1769
1770 return err < 0 ? err : count;
1771}
1772
1773static struct kobj_attribute unpair_remote_attr = {
1774 .attr = {.name = "unpair_remote", .mode = 0200},
1775 .store = wacom_store_unpair_remote,
1776};
1777
1778static const struct attribute *remote_unpair_attrs[] = {
1779 &unpair_remote_attr.attr,
1780 NULL
1781};
1782
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001783static void wacom_remotes_destroy(void *data)
1784{
1785 struct wacom *wacom = data;
1786 struct wacom_remote *remote = wacom->remote;
1787
1788 if (!remote)
1789 return;
1790
1791 kobject_put(remote->remote_dir);
1792 kfifo_free(&remote->remote_fifo);
1793 wacom->remote = NULL;
1794}
1795
1796static int wacom_initialize_remotes(struct wacom *wacom)
Aaron Skomra72b236d2015-08-20 16:05:17 -07001797{
1798 int error = 0;
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001799 struct wacom_remote *remote;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001800 int i;
1801
1802 if (wacom->wacom_wac.features.type != REMOTE)
1803 return 0;
1804
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001805 remote = devm_kzalloc(&wacom->hdev->dev, sizeof(*wacom->remote),
1806 GFP_KERNEL);
1807 if (!remote)
Aaron Skomra72b236d2015-08-20 16:05:17 -07001808 return -ENOMEM;
1809
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001810 wacom->remote = remote;
1811
1812 spin_lock_init(&remote->remote_lock);
1813
1814 error = kfifo_alloc(&remote->remote_fifo,
1815 5 * sizeof(struct wacom_remote_data),
1816 GFP_KERNEL);
1817 if (error) {
1818 hid_err(wacom->hdev, "failed allocating remote_fifo\n");
1819 return -ENOMEM;
1820 }
1821
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001822 remote->remotes[0].group = remote0_serial_group;
1823 remote->remotes[1].group = remote1_serial_group;
1824 remote->remotes[2].group = remote2_serial_group;
1825 remote->remotes[3].group = remote3_serial_group;
1826 remote->remotes[4].group = remote4_serial_group;
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001827
1828 remote->remote_dir = kobject_create_and_add("wacom_remote",
1829 &wacom->hdev->dev.kobj);
1830 if (!remote->remote_dir)
1831 return -ENOMEM;
1832
1833 error = sysfs_create_files(remote->remote_dir, remote_unpair_attrs);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001834
1835 if (error) {
1836 hid_err(wacom->hdev,
1837 "cannot create sysfs group err: %d\n", error);
1838 return error;
1839 }
1840
1841 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001842 wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001843 remote->remotes[i].serial = 0;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001844 }
1845
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001846 error = devm_add_action_or_reset(&wacom->hdev->dev,
1847 wacom_remotes_destroy, wacom);
1848 if (error)
1849 return error;
1850
Aaron Skomra72b236d2015-08-20 16:05:17 -07001851 return 0;
1852}
1853
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001854static struct input_dev *wacom_allocate_input(struct wacom *wacom)
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001855{
1856 struct input_dev *input_dev;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001857 struct hid_device *hdev = wacom->hdev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001858 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001859
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02001860 input_dev = devm_input_allocate_device(&hdev->dev);
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001861 if (!input_dev)
1862 return NULL;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001863
Jason Gerecke2bdd1632015-07-13 18:03:45 -07001864 input_dev->name = wacom_wac->features.name;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001865 input_dev->phys = hdev->phys;
1866 input_dev->dev.parent = &hdev->dev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001867 input_dev->open = wacom_open;
1868 input_dev->close = wacom_close;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001869 input_dev->uniq = hdev->uniq;
1870 input_dev->id.bustype = hdev->bus;
1871 input_dev->id.vendor = hdev->vendor;
Benjamin Tissoires12969e32014-09-11 13:14:04 -04001872 input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001873 input_dev->id.version = hdev->version;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001874 input_set_drvdata(input_dev, wacom);
1875
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001876 return input_dev;
1877}
1878
Jason Gerecked9f2d202015-07-13 18:03:44 -07001879static int wacom_allocate_inputs(struct wacom *wacom)
1880{
1881 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1882
1883 wacom_wac->pen_input = wacom_allocate_input(wacom);
1884 wacom_wac->touch_input = wacom_allocate_input(wacom);
1885 wacom_wac->pad_input = wacom_allocate_input(wacom);
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02001886 if (!wacom_wac->pen_input ||
1887 !wacom_wac->touch_input ||
1888 !wacom_wac->pad_input)
Jason Gerecked9f2d202015-07-13 18:03:44 -07001889 return -ENOMEM;
Jason Gerecked9f2d202015-07-13 18:03:44 -07001890
Jason Gerecke2bdd1632015-07-13 18:03:45 -07001891 wacom_wac->pen_input->name = wacom_wac->pen_name;
Jason Gerecked9f2d202015-07-13 18:03:44 -07001892 wacom_wac->touch_input->name = wacom_wac->touch_name;
1893 wacom_wac->pad_input->name = wacom_wac->pad_name;
1894
1895 return 0;
1896}
1897
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001898static int wacom_register_inputs(struct wacom *wacom)
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001899{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001900 struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001901 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Jason Gerecke2636a3f2015-06-15 18:01:44 -07001902 int error = 0;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001903
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001904 pen_input_dev = wacom_wac->pen_input;
1905 touch_input_dev = wacom_wac->touch_input;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001906 pad_input_dev = wacom_wac->pad_input;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001907
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001908 if (!pen_input_dev || !touch_input_dev || !pad_input_dev)
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001909 return -EINVAL;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001910
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001911 error = wacom_setup_pen_input_capabilities(pen_input_dev, wacom_wac);
1912 if (error) {
1913 /* no pen in use on this interface */
1914 input_free_device(pen_input_dev);
1915 wacom_wac->pen_input = NULL;
1916 pen_input_dev = NULL;
1917 } else {
1918 error = input_register_device(pen_input_dev);
Ping Cheng30ebc1a2014-11-18 13:29:16 -08001919 if (error)
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02001920 goto fail;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001921 }
1922
1923 error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac);
1924 if (error) {
1925 /* no touch in use on this interface */
1926 input_free_device(touch_input_dev);
1927 wacom_wac->touch_input = NULL;
1928 touch_input_dev = NULL;
1929 } else {
1930 error = input_register_device(touch_input_dev);
1931 if (error)
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02001932 goto fail;
Ping Cheng30ebc1a2014-11-18 13:29:16 -08001933 }
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001934
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001935 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
1936 if (error) {
1937 /* no pad in use on this interface */
1938 input_free_device(pad_input_dev);
1939 wacom_wac->pad_input = NULL;
1940 pad_input_dev = NULL;
1941 } else {
1942 error = input_register_device(pad_input_dev);
1943 if (error)
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02001944 goto fail;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001945 }
1946
Ping Cheng19635182012-04-29 21:09:18 -07001947 return 0;
1948
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02001949fail:
1950 wacom_wac->pad_input = NULL;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001951 wacom_wac->touch_input = NULL;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001952 wacom_wac->pen_input = NULL;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001953 return error;
1954}
1955
Jason Gerecke0be01712015-08-05 15:44:53 -07001956/*
1957 * Not all devices report physical dimensions from HID.
1958 * Compute the default from hardcoded logical dimension
1959 * and resolution before driver overwrites them.
1960 */
1961static void wacom_set_default_phy(struct wacom_features *features)
1962{
1963 if (features->x_resolution) {
1964 features->x_phy = (features->x_max * 100) /
1965 features->x_resolution;
1966 features->y_phy = (features->y_max * 100) /
1967 features->y_resolution;
1968 }
1969}
1970
1971static void wacom_calculate_res(struct wacom_features *features)
1972{
1973 /* set unit to "100th of a mm" for devices not reported by HID */
1974 if (!features->unit) {
1975 features->unit = 0x11;
1976 features->unitExpo = -3;
1977 }
1978
1979 features->x_resolution = wacom_calc_hid_res(features->x_max,
1980 features->x_phy,
1981 features->unit,
1982 features->unitExpo);
1983 features->y_resolution = wacom_calc_hid_res(features->y_max,
1984 features->y_phy,
1985 features->unit,
1986 features->unitExpo);
1987}
1988
Jason Gereckefce99572015-03-06 11:47:40 -08001989void wacom_battery_work(struct work_struct *work)
1990{
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02001991 struct wacom *wacom = container_of(work, struct wacom, battery_work);
Jason Gereckefce99572015-03-06 11:47:40 -08001992
1993 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001994 !wacom->battery.battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08001995 wacom_initialize_battery(wacom);
1996 }
1997 else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001998 wacom->battery.battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08001999 wacom_destroy_battery(wacom);
2000 }
2001}
2002
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07002003static size_t wacom_compute_pktlen(struct hid_device *hdev)
2004{
2005 struct hid_report_enum *report_enum;
2006 struct hid_report *report;
2007 size_t size = 0;
2008
2009 report_enum = hdev->report_enum + HID_INPUT_REPORT;
2010
2011 list_for_each_entry(report, &report_enum->report_list, list) {
Mathieu Magnaudetdabb05c62014-11-27 16:02:36 +01002012 size_t report_size = hid_report_len(report);
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07002013 if (report_size > size)
2014 size = report_size;
2015 }
2016
2017 return size;
2018}
2019
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002020static void wacom_update_name(struct wacom *wacom, const char *suffix)
Ping Chengc24eab42015-04-24 15:32:51 -07002021{
2022 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2023 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke44b52502015-06-15 18:01:41 -07002024 char name[WACOM_NAME_MAX];
Ping Chengc24eab42015-04-24 15:32:51 -07002025
2026 /* Generic devices name unspecified */
2027 if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) {
2028 if (strstr(wacom->hdev->name, "Wacom") ||
2029 strstr(wacom->hdev->name, "wacom") ||
2030 strstr(wacom->hdev->name, "WACOM")) {
2031 /* name is in HID descriptor, use it */
Jason Gerecke44b52502015-06-15 18:01:41 -07002032 strlcpy(name, wacom->hdev->name, sizeof(name));
Ping Chengc24eab42015-04-24 15:32:51 -07002033
2034 /* strip out excess whitespaces */
2035 while (1) {
Jason Gerecke44b52502015-06-15 18:01:41 -07002036 char *gap = strstr(name, " ");
Ping Chengc24eab42015-04-24 15:32:51 -07002037 if (gap == NULL)
2038 break;
2039 /* shift everything including the terminator */
2040 memmove(gap, gap+1, strlen(gap));
2041 }
Jason Gereckef2209d42016-10-19 18:03:41 -07002042
2043 /* strip off excessive prefixing */
2044 if (strstr(name, "Wacom Co.,Ltd. Wacom ") == name) {
2045 int n = strlen(name);
2046 int x = strlen("Wacom Co.,Ltd. ");
2047 memmove(name, name+x, n-x+1);
2048 }
2049 if (strstr(name, "Wacom Co., Ltd. Wacom ") == name) {
2050 int n = strlen(name);
2051 int x = strlen("Wacom Co., Ltd. ");
2052 memmove(name, name+x, n-x+1);
2053 }
2054
Ping Chengc24eab42015-04-24 15:32:51 -07002055 /* get rid of trailing whitespace */
Jason Gerecke44b52502015-06-15 18:01:41 -07002056 if (name[strlen(name)-1] == ' ')
2057 name[strlen(name)-1] = '\0';
Ping Chengc24eab42015-04-24 15:32:51 -07002058 } else {
2059 /* no meaningful name retrieved. use product ID */
Jason Gerecke44b52502015-06-15 18:01:41 -07002060 snprintf(name, sizeof(name),
Ping Chengc24eab42015-04-24 15:32:51 -07002061 "%s %X", features->name, wacom->hdev->product);
2062 }
2063 } else {
Jason Gerecke44b52502015-06-15 18:01:41 -07002064 strlcpy(name, features->name, sizeof(name));
Ping Chengc24eab42015-04-24 15:32:51 -07002065 }
2066
Benjamin Tissoires99569532016-07-13 18:06:17 +02002067 snprintf(wacom_wac->name, sizeof(wacom_wac->name), "%s%s",
2068 name, suffix);
2069
Ping Chengc24eab42015-04-24 15:32:51 -07002070 /* Append the device type to the name */
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002071 snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name),
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002072 "%s%s Pen", name, suffix);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002073 snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name),
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002074 "%s%s Finger", name, suffix);
Ping Chengc24eab42015-04-24 15:32:51 -07002075 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002076 "%s%s Pad", name, suffix);
Ping Chengc24eab42015-04-24 15:32:51 -07002077}
2078
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002079static void wacom_release_resources(struct wacom *wacom)
2080{
2081 struct hid_device *hdev = wacom->hdev;
2082
2083 if (!wacom->resources)
2084 return;
2085
2086 devres_release_group(&hdev->dev, wacom);
2087
2088 wacom->resources = false;
2089
2090 wacom->wacom_wac.pen_input = NULL;
2091 wacom->wacom_wac.touch_input = NULL;
2092 wacom->wacom_wac.pad_input = NULL;
2093}
2094
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08002095static void wacom_set_shared_values(struct wacom_wac *wacom_wac)
2096{
2097 if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH) {
2098 wacom_wac->shared->type = wacom_wac->features.type;
2099 wacom_wac->shared->touch_input = wacom_wac->touch_input;
2100 }
2101
Ping Chengd793ff82017-02-14 21:27:45 -08002102 if (wacom_wac->has_mute_touch_switch) {
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08002103 wacom_wac->shared->has_mute_touch_switch = true;
Ping Chengd793ff82017-02-14 21:27:45 -08002104 wacom_wac->shared->is_touch_on = true;
2105 }
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08002106
2107 if (wacom_wac->shared->has_mute_touch_switch &&
2108 wacom_wac->shared->touch_input) {
2109 set_bit(EV_SW, wacom_wac->shared->touch_input->evbit);
2110 input_set_capability(wacom_wac->shared->touch_input, EV_SW,
2111 SW_MUTE_DEVICE);
2112 }
2113}
2114
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002115static int wacom_parse_and_register(struct wacom *wacom, bool wireless)
Ping Cheng3bea7332006-07-13 18:01:36 -07002116{
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002117 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2118 struct wacom_features *features = &wacom_wac->features;
2119 struct hid_device *hdev = wacom->hdev;
Jason Childse33da8a2010-02-17 22:38:31 -08002120 int error;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002121 unsigned int connect_mask = HID_CONNECT_HIDRAW;
Ping Cheng3bea7332006-07-13 18:01:36 -07002122
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07002123 features->pktlen = wacom_compute_pktlen(hdev);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002124 if (features->pktlen > WACOM_PKGLEN_MAX)
2125 return -EINVAL;
Ping Cheng3bea7332006-07-13 18:01:36 -07002126
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002127 if (!devres_open_group(&hdev->dev, wacom, GFP_KERNEL))
2128 return -ENOMEM;
2129
2130 wacom->resources = true;
2131
Jason Gerecke3f14a632015-08-03 10:17:05 -07002132 error = wacom_allocate_inputs(wacom);
2133 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002134 goto fail;
Benjamin Tissoires494078b2014-09-23 12:08:07 -04002135
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002136 /*
2137 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
2138 * into debug mode for the touch part.
2139 * We ignore the other interfaces.
2140 */
2141 if (features->type == BAMBOO_PAD) {
2142 if (features->pktlen == WACOM_PKGLEN_PENABLED) {
2143 features->type = HID_GENERIC;
2144 } else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) &&
2145 (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) {
2146 error = -ENODEV;
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002147 goto fail;
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002148 }
2149 }
2150
Ping Cheng401d7d12013-07-28 00:38:54 -07002151 /* set the default size in case we do not get them from hid */
2152 wacom_set_default_phy(features);
2153
Ping Chengf393ee22012-04-29 21:09:17 -07002154 /* Retrieve the physical and logical size for touch devices */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07002155 wacom_retrieve_hid_descriptor(hdev, features);
Ping Cheng42f4f272015-04-15 16:53:54 -07002156 wacom_setup_device_quirks(wacom);
Jason Gerecke042628a2015-04-30 17:51:54 -07002157
Jason Gereckeaa86b182015-06-15 18:01:42 -07002158 if (features->device_type == WACOM_DEVICETYPE_NONE &&
2159 features->type != WIRELESS) {
Jason Gerecke8e116d32015-04-30 17:51:55 -07002160 error = features->type == HID_GENERIC ? -ENODEV : 0;
2161
Jason Gerecke042628a2015-04-30 17:51:54 -07002162 dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.",
Jason Gerecke8e116d32015-04-30 17:51:55 -07002163 hdev->name,
2164 error ? "Ignoring" : "Assuming pen");
2165
2166 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002167 goto fail;
Jason Gerecke042628a2015-04-30 17:51:54 -07002168
Jason Gereckeaa86b182015-06-15 18:01:42 -07002169 features->device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke042628a2015-04-30 17:51:54 -07002170 }
2171
Ping Cheng401d7d12013-07-28 00:38:54 -07002172 wacom_calculate_res(features);
2173
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002174 wacom_update_name(wacom, wireless ? " (WL)" : "");
Ping Cheng4492eff2010-03-19 22:18:15 -07002175
Aaron Armstrong Skomra8b407352017-03-29 10:35:39 -07002176 /* pen only Bamboo neither support touch nor pad */
2177 if ((features->type == BAMBOO_PEN) &&
2178 ((features->device_type & WACOM_DEVICETYPE_TOUCH) ||
2179 (features->device_type & WACOM_DEVICETYPE_PAD))) {
2180 error = -ENODEV;
2181 goto fail;
2182 }
2183
Jason Gereckea9ce7852017-01-17 15:38:58 -08002184 error = wacom_add_shared_data(hdev);
2185 if (error)
2186 goto fail;
Ping Cheng49b764a2010-02-20 00:53:49 -08002187
Jason Gereckeccad85c2015-08-03 10:17:04 -07002188 if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) &&
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07002189 (features->quirks & WACOM_QUIRK_BATTERY)) {
2190 error = wacom_initialize_battery(wacom);
2191 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002192 goto fail;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07002193 }
2194
Jason Gerecke3f14a632015-08-03 10:17:05 -07002195 error = wacom_register_inputs(wacom);
2196 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002197 goto fail;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07002198
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002199 if (wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD) {
Benjamin Tissoires85d2c772016-07-13 18:05:51 +02002200 error = wacom_initialize_leds(wacom);
2201 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002202 goto fail;
Benjamin Tissoires85d2c772016-07-13 18:05:51 +02002203
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002204 error = wacom_initialize_remotes(wacom);
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002205 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002206 goto fail;
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002207 }
2208
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002209 if (features->type == HID_GENERIC)
2210 connect_mask |= HID_CONNECT_DRIVER;
2211
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002212 /* Regular HID work starts now */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002213 error = hid_hw_start(hdev, connect_mask);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002214 if (error) {
2215 hid_err(hdev, "hw start failed\n");
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002216 goto fail;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002217 }
2218
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002219 if (!wireless) {
2220 /* Note that if query fails it is not a hard failure */
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01002221 wacom_query_tablet_data(wacom);
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002222 }
Jason Gerecke86e88f02015-11-03 16:57:58 -08002223
2224 /* touch only Bamboo doesn't support pen */
2225 if ((features->type == BAMBOO_TOUCH) &&
2226 (features->device_type & WACOM_DEVICETYPE_PEN)) {
Aaron Armstrong Skomra4d20c332017-03-29 11:41:28 -07002227 cancel_delayed_work_sync(&wacom->init_work);
2228 _wacom_query_tablet_data(wacom);
Jason Gerecke86e88f02015-11-03 16:57:58 -08002229 error = -ENODEV;
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002230 goto fail_quirks;
Jason Gerecke86e88f02015-11-03 16:57:58 -08002231 }
2232
Jason Gereckeccad85c2015-08-03 10:17:04 -07002233 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002234 error = hid_hw_open(hdev);
2235
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08002236 wacom_set_shared_values(wacom_wac);
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002237 devres_close_group(&hdev->dev, wacom);
2238
Ping Cheng3bea7332006-07-13 18:01:36 -07002239 return 0;
2240
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002241fail_quirks:
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002242 hid_hw_stop(hdev);
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002243fail:
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002244 wacom_release_resources(wacom);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002245 return error;
2246}
2247
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002248static void wacom_wireless_work(struct work_struct *work)
2249{
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002250 struct wacom *wacom = container_of(work, struct wacom, wireless_work);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002251 struct usb_device *usbdev = wacom->usbdev;
2252 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2253 struct hid_device *hdev1, *hdev2;
2254 struct wacom *wacom1, *wacom2;
2255 struct wacom_wac *wacom_wac1, *wacom_wac2;
2256 int error;
2257
2258 /*
2259 * Regardless if this is a disconnect or a new tablet,
2260 * remove any existing input and battery devices.
2261 */
2262
2263 wacom_destroy_battery(wacom);
2264
2265 /* Stylus interface */
2266 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
2267 wacom1 = hid_get_drvdata(hdev1);
2268 wacom_wac1 = &(wacom1->wacom_wac);
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002269 wacom_release_resources(wacom1);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002270
2271 /* Touch interface */
2272 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
2273 wacom2 = hid_get_drvdata(hdev2);
2274 wacom_wac2 = &(wacom2->wacom_wac);
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002275 wacom_release_resources(wacom2);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002276
2277 if (wacom_wac->pid == 0) {
2278 hid_info(wacom->hdev, "wireless tablet disconnected\n");
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002279 } else {
2280 const struct hid_device_id *id = wacom_ids;
2281
2282 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
2283 wacom_wac->pid);
2284
2285 while (id->bus) {
2286 if (id->vendor == USB_VENDOR_ID_WACOM &&
2287 id->product == wacom_wac->pid)
2288 break;
2289 id++;
2290 }
2291
2292 if (!id->bus) {
2293 hid_info(wacom->hdev, "ignoring unknown PID.\n");
2294 return;
2295 }
2296
2297 /* Stylus interface */
2298 wacom_wac1->features =
2299 *((struct wacom_features *)id->driver_data);
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002300
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002301 wacom_wac1->pid = wacom_wac->pid;
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002302 hid_hw_stop(hdev1);
2303 error = wacom_parse_and_register(wacom1, true);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002304 if (error)
2305 goto fail;
2306
2307 /* Touch interface */
2308 if (wacom_wac1->features.touch_max ||
2309 (wacom_wac1->features.type >= INTUOSHT &&
2310 wacom_wac1->features.type <= BAMBOO_PT)) {
2311 wacom_wac2->features =
2312 *((struct wacom_features *)id->driver_data);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002313 wacom_wac2->pid = wacom_wac->pid;
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002314 hid_hw_stop(hdev2);
2315 error = wacom_parse_and_register(wacom2, true);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002316 if (error)
2317 goto fail;
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002318 }
2319
Benjamin Tissoires99569532016-07-13 18:06:17 +02002320 strlcpy(wacom_wac->name, wacom_wac1->name,
2321 sizeof(wacom_wac->name));
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002322 error = wacom_initialize_battery(wacom);
2323 if (error)
2324 goto fail;
2325 }
2326
2327 return;
2328
2329fail:
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002330 wacom_release_resources(wacom1);
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002331 wacom_release_resources(wacom2);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002332 return;
2333}
2334
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002335static void wacom_remote_destroy_one(struct wacom *wacom, unsigned int index)
2336{
2337 struct wacom_remote *remote = wacom->remote;
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002338 u32 serial = remote->remotes[index].serial;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002339 int i;
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002340 unsigned long flags;
2341
2342 spin_lock_irqsave(&remote->remote_lock, flags);
2343 remote->remotes[index].registered = false;
2344 spin_unlock_irqrestore(&remote->remote_lock, flags);
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002345
Benjamin Tissoires9f1015d42016-07-13 18:06:09 +02002346 if (remote->remotes[index].battery.battery)
2347 devres_release_group(&wacom->hdev->dev,
2348 &remote->remotes[index].battery.bat_desc);
2349
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002350 if (remote->remotes[index].group.name)
2351 devres_release_group(&wacom->hdev->dev,
2352 &remote->remotes[index]);
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002353
2354 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002355 if (remote->remotes[i].serial == serial) {
2356 remote->remotes[i].serial = 0;
2357 remote->remotes[i].group.name = NULL;
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002358 remote->remotes[i].registered = false;
Benjamin Tissoires9f1015d42016-07-13 18:06:09 +02002359 remote->remotes[i].battery.battery = NULL;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002360 wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
2361 }
2362 }
2363}
2364
2365static int wacom_remote_create_one(struct wacom *wacom, u32 serial,
2366 unsigned int index)
2367{
2368 struct wacom_remote *remote = wacom->remote;
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002369 struct device *dev = &wacom->hdev->dev;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002370 int error, k;
2371
2372 /* A remote can pair more than once with an EKR,
2373 * check to make sure this serial isn't already paired.
2374 */
2375 for (k = 0; k < WACOM_MAX_REMOTES; k++) {
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002376 if (remote->remotes[k].serial == serial)
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002377 break;
2378 }
2379
2380 if (k < WACOM_MAX_REMOTES) {
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002381 remote->remotes[index].serial = serial;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002382 return 0;
2383 }
2384
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002385 if (!devres_open_group(dev, &remote->remotes[index], GFP_KERNEL))
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002386 return -ENOMEM;
2387
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002388 error = wacom_remote_create_attr_group(wacom, serial, index);
2389 if (error)
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002390 goto fail;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002391
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002392 remote->remotes[index].input = wacom_allocate_input(wacom);
2393 if (!remote->remotes[index].input) {
2394 error = -ENOMEM;
2395 goto fail;
2396 }
2397 remote->remotes[index].input->uniq = remote->remotes[index].group.name;
2398 remote->remotes[index].input->name = wacom->wacom_wac.pad_name;
2399
2400 if (!remote->remotes[index].input->name) {
2401 error = -EINVAL;
2402 goto fail;
2403 }
2404
2405 error = wacom_setup_pad_input_capabilities(remote->remotes[index].input,
2406 &wacom->wacom_wac);
2407 if (error)
2408 goto fail;
2409
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002410 remote->remotes[index].serial = serial;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002411
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002412 error = input_register_device(remote->remotes[index].input);
2413 if (error)
2414 goto fail;
2415
Benjamin Tissoires97f55412016-07-13 18:06:10 +02002416 error = wacom_led_groups_alloc_and_register_one(
2417 &remote->remotes[index].input->dev,
2418 wacom, index, 3, true);
2419 if (error)
2420 goto fail;
2421
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002422 remote->remotes[index].registered = true;
2423
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002424 devres_close_group(dev, &remote->remotes[index]);
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002425 return 0;
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002426
2427fail:
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002428 devres_release_group(dev, &remote->remotes[index]);
2429 remote->remotes[index].serial = 0;
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002430 return error;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002431}
2432
Benjamin Tissoires9f1015d42016-07-13 18:06:09 +02002433static int wacom_remote_attach_battery(struct wacom *wacom, int index)
2434{
2435 struct wacom_remote *remote = wacom->remote;
2436 int error;
2437
2438 if (!remote->remotes[index].registered)
2439 return 0;
2440
2441 if (remote->remotes[index].battery.battery)
2442 return 0;
2443
2444 if (wacom->led.groups[index].select == WACOM_STATUS_UNKNOWN)
2445 return 0;
2446
2447 error = __wacom_initialize_battery(wacom,
2448 &wacom->remote->remotes[index].battery);
2449 if (error)
2450 return error;
2451
2452 return 0;
2453}
2454
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002455static void wacom_remote_work(struct work_struct *work)
2456{
2457 struct wacom *wacom = container_of(work, struct wacom, remote_work);
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002458 struct wacom_remote *remote = wacom->remote;
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002459 struct wacom_remote_data data;
2460 unsigned long flags;
2461 unsigned int count;
2462 u32 serial;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002463 int i;
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002464
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002465 spin_lock_irqsave(&remote->remote_lock, flags);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002466
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002467 count = kfifo_out(&remote->remote_fifo, &data, sizeof(data));
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002468
2469 if (count != sizeof(data)) {
2470 hid_err(wacom->hdev,
2471 "workitem triggered without status available\n");
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002472 spin_unlock_irqrestore(&remote->remote_lock, flags);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002473 return;
2474 }
2475
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002476 if (!kfifo_is_empty(&remote->remote_fifo))
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002477 wacom_schedule_work(&wacom->wacom_wac, WACOM_WORKER_REMOTE);
2478
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002479 spin_unlock_irqrestore(&remote->remote_lock, flags);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002480
2481 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
2482 serial = data.remote[i].serial;
2483 if (data.remote[i].connected) {
2484
Benjamin Tissoires9f1015d42016-07-13 18:06:09 +02002485 if (remote->remotes[i].serial == serial) {
2486 wacom_remote_attach_battery(wacom, i);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002487 continue;
Benjamin Tissoires9f1015d42016-07-13 18:06:09 +02002488 }
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002489
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002490 if (remote->remotes[i].serial)
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002491 wacom_remote_destroy_one(wacom, i);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002492
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002493 wacom_remote_create_one(wacom, serial, i);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002494
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002495 } else if (remote->remotes[i].serial) {
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002496 wacom_remote_destroy_one(wacom, i);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002497 }
2498 }
2499}
2500
Benjamin Tissoires4082da82017-02-14 21:27:18 -08002501static void wacom_mode_change_work(struct work_struct *work)
2502{
2503 struct wacom *wacom = container_of(work, struct wacom, mode_change_work);
2504 struct wacom_shared *shared = wacom->wacom_wac.shared;
2505 struct wacom *wacom1 = NULL;
2506 struct wacom *wacom2 = NULL;
2507 bool is_direct = wacom->wacom_wac.is_direct_mode;
2508 int error = 0;
2509
2510 if (shared->pen) {
2511 wacom1 = hid_get_drvdata(shared->pen);
2512 wacom_release_resources(wacom1);
2513 hid_hw_stop(wacom1->hdev);
2514 wacom1->wacom_wac.has_mode_change = true;
2515 wacom1->wacom_wac.is_direct_mode = is_direct;
2516 }
2517
2518 if (shared->touch) {
2519 wacom2 = hid_get_drvdata(shared->touch);
2520 wacom_release_resources(wacom2);
2521 hid_hw_stop(wacom2->hdev);
2522 wacom2->wacom_wac.has_mode_change = true;
2523 wacom2->wacom_wac.is_direct_mode = is_direct;
2524 }
2525
2526 if (wacom1) {
2527 error = wacom_parse_and_register(wacom1, false);
2528 if (error)
2529 return;
2530 }
2531
2532 if (wacom2) {
2533 error = wacom_parse_and_register(wacom2, false);
2534 if (error)
2535 return;
2536 }
2537
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002538 return;
2539}
2540
2541static int wacom_probe(struct hid_device *hdev,
2542 const struct hid_device_id *id)
2543{
2544 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
2545 struct usb_device *dev = interface_to_usbdev(intf);
2546 struct wacom *wacom;
2547 struct wacom_wac *wacom_wac;
2548 struct wacom_features *features;
2549 int error;
2550
2551 if (!id->driver_data)
2552 return -EINVAL;
2553
2554 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
2555
2556 /* hid-core sets this quirk for the boot interface */
2557 hdev->quirks &= ~HID_QUIRK_NOGET;
2558
Benjamin Tissoires19b64332016-07-13 18:05:58 +02002559 wacom = devm_kzalloc(&hdev->dev, sizeof(struct wacom), GFP_KERNEL);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002560 if (!wacom)
2561 return -ENOMEM;
2562
2563 hid_set_drvdata(hdev, wacom);
2564 wacom->hdev = hdev;
2565
2566 wacom_wac = &wacom->wacom_wac;
2567 wacom_wac->features = *((struct wacom_features *)id->driver_data);
2568 features = &wacom_wac->features;
2569
2570 if (features->check_for_hid_type && features->hid_type != hdev->type) {
2571 error = -ENODEV;
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002572 goto fail;
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002573 }
2574
Jason Gereckec6fa1ae2016-04-04 11:26:51 -07002575 wacom_wac->hid_data.inputmode = -1;
Jason Gerecke326ea2a2016-04-04 11:26:52 -07002576 wacom_wac->mode_report = -1;
Jason Gereckec6fa1ae2016-04-04 11:26:51 -07002577
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002578 wacom->usbdev = dev;
2579 wacom->intf = intf;
2580 mutex_init(&wacom->lock);
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01002581 INIT_DELAYED_WORK(&wacom->init_work, wacom_init_work);
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002582 INIT_WORK(&wacom->wireless_work, wacom_wireless_work);
2583 INIT_WORK(&wacom->battery_work, wacom_battery_work);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002584 INIT_WORK(&wacom->remote_work, wacom_remote_work);
Benjamin Tissoires4082da82017-02-14 21:27:18 -08002585 INIT_WORK(&wacom->mode_change_work, wacom_mode_change_work);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002586
2587 /* ask for the report descriptor to be loaded by HID */
2588 error = hid_parse(hdev);
2589 if (error) {
2590 hid_err(hdev, "parse failed\n");
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002591 goto fail;
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002592 }
2593
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002594 error = wacom_parse_and_register(wacom, false);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002595 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002596 goto fail;
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002597
2598 if (hdev->bus == BUS_BLUETOOTH) {
2599 error = device_create_file(&hdev->dev, &dev_attr_speed);
2600 if (error)
2601 hid_warn(hdev,
2602 "can't create sysfs speed attribute err: %d\n",
2603 error);
2604 }
2605
2606 return 0;
2607
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002608fail:
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002609 hid_set_drvdata(hdev, NULL);
Dmitry Torokhov50141862007-04-12 01:33:39 -04002610 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07002611}
2612
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002613static void wacom_remove(struct hid_device *hdev)
Ping Cheng3bea7332006-07-13 18:01:36 -07002614{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002615 struct wacom *wacom = hid_get_drvdata(hdev);
Benjamin Tissoiresf6205162016-02-12 17:27:45 +01002616 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2617 struct wacom_features *features = &wacom_wac->features;
2618
2619 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
2620 hid_hw_close(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -07002621
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002622 hid_hw_stop(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04002623
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01002624 cancel_delayed_work_sync(&wacom->init_work);
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002625 cancel_work_sync(&wacom->wireless_work);
2626 cancel_work_sync(&wacom->battery_work);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002627 cancel_work_sync(&wacom->remote_work);
Benjamin Tissoires4082da82017-02-14 21:27:18 -08002628 cancel_work_sync(&wacom->mode_change_work);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07002629 if (hdev->bus == BUS_BLUETOOTH)
2630 device_remove_file(&hdev->dev, &dev_attr_speed);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002631
Benjamin Tissoiresc0265a942017-01-20 16:20:12 +01002632 /* make sure we don't trigger the LEDs */
2633 wacom_led_groups_release(wacom);
Aaron Armstrong Skomrab6b1f192017-03-06 10:54:58 -08002634
2635 if (wacom->wacom_wac.features.type != REMOTE)
2636 wacom_release_resources(wacom);
Benjamin Tissoires5b779fc2017-01-20 16:20:11 +01002637
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002638 hid_set_drvdata(hdev, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04002639}
2640
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07002641#ifdef CONFIG_PM
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002642static int wacom_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04002643{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002644 struct wacom *wacom = hid_get_drvdata(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04002645
2646 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002647
2648 /* switch to wacom mode first */
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01002649 _wacom_query_tablet_data(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002650 wacom_led_control(wacom);
2651
Oliver Neukume7224092008-04-15 01:31:57 -04002652 mutex_unlock(&wacom->lock);
2653
2654 return 0;
2655}
2656
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002657static int wacom_reset_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04002658{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002659 return wacom_resume(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04002660}
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07002661#endif /* CONFIG_PM */
Oliver Neukume7224092008-04-15 01:31:57 -04002662
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002663static struct hid_driver wacom_driver = {
Ping Cheng3bea7332006-07-13 18:01:36 -07002664 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08002665 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07002666 .probe = wacom_probe,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002667 .remove = wacom_remove,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002668 .report = wacom_wac_report,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002669#ifdef CONFIG_PM
Oliver Neukume7224092008-04-15 01:31:57 -04002670 .resume = wacom_resume,
2671 .reset_resume = wacom_reset_resume,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002672#endif
2673 .raw_event = wacom_raw_event,
Ping Cheng3bea7332006-07-13 18:01:36 -07002674};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002675module_hid_driver(wacom_driver);
Benjamin Tissoiresf2e0a7d2014-08-06 14:07:49 -07002676
2677MODULE_VERSION(DRIVER_VERSION);
2678MODULE_AUTHOR(DRIVER_AUTHOR);
2679MODULE_DESCRIPTION(DRIVER_DESC);
Grant Grundler7021b602017-01-05 11:07:04 -08002680MODULE_LICENSE("GPL");