blob: ccf1883318c37ff401c08a147d365ab2fbb0d5df [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
Ping Cheng3bea7332006-07-13 18:01:36 -070019
Ping Cheng912ca212014-09-10 12:41:31 -070020#define WAC_CMD_WL_LED_CONTROL 0x03
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070021#define WAC_CMD_LED_CONTROL 0x20
22#define WAC_CMD_ICON_START 0x21
23#define WAC_CMD_ICON_XFER 0x23
Benjamin Tissoires849e2f02014-08-06 13:58:25 -070024#define WAC_CMD_ICON_BT_XFER 0x26
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070025#define WAC_CMD_RETRIES 10
Aaron Skomra72b236d2015-08-20 16:05:17 -070026#define WAC_CMD_DELETE_PAIRING 0x20
27#define WAC_CMD_UNPAIR_ALL 0xFF
28#define WAC_REMOTE_SERIAL_MAX_STRLEN 9
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070029
Ping Chenge0984bc2014-09-10 12:40:05 -070030#define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
31#define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)
Aaron Skomra72b236d2015-08-20 16:05:17 -070032#define DEV_ATTR_RO_PERM (S_IRUSR | S_IRGRP)
Ping Chenge0984bc2014-09-10 12:40:05 -070033
Ping Chengc64d8832014-09-10 12:41:04 -070034static int wacom_get_report(struct hid_device *hdev, u8 type, u8 *buf,
35 size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070036{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070037 int retval;
38
39 do {
Ping Chengc64d8832014-09-10 12:41:04 -070040 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070041 HID_REQ_GET_REPORT);
Jason Gereckeaef31562015-05-21 10:44:31 -070042 } while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);
43
44 if (retval < 0)
45 hid_err(hdev, "wacom_get_report: ran out of retries "
46 "(last error = %d)\n", retval);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070047
48 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070049}
50
Przemo Firszt296b7372014-08-06 14:00:38 -070051static int wacom_set_report(struct hid_device *hdev, u8 type, u8 *buf,
52 size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070053{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070054 int retval;
55
56 do {
Przemo Firszt296b7372014-08-06 14:00:38 -070057 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070058 HID_REQ_SET_REPORT);
Jason Gereckeaef31562015-05-21 10:44:31 -070059 } while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);
60
61 if (retval < 0)
62 hid_err(hdev, "wacom_set_report: ran out of retries "
63 "(last error = %d)\n", retval);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070064
65 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070066}
67
Benjamin Tissoires29b47392014-07-24 12:52:23 -070068static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
69 u8 *raw_data, int size)
Ping Cheng3bea7332006-07-13 18:01:36 -070070{
Benjamin Tissoires29b47392014-07-24 12:52:23 -070071 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070072
Benjamin Tissoires29b47392014-07-24 12:52:23 -070073 if (size > WACOM_PKGLEN_MAX)
74 return 1;
Ping Cheng3bea7332006-07-13 18:01:36 -070075
Benjamin Tissoires29b47392014-07-24 12:52:23 -070076 memcpy(wacom->wacom_wac.data, raw_data, size);
Ping Cheng3bea7332006-07-13 18:01:36 -070077
Benjamin Tissoires29b47392014-07-24 12:52:23 -070078 wacom_wac_irq(&wacom->wacom_wac, size);
79
80 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -070081}
82
Ping Cheng3bea7332006-07-13 18:01:36 -070083static int wacom_open(struct input_dev *dev)
84{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -040085 struct wacom *wacom = input_get_drvdata(dev);
Ping Cheng3bea7332006-07-13 18:01:36 -070086
Benjamin Tissoiresdff67412014-12-01 11:52:40 -050087 return hid_hw_open(wacom->hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070088}
89
90static void wacom_close(struct input_dev *dev)
91{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -040092 struct wacom *wacom = input_get_drvdata(dev);
Ping Cheng3bea7332006-07-13 18:01:36 -070093
Benjamin Tissoires29b47392014-07-24 12:52:23 -070094 hid_hw_close(wacom->hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070095}
96
Chris Bagwell16bf2882012-03-25 23:26:20 -070097/*
Benjamin Tissoires198fdee2014-07-24 13:03:05 -070098 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
Jason Gerecke115d5e12012-10-03 17:24:32 -070099 */
100static int wacom_calc_hid_res(int logical_extents, int physical_extents,
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700101 unsigned unit, int exponent)
Jason Gerecke115d5e12012-10-03 17:24:32 -0700102{
Benjamin Tissoires198fdee2014-07-24 13:03:05 -0700103 struct hid_field field = {
104 .logical_maximum = logical_extents,
105 .physical_maximum = physical_extents,
106 .unit = unit,
107 .unit_exponent = exponent,
108 };
Jason Gerecke115d5e12012-10-03 17:24:32 -0700109
Benjamin Tissoires198fdee2014-07-24 13:03:05 -0700110 return hidinput_calc_abs_res(&field, ABS_X);
Jason Gerecke115d5e12012-10-03 17:24:32 -0700111}
112
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700113static void wacom_feature_mapping(struct hid_device *hdev,
114 struct hid_field *field, struct hid_usage *usage)
Chris Bagwell41343612011-10-26 22:32:52 -0700115{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700116 struct wacom *wacom = hid_get_drvdata(hdev);
117 struct wacom_features *features = &wacom->wacom_wac.features;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400118 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400119 u8 *data;
120 int ret;
Chris Bagwell41343612011-10-26 22:32:52 -0700121
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700122 switch (usage->hid) {
123 case HID_DG_CONTACTMAX:
124 /* leave touch_max as is if predefined */
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400125 if (!features->touch_max) {
126 /* read manually */
127 data = kzalloc(2, GFP_KERNEL);
128 if (!data)
129 break;
130 data[0] = field->report->id;
131 ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
Jason Gerecke05e8fd92015-05-21 10:44:32 -0700132 data, 2, WAC_CMD_RETRIES);
133 if (ret == 2) {
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400134 features->touch_max = data[1];
Jason Gerecke05e8fd92015-05-21 10:44:32 -0700135 } else {
136 features->touch_max = 16;
137 hid_warn(hdev, "wacom_feature_mapping: "
138 "could not get HID_DG_CONTACTMAX, "
139 "defaulting to %d\n",
140 features->touch_max);
141 }
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400142 kfree(data);
143 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700144 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400145 case HID_DG_INPUTMODE:
146 /* Ignore if value index is out of bounds. */
147 if (usage->usage_index >= field->report_count) {
148 dev_err(&hdev->dev, "HID_DG_INPUTMODE out of range\n");
149 break;
150 }
151
152 hid_data->inputmode = field->report->id;
153 hid_data->inputmode_index = usage->usage_index;
154 break;
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700155
156 case HID_UP_DIGITIZER:
157 if (field->report->id == 0x0B &&
158 (field->application == WACOM_G9_DIGITIZER ||
159 field->application == WACOM_G11_DIGITIZER)) {
160 wacom->wacom_wac.mode_report = field->report->id;
161 wacom->wacom_wac.mode_value = 0;
162 }
163 break;
164
165 case WACOM_G9_PAGE:
166 case WACOM_G11_PAGE:
167 if (field->report->id == 0x03 &&
168 (field->application == WACOM_G9_TOUCHSCREEN ||
169 field->application == WACOM_G11_TOUCHSCREEN)) {
170 wacom->wacom_wac.mode_report = field->report->id;
171 wacom->wacom_wac.mode_value = 0;
172 }
173 break;
Ping Chengf393ee22012-04-29 21:09:17 -0700174 }
175}
176
Chris Bagwell428f8582011-10-26 22:26:59 -0700177/*
178 * Interface Descriptor of wacom devices can be incomplete and
179 * inconsistent so wacom_features table is used to store stylus
180 * device's packet lengths, various maximum values, and tablet
181 * resolution based on product ID's.
182 *
183 * For devices that contain 2 interfaces, wacom_features table is
184 * inaccurate for the touch interface. Since the Interface Descriptor
185 * for touch interfaces has pretty complete data, this function exists
186 * to query tablet for this missing information instead of hard coding in
187 * an additional table.
188 *
189 * A typical Interface Descriptor for a stylus will contain a
190 * boot mouse application collection that is not of interest and this
191 * function will ignore it.
192 *
193 * It also contains a digitizer application collection that also is not
194 * of interest since any information it contains would be duplicate
195 * of what is in wacom_features. Usually it defines a report of an array
196 * of bytes that could be used as max length of the stylus packet returned.
197 * If it happens to define a Digitizer-Stylus Physical Collection then
198 * the X and Y logical values contain valid data but it is ignored.
199 *
200 * A typical Interface Descriptor for a touch interface will contain a
201 * Digitizer-Finger Physical Collection which will define both logical
202 * X/Y maximum as well as the physical size of tablet. Since touch
203 * interfaces haven't supported pressure or distance, this is enough
204 * information to override invalid values in the wacom_features table.
Chris Bagwell41343612011-10-26 22:32:52 -0700205 *
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700206 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
207 * data. We deal with them after returning from this function.
Chris Bagwell428f8582011-10-26 22:26:59 -0700208 */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700209static void wacom_usage_mapping(struct hid_device *hdev,
210 struct hid_field *field, struct hid_usage *usage)
211{
212 struct wacom *wacom = hid_get_drvdata(hdev);
213 struct wacom_features *features = &wacom->wacom_wac.features;
Benjamin Tissoiresd97a5522015-01-05 16:32:12 -0500214 bool finger = WACOM_FINGER_FIELD(field);
215 bool pen = WACOM_PEN_FIELD(field);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700216
217 /*
218 * Requiring Stylus Usage will ignore boot mouse
219 * X/Y values and some cases of invalid Digitizer X/Y
220 * values commonly reported.
221 */
Jason Gerecke042628a2015-04-30 17:51:54 -0700222 if (pen)
Jason Gereckeaa86b182015-06-15 18:01:42 -0700223 features->device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke042628a2015-04-30 17:51:54 -0700224 else if (finger)
Jason Gereckeaa86b182015-06-15 18:01:42 -0700225 features->device_type |= WACOM_DEVICETYPE_TOUCH;
Jason Gerecke042628a2015-04-30 17:51:54 -0700226 else
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700227 return;
228
Ping Cheng30ebc1a2014-11-18 13:29:16 -0800229 /*
230 * Bamboo models do not support HID_DG_CONTACTMAX.
231 * And, Bamboo Pen only descriptor contains touch.
232 */
Ping Cheng3b164a02015-09-23 09:59:10 -0700233 if (features->type > BAMBOO_PT) {
Ping Cheng30ebc1a2014-11-18 13:29:16 -0800234 /* ISDv4 touch devices at least supports one touch point */
235 if (finger && !features->touch_max)
236 features->touch_max = 1;
237 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700238
239 switch (usage->hid) {
240 case HID_GD_X:
241 features->x_max = field->logical_maximum;
242 if (finger) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700243 features->x_phy = field->physical_maximum;
Ping Cheng3b164a02015-09-23 09:59:10 -0700244 if ((features->type != BAMBOO_PT) &&
245 (features->type != BAMBOO_TOUCH)) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700246 features->unit = field->unit;
247 features->unitExpo = field->unit_exponent;
248 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700249 }
250 break;
251 case HID_GD_Y:
252 features->y_max = field->logical_maximum;
253 if (finger) {
254 features->y_phy = field->physical_maximum;
Ping Cheng3b164a02015-09-23 09:59:10 -0700255 if ((features->type != BAMBOO_PT) &&
256 (features->type != BAMBOO_TOUCH)) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700257 features->unit = field->unit;
258 features->unitExpo = field->unit_exponent;
259 }
260 }
261 break;
262 case HID_DG_TIPPRESSURE:
263 if (pen)
264 features->pressure_max = field->logical_maximum;
265 break;
266 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -0400267
268 if (features->type == HID_GENERIC)
269 wacom_wac_usage_mapping(hdev, field, usage);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700270}
271
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800272static void wacom_post_parse_hid(struct hid_device *hdev,
273 struct wacom_features *features)
274{
275 struct wacom *wacom = hid_get_drvdata(hdev);
276 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
277
278 if (features->type == HID_GENERIC) {
279 /* Any last-minute generic device setup */
280 if (features->touch_max > 1) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700281 input_mt_init_slots(wacom_wac->touch_input, wacom_wac->features.touch_max,
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800282 INPUT_MT_DIRECT);
283 }
284 }
285}
286
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700287static void wacom_parse_hid(struct hid_device *hdev,
Ping Chengec67bbe2009-12-15 00:35:24 -0800288 struct wacom_features *features)
Ping Cheng545f4e92008-11-24 11:44:27 -0500289{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700290 struct hid_report_enum *rep_enum;
291 struct hid_report *hreport;
292 int i, j;
Ping Cheng545f4e92008-11-24 11:44:27 -0500293
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700294 /* check features first */
295 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
296 list_for_each_entry(hreport, &rep_enum->report_list, list) {
297 for (i = 0; i < hreport->maxfield; i++) {
298 /* Ignore if report count is out of bounds. */
299 if (hreport->field[i]->report_count < 1)
300 continue;
Ping Cheng545f4e92008-11-24 11:44:27 -0500301
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700302 for (j = 0; j < hreport->field[i]->maxusage; j++) {
303 wacom_feature_mapping(hdev, hreport->field[i],
304 hreport->field[i]->usage + j);
Ping Cheng545f4e92008-11-24 11:44:27 -0500305 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500306 }
307 }
308
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700309 /* now check the input usages */
310 rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
311 list_for_each_entry(hreport, &rep_enum->report_list, list) {
312
313 if (!hreport->maxfield)
314 continue;
315
316 for (i = 0; i < hreport->maxfield; i++)
317 for (j = 0; j < hreport->field[i]->maxusage; j++)
318 wacom_usage_mapping(hdev, hreport->field[i],
319 hreport->field[i]->usage + j);
320 }
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800321
322 wacom_post_parse_hid(hdev, features);
Ping Cheng545f4e92008-11-24 11:44:27 -0500323}
324
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400325static int wacom_hid_set_device_mode(struct hid_device *hdev)
326{
327 struct wacom *wacom = hid_get_drvdata(hdev);
328 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
329 struct hid_report *r;
330 struct hid_report_enum *re;
331
332 if (hid_data->inputmode < 0)
333 return 0;
334
335 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
336 r = re->report_id_hash[hid_data->inputmode];
337 if (r) {
338 r->field[0]->value[hid_data->inputmode_index] = 2;
339 hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
340 }
341 return 0;
342}
343
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700344static int wacom_set_device_mode(struct hid_device *hdev,
345 struct wacom_wac *wacom_wac)
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700346{
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700347 u8 *rep_data;
348 struct hid_report *r;
349 struct hid_report_enum *re;
350 int length;
Jason Gereckefe494bc2012-10-03 17:25:35 -0700351 int error = -ENOMEM, limit = 0;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700352
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700353 if (wacom_wac->mode_report < 0)
354 return 0;
355
356 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
357 r = re->report_id_hash[wacom_wac->mode_report];
358 if (!r)
359 return -EINVAL;
360
361 rep_data = hid_alloc_report_buf(r, GFP_KERNEL);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700362 if (!rep_data)
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700363 return -ENOMEM;
364
365 length = hid_report_len(r);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700366
Jason Gereckefe494bc2012-10-03 17:25:35 -0700367 do {
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700368 rep_data[0] = wacom_wac->mode_report;
369 rep_data[1] = wacom_wac->mode_value;
Chris Bagwell9937c022013-01-23 19:37:34 -0800370
Przemo Firszt296b7372014-08-06 14:00:38 -0700371 error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
372 length, 1);
Benjamin Tissoires3cb83152014-07-24 12:47:47 -0700373 if (error >= 0)
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700374 error = wacom_get_report(hdev, HID_FEATURE_REPORT,
Ping Chengc64d8832014-09-10 12:41:04 -0700375 rep_data, length, 1);
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700376 } while (error >= 0 &&
377 rep_data[1] != wacom_wac->mode_report &&
378 limit++ < WAC_MSG_RETRIES);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700379
380 kfree(rep_data);
381
382 return error < 0 ? error : 0;
383}
384
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700385static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
386 struct wacom_features *features)
387{
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700388 struct wacom *wacom = hid_get_drvdata(hdev);
389 int ret;
390 u8 rep_data[2];
391
392 switch (features->type) {
393 case GRAPHIRE_BT:
394 rep_data[0] = 0x03;
395 rep_data[1] = 0x00;
Przemo Firszt296b7372014-08-06 14:00:38 -0700396 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
397 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700398
399 if (ret >= 0) {
400 rep_data[0] = speed == 0 ? 0x05 : 0x06;
401 rep_data[1] = 0x00;
402
403 ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700404 rep_data, 2, 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700405
406 if (ret >= 0) {
407 wacom->wacom_wac.bt_high_speed = speed;
408 return 0;
409 }
410 }
411
412 /*
413 * Note that if the raw queries fail, it's not a hard failure
414 * and it is safe to continue
415 */
416 hid_warn(hdev, "failed to poke device, command %d, err %d\n",
417 rep_data[0], ret);
418 break;
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700419 case INTUOS4WL:
420 if (speed == 1)
421 wacom->wacom_wac.bt_features &= ~0x20;
422 else
423 wacom->wacom_wac.bt_features |= 0x20;
424
425 rep_data[0] = 0x03;
426 rep_data[1] = wacom->wacom_wac.bt_features;
427
Przemo Firszt296b7372014-08-06 14:00:38 -0700428 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
429 1);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700430 if (ret >= 0)
431 wacom->wacom_wac.bt_high_speed = speed;
432 break;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700433 }
434
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700435 return 0;
436}
437
Jason Gereckefe494bc2012-10-03 17:25:35 -0700438/*
439 * Switch the tablet into its most-capable mode. Wacom tablets are
440 * typically configured to power-up in a mode which sends mouse-like
441 * reports to the OS. To get absolute position, pressure data, etc.
442 * from the tablet, it is necessary to switch the tablet out of this
443 * mode and into one which sends the full range of tablet data.
444 */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700445static int wacom_query_tablet_data(struct hid_device *hdev,
446 struct wacom_features *features)
Jason Gereckefe494bc2012-10-03 17:25:35 -0700447{
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700448 struct wacom *wacom = hid_get_drvdata(hdev);
449 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
450
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700451 if (hdev->bus == BUS_BLUETOOTH)
452 return wacom_bt_query_tablet_data(hdev, 1, features);
453
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700454 if (features->type != HID_GENERIC) {
455 if (features->device_type & WACOM_DEVICETYPE_TOUCH) {
456 if (features->type > TABLETPC) {
457 /* MT Tablet PC touch */
458 wacom_wac->mode_report = 3;
459 wacom_wac->mode_value = 4;
460 } else if (features->type == WACOM_24HDT) {
461 wacom_wac->mode_report = 18;
462 wacom_wac->mode_value = 2;
463 } else if (features->type == WACOM_27QHDT) {
464 wacom_wac->mode_report = 131;
465 wacom_wac->mode_value = 2;
466 } else if (features->type == BAMBOO_PAD) {
467 wacom_wac->mode_report = 2;
468 wacom_wac->mode_value = 2;
469 }
470 } else if (features->device_type & WACOM_DEVICETYPE_PEN) {
471 if (features->type <= BAMBOO_PT) {
472 wacom_wac->mode_report = 2;
473 wacom_wac->mode_value = 2;
474 }
Jason Gereckefe494bc2012-10-03 17:25:35 -0700475 }
476 }
477
Jason Gerecke326ea2a2016-04-04 11:26:52 -0700478 wacom_set_device_mode(hdev, wacom_wac);
479
480 if (features->type == HID_GENERIC)
481 return wacom_hid_set_device_mode(hdev);
482
Jason Gereckefe494bc2012-10-03 17:25:35 -0700483 return 0;
484}
485
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700486static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
Ping Cheng19635182012-04-29 21:09:18 -0700487 struct wacom_features *features)
Ping Chengec67bbe2009-12-15 00:35:24 -0800488{
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700489 struct wacom *wacom = hid_get_drvdata(hdev);
490 struct usb_interface *intf = wacom->intf;
Ping Chengec67bbe2009-12-15 00:35:24 -0800491
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700492 /* default features */
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700493 features->x_fuzz = 4;
494 features->y_fuzz = 4;
495 features->pressure_fuzz = 0;
496 features->distance_fuzz = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800497
Chris Bagwelld3825d52012-03-25 23:26:11 -0700498 /*
499 * The wireless device HID is basic and layout conflicts with
500 * other tablets (monitor and touch interface can look like pen).
501 * Skip the query for this type and modify defaults based on
502 * interface number.
503 */
504 if (features->type == WIRELESS) {
Jason Gerecke3f14a632015-08-03 10:17:05 -0700505 if (intf->cur_altsetting->desc.bInterfaceNumber == 0)
Jason Gereckeccad85c2015-08-03 10:17:04 -0700506 features->device_type = WACOM_DEVICETYPE_WL_MONITOR;
Jason Gerecke3f14a632015-08-03 10:17:05 -0700507 else
Jason Gereckeaa86b182015-06-15 18:01:42 -0700508 features->device_type = WACOM_DEVICETYPE_NONE;
Jason Gerecke3f14a632015-08-03 10:17:05 -0700509 return;
Chris Bagwelld3825d52012-03-25 23:26:11 -0700510 }
511
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700512 wacom_parse_hid(hdev, features);
Ping Chengec67bbe2009-12-15 00:35:24 -0800513}
514
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700515struct wacom_hdev_data {
Ping Cheng4492eff2010-03-19 22:18:15 -0700516 struct list_head list;
517 struct kref kref;
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700518 struct hid_device *dev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700519 struct wacom_shared shared;
520};
521
522static LIST_HEAD(wacom_udev_list);
523static DEFINE_MUTEX(wacom_udev_list_lock);
524
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700525static bool wacom_are_sibling(struct hid_device *hdev,
526 struct hid_device *sibling)
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700527{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700528 struct wacom *wacom = hid_get_drvdata(hdev);
529 struct wacom_features *features = &wacom->wacom_wac.features;
530 int vid = features->oVid;
531 int pid = features->oPid;
532 int n1,n2;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700533
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700534 if (vid == 0 && pid == 0) {
535 vid = hdev->vendor;
536 pid = hdev->product;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700537 }
538
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700539 if (vid != sibling->vendor || pid != sibling->product)
540 return false;
541
542 /* Compare the physical path. */
543 n1 = strrchr(hdev->phys, '.') - hdev->phys;
544 n2 = strrchr(sibling->phys, '.') - sibling->phys;
545 if (n1 != n2 || n1 <= 0 || n2 <= 0)
546 return false;
547
548 return !strncmp(hdev->phys, sibling->phys, n1);
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700549}
550
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700551static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700552{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700553 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700554
555 list_for_each_entry(data, &wacom_udev_list, list) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700556 if (wacom_are_sibling(hdev, data->dev)) {
Ping Cheng4492eff2010-03-19 22:18:15 -0700557 kref_get(&data->kref);
558 return data;
559 }
560 }
561
562 return NULL;
563}
564
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700565static int wacom_add_shared_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700566{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700567 struct wacom *wacom = hid_get_drvdata(hdev);
568 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
569 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700570 int retval = 0;
571
572 mutex_lock(&wacom_udev_list_lock);
573
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700574 data = wacom_get_hdev_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -0700575 if (!data) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700576 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
Ping Cheng4492eff2010-03-19 22:18:15 -0700577 if (!data) {
578 retval = -ENOMEM;
579 goto out;
580 }
581
582 kref_init(&data->kref);
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700583 data->dev = hdev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700584 list_add_tail(&data->list, &wacom_udev_list);
585 }
586
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700587 wacom_wac->shared = &data->shared;
Ping Cheng4492eff2010-03-19 22:18:15 -0700588
Jason Gereckeaa86b182015-06-15 18:01:42 -0700589 if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500590 wacom_wac->shared->touch = hdev;
Jason Gereckeaa86b182015-06-15 18:01:42 -0700591 else if (wacom_wac->features.device_type & WACOM_DEVICETYPE_PEN)
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500592 wacom_wac->shared->pen = hdev;
593
Ping Cheng4492eff2010-03-19 22:18:15 -0700594out:
595 mutex_unlock(&wacom_udev_list_lock);
596 return retval;
597}
598
599static void wacom_release_shared_data(struct kref *kref)
600{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700601 struct wacom_hdev_data *data =
602 container_of(kref, struct wacom_hdev_data, kref);
Ping Cheng4492eff2010-03-19 22:18:15 -0700603
604 mutex_lock(&wacom_udev_list_lock);
605 list_del(&data->list);
606 mutex_unlock(&wacom_udev_list_lock);
607
608 kfree(data);
609}
610
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500611static void wacom_remove_shared_data(struct wacom *wacom)
Ping Cheng4492eff2010-03-19 22:18:15 -0700612{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700613 struct wacom_hdev_data *data;
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500614 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Ping Cheng4492eff2010-03-19 22:18:15 -0700615
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500616 if (wacom_wac->shared) {
617 data = container_of(wacom_wac->shared, struct wacom_hdev_data,
618 shared);
619
620 if (wacom_wac->shared->touch == wacom->hdev)
621 wacom_wac->shared->touch = NULL;
622 else if (wacom_wac->shared->pen == wacom->hdev)
623 wacom_wac->shared->pen = NULL;
624
Ping Cheng4492eff2010-03-19 22:18:15 -0700625 kref_put(&data->kref, wacom_release_shared_data);
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500626 wacom_wac->shared = NULL;
Ping Cheng4492eff2010-03-19 22:18:15 -0700627 }
628}
629
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700630static int wacom_led_control(struct wacom *wacom)
631{
632 unsigned char *buf;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700633 int retval;
Ping Cheng912ca212014-09-10 12:41:31 -0700634 unsigned char report_id = WAC_CMD_LED_CONTROL;
635 int buf_size = 9;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700636
Ping Cheng912ca212014-09-10 12:41:31 -0700637 if (wacom->wacom_wac.pid) { /* wireless connected */
638 report_id = WAC_CMD_WL_LED_CONTROL;
639 buf_size = 13;
640 }
641 buf = kzalloc(buf_size, GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700642 if (!buf)
643 return -ENOMEM;
644
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700645 if (wacom->wacom_wac.features.type >= INTUOS5S &&
Ping Cheng9a35c412013-09-20 09:51:56 -0700646 wacom->wacom_wac.features.type <= INTUOSPL) {
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700647 /*
648 * Touch Ring and crop mark LED luminance may take on
649 * one of four values:
650 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
651 */
652 int ring_led = wacom->led.select[0] & 0x03;
653 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
654 int crop_lum = 0;
Ping Cheng912ca212014-09-10 12:41:31 -0700655 unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
Ping Cheng09e7d942011-10-04 23:51:14 -0700656
Ping Cheng912ca212014-09-10 12:41:31 -0700657 buf[0] = report_id;
658 if (wacom->wacom_wac.pid) {
659 wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
660 buf, buf_size, WAC_CMD_RETRIES);
661 buf[0] = report_id;
662 buf[4] = led_bits;
663 } else
664 buf[1] = led_bits;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700665 }
666 else {
667 int led = wacom->led.select[0] | 0x4;
Ping Cheng09e7d942011-10-04 23:51:14 -0700668
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700669 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
670 wacom->wacom_wac.features.type == WACOM_24HD)
671 led |= (wacom->led.select[1] << 4) | 0x40;
672
Ping Cheng912ca212014-09-10 12:41:31 -0700673 buf[0] = report_id;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700674 buf[1] = led;
675 buf[2] = wacom->led.llv;
676 buf[3] = wacom->led.hlv;
677 buf[4] = wacom->led.img_lum;
678 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700679
Ping Cheng912ca212014-09-10 12:41:31 -0700680 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
Przemo Firszt296b7372014-08-06 14:00:38 -0700681 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700682 kfree(buf);
683
684 return retval;
685}
686
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700687static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
688 const unsigned len, const void *img)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700689{
690 unsigned char *buf;
691 int i, retval;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700692 const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700693
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700694 buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700695 if (!buf)
696 return -ENOMEM;
697
698 /* Send 'start' command */
699 buf[0] = WAC_CMD_ICON_START;
700 buf[1] = 1;
Przemo Firszt296b7372014-08-06 14:00:38 -0700701 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
702 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700703 if (retval < 0)
704 goto out;
705
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700706 buf[0] = xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700707 buf[1] = button_id & 0x07;
708 for (i = 0; i < 4; i++) {
709 buf[2] = i;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700710 memcpy(buf + 3, img + i * chunk_len, chunk_len);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700711
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700712 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700713 buf, chunk_len + 3, WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700714 if (retval < 0)
715 break;
716 }
717
718 /* Send 'stop' */
719 buf[0] = WAC_CMD_ICON_START;
720 buf[1] = 0;
Przemo Firszt296b7372014-08-06 14:00:38 -0700721 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
722 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700723
724out:
725 kfree(buf);
726 return retval;
727}
728
Ping Cheng09e7d942011-10-04 23:51:14 -0700729static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700730 const char *buf, size_t count)
731{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800732 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700733 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700734 unsigned int id;
735 int err;
736
737 err = kstrtouint(buf, 10, &id);
738 if (err)
739 return err;
740
741 mutex_lock(&wacom->lock);
742
Ping Cheng09e7d942011-10-04 23:51:14 -0700743 wacom->led.select[set_id] = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700744 err = wacom_led_control(wacom);
745
746 mutex_unlock(&wacom->lock);
747
748 return err < 0 ? err : count;
749}
750
Ping Cheng09e7d942011-10-04 23:51:14 -0700751#define DEVICE_LED_SELECT_ATTR(SET_ID) \
752static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
753 struct device_attribute *attr, const char *buf, size_t count) \
754{ \
755 return wacom_led_select_store(dev, SET_ID, buf, count); \
756} \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700757static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
758 struct device_attribute *attr, char *buf) \
759{ \
Geliang Tangee79a8f2015-12-27 17:25:21 +0800760 struct hid_device *hdev = to_hid_device(dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700761 struct wacom *wacom = hid_get_drvdata(hdev); \
Ping Cheng37449ad2014-09-10 12:40:30 -0700762 return scnprintf(buf, PAGE_SIZE, "%d\n", \
763 wacom->led.select[SET_ID]); \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700764} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700765static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700766 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -0700767 wacom_led##SET_ID##_select_store)
768
769DEVICE_LED_SELECT_ATTR(0);
770DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700771
772static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
773 const char *buf, size_t count)
774{
775 unsigned int value;
776 int err;
777
778 err = kstrtouint(buf, 10, &value);
779 if (err)
780 return err;
781
782 mutex_lock(&wacom->lock);
783
784 *dest = value & 0x7f;
785 err = wacom_led_control(wacom);
786
787 mutex_unlock(&wacom->lock);
788
789 return err < 0 ? err : count;
790}
791
792#define DEVICE_LUMINANCE_ATTR(name, field) \
793static ssize_t wacom_##name##_luminance_store(struct device *dev, \
794 struct device_attribute *attr, const char *buf, size_t count) \
795{ \
Geliang Tangee79a8f2015-12-27 17:25:21 +0800796 struct hid_device *hdev = to_hid_device(dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700797 struct wacom *wacom = hid_get_drvdata(hdev); \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700798 \
799 return wacom_luminance_store(wacom, &wacom->led.field, \
800 buf, count); \
801} \
Ping Cheng37449ad2014-09-10 12:40:30 -0700802static ssize_t wacom_##name##_luminance_show(struct device *dev, \
803 struct device_attribute *attr, char *buf) \
804{ \
805 struct wacom *wacom = dev_get_drvdata(dev); \
806 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
807} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700808static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
Ping Cheng37449ad2014-09-10 12:40:30 -0700809 wacom_##name##_luminance_show, \
810 wacom_##name##_luminance_store)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700811
812DEVICE_LUMINANCE_ATTR(status0, llv);
813DEVICE_LUMINANCE_ATTR(status1, hlv);
814DEVICE_LUMINANCE_ATTR(buttons, img_lum);
815
816static ssize_t wacom_button_image_store(struct device *dev, int button_id,
817 const char *buf, size_t count)
818{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800819 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700820 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700821 int err;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700822 unsigned len;
823 u8 xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700824
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700825 if (hdev->bus == BUS_BLUETOOTH) {
826 len = 256;
827 xfer_id = WAC_CMD_ICON_BT_XFER;
828 } else {
829 len = 1024;
830 xfer_id = WAC_CMD_ICON_XFER;
831 }
832
833 if (count != len)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700834 return -EINVAL;
835
836 mutex_lock(&wacom->lock);
837
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700838 err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700839
840 mutex_unlock(&wacom->lock);
841
842 return err < 0 ? err : count;
843}
844
845#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
846static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
847 struct device_attribute *attr, const char *buf, size_t count) \
848{ \
849 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
850} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700851static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700852 NULL, wacom_btnimg##BUTTON_ID##_store)
853
854DEVICE_BTNIMG_ATTR(0);
855DEVICE_BTNIMG_ATTR(1);
856DEVICE_BTNIMG_ATTR(2);
857DEVICE_BTNIMG_ATTR(3);
858DEVICE_BTNIMG_ATTR(4);
859DEVICE_BTNIMG_ATTR(5);
860DEVICE_BTNIMG_ATTR(6);
861DEVICE_BTNIMG_ATTR(7);
862
Ping Cheng09e7d942011-10-04 23:51:14 -0700863static struct attribute *cintiq_led_attrs[] = {
864 &dev_attr_status_led0_select.attr,
865 &dev_attr_status_led1_select.attr,
866 NULL
867};
868
869static struct attribute_group cintiq_led_attr_group = {
870 .name = "wacom_led",
871 .attrs = cintiq_led_attrs,
872};
873
874static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700875 &dev_attr_status0_luminance.attr,
876 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -0700877 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700878 &dev_attr_buttons_luminance.attr,
879 &dev_attr_button0_rawimg.attr,
880 &dev_attr_button1_rawimg.attr,
881 &dev_attr_button2_rawimg.attr,
882 &dev_attr_button3_rawimg.attr,
883 &dev_attr_button4_rawimg.attr,
884 &dev_attr_button5_rawimg.attr,
885 &dev_attr_button6_rawimg.attr,
886 &dev_attr_button7_rawimg.attr,
887 NULL
888};
889
Ping Cheng09e7d942011-10-04 23:51:14 -0700890static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700891 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -0700892 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700893};
894
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700895static struct attribute *intuos5_led_attrs[] = {
896 &dev_attr_status0_luminance.attr,
897 &dev_attr_status_led0_select.attr,
898 NULL
899};
900
901static struct attribute_group intuos5_led_attr_group = {
902 .name = "wacom_led",
903 .attrs = intuos5_led_attrs,
904};
905
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700906static int wacom_initialize_leds(struct wacom *wacom)
907{
908 int error;
909
Jason Gerecke862cf552015-06-15 18:01:43 -0700910 if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
911 return 0;
912
Ping Cheng09e7d942011-10-04 23:51:14 -0700913 /* Initialize default values */
914 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700915 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700916 case INTUOS4:
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700917 case INTUOS4WL:
Ping Cheng09e7d942011-10-04 23:51:14 -0700918 case INTUOS4L:
919 wacom->led.select[0] = 0;
920 wacom->led.select[1] = 0;
Ping Chengf4fa9a62011-10-04 23:49:42 -0700921 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700922 wacom->led.hlv = 20;
923 wacom->led.img_lum = 10;
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700924 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700925 &intuos4_led_attr_group);
926 break;
927
Jason Gerecke246835f2011-12-12 00:12:04 -0800928 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700929 case WACOM_21UX2:
930 wacom->led.select[0] = 0;
931 wacom->led.select[1] = 0;
932 wacom->led.llv = 0;
933 wacom->led.hlv = 0;
934 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700935
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700936 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700937 &cintiq_led_attr_group);
938 break;
939
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700940 case INTUOS5S:
941 case INTUOS5:
942 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700943 case INTUOSPS:
944 case INTUOSPM:
945 case INTUOSPL:
Jason Gerecke862cf552015-06-15 18:01:43 -0700946 wacom->led.select[0] = 0;
947 wacom->led.select[1] = 0;
948 wacom->led.llv = 32;
949 wacom->led.hlv = 0;
950 wacom->led.img_lum = 0;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700951
Jason Gerecke862cf552015-06-15 18:01:43 -0700952 error = sysfs_create_group(&wacom->hdev->dev.kobj,
953 &intuos5_led_attr_group);
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700954 break;
955
Ping Cheng09e7d942011-10-04 23:51:14 -0700956 default:
957 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700958 }
959
Ping Cheng09e7d942011-10-04 23:51:14 -0700960 if (error) {
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700961 hid_err(wacom->hdev,
Ping Cheng09e7d942011-10-04 23:51:14 -0700962 "cannot create sysfs group err: %d\n", error);
963 return error;
964 }
965 wacom_led_control(wacom);
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700966 wacom->led_initialized = true;
Ping Cheng09e7d942011-10-04 23:51:14 -0700967
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700968 return 0;
969}
970
971static void wacom_destroy_leds(struct wacom *wacom)
972{
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700973 if (!wacom->led_initialized)
974 return;
975
Jason Gerecke862cf552015-06-15 18:01:43 -0700976 if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
977 return;
978
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700979 wacom->led_initialized = false;
980
Ping Cheng09e7d942011-10-04 23:51:14 -0700981 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700982 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700983 case INTUOS4:
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700984 case INTUOS4WL:
Ping Cheng09e7d942011-10-04 23:51:14 -0700985 case INTUOS4L:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700986 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700987 &intuos4_led_attr_group);
988 break;
989
Jason Gerecke246835f2011-12-12 00:12:04 -0800990 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700991 case WACOM_21UX2:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700992 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700993 &cintiq_led_attr_group);
994 break;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700995
996 case INTUOS5S:
997 case INTUOS5:
998 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700999 case INTUOSPS:
1000 case INTUOSPM:
1001 case INTUOSPL:
Jason Gerecke862cf552015-06-15 18:01:43 -07001002 sysfs_remove_group(&wacom->hdev->dev.kobj,
1003 &intuos5_led_attr_group);
Jason Gerecke9b5b95d2012-04-03 15:50:37 -07001004 break;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001005 }
1006}
1007
Chris Bagwella1d552c2012-03-25 23:26:30 -07001008static enum power_supply_property wacom_battery_props[] = {
Jason Gerecke71fa6412015-03-11 10:25:41 -07001009 POWER_SUPPLY_PROP_PRESENT,
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001010 POWER_SUPPLY_PROP_STATUS,
Bastien Nocera6e2a6e82013-10-15 23:33:00 -07001011 POWER_SUPPLY_PROP_SCOPE,
Chris Bagwella1d552c2012-03-25 23:26:30 -07001012 POWER_SUPPLY_PROP_CAPACITY
1013};
1014
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001015static enum power_supply_property wacom_ac_props[] = {
1016 POWER_SUPPLY_PROP_PRESENT,
1017 POWER_SUPPLY_PROP_ONLINE,
1018 POWER_SUPPLY_PROP_SCOPE,
1019};
1020
Chris Bagwella1d552c2012-03-25 23:26:30 -07001021static int wacom_battery_get_property(struct power_supply *psy,
1022 enum power_supply_property psp,
1023 union power_supply_propval *val)
1024{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001025 struct wacom *wacom = power_supply_get_drvdata(psy);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001026 int ret = 0;
1027
1028 switch (psp) {
Jason Gerecke71fa6412015-03-11 10:25:41 -07001029 case POWER_SUPPLY_PROP_PRESENT:
1030 val->intval = wacom->wacom_wac.bat_connected;
1031 break;
Bastien Nocera6e2a6e82013-10-15 23:33:00 -07001032 case POWER_SUPPLY_PROP_SCOPE:
1033 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
1034 break;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001035 case POWER_SUPPLY_PROP_CAPACITY:
1036 val->intval =
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001037 wacom->wacom_wac.battery_capacity;
1038 break;
1039 case POWER_SUPPLY_PROP_STATUS:
1040 if (wacom->wacom_wac.bat_charging)
1041 val->intval = POWER_SUPPLY_STATUS_CHARGING;
1042 else if (wacom->wacom_wac.battery_capacity == 100 &&
1043 wacom->wacom_wac.ps_connected)
1044 val->intval = POWER_SUPPLY_STATUS_FULL;
Jason Gereckeb0882cb2015-03-06 11:47:43 -08001045 else if (wacom->wacom_wac.ps_connected)
1046 val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001047 else
1048 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001049 break;
1050 default:
1051 ret = -EINVAL;
1052 break;
1053 }
1054
1055 return ret;
1056}
1057
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001058static int wacom_ac_get_property(struct power_supply *psy,
1059 enum power_supply_property psp,
1060 union power_supply_propval *val)
1061{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001062 struct wacom *wacom = power_supply_get_drvdata(psy);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001063 int ret = 0;
1064
1065 switch (psp) {
1066 case POWER_SUPPLY_PROP_PRESENT:
1067 /* fall through */
1068 case POWER_SUPPLY_PROP_ONLINE:
1069 val->intval = wacom->wacom_wac.ps_connected;
1070 break;
1071 case POWER_SUPPLY_PROP_SCOPE:
1072 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
1073 break;
1074 default:
1075 ret = -EINVAL;
1076 break;
1077 }
1078 return ret;
1079}
1080
Chris Bagwella1d552c2012-03-25 23:26:30 -07001081static int wacom_initialize_battery(struct wacom *wacom)
1082{
Benjamin Tissoiresd70420b2014-07-25 17:31:51 -07001083 static atomic_t battery_no = ATOMIC_INIT(0);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001084 struct power_supply_config psy_cfg = { .drv_data = wacom, };
Benjamin Tissoiresd70420b2014-07-25 17:31:51 -07001085 unsigned long n;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001086
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001087 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001088 struct power_supply_desc *bat_desc = &wacom->battery_desc;
1089 struct power_supply_desc *ac_desc = &wacom->ac_desc;
Benjamin Tissoiresd70420b2014-07-25 17:31:51 -07001090 n = atomic_inc_return(&battery_no) - 1;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001091
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001092 bat_desc->properties = wacom_battery_props;
1093 bat_desc->num_properties = ARRAY_SIZE(wacom_battery_props);
1094 bat_desc->get_property = wacom_battery_get_property;
Benjamin Tissoiresd70420b2014-07-25 17:31:51 -07001095 sprintf(wacom->wacom_wac.bat_name, "wacom_battery_%ld", n);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001096 bat_desc->name = wacom->wacom_wac.bat_name;
1097 bat_desc->type = POWER_SUPPLY_TYPE_BATTERY;
1098 bat_desc->use_for_apm = 0;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001099
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001100 ac_desc->properties = wacom_ac_props;
1101 ac_desc->num_properties = ARRAY_SIZE(wacom_ac_props);
1102 ac_desc->get_property = wacom_ac_get_property;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001103 sprintf(wacom->wacom_wac.ac_name, "wacom_ac_%ld", n);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001104 ac_desc->name = wacom->wacom_wac.ac_name;
1105 ac_desc->type = POWER_SUPPLY_TYPE_MAINS;
1106 ac_desc->use_for_apm = 0;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001107
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001108 wacom->battery = power_supply_register(&wacom->hdev->dev,
1109 &wacom->battery_desc, &psy_cfg);
1110 if (IS_ERR(wacom->battery))
1111 return PTR_ERR(wacom->battery);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001112
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001113 power_supply_powers(wacom->battery, &wacom->hdev->dev);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001114
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001115 wacom->ac = power_supply_register(&wacom->hdev->dev,
1116 &wacom->ac_desc,
1117 &psy_cfg);
1118 if (IS_ERR(wacom->ac)) {
1119 power_supply_unregister(wacom->battery);
1120 return PTR_ERR(wacom->ac);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001121 }
1122
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001123 power_supply_powers(wacom->ac, &wacom->hdev->dev);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001124 }
1125
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001126 return 0;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001127}
1128
1129static void wacom_destroy_battery(struct wacom *wacom)
1130{
Linus Torvalds8de29a32015-04-14 08:25:26 -08001131 if (wacom->battery) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001132 power_supply_unregister(wacom->battery);
1133 wacom->battery = NULL;
1134 power_supply_unregister(wacom->ac);
1135 wacom->ac = NULL;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001136 }
Chris Bagwella1d552c2012-03-25 23:26:30 -07001137}
1138
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001139static ssize_t wacom_show_speed(struct device *dev,
1140 struct device_attribute
1141 *attr, char *buf)
1142{
Geliang Tangee79a8f2015-12-27 17:25:21 +08001143 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001144 struct wacom *wacom = hid_get_drvdata(hdev);
1145
1146 return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
1147}
1148
1149static ssize_t wacom_store_speed(struct device *dev,
1150 struct device_attribute *attr,
1151 const char *buf, size_t count)
1152{
Geliang Tangee79a8f2015-12-27 17:25:21 +08001153 struct hid_device *hdev = to_hid_device(dev);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001154 struct wacom *wacom = hid_get_drvdata(hdev);
1155 u8 new_speed;
1156
1157 if (kstrtou8(buf, 0, &new_speed))
1158 return -EINVAL;
1159
1160 if (new_speed != 0 && new_speed != 1)
1161 return -EINVAL;
1162
1163 wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
1164
1165 return count;
1166}
1167
Ping Chenge0984bc2014-09-10 12:40:05 -07001168static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001169 wacom_show_speed, wacom_store_speed);
1170
Aaron Skomra72b236d2015-08-20 16:05:17 -07001171
1172static ssize_t wacom_show_remote_mode(struct kobject *kobj,
1173 struct kobj_attribute *kattr,
1174 char *buf, int index)
1175{
Geliang Tang2cf83832015-12-27 17:25:24 +08001176 struct device *dev = kobj_to_dev(kobj->parent);
Geliang Tangee79a8f2015-12-27 17:25:21 +08001177 struct hid_device *hdev = to_hid_device(dev);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001178 struct wacom *wacom = hid_get_drvdata(hdev);
1179 u8 mode;
1180
1181 mode = wacom->led.select[index];
1182 if (mode >= 0 && mode < 3)
1183 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
1184 else
1185 return snprintf(buf, PAGE_SIZE, "%d\n", -1);
1186}
1187
1188#define DEVICE_EKR_ATTR_GROUP(SET_ID) \
1189static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj, \
1190 struct kobj_attribute *kattr, char *buf) \
1191{ \
1192 return wacom_show_remote_mode(kobj, kattr, buf, SET_ID); \
1193} \
1194static struct kobj_attribute remote##SET_ID##_mode_attr = { \
1195 .attr = {.name = "remote_mode", \
1196 .mode = DEV_ATTR_RO_PERM}, \
1197 .show = wacom_show_remote##SET_ID##_mode, \
1198}; \
1199static struct attribute *remote##SET_ID##_serial_attrs[] = { \
1200 &remote##SET_ID##_mode_attr.attr, \
1201 NULL \
1202}; \
1203static struct attribute_group remote##SET_ID##_serial_group = { \
1204 .name = NULL, \
1205 .attrs = remote##SET_ID##_serial_attrs, \
1206}
1207
1208DEVICE_EKR_ATTR_GROUP(0);
1209DEVICE_EKR_ATTR_GROUP(1);
1210DEVICE_EKR_ATTR_GROUP(2);
1211DEVICE_EKR_ATTR_GROUP(3);
1212DEVICE_EKR_ATTR_GROUP(4);
1213
1214int wacom_remote_create_attr_group(struct wacom *wacom, __u32 serial, int index)
1215{
1216 int error = 0;
1217 char *buf;
1218 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1219
1220 wacom_wac->serial[index] = serial;
1221
1222 buf = kzalloc(WAC_REMOTE_SERIAL_MAX_STRLEN, GFP_KERNEL);
1223 if (!buf)
1224 return -ENOMEM;
1225 snprintf(buf, WAC_REMOTE_SERIAL_MAX_STRLEN, "%d", serial);
1226 wacom->remote_group[index].name = buf;
1227
1228 error = sysfs_create_group(wacom->remote_dir,
1229 &wacom->remote_group[index]);
1230 if (error) {
1231 hid_err(wacom->hdev,
1232 "cannot create sysfs group err: %d\n", error);
1233 kobject_put(wacom->remote_dir);
1234 return error;
1235 }
1236
1237 return 0;
1238}
1239
1240void wacom_remote_destroy_attr_group(struct wacom *wacom, __u32 serial)
1241{
1242 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1243 int i;
1244
1245 if (!serial)
1246 return;
1247
1248 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1249 if (wacom_wac->serial[i] == serial) {
1250 wacom_wac->serial[i] = 0;
1251 wacom->led.select[i] = WACOM_STATUS_UNKNOWN;
1252 if (wacom->remote_group[i].name) {
1253 sysfs_remove_group(wacom->remote_dir,
1254 &wacom->remote_group[i]);
1255 kfree(wacom->remote_group[i].name);
1256 wacom->remote_group[i].name = NULL;
1257 }
1258 }
1259 }
1260}
1261
1262static int wacom_cmd_unpair_remote(struct wacom *wacom, unsigned char selector)
1263{
1264 const size_t buf_size = 2;
1265 unsigned char *buf;
1266 int retval;
1267
1268 buf = kzalloc(buf_size, GFP_KERNEL);
1269 if (!buf)
1270 return -ENOMEM;
1271
1272 buf[0] = WAC_CMD_DELETE_PAIRING;
1273 buf[1] = selector;
1274
1275 retval = wacom_set_report(wacom->hdev, HID_OUTPUT_REPORT, buf,
1276 buf_size, WAC_CMD_RETRIES);
1277 kfree(buf);
1278
1279 return retval;
1280}
1281
1282static ssize_t wacom_store_unpair_remote(struct kobject *kobj,
1283 struct kobj_attribute *attr,
1284 const char *buf, size_t count)
1285{
1286 unsigned char selector = 0;
Geliang Tang2cf83832015-12-27 17:25:24 +08001287 struct device *dev = kobj_to_dev(kobj->parent);
Geliang Tangee79a8f2015-12-27 17:25:21 +08001288 struct hid_device *hdev = to_hid_device(dev);
Aaron Skomra72b236d2015-08-20 16:05:17 -07001289 struct wacom *wacom = hid_get_drvdata(hdev);
1290 int err;
1291
1292 if (!strncmp(buf, "*\n", 2)) {
1293 selector = WAC_CMD_UNPAIR_ALL;
1294 } else {
1295 hid_info(wacom->hdev, "remote: unrecognized unpair code: %s\n",
1296 buf);
1297 return -1;
1298 }
1299
1300 mutex_lock(&wacom->lock);
1301
1302 err = wacom_cmd_unpair_remote(wacom, selector);
1303 mutex_unlock(&wacom->lock);
1304
1305 return err < 0 ? err : count;
1306}
1307
1308static struct kobj_attribute unpair_remote_attr = {
1309 .attr = {.name = "unpair_remote", .mode = 0200},
1310 .store = wacom_store_unpair_remote,
1311};
1312
1313static const struct attribute *remote_unpair_attrs[] = {
1314 &unpair_remote_attr.attr,
1315 NULL
1316};
1317
1318static int wacom_initialize_remote(struct wacom *wacom)
1319{
1320 int error = 0;
1321 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1322 int i;
1323
1324 if (wacom->wacom_wac.features.type != REMOTE)
1325 return 0;
1326
1327 wacom->remote_group[0] = remote0_serial_group;
1328 wacom->remote_group[1] = remote1_serial_group;
1329 wacom->remote_group[2] = remote2_serial_group;
1330 wacom->remote_group[3] = remote3_serial_group;
1331 wacom->remote_group[4] = remote4_serial_group;
1332
1333 wacom->remote_dir = kobject_create_and_add("wacom_remote",
1334 &wacom->hdev->dev.kobj);
1335 if (!wacom->remote_dir)
1336 return -ENOMEM;
1337
1338 error = sysfs_create_files(wacom->remote_dir, remote_unpair_attrs);
1339
1340 if (error) {
1341 hid_err(wacom->hdev,
1342 "cannot create sysfs group err: %d\n", error);
1343 return error;
1344 }
1345
1346 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1347 wacom->led.select[i] = WACOM_STATUS_UNKNOWN;
1348 wacom_wac->serial[i] = 0;
1349 }
1350
1351 return 0;
1352}
1353
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001354static struct input_dev *wacom_allocate_input(struct wacom *wacom)
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001355{
1356 struct input_dev *input_dev;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001357 struct hid_device *hdev = wacom->hdev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001358 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001359
1360 input_dev = input_allocate_device();
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001361 if (!input_dev)
1362 return NULL;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001363
Jason Gerecke2bdd1632015-07-13 18:03:45 -07001364 input_dev->name = wacom_wac->features.name;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001365 input_dev->phys = hdev->phys;
1366 input_dev->dev.parent = &hdev->dev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001367 input_dev->open = wacom_open;
1368 input_dev->close = wacom_close;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001369 input_dev->uniq = hdev->uniq;
1370 input_dev->id.bustype = hdev->bus;
1371 input_dev->id.vendor = hdev->vendor;
Benjamin Tissoires12969e32014-09-11 13:14:04 -04001372 input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001373 input_dev->id.version = hdev->version;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001374 input_set_drvdata(input_dev, wacom);
1375
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001376 return input_dev;
1377}
1378
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001379static void wacom_clean_inputs(struct wacom *wacom)
1380{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001381 if (wacom->wacom_wac.pen_input) {
1382 if (wacom->wacom_wac.pen_registered)
1383 input_unregister_device(wacom->wacom_wac.pen_input);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001384 else
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001385 input_free_device(wacom->wacom_wac.pen_input);
1386 }
1387 if (wacom->wacom_wac.touch_input) {
1388 if (wacom->wacom_wac.touch_registered)
1389 input_unregister_device(wacom->wacom_wac.touch_input);
1390 else
1391 input_free_device(wacom->wacom_wac.touch_input);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001392 }
1393 if (wacom->wacom_wac.pad_input) {
Ping Cheng954df6a2014-11-20 16:31:12 -08001394 if (wacom->wacom_wac.pad_registered)
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001395 input_unregister_device(wacom->wacom_wac.pad_input);
1396 else
1397 input_free_device(wacom->wacom_wac.pad_input);
1398 }
Markus Elfring27ba1d52015-11-06 18:00:30 +01001399 kobject_put(wacom->remote_dir);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001400 wacom->wacom_wac.pen_input = NULL;
1401 wacom->wacom_wac.touch_input = NULL;
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001402 wacom->wacom_wac.pad_input = NULL;
Benjamin Tissoires17f28472016-02-12 17:27:44 +01001403 wacom->wacom_wac.pen_registered = false;
1404 wacom->wacom_wac.touch_registered = false;
1405 wacom->wacom_wac.pad_registered = false;
Ping Cheng912ca212014-09-10 12:41:31 -07001406 wacom_destroy_leds(wacom);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001407}
1408
Jason Gerecked9f2d202015-07-13 18:03:44 -07001409static int wacom_allocate_inputs(struct wacom *wacom)
1410{
1411 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1412
1413 wacom_wac->pen_input = wacom_allocate_input(wacom);
1414 wacom_wac->touch_input = wacom_allocate_input(wacom);
1415 wacom_wac->pad_input = wacom_allocate_input(wacom);
1416 if (!wacom_wac->pen_input || !wacom_wac->touch_input || !wacom_wac->pad_input) {
1417 wacom_clean_inputs(wacom);
1418 return -ENOMEM;
1419 }
1420
Jason Gerecke2bdd1632015-07-13 18:03:45 -07001421 wacom_wac->pen_input->name = wacom_wac->pen_name;
Jason Gerecked9f2d202015-07-13 18:03:44 -07001422 wacom_wac->touch_input->name = wacom_wac->touch_name;
1423 wacom_wac->pad_input->name = wacom_wac->pad_name;
1424
1425 return 0;
1426}
1427
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001428static int wacom_register_inputs(struct wacom *wacom)
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001429{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001430 struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001431 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Jason Gerecke2636a3f2015-06-15 18:01:44 -07001432 int error = 0;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001433
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001434 pen_input_dev = wacom_wac->pen_input;
1435 touch_input_dev = wacom_wac->touch_input;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001436 pad_input_dev = wacom_wac->pad_input;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001437
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001438 if (!pen_input_dev || !touch_input_dev || !pad_input_dev)
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001439 return -EINVAL;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001440
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001441 error = wacom_setup_pen_input_capabilities(pen_input_dev, wacom_wac);
1442 if (error) {
1443 /* no pen in use on this interface */
1444 input_free_device(pen_input_dev);
1445 wacom_wac->pen_input = NULL;
1446 pen_input_dev = NULL;
1447 } else {
1448 error = input_register_device(pen_input_dev);
Ping Cheng30ebc1a2014-11-18 13:29:16 -08001449 if (error)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001450 goto fail_register_pen_input;
1451 wacom_wac->pen_registered = true;
1452 }
1453
1454 error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac);
1455 if (error) {
1456 /* no touch in use on this interface */
1457 input_free_device(touch_input_dev);
1458 wacom_wac->touch_input = NULL;
1459 touch_input_dev = NULL;
1460 } else {
1461 error = input_register_device(touch_input_dev);
1462 if (error)
1463 goto fail_register_touch_input;
1464 wacom_wac->touch_registered = true;
Ping Cheng30ebc1a2014-11-18 13:29:16 -08001465 }
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001466
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001467 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
1468 if (error) {
1469 /* no pad in use on this interface */
1470 input_free_device(pad_input_dev);
1471 wacom_wac->pad_input = NULL;
1472 pad_input_dev = NULL;
1473 } else {
1474 error = input_register_device(pad_input_dev);
1475 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001476 goto fail_register_pad_input;
Ping Cheng954df6a2014-11-20 16:31:12 -08001477 wacom_wac->pad_registered = true;
Ping Cheng912ca212014-09-10 12:41:31 -07001478
1479 error = wacom_initialize_leds(wacom);
1480 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001481 goto fail_leds;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001482
1483 error = wacom_initialize_remote(wacom);
1484 if (error)
1485 goto fail_remote;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001486 }
1487
Ping Cheng19635182012-04-29 21:09:18 -07001488 return 0;
1489
Aaron Skomra72b236d2015-08-20 16:05:17 -07001490fail_remote:
1491 wacom_destroy_leds(wacom);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001492fail_leds:
Ping Cheng912ca212014-09-10 12:41:31 -07001493 input_unregister_device(pad_input_dev);
1494 pad_input_dev = NULL;
Ping Cheng954df6a2014-11-20 16:31:12 -08001495 wacom_wac->pad_registered = false;
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001496fail_register_pad_input:
Dan Carpenter0fd72ff2015-06-24 17:27:43 +03001497 if (touch_input_dev)
1498 input_unregister_device(touch_input_dev);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001499 wacom_wac->touch_input = NULL;
1500 wacom_wac->touch_registered = false;
1501fail_register_touch_input:
Dan Carpenter0fd72ff2015-06-24 17:27:43 +03001502 if (pen_input_dev)
1503 input_unregister_device(pen_input_dev);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001504 wacom_wac->pen_input = NULL;
1505 wacom_wac->pen_registered = false;
1506fail_register_pen_input:
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001507 return error;
1508}
1509
Jason Gerecke0be01712015-08-05 15:44:53 -07001510/*
1511 * Not all devices report physical dimensions from HID.
1512 * Compute the default from hardcoded logical dimension
1513 * and resolution before driver overwrites them.
1514 */
1515static void wacom_set_default_phy(struct wacom_features *features)
1516{
1517 if (features->x_resolution) {
1518 features->x_phy = (features->x_max * 100) /
1519 features->x_resolution;
1520 features->y_phy = (features->y_max * 100) /
1521 features->y_resolution;
1522 }
1523}
1524
1525static void wacom_calculate_res(struct wacom_features *features)
1526{
1527 /* set unit to "100th of a mm" for devices not reported by HID */
1528 if (!features->unit) {
1529 features->unit = 0x11;
1530 features->unitExpo = -3;
1531 }
1532
1533 features->x_resolution = wacom_calc_hid_res(features->x_max,
1534 features->x_phy,
1535 features->unit,
1536 features->unitExpo);
1537 features->y_resolution = wacom_calc_hid_res(features->y_max,
1538 features->y_phy,
1539 features->unit,
1540 features->unitExpo);
1541}
1542
Jason Gereckefce99572015-03-06 11:47:40 -08001543void wacom_battery_work(struct work_struct *work)
1544{
1545 struct wacom *wacom = container_of(work, struct wacom, work);
1546
1547 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Linus Torvalds8de29a32015-04-14 08:25:26 -08001548 !wacom->battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08001549 wacom_initialize_battery(wacom);
1550 }
1551 else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Linus Torvalds8de29a32015-04-14 08:25:26 -08001552 wacom->battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08001553 wacom_destroy_battery(wacom);
1554 }
1555}
1556
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001557static size_t wacom_compute_pktlen(struct hid_device *hdev)
1558{
1559 struct hid_report_enum *report_enum;
1560 struct hid_report *report;
1561 size_t size = 0;
1562
1563 report_enum = hdev->report_enum + HID_INPUT_REPORT;
1564
1565 list_for_each_entry(report, &report_enum->report_list, list) {
Mathieu Magnaudetdabb05c62014-11-27 16:02:36 +01001566 size_t report_size = hid_report_len(report);
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001567 if (report_size > size)
1568 size = report_size;
1569 }
1570
1571 return size;
1572}
1573
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001574static void wacom_update_name(struct wacom *wacom, const char *suffix)
Ping Chengc24eab42015-04-24 15:32:51 -07001575{
1576 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1577 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke44b52502015-06-15 18:01:41 -07001578 char name[WACOM_NAME_MAX];
Ping Chengc24eab42015-04-24 15:32:51 -07001579
1580 /* Generic devices name unspecified */
1581 if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) {
1582 if (strstr(wacom->hdev->name, "Wacom") ||
1583 strstr(wacom->hdev->name, "wacom") ||
1584 strstr(wacom->hdev->name, "WACOM")) {
1585 /* name is in HID descriptor, use it */
Jason Gerecke44b52502015-06-15 18:01:41 -07001586 strlcpy(name, wacom->hdev->name, sizeof(name));
Ping Chengc24eab42015-04-24 15:32:51 -07001587
1588 /* strip out excess whitespaces */
1589 while (1) {
Jason Gerecke44b52502015-06-15 18:01:41 -07001590 char *gap = strstr(name, " ");
Ping Chengc24eab42015-04-24 15:32:51 -07001591 if (gap == NULL)
1592 break;
1593 /* shift everything including the terminator */
1594 memmove(gap, gap+1, strlen(gap));
1595 }
1596 /* get rid of trailing whitespace */
Jason Gerecke44b52502015-06-15 18:01:41 -07001597 if (name[strlen(name)-1] == ' ')
1598 name[strlen(name)-1] = '\0';
Ping Chengc24eab42015-04-24 15:32:51 -07001599 } else {
1600 /* no meaningful name retrieved. use product ID */
Jason Gerecke44b52502015-06-15 18:01:41 -07001601 snprintf(name, sizeof(name),
Ping Chengc24eab42015-04-24 15:32:51 -07001602 "%s %X", features->name, wacom->hdev->product);
1603 }
1604 } else {
Jason Gerecke44b52502015-06-15 18:01:41 -07001605 strlcpy(name, features->name, sizeof(name));
Ping Chengc24eab42015-04-24 15:32:51 -07001606 }
1607
1608 /* Append the device type to the name */
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001609 snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name),
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001610 "%s%s Pen", name, suffix);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001611 snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name),
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001612 "%s%s Finger", name, suffix);
Ping Chengc24eab42015-04-24 15:32:51 -07001613 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001614 "%s%s Pad", name, suffix);
Ping Chengc24eab42015-04-24 15:32:51 -07001615}
1616
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001617static int wacom_parse_and_register(struct wacom *wacom, bool wireless)
Ping Cheng3bea7332006-07-13 18:01:36 -07001618{
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001619 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1620 struct wacom_features *features = &wacom_wac->features;
1621 struct hid_device *hdev = wacom->hdev;
Jason Childse33da8a2010-02-17 22:38:31 -08001622 int error;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001623 unsigned int connect_mask = HID_CONNECT_HIDRAW;
Ping Cheng3bea7332006-07-13 18:01:36 -07001624
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001625 features->pktlen = wacom_compute_pktlen(hdev);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001626 if (features->pktlen > WACOM_PKGLEN_MAX)
1627 return -EINVAL;
Ping Cheng3bea7332006-07-13 18:01:36 -07001628
Jason Gerecke3f14a632015-08-03 10:17:05 -07001629 error = wacom_allocate_inputs(wacom);
1630 if (error)
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001631 return error;
Benjamin Tissoires494078b2014-09-23 12:08:07 -04001632
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05001633 /*
1634 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
1635 * into debug mode for the touch part.
1636 * We ignore the other interfaces.
1637 */
1638 if (features->type == BAMBOO_PAD) {
1639 if (features->pktlen == WACOM_PKGLEN_PENABLED) {
1640 features->type = HID_GENERIC;
1641 } else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) &&
1642 (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) {
1643 error = -ENODEV;
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001644 goto fail_allocate_inputs;
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05001645 }
1646 }
1647
Ping Cheng401d7d12013-07-28 00:38:54 -07001648 /* set the default size in case we do not get them from hid */
1649 wacom_set_default_phy(features);
1650
Ping Chengf393ee22012-04-29 21:09:17 -07001651 /* Retrieve the physical and logical size for touch devices */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001652 wacom_retrieve_hid_descriptor(hdev, features);
Ping Cheng42f4f272015-04-15 16:53:54 -07001653 wacom_setup_device_quirks(wacom);
Jason Gerecke042628a2015-04-30 17:51:54 -07001654
Jason Gereckeaa86b182015-06-15 18:01:42 -07001655 if (features->device_type == WACOM_DEVICETYPE_NONE &&
1656 features->type != WIRELESS) {
Jason Gerecke8e116d32015-04-30 17:51:55 -07001657 error = features->type == HID_GENERIC ? -ENODEV : 0;
1658
Jason Gerecke042628a2015-04-30 17:51:54 -07001659 dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.",
Jason Gerecke8e116d32015-04-30 17:51:55 -07001660 hdev->name,
1661 error ? "Ignoring" : "Assuming pen");
1662
1663 if (error)
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001664 goto fail_parsed;
Jason Gerecke042628a2015-04-30 17:51:54 -07001665
Jason Gereckeaa86b182015-06-15 18:01:42 -07001666 features->device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke042628a2015-04-30 17:51:54 -07001667 }
1668
Ping Cheng401d7d12013-07-28 00:38:54 -07001669 wacom_calculate_res(features);
1670
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001671 wacom_update_name(wacom, wireless ? " (WL)" : "");
Ping Cheng4492eff2010-03-19 22:18:15 -07001672
Ping Chengf3586d22015-03-20 14:57:00 -07001673 error = wacom_add_shared_data(hdev);
1674 if (error)
1675 goto fail_shared_data;
Ping Cheng49b764a2010-02-20 00:53:49 -08001676
Jason Gereckeccad85c2015-08-03 10:17:04 -07001677 if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) &&
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001678 (features->quirks & WACOM_QUIRK_BATTERY)) {
1679 error = wacom_initialize_battery(wacom);
1680 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001681 goto fail_battery;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001682 }
1683
Jason Gerecke3f14a632015-08-03 10:17:05 -07001684 error = wacom_register_inputs(wacom);
1685 if (error)
1686 goto fail_register_inputs;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001687
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001688 if (features->type == HID_GENERIC)
1689 connect_mask |= HID_CONNECT_DRIVER;
1690
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001691 /* Regular HID work starts now */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001692 error = hid_hw_start(hdev, connect_mask);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001693 if (error) {
1694 hid_err(hdev, "hw start failed\n");
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001695 goto fail_hw_start;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001696 }
1697
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001698 if (!wireless) {
1699 /* Note that if query fails it is not a hard failure */
1700 wacom_query_tablet_data(hdev, features);
1701 }
Jason Gerecke86e88f02015-11-03 16:57:58 -08001702
1703 /* touch only Bamboo doesn't support pen */
1704 if ((features->type == BAMBOO_TOUCH) &&
1705 (features->device_type & WACOM_DEVICETYPE_PEN)) {
1706 error = -ENODEV;
1707 goto fail_hw_start;
1708 }
1709
1710 /* pen only Bamboo neither support touch nor pad */
1711 if ((features->type == BAMBOO_PEN) &&
1712 ((features->device_type & WACOM_DEVICETYPE_TOUCH) ||
1713 (features->device_type & WACOM_DEVICETYPE_PAD))) {
1714 error = -ENODEV;
1715 goto fail_hw_start;
1716 }
1717
Jason Gereckeccad85c2015-08-03 10:17:04 -07001718 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001719 error = hid_hw_open(hdev);
1720
Ping Chengeda01da2015-09-23 13:51:15 -07001721 if ((wacom_wac->features.type == INTUOSHT ||
1722 wacom_wac->features.type == INTUOSHT2) &&
1723 (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001724 wacom_wac->shared->touch_input = wacom_wac->touch_input;
Ping Cheng961794a2013-12-05 12:54:53 -08001725 }
1726
Ping Cheng3bea7332006-07-13 18:01:36 -07001727 return 0;
1728
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001729fail_hw_start:
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001730 hid_hw_stop(hdev);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001731fail_register_inputs:
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001732 wacom_clean_inputs(wacom);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001733 wacom_destroy_battery(wacom);
1734fail_battery:
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -05001735 wacom_remove_shared_data(wacom);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001736fail_shared_data:
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001737fail_parsed:
Benjamin Tissoires494078b2014-09-23 12:08:07 -04001738fail_allocate_inputs:
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001739 wacom_clean_inputs(wacom);
1740 return error;
1741}
1742
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01001743static void wacom_wireless_work(struct work_struct *work)
1744{
1745 struct wacom *wacom = container_of(work, struct wacom, work);
1746 struct usb_device *usbdev = wacom->usbdev;
1747 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1748 struct hid_device *hdev1, *hdev2;
1749 struct wacom *wacom1, *wacom2;
1750 struct wacom_wac *wacom_wac1, *wacom_wac2;
1751 int error;
1752
1753 /*
1754 * Regardless if this is a disconnect or a new tablet,
1755 * remove any existing input and battery devices.
1756 */
1757
1758 wacom_destroy_battery(wacom);
1759
1760 /* Stylus interface */
1761 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
1762 wacom1 = hid_get_drvdata(hdev1);
1763 wacom_wac1 = &(wacom1->wacom_wac);
1764 wacom_clean_inputs(wacom1);
1765
1766 /* Touch interface */
1767 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
1768 wacom2 = hid_get_drvdata(hdev2);
1769 wacom_wac2 = &(wacom2->wacom_wac);
1770 wacom_clean_inputs(wacom2);
1771
1772 if (wacom_wac->pid == 0) {
1773 hid_info(wacom->hdev, "wireless tablet disconnected\n");
1774 wacom_wac1->shared->type = 0;
1775 } else {
1776 const struct hid_device_id *id = wacom_ids;
1777
1778 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
1779 wacom_wac->pid);
1780
1781 while (id->bus) {
1782 if (id->vendor == USB_VENDOR_ID_WACOM &&
1783 id->product == wacom_wac->pid)
1784 break;
1785 id++;
1786 }
1787
1788 if (!id->bus) {
1789 hid_info(wacom->hdev, "ignoring unknown PID.\n");
1790 return;
1791 }
1792
1793 /* Stylus interface */
1794 wacom_wac1->features =
1795 *((struct wacom_features *)id->driver_data);
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001796
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01001797 wacom_wac1->pid = wacom_wac->pid;
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001798 hid_hw_stop(hdev1);
1799 error = wacom_parse_and_register(wacom1, true);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01001800 if (error)
1801 goto fail;
1802
1803 /* Touch interface */
1804 if (wacom_wac1->features.touch_max ||
1805 (wacom_wac1->features.type >= INTUOSHT &&
1806 wacom_wac1->features.type <= BAMBOO_PT)) {
1807 wacom_wac2->features =
1808 *((struct wacom_features *)id->driver_data);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01001809 wacom_wac2->pid = wacom_wac->pid;
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001810 hid_hw_stop(hdev2);
1811 error = wacom_parse_and_register(wacom2, true);
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01001812 if (error)
1813 goto fail;
Benjamin Tissoiresa2f091a2016-02-12 17:27:42 +01001814 }
1815
1816 error = wacom_initialize_battery(wacom);
1817 if (error)
1818 goto fail;
1819 }
1820
1821 return;
1822
1823fail:
1824 wacom_clean_inputs(wacom1);
1825 wacom_clean_inputs(wacom2);
1826 return;
1827}
1828
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001829static int wacom_probe(struct hid_device *hdev,
1830 const struct hid_device_id *id)
1831{
1832 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
1833 struct usb_device *dev = interface_to_usbdev(intf);
1834 struct wacom *wacom;
1835 struct wacom_wac *wacom_wac;
1836 struct wacom_features *features;
1837 int error;
1838
1839 if (!id->driver_data)
1840 return -EINVAL;
1841
1842 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
1843
1844 /* hid-core sets this quirk for the boot interface */
1845 hdev->quirks &= ~HID_QUIRK_NOGET;
1846
1847 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
1848 if (!wacom)
1849 return -ENOMEM;
1850
1851 hid_set_drvdata(hdev, wacom);
1852 wacom->hdev = hdev;
1853
1854 wacom_wac = &wacom->wacom_wac;
1855 wacom_wac->features = *((struct wacom_features *)id->driver_data);
1856 features = &wacom_wac->features;
1857
1858 if (features->check_for_hid_type && features->hid_type != hdev->type) {
1859 error = -ENODEV;
1860 goto fail_type;
1861 }
1862
Jason Gereckec6fa1ae2016-04-04 11:26:51 -07001863 wacom_wac->hid_data.inputmode = -1;
Jason Gerecke326ea2a2016-04-04 11:26:52 -07001864 wacom_wac->mode_report = -1;
Jason Gereckec6fa1ae2016-04-04 11:26:51 -07001865
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001866 wacom->usbdev = dev;
1867 wacom->intf = intf;
1868 mutex_init(&wacom->lock);
1869 INIT_WORK(&wacom->work, wacom_wireless_work);
1870
1871 /* ask for the report descriptor to be loaded by HID */
1872 error = hid_parse(hdev);
1873 if (error) {
1874 hid_err(hdev, "parse failed\n");
1875 goto fail_parse;
1876 }
1877
Benjamin Tissoiresfd5f92b2016-02-12 17:27:43 +01001878 error = wacom_parse_and_register(wacom, false);
Benjamin Tissoiresc58ac3a2016-02-12 17:27:41 +01001879 if (error)
1880 goto fail_parse;
1881
1882 if (hdev->bus == BUS_BLUETOOTH) {
1883 error = device_create_file(&hdev->dev, &dev_attr_speed);
1884 if (error)
1885 hid_warn(hdev,
1886 "can't create sysfs speed attribute err: %d\n",
1887 error);
1888 }
1889
1890 return 0;
1891
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001892fail_type:
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001893fail_parse:
1894 kfree(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001895 hid_set_drvdata(hdev, NULL);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001896 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001897}
1898
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001899static void wacom_remove(struct hid_device *hdev)
Ping Cheng3bea7332006-07-13 18:01:36 -07001900{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001901 struct wacom *wacom = hid_get_drvdata(hdev);
Benjamin Tissoiresf6205162016-02-12 17:27:45 +01001902 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1903 struct wacom_features *features = &wacom_wac->features;
1904
1905 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
1906 hid_hw_close(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -07001907
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001908 hid_hw_stop(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001909
Chris Bagwell16bf2882012-03-25 23:26:20 -07001910 cancel_work_sync(&wacom->work);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001911 wacom_clean_inputs(wacom);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001912 if (hdev->bus == BUS_BLUETOOTH)
1913 device_remove_file(&hdev->dev, &dev_attr_speed);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001914 wacom_destroy_battery(wacom);
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -05001915 wacom_remove_shared_data(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001916
1917 hid_set_drvdata(hdev, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04001918 kfree(wacom);
1919}
1920
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07001921#ifdef CONFIG_PM
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001922static int wacom_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001923{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001924 struct wacom *wacom = hid_get_drvdata(hdev);
1925 struct wacom_features *features = &wacom->wacom_wac.features;
Oliver Neukume7224092008-04-15 01:31:57 -04001926
1927 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001928
1929 /* switch to wacom mode first */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -07001930 wacom_query_tablet_data(hdev, features);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001931 wacom_led_control(wacom);
1932
Oliver Neukume7224092008-04-15 01:31:57 -04001933 mutex_unlock(&wacom->lock);
1934
1935 return 0;
1936}
1937
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001938static int wacom_reset_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001939{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001940 return wacom_resume(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001941}
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07001942#endif /* CONFIG_PM */
Oliver Neukume7224092008-04-15 01:31:57 -04001943
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001944static struct hid_driver wacom_driver = {
Ping Cheng3bea7332006-07-13 18:01:36 -07001945 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08001946 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07001947 .probe = wacom_probe,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001948 .remove = wacom_remove,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001949 .report = wacom_wac_report,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001950#ifdef CONFIG_PM
Oliver Neukume7224092008-04-15 01:31:57 -04001951 .resume = wacom_resume,
1952 .reset_resume = wacom_reset_resume,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001953#endif
1954 .raw_event = wacom_raw_event,
Ping Cheng3bea7332006-07-13 18:01:36 -07001955};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001956module_hid_driver(wacom_driver);
Benjamin Tissoiresf2e0a7d2014-08-06 14:07:49 -07001957
1958MODULE_VERSION(DRIVER_VERSION);
1959MODULE_AUTHOR(DRIVER_AUTHOR);
1960MODULE_DESCRIPTION(DRIVER_DESC);
1961MODULE_LICENSE(DRIVER_LICENSE);