blob: 9a4912c1828dad3109b9473305670c79fc20d022 [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 Gereckea1c173d2015-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
Jason Gereckeaa86b182015-06-15 18:01:42 -0700463 features->device_type = WACOM_DEVICETYPE_NONE;
Jason Gerecke3f14a632015-08-03 10:17:05 -0700464 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 Tissoiresd70420b2014-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 Tissoiresd70420b2014-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 Tissoiresd70420b2014-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 Tissoiresd70420b2014-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:
Dan Carpenter0fd72ff2015-06-24 17:27:43 +03001450 if (touch_input_dev)
1451 input_unregister_device(touch_input_dev);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001452 wacom_wac->touch_input = NULL;
1453 wacom_wac->touch_registered = false;
1454fail_register_touch_input:
Dan Carpenter0fd72ff2015-06-24 17:27:43 +03001455 if (pen_input_dev)
1456 input_unregister_device(pen_input_dev);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001457 wacom_wac->pen_input = NULL;
1458 wacom_wac->pen_registered = false;
1459fail_register_pen_input:
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001460 return error;
1461}
1462
Jason Gerecke0be01712015-08-05 15:44:53 -07001463/*
1464 * Not all devices report physical dimensions from HID.
1465 * Compute the default from hardcoded logical dimension
1466 * and resolution before driver overwrites them.
1467 */
1468static void wacom_set_default_phy(struct wacom_features *features)
1469{
1470 if (features->x_resolution) {
1471 features->x_phy = (features->x_max * 100) /
1472 features->x_resolution;
1473 features->y_phy = (features->y_max * 100) /
1474 features->y_resolution;
1475 }
1476}
1477
1478static void wacom_calculate_res(struct wacom_features *features)
1479{
1480 /* set unit to "100th of a mm" for devices not reported by HID */
1481 if (!features->unit) {
1482 features->unit = 0x11;
1483 features->unitExpo = -3;
1484 }
1485
1486 features->x_resolution = wacom_calc_hid_res(features->x_max,
1487 features->x_phy,
1488 features->unit,
1489 features->unitExpo);
1490 features->y_resolution = wacom_calc_hid_res(features->y_max,
1491 features->y_phy,
1492 features->unit,
1493 features->unitExpo);
1494}
1495
Chris Bagwell16bf2882012-03-25 23:26:20 -07001496static void wacom_wireless_work(struct work_struct *work)
1497{
1498 struct wacom *wacom = container_of(work, struct wacom, work);
1499 struct usb_device *usbdev = wacom->usbdev;
1500 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001501 struct hid_device *hdev1, *hdev2;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001502 struct wacom *wacom1, *wacom2;
1503 struct wacom_wac *wacom_wac1, *wacom_wac2;
1504 int error;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001505
1506 /*
1507 * Regardless if this is a disconnect or a new tablet,
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001508 * remove any existing input and battery devices.
Chris Bagwell16bf2882012-03-25 23:26:20 -07001509 */
1510
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001511 wacom_destroy_battery(wacom);
1512
Chris Bagwell16bf2882012-03-25 23:26:20 -07001513 /* Stylus interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001514 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
1515 wacom1 = hid_get_drvdata(hdev1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001516 wacom_wac1 = &(wacom1->wacom_wac);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001517 wacom_clean_inputs(wacom1);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001518
1519 /* Touch interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001520 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
1521 wacom2 = hid_get_drvdata(hdev2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001522 wacom_wac2 = &(wacom2->wacom_wac);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001523 wacom_clean_inputs(wacom2);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001524
1525 if (wacom_wac->pid == 0) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001526 hid_info(wacom->hdev, "wireless tablet disconnected\n");
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001527 wacom_wac1->shared->type = 0;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001528 } else {
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001529 const struct hid_device_id *id = wacom_ids;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001530
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001531 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001532 wacom_wac->pid);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001533
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001534 while (id->bus) {
1535 if (id->vendor == USB_VENDOR_ID_WACOM &&
1536 id->product == wacom_wac->pid)
Chris Bagwell16bf2882012-03-25 23:26:20 -07001537 break;
1538 id++;
1539 }
1540
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001541 if (!id->bus) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001542 hid_info(wacom->hdev, "ignoring unknown PID.\n");
Chris Bagwell16bf2882012-03-25 23:26:20 -07001543 return;
1544 }
1545
1546 /* Stylus interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001547 wacom_wac1->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001548 *((struct wacom_features *)id->driver_data);
Jason Gereckeaa86b182015-06-15 18:01:42 -07001549 wacom_wac1->features.device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke862cf552015-06-15 18:01:43 -07001550 if (wacom_wac1->features.type != INTUOSHT &&
1551 wacom_wac1->features.type != BAMBOO_PT)
1552 wacom_wac1->features.device_type |= WACOM_DEVICETYPE_PAD;
Jason Gerecke0be01712015-08-05 15:44:53 -07001553 wacom_set_default_phy(&wacom_wac1->features);
1554 wacom_calculate_res(&wacom_wac1->features);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001555 snprintf(wacom_wac1->pen_name, WACOM_NAME_MAX, "%s (WL) Pen",
Ping Cheng57bcfce2013-10-15 23:44:00 -07001556 wacom_wac1->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001557 snprintf(wacom_wac1->pad_name, WACOM_NAME_MAX, "%s (WL) Pad",
1558 wacom_wac1->features.name);
Ping Cheng961794a2013-12-05 12:54:53 -08001559 wacom_wac1->shared->touch_max = wacom_wac1->features.touch_max;
1560 wacom_wac1->shared->type = wacom_wac1->features.type;
Ping Cheng912ca212014-09-10 12:41:31 -07001561 wacom_wac1->pid = wacom_wac->pid;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001562 error = wacom_allocate_inputs(wacom1) ||
1563 wacom_register_inputs(wacom1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001564 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001565 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001566
1567 /* Touch interface */
Ping Chengb5fd2a32013-11-25 18:44:55 -08001568 if (wacom_wac1->features.touch_max ||
1569 wacom_wac1->features.type == INTUOSHT) {
Ping Cheng57bcfce2013-10-15 23:44:00 -07001570 wacom_wac2->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001571 *((struct wacom_features *)id->driver_data);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001572 wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
Jason Gerecke0be01712015-08-05 15:44:53 -07001573 wacom_set_default_phy(&wacom_wac2->features);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001574 wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
Jason Gerecke0be01712015-08-05 15:44:53 -07001575 wacom_calculate_res(&wacom_wac2->features);
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001576 snprintf(wacom_wac2->touch_name, WACOM_NAME_MAX,
Jason Gerecke862cf552015-06-15 18:01:43 -07001577 "%s (WL) Finger",wacom_wac2->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001578 snprintf(wacom_wac2->pad_name, WACOM_NAME_MAX,
Jason Gerecke862cf552015-06-15 18:01:43 -07001579 "%s (WL) Pad",wacom_wac2->features.name);
1580 if (wacom_wac1->features.touch_max)
1581 wacom_wac2->features.device_type |= WACOM_DEVICETYPE_TOUCH;
1582 if (wacom_wac1->features.type == INTUOSHT ||
1583 wacom_wac1->features.type == BAMBOO_PT)
1584 wacom_wac2->features.device_type |= WACOM_DEVICETYPE_PAD;
Ping Cheng912ca212014-09-10 12:41:31 -07001585 wacom_wac2->pid = wacom_wac->pid;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001586 error = wacom_allocate_inputs(wacom2) ||
1587 wacom_register_inputs(wacom2);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001588 if (error)
1589 goto fail;
Ping Cheng961794a2013-12-05 12:54:53 -08001590
1591 if (wacom_wac1->features.type == INTUOSHT &&
1592 wacom_wac1->features.touch_max)
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001593 wacom_wac->shared->touch_input = wacom_wac2->touch_input;
Ping Cheng57bcfce2013-10-15 23:44:00 -07001594 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001595
1596 error = wacom_initialize_battery(wacom);
1597 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001598 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001599 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001600
1601 return;
1602
Ping Cheng57bcfce2013-10-15 23:44:00 -07001603fail:
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001604 wacom_clean_inputs(wacom1);
1605 wacom_clean_inputs(wacom2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001606 return;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001607}
1608
Jason Gereckefce99572015-03-06 11:47:40 -08001609void wacom_battery_work(struct work_struct *work)
1610{
1611 struct wacom *wacom = container_of(work, struct wacom, work);
1612
1613 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Linus Torvalds8de29a32015-04-14 08:25:26 -08001614 !wacom->battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08001615 wacom_initialize_battery(wacom);
1616 }
1617 else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
Linus Torvalds8de29a32015-04-14 08:25:26 -08001618 wacom->battery) {
Jason Gereckefce99572015-03-06 11:47:40 -08001619 wacom_destroy_battery(wacom);
1620 }
1621}
1622
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001623static size_t wacom_compute_pktlen(struct hid_device *hdev)
1624{
1625 struct hid_report_enum *report_enum;
1626 struct hid_report *report;
1627 size_t size = 0;
1628
1629 report_enum = hdev->report_enum + HID_INPUT_REPORT;
1630
1631 list_for_each_entry(report, &report_enum->report_list, list) {
Mathieu Magnaudetdabb05c62014-11-27 16:02:36 +01001632 size_t report_size = hid_report_len(report);
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001633 if (report_size > size)
1634 size = report_size;
1635 }
1636
1637 return size;
1638}
1639
Ping Chengc24eab42015-04-24 15:32:51 -07001640static void wacom_update_name(struct wacom *wacom)
1641{
1642 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1643 struct wacom_features *features = &wacom_wac->features;
Jason Gerecke44b52502015-06-15 18:01:41 -07001644 char name[WACOM_NAME_MAX];
Ping Chengc24eab42015-04-24 15:32:51 -07001645
1646 /* Generic devices name unspecified */
1647 if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) {
1648 if (strstr(wacom->hdev->name, "Wacom") ||
1649 strstr(wacom->hdev->name, "wacom") ||
1650 strstr(wacom->hdev->name, "WACOM")) {
1651 /* name is in HID descriptor, use it */
Jason Gerecke44b52502015-06-15 18:01:41 -07001652 strlcpy(name, wacom->hdev->name, sizeof(name));
Ping Chengc24eab42015-04-24 15:32:51 -07001653
1654 /* strip out excess whitespaces */
1655 while (1) {
Jason Gerecke44b52502015-06-15 18:01:41 -07001656 char *gap = strstr(name, " ");
Ping Chengc24eab42015-04-24 15:32:51 -07001657 if (gap == NULL)
1658 break;
1659 /* shift everything including the terminator */
1660 memmove(gap, gap+1, strlen(gap));
1661 }
1662 /* get rid of trailing whitespace */
Jason Gerecke44b52502015-06-15 18:01:41 -07001663 if (name[strlen(name)-1] == ' ')
1664 name[strlen(name)-1] = '\0';
Ping Chengc24eab42015-04-24 15:32:51 -07001665 } else {
1666 /* no meaningful name retrieved. use product ID */
Jason Gerecke44b52502015-06-15 18:01:41 -07001667 snprintf(name, sizeof(name),
Ping Chengc24eab42015-04-24 15:32:51 -07001668 "%s %X", features->name, wacom->hdev->product);
1669 }
1670 } else {
Jason Gerecke44b52502015-06-15 18:01:41 -07001671 strlcpy(name, features->name, sizeof(name));
Ping Chengc24eab42015-04-24 15:32:51 -07001672 }
1673
1674 /* Append the device type to the name */
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001675 snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name),
1676 "%s Pen", name);
1677 snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name),
1678 "%s Finger", name);
Ping Chengc24eab42015-04-24 15:32:51 -07001679 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
Jason Gerecke44b52502015-06-15 18:01:41 -07001680 "%s Pad", name);
Ping Chengc24eab42015-04-24 15:32:51 -07001681}
1682
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001683static int wacom_probe(struct hid_device *hdev,
1684 const struct hid_device_id *id)
Ping Cheng3bea7332006-07-13 18:01:36 -07001685{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001686 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
Ping Cheng3bea7332006-07-13 18:01:36 -07001687 struct usb_device *dev = interface_to_usbdev(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -07001688 struct wacom *wacom;
1689 struct wacom_wac *wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -08001690 struct wacom_features *features;
Jason Childse33da8a2010-02-17 22:38:31 -08001691 int error;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001692 unsigned int connect_mask = HID_CONNECT_HIDRAW;
Ping Cheng3bea7332006-07-13 18:01:36 -07001693
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001694 if (!id->driver_data)
Bastian Blankb036f6f2010-02-10 23:06:23 -08001695 return -EINVAL;
1696
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -04001697 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
1698
Benjamin Tissoires5fcad162015-03-05 17:36:54 -05001699 /* hid-core sets this quirk for the boot interface */
1700 hdev->quirks &= ~HID_QUIRK_NOGET;
1701
Ping Cheng3bea7332006-07-13 18:01:36 -07001702 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
Dan Carpenterf1823942012-03-29 22:38:11 -07001703 if (!wacom)
1704 return -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -07001705
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001706 hid_set_drvdata(hdev, wacom);
1707 wacom->hdev = hdev;
1708
Benjamin Tissoiresba9a3542014-07-24 12:58:45 -07001709 /* ask for the report descriptor to be loaded by HID */
1710 error = hid_parse(hdev);
1711 if (error) {
1712 hid_err(hdev, "parse failed\n");
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001713 goto fail_parse;
Benjamin Tissoiresba9a3542014-07-24 12:58:45 -07001714 }
1715
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001716 wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001717 wacom_wac->features = *((struct wacom_features *)id->driver_data);
Jason Childse33da8a2010-02-17 22:38:31 -08001718 features = &wacom_wac->features;
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001719 features->pktlen = wacom_compute_pktlen(hdev);
Jason Childse33da8a2010-02-17 22:38:31 -08001720 if (features->pktlen > WACOM_PKGLEN_MAX) {
1721 error = -EINVAL;
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001722 goto fail_pktlen;
Jason Childse33da8a2010-02-17 22:38:31 -08001723 }
1724
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001725 if (features->check_for_hid_type && features->hid_type != hdev->type) {
1726 error = -ENODEV;
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001727 goto fail_type;
Jason Childse33da8a2010-02-17 22:38:31 -08001728 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001729
Ping Cheng3bea7332006-07-13 18:01:36 -07001730 wacom->usbdev = dev;
Oliver Neukume7224092008-04-15 01:31:57 -04001731 wacom->intf = intf;
1732 mutex_init(&wacom->lock);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001733 INIT_WORK(&wacom->work, wacom_wireless_work);
Ping Cheng3bea7332006-07-13 18:01:36 -07001734
Jason Gerecke3f14a632015-08-03 10:17:05 -07001735 error = wacom_allocate_inputs(wacom);
1736 if (error)
1737 goto fail_allocate_inputs;
Benjamin Tissoires494078b2014-09-23 12:08:07 -04001738
Benjamin Tissoires8c97a762015-02-26 11:28:50 -05001739 /*
1740 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
1741 * into debug mode for the touch part.
1742 * We ignore the other interfaces.
1743 */
1744 if (features->type == BAMBOO_PAD) {
1745 if (features->pktlen == WACOM_PKGLEN_PENABLED) {
1746 features->type = HID_GENERIC;
1747 } else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) &&
1748 (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) {
1749 error = -ENODEV;
1750 goto fail_shared_data;
1751 }
1752 }
1753
Ping Cheng401d7d12013-07-28 00:38:54 -07001754 /* set the default size in case we do not get them from hid */
1755 wacom_set_default_phy(features);
1756
Ping Chengf393ee22012-04-29 21:09:17 -07001757 /* Retrieve the physical and logical size for touch devices */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001758 wacom_retrieve_hid_descriptor(hdev, features);
Ping Cheng42f4f272015-04-15 16:53:54 -07001759 wacom_setup_device_quirks(wacom);
Jason Gerecke042628a2015-04-30 17:51:54 -07001760
Jason Gereckeaa86b182015-06-15 18:01:42 -07001761 if (features->device_type == WACOM_DEVICETYPE_NONE &&
1762 features->type != WIRELESS) {
Jason Gerecke8e116d32015-04-30 17:51:55 -07001763 error = features->type == HID_GENERIC ? -ENODEV : 0;
1764
Jason Gerecke042628a2015-04-30 17:51:54 -07001765 dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.",
Jason Gerecke8e116d32015-04-30 17:51:55 -07001766 hdev->name,
1767 error ? "Ignoring" : "Assuming pen");
1768
1769 if (error)
1770 goto fail_shared_data;
Jason Gerecke042628a2015-04-30 17:51:54 -07001771
Jason Gereckeaa86b182015-06-15 18:01:42 -07001772 features->device_type |= WACOM_DEVICETYPE_PEN;
Jason Gerecke042628a2015-04-30 17:51:54 -07001773 }
1774
Ping Cheng401d7d12013-07-28 00:38:54 -07001775 wacom_calculate_res(features);
1776
Ping Chengc24eab42015-04-24 15:32:51 -07001777 wacom_update_name(wacom);
Ping Cheng4492eff2010-03-19 22:18:15 -07001778
Ping Chengf3586d22015-03-20 14:57:00 -07001779 error = wacom_add_shared_data(hdev);
1780 if (error)
1781 goto fail_shared_data;
Ping Cheng49b764a2010-02-20 00:53:49 -08001782
Jason Gereckeccad85c2015-08-03 10:17:04 -07001783 if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) &&
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001784 (features->quirks & WACOM_QUIRK_BATTERY)) {
1785 error = wacom_initialize_battery(wacom);
1786 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001787 goto fail_battery;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001788 }
1789
Jason Gerecke3f14a632015-08-03 10:17:05 -07001790 error = wacom_register_inputs(wacom);
1791 if (error)
1792 goto fail_register_inputs;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001793
1794 if (hdev->bus == BUS_BLUETOOTH) {
1795 error = device_create_file(&hdev->dev, &dev_attr_speed);
1796 if (error)
1797 hid_warn(hdev,
1798 "can't create sysfs speed attribute err: %d\n",
1799 error);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001800 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001801
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001802 if (features->type == HID_GENERIC)
1803 connect_mask |= HID_CONNECT_DRIVER;
1804
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001805 /* Regular HID work starts now */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001806 error = hid_hw_start(hdev, connect_mask);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001807 if (error) {
1808 hid_err(hdev, "hw start failed\n");
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001809 goto fail_hw_start;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001810 }
1811
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001812 /* Note that if query fails it is not a hard failure */
1813 wacom_query_tablet_data(hdev, features);
1814
Jason Gereckeccad85c2015-08-03 10:17:04 -07001815 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001816 error = hid_hw_open(hdev);
1817
Jason Gerecke862cf552015-06-15 18:01:43 -07001818 if (wacom_wac->features.type == INTUOSHT &&
1819 wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH) {
Jason Gerecke2a6cdbd2015-06-15 18:01:45 -07001820 wacom_wac->shared->touch_input = wacom_wac->touch_input;
Ping Cheng961794a2013-12-05 12:54:53 -08001821 }
1822
Ping Cheng3bea7332006-07-13 18:01:36 -07001823 return 0;
1824
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001825fail_hw_start:
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001826 if (hdev->bus == BUS_BLUETOOTH)
1827 device_remove_file(&hdev->dev, &dev_attr_speed);
1828fail_register_inputs:
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001829 wacom_clean_inputs(wacom);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001830 wacom_destroy_battery(wacom);
1831fail_battery:
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -05001832 wacom_remove_shared_data(wacom);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001833fail_shared_data:
Benjamin Tissoires494078b2014-09-23 12:08:07 -04001834 wacom_clean_inputs(wacom);
1835fail_allocate_inputs:
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001836fail_type:
1837fail_pktlen:
1838fail_parse:
1839 kfree(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001840 hid_set_drvdata(hdev, NULL);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001841 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001842}
1843
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001844static void wacom_remove(struct hid_device *hdev)
Ping Cheng3bea7332006-07-13 18:01:36 -07001845{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001846 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -07001847
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001848 hid_hw_stop(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001849
Chris Bagwell16bf2882012-03-25 23:26:20 -07001850 cancel_work_sync(&wacom->work);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001851 wacom_clean_inputs(wacom);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001852 if (hdev->bus == BUS_BLUETOOTH)
1853 device_remove_file(&hdev->dev, &dev_attr_speed);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001854 wacom_destroy_battery(wacom);
Benjamin Tissoiresa97ac102015-02-25 11:43:39 -05001855 wacom_remove_shared_data(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001856
1857 hid_set_drvdata(hdev, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04001858 kfree(wacom);
1859}
1860
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07001861#ifdef CONFIG_PM
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001862static int wacom_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001863{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001864 struct wacom *wacom = hid_get_drvdata(hdev);
1865 struct wacom_features *features = &wacom->wacom_wac.features;
Oliver Neukume7224092008-04-15 01:31:57 -04001866
1867 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001868
1869 /* switch to wacom mode first */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -07001870 wacom_query_tablet_data(hdev, features);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001871 wacom_led_control(wacom);
1872
Oliver Neukume7224092008-04-15 01:31:57 -04001873 mutex_unlock(&wacom->lock);
1874
1875 return 0;
1876}
1877
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001878static int wacom_reset_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001879{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001880 return wacom_resume(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001881}
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07001882#endif /* CONFIG_PM */
Oliver Neukume7224092008-04-15 01:31:57 -04001883
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001884static struct hid_driver wacom_driver = {
Ping Cheng3bea7332006-07-13 18:01:36 -07001885 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08001886 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07001887 .probe = wacom_probe,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001888 .remove = wacom_remove,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001889 .report = wacom_wac_report,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001890#ifdef CONFIG_PM
Oliver Neukume7224092008-04-15 01:31:57 -04001891 .resume = wacom_resume,
1892 .reset_resume = wacom_reset_resume,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001893#endif
1894 .raw_event = wacom_raw_event,
Ping Cheng3bea7332006-07-13 18:01:36 -07001895};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001896module_hid_driver(wacom_driver);
Benjamin Tissoiresf2e0a7d2014-08-06 14:07:49 -07001897
1898MODULE_VERSION(DRIVER_VERSION);
1899MODULE_AUTHOR(DRIVER_AUTHOR);
1900MODULE_DESCRIPTION(DRIVER_DESC);
1901MODULE_LICENSE(DRIVER_LICENSE);