blob: 5f6e48e55df9b0ad305a934890e895408417d758 [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;
Ping Chengf393ee22012-04-29 21:09:17 -0700155 }
156}
157
Chris Bagwell428f8582011-10-26 22:26:59 -0700158/*
159 * Interface Descriptor of wacom devices can be incomplete and
160 * inconsistent so wacom_features table is used to store stylus
161 * device's packet lengths, various maximum values, and tablet
162 * resolution based on product ID's.
163 *
164 * For devices that contain 2 interfaces, wacom_features table is
165 * inaccurate for the touch interface. Since the Interface Descriptor
166 * for touch interfaces has pretty complete data, this function exists
167 * to query tablet for this missing information instead of hard coding in
168 * an additional table.
169 *
170 * A typical Interface Descriptor for a stylus will contain a
171 * boot mouse application collection that is not of interest and this
172 * function will ignore it.
173 *
174 * It also contains a digitizer application collection that also is not
175 * of interest since any information it contains would be duplicate
176 * of what is in wacom_features. Usually it defines a report of an array
177 * of bytes that could be used as max length of the stylus packet returned.
178 * If it happens to define a Digitizer-Stylus Physical Collection then
179 * the X and Y logical values contain valid data but it is ignored.
180 *
181 * A typical Interface Descriptor for a touch interface will contain a
182 * Digitizer-Finger Physical Collection which will define both logical
183 * X/Y maximum as well as the physical size of tablet. Since touch
184 * interfaces haven't supported pressure or distance, this is enough
185 * information to override invalid values in the wacom_features table.
Chris Bagwell41343612011-10-26 22:32:52 -0700186 *
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700187 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
188 * data. We deal with them after returning from this function.
Chris Bagwell428f8582011-10-26 22:26:59 -0700189 */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700190static void wacom_usage_mapping(struct hid_device *hdev,
191 struct hid_field *field, struct hid_usage *usage)
192{
193 struct wacom *wacom = hid_get_drvdata(hdev);
194 struct wacom_features *features = &wacom->wacom_wac.features;
Benjamin Tissoiresd97a5522015-01-05 16:32:12 -0500195 bool finger = WACOM_FINGER_FIELD(field);
196 bool pen = WACOM_PEN_FIELD(field);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700197
198 /*
199 * Requiring Stylus Usage will ignore boot mouse
200 * X/Y values and some cases of invalid Digitizer X/Y
201 * values commonly reported.
202 */
Jason Gerecke042628a2015-04-30 17:51:54 -0700203 if (pen)
Jason Gereckeaa86b182015-06-15 18:01:42 -0700204 features->device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke042628a2015-04-30 17:51:54 -0700205 else if (finger)
Jason Gereckeaa86b182015-06-15 18:01:42 -0700206 features->device_type |= WACOM_DEVICETYPE_TOUCH;
Jason Gerecke042628a2015-04-30 17:51:54 -0700207 else
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700208 return;
209
Ping Cheng30ebc1a2014-11-18 13:29:16 -0800210 /*
211 * Bamboo models do not support HID_DG_CONTACTMAX.
212 * And, Bamboo Pen only descriptor contains touch.
213 */
214 if (features->type != BAMBOO_PT) {
215 /* ISDv4 touch devices at least supports one touch point */
216 if (finger && !features->touch_max)
217 features->touch_max = 1;
218 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700219
220 switch (usage->hid) {
221 case HID_GD_X:
222 features->x_max = field->logical_maximum;
223 if (finger) {
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700224 features->x_phy = field->physical_maximum;
225 if (features->type != BAMBOO_PT) {
226 features->unit = field->unit;
227 features->unitExpo = field->unit_exponent;
228 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700229 }
230 break;
231 case HID_GD_Y:
232 features->y_max = field->logical_maximum;
233 if (finger) {
234 features->y_phy = field->physical_maximum;
235 if (features->type != BAMBOO_PT) {
236 features->unit = field->unit;
237 features->unitExpo = field->unit_exponent;
238 }
239 }
240 break;
241 case HID_DG_TIPPRESSURE:
242 if (pen)
243 features->pressure_max = field->logical_maximum;
244 break;
245 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -0400246
247 if (features->type == HID_GENERIC)
248 wacom_wac_usage_mapping(hdev, field, usage);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700249}
250
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800251static void wacom_post_parse_hid(struct hid_device *hdev,
252 struct wacom_features *features)
253{
254 struct wacom *wacom = hid_get_drvdata(hdev);
255 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
256
257 if (features->type == HID_GENERIC) {
258 /* Any last-minute generic device setup */
259 if (features->touch_max > 1) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -0700260 input_mt_init_slots(wacom_wac->touch_input, wacom_wac->features.touch_max,
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800261 INPUT_MT_DIRECT);
262 }
263 }
264}
265
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700266static void wacom_parse_hid(struct hid_device *hdev,
Ping Chengec67bbe2009-12-15 00:35:24 -0800267 struct wacom_features *features)
Ping Cheng545f4e92008-11-24 11:44:27 -0500268{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700269 struct hid_report_enum *rep_enum;
270 struct hid_report *hreport;
271 int i, j;
Ping Cheng545f4e92008-11-24 11:44:27 -0500272
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700273 /* check features first */
274 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
275 list_for_each_entry(hreport, &rep_enum->report_list, list) {
276 for (i = 0; i < hreport->maxfield; i++) {
277 /* Ignore if report count is out of bounds. */
278 if (hreport->field[i]->report_count < 1)
279 continue;
Ping Cheng545f4e92008-11-24 11:44:27 -0500280
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700281 for (j = 0; j < hreport->field[i]->maxusage; j++) {
282 wacom_feature_mapping(hdev, hreport->field[i],
283 hreport->field[i]->usage + j);
Ping Cheng545f4e92008-11-24 11:44:27 -0500284 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500285 }
286 }
287
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700288 /* now check the input usages */
289 rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
290 list_for_each_entry(hreport, &rep_enum->report_list, list) {
291
292 if (!hreport->maxfield)
293 continue;
294
295 for (i = 0; i < hreport->maxfield; i++)
296 for (j = 0; j < hreport->field[i]->maxusage; j++)
297 wacom_usage_mapping(hdev, hreport->field[i],
298 hreport->field[i]->usage + j);
299 }
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800300
301 wacom_post_parse_hid(hdev, features);
Ping Cheng545f4e92008-11-24 11:44:27 -0500302}
303
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400304static int wacom_hid_set_device_mode(struct hid_device *hdev)
305{
306 struct wacom *wacom = hid_get_drvdata(hdev);
307 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
308 struct hid_report *r;
309 struct hid_report_enum *re;
310
311 if (hid_data->inputmode < 0)
312 return 0;
313
314 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
315 r = re->report_id_hash[hid_data->inputmode];
316 if (r) {
317 r->field[0]->value[hid_data->inputmode_index] = 2;
318 hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
319 }
320 return 0;
321}
322
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700323static int wacom_set_device_mode(struct hid_device *hdev, int report_id,
324 int length, int mode)
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700325{
326 unsigned char *rep_data;
Jason Gereckefe494bc2012-10-03 17:25:35 -0700327 int error = -ENOMEM, limit = 0;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700328
Jason Gereckefe494bc2012-10-03 17:25:35 -0700329 rep_data = kzalloc(length, GFP_KERNEL);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700330 if (!rep_data)
Ping Chengec67bbe2009-12-15 00:35:24 -0800331 return error;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700332
Jason Gereckefe494bc2012-10-03 17:25:35 -0700333 do {
Chris Bagwell9937c022013-01-23 19:37:34 -0800334 rep_data[0] = report_id;
335 rep_data[1] = mode;
336
Przemo Firszt296b7372014-08-06 14:00:38 -0700337 error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
338 length, 1);
Benjamin Tissoires3cb83152014-07-24 12:47:47 -0700339 if (error >= 0)
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700340 error = wacom_get_report(hdev, HID_FEATURE_REPORT,
Ping Chengc64d8832014-09-10 12:41:04 -0700341 rep_data, length, 1);
Jason Gerecke64d0ed92015-08-05 15:45:30 -0700342 } while (error >= 0 && rep_data[1] != mode && limit++ < WAC_MSG_RETRIES);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700343
344 kfree(rep_data);
345
346 return error < 0 ? error : 0;
347}
348
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700349static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
350 struct wacom_features *features)
351{
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700352 struct wacom *wacom = hid_get_drvdata(hdev);
353 int ret;
354 u8 rep_data[2];
355
356 switch (features->type) {
357 case GRAPHIRE_BT:
358 rep_data[0] = 0x03;
359 rep_data[1] = 0x00;
Przemo Firszt296b7372014-08-06 14:00:38 -0700360 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
361 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700362
363 if (ret >= 0) {
364 rep_data[0] = speed == 0 ? 0x05 : 0x06;
365 rep_data[1] = 0x00;
366
367 ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700368 rep_data, 2, 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700369
370 if (ret >= 0) {
371 wacom->wacom_wac.bt_high_speed = speed;
372 return 0;
373 }
374 }
375
376 /*
377 * Note that if the raw queries fail, it's not a hard failure
378 * and it is safe to continue
379 */
380 hid_warn(hdev, "failed to poke device, command %d, err %d\n",
381 rep_data[0], ret);
382 break;
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700383 case INTUOS4WL:
384 if (speed == 1)
385 wacom->wacom_wac.bt_features &= ~0x20;
386 else
387 wacom->wacom_wac.bt_features |= 0x20;
388
389 rep_data[0] = 0x03;
390 rep_data[1] = wacom->wacom_wac.bt_features;
391
Przemo Firszt296b7372014-08-06 14:00:38 -0700392 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
393 1);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700394 if (ret >= 0)
395 wacom->wacom_wac.bt_high_speed = speed;
396 break;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700397 }
398
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700399 return 0;
400}
401
Jason Gereckefe494bc2012-10-03 17:25:35 -0700402/*
403 * Switch the tablet into its most-capable mode. Wacom tablets are
404 * typically configured to power-up in a mode which sends mouse-like
405 * reports to the OS. To get absolute position, pressure data, etc.
406 * from the tablet, it is necessary to switch the tablet out of this
407 * mode and into one which sends the full range of tablet data.
408 */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700409static int wacom_query_tablet_data(struct hid_device *hdev,
410 struct wacom_features *features)
Jason Gereckefe494bc2012-10-03 17:25:35 -0700411{
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700412 if (hdev->bus == BUS_BLUETOOTH)
413 return wacom_bt_query_tablet_data(hdev, 1, features);
414
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400415 if (features->type == HID_GENERIC)
416 return wacom_hid_set_device_mode(hdev);
417
Jason Gereckeaa86b182015-06-15 18:01:42 -0700418 if (features->device_type & WACOM_DEVICETYPE_TOUCH) {
Jason Gereckefe494bc2012-10-03 17:25:35 -0700419 if (features->type > TABLETPC) {
420 /* MT Tablet PC touch */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700421 return wacom_set_device_mode(hdev, 3, 4, 4);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700422 }
Jason Gerecke36d3c512013-09-20 09:47:35 -0700423 else if (features->type == WACOM_24HDT || features->type == CINTIQ_HYBRID) {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700424 return wacom_set_device_mode(hdev, 18, 3, 2);
Jason Gereckeb1e42792012-10-21 00:38:04 -0700425 }
Ping Cheng500d4162015-01-27 13:30:03 -0800426 else if (features->type == WACOM_27QHDT) {
427 return wacom_set_device_mode(hdev, 131, 3, 2);
428 }
Benjamin Tissoires8c97a762015-02-26 11:28:50 -0500429 else if (features->type == BAMBOO_PAD) {
430 return wacom_set_device_mode(hdev, 2, 2, 2);
431 }
Jason Gereckeaa86b182015-06-15 18:01:42 -0700432 } else if (features->device_type & WACOM_DEVICETYPE_PEN) {
Jason Gereckefe494bc2012-10-03 17:25:35 -0700433 if (features->type <= BAMBOO_PT && features->type != WIRELESS) {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700434 return wacom_set_device_mode(hdev, 2, 2, 2);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700435 }
436 }
437
438 return 0;
439}
440
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700441static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
Ping Cheng19635182012-04-29 21:09:18 -0700442 struct wacom_features *features)
Ping Chengec67bbe2009-12-15 00:35:24 -0800443{
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700444 struct wacom *wacom = hid_get_drvdata(hdev);
445 struct usb_interface *intf = wacom->intf;
Ping Chengec67bbe2009-12-15 00:35:24 -0800446
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700447 /* default features */
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700448 features->x_fuzz = 4;
449 features->y_fuzz = 4;
450 features->pressure_fuzz = 0;
451 features->distance_fuzz = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800452
Chris Bagwelld3825d52012-03-25 23:26:11 -0700453 /*
454 * The wireless device HID is basic and layout conflicts with
455 * other tablets (monitor and touch interface can look like pen).
456 * Skip the query for this type and modify defaults based on
457 * interface number.
458 */
459 if (features->type == WIRELESS) {
Jason Gerecke3f14a632015-08-03 10:17:05 -0700460 if (intf->cur_altsetting->desc.bInterfaceNumber == 0)
Jason Gereckeccad85c2015-08-03 10:17:04 -0700461 features->device_type = WACOM_DEVICETYPE_WL_MONITOR;
Jason Gerecke3f14a632015-08-03 10:17:05 -0700462 else
463 features->device_type = WACOM_DEVICETYPE_NONE;
464 return;
Chris Bagwelld3825d52012-03-25 23:26:11 -0700465 }
466
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700467 wacom_parse_hid(hdev, features);
Ping Chengec67bbe2009-12-15 00:35:24 -0800468}
469
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700470struct wacom_hdev_data {
Ping Cheng4492eff2010-03-19 22:18:15 -0700471 struct list_head list;
472 struct kref kref;
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700473 struct hid_device *dev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700474 struct wacom_shared shared;
475};
476
477static LIST_HEAD(wacom_udev_list);
478static DEFINE_MUTEX(wacom_udev_list_lock);
479
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700480static bool wacom_are_sibling(struct hid_device *hdev,
481 struct hid_device *sibling)
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700482{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700483 struct wacom *wacom = hid_get_drvdata(hdev);
484 struct wacom_features *features = &wacom->wacom_wac.features;
485 int vid = features->oVid;
486 int pid = features->oPid;
487 int n1,n2;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700488
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700489 if (vid == 0 && pid == 0) {
490 vid = hdev->vendor;
491 pid = hdev->product;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700492 }
493
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700494 if (vid != sibling->vendor || pid != sibling->product)
495 return false;
496
497 /* Compare the physical path. */
498 n1 = strrchr(hdev->phys, '.') - hdev->phys;
499 n2 = strrchr(sibling->phys, '.') - sibling->phys;
500 if (n1 != n2 || n1 <= 0 || n2 <= 0)
501 return false;
502
503 return !strncmp(hdev->phys, sibling->phys, n1);
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700504}
505
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700506static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700507{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700508 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700509
510 list_for_each_entry(data, &wacom_udev_list, list) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700511 if (wacom_are_sibling(hdev, data->dev)) {
Ping Cheng4492eff2010-03-19 22:18:15 -0700512 kref_get(&data->kref);
513 return data;
514 }
515 }
516
517 return NULL;
518}
519
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700520static int wacom_add_shared_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700521{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700522 struct wacom *wacom = hid_get_drvdata(hdev);
523 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
524 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700525 int retval = 0;
526
527 mutex_lock(&wacom_udev_list_lock);
528
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700529 data = wacom_get_hdev_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -0700530 if (!data) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700531 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
Ping Cheng4492eff2010-03-19 22:18:15 -0700532 if (!data) {
533 retval = -ENOMEM;
534 goto out;
535 }
536
537 kref_init(&data->kref);
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700538 data->dev = hdev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700539 list_add_tail(&data->list, &wacom_udev_list);
540 }
541
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700542 wacom_wac->shared = &data->shared;
Ping Cheng4492eff2010-03-19 22:18:15 -0700543
Jason Gereckeaa86b182015-06-15 18:01:42 -0700544 if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500545 wacom_wac->shared->touch = hdev;
Jason Gereckeaa86b182015-06-15 18:01:42 -0700546 else if (wacom_wac->features.device_type & WACOM_DEVICETYPE_PEN)
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500547 wacom_wac->shared->pen = hdev;
548
Ping Cheng4492eff2010-03-19 22:18:15 -0700549out:
550 mutex_unlock(&wacom_udev_list_lock);
551 return retval;
552}
553
554static void wacom_release_shared_data(struct kref *kref)
555{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700556 struct wacom_hdev_data *data =
557 container_of(kref, struct wacom_hdev_data, kref);
Ping Cheng4492eff2010-03-19 22:18:15 -0700558
559 mutex_lock(&wacom_udev_list_lock);
560 list_del(&data->list);
561 mutex_unlock(&wacom_udev_list_lock);
562
563 kfree(data);
564}
565
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500566static void wacom_remove_shared_data(struct wacom *wacom)
Ping Cheng4492eff2010-03-19 22:18:15 -0700567{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700568 struct wacom_hdev_data *data;
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500569 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Ping Cheng4492eff2010-03-19 22:18:15 -0700570
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500571 if (wacom_wac->shared) {
572 data = container_of(wacom_wac->shared, struct wacom_hdev_data,
573 shared);
574
575 if (wacom_wac->shared->touch == wacom->hdev)
576 wacom_wac->shared->touch = NULL;
577 else if (wacom_wac->shared->pen == wacom->hdev)
578 wacom_wac->shared->pen = NULL;
579
Ping Cheng4492eff2010-03-19 22:18:15 -0700580 kref_put(&data->kref, wacom_release_shared_data);
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -0500581 wacom_wac->shared = NULL;
Ping Cheng4492eff2010-03-19 22:18:15 -0700582 }
583}
584
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700585static int wacom_led_control(struct wacom *wacom)
586{
587 unsigned char *buf;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700588 int retval;
Ping Cheng912ca212014-09-10 12:41:31 -0700589 unsigned char report_id = WAC_CMD_LED_CONTROL;
590 int buf_size = 9;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700591
Ping Cheng912ca212014-09-10 12:41:31 -0700592 if (wacom->wacom_wac.pid) { /* wireless connected */
593 report_id = WAC_CMD_WL_LED_CONTROL;
594 buf_size = 13;
595 }
596 buf = kzalloc(buf_size, GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700597 if (!buf)
598 return -ENOMEM;
599
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700600 if (wacom->wacom_wac.features.type >= INTUOS5S &&
Ping Cheng9a35c412013-09-20 09:51:56 -0700601 wacom->wacom_wac.features.type <= INTUOSPL) {
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700602 /*
603 * Touch Ring and crop mark LED luminance may take on
604 * one of four values:
605 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
606 */
607 int ring_led = wacom->led.select[0] & 0x03;
608 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
609 int crop_lum = 0;
Ping Cheng912ca212014-09-10 12:41:31 -0700610 unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
Ping Cheng09e7d942011-10-04 23:51:14 -0700611
Ping Cheng912ca212014-09-10 12:41:31 -0700612 buf[0] = report_id;
613 if (wacom->wacom_wac.pid) {
614 wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
615 buf, buf_size, WAC_CMD_RETRIES);
616 buf[0] = report_id;
617 buf[4] = led_bits;
618 } else
619 buf[1] = led_bits;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700620 }
621 else {
622 int led = wacom->led.select[0] | 0x4;
Ping Cheng09e7d942011-10-04 23:51:14 -0700623
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700624 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
625 wacom->wacom_wac.features.type == WACOM_24HD)
626 led |= (wacom->led.select[1] << 4) | 0x40;
627
Ping Cheng912ca212014-09-10 12:41:31 -0700628 buf[0] = report_id;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700629 buf[1] = led;
630 buf[2] = wacom->led.llv;
631 buf[3] = wacom->led.hlv;
632 buf[4] = wacom->led.img_lum;
633 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700634
Ping Cheng912ca212014-09-10 12:41:31 -0700635 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
Przemo Firszt296b7372014-08-06 14:00:38 -0700636 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700637 kfree(buf);
638
639 return retval;
640}
641
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700642static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
643 const unsigned len, const void *img)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700644{
645 unsigned char *buf;
646 int i, retval;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700647 const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700648
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700649 buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700650 if (!buf)
651 return -ENOMEM;
652
653 /* Send 'start' command */
654 buf[0] = WAC_CMD_ICON_START;
655 buf[1] = 1;
Przemo Firszt296b7372014-08-06 14:00:38 -0700656 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
657 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700658 if (retval < 0)
659 goto out;
660
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700661 buf[0] = xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700662 buf[1] = button_id & 0x07;
663 for (i = 0; i < 4; i++) {
664 buf[2] = i;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700665 memcpy(buf + 3, img + i * chunk_len, chunk_len);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700666
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700667 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700668 buf, chunk_len + 3, WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700669 if (retval < 0)
670 break;
671 }
672
673 /* Send 'stop' */
674 buf[0] = WAC_CMD_ICON_START;
675 buf[1] = 0;
Przemo Firszt296b7372014-08-06 14:00:38 -0700676 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
677 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700678
679out:
680 kfree(buf);
681 return retval;
682}
683
Ping Cheng09e7d942011-10-04 23:51:14 -0700684static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700685 const char *buf, size_t count)
686{
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700687 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700688 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700689 unsigned int id;
690 int err;
691
692 err = kstrtouint(buf, 10, &id);
693 if (err)
694 return err;
695
696 mutex_lock(&wacom->lock);
697
Ping Cheng09e7d942011-10-04 23:51:14 -0700698 wacom->led.select[set_id] = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700699 err = wacom_led_control(wacom);
700
701 mutex_unlock(&wacom->lock);
702
703 return err < 0 ? err : count;
704}
705
Ping Cheng09e7d942011-10-04 23:51:14 -0700706#define DEVICE_LED_SELECT_ATTR(SET_ID) \
707static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
708 struct device_attribute *attr, const char *buf, size_t count) \
709{ \
710 return wacom_led_select_store(dev, SET_ID, buf, count); \
711} \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700712static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
713 struct device_attribute *attr, char *buf) \
714{ \
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700715 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700716 struct wacom *wacom = hid_get_drvdata(hdev); \
Ping Cheng37449ad2014-09-10 12:40:30 -0700717 return scnprintf(buf, PAGE_SIZE, "%d\n", \
718 wacom->led.select[SET_ID]); \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700719} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700720static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700721 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -0700722 wacom_led##SET_ID##_select_store)
723
724DEVICE_LED_SELECT_ATTR(0);
725DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700726
727static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
728 const char *buf, size_t count)
729{
730 unsigned int value;
731 int err;
732
733 err = kstrtouint(buf, 10, &value);
734 if (err)
735 return err;
736
737 mutex_lock(&wacom->lock);
738
739 *dest = value & 0x7f;
740 err = wacom_led_control(wacom);
741
742 mutex_unlock(&wacom->lock);
743
744 return err < 0 ? err : count;
745}
746
747#define DEVICE_LUMINANCE_ATTR(name, field) \
748static ssize_t wacom_##name##_luminance_store(struct device *dev, \
749 struct device_attribute *attr, const char *buf, size_t count) \
750{ \
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700751 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700752 struct wacom *wacom = hid_get_drvdata(hdev); \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700753 \
754 return wacom_luminance_store(wacom, &wacom->led.field, \
755 buf, count); \
756} \
Ping Cheng37449ad2014-09-10 12:40:30 -0700757static ssize_t wacom_##name##_luminance_show(struct device *dev, \
758 struct device_attribute *attr, char *buf) \
759{ \
760 struct wacom *wacom = dev_get_drvdata(dev); \
761 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
762} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700763static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
Ping Cheng37449ad2014-09-10 12:40:30 -0700764 wacom_##name##_luminance_show, \
765 wacom_##name##_luminance_store)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700766
767DEVICE_LUMINANCE_ATTR(status0, llv);
768DEVICE_LUMINANCE_ATTR(status1, hlv);
769DEVICE_LUMINANCE_ATTR(buttons, img_lum);
770
771static ssize_t wacom_button_image_store(struct device *dev, int button_id,
772 const char *buf, size_t count)
773{
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700774 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700775 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700776 int err;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700777 unsigned len;
778 u8 xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700779
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700780 if (hdev->bus == BUS_BLUETOOTH) {
781 len = 256;
782 xfer_id = WAC_CMD_ICON_BT_XFER;
783 } else {
784 len = 1024;
785 xfer_id = WAC_CMD_ICON_XFER;
786 }
787
788 if (count != len)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700789 return -EINVAL;
790
791 mutex_lock(&wacom->lock);
792
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700793 err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700794
795 mutex_unlock(&wacom->lock);
796
797 return err < 0 ? err : count;
798}
799
800#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
801static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
802 struct device_attribute *attr, const char *buf, size_t count) \
803{ \
804 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
805} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700806static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700807 NULL, wacom_btnimg##BUTTON_ID##_store)
808
809DEVICE_BTNIMG_ATTR(0);
810DEVICE_BTNIMG_ATTR(1);
811DEVICE_BTNIMG_ATTR(2);
812DEVICE_BTNIMG_ATTR(3);
813DEVICE_BTNIMG_ATTR(4);
814DEVICE_BTNIMG_ATTR(5);
815DEVICE_BTNIMG_ATTR(6);
816DEVICE_BTNIMG_ATTR(7);
817
Ping Cheng09e7d942011-10-04 23:51:14 -0700818static struct attribute *cintiq_led_attrs[] = {
819 &dev_attr_status_led0_select.attr,
820 &dev_attr_status_led1_select.attr,
821 NULL
822};
823
824static struct attribute_group cintiq_led_attr_group = {
825 .name = "wacom_led",
826 .attrs = cintiq_led_attrs,
827};
828
829static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700830 &dev_attr_status0_luminance.attr,
831 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -0700832 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700833 &dev_attr_buttons_luminance.attr,
834 &dev_attr_button0_rawimg.attr,
835 &dev_attr_button1_rawimg.attr,
836 &dev_attr_button2_rawimg.attr,
837 &dev_attr_button3_rawimg.attr,
838 &dev_attr_button4_rawimg.attr,
839 &dev_attr_button5_rawimg.attr,
840 &dev_attr_button6_rawimg.attr,
841 &dev_attr_button7_rawimg.attr,
842 NULL
843};
844
Ping Cheng09e7d942011-10-04 23:51:14 -0700845static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700846 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -0700847 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700848};
849
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700850static struct attribute *intuos5_led_attrs[] = {
851 &dev_attr_status0_luminance.attr,
852 &dev_attr_status_led0_select.attr,
853 NULL
854};
855
856static struct attribute_group intuos5_led_attr_group = {
857 .name = "wacom_led",
858 .attrs = intuos5_led_attrs,
859};
860
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700861static int wacom_initialize_leds(struct wacom *wacom)
862{
863 int error;
864
Jason Gerecke862cf552015-06-15 18:01:43 -0700865 if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
866 return 0;
867
Ping Cheng09e7d942011-10-04 23:51:14 -0700868 /* Initialize default values */
869 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700870 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700871 case INTUOS4:
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700872 case INTUOS4WL:
Ping Cheng09e7d942011-10-04 23:51:14 -0700873 case INTUOS4L:
874 wacom->led.select[0] = 0;
875 wacom->led.select[1] = 0;
Ping Chengf4fa9a62011-10-04 23:49:42 -0700876 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700877 wacom->led.hlv = 20;
878 wacom->led.img_lum = 10;
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700879 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700880 &intuos4_led_attr_group);
881 break;
882
Jason Gerecke246835f2011-12-12 00:12:04 -0800883 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700884 case WACOM_21UX2:
885 wacom->led.select[0] = 0;
886 wacom->led.select[1] = 0;
887 wacom->led.llv = 0;
888 wacom->led.hlv = 0;
889 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700890
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700891 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700892 &cintiq_led_attr_group);
893 break;
894
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700895 case INTUOS5S:
896 case INTUOS5:
897 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700898 case INTUOSPS:
899 case INTUOSPM:
900 case INTUOSPL:
Jason Gerecke862cf552015-06-15 18:01:43 -0700901 wacom->led.select[0] = 0;
902 wacom->led.select[1] = 0;
903 wacom->led.llv = 32;
904 wacom->led.hlv = 0;
905 wacom->led.img_lum = 0;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700906
Jason Gerecke862cf552015-06-15 18:01:43 -0700907 error = sysfs_create_group(&wacom->hdev->dev.kobj,
908 &intuos5_led_attr_group);
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700909 break;
910
Ping Cheng09e7d942011-10-04 23:51:14 -0700911 default:
912 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700913 }
914
Ping Cheng09e7d942011-10-04 23:51:14 -0700915 if (error) {
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700916 hid_err(wacom->hdev,
Ping Cheng09e7d942011-10-04 23:51:14 -0700917 "cannot create sysfs group err: %d\n", error);
918 return error;
919 }
920 wacom_led_control(wacom);
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700921 wacom->led_initialized = true;
Ping Cheng09e7d942011-10-04 23:51:14 -0700922
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700923 return 0;
924}
925
926static void wacom_destroy_leds(struct wacom *wacom)
927{
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700928 if (!wacom->led_initialized)
929 return;
930
Jason Gerecke862cf552015-06-15 18:01:43 -0700931 if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
932 return;
933
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700934 wacom->led_initialized = false;
935
Ping Cheng09e7d942011-10-04 23:51:14 -0700936 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700937 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700938 case INTUOS4:
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700939 case INTUOS4WL:
Ping Cheng09e7d942011-10-04 23:51:14 -0700940 case INTUOS4L:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700941 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700942 &intuos4_led_attr_group);
943 break;
944
Jason Gerecke246835f2011-12-12 00:12:04 -0800945 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700946 case WACOM_21UX2:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700947 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700948 &cintiq_led_attr_group);
949 break;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700950
951 case INTUOS5S:
952 case INTUOS5:
953 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700954 case INTUOSPS:
955 case INTUOSPM:
956 case INTUOSPL:
Jason Gerecke862cf552015-06-15 18:01:43 -0700957 sysfs_remove_group(&wacom->hdev->dev.kobj,
958 &intuos5_led_attr_group);
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700959 break;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700960 }
961}
962
Chris Bagwella1d552c2012-03-25 23:26:30 -0700963static enum power_supply_property wacom_battery_props[] = {
Jason Gerecke71fa6412015-03-11 10:25:41 -0700964 POWER_SUPPLY_PROP_PRESENT,
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700965 POWER_SUPPLY_PROP_STATUS,
Bastien Nocera6e2a6e82013-10-15 23:33:00 -0700966 POWER_SUPPLY_PROP_SCOPE,
Chris Bagwella1d552c2012-03-25 23:26:30 -0700967 POWER_SUPPLY_PROP_CAPACITY
968};
969
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700970static enum power_supply_property wacom_ac_props[] = {
971 POWER_SUPPLY_PROP_PRESENT,
972 POWER_SUPPLY_PROP_ONLINE,
973 POWER_SUPPLY_PROP_SCOPE,
974};
975
Chris Bagwella1d552c2012-03-25 23:26:30 -0700976static int wacom_battery_get_property(struct power_supply *psy,
977 enum power_supply_property psp,
978 union power_supply_propval *val)
979{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100980 struct wacom *wacom = power_supply_get_drvdata(psy);
Chris Bagwella1d552c2012-03-25 23:26:30 -0700981 int ret = 0;
982
983 switch (psp) {
Jason Gerecke71fa6412015-03-11 10:25:41 -0700984 case POWER_SUPPLY_PROP_PRESENT:
985 val->intval = wacom->wacom_wac.bat_connected;
986 break;
Bastien Nocera6e2a6e82013-10-15 23:33:00 -0700987 case POWER_SUPPLY_PROP_SCOPE:
988 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
989 break;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700990 case POWER_SUPPLY_PROP_CAPACITY:
991 val->intval =
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700992 wacom->wacom_wac.battery_capacity;
993 break;
994 case POWER_SUPPLY_PROP_STATUS:
995 if (wacom->wacom_wac.bat_charging)
996 val->intval = POWER_SUPPLY_STATUS_CHARGING;
997 else if (wacom->wacom_wac.battery_capacity == 100 &&
998 wacom->wacom_wac.ps_connected)
999 val->intval = POWER_SUPPLY_STATUS_FULL;
Jason Gereckeb0882cb2015-03-06 11:47:43 -08001000 else if (wacom->wacom_wac.ps_connected)
1001 val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001002 else
1003 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001004 break;
1005 default:
1006 ret = -EINVAL;
1007 break;
1008 }
1009
1010 return ret;
1011}
1012
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001013static int wacom_ac_get_property(struct power_supply *psy,
1014 enum power_supply_property psp,
1015 union power_supply_propval *val)
1016{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001017 struct wacom *wacom = power_supply_get_drvdata(psy);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001018 int ret = 0;
1019
1020 switch (psp) {
1021 case POWER_SUPPLY_PROP_PRESENT:
1022 /* fall through */
1023 case POWER_SUPPLY_PROP_ONLINE:
1024 val->intval = wacom->wacom_wac.ps_connected;
1025 break;
1026 case POWER_SUPPLY_PROP_SCOPE:
1027 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
1028 break;
1029 default:
1030 ret = -EINVAL;
1031 break;
1032 }
1033 return ret;
1034}
1035
Chris Bagwella1d552c2012-03-25 23:26:30 -07001036static int wacom_initialize_battery(struct wacom *wacom)
1037{
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001038 static atomic_t battery_no = ATOMIC_INIT(0);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001039 struct power_supply_config psy_cfg = { .drv_data = wacom, };
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001040 unsigned long n;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001041
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001042 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001043 struct power_supply_desc *bat_desc = &wacom->battery_desc;
1044 struct power_supply_desc *ac_desc = &wacom->ac_desc;
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001045 n = atomic_inc_return(&battery_no) - 1;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001046
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001047 bat_desc->properties = wacom_battery_props;
1048 bat_desc->num_properties = ARRAY_SIZE(wacom_battery_props);
1049 bat_desc->get_property = wacom_battery_get_property;
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001050 sprintf(wacom->wacom_wac.bat_name, "wacom_battery_%ld", n);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001051 bat_desc->name = wacom->wacom_wac.bat_name;
1052 bat_desc->type = POWER_SUPPLY_TYPE_BATTERY;
1053 bat_desc->use_for_apm = 0;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001054
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001055 ac_desc->properties = wacom_ac_props;
1056 ac_desc->num_properties = ARRAY_SIZE(wacom_ac_props);
1057 ac_desc->get_property = wacom_ac_get_property;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001058 sprintf(wacom->wacom_wac.ac_name, "wacom_ac_%ld", n);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001059 ac_desc->name = wacom->wacom_wac.ac_name;
1060 ac_desc->type = POWER_SUPPLY_TYPE_MAINS;
1061 ac_desc->use_for_apm = 0;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001062
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001063 wacom->battery = power_supply_register(&wacom->hdev->dev,
1064 &wacom->battery_desc, &psy_cfg);
1065 if (IS_ERR(wacom->battery))
1066 return PTR_ERR(wacom->battery);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001067
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001068 power_supply_powers(wacom->battery, &wacom->hdev->dev);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001069
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001070 wacom->ac = power_supply_register(&wacom->hdev->dev,
1071 &wacom->ac_desc,
1072 &psy_cfg);
1073 if (IS_ERR(wacom->ac)) {
1074 power_supply_unregister(wacom->battery);
1075 return PTR_ERR(wacom->ac);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001076 }
1077
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001078 power_supply_powers(wacom->ac, &wacom->hdev->dev);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001079 }
1080
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001081 return 0;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001082}
1083
1084static void wacom_destroy_battery(struct wacom *wacom)
1085{
Linus Torvalds8de29a32015-04-14 08:25:26 -08001086 if (wacom->battery) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001087 power_supply_unregister(wacom->battery);
1088 wacom->battery = NULL;
1089 power_supply_unregister(wacom->ac);
1090 wacom->ac = NULL;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001091 }
Chris Bagwella1d552c2012-03-25 23:26:30 -07001092}
1093
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001094static ssize_t wacom_show_speed(struct device *dev,
1095 struct device_attribute
1096 *attr, char *buf)
1097{
1098 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1099 struct wacom *wacom = hid_get_drvdata(hdev);
1100
1101 return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
1102}
1103
1104static ssize_t wacom_store_speed(struct device *dev,
1105 struct device_attribute *attr,
1106 const char *buf, size_t count)
1107{
1108 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1109 struct wacom *wacom = hid_get_drvdata(hdev);
1110 u8 new_speed;
1111
1112 if (kstrtou8(buf, 0, &new_speed))
1113 return -EINVAL;
1114
1115 if (new_speed != 0 && new_speed != 1)
1116 return -EINVAL;
1117
1118 wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
1119
1120 return count;
1121}
1122
Ping Chenge0984bc2014-09-10 12:40:05 -07001123static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001124 wacom_show_speed, wacom_store_speed);
1125
Aaron Skomra72b236d2015-08-20 16:05:17 -07001126
1127static ssize_t wacom_show_remote_mode(struct kobject *kobj,
1128 struct kobj_attribute *kattr,
1129 char *buf, int index)
1130{
1131 struct device *dev = container_of(kobj->parent, struct device, kobj);
1132 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1133 struct wacom *wacom = hid_get_drvdata(hdev);
1134 u8 mode;
1135
1136 mode = wacom->led.select[index];
1137 if (mode >= 0 && mode < 3)
1138 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
1139 else
1140 return snprintf(buf, PAGE_SIZE, "%d\n", -1);
1141}
1142
1143#define DEVICE_EKR_ATTR_GROUP(SET_ID) \
1144static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj, \
1145 struct kobj_attribute *kattr, char *buf) \
1146{ \
1147 return wacom_show_remote_mode(kobj, kattr, buf, SET_ID); \
1148} \
1149static struct kobj_attribute remote##SET_ID##_mode_attr = { \
1150 .attr = {.name = "remote_mode", \
1151 .mode = DEV_ATTR_RO_PERM}, \
1152 .show = wacom_show_remote##SET_ID##_mode, \
1153}; \
1154static struct attribute *remote##SET_ID##_serial_attrs[] = { \
1155 &remote##SET_ID##_mode_attr.attr, \
1156 NULL \
1157}; \
1158static struct attribute_group remote##SET_ID##_serial_group = { \
1159 .name = NULL, \
1160 .attrs = remote##SET_ID##_serial_attrs, \
1161}
1162
1163DEVICE_EKR_ATTR_GROUP(0);
1164DEVICE_EKR_ATTR_GROUP(1);
1165DEVICE_EKR_ATTR_GROUP(2);
1166DEVICE_EKR_ATTR_GROUP(3);
1167DEVICE_EKR_ATTR_GROUP(4);
1168
1169int wacom_remote_create_attr_group(struct wacom *wacom, __u32 serial, int index)
1170{
1171 int error = 0;
1172 char *buf;
1173 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1174
1175 wacom_wac->serial[index] = serial;
1176
1177 buf = kzalloc(WAC_REMOTE_SERIAL_MAX_STRLEN, GFP_KERNEL);
1178 if (!buf)
1179 return -ENOMEM;
1180 snprintf(buf, WAC_REMOTE_SERIAL_MAX_STRLEN, "%d", serial);
1181 wacom->remote_group[index].name = buf;
1182
1183 error = sysfs_create_group(wacom->remote_dir,
1184 &wacom->remote_group[index]);
1185 if (error) {
1186 hid_err(wacom->hdev,
1187 "cannot create sysfs group err: %d\n", error);
1188 kobject_put(wacom->remote_dir);
1189 return error;
1190 }
1191
1192 return 0;
1193}
1194
1195void wacom_remote_destroy_attr_group(struct wacom *wacom, __u32 serial)
1196{
1197 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1198 int i;
1199
1200 if (!serial)
1201 return;
1202
1203 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1204 if (wacom_wac->serial[i] == serial) {
1205 wacom_wac->serial[i] = 0;
1206 wacom->led.select[i] = WACOM_STATUS_UNKNOWN;
1207 if (wacom->remote_group[i].name) {
1208 sysfs_remove_group(wacom->remote_dir,
1209 &wacom->remote_group[i]);
1210 kfree(wacom->remote_group[i].name);
1211 wacom->remote_group[i].name = NULL;
1212 }
1213 }
1214 }
1215}
1216
1217static int wacom_cmd_unpair_remote(struct wacom *wacom, unsigned char selector)
1218{
1219 const size_t buf_size = 2;
1220 unsigned char *buf;
1221 int retval;
1222
1223 buf = kzalloc(buf_size, GFP_KERNEL);
1224 if (!buf)
1225 return -ENOMEM;
1226
1227 buf[0] = WAC_CMD_DELETE_PAIRING;
1228 buf[1] = selector;
1229
1230 retval = wacom_set_report(wacom->hdev, HID_OUTPUT_REPORT, buf,
1231 buf_size, WAC_CMD_RETRIES);
1232 kfree(buf);
1233
1234 return retval;
1235}
1236
1237static ssize_t wacom_store_unpair_remote(struct kobject *kobj,
1238 struct kobj_attribute *attr,
1239 const char *buf, size_t count)
1240{
1241 unsigned char selector = 0;
1242 struct device *dev = container_of(kobj->parent, struct device, kobj);
1243 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1244 struct wacom *wacom = hid_get_drvdata(hdev);
1245 int err;
1246
1247 if (!strncmp(buf, "*\n", 2)) {
1248 selector = WAC_CMD_UNPAIR_ALL;
1249 } else {
1250 hid_info(wacom->hdev, "remote: unrecognized unpair code: %s\n",
1251 buf);
1252 return -1;
1253 }
1254
1255 mutex_lock(&wacom->lock);
1256
1257 err = wacom_cmd_unpair_remote(wacom, selector);
1258 mutex_unlock(&wacom->lock);
1259
1260 return err < 0 ? err : count;
1261}
1262
1263static struct kobj_attribute unpair_remote_attr = {
1264 .attr = {.name = "unpair_remote", .mode = 0200},
1265 .store = wacom_store_unpair_remote,
1266};
1267
1268static const struct attribute *remote_unpair_attrs[] = {
1269 &unpair_remote_attr.attr,
1270 NULL
1271};
1272
1273static int wacom_initialize_remote(struct wacom *wacom)
1274{
1275 int error = 0;
1276 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1277 int i;
1278
1279 if (wacom->wacom_wac.features.type != REMOTE)
1280 return 0;
1281
1282 wacom->remote_group[0] = remote0_serial_group;
1283 wacom->remote_group[1] = remote1_serial_group;
1284 wacom->remote_group[2] = remote2_serial_group;
1285 wacom->remote_group[3] = remote3_serial_group;
1286 wacom->remote_group[4] = remote4_serial_group;
1287
1288 wacom->remote_dir = kobject_create_and_add("wacom_remote",
1289 &wacom->hdev->dev.kobj);
1290 if (!wacom->remote_dir)
1291 return -ENOMEM;
1292
1293 error = sysfs_create_files(wacom->remote_dir, remote_unpair_attrs);
1294
1295 if (error) {
1296 hid_err(wacom->hdev,
1297 "cannot create sysfs group err: %d\n", error);
1298 return error;
1299 }
1300
1301 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1302 wacom->led.select[i] = WACOM_STATUS_UNKNOWN;
1303 wacom_wac->serial[i] = 0;
1304 }
1305
1306 return 0;
1307}
1308
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001309static struct input_dev *wacom_allocate_input(struct wacom *wacom)
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001310{
1311 struct input_dev *input_dev;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001312 struct hid_device *hdev = wacom->hdev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001313 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001314
1315 input_dev = input_allocate_device();
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001316 if (!input_dev)
1317 return NULL;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001318
Jason Gerecke2bdd1632015-07-13 18:03:45 -07001319 input_dev->name = wacom_wac->features.name;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001320 input_dev->phys = hdev->phys;
1321 input_dev->dev.parent = &hdev->dev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001322 input_dev->open = wacom_open;
1323 input_dev->close = wacom_close;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001324 input_dev->uniq = hdev->uniq;
1325 input_dev->id.bustype = hdev->bus;
1326 input_dev->id.vendor = hdev->vendor;
Benjamin Tissoires12969e32014-09-11 13:14:04 -04001327 input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001328 input_dev->id.version = hdev->version;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001329 input_set_drvdata(input_dev, wacom);
1330
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001331 return input_dev;
1332}
1333
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001334static void wacom_clean_inputs(struct wacom *wacom)
1335{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001336 if (wacom->wacom_wac.pen_input) {
1337 if (wacom->wacom_wac.pen_registered)
1338 input_unregister_device(wacom->wacom_wac.pen_input);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001339 else
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001340 input_free_device(wacom->wacom_wac.pen_input);
1341 }
1342 if (wacom->wacom_wac.touch_input) {
1343 if (wacom->wacom_wac.touch_registered)
1344 input_unregister_device(wacom->wacom_wac.touch_input);
1345 else
1346 input_free_device(wacom->wacom_wac.touch_input);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001347 }
1348 if (wacom->wacom_wac.pad_input) {
Ping Cheng954df6a2014-11-20 16:31:12 -08001349 if (wacom->wacom_wac.pad_registered)
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001350 input_unregister_device(wacom->wacom_wac.pad_input);
1351 else
1352 input_free_device(wacom->wacom_wac.pad_input);
1353 }
Aaron Skomra72b236d2015-08-20 16:05:17 -07001354 if (wacom->remote_dir)
1355 kobject_put(wacom->remote_dir);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001356 wacom->wacom_wac.pen_input = NULL;
1357 wacom->wacom_wac.touch_input = NULL;
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001358 wacom->wacom_wac.pad_input = NULL;
Ping Cheng912ca212014-09-10 12:41:31 -07001359 wacom_destroy_leds(wacom);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001360}
1361
Jason Gerecked9f2d202015-07-13 18:03:44 -07001362static int wacom_allocate_inputs(struct wacom *wacom)
1363{
1364 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1365
1366 wacom_wac->pen_input = wacom_allocate_input(wacom);
1367 wacom_wac->touch_input = wacom_allocate_input(wacom);
1368 wacom_wac->pad_input = wacom_allocate_input(wacom);
1369 if (!wacom_wac->pen_input || !wacom_wac->touch_input || !wacom_wac->pad_input) {
1370 wacom_clean_inputs(wacom);
1371 return -ENOMEM;
1372 }
1373
Jason Gerecke2bdd1632015-07-13 18:03:45 -07001374 wacom_wac->pen_input->name = wacom_wac->pen_name;
Jason Gerecked9f2d202015-07-13 18:03:44 -07001375 wacom_wac->touch_input->name = wacom_wac->touch_name;
1376 wacom_wac->pad_input->name = wacom_wac->pad_name;
1377
1378 return 0;
1379}
1380
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001381static int wacom_register_inputs(struct wacom *wacom)
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001382{
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001383 struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001384 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Jason Gerecke2636a3f2015-06-15 18:01:44 -07001385 int error = 0;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001386
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001387 pen_input_dev = wacom_wac->pen_input;
1388 touch_input_dev = wacom_wac->touch_input;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001389 pad_input_dev = wacom_wac->pad_input;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001390
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001391 if (!pen_input_dev || !touch_input_dev || !pad_input_dev)
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001392 return -EINVAL;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001393
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001394 error = wacom_setup_pen_input_capabilities(pen_input_dev, wacom_wac);
1395 if (error) {
1396 /* no pen in use on this interface */
1397 input_free_device(pen_input_dev);
1398 wacom_wac->pen_input = NULL;
1399 pen_input_dev = NULL;
1400 } else {
1401 error = input_register_device(pen_input_dev);
Ping Cheng30ebc1a2014-11-18 13:29:16 -08001402 if (error)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001403 goto fail_register_pen_input;
1404 wacom_wac->pen_registered = true;
1405 }
1406
1407 error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac);
1408 if (error) {
1409 /* no touch in use on this interface */
1410 input_free_device(touch_input_dev);
1411 wacom_wac->touch_input = NULL;
1412 touch_input_dev = NULL;
1413 } else {
1414 error = input_register_device(touch_input_dev);
1415 if (error)
1416 goto fail_register_touch_input;
1417 wacom_wac->touch_registered = true;
Ping Cheng30ebc1a2014-11-18 13:29:16 -08001418 }
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001419
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001420 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
1421 if (error) {
1422 /* no pad in use on this interface */
1423 input_free_device(pad_input_dev);
1424 wacom_wac->pad_input = NULL;
1425 pad_input_dev = NULL;
1426 } else {
1427 error = input_register_device(pad_input_dev);
1428 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001429 goto fail_register_pad_input;
Ping Cheng954df6a2014-11-20 16:31:12 -08001430 wacom_wac->pad_registered = true;
Ping Cheng912ca212014-09-10 12:41:31 -07001431
1432 error = wacom_initialize_leds(wacom);
1433 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001434 goto fail_leds;
Aaron Skomra72b236d2015-08-20 16:05:17 -07001435
1436 error = wacom_initialize_remote(wacom);
1437 if (error)
1438 goto fail_remote;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001439 }
1440
Ping Cheng19635182012-04-29 21:09:18 -07001441 return 0;
1442
Aaron Skomra72b236d2015-08-20 16:05:17 -07001443fail_remote:
1444 wacom_destroy_leds(wacom);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001445fail_leds:
Ping Cheng912ca212014-09-10 12:41:31 -07001446 input_unregister_device(pad_input_dev);
1447 pad_input_dev = NULL;
Ping Cheng954df6a2014-11-20 16:31:12 -08001448 wacom_wac->pad_registered = false;
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001449fail_register_pad_input:
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001450 input_unregister_device(touch_input_dev);
1451 wacom_wac->touch_input = NULL;
1452 wacom_wac->touch_registered = false;
1453fail_register_touch_input:
1454 input_unregister_device(pen_input_dev);
1455 wacom_wac->pen_input = NULL;
1456 wacom_wac->pen_registered = false;
1457fail_register_pen_input:
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001458 return error;
1459}
1460
Chris Bagwell16bf2882012-03-25 23:26:20 -07001461static void wacom_wireless_work(struct work_struct *work)
1462{
1463 struct wacom *wacom = container_of(work, struct wacom, work);
1464 struct usb_device *usbdev = wacom->usbdev;
1465 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001466 struct hid_device *hdev1, *hdev2;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001467 struct wacom *wacom1, *wacom2;
1468 struct wacom_wac *wacom_wac1, *wacom_wac2;
1469 int error;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001470
1471 /*
1472 * Regardless if this is a disconnect or a new tablet,
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001473 * remove any existing input and battery devices.
Chris Bagwell16bf2882012-03-25 23:26:20 -07001474 */
1475
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001476 wacom_destroy_battery(wacom);
1477
Chris Bagwell16bf2882012-03-25 23:26:20 -07001478 /* Stylus interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001479 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
1480 wacom1 = hid_get_drvdata(hdev1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001481 wacom_wac1 = &(wacom1->wacom_wac);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001482 wacom_clean_inputs(wacom1);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001483
1484 /* Touch interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001485 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
1486 wacom2 = hid_get_drvdata(hdev2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001487 wacom_wac2 = &(wacom2->wacom_wac);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001488 wacom_clean_inputs(wacom2);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001489
1490 if (wacom_wac->pid == 0) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001491 hid_info(wacom->hdev, "wireless tablet disconnected\n");
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001492 wacom_wac1->shared->type = 0;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001493 } else {
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001494 const struct hid_device_id *id = wacom_ids;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001495
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001496 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001497 wacom_wac->pid);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001498
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001499 while (id->bus) {
1500 if (id->vendor == USB_VENDOR_ID_WACOM &&
1501 id->product == wacom_wac->pid)
Chris Bagwell16bf2882012-03-25 23:26:20 -07001502 break;
1503 id++;
1504 }
1505
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001506 if (!id->bus) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001507 hid_info(wacom->hdev, "ignoring unknown PID.\n");
Chris Bagwell16bf2882012-03-25 23:26:20 -07001508 return;
1509 }
1510
1511 /* Stylus interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001512 wacom_wac1->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001513 *((struct wacom_features *)id->driver_data);
Jason Gereckeaa86b182015-06-15 18:01:42 -07001514 wacom_wac1->features.device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke862cf552015-06-15 18:01:43 -07001515 if (wacom_wac1->features.type != INTUOSHT &&
1516 wacom_wac1->features.type != BAMBOO_PT)
1517 wacom_wac1->features.device_type |= WACOM_DEVICETYPE_PAD;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001518 snprintf(wacom_wac1->pen_name, WACOM_NAME_MAX, "%s (WL) Pen",
Ping Cheng57bcfce2013-10-15 23:44:00 -07001519 wacom_wac1->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001520 snprintf(wacom_wac1->pad_name, WACOM_NAME_MAX, "%s (WL) Pad",
1521 wacom_wac1->features.name);
Ping Cheng961794a2013-12-05 12:54:53 -08001522 wacom_wac1->shared->touch_max = wacom_wac1->features.touch_max;
1523 wacom_wac1->shared->type = wacom_wac1->features.type;
Ping Cheng912ca212014-09-10 12:41:31 -07001524 wacom_wac1->pid = wacom_wac->pid;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001525 error = wacom_allocate_inputs(wacom1) ||
1526 wacom_register_inputs(wacom1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001527 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001528 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001529
1530 /* Touch interface */
Ping Chengb5fd2a32013-11-25 18:44:55 -08001531 if (wacom_wac1->features.touch_max ||
1532 wacom_wac1->features.type == INTUOSHT) {
Ping Cheng57bcfce2013-10-15 23:44:00 -07001533 wacom_wac2->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001534 *((struct wacom_features *)id->driver_data);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001535 wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
Ping Cheng57bcfce2013-10-15 23:44:00 -07001536 wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001537 snprintf(wacom_wac2->touch_name, WACOM_NAME_MAX,
Jason Gerecke862cf552015-06-15 18:01:43 -07001538 "%s (WL) Finger",wacom_wac2->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001539 snprintf(wacom_wac2->pad_name, WACOM_NAME_MAX,
Jason Gerecke862cf552015-06-15 18:01:43 -07001540 "%s (WL) Pad",wacom_wac2->features.name);
1541 if (wacom_wac1->features.touch_max)
1542 wacom_wac2->features.device_type |= WACOM_DEVICETYPE_TOUCH;
1543 if (wacom_wac1->features.type == INTUOSHT ||
1544 wacom_wac1->features.type == BAMBOO_PT)
1545 wacom_wac2->features.device_type |= WACOM_DEVICETYPE_PAD;
Ping Cheng912ca212014-09-10 12:41:31 -07001546 wacom_wac2->pid = wacom_wac->pid;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001547 error = wacom_allocate_inputs(wacom2) ||
1548 wacom_register_inputs(wacom2);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001549 if (error)
1550 goto fail;
Ping Cheng961794a2013-12-05 12:54:53 -08001551
1552 if (wacom_wac1->features.type == INTUOSHT &&
1553 wacom_wac1->features.touch_max)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001554 wacom_wac->shared->touch_input = wacom_wac2->touch_input;
Ping Cheng57bcfce2013-10-15 23:44:00 -07001555 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001556
1557 error = wacom_initialize_battery(wacom);
1558 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001559 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001560 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001561
1562 return;
1563
Ping Cheng57bcfce2013-10-15 23:44:00 -07001564fail:
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001565 wacom_clean_inputs(wacom1);
1566 wacom_clean_inputs(wacom2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001567 return;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001568}
1569
Jason Gereckefce99572015-03-06 11:47:40 -08001570void wacom_battery_work(struct work_struct *work)
1571{
1572 struct wacom *wacom = container_of(work, struct wacom, work);
1573
1574 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Linus Torvalds8de29a32015-04-14 08:25:26 -08001575 !wacom->battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08001576 wacom_initialize_battery(wacom);
1577 }
1578 else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Linus Torvalds8de29a32015-04-14 08:25:26 -08001579 wacom->battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08001580 wacom_destroy_battery(wacom);
1581 }
1582}
1583
Ping Cheng401d7d12013-07-28 00:38:54 -07001584/*
1585 * Not all devices report physical dimensions from HID.
1586 * Compute the default from hardcoded logical dimension
1587 * and resolution before driver overwrites them.
1588 */
1589static void wacom_set_default_phy(struct wacom_features *features)
1590{
1591 if (features->x_resolution) {
1592 features->x_phy = (features->x_max * 100) /
1593 features->x_resolution;
1594 features->y_phy = (features->y_max * 100) /
1595 features->y_resolution;
1596 }
1597}
1598
1599static void wacom_calculate_res(struct wacom_features *features)
1600{
Ping Cheng3d64f542015-04-15 16:54:14 -07001601 /* set unit to "100th of a mm" for devices not reported by HID */
1602 if (!features->unit) {
1603 features->unit = 0x11;
1604 features->unitExpo = -3;
1605 }
1606
Ping Cheng401d7d12013-07-28 00:38:54 -07001607 features->x_resolution = wacom_calc_hid_res(features->x_max,
1608 features->x_phy,
1609 features->unit,
1610 features->unitExpo);
1611 features->y_resolution = wacom_calc_hid_res(features->y_max,
1612 features->y_phy,
1613 features->unit,
1614 features->unitExpo);
1615}
1616
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001617static size_t wacom_compute_pktlen(struct hid_device *hdev)
1618{
1619 struct hid_report_enum *report_enum;
1620 struct hid_report *report;
1621 size_t size = 0;
1622
1623 report_enum = hdev->report_enum + HID_INPUT_REPORT;
1624
1625 list_for_each_entry(report, &report_enum->report_list, list) {
Mathieu Magnaudetdabb05c62014-11-27 16:02:36 +01001626 size_t report_size = hid_report_len(report);
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001627 if (report_size > size)
1628 size = report_size;
1629 }
1630
1631 return size;
1632}
1633
Ping Chengc24eab42015-04-24 15:32:51 -07001634static void wacom_update_name(struct wacom *wacom)
1635{
1636 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1637 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke44b52502015-06-15 18:01:41 -07001638 char name[WACOM_NAME_MAX];
Ping Chengc24eab42015-04-24 15:32:51 -07001639
1640 /* Generic devices name unspecified */
1641 if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) {
1642 if (strstr(wacom->hdev->name, "Wacom") ||
1643 strstr(wacom->hdev->name, "wacom") ||
1644 strstr(wacom->hdev->name, "WACOM")) {
1645 /* name is in HID descriptor, use it */
Jason Gerecke44b52502015-06-15 18:01:41 -07001646 strlcpy(name, wacom->hdev->name, sizeof(name));
Ping Chengc24eab42015-04-24 15:32:51 -07001647
1648 /* strip out excess whitespaces */
1649 while (1) {
Jason Gerecke44b52502015-06-15 18:01:41 -07001650 char *gap = strstr(name, " ");
Ping Chengc24eab42015-04-24 15:32:51 -07001651 if (gap == NULL)
1652 break;
1653 /* shift everything including the terminator */
1654 memmove(gap, gap+1, strlen(gap));
1655 }
1656 /* get rid of trailing whitespace */
Jason Gerecke44b52502015-06-15 18:01:41 -07001657 if (name[strlen(name)-1] == ' ')
1658 name[strlen(name)-1] = '\0';
Ping Chengc24eab42015-04-24 15:32:51 -07001659 } else {
1660 /* no meaningful name retrieved. use product ID */
Jason Gerecke44b52502015-06-15 18:01:41 -07001661 snprintf(name, sizeof(name),
Ping Chengc24eab42015-04-24 15:32:51 -07001662 "%s %X", features->name, wacom->hdev->product);
1663 }
1664 } else {
Jason Gerecke44b52502015-06-15 18:01:41 -07001665 strlcpy(name, features->name, sizeof(name));
Ping Chengc24eab42015-04-24 15:32:51 -07001666 }
1667
1668 /* Append the device type to the name */
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001669 snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name),
1670 "%s Pen", name);
1671 snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name),
1672 "%s Finger", name);
Ping Chengc24eab42015-04-24 15:32:51 -07001673 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
Jason Gerecke44b52502015-06-15 18:01:41 -07001674 "%s Pad", name);
Ping Chengc24eab42015-04-24 15:32:51 -07001675}
1676
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001677static int wacom_probe(struct hid_device *hdev,
1678 const struct hid_device_id *id)
Ping Cheng3bea7332006-07-13 18:01:36 -07001679{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001680 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
Ping Cheng3bea7332006-07-13 18:01:36 -07001681 struct usb_device *dev = interface_to_usbdev(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -07001682 struct wacom *wacom;
1683 struct wacom_wac *wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -08001684 struct wacom_features *features;
Jason Childse33da8a2010-02-17 22:38:31 -08001685 int error;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001686 unsigned int connect_mask = HID_CONNECT_HIDRAW;
Ping Cheng3bea7332006-07-13 18:01:36 -07001687
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001688 if (!id->driver_data)
Bastian Blankb036f6f2010-02-10 23:06:23 -08001689 return -EINVAL;
1690
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -04001691 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
1692
Benjamin Tissoires5fcad162015-03-05 17:36:54 -05001693 /* hid-core sets this quirk for the boot interface */
1694 hdev->quirks &= ~HID_QUIRK_NOGET;
1695
Ping Cheng3bea7332006-07-13 18:01:36 -07001696 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
Dan Carpenterf1823942012-03-29 22:38:11 -07001697 if (!wacom)
1698 return -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -07001699
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001700 hid_set_drvdata(hdev, wacom);
1701 wacom->hdev = hdev;
1702
Benjamin Tissoiresba9a3542014-07-24 12:58:45 -07001703 /* ask for the report descriptor to be loaded by HID */
1704 error = hid_parse(hdev);
1705 if (error) {
1706 hid_err(hdev, "parse failed\n");
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001707 goto fail_parse;
Benjamin Tissoiresba9a3542014-07-24 12:58:45 -07001708 }
1709
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001710 wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001711 wacom_wac->features = *((struct wacom_features *)id->driver_data);
Jason Childse33da8a2010-02-17 22:38:31 -08001712 features = &wacom_wac->features;
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001713 features->pktlen = wacom_compute_pktlen(hdev);
Jason Childse33da8a2010-02-17 22:38:31 -08001714 if (features->pktlen > WACOM_PKGLEN_MAX) {
1715 error = -EINVAL;
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001716 goto fail_pktlen;
Jason Childse33da8a2010-02-17 22:38:31 -08001717 }
1718
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001719 if (features->check_for_hid_type && features->hid_type != hdev->type) {
1720 error = -ENODEV;
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001721 goto fail_type;
Jason Childse33da8a2010-02-17 22:38:31 -08001722 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001723
Ping Cheng3bea7332006-07-13 18:01:36 -07001724 wacom->usbdev = dev;
Oliver Neukume7224092008-04-15 01:31:57 -04001725 wacom->intf = intf;
1726 mutex_init(&wacom->lock);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001727 INIT_WORK(&wacom->work, wacom_wireless_work);
Ping Cheng3bea7332006-07-13 18:01:36 -07001728
Jason Gerecke3f14a632015-08-03 10:17:05 -07001729 error = wacom_allocate_inputs(wacom);
1730 if (error)
1731 goto fail_allocate_inputs;
Benjamin Tissoires494078b2014-09-23 12:08:07 -04001732
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05001733 /*
1734 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
1735 * into debug mode for the touch part.
1736 * We ignore the other interfaces.
1737 */
1738 if (features->type == BAMBOO_PAD) {
1739 if (features->pktlen == WACOM_PKGLEN_PENABLED) {
1740 features->type = HID_GENERIC;
1741 } else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) &&
1742 (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) {
1743 error = -ENODEV;
1744 goto fail_shared_data;
1745 }
1746 }
1747
Ping Cheng401d7d12013-07-28 00:38:54 -07001748 /* set the default size in case we do not get them from hid */
1749 wacom_set_default_phy(features);
1750
Ping Chengf393ee22012-04-29 21:09:17 -07001751 /* Retrieve the physical and logical size for touch devices */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001752 wacom_retrieve_hid_descriptor(hdev, features);
Ping Cheng42f4f272015-04-15 16:53:54 -07001753 wacom_setup_device_quirks(wacom);
Jason Gerecke042628a2015-04-30 17:51:54 -07001754
Jason Gereckeaa86b182015-06-15 18:01:42 -07001755 if (features->device_type == WACOM_DEVICETYPE_NONE &&
1756 features->type != WIRELESS) {
Jason Gerecke8e116d32015-04-30 17:51:55 -07001757 error = features->type == HID_GENERIC ? -ENODEV : 0;
1758
Jason Gerecke042628a2015-04-30 17:51:54 -07001759 dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.",
Jason Gerecke8e116d32015-04-30 17:51:55 -07001760 hdev->name,
1761 error ? "Ignoring" : "Assuming pen");
1762
1763 if (error)
1764 goto fail_shared_data;
Jason Gerecke042628a2015-04-30 17:51:54 -07001765
Jason Gereckeaa86b182015-06-15 18:01:42 -07001766 features->device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke042628a2015-04-30 17:51:54 -07001767 }
1768
Ping Cheng401d7d12013-07-28 00:38:54 -07001769 wacom_calculate_res(features);
1770
Ping Chengc24eab42015-04-24 15:32:51 -07001771 wacom_update_name(wacom);
Ping Cheng4492eff2010-03-19 22:18:15 -07001772
Ping Chengf3586d22015-03-20 14:57:00 -07001773 error = wacom_add_shared_data(hdev);
1774 if (error)
1775 goto fail_shared_data;
Ping Cheng49b764a2010-02-20 00:53:49 -08001776
Jason Gereckeccad85c2015-08-03 10:17:04 -07001777 if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) &&
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001778 (features->quirks & WACOM_QUIRK_BATTERY)) {
1779 error = wacom_initialize_battery(wacom);
1780 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001781 goto fail_battery;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001782 }
1783
Jason Gerecke3f14a632015-08-03 10:17:05 -07001784 error = wacom_register_inputs(wacom);
1785 if (error)
1786 goto fail_register_inputs;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001787
1788 if (hdev->bus == BUS_BLUETOOTH) {
1789 error = device_create_file(&hdev->dev, &dev_attr_speed);
1790 if (error)
1791 hid_warn(hdev,
1792 "can't create sysfs speed attribute err: %d\n",
1793 error);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001794 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001795
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001796 if (features->type == HID_GENERIC)
1797 connect_mask |= HID_CONNECT_DRIVER;
1798
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001799 /* Regular HID work starts now */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001800 error = hid_hw_start(hdev, connect_mask);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001801 if (error) {
1802 hid_err(hdev, "hw start failed\n");
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001803 goto fail_hw_start;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001804 }
1805
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001806 /* Note that if query fails it is not a hard failure */
1807 wacom_query_tablet_data(hdev, features);
1808
Jason Gereckeccad85c2015-08-03 10:17:04 -07001809 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001810 error = hid_hw_open(hdev);
1811
Jason Gerecke862cf552015-06-15 18:01:43 -07001812 if (wacom_wac->features.type == INTUOSHT &&
1813 wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001814 wacom_wac->shared->touch_input = wacom_wac->touch_input;
Ping Cheng961794a2013-12-05 12:54:53 -08001815 }
1816
Ping Cheng3bea7332006-07-13 18:01:36 -07001817 return 0;
1818
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001819fail_hw_start:
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001820 if (hdev->bus == BUS_BLUETOOTH)
1821 device_remove_file(&hdev->dev, &dev_attr_speed);
1822fail_register_inputs:
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001823 wacom_clean_inputs(wacom);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001824 wacom_destroy_battery(wacom);
1825fail_battery:
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -05001826 wacom_remove_shared_data(wacom);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001827fail_shared_data:
Benjamin Tissoires494078b2014-09-23 12:08:07 -04001828 wacom_clean_inputs(wacom);
1829fail_allocate_inputs:
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001830fail_type:
1831fail_pktlen:
1832fail_parse:
1833 kfree(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001834 hid_set_drvdata(hdev, NULL);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001835 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001836}
1837
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001838static void wacom_remove(struct hid_device *hdev)
Ping Cheng3bea7332006-07-13 18:01:36 -07001839{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001840 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -07001841
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001842 hid_hw_stop(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001843
Chris Bagwell16bf2882012-03-25 23:26:20 -07001844 cancel_work_sync(&wacom->work);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001845 wacom_clean_inputs(wacom);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001846 if (hdev->bus == BUS_BLUETOOTH)
1847 device_remove_file(&hdev->dev, &dev_attr_speed);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001848 wacom_destroy_battery(wacom);
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -05001849 wacom_remove_shared_data(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001850
1851 hid_set_drvdata(hdev, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04001852 kfree(wacom);
1853}
1854
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07001855#ifdef CONFIG_PM
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001856static int wacom_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001857{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001858 struct wacom *wacom = hid_get_drvdata(hdev);
1859 struct wacom_features *features = &wacom->wacom_wac.features;
Oliver Neukume7224092008-04-15 01:31:57 -04001860
1861 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001862
1863 /* switch to wacom mode first */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -07001864 wacom_query_tablet_data(hdev, features);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001865 wacom_led_control(wacom);
1866
Oliver Neukume7224092008-04-15 01:31:57 -04001867 mutex_unlock(&wacom->lock);
1868
1869 return 0;
1870}
1871
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001872static int wacom_reset_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001873{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001874 return wacom_resume(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001875}
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07001876#endif /* CONFIG_PM */
Oliver Neukume7224092008-04-15 01:31:57 -04001877
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001878static struct hid_driver wacom_driver = {
Ping Cheng3bea7332006-07-13 18:01:36 -07001879 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08001880 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07001881 .probe = wacom_probe,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001882 .remove = wacom_remove,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001883 .report = wacom_wac_report,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001884#ifdef CONFIG_PM
Oliver Neukume7224092008-04-15 01:31:57 -04001885 .resume = wacom_resume,
1886 .reset_resume = wacom_reset_resume,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001887#endif
1888 .raw_event = wacom_raw_event,
Ping Cheng3bea7332006-07-13 18:01:36 -07001889};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001890module_hid_driver(wacom_driver);
Benjamin Tissoiresf2e0a7d2014-08-06 14:07:49 -07001891
1892MODULE_VERSION(DRIVER_VERSION);
1893MODULE_AUTHOR(DRIVER_AUTHOR);
1894MODULE_DESCRIPTION(DRIVER_DESC);
1895MODULE_LICENSE(DRIVER_LICENSE);