blob: 52e85d21e40f2c2c9a2ceca28a094599d5da035a [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
Jason Gerecke83417202017-11-10 11:50:01 -080059static void wacom_wac_queue_insert(struct hid_device *hdev,
60 struct kfifo_rec_ptr_2 *fifo,
61 u8 *raw_data, int size)
62{
63 bool warned = false;
64
65 while (kfifo_avail(fifo) < size) {
66 if (!warned)
67 hid_warn(hdev, "%s: kfifo has filled, starting to drop events\n", __func__);
68 warned = true;
69
70 kfifo_skip(fifo);
71 }
72
73 kfifo_in(fifo, raw_data, size);
74}
75
76static void wacom_wac_queue_flush(struct hid_device *hdev,
77 struct kfifo_rec_ptr_2 *fifo)
78{
79 while (!kfifo_is_empty(fifo)) {
80 u8 buf[WACOM_PKGLEN_MAX];
81 int size;
82 int err;
83
84 size = kfifo_out(fifo, buf, sizeof(buf));
85 err = hid_report_raw_event(hdev, HID_INPUT_REPORT, buf, size, false);
86 if (err) {
87 hid_warn(hdev, "%s: unable to flush event due to error %d\n",
88 __func__, err);
89 }
90 }
91}
92
93static int wacom_wac_pen_serial_enforce(struct hid_device *hdev,
94 struct hid_report *report, u8 *raw_data, int size)
95{
96 struct wacom *wacom = hid_get_drvdata(hdev);
97 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
98 struct wacom_features *features = &wacom_wac->features;
99 bool flush = false;
100 bool insert = false;
101 int i, j;
102
103 if (wacom_wac->serial[0] || !(features->quirks & WACOM_QUIRK_TOOLSERIAL))
104 return 0;
105
106 /* Queue events which have invalid tool type or serial number */
107 for (i = 0; i < report->maxfield; i++) {
108 for (j = 0; j < report->field[i]->maxusage; j++) {
109 struct hid_field *field = report->field[i];
110 struct hid_usage *usage = &field->usage[j];
111 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
112 unsigned int offset;
113 unsigned int size;
114 unsigned int value;
115
116 if (equivalent_usage != HID_DG_INRANGE &&
117 equivalent_usage != HID_DG_TOOLSERIALNUMBER &&
118 equivalent_usage != WACOM_HID_WD_SERIALHI &&
119 equivalent_usage != WACOM_HID_WD_TOOLTYPE)
120 continue;
121
122 offset = field->report_offset;
123 size = field->report_size;
124 value = hid_field_extract(hdev, raw_data+1, offset + j * size, size);
125
126 /* If we go out of range, we need to flush the queue ASAP */
127 if (equivalent_usage == HID_DG_INRANGE)
128 value = !value;
129
130 if (value) {
131 flush = true;
132 switch (equivalent_usage) {
133 case HID_DG_TOOLSERIALNUMBER:
134 wacom_wac->serial[0] = value;
135 break;
136
137 case WACOM_HID_WD_SERIALHI:
138 wacom_wac->serial[0] |= ((__u64)value) << 32;
139 break;
140
141 case WACOM_HID_WD_TOOLTYPE:
142 wacom_wac->id[0] = value;
143 break;
144 }
145 }
146 else {
147 insert = true;
148 }
149 }
150 }
151
152 if (flush)
153 wacom_wac_queue_flush(hdev, &wacom_wac->pen_fifo);
154 else if (insert)
155 wacom_wac_queue_insert(hdev, &wacom_wac->pen_fifo, raw_data, size);
156
157 return insert && !flush;
158}
159
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700160static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
161 u8 *raw_data, int size)
Ping Cheng3bea7332006-07-13 18:01:36 -0700162{
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700163 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -0700164
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700165 if (size > WACOM_PKGLEN_MAX)
166 return 1;
Ping Cheng3bea7332006-07-13 18:01:36 -0700167
Jason Gerecke83417202017-11-10 11:50:01 -0800168 if (wacom_wac_pen_serial_enforce(hdev, report, raw_data, size))
169 return -1;
170
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700171 memcpy(wacom->wacom_wac.data, raw_data, size);
Ping Cheng3bea7332006-07-13 18:01:36 -0700172
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700173 wacom_wac_irq(&wacom->wacom_wac, size);
174
175 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -0700176}
177
Ping Cheng3bea7332006-07-13 18:01:36 -0700178static int wacom_open(struct input_dev *dev)
179{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400180 struct wacom *wacom = input_get_drvdata(dev);
Ping Cheng3bea7332006-07-13 18:01:36 -0700181
Benjamin Tissoiresdff67412014-12-01 11:52:40 -0500182 return hid_hw_open(wacom->hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -0700183}
184
185static void wacom_close(struct input_dev *dev)
186{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400187 struct wacom *wacom = input_get_drvdata(dev);
Ping Cheng3bea7332006-07-13 18:01:36 -0700188
Benjamin Tissoires3dad1882016-07-13 18:05:54 +0200189 /*
190 * wacom->hdev should never be null, but surprisingly, I had the case
191 * once while unplugging the Wacom Wireless Receiver.
192 */
193 if (wacom->hdev)
194 hid_hw_close(wacom->hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -0700195}
196
Chris Bagwell16bf2882012-03-25 23:26:20 -0700197/*
Benjamin Tissoires198fdee2014-07-24 13:03:05 -0700198 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
Jason Gerecke115d5e12012-10-03 17:24:32 -0700199 */
200static int wacom_calc_hid_res(int logical_extents, int physical_extents,
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700201 unsigned unit, int exponent)
Jason Gerecke115d5e12012-10-03 17:24:32 -0700202{
Benjamin Tissoires198fdee2014-07-24 13:03:05 -0700203 struct hid_field field = {
204 .logical_maximum = logical_extents,
205 .physical_maximum = physical_extents,
206 .unit = unit,
207 .unit_exponent = exponent,
208 };
Jason Gerecke115d5e12012-10-03 17:24:32 -0700209
Benjamin Tissoires198fdee2014-07-24 13:03:05 -0700210 return hidinput_calc_abs_res(&field, ABS_X);
Jason Gerecke115d5e12012-10-03 17:24:32 -0700211}
212
Jason Gerecke57832512018-06-25 13:24:35 -0700213static void wacom_hid_usage_quirk(struct hid_device *hdev,
214 struct hid_field *field, struct hid_usage *usage)
215{
216 struct wacom *wacom = hid_get_drvdata(hdev);
217 struct wacom_features *features = &wacom->wacom_wac.features;
218 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
219
220 /*
221 * The Dell Canvas 27 needs to be switched to its vendor-defined
222 * report to provide the best resolution.
223 */
224 if (hdev->vendor == USB_VENDOR_ID_WACOM &&
225 hdev->product == 0x4200 &&
226 field->application == HID_UP_MSVENDOR) {
227 wacom->wacom_wac.mode_report = field->report->id;
228 wacom->wacom_wac.mode_value = 2;
229 }
230
231 /*
232 * ISDv4 devices which predate HID's adoption of the
233 * HID_DG_BARELSWITCH2 usage use 0x000D0000 in its
234 * position instead. We can accurately detect if a
235 * usage with that value should be HID_DG_BARRELSWITCH2
236 * based on the surrounding usages, which have remained
237 * constant across generations.
238 */
239 if (features->type == HID_GENERIC &&
240 usage->hid == 0x000D0000 &&
241 field->application == HID_DG_PEN &&
242 field->physical == HID_DG_STYLUS) {
243 int i = usage->usage_index;
244
245 if (i-4 >= 0 && i+1 < field->maxusage &&
246 field->usage[i-4].hid == HID_DG_TIPSWITCH &&
247 field->usage[i-3].hid == HID_DG_BARRELSWITCH &&
248 field->usage[i-2].hid == HID_DG_ERASER &&
249 field->usage[i-1].hid == HID_DG_INVERT &&
250 field->usage[i+1].hid == HID_DG_INRANGE) {
251 usage->hid = HID_DG_BARRELSWITCH2;
252 }
253 }
254
255 /* 2nd-generation Intuos Pro Large has incorrect Y maximum */
256 if (hdev->vendor == USB_VENDOR_ID_WACOM &&
257 hdev->product == 0x0358 &&
258 WACOM_PEN_FIELD(field) &&
259 equivalent_usage == HID_GD_Y) {
260 field->logical_maximum = 43200;
261 }
262}
263
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700264static void wacom_feature_mapping(struct hid_device *hdev,
265 struct hid_field *field, struct hid_usage *usage)
Chris Bagwell41343612011-10-26 22:32:52 -0700266{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700267 struct wacom *wacom = hid_get_drvdata(hdev);
268 struct wacom_features *features = &wacom->wacom_wac.features;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400269 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -0800270 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400271 u8 *data;
272 int ret;
Aaron Ma3064a032018-02-03 23:57:15 +0800273 u32 n;
Chris Bagwell41343612011-10-26 22:32:52 -0700274
Jason Gerecke57832512018-06-25 13:24:35 -0700275 wacom_hid_usage_quirk(hdev, field, usage);
276
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -0800277 switch (equivalent_usage) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700278 case HID_DG_CONTACTMAX:
279 /* leave touch_max as is if predefined */
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400280 if (!features->touch_max) {
281 /* read manually */
282 data = kzalloc(2, GFP_KERNEL);
283 if (!data)
284 break;
285 data[0] = field->report->id;
286 ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
Jason Gerecke05e8fd92015-05-21 10:44:32 -0700287 data, 2, WAC_CMD_RETRIES);
288 if (ret == 2) {
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400289 features->touch_max = data[1];
Jason Gerecke05e8fd92015-05-21 10:44:32 -0700290 } else {
291 features->touch_max = 16;
292 hid_warn(hdev, "wacom_feature_mapping: "
293 "could not get HID_DG_CONTACTMAX, "
294 "defaulting to %d\n",
295 features->touch_max);
296 }
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400297 kfree(data);
298 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700299 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400300 case HID_DG_INPUTMODE:
301 /* Ignore if value index is out of bounds. */
302 if (usage->usage_index >= field->report_count) {
303 dev_err(&hdev->dev, "HID_DG_INPUTMODE out of range\n");
304 break;
305 }
306
307 hid_data->inputmode = field->report->id;
308 hid_data->inputmode_index = usage->usage_index;
309 break;
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700310
311 case HID_UP_DIGITIZER:
312 if (field->report->id == 0x0B &&
Jason Gerecke8de82282016-10-19 18:03:37 -0700313 (field->application == WACOM_HID_G9_PEN ||
314 field->application == WACOM_HID_G11_PEN)) {
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700315 wacom->wacom_wac.mode_report = field->report->id;
316 wacom->wacom_wac.mode_value = 0;
317 }
318 break;
319
Jason Gereckec9c09582016-10-19 18:03:43 -0700320 case WACOM_HID_WD_DATAMODE:
321 wacom->wacom_wac.mode_report = field->report->id;
322 wacom->wacom_wac.mode_value = 2;
323 break;
324
Jason Gerecke8de82282016-10-19 18:03:37 -0700325 case WACOM_HID_UP_G9:
326 case WACOM_HID_UP_G11:
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700327 if (field->report->id == 0x03 &&
Jason Gerecke8de82282016-10-19 18:03:37 -0700328 (field->application == WACOM_HID_G9_TOUCHSCREEN ||
329 field->application == WACOM_HID_G11_TOUCHSCREEN)) {
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700330 wacom->wacom_wac.mode_report = field->report->id;
331 wacom->wacom_wac.mode_value = 0;
332 }
333 break;
Jason Gerecke345857b2016-10-19 18:03:50 -0700334 case WACOM_HID_WD_OFFSETLEFT:
335 case WACOM_HID_WD_OFFSETTOP:
336 case WACOM_HID_WD_OFFSETRIGHT:
337 case WACOM_HID_WD_OFFSETBOTTOM:
338 /* read manually */
339 n = hid_report_len(field->report);
340 data = hid_alloc_report_buf(field->report, GFP_KERNEL);
341 if (!data)
342 break;
343 data[0] = field->report->id;
344 ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
345 data, n, WAC_CMD_RETRIES);
346 if (ret == n) {
347 ret = hid_report_raw_event(hdev, HID_FEATURE_REPORT,
348 data, n, 0);
349 } else {
350 hid_warn(hdev, "%s: could not retrieve sensor offsets\n",
351 __func__);
352 }
353 kfree(data);
354 break;
Ping Chengf393ee22012-04-29 21:09:17 -0700355 }
356}
357
Chris Bagwell428f8582011-10-26 22:26:59 -0700358/*
359 * Interface Descriptor of wacom devices can be incomplete and
360 * inconsistent so wacom_features table is used to store stylus
361 * device's packet lengths, various maximum values, and tablet
362 * resolution based on product ID's.
363 *
364 * For devices that contain 2 interfaces, wacom_features table is
365 * inaccurate for the touch interface. Since the Interface Descriptor
366 * for touch interfaces has pretty complete data, this function exists
367 * to query tablet for this missing information instead of hard coding in
368 * an additional table.
369 *
370 * A typical Interface Descriptor for a stylus will contain a
371 * boot mouse application collection that is not of interest and this
372 * function will ignore it.
373 *
374 * It also contains a digitizer application collection that also is not
375 * of interest since any information it contains would be duplicate
376 * of what is in wacom_features. Usually it defines a report of an array
377 * of bytes that could be used as max length of the stylus packet returned.
378 * If it happens to define a Digitizer-Stylus Physical Collection then
379 * the X and Y logical values contain valid data but it is ignored.
380 *
381 * A typical Interface Descriptor for a touch interface will contain a
382 * Digitizer-Finger Physical Collection which will define both logical
383 * X/Y maximum as well as the physical size of tablet. Since touch
384 * interfaces haven't supported pressure or distance, this is enough
385 * information to override invalid values in the wacom_features table.
Chris Bagwell41343612011-10-26 22:32:52 -0700386 *
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700387 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
388 * data. We deal with them after returning from this function.
Chris Bagwell428f8582011-10-26 22:26:59 -0700389 */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700390static void wacom_usage_mapping(struct hid_device *hdev,
391 struct hid_field *field, struct hid_usage *usage)
392{
393 struct wacom *wacom = hid_get_drvdata(hdev);
394 struct wacom_features *features = &wacom->wacom_wac.features;
Benjamin Tissoiresd97a5522015-01-05 16:32:12 -0500395 bool finger = WACOM_FINGER_FIELD(field);
396 bool pen = WACOM_PEN_FIELD(field);
Ping Cheng418b5732018-06-25 13:24:36 -0700397 unsigned equivalent_usage = wacom_equivalent_usage(usage->hid);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700398
399 /*
400 * Requiring Stylus Usage will ignore boot mouse
401 * X/Y values and some cases of invalid Digitizer X/Y
402 * values commonly reported.
403 */
Jason Gerecke042628a2015-04-30 17:51:54 -0700404 if (pen)
Jason Gereckeaa86b182015-06-15 18:01:42 -0700405 features->device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke042628a2015-04-30 17:51:54 -0700406 else if (finger)
Jason Gereckeaa86b182015-06-15 18:01:42 -0700407 features->device_type |= WACOM_DEVICETYPE_TOUCH;
Jason Gerecke042628a2015-04-30 17:51:54 -0700408 else
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700409 return;
410
Jason Gerecke57832512018-06-25 13:24:35 -0700411 wacom_hid_usage_quirk(hdev, field, usage);
Jason Gerecked471b6b2018-06-12 13:42:46 -0700412
Ping Cheng418b5732018-06-25 13:24:36 -0700413 switch (equivalent_usage) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700414 case HID_GD_X:
415 features->x_max = field->logical_maximum;
416 if (finger) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700417 features->x_phy = field->physical_maximum;
Ping Cheng3b164a02015-09-23 09:59:10 -0700418 if ((features->type != BAMBOO_PT) &&
419 (features->type != BAMBOO_TOUCH)) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700420 features->unit = field->unit;
421 features->unitExpo = field->unit_exponent;
422 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700423 }
424 break;
425 case HID_GD_Y:
426 features->y_max = field->logical_maximum;
427 if (finger) {
428 features->y_phy = field->physical_maximum;
Ping Cheng3b164a02015-09-23 09:59:10 -0700429 if ((features->type != BAMBOO_PT) &&
430 (features->type != BAMBOO_TOUCH)) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700431 features->unit = field->unit;
432 features->unitExpo = field->unit_exponent;
433 }
434 }
435 break;
436 case HID_DG_TIPPRESSURE:
437 if (pen)
438 features->pressure_max = field->logical_maximum;
439 break;
440 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -0400441
442 if (features->type == HID_GENERIC)
443 wacom_wac_usage_mapping(hdev, field, usage);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700444}
445
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800446static void wacom_post_parse_hid(struct hid_device *hdev,
447 struct wacom_features *features)
448{
449 struct wacom *wacom = hid_get_drvdata(hdev);
450 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
451
452 if (features->type == HID_GENERIC) {
453 /* Any last-minute generic device setup */
Benjamin Tissoires4082da82017-02-14 21:27:18 -0800454 if (wacom_wac->has_mode_change) {
455 if (wacom_wac->is_direct_mode)
456 features->device_type |= WACOM_DEVICETYPE_DIRECT;
457 else
458 features->device_type &= ~WACOM_DEVICETYPE_DIRECT;
459 }
460
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800461 if (features->touch_max > 1) {
Aaron Armstrong Skomraac2423c2017-01-25 12:08:40 -0800462 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
463 input_mt_init_slots(wacom_wac->touch_input,
464 wacom_wac->features.touch_max,
465 INPUT_MT_DIRECT);
466 else
467 input_mt_init_slots(wacom_wac->touch_input,
468 wacom_wac->features.touch_max,
469 INPUT_MT_POINTER);
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800470 }
471 }
472}
473
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700474static void wacom_parse_hid(struct hid_device *hdev,
Ping Chengec67bbe2009-12-15 00:35:24 -0800475 struct wacom_features *features)
Ping Cheng545f4e92008-11-24 11:44:27 -0500476{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700477 struct hid_report_enum *rep_enum;
478 struct hid_report *hreport;
479 int i, j;
Ping Cheng545f4e92008-11-24 11:44:27 -0500480
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700481 /* check features first */
482 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
483 list_for_each_entry(hreport, &rep_enum->report_list, list) {
484 for (i = 0; i < hreport->maxfield; i++) {
485 /* Ignore if report count is out of bounds. */
486 if (hreport->field[i]->report_count < 1)
487 continue;
Ping Cheng545f4e92008-11-24 11:44:27 -0500488
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700489 for (j = 0; j < hreport->field[i]->maxusage; j++) {
490 wacom_feature_mapping(hdev, hreport->field[i],
491 hreport->field[i]->usage + j);
Ping Cheng545f4e92008-11-24 11:44:27 -0500492 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500493 }
494 }
495
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700496 /* now check the input usages */
497 rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
498 list_for_each_entry(hreport, &rep_enum->report_list, list) {
499
500 if (!hreport->maxfield)
501 continue;
502
503 for (i = 0; i < hreport->maxfield; i++)
504 for (j = 0; j < hreport->field[i]->maxusage; j++)
505 wacom_usage_mapping(hdev, hreport->field[i],
506 hreport->field[i]->usage + j);
507 }
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800508
509 wacom_post_parse_hid(hdev, features);
Ping Cheng545f4e92008-11-24 11:44:27 -0500510}
511
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400512static int wacom_hid_set_device_mode(struct hid_device *hdev)
513{
514 struct wacom *wacom = hid_get_drvdata(hdev);
515 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
516 struct hid_report *r;
517 struct hid_report_enum *re;
518
519 if (hid_data->inputmode < 0)
520 return 0;
521
522 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
523 r = re->report_id_hash[hid_data->inputmode];
524 if (r) {
525 r->field[0]->value[hid_data->inputmode_index] = 2;
526 hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
527 }
528 return 0;
529}
530
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700531static int wacom_set_device_mode(struct hid_device *hdev,
532 struct wacom_wac *wacom_wac)
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700533{
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700534 u8 *rep_data;
535 struct hid_report *r;
536 struct hid_report_enum *re;
Aaron Ma3064a032018-02-03 23:57:15 +0800537 u32 length;
Jason Gereckefe494bc2012-10-03 17:25:35 -0700538 int error = -ENOMEM, limit = 0;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700539
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700540 if (wacom_wac->mode_report < 0)
541 return 0;
542
543 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
544 r = re->report_id_hash[wacom_wac->mode_report];
545 if (!r)
546 return -EINVAL;
547
548 rep_data = hid_alloc_report_buf(r, GFP_KERNEL);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700549 if (!rep_data)
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700550 return -ENOMEM;
551
552 length = hid_report_len(r);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700553
Jason Gereckefe494bc2012-10-03 17:25:35 -0700554 do {
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700555 rep_data[0] = wacom_wac->mode_report;
556 rep_data[1] = wacom_wac->mode_value;
Chris Bagwell9937c022013-01-23 19:37:34 -0800557
Przemo Firszt296b7372014-08-06 14:00:38 -0700558 error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
559 length, 1);
Benjamin Tissoires3cb83152014-07-24 12:47:47 -0700560 if (error >= 0)
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700561 error = wacom_get_report(hdev, HID_FEATURE_REPORT,
Ping Chengc64d8832014-09-10 12:41:04 -0700562 rep_data, length, 1);
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700563 } while (error >= 0 &&
564 rep_data[1] != wacom_wac->mode_report &&
565 limit++ < WAC_MSG_RETRIES);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700566
567 kfree(rep_data);
568
569 return error < 0 ? error : 0;
570}
571
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700572static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
573 struct wacom_features *features)
574{
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700575 struct wacom *wacom = hid_get_drvdata(hdev);
576 int ret;
577 u8 rep_data[2];
578
579 switch (features->type) {
580 case GRAPHIRE_BT:
581 rep_data[0] = 0x03;
582 rep_data[1] = 0x00;
Przemo Firszt296b7372014-08-06 14:00:38 -0700583 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
584 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700585
586 if (ret >= 0) {
587 rep_data[0] = speed == 0 ? 0x05 : 0x06;
588 rep_data[1] = 0x00;
589
590 ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700591 rep_data, 2, 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700592
593 if (ret >= 0) {
594 wacom->wacom_wac.bt_high_speed = speed;
595 return 0;
596 }
597 }
598
599 /*
600 * Note that if the raw queries fail, it's not a hard failure
601 * and it is safe to continue
602 */
603 hid_warn(hdev, "failed to poke device, command %d, err %d\n",
604 rep_data[0], ret);
605 break;
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700606 case INTUOS4WL:
607 if (speed == 1)
608 wacom->wacom_wac.bt_features &= ~0x20;
609 else
610 wacom->wacom_wac.bt_features |= 0x20;
611
612 rep_data[0] = 0x03;
613 rep_data[1] = wacom->wacom_wac.bt_features;
614
Przemo Firszt296b7372014-08-06 14:00:38 -0700615 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
616 1);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700617 if (ret >= 0)
618 wacom->wacom_wac.bt_high_speed = speed;
619 break;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700620 }
621
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700622 return 0;
623}
624
Jason Gereckefe494bc2012-10-03 17:25:35 -0700625/*
626 * Switch the tablet into its most-capable mode. Wacom tablets are
627 * typically configured to power-up in a mode which sends mouse-like
628 * reports to the OS. To get absolute position, pressure data, etc.
629 * from the tablet, it is necessary to switch the tablet out of this
630 * mode and into one which sends the full range of tablet data.
631 */
Benjamin Tissoiresa544c612017-01-20 16:20:13 +0100632static int _wacom_query_tablet_data(struct wacom *wacom)
Jason Gereckefe494bc2012-10-03 17:25:35 -0700633{
Benjamin Tissoiresa544c612017-01-20 16:20:13 +0100634 struct hid_device *hdev = wacom->hdev;
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700635 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Benjamin Tissoiresa544c612017-01-20 16:20:13 +0100636 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700637
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700638 if (hdev->bus == BUS_BLUETOOTH)
639 return wacom_bt_query_tablet_data(hdev, 1, features);
640
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700641 if (features->type != HID_GENERIC) {
642 if (features->device_type & WACOM_DEVICETYPE_TOUCH) {
643 if (features->type > TABLETPC) {
644 /* MT Tablet PC touch */
645 wacom_wac->mode_report = 3;
646 wacom_wac->mode_value = 4;
647 } else if (features->type == WACOM_24HDT) {
648 wacom_wac->mode_report = 18;
649 wacom_wac->mode_value = 2;
650 } else if (features->type == WACOM_27QHDT) {
651 wacom_wac->mode_report = 131;
652 wacom_wac->mode_value = 2;
653 } else if (features->type == BAMBOO_PAD) {
654 wacom_wac->mode_report = 2;
655 wacom_wac->mode_value = 2;
656 }
657 } else if (features->device_type & WACOM_DEVICETYPE_PEN) {
658 if (features->type <= BAMBOO_PT) {
659 wacom_wac->mode_report = 2;
660 wacom_wac->mode_value = 2;
661 }
Jason Gereckefe494bc2012-10-03 17:25:35 -0700662 }
663 }
664
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700665 wacom_set_device_mode(hdev, wacom_wac);
666
667 if (features->type == HID_GENERIC)
668 return wacom_hid_set_device_mode(hdev);
669
Jason Gereckefe494bc2012-10-03 17:25:35 -0700670 return 0;
671}
672
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700673static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
Ping Cheng19635182012-04-29 21:09:18 -0700674 struct wacom_features *features)
Ping Chengec67bbe2009-12-15 00:35:24 -0800675{
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700676 struct wacom *wacom = hid_get_drvdata(hdev);
677 struct usb_interface *intf = wacom->intf;
Ping Chengec67bbe2009-12-15 00:35:24 -0800678
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700679 /* default features */
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700680 features->x_fuzz = 4;
681 features->y_fuzz = 4;
682 features->pressure_fuzz = 0;
Jason Gereckebef7e202016-04-22 14:30:53 -0700683 features->distance_fuzz = 1;
684 features->tilt_fuzz = 1;
Ping Chengec67bbe2009-12-15 00:35:24 -0800685
Chris Bagwelld3825d52012-03-25 23:26:11 -0700686 /*
687 * The wireless device HID is basic and layout conflicts with
688 * other tablets (monitor and touch interface can look like pen).
689 * Skip the query for this type and modify defaults based on
690 * interface number.
691 */
692 if (features->type == WIRELESS) {
Jason Gerecke3f14a632015-08-03 10:17:05 -0700693 if (intf->cur_altsetting->desc.bInterfaceNumber == 0)
Jason Gereckeccad85c2015-08-03 10:17:04 -0700694 features->device_type = WACOM_DEVICETYPE_WL_MONITOR;
Jason Gerecke3f14a632015-08-03 10:17:05 -0700695 else
Jason Gereckeaa86b182015-06-15 18:01:42 -0700696 features->device_type = WACOM_DEVICETYPE_NONE;
Jason Gerecke3f14a632015-08-03 10:17:05 -0700697 return;
Chris Bagwelld3825d52012-03-25 23:26:11 -0700698 }
699
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700700 wacom_parse_hid(hdev, features);
Ping Chengec67bbe2009-12-15 00:35:24 -0800701}
702
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700703struct wacom_hdev_data {
Ping Cheng4492eff2010-03-19 22:18:15 -0700704 struct list_head list;
705 struct kref kref;
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700706 struct hid_device *dev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700707 struct wacom_shared shared;
708};
709
710static LIST_HEAD(wacom_udev_list);
711static DEFINE_MUTEX(wacom_udev_list_lock);
712
Jason Gerecke41372d52016-08-08 12:06:30 -0700713static bool compare_device_paths(struct hid_device *hdev_a,
714 struct hid_device *hdev_b, char separator)
715{
716 int n1 = strrchr(hdev_a->phys, separator) - hdev_a->phys;
717 int n2 = strrchr(hdev_b->phys, separator) - hdev_b->phys;
718
719 if (n1 != n2 || n1 <= 0 || n2 <= 0)
720 return false;
721
722 return !strncmp(hdev_a->phys, hdev_b->phys, n1);
723}
724
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700725static bool wacom_are_sibling(struct hid_device *hdev,
726 struct hid_device *sibling)
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700727{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700728 struct wacom *wacom = hid_get_drvdata(hdev);
729 struct wacom_features *features = &wacom->wacom_wac.features;
Jason Gerecke41372d52016-08-08 12:06:30 -0700730 struct wacom *sibling_wacom = hid_get_drvdata(sibling);
731 struct wacom_features *sibling_features = &sibling_wacom->wacom_wac.features;
732 __u32 oVid = features->oVid ? features->oVid : hdev->vendor;
733 __u32 oPid = features->oPid ? features->oPid : hdev->product;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700734
Jason Gerecke41372d52016-08-08 12:06:30 -0700735 /* The defined oVid/oPid must match that of the sibling */
736 if (features->oVid != HID_ANY_ID && sibling->vendor != oVid)
737 return false;
738 if (features->oPid != HID_ANY_ID && sibling->product != oPid)
739 return false;
740
741 /*
742 * Devices with the same VID/PID must share the same physical
743 * device path, while those with different VID/PID must share
744 * the same physical parent device path.
745 */
746 if (hdev->vendor == sibling->vendor && hdev->product == sibling->product) {
747 if (!compare_device_paths(hdev, sibling, '/'))
748 return false;
749 } else {
750 if (!compare_device_paths(hdev, sibling, '.'))
751 return false;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700752 }
753
Jason Gerecke41372d52016-08-08 12:06:30 -0700754 /* Skip the remaining heuristics unless you are a HID_GENERIC device */
755 if (features->type != HID_GENERIC)
756 return true;
757
758 /*
759 * Direct-input devices may not be siblings of indirect-input
760 * devices.
761 */
762 if ((features->device_type & WACOM_DEVICETYPE_DIRECT) &&
763 !(sibling_features->device_type & WACOM_DEVICETYPE_DIRECT))
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700764 return false;
765
Jason Gerecke41372d52016-08-08 12:06:30 -0700766 /*
767 * Indirect-input devices may not be siblings of direct-input
768 * devices.
769 */
770 if (!(features->device_type & WACOM_DEVICETYPE_DIRECT) &&
771 (sibling_features->device_type & WACOM_DEVICETYPE_DIRECT))
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700772 return false;
773
Jason Gerecke41372d52016-08-08 12:06:30 -0700774 /* Pen devices may only be siblings of touch devices */
775 if ((features->device_type & WACOM_DEVICETYPE_PEN) &&
776 !(sibling_features->device_type & WACOM_DEVICETYPE_TOUCH))
777 return false;
778
779 /* Touch devices may only be siblings of pen devices */
780 if ((features->device_type & WACOM_DEVICETYPE_TOUCH) &&
781 !(sibling_features->device_type & WACOM_DEVICETYPE_PEN))
782 return false;
783
784 /*
785 * No reason could be found for these two devices to NOT be
786 * siblings, so there's a good chance they ARE siblings
787 */
788 return true;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700789}
790
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700791static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700792{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700793 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700794
Jason Gerecke41372d52016-08-08 12:06:30 -0700795 /* Try to find an already-probed interface from the same device */
796 list_for_each_entry(data, &wacom_udev_list, list) {
Jason Gerecke2a5e5972017-09-18 09:27:42 -0700797 if (compare_device_paths(hdev, data->dev, '/')) {
798 kref_get(&data->kref);
Jason Gerecke41372d52016-08-08 12:06:30 -0700799 return data;
Jason Gerecke2a5e5972017-09-18 09:27:42 -0700800 }
Jason Gerecke41372d52016-08-08 12:06:30 -0700801 }
802
803 /* Fallback to finding devices that appear to be "siblings" */
Ping Cheng4492eff2010-03-19 22:18:15 -0700804 list_for_each_entry(data, &wacom_udev_list, list) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700805 if (wacom_are_sibling(hdev, data->dev)) {
Ping Cheng4492eff2010-03-19 22:18:15 -0700806 kref_get(&data->kref);
807 return data;
808 }
809 }
810
811 return NULL;
812}
813
Benjamin Tissoires1c817c82016-07-13 18:05:59 +0200814static void wacom_release_shared_data(struct kref *kref)
815{
816 struct wacom_hdev_data *data =
817 container_of(kref, struct wacom_hdev_data, kref);
818
819 mutex_lock(&wacom_udev_list_lock);
820 list_del(&data->list);
821 mutex_unlock(&wacom_udev_list_lock);
822
823 kfree(data);
824}
825
826static void wacom_remove_shared_data(void *res)
827{
828 struct wacom *wacom = res;
829 struct wacom_hdev_data *data;
830 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
831
832 if (wacom_wac->shared) {
833 data = container_of(wacom_wac->shared, struct wacom_hdev_data,
834 shared);
835
836 if (wacom_wac->shared->touch == wacom->hdev)
837 wacom_wac->shared->touch = NULL;
838 else if (wacom_wac->shared->pen == wacom->hdev)
839 wacom_wac->shared->pen = NULL;
840
841 kref_put(&data->kref, wacom_release_shared_data);
842 wacom_wac->shared = NULL;
843 }
844}
845
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700846static int wacom_add_shared_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700847{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700848 struct wacom *wacom = hid_get_drvdata(hdev);
849 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
850 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700851 int retval = 0;
852
853 mutex_lock(&wacom_udev_list_lock);
854
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700855 data = wacom_get_hdev_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -0700856 if (!data) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700857 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
Ping Cheng4492eff2010-03-19 22:18:15 -0700858 if (!data) {
859 retval = -ENOMEM;
860 goto out;
861 }
862
863 kref_init(&data->kref);
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700864 data->dev = hdev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700865 list_add_tail(&data->list, &wacom_udev_list);
866 }
867
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700868 wacom_wac->shared = &data->shared;
Ping Cheng4492eff2010-03-19 22:18:15 -0700869
Benjamin Tissoires1c817c82016-07-13 18:05:59 +0200870 retval = devm_add_action(&hdev->dev, wacom_remove_shared_data, wacom);
871 if (retval) {
872 mutex_unlock(&wacom_udev_list_lock);
873 wacom_remove_shared_data(wacom);
874 return retval;
875 }
876
Jason Gereckea9ce7852017-01-17 15:38:58 -0800877 if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)
878 wacom_wac->shared->touch = hdev;
879 else if (wacom_wac->features.device_type & WACOM_DEVICETYPE_PEN)
880 wacom_wac->shared->pen = hdev;
881
Ping Cheng4492eff2010-03-19 22:18:15 -0700882out:
883 mutex_unlock(&wacom_udev_list_lock);
884 return retval;
885}
886
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700887static int wacom_led_control(struct wacom *wacom)
888{
889 unsigned char *buf;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700890 int retval;
Ping Cheng912ca212014-09-10 12:41:31 -0700891 unsigned char report_id = WAC_CMD_LED_CONTROL;
892 int buf_size = 9;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700893
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200894 if (!wacom->led.groups)
895 return -ENOTSUPP;
896
Aaron Armstrong Skomra74aebed62017-08-28 14:15:39 -0700897 if (wacom->wacom_wac.features.type == REMOTE)
898 return -ENOTSUPP;
899
Ping Cheng912ca212014-09-10 12:41:31 -0700900 if (wacom->wacom_wac.pid) { /* wireless connected */
901 report_id = WAC_CMD_WL_LED_CONTROL;
902 buf_size = 13;
903 }
Jason Gerecke4922cd22017-01-25 12:08:37 -0800904 else if (wacom->wacom_wac.features.type == INTUOSP2_BT) {
905 report_id = WAC_CMD_WL_INTUOSP2;
906 buf_size = 51;
907 }
Ping Cheng912ca212014-09-10 12:41:31 -0700908 buf = kzalloc(buf_size, GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700909 if (!buf)
910 return -ENOMEM;
911
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -0800912 if (wacom->wacom_wac.features.type == HID_GENERIC) {
913 buf[0] = WAC_CMD_LED_CONTROL_GENERIC;
914 buf[1] = wacom->led.llv;
915 buf[2] = wacom->led.groups[0].select & 0x03;
916
917 } else if ((wacom->wacom_wac.features.type >= INTUOS5S &&
918 wacom->wacom_wac.features.type <= INTUOSPL)) {
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700919 /*
920 * Touch Ring and crop mark LED luminance may take on
921 * one of four values:
922 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
923 */
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200924 int ring_led = wacom->led.groups[0].select & 0x03;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700925 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
926 int crop_lum = 0;
Ping Cheng912ca212014-09-10 12:41:31 -0700927 unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
Ping Cheng09e7d942011-10-04 23:51:14 -0700928
Ping Cheng912ca212014-09-10 12:41:31 -0700929 buf[0] = report_id;
930 if (wacom->wacom_wac.pid) {
931 wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
932 buf, buf_size, WAC_CMD_RETRIES);
933 buf[0] = report_id;
934 buf[4] = led_bits;
935 } else
936 buf[1] = led_bits;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700937 }
Jason Gerecke4922cd22017-01-25 12:08:37 -0800938 else if (wacom->wacom_wac.features.type == INTUOSP2_BT) {
939 buf[0] = report_id;
940 buf[4] = 100; // Power Connection LED (ORANGE)
941 buf[5] = 100; // BT Connection LED (BLUE)
942 buf[6] = 100; // Paper Mode (RED?)
943 buf[7] = 100; // Paper Mode (GREEN?)
944 buf[8] = 100; // Paper Mode (BLUE?)
945 buf[9] = wacom->led.llv;
946 buf[10] = wacom->led.groups[0].select & 0x03;
947 }
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700948 else {
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200949 int led = wacom->led.groups[0].select | 0x4;
Ping Cheng09e7d942011-10-04 23:51:14 -0700950
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700951 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
952 wacom->wacom_wac.features.type == WACOM_24HD)
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +0200953 led |= (wacom->led.groups[1].select << 4) | 0x40;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700954
Ping Cheng912ca212014-09-10 12:41:31 -0700955 buf[0] = report_id;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700956 buf[1] = led;
957 buf[2] = wacom->led.llv;
958 buf[3] = wacom->led.hlv;
959 buf[4] = wacom->led.img_lum;
960 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700961
Ping Cheng912ca212014-09-10 12:41:31 -0700962 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
Przemo Firszt296b7372014-08-06 14:00:38 -0700963 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700964 kfree(buf);
965
966 return retval;
967}
968
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700969static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
970 const unsigned len, const void *img)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700971{
972 unsigned char *buf;
973 int i, retval;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700974 const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700975
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700976 buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700977 if (!buf)
978 return -ENOMEM;
979
980 /* Send 'start' command */
981 buf[0] = WAC_CMD_ICON_START;
982 buf[1] = 1;
Przemo Firszt296b7372014-08-06 14:00:38 -0700983 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
984 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700985 if (retval < 0)
986 goto out;
987
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700988 buf[0] = xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700989 buf[1] = button_id & 0x07;
990 for (i = 0; i < 4; i++) {
991 buf[2] = i;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700992 memcpy(buf + 3, img + i * chunk_len, chunk_len);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700993
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700994 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700995 buf, chunk_len + 3, WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700996 if (retval < 0)
997 break;
998 }
999
1000 /* Send 'stop' */
1001 buf[0] = WAC_CMD_ICON_START;
1002 buf[1] = 0;
Przemo Firszt296b7372014-08-06 14:00:38 -07001003 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
1004 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001005
1006out:
1007 kfree(buf);
1008 return retval;
1009}
1010
Ping Cheng09e7d942011-10-04 23:51:14 -07001011static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001012 const char *buf, size_t count)
1013{
Geliang Tangee79a8f2015-12-27 17:25:21 +08001014 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001015 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001016 unsigned int id;
1017 int err;
1018
1019 err = kstrtouint(buf, 10, &id);
1020 if (err)
1021 return err;
1022
1023 mutex_lock(&wacom->lock);
1024
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001025 wacom->led.groups[set_id].select = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001026 err = wacom_led_control(wacom);
1027
1028 mutex_unlock(&wacom->lock);
1029
1030 return err < 0 ? err : count;
1031}
1032
Ping Cheng09e7d942011-10-04 23:51:14 -07001033#define DEVICE_LED_SELECT_ATTR(SET_ID) \
1034static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
1035 struct device_attribute *attr, const char *buf, size_t count) \
1036{ \
1037 return wacom_led_select_store(dev, SET_ID, buf, count); \
1038} \
Ping Cheng04c59ab2011-10-04 23:51:49 -07001039static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
1040 struct device_attribute *attr, char *buf) \
1041{ \
Geliang Tangee79a8f2015-12-27 17:25:21 +08001042 struct hid_device *hdev = to_hid_device(dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001043 struct wacom *wacom = hid_get_drvdata(hdev); \
Ping Cheng37449ad2014-09-10 12:40:30 -07001044 return scnprintf(buf, PAGE_SIZE, "%d\n", \
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001045 wacom->led.groups[SET_ID].select); \
Ping Cheng04c59ab2011-10-04 23:51:49 -07001046} \
Ping Chenge0984bc2014-09-10 12:40:05 -07001047static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
Ping Cheng04c59ab2011-10-04 23:51:49 -07001048 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -07001049 wacom_led##SET_ID##_select_store)
1050
1051DEVICE_LED_SELECT_ATTR(0);
1052DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001053
1054static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
1055 const char *buf, size_t count)
1056{
1057 unsigned int value;
1058 int err;
1059
1060 err = kstrtouint(buf, 10, &value);
1061 if (err)
1062 return err;
1063
1064 mutex_lock(&wacom->lock);
1065
1066 *dest = value & 0x7f;
1067 err = wacom_led_control(wacom);
1068
1069 mutex_unlock(&wacom->lock);
1070
1071 return err < 0 ? err : count;
1072}
1073
1074#define DEVICE_LUMINANCE_ATTR(name, field) \
1075static ssize_t wacom_##name##_luminance_store(struct device *dev, \
1076 struct device_attribute *attr, const char *buf, size_t count) \
1077{ \
Geliang Tangee79a8f2015-12-27 17:25:21 +08001078 struct hid_device *hdev = to_hid_device(dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001079 struct wacom *wacom = hid_get_drvdata(hdev); \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001080 \
1081 return wacom_luminance_store(wacom, &wacom->led.field, \
1082 buf, count); \
1083} \
Ping Cheng37449ad2014-09-10 12:40:30 -07001084static ssize_t wacom_##name##_luminance_show(struct device *dev, \
1085 struct device_attribute *attr, char *buf) \
1086{ \
1087 struct wacom *wacom = dev_get_drvdata(dev); \
1088 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
1089} \
Ping Chenge0984bc2014-09-10 12:40:05 -07001090static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
Ping Cheng37449ad2014-09-10 12:40:30 -07001091 wacom_##name##_luminance_show, \
1092 wacom_##name##_luminance_store)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001093
1094DEVICE_LUMINANCE_ATTR(status0, llv);
1095DEVICE_LUMINANCE_ATTR(status1, hlv);
1096DEVICE_LUMINANCE_ATTR(buttons, img_lum);
1097
1098static ssize_t wacom_button_image_store(struct device *dev, int button_id,
1099 const char *buf, size_t count)
1100{
Geliang Tangee79a8f2015-12-27 17:25:21 +08001101 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001102 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001103 int err;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -07001104 unsigned len;
1105 u8 xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001106
Benjamin Tissoires849e2f02014-08-06 13:58:25 -07001107 if (hdev->bus == BUS_BLUETOOTH) {
1108 len = 256;
1109 xfer_id = WAC_CMD_ICON_BT_XFER;
1110 } else {
1111 len = 1024;
1112 xfer_id = WAC_CMD_ICON_XFER;
1113 }
1114
1115 if (count != len)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001116 return -EINVAL;
1117
1118 mutex_lock(&wacom->lock);
1119
Benjamin Tissoires849e2f02014-08-06 13:58:25 -07001120 err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001121
1122 mutex_unlock(&wacom->lock);
1123
1124 return err < 0 ? err : count;
1125}
1126
1127#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
1128static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
1129 struct device_attribute *attr, const char *buf, size_t count) \
1130{ \
1131 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
1132} \
Ping Chenge0984bc2014-09-10 12:40:05 -07001133static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001134 NULL, wacom_btnimg##BUTTON_ID##_store)
1135
1136DEVICE_BTNIMG_ATTR(0);
1137DEVICE_BTNIMG_ATTR(1);
1138DEVICE_BTNIMG_ATTR(2);
1139DEVICE_BTNIMG_ATTR(3);
1140DEVICE_BTNIMG_ATTR(4);
1141DEVICE_BTNIMG_ATTR(5);
1142DEVICE_BTNIMG_ATTR(6);
1143DEVICE_BTNIMG_ATTR(7);
1144
Ping Cheng09e7d942011-10-04 23:51:14 -07001145static struct attribute *cintiq_led_attrs[] = {
1146 &dev_attr_status_led0_select.attr,
1147 &dev_attr_status_led1_select.attr,
1148 NULL
1149};
1150
1151static struct attribute_group cintiq_led_attr_group = {
1152 .name = "wacom_led",
1153 .attrs = cintiq_led_attrs,
1154};
1155
1156static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001157 &dev_attr_status0_luminance.attr,
1158 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -07001159 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001160 &dev_attr_buttons_luminance.attr,
1161 &dev_attr_button0_rawimg.attr,
1162 &dev_attr_button1_rawimg.attr,
1163 &dev_attr_button2_rawimg.attr,
1164 &dev_attr_button3_rawimg.attr,
1165 &dev_attr_button4_rawimg.attr,
1166 &dev_attr_button5_rawimg.attr,
1167 &dev_attr_button6_rawimg.attr,
1168 &dev_attr_button7_rawimg.attr,
1169 NULL
1170};
1171
Ping Cheng09e7d942011-10-04 23:51:14 -07001172static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001173 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -07001174 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001175};
1176
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001177static struct attribute *intuos5_led_attrs[] = {
1178 &dev_attr_status0_luminance.attr,
1179 &dev_attr_status_led0_select.attr,
1180 NULL
1181};
1182
1183static struct attribute_group intuos5_led_attr_group = {
1184 .name = "wacom_led",
1185 .attrs = intuos5_led_attrs,
1186};
1187
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001188static struct attribute *generic_led_attrs[] = {
1189 &dev_attr_status0_luminance.attr,
1190 &dev_attr_status_led0_select.attr,
1191 NULL
1192};
1193
1194static struct attribute_group generic_led_attr_group = {
1195 .name = "wacom_led",
1196 .attrs = generic_led_attrs,
1197};
1198
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001199struct wacom_sysfs_group_devres {
1200 struct attribute_group *group;
1201 struct kobject *root;
1202};
1203
1204static void wacom_devm_sysfs_group_release(struct device *dev, void *res)
1205{
1206 struct wacom_sysfs_group_devres *devres = res;
1207 struct kobject *kobj = devres->root;
1208
1209 dev_dbg(dev, "%s: dropping reference to %s\n",
1210 __func__, devres->group->name);
1211 sysfs_remove_group(kobj, devres->group);
1212}
1213
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02001214static int __wacom_devm_sysfs_create_group(struct wacom *wacom,
1215 struct kobject *root,
1216 struct attribute_group *group)
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001217{
1218 struct wacom_sysfs_group_devres *devres;
1219 int error;
1220
1221 devres = devres_alloc(wacom_devm_sysfs_group_release,
1222 sizeof(struct wacom_sysfs_group_devres),
1223 GFP_KERNEL);
1224 if (!devres)
1225 return -ENOMEM;
1226
1227 devres->group = group;
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02001228 devres->root = root;
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001229
1230 error = sysfs_create_group(devres->root, group);
Arvind Yadav097b8f62018-04-24 13:33:03 +05301231 if (error) {
1232 devres_free(devres);
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001233 return error;
Arvind Yadav097b8f62018-04-24 13:33:03 +05301234 }
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001235
1236 devres_add(&wacom->hdev->dev, devres);
1237
1238 return 0;
1239}
1240
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02001241static int wacom_devm_sysfs_create_group(struct wacom *wacom,
1242 struct attribute_group *group)
1243{
1244 return __wacom_devm_sysfs_create_group(wacom, &wacom->hdev->dev.kobj,
1245 group);
1246}
1247
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001248enum led_brightness wacom_leds_brightness_get(struct wacom_led *led)
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001249{
1250 struct wacom *wacom = led->wacom;
1251
1252 if (wacom->led.max_hlv)
1253 return led->hlv * LED_FULL / wacom->led.max_hlv;
1254
1255 if (wacom->led.max_llv)
1256 return led->llv * LED_FULL / wacom->led.max_llv;
1257
1258 /* device doesn't support brightness tuning */
1259 return LED_FULL;
1260}
1261
1262static enum led_brightness __wacom_led_brightness_get(struct led_classdev *cdev)
1263{
1264 struct wacom_led *led = container_of(cdev, struct wacom_led, cdev);
1265 struct wacom *wacom = led->wacom;
1266
1267 if (wacom->led.groups[led->group].select != led->id)
1268 return LED_OFF;
1269
1270 return wacom_leds_brightness_get(led);
1271}
1272
1273static int wacom_led_brightness_set(struct led_classdev *cdev,
1274 enum led_brightness brightness)
1275{
1276 struct wacom_led *led = container_of(cdev, struct wacom_led, cdev);
1277 struct wacom *wacom = led->wacom;
1278 int error;
1279
1280 mutex_lock(&wacom->lock);
1281
1282 if (!wacom->led.groups || (brightness == LED_OFF &&
1283 wacom->led.groups[led->group].select != led->id)) {
1284 error = 0;
1285 goto out;
1286 }
1287
1288 led->llv = wacom->led.llv = wacom->led.max_llv * brightness / LED_FULL;
1289 led->hlv = wacom->led.hlv = wacom->led.max_hlv * brightness / LED_FULL;
1290
1291 wacom->led.groups[led->group].select = led->id;
1292
1293 error = wacom_led_control(wacom);
1294
1295out:
1296 mutex_unlock(&wacom->lock);
1297
1298 return error;
1299}
1300
1301static void wacom_led_readonly_brightness_set(struct led_classdev *cdev,
1302 enum led_brightness brightness)
1303{
1304}
1305
1306static int wacom_led_register_one(struct device *dev, struct wacom *wacom,
1307 struct wacom_led *led, unsigned int group,
1308 unsigned int id, bool read_only)
1309{
1310 int error;
1311 char *name;
1312
1313 name = devm_kasprintf(dev, GFP_KERNEL,
1314 "%s::wacom-%d.%d",
1315 dev_name(dev),
1316 group,
1317 id);
1318 if (!name)
1319 return -ENOMEM;
1320
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001321 if (!read_only) {
1322 led->trigger.name = name;
1323 error = devm_led_trigger_register(dev, &led->trigger);
1324 if (error) {
1325 hid_err(wacom->hdev,
1326 "failed to register LED trigger %s: %d\n",
1327 led->cdev.name, error);
1328 return error;
1329 }
1330 }
1331
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001332 led->group = group;
1333 led->id = id;
1334 led->wacom = wacom;
1335 led->llv = wacom->led.llv;
1336 led->hlv = wacom->led.hlv;
1337 led->cdev.name = name;
1338 led->cdev.max_brightness = LED_FULL;
1339 led->cdev.flags = LED_HW_PLUGGABLE;
1340 led->cdev.brightness_get = __wacom_led_brightness_get;
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001341 if (!read_only) {
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001342 led->cdev.brightness_set_blocking = wacom_led_brightness_set;
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001343 led->cdev.default_trigger = led->cdev.name;
1344 } else {
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001345 led->cdev.brightness_set = wacom_led_readonly_brightness_set;
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001346 }
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001347
1348 error = devm_led_classdev_register(dev, &led->cdev);
1349 if (error) {
1350 hid_err(wacom->hdev,
1351 "failed to register LED %s: %d\n",
1352 led->cdev.name, error);
1353 led->cdev.name = NULL;
1354 return error;
1355 }
1356
1357 return 0;
1358}
1359
Benjamin Tissoires589e5062016-07-13 18:06:11 +02001360static void wacom_led_groups_release_one(void *data)
1361{
1362 struct wacom_group_leds *group = data;
1363
1364 devres_release_group(group->dev, group);
1365}
1366
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001367static int wacom_led_groups_alloc_and_register_one(struct device *dev,
1368 struct wacom *wacom,
1369 int group_id, int count,
1370 bool read_only)
1371{
1372 struct wacom_led *leds;
1373 int i, error;
1374
1375 if (group_id >= wacom->led.count || count <= 0)
1376 return -EINVAL;
1377
1378 if (!devres_open_group(dev, &wacom->led.groups[group_id], GFP_KERNEL))
1379 return -ENOMEM;
1380
Kees Cooka86854d2018-06-12 14:07:58 -07001381 leds = devm_kcalloc(dev, count, sizeof(struct wacom_led), GFP_KERNEL);
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001382 if (!leds) {
1383 error = -ENOMEM;
1384 goto err;
1385 }
1386
1387 wacom->led.groups[group_id].leds = leds;
1388 wacom->led.groups[group_id].count = count;
1389
1390 for (i = 0; i < count; i++) {
1391 error = wacom_led_register_one(dev, wacom, &leds[i],
1392 group_id, i, read_only);
1393 if (error)
1394 goto err;
1395 }
1396
Benjamin Tissoires589e5062016-07-13 18:06:11 +02001397 wacom->led.groups[group_id].dev = dev;
1398
1399 devres_close_group(dev, &wacom->led.groups[group_id]);
1400
1401 /*
1402 * There is a bug (?) in devm_led_classdev_register() in which its
1403 * increments the refcount of the parent. If the parent is an input
1404 * device, that means the ref count never reaches 0 when
1405 * devm_input_device_release() gets called.
1406 * This means that the LEDs are still there after disconnect.
1407 * Manually force the release of the group so that the leds are released
1408 * once we are done using them.
1409 */
1410 error = devm_add_action_or_reset(&wacom->hdev->dev,
1411 wacom_led_groups_release_one,
1412 &wacom->led.groups[group_id]);
1413 if (error)
1414 return error;
1415
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001416 return 0;
1417
1418err:
1419 devres_release_group(dev, &wacom->led.groups[group_id]);
1420 return error;
1421}
1422
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001423struct wacom_led *wacom_led_find(struct wacom *wacom, unsigned int group_id,
1424 unsigned int id)
1425{
1426 struct wacom_group_leds *group;
1427
1428 if (group_id >= wacom->led.count)
1429 return NULL;
1430
1431 group = &wacom->led.groups[group_id];
1432
1433 if (!group->leds)
1434 return NULL;
1435
1436 id %= group->count;
1437
1438 return &group->leds[id];
1439}
1440
1441/**
1442 * wacom_led_next: gives the next available led with a wacom trigger.
1443 *
1444 * returns the next available struct wacom_led which has its default trigger
1445 * or the current one if none is available.
1446 */
1447struct wacom_led *wacom_led_next(struct wacom *wacom, struct wacom_led *cur)
1448{
1449 struct wacom_led *next_led;
1450 int group, next;
1451
1452 if (!wacom || !cur)
1453 return NULL;
1454
1455 group = cur->group;
1456 next = cur->id;
1457
1458 do {
1459 next_led = wacom_led_find(wacom, group, ++next);
1460 if (!next_led || next_led == cur)
1461 return next_led;
1462 } while (next_led->cdev.trigger != &next_led->trigger);
1463
1464 return next_led;
1465}
1466
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001467static void wacom_led_groups_release(void *data)
1468{
1469 struct wacom *wacom = data;
1470
1471 wacom->led.groups = NULL;
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001472 wacom->led.count = 0;
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001473}
1474
1475static int wacom_led_groups_allocate(struct wacom *wacom, int count)
1476{
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001477 struct device *dev = &wacom->hdev->dev;
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001478 struct wacom_group_leds *groups;
1479 int error;
1480
Kees Cooka86854d2018-06-12 14:07:58 -07001481 groups = devm_kcalloc(dev, count, sizeof(struct wacom_group_leds),
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001482 GFP_KERNEL);
1483 if (!groups)
1484 return -ENOMEM;
1485
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001486 error = devm_add_action_or_reset(dev, wacom_led_groups_release, wacom);
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001487 if (error)
1488 return error;
1489
1490 wacom->led.groups = groups;
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001491 wacom->led.count = count;
1492
1493 return 0;
1494}
1495
1496static int wacom_leds_alloc_and_register(struct wacom *wacom, int group_count,
1497 int led_per_group, bool read_only)
1498{
1499 struct device *dev;
1500 int i, error;
1501
1502 if (!wacom->wacom_wac.pad_input)
1503 return -EINVAL;
1504
1505 dev = &wacom->wacom_wac.pad_input->dev;
1506
1507 error = wacom_led_groups_allocate(wacom, group_count);
1508 if (error)
1509 return error;
1510
1511 for (i = 0; i < group_count; i++) {
1512 error = wacom_led_groups_alloc_and_register_one(dev, wacom, i,
1513 led_per_group,
1514 read_only);
1515 if (error)
1516 return error;
1517 }
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001518
1519 return 0;
1520}
1521
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001522int wacom_initialize_leds(struct wacom *wacom)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001523{
1524 int error;
1525
Jason Gerecke862cf552015-06-15 18:01:43 -07001526 if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
1527 return 0;
1528
Ping Cheng09e7d942011-10-04 23:51:14 -07001529 /* Initialize default values */
1530 switch (wacom->wacom_wac.features.type) {
Aaron Armstrong Skomra10c55ca2017-01-25 12:08:42 -08001531 case HID_GENERIC:
1532 if (!wacom->generic_has_leds)
1533 return 0;
1534 wacom->led.llv = 100;
1535 wacom->led.max_llv = 100;
1536
1537 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1538 if (error) {
1539 hid_err(wacom->hdev,
1540 "cannot create leds err: %d\n", error);
1541 return error;
1542 }
1543
1544 error = wacom_devm_sysfs_create_group(wacom,
1545 &generic_led_attr_group);
1546 break;
1547
Jason Gereckea19fc982012-06-12 00:27:53 -07001548 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -07001549 case INTUOS4:
Benjamin Tissoires81af7e62014-08-06 13:55:56 -07001550 case INTUOS4WL:
Ping Cheng09e7d942011-10-04 23:51:14 -07001551 case INTUOS4L:
Ping Chengf4fa9a62011-10-04 23:49:42 -07001552 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001553 wacom->led.hlv = 20;
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001554 wacom->led.max_llv = 127;
1555 wacom->led.max_hlv = 127;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001556 wacom->led.img_lum = 10;
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001557
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001558 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001559 if (error) {
1560 hid_err(wacom->hdev,
1561 "cannot create leds err: %d\n", error);
1562 return error;
1563 }
1564
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001565 error = wacom_devm_sysfs_create_group(wacom,
1566 &intuos4_led_attr_group);
Ping Cheng09e7d942011-10-04 23:51:14 -07001567 break;
1568
Jason Gerecke246835f2011-12-12 00:12:04 -08001569 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -07001570 case WACOM_21UX2:
Ping Cheng09e7d942011-10-04 23:51:14 -07001571 wacom->led.llv = 0;
1572 wacom->led.hlv = 0;
1573 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001574
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001575 error = wacom_leds_alloc_and_register(wacom, 2, 4, false);
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001576 if (error) {
1577 hid_err(wacom->hdev,
1578 "cannot create leds err: %d\n", error);
1579 return error;
1580 }
1581
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001582 error = wacom_devm_sysfs_create_group(wacom,
1583 &cintiq_led_attr_group);
Ping Cheng09e7d942011-10-04 23:51:14 -07001584 break;
1585
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001586 case INTUOS5S:
1587 case INTUOS5:
1588 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -07001589 case INTUOSPS:
1590 case INTUOSPM:
1591 case INTUOSPL:
Jason Gerecke862cf552015-06-15 18:01:43 -07001592 wacom->led.llv = 32;
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001593 wacom->led.max_llv = 96;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001594
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001595 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001596 if (error) {
1597 hid_err(wacom->hdev,
1598 "cannot create leds err: %d\n", error);
1599 return error;
1600 }
1601
Benjamin Tissoires2df68a82016-07-13 18:05:56 +02001602 error = wacom_devm_sysfs_create_group(wacom,
1603 &intuos5_led_attr_group);
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001604 break;
1605
Jason Gerecke4922cd22017-01-25 12:08:37 -08001606 case INTUOSP2_BT:
1607 wacom->led.llv = 50;
1608 wacom->led.max_llv = 100;
1609 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1610 if (error) {
1611 hid_err(wacom->hdev,
1612 "cannot create leds err: %d\n", error);
1613 return error;
1614 }
1615 return 0;
1616
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001617 case REMOTE:
Benjamin Tissoires97f55412016-07-13 18:06:10 +02001618 wacom->led.llv = 255;
1619 wacom->led.max_llv = 255;
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001620 error = wacom_led_groups_allocate(wacom, 5);
1621 if (error) {
1622 hid_err(wacom->hdev,
1623 "cannot create leds err: %d\n", error);
1624 return error;
1625 }
1626 return 0;
1627
Ping Cheng09e7d942011-10-04 23:51:14 -07001628 default:
1629 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001630 }
1631
Ping Cheng09e7d942011-10-04 23:51:14 -07001632 if (error) {
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -07001633 hid_err(wacom->hdev,
Ping Cheng09e7d942011-10-04 23:51:14 -07001634 "cannot create sysfs group err: %d\n", error);
1635 return error;
1636 }
Ping Cheng09e7d942011-10-04 23:51:14 -07001637
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001638 return 0;
1639}
1640
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01001641static void wacom_init_work(struct work_struct *work)
1642{
1643 struct wacom *wacom = container_of(work, struct wacom, init_work.work);
1644
1645 _wacom_query_tablet_data(wacom);
1646 wacom_led_control(wacom);
1647}
1648
1649static void wacom_query_tablet_data(struct wacom *wacom)
1650{
1651 schedule_delayed_work(&wacom->init_work, msecs_to_jiffies(1000));
1652}
1653
Chris Bagwella1d552c2012-03-25 23:26:30 -07001654static enum power_supply_property wacom_battery_props[] = {
Benjamin Tissoires99569532016-07-13 18:06:17 +02001655 POWER_SUPPLY_PROP_MODEL_NAME,
Jason Gerecke71fa6412015-03-11 10:25:41 -07001656 POWER_SUPPLY_PROP_PRESENT,
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001657 POWER_SUPPLY_PROP_STATUS,
Bastien Nocera6e2a6e82013-10-15 23:33:00 -07001658 POWER_SUPPLY_PROP_SCOPE,
Chris Bagwella1d552c2012-03-25 23:26:30 -07001659 POWER_SUPPLY_PROP_CAPACITY
1660};
1661
1662static int wacom_battery_get_property(struct power_supply *psy,
1663 enum power_supply_property psp,
1664 union power_supply_propval *val)
1665{
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001666 struct wacom_battery *battery = power_supply_get_drvdata(psy);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001667 int ret = 0;
1668
1669 switch (psp) {
Benjamin Tissoires99569532016-07-13 18:06:17 +02001670 case POWER_SUPPLY_PROP_MODEL_NAME:
1671 val->strval = battery->wacom->wacom_wac.name;
1672 break;
Jason Gerecke71fa6412015-03-11 10:25:41 -07001673 case POWER_SUPPLY_PROP_PRESENT:
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001674 val->intval = battery->bat_connected;
Jason Gerecke71fa6412015-03-11 10:25:41 -07001675 break;
Bastien Nocera6e2a6e82013-10-15 23:33:00 -07001676 case POWER_SUPPLY_PROP_SCOPE:
1677 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
1678 break;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001679 case POWER_SUPPLY_PROP_CAPACITY:
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001680 val->intval = battery->battery_capacity;
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001681 break;
1682 case POWER_SUPPLY_PROP_STATUS:
Jason Gerecke16e45982017-04-28 09:25:33 -07001683 if (battery->bat_status != WACOM_POWER_SUPPLY_STATUS_AUTO)
1684 val->intval = battery->bat_status;
1685 else if (battery->bat_charging)
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001686 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001687 else if (battery->battery_capacity == 100 &&
1688 battery->ps_connected)
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001689 val->intval = POWER_SUPPLY_STATUS_FULL;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001690 else if (battery->ps_connected)
Jason Gereckeb0882cb2015-03-06 11:47:43 -08001691 val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001692 else
1693 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001694 break;
1695 default:
1696 ret = -EINVAL;
1697 break;
1698 }
1699
1700 return ret;
1701}
1702
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001703static int __wacom_initialize_battery(struct wacom *wacom,
1704 struct wacom_battery *battery)
Chris Bagwella1d552c2012-03-25 23:26:30 -07001705{
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001706 static atomic_t battery_no = ATOMIC_INIT(0);
Benjamin Tissoiresb189da92016-07-13 18:05:53 +02001707 struct device *dev = &wacom->hdev->dev;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001708 struct power_supply_config psy_cfg = { .drv_data = battery, };
Benjamin Tissoires136ae5e2016-07-13 18:06:16 +02001709 struct power_supply *ps_bat;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001710 struct power_supply_desc *bat_desc = &battery->bat_desc;
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001711 unsigned long n;
Benjamin Tissoiresb189da92016-07-13 18:05:53 +02001712 int error;
1713
1714 if (!devres_open_group(dev, bat_desc, GFP_KERNEL))
1715 return -ENOMEM;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001716
Benjamin Tissoires99569532016-07-13 18:06:17 +02001717 battery->wacom = wacom;
1718
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001719 n = atomic_inc_return(&battery_no) - 1;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001720
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001721 bat_desc->properties = wacom_battery_props;
1722 bat_desc->num_properties = ARRAY_SIZE(wacom_battery_props);
1723 bat_desc->get_property = wacom_battery_get_property;
1724 sprintf(battery->bat_name, "wacom_battery_%ld", n);
1725 bat_desc->name = battery->bat_name;
Benjamin Tissoires96983292016-07-13 18:06:15 +02001726 bat_desc->type = POWER_SUPPLY_TYPE_USB;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001727 bat_desc->use_for_apm = 0;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001728
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001729 ps_bat = devm_power_supply_register(dev, bat_desc, &psy_cfg);
1730 if (IS_ERR(ps_bat)) {
1731 error = PTR_ERR(ps_bat);
1732 goto err;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001733 }
1734
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001735 power_supply_powers(ps_bat, &wacom->hdev->dev);
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001736
1737 battery->battery = ps_bat;
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001738
Benjamin Tissoiresb189da92016-07-13 18:05:53 +02001739 devres_close_group(dev, bat_desc);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001740 return 0;
Benjamin Tissoiresb189da92016-07-13 18:05:53 +02001741
1742err:
1743 devres_release_group(dev, bat_desc);
1744 return error;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001745}
1746
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001747static int wacom_initialize_battery(struct wacom *wacom)
1748{
1749 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY)
1750 return __wacom_initialize_battery(wacom, &wacom->battery);
1751
1752 return 0;
1753}
1754
Chris Bagwella1d552c2012-03-25 23:26:30 -07001755static void wacom_destroy_battery(struct wacom *wacom)
1756{
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02001757 if (wacom->battery.battery) {
1758 devres_release_group(&wacom->hdev->dev,
1759 &wacom->battery.bat_desc);
1760 wacom->battery.battery = NULL;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001761 }
Chris Bagwella1d552c2012-03-25 23:26:30 -07001762}
1763
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001764static ssize_t wacom_show_speed(struct device *dev,
1765 struct device_attribute
1766 *attr, char *buf)
1767{
Geliang Tangee79a8f2015-12-27 17:25:21 +08001768 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001769 struct wacom *wacom = hid_get_drvdata(hdev);
1770
1771 return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
1772}
1773
1774static ssize_t wacom_store_speed(struct device *dev,
1775 struct device_attribute *attr,
1776 const char *buf, size_t count)
1777{
Geliang Tangee79a8f2015-12-27 17:25:21 +08001778 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001779 struct wacom *wacom = hid_get_drvdata(hdev);
1780 u8 new_speed;
1781
1782 if (kstrtou8(buf, 0, &new_speed))
1783 return -EINVAL;
1784
1785 if (new_speed != 0 && new_speed != 1)
1786 return -EINVAL;
1787
1788 wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
1789
1790 return count;
1791}
1792
Ping Chenge0984bc2014-09-10 12:40:05 -07001793static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001794 wacom_show_speed, wacom_store_speed);
1795
Aaron Skomra72b236d2015-08-20 16:05:17 -07001796
1797static ssize_t wacom_show_remote_mode(struct kobject *kobj,
1798 struct kobj_attribute *kattr,
1799 char *buf, int index)
1800{
Geliang Tang2cf83832015-12-27 17:25:24 +08001801 struct device *dev = kobj_to_dev(kobj->parent);
Geliang Tangee79a8f2015-12-27 17:25:21 +08001802 struct hid_device *hdev = to_hid_device(dev);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001803 struct wacom *wacom = hid_get_drvdata(hdev);
1804 u8 mode;
1805
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001806 mode = wacom->led.groups[index].select;
Christos Gkekasbc35f732017-07-08 20:25:48 +01001807 return sprintf(buf, "%d\n", mode < 3 ? mode : -1);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001808}
1809
1810#define DEVICE_EKR_ATTR_GROUP(SET_ID) \
1811static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj, \
1812 struct kobj_attribute *kattr, char *buf) \
1813{ \
1814 return wacom_show_remote_mode(kobj, kattr, buf, SET_ID); \
1815} \
1816static struct kobj_attribute remote##SET_ID##_mode_attr = { \
1817 .attr = {.name = "remote_mode", \
1818 .mode = DEV_ATTR_RO_PERM}, \
1819 .show = wacom_show_remote##SET_ID##_mode, \
1820}; \
1821static struct attribute *remote##SET_ID##_serial_attrs[] = { \
1822 &remote##SET_ID##_mode_attr.attr, \
1823 NULL \
1824}; \
1825static struct attribute_group remote##SET_ID##_serial_group = { \
1826 .name = NULL, \
1827 .attrs = remote##SET_ID##_serial_attrs, \
1828}
1829
1830DEVICE_EKR_ATTR_GROUP(0);
1831DEVICE_EKR_ATTR_GROUP(1);
1832DEVICE_EKR_ATTR_GROUP(2);
1833DEVICE_EKR_ATTR_GROUP(3);
1834DEVICE_EKR_ATTR_GROUP(4);
1835
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02001836static int wacom_remote_create_attr_group(struct wacom *wacom, __u32 serial,
1837 int index)
Aaron Skomra72b236d2015-08-20 16:05:17 -07001838{
1839 int error = 0;
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001840 struct wacom_remote *remote = wacom->remote;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001841
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001842 remote->remotes[index].group.name = devm_kasprintf(&wacom->hdev->dev,
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001843 GFP_KERNEL,
1844 "%d", serial);
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001845 if (!remote->remotes[index].group.name)
Aaron Skomra72b236d2015-08-20 16:05:17 -07001846 return -ENOMEM;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001847
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02001848 error = __wacom_devm_sysfs_create_group(wacom, remote->remote_dir,
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001849 &remote->remotes[index].group);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001850 if (error) {
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001851 remote->remotes[index].group.name = NULL;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001852 hid_err(wacom->hdev,
1853 "cannot create sysfs group err: %d\n", error);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001854 return error;
1855 }
1856
1857 return 0;
1858}
1859
Aaron Skomra72b236d2015-08-20 16:05:17 -07001860static int wacom_cmd_unpair_remote(struct wacom *wacom, unsigned char selector)
1861{
1862 const size_t buf_size = 2;
1863 unsigned char *buf;
1864 int retval;
1865
1866 buf = kzalloc(buf_size, GFP_KERNEL);
1867 if (!buf)
1868 return -ENOMEM;
1869
1870 buf[0] = WAC_CMD_DELETE_PAIRING;
1871 buf[1] = selector;
1872
1873 retval = wacom_set_report(wacom->hdev, HID_OUTPUT_REPORT, buf,
1874 buf_size, WAC_CMD_RETRIES);
1875 kfree(buf);
1876
1877 return retval;
1878}
1879
1880static ssize_t wacom_store_unpair_remote(struct kobject *kobj,
1881 struct kobj_attribute *attr,
1882 const char *buf, size_t count)
1883{
1884 unsigned char selector = 0;
Geliang Tang2cf83832015-12-27 17:25:24 +08001885 struct device *dev = kobj_to_dev(kobj->parent);
Geliang Tangee79a8f2015-12-27 17:25:21 +08001886 struct hid_device *hdev = to_hid_device(dev);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001887 struct wacom *wacom = hid_get_drvdata(hdev);
1888 int err;
1889
1890 if (!strncmp(buf, "*\n", 2)) {
1891 selector = WAC_CMD_UNPAIR_ALL;
1892 } else {
1893 hid_info(wacom->hdev, "remote: unrecognized unpair code: %s\n",
1894 buf);
1895 return -1;
1896 }
1897
1898 mutex_lock(&wacom->lock);
1899
1900 err = wacom_cmd_unpair_remote(wacom, selector);
1901 mutex_unlock(&wacom->lock);
1902
1903 return err < 0 ? err : count;
1904}
1905
1906static struct kobj_attribute unpair_remote_attr = {
1907 .attr = {.name = "unpair_remote", .mode = 0200},
1908 .store = wacom_store_unpair_remote,
1909};
1910
1911static const struct attribute *remote_unpair_attrs[] = {
1912 &unpair_remote_attr.attr,
1913 NULL
1914};
1915
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001916static void wacom_remotes_destroy(void *data)
1917{
1918 struct wacom *wacom = data;
1919 struct wacom_remote *remote = wacom->remote;
1920
1921 if (!remote)
1922 return;
1923
1924 kobject_put(remote->remote_dir);
1925 kfifo_free(&remote->remote_fifo);
1926 wacom->remote = NULL;
1927}
1928
1929static int wacom_initialize_remotes(struct wacom *wacom)
Aaron Skomra72b236d2015-08-20 16:05:17 -07001930{
1931 int error = 0;
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001932 struct wacom_remote *remote;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001933 int i;
1934
1935 if (wacom->wacom_wac.features.type != REMOTE)
1936 return 0;
1937
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001938 remote = devm_kzalloc(&wacom->hdev->dev, sizeof(*wacom->remote),
1939 GFP_KERNEL);
1940 if (!remote)
Aaron Skomra72b236d2015-08-20 16:05:17 -07001941 return -ENOMEM;
1942
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001943 wacom->remote = remote;
1944
1945 spin_lock_init(&remote->remote_lock);
1946
1947 error = kfifo_alloc(&remote->remote_fifo,
1948 5 * sizeof(struct wacom_remote_data),
1949 GFP_KERNEL);
1950 if (error) {
1951 hid_err(wacom->hdev, "failed allocating remote_fifo\n");
1952 return -ENOMEM;
1953 }
1954
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001955 remote->remotes[0].group = remote0_serial_group;
1956 remote->remotes[1].group = remote1_serial_group;
1957 remote->remotes[2].group = remote2_serial_group;
1958 remote->remotes[3].group = remote3_serial_group;
1959 remote->remotes[4].group = remote4_serial_group;
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001960
1961 remote->remote_dir = kobject_create_and_add("wacom_remote",
1962 &wacom->hdev->dev.kobj);
1963 if (!remote->remote_dir)
1964 return -ENOMEM;
1965
1966 error = sysfs_create_files(remote->remote_dir, remote_unpair_attrs);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001967
1968 if (error) {
1969 hid_err(wacom->hdev,
1970 "cannot create sysfs group err: %d\n", error);
1971 return error;
1972 }
1973
1974 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
Benjamin Tissoiresa50aac72016-07-13 18:06:00 +02001975 wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02001976 remote->remotes[i].serial = 0;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001977 }
1978
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02001979 error = devm_add_action_or_reset(&wacom->hdev->dev,
1980 wacom_remotes_destroy, wacom);
1981 if (error)
1982 return error;
1983
Aaron Skomra72b236d2015-08-20 16:05:17 -07001984 return 0;
1985}
1986
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001987static struct input_dev *wacom_allocate_input(struct wacom *wacom)
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001988{
1989 struct input_dev *input_dev;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001990 struct hid_device *hdev = wacom->hdev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001991 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001992
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02001993 input_dev = devm_input_allocate_device(&hdev->dev);
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001994 if (!input_dev)
1995 return NULL;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001996
Jason Gerecke2bdd1632015-07-13 18:03:45 -07001997 input_dev->name = wacom_wac->features.name;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001998 input_dev->phys = hdev->phys;
1999 input_dev->dev.parent = &hdev->dev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07002000 input_dev->open = wacom_open;
2001 input_dev->close = wacom_close;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07002002 input_dev->uniq = hdev->uniq;
2003 input_dev->id.bustype = hdev->bus;
2004 input_dev->id.vendor = hdev->vendor;
Benjamin Tissoires12969e32014-09-11 13:14:04 -04002005 input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07002006 input_dev->id.version = hdev->version;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07002007 input_set_drvdata(input_dev, wacom);
2008
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002009 return input_dev;
2010}
2011
Jason Gerecked9f2d202015-07-13 18:03:44 -07002012static int wacom_allocate_inputs(struct wacom *wacom)
2013{
2014 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
2015
2016 wacom_wac->pen_input = wacom_allocate_input(wacom);
2017 wacom_wac->touch_input = wacom_allocate_input(wacom);
2018 wacom_wac->pad_input = wacom_allocate_input(wacom);
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02002019 if (!wacom_wac->pen_input ||
2020 !wacom_wac->touch_input ||
2021 !wacom_wac->pad_input)
Jason Gerecked9f2d202015-07-13 18:03:44 -07002022 return -ENOMEM;
Jason Gerecked9f2d202015-07-13 18:03:44 -07002023
Jason Gerecke2bdd1632015-07-13 18:03:45 -07002024 wacom_wac->pen_input->name = wacom_wac->pen_name;
Jason Gerecked9f2d202015-07-13 18:03:44 -07002025 wacom_wac->touch_input->name = wacom_wac->touch_name;
2026 wacom_wac->pad_input->name = wacom_wac->pad_name;
2027
2028 return 0;
2029}
2030
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07002031static int wacom_register_inputs(struct wacom *wacom)
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002032{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002033 struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002034 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Jason Gerecke2636a3f2015-06-15 18:01:44 -07002035 int error = 0;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002036
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002037 pen_input_dev = wacom_wac->pen_input;
2038 touch_input_dev = wacom_wac->touch_input;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04002039 pad_input_dev = wacom_wac->pad_input;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002040
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002041 if (!pen_input_dev || !touch_input_dev || !pad_input_dev)
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04002042 return -EINVAL;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002043
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002044 error = wacom_setup_pen_input_capabilities(pen_input_dev, wacom_wac);
2045 if (error) {
2046 /* no pen in use on this interface */
2047 input_free_device(pen_input_dev);
2048 wacom_wac->pen_input = NULL;
2049 pen_input_dev = NULL;
2050 } else {
2051 error = input_register_device(pen_input_dev);
Ping Cheng30ebc1a2014-11-18 13:29:16 -08002052 if (error)
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02002053 goto fail;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002054 }
2055
2056 error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac);
2057 if (error) {
2058 /* no touch in use on this interface */
2059 input_free_device(touch_input_dev);
2060 wacom_wac->touch_input = NULL;
2061 touch_input_dev = NULL;
2062 } else {
2063 error = input_register_device(touch_input_dev);
2064 if (error)
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02002065 goto fail;
Ping Cheng30ebc1a2014-11-18 13:29:16 -08002066 }
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07002067
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002068 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
2069 if (error) {
2070 /* no pad in use on this interface */
2071 input_free_device(pad_input_dev);
2072 wacom_wac->pad_input = NULL;
2073 pad_input_dev = NULL;
2074 } else {
2075 error = input_register_device(pad_input_dev);
2076 if (error)
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02002077 goto fail;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07002078 }
2079
Ping Cheng19635182012-04-29 21:09:18 -07002080 return 0;
2081
Benjamin Tissoires3dad1882016-07-13 18:05:54 +02002082fail:
2083 wacom_wac->pad_input = NULL;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002084 wacom_wac->touch_input = NULL;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002085 wacom_wac->pen_input = NULL;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07002086 return error;
2087}
2088
Jason Gerecke0be01712015-08-05 15:44:53 -07002089/*
2090 * Not all devices report physical dimensions from HID.
2091 * Compute the default from hardcoded logical dimension
2092 * and resolution before driver overwrites them.
2093 */
2094static void wacom_set_default_phy(struct wacom_features *features)
2095{
2096 if (features->x_resolution) {
2097 features->x_phy = (features->x_max * 100) /
2098 features->x_resolution;
2099 features->y_phy = (features->y_max * 100) /
2100 features->y_resolution;
2101 }
2102}
2103
2104static void wacom_calculate_res(struct wacom_features *features)
2105{
2106 /* set unit to "100th of a mm" for devices not reported by HID */
2107 if (!features->unit) {
2108 features->unit = 0x11;
2109 features->unitExpo = -3;
2110 }
2111
2112 features->x_resolution = wacom_calc_hid_res(features->x_max,
2113 features->x_phy,
2114 features->unit,
2115 features->unitExpo);
2116 features->y_resolution = wacom_calc_hid_res(features->y_max,
2117 features->y_phy,
2118 features->unit,
2119 features->unitExpo);
2120}
2121
Jason Gereckefce99572015-03-06 11:47:40 -08002122void wacom_battery_work(struct work_struct *work)
2123{
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002124 struct wacom *wacom = container_of(work, struct wacom, battery_work);
Jason Gereckefce99572015-03-06 11:47:40 -08002125
2126 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02002127 !wacom->battery.battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08002128 wacom_initialize_battery(wacom);
2129 }
2130 else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Benjamin Tissoires59d69bc2016-07-13 18:06:08 +02002131 wacom->battery.battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08002132 wacom_destroy_battery(wacom);
2133 }
2134}
2135
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07002136static size_t wacom_compute_pktlen(struct hid_device *hdev)
2137{
2138 struct hid_report_enum *report_enum;
2139 struct hid_report *report;
2140 size_t size = 0;
2141
2142 report_enum = hdev->report_enum + HID_INPUT_REPORT;
2143
2144 list_for_each_entry(report, &report_enum->report_list, list) {
Mathieu Magnaudetdabb05c62014-11-27 16:02:36 +01002145 size_t report_size = hid_report_len(report);
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07002146 if (report_size > size)
2147 size = report_size;
2148 }
2149
2150 return size;
2151}
2152
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002153static void wacom_update_name(struct wacom *wacom, const char *suffix)
Ping Chengc24eab42015-04-24 15:32:51 -07002154{
2155 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2156 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke44b52502015-06-15 18:01:41 -07002157 char name[WACOM_NAME_MAX];
Ping Chengc24eab42015-04-24 15:32:51 -07002158
2159 /* Generic devices name unspecified */
2160 if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) {
Jason Gerecke09dc28a2017-07-24 09:46:19 -07002161 char *product_name = wacom->hdev->name;
Ping Chengc24eab42015-04-24 15:32:51 -07002162
Jason Gerecke09dc28a2017-07-24 09:46:19 -07002163 if (hid_is_using_ll_driver(wacom->hdev, &usb_hid_driver)) {
2164 struct usb_interface *intf = to_usb_interface(wacom->hdev->dev.parent);
2165 struct usb_device *dev = interface_to_usbdev(intf);
2166 product_name = dev->product;
Ping Chengc24eab42015-04-24 15:32:51 -07002167 }
Jason Gerecke09dc28a2017-07-24 09:46:19 -07002168
2169 if (wacom->hdev->bus == BUS_I2C) {
2170 snprintf(name, sizeof(name), "%s %X",
2171 features->name, wacom->hdev->product);
2172 } else if (strstr(product_name, "Wacom") ||
2173 strstr(product_name, "wacom") ||
2174 strstr(product_name, "WACOM")) {
2175 strlcpy(name, product_name, sizeof(name));
2176 } else {
2177 snprintf(name, sizeof(name), "Wacom %s", product_name);
2178 }
2179
2180 /* strip out excess whitespaces */
2181 while (1) {
2182 char *gap = strstr(name, " ");
2183 if (gap == NULL)
2184 break;
2185 /* shift everything including the terminator */
2186 memmove(gap, gap+1, strlen(gap));
2187 }
2188
2189 /* get rid of trailing whitespace */
2190 if (name[strlen(name)-1] == ' ')
2191 name[strlen(name)-1] = '\0';
Ping Chengc24eab42015-04-24 15:32:51 -07002192 } else {
Jason Gerecke44b52502015-06-15 18:01:41 -07002193 strlcpy(name, features->name, sizeof(name));
Ping Chengc24eab42015-04-24 15:32:51 -07002194 }
2195
Benjamin Tissoires99569532016-07-13 18:06:17 +02002196 snprintf(wacom_wac->name, sizeof(wacom_wac->name), "%s%s",
2197 name, suffix);
2198
Ping Chengc24eab42015-04-24 15:32:51 -07002199 /* Append the device type to the name */
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002200 snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name),
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002201 "%s%s Pen", name, suffix);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07002202 snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name),
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002203 "%s%s Finger", name, suffix);
Ping Chengc24eab42015-04-24 15:32:51 -07002204 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002205 "%s%s Pad", name, suffix);
Ping Chengc24eab42015-04-24 15:32:51 -07002206}
2207
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002208static void wacom_release_resources(struct wacom *wacom)
2209{
2210 struct hid_device *hdev = wacom->hdev;
2211
2212 if (!wacom->resources)
2213 return;
2214
2215 devres_release_group(&hdev->dev, wacom);
2216
2217 wacom->resources = false;
2218
2219 wacom->wacom_wac.pen_input = NULL;
2220 wacom->wacom_wac.touch_input = NULL;
2221 wacom->wacom_wac.pad_input = NULL;
2222}
2223
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08002224static void wacom_set_shared_values(struct wacom_wac *wacom_wac)
2225{
2226 if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH) {
2227 wacom_wac->shared->type = wacom_wac->features.type;
2228 wacom_wac->shared->touch_input = wacom_wac->touch_input;
2229 }
2230
Ping Chengd793ff82017-02-14 21:27:45 -08002231 if (wacom_wac->has_mute_touch_switch) {
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08002232 wacom_wac->shared->has_mute_touch_switch = true;
Ping Chengd793ff82017-02-14 21:27:45 -08002233 wacom_wac->shared->is_touch_on = true;
2234 }
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08002235
2236 if (wacom_wac->shared->has_mute_touch_switch &&
2237 wacom_wac->shared->touch_input) {
2238 set_bit(EV_SW, wacom_wac->shared->touch_input->evbit);
2239 input_set_capability(wacom_wac->shared->touch_input, EV_SW,
2240 SW_MUTE_DEVICE);
2241 }
2242}
2243
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002244static int wacom_parse_and_register(struct wacom *wacom, bool wireless)
Ping Cheng3bea7332006-07-13 18:01:36 -07002245{
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002246 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2247 struct wacom_features *features = &wacom_wac->features;
2248 struct hid_device *hdev = wacom->hdev;
Jason Childse33da8a2010-02-17 22:38:31 -08002249 int error;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002250 unsigned int connect_mask = HID_CONNECT_HIDRAW;
Ping Cheng3bea7332006-07-13 18:01:36 -07002251
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07002252 features->pktlen = wacom_compute_pktlen(hdev);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002253 if (features->pktlen > WACOM_PKGLEN_MAX)
2254 return -EINVAL;
Ping Cheng3bea7332006-07-13 18:01:36 -07002255
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002256 if (!devres_open_group(&hdev->dev, wacom, GFP_KERNEL))
2257 return -ENOMEM;
2258
2259 wacom->resources = true;
2260
Jason Gerecke3f14a632015-08-03 10:17:05 -07002261 error = wacom_allocate_inputs(wacom);
2262 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002263 goto fail;
Benjamin Tissoires494078b2014-09-23 12:08:07 -04002264
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002265 /*
2266 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
2267 * into debug mode for the touch part.
2268 * We ignore the other interfaces.
2269 */
2270 if (features->type == BAMBOO_PAD) {
2271 if (features->pktlen == WACOM_PKGLEN_PENABLED) {
2272 features->type = HID_GENERIC;
2273 } else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) &&
2274 (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) {
2275 error = -ENODEV;
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002276 goto fail;
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05002277 }
2278 }
2279
Ping Cheng401d7d12013-07-28 00:38:54 -07002280 /* set the default size in case we do not get them from hid */
2281 wacom_set_default_phy(features);
2282
Ping Chengf393ee22012-04-29 21:09:17 -07002283 /* Retrieve the physical and logical size for touch devices */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07002284 wacom_retrieve_hid_descriptor(hdev, features);
Ping Cheng42f4f272015-04-15 16:53:54 -07002285 wacom_setup_device_quirks(wacom);
Jason Gerecke042628a2015-04-30 17:51:54 -07002286
Jason Gereckeaa86b182015-06-15 18:01:42 -07002287 if (features->device_type == WACOM_DEVICETYPE_NONE &&
2288 features->type != WIRELESS) {
Jason Gerecke8e116d32015-04-30 17:51:55 -07002289 error = features->type == HID_GENERIC ? -ENODEV : 0;
2290
Jason Gerecke042628a2015-04-30 17:51:54 -07002291 dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.",
Jason Gerecke8e116d32015-04-30 17:51:55 -07002292 hdev->name,
2293 error ? "Ignoring" : "Assuming pen");
2294
2295 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002296 goto fail;
Jason Gerecke042628a2015-04-30 17:51:54 -07002297
Jason Gereckeaa86b182015-06-15 18:01:42 -07002298 features->device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke042628a2015-04-30 17:51:54 -07002299 }
2300
Ping Cheng401d7d12013-07-28 00:38:54 -07002301 wacom_calculate_res(features);
2302
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002303 wacom_update_name(wacom, wireless ? " (WL)" : "");
Ping Cheng4492eff2010-03-19 22:18:15 -07002304
Aaron Armstrong Skomra8b407352017-03-29 10:35:39 -07002305 /* pen only Bamboo neither support touch nor pad */
2306 if ((features->type == BAMBOO_PEN) &&
2307 ((features->device_type & WACOM_DEVICETYPE_TOUCH) ||
2308 (features->device_type & WACOM_DEVICETYPE_PAD))) {
2309 error = -ENODEV;
2310 goto fail;
2311 }
2312
Jason Gereckea9ce7852017-01-17 15:38:58 -08002313 error = wacom_add_shared_data(hdev);
2314 if (error)
2315 goto fail;
Ping Cheng49b764a2010-02-20 00:53:49 -08002316
Jason Gereckeccad85c2015-08-03 10:17:04 -07002317 if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) &&
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07002318 (features->quirks & WACOM_QUIRK_BATTERY)) {
2319 error = wacom_initialize_battery(wacom);
2320 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002321 goto fail;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07002322 }
2323
Jason Gerecke3f14a632015-08-03 10:17:05 -07002324 error = wacom_register_inputs(wacom);
2325 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002326 goto fail;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07002327
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002328 if (wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD) {
Benjamin Tissoires85d2c772016-07-13 18:05:51 +02002329 error = wacom_initialize_leds(wacom);
2330 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002331 goto fail;
Benjamin Tissoires85d2c772016-07-13 18:05:51 +02002332
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002333 error = wacom_initialize_remotes(wacom);
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002334 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002335 goto fail;
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002336 }
2337
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002338 if (features->type == HID_GENERIC)
2339 connect_mask |= HID_CONNECT_DRIVER;
2340
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002341 /* Regular HID work starts now */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002342 error = hid_hw_start(hdev, connect_mask);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002343 if (error) {
2344 hid_err(hdev, "hw start failed\n");
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002345 goto fail;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002346 }
2347
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002348 if (!wireless) {
2349 /* Note that if query fails it is not a hard failure */
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01002350 wacom_query_tablet_data(wacom);
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002351 }
Jason Gerecke86e88f02015-11-03 16:57:58 -08002352
2353 /* touch only Bamboo doesn't support pen */
2354 if ((features->type == BAMBOO_TOUCH) &&
2355 (features->device_type & WACOM_DEVICETYPE_PEN)) {
Aaron Armstrong Skomra4d20c332017-03-29 11:41:28 -07002356 cancel_delayed_work_sync(&wacom->init_work);
2357 _wacom_query_tablet_data(wacom);
Jason Gerecke86e88f02015-11-03 16:57:58 -08002358 error = -ENODEV;
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002359 goto fail_quirks;
Jason Gerecke86e88f02015-11-03 16:57:58 -08002360 }
2361
Jason Gereckeccad85c2015-08-03 10:17:04 -07002362 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002363 error = hid_hw_open(hdev);
2364
Aaron Armstrong Skomrad2ec58a2017-01-25 12:08:41 -08002365 wacom_set_shared_values(wacom_wac);
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002366 devres_close_group(&hdev->dev, wacom);
2367
Ping Cheng3bea7332006-07-13 18:01:36 -07002368 return 0;
2369
Benjamin Tissoiresb62f6462016-07-13 18:05:50 +02002370fail_quirks:
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002371 hid_hw_stop(hdev);
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002372fail:
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002373 wacom_release_resources(wacom);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002374 return error;
2375}
2376
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002377static void wacom_wireless_work(struct work_struct *work)
2378{
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002379 struct wacom *wacom = container_of(work, struct wacom, wireless_work);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002380 struct usb_device *usbdev = wacom->usbdev;
2381 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2382 struct hid_device *hdev1, *hdev2;
2383 struct wacom *wacom1, *wacom2;
2384 struct wacom_wac *wacom_wac1, *wacom_wac2;
2385 int error;
2386
2387 /*
2388 * Regardless if this is a disconnect or a new tablet,
2389 * remove any existing input and battery devices.
2390 */
2391
2392 wacom_destroy_battery(wacom);
2393
2394 /* Stylus interface */
2395 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
2396 wacom1 = hid_get_drvdata(hdev1);
2397 wacom_wac1 = &(wacom1->wacom_wac);
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002398 wacom_release_resources(wacom1);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002399
2400 /* Touch interface */
2401 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
2402 wacom2 = hid_get_drvdata(hdev2);
2403 wacom_wac2 = &(wacom2->wacom_wac);
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002404 wacom_release_resources(wacom2);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002405
2406 if (wacom_wac->pid == 0) {
2407 hid_info(wacom->hdev, "wireless tablet disconnected\n");
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002408 } else {
2409 const struct hid_device_id *id = wacom_ids;
2410
2411 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
2412 wacom_wac->pid);
2413
2414 while (id->bus) {
2415 if (id->vendor == USB_VENDOR_ID_WACOM &&
2416 id->product == wacom_wac->pid)
2417 break;
2418 id++;
2419 }
2420
2421 if (!id->bus) {
2422 hid_info(wacom->hdev, "ignoring unknown PID.\n");
2423 return;
2424 }
2425
2426 /* Stylus interface */
2427 wacom_wac1->features =
2428 *((struct wacom_features *)id->driver_data);
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002429
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002430 wacom_wac1->pid = wacom_wac->pid;
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002431 hid_hw_stop(hdev1);
2432 error = wacom_parse_and_register(wacom1, true);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002433 if (error)
2434 goto fail;
2435
2436 /* Touch interface */
2437 if (wacom_wac1->features.touch_max ||
2438 (wacom_wac1->features.type >= INTUOSHT &&
2439 wacom_wac1->features.type <= BAMBOO_PT)) {
2440 wacom_wac2->features =
2441 *((struct wacom_features *)id->driver_data);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002442 wacom_wac2->pid = wacom_wac->pid;
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002443 hid_hw_stop(hdev2);
2444 error = wacom_parse_and_register(wacom2, true);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002445 if (error)
2446 goto fail;
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002447 }
2448
Benjamin Tissoires99569532016-07-13 18:06:17 +02002449 strlcpy(wacom_wac->name, wacom_wac1->name,
2450 sizeof(wacom_wac->name));
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002451 error = wacom_initialize_battery(wacom);
2452 if (error)
2453 goto fail;
2454 }
2455
2456 return;
2457
2458fail:
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002459 wacom_release_resources(wacom1);
Benjamin Tissoires84dfbd72016-07-13 18:05:55 +02002460 wacom_release_resources(wacom2);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01002461 return;
2462}
2463
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002464static void wacom_remote_destroy_one(struct wacom *wacom, unsigned int index)
2465{
2466 struct wacom_remote *remote = wacom->remote;
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002467 u32 serial = remote->remotes[index].serial;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002468 int i;
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002469 unsigned long flags;
2470
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002471 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002472 if (remote->remotes[i].serial == serial) {
Aaron Armstrong Skomra791ae272017-12-07 12:31:56 -08002473
2474 spin_lock_irqsave(&remote->remote_lock, flags);
2475 remote->remotes[i].registered = false;
2476 spin_unlock_irqrestore(&remote->remote_lock, flags);
2477
2478 if (remote->remotes[i].battery.battery)
2479 devres_release_group(&wacom->hdev->dev,
2480 &remote->remotes[i].battery.bat_desc);
2481
2482 if (remote->remotes[i].group.name)
2483 devres_release_group(&wacom->hdev->dev,
2484 &remote->remotes[i]);
2485
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002486 remote->remotes[i].serial = 0;
2487 remote->remotes[i].group.name = NULL;
Benjamin Tissoires9f1015d42016-07-13 18:06:09 +02002488 remote->remotes[i].battery.battery = NULL;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002489 wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
2490 }
2491 }
2492}
2493
2494static int wacom_remote_create_one(struct wacom *wacom, u32 serial,
2495 unsigned int index)
2496{
2497 struct wacom_remote *remote = wacom->remote;
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002498 struct device *dev = &wacom->hdev->dev;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002499 int error, k;
2500
2501 /* A remote can pair more than once with an EKR,
2502 * check to make sure this serial isn't already paired.
2503 */
2504 for (k = 0; k < WACOM_MAX_REMOTES; k++) {
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002505 if (remote->remotes[k].serial == serial)
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002506 break;
2507 }
2508
2509 if (k < WACOM_MAX_REMOTES) {
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002510 remote->remotes[index].serial = serial;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002511 return 0;
2512 }
2513
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002514 if (!devres_open_group(dev, &remote->remotes[index], GFP_KERNEL))
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002515 return -ENOMEM;
2516
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002517 error = wacom_remote_create_attr_group(wacom, serial, index);
2518 if (error)
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002519 goto fail;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002520
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002521 remote->remotes[index].input = wacom_allocate_input(wacom);
2522 if (!remote->remotes[index].input) {
2523 error = -ENOMEM;
2524 goto fail;
2525 }
2526 remote->remotes[index].input->uniq = remote->remotes[index].group.name;
2527 remote->remotes[index].input->name = wacom->wacom_wac.pad_name;
2528
2529 if (!remote->remotes[index].input->name) {
2530 error = -EINVAL;
2531 goto fail;
2532 }
2533
2534 error = wacom_setup_pad_input_capabilities(remote->remotes[index].input,
2535 &wacom->wacom_wac);
2536 if (error)
2537 goto fail;
2538
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002539 remote->remotes[index].serial = serial;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002540
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002541 error = input_register_device(remote->remotes[index].input);
2542 if (error)
2543 goto fail;
2544
Benjamin Tissoires97f55412016-07-13 18:06:10 +02002545 error = wacom_led_groups_alloc_and_register_one(
2546 &remote->remotes[index].input->dev,
2547 wacom, index, 3, true);
2548 if (error)
2549 goto fail;
2550
Benjamin Tissoires7c35dc32016-07-13 18:06:07 +02002551 remote->remotes[index].registered = true;
2552
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002553 devres_close_group(dev, &remote->remotes[index]);
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002554 return 0;
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002555
2556fail:
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002557 devres_release_group(dev, &remote->remotes[index]);
2558 remote->remotes[index].serial = 0;
Benjamin Tissoiresf9036bd2016-07-13 18:06:05 +02002559 return error;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002560}
2561
Benjamin Tissoires9f1015d42016-07-13 18:06:09 +02002562static int wacom_remote_attach_battery(struct wacom *wacom, int index)
2563{
2564 struct wacom_remote *remote = wacom->remote;
2565 int error;
2566
2567 if (!remote->remotes[index].registered)
2568 return 0;
2569
2570 if (remote->remotes[index].battery.battery)
2571 return 0;
2572
2573 if (wacom->led.groups[index].select == WACOM_STATUS_UNKNOWN)
2574 return 0;
2575
2576 error = __wacom_initialize_battery(wacom,
2577 &wacom->remote->remotes[index].battery);
2578 if (error)
2579 return error;
2580
2581 return 0;
2582}
2583
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002584static void wacom_remote_work(struct work_struct *work)
2585{
2586 struct wacom *wacom = container_of(work, struct wacom, remote_work);
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002587 struct wacom_remote *remote = wacom->remote;
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002588 struct wacom_remote_data data;
2589 unsigned long flags;
2590 unsigned int count;
2591 u32 serial;
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002592 int i;
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002593
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002594 spin_lock_irqsave(&remote->remote_lock, flags);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002595
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002596 count = kfifo_out(&remote->remote_fifo, &data, sizeof(data));
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002597
2598 if (count != sizeof(data)) {
2599 hid_err(wacom->hdev,
2600 "workitem triggered without status available\n");
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002601 spin_unlock_irqrestore(&remote->remote_lock, flags);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002602 return;
2603 }
2604
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002605 if (!kfifo_is_empty(&remote->remote_fifo))
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002606 wacom_schedule_work(&wacom->wacom_wac, WACOM_WORKER_REMOTE);
2607
Benjamin Tissoires83e6b402016-07-13 18:06:02 +02002608 spin_unlock_irqrestore(&remote->remote_lock, flags);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002609
2610 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
2611 serial = data.remote[i].serial;
2612 if (data.remote[i].connected) {
2613
Benjamin Tissoires9f1015d42016-07-13 18:06:09 +02002614 if (remote->remotes[i].serial == serial) {
2615 wacom_remote_attach_battery(wacom, i);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002616 continue;
Benjamin Tissoires9f1015d42016-07-13 18:06:09 +02002617 }
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002618
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002619 if (remote->remotes[i].serial)
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002620 wacom_remote_destroy_one(wacom, i);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002621
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002622 wacom_remote_create_one(wacom, serial, i);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002623
Benjamin Tissoirese7749f62016-07-13 18:06:06 +02002624 } else if (remote->remotes[i].serial) {
Benjamin Tissoires04bfa272016-07-13 18:06:04 +02002625 wacom_remote_destroy_one(wacom, i);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002626 }
2627 }
2628}
2629
Benjamin Tissoires4082da82017-02-14 21:27:18 -08002630static void wacom_mode_change_work(struct work_struct *work)
2631{
2632 struct wacom *wacom = container_of(work, struct wacom, mode_change_work);
2633 struct wacom_shared *shared = wacom->wacom_wac.shared;
2634 struct wacom *wacom1 = NULL;
2635 struct wacom *wacom2 = NULL;
2636 bool is_direct = wacom->wacom_wac.is_direct_mode;
2637 int error = 0;
2638
2639 if (shared->pen) {
2640 wacom1 = hid_get_drvdata(shared->pen);
2641 wacom_release_resources(wacom1);
2642 hid_hw_stop(wacom1->hdev);
2643 wacom1->wacom_wac.has_mode_change = true;
2644 wacom1->wacom_wac.is_direct_mode = is_direct;
2645 }
2646
2647 if (shared->touch) {
2648 wacom2 = hid_get_drvdata(shared->touch);
2649 wacom_release_resources(wacom2);
2650 hid_hw_stop(wacom2->hdev);
2651 wacom2->wacom_wac.has_mode_change = true;
2652 wacom2->wacom_wac.is_direct_mode = is_direct;
2653 }
2654
2655 if (wacom1) {
2656 error = wacom_parse_and_register(wacom1, false);
2657 if (error)
2658 return;
2659 }
2660
2661 if (wacom2) {
2662 error = wacom_parse_and_register(wacom2, false);
2663 if (error)
2664 return;
2665 }
2666
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002667 return;
2668}
2669
2670static int wacom_probe(struct hid_device *hdev,
2671 const struct hid_device_id *id)
2672{
2673 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
2674 struct usb_device *dev = interface_to_usbdev(intf);
2675 struct wacom *wacom;
2676 struct wacom_wac *wacom_wac;
2677 struct wacom_features *features;
2678 int error;
2679
2680 if (!id->driver_data)
2681 return -EINVAL;
2682
2683 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
2684
2685 /* hid-core sets this quirk for the boot interface */
2686 hdev->quirks &= ~HID_QUIRK_NOGET;
2687
Benjamin Tissoires19b64332016-07-13 18:05:58 +02002688 wacom = devm_kzalloc(&hdev->dev, sizeof(struct wacom), GFP_KERNEL);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002689 if (!wacom)
2690 return -ENOMEM;
2691
2692 hid_set_drvdata(hdev, wacom);
2693 wacom->hdev = hdev;
2694
2695 wacom_wac = &wacom->wacom_wac;
2696 wacom_wac->features = *((struct wacom_features *)id->driver_data);
2697 features = &wacom_wac->features;
2698
2699 if (features->check_for_hid_type && features->hid_type != hdev->type) {
2700 error = -ENODEV;
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002701 goto fail;
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002702 }
2703
Jason Gerecke83417202017-11-10 11:50:01 -08002704 error = kfifo_alloc(&wacom_wac->pen_fifo, WACOM_PKGLEN_MAX, GFP_KERNEL);
2705 if (error)
2706 goto fail;
2707
Jason Gereckec6fa1ae2016-04-04 11:26:51 -07002708 wacom_wac->hid_data.inputmode = -1;
Jason Gerecke326ea2a2016-04-04 11:26:52 -07002709 wacom_wac->mode_report = -1;
Jason Gereckec6fa1ae2016-04-04 11:26:51 -07002710
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002711 wacom->usbdev = dev;
2712 wacom->intf = intf;
2713 mutex_init(&wacom->lock);
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01002714 INIT_DELAYED_WORK(&wacom->init_work, wacom_init_work);
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002715 INIT_WORK(&wacom->wireless_work, wacom_wireless_work);
2716 INIT_WORK(&wacom->battery_work, wacom_battery_work);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002717 INIT_WORK(&wacom->remote_work, wacom_remote_work);
Benjamin Tissoires4082da82017-02-14 21:27:18 -08002718 INIT_WORK(&wacom->mode_change_work, wacom_mode_change_work);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002719
2720 /* ask for the report descriptor to be loaded by HID */
2721 error = hid_parse(hdev);
2722 if (error) {
2723 hid_err(hdev, "parse failed\n");
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002724 goto fail;
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002725 }
2726
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01002727 error = wacom_parse_and_register(wacom, false);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002728 if (error)
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002729 goto fail;
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01002730
2731 if (hdev->bus == BUS_BLUETOOTH) {
2732 error = device_create_file(&hdev->dev, &dev_attr_speed);
2733 if (error)
2734 hid_warn(hdev,
2735 "can't create sysfs speed attribute err: %d\n",
2736 error);
2737 }
2738
2739 return 0;
2740
Benjamin Tissoires3888b0d2016-07-13 18:06:03 +02002741fail:
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002742 hid_set_drvdata(hdev, NULL);
Dmitry Torokhov50141862007-04-12 01:33:39 -04002743 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07002744}
2745
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002746static void wacom_remove(struct hid_device *hdev)
Ping Cheng3bea7332006-07-13 18:01:36 -07002747{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002748 struct wacom *wacom = hid_get_drvdata(hdev);
Benjamin Tissoiresf6205162016-02-12 17:27:45 +01002749 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2750 struct wacom_features *features = &wacom_wac->features;
2751
2752 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
2753 hid_hw_close(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -07002754
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002755 hid_hw_stop(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04002756
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01002757 cancel_delayed_work_sync(&wacom->init_work);
Benjamin Tissoiresd17d1f12016-07-13 18:05:52 +02002758 cancel_work_sync(&wacom->wireless_work);
2759 cancel_work_sync(&wacom->battery_work);
Benjamin Tissoirese6f28132016-07-13 18:06:01 +02002760 cancel_work_sync(&wacom->remote_work);
Benjamin Tissoires4082da82017-02-14 21:27:18 -08002761 cancel_work_sync(&wacom->mode_change_work);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07002762 if (hdev->bus == BUS_BLUETOOTH)
2763 device_remove_file(&hdev->dev, &dev_attr_speed);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002764
Benjamin Tissoiresc0265a942017-01-20 16:20:12 +01002765 /* make sure we don't trigger the LEDs */
2766 wacom_led_groups_release(wacom);
Aaron Armstrong Skomrab6b1f192017-03-06 10:54:58 -08002767
2768 if (wacom->wacom_wac.features.type != REMOTE)
2769 wacom_release_resources(wacom);
Benjamin Tissoires5b779fc2017-01-20 16:20:11 +01002770
Jason Gerecke83417202017-11-10 11:50:01 -08002771 kfifo_free(&wacom_wac->pen_fifo);
2772
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002773 hid_set_drvdata(hdev, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04002774}
2775
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07002776#ifdef CONFIG_PM
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002777static int wacom_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04002778{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002779 struct wacom *wacom = hid_get_drvdata(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04002780
2781 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002782
2783 /* switch to wacom mode first */
Benjamin Tissoiresa544c612017-01-20 16:20:13 +01002784 _wacom_query_tablet_data(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002785 wacom_led_control(wacom);
2786
Oliver Neukume7224092008-04-15 01:31:57 -04002787 mutex_unlock(&wacom->lock);
2788
2789 return 0;
2790}
2791
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002792static int wacom_reset_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04002793{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002794 return wacom_resume(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04002795}
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07002796#endif /* CONFIG_PM */
Oliver Neukume7224092008-04-15 01:31:57 -04002797
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002798static struct hid_driver wacom_driver = {
Ping Cheng3bea7332006-07-13 18:01:36 -07002799 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08002800 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07002801 .probe = wacom_probe,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002802 .remove = wacom_remove,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04002803 .report = wacom_wac_report,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002804#ifdef CONFIG_PM
Oliver Neukume7224092008-04-15 01:31:57 -04002805 .resume = wacom_resume,
2806 .reset_resume = wacom_reset_resume,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002807#endif
2808 .raw_event = wacom_raw_event,
Ping Cheng3bea7332006-07-13 18:01:36 -07002809};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07002810module_hid_driver(wacom_driver);
Benjamin Tissoiresf2e0a7d2014-08-06 14:07:49 -07002811
2812MODULE_VERSION(DRIVER_VERSION);
2813MODULE_AUTHOR(DRIVER_AUTHOR);
2814MODULE_DESCRIPTION(DRIVER_DESC);
Grant Grundler7021b602017-01-05 11:07:04 -08002815MODULE_LICENSE("GPL");