blob: f01ab3a0c5f5facba301b734864116eec1ec17a0 [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
26
Ping Chenge0984bc2014-09-10 12:40:05 -070027#define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
28#define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)
29
Ping Chengc64d8832014-09-10 12:41:04 -070030static int wacom_get_report(struct hid_device *hdev, u8 type, u8 *buf,
31 size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070032{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070033 int retval;
34
35 do {
Ping Chengc64d8832014-09-10 12:41:04 -070036 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070037 HID_REQ_GET_REPORT);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070038 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
39
40 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070041}
42
Przemo Firszt296b7372014-08-06 14:00:38 -070043static int wacom_set_report(struct hid_device *hdev, u8 type, u8 *buf,
44 size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070045{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070046 int retval;
47
48 do {
Przemo Firszt296b7372014-08-06 14:00:38 -070049 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070050 HID_REQ_SET_REPORT);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070051 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
52
53 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070054}
55
Benjamin Tissoires29b47392014-07-24 12:52:23 -070056static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
57 u8 *raw_data, int size)
Ping Cheng3bea7332006-07-13 18:01:36 -070058{
Benjamin Tissoires29b47392014-07-24 12:52:23 -070059 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070060
Benjamin Tissoires29b47392014-07-24 12:52:23 -070061 if (size > WACOM_PKGLEN_MAX)
62 return 1;
Ping Cheng3bea7332006-07-13 18:01:36 -070063
Benjamin Tissoires29b47392014-07-24 12:52:23 -070064 memcpy(wacom->wacom_wac.data, raw_data, size);
Ping Cheng3bea7332006-07-13 18:01:36 -070065
Benjamin Tissoires29b47392014-07-24 12:52:23 -070066 wacom_wac_irq(&wacom->wacom_wac, size);
67
68 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -070069}
70
Ping Cheng3bea7332006-07-13 18:01:36 -070071static int wacom_open(struct input_dev *dev)
72{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -040073 struct wacom *wacom = input_get_drvdata(dev);
Ping Cheng3bea7332006-07-13 18:01:36 -070074
Benjamin Tissoiresdff67412014-12-01 11:52:40 -050075 return hid_hw_open(wacom->hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070076}
77
78static void wacom_close(struct input_dev *dev)
79{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -040080 struct wacom *wacom = input_get_drvdata(dev);
Ping Cheng3bea7332006-07-13 18:01:36 -070081
Benjamin Tissoires29b47392014-07-24 12:52:23 -070082 hid_hw_close(wacom->hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070083}
84
Chris Bagwell16bf2882012-03-25 23:26:20 -070085/*
Benjamin Tissoires198fdee2014-07-24 13:03:05 -070086 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
Jason Gerecke115d5e12012-10-03 17:24:32 -070087 */
88static int wacom_calc_hid_res(int logical_extents, int physical_extents,
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -070089 unsigned unit, int exponent)
Jason Gerecke115d5e12012-10-03 17:24:32 -070090{
Benjamin Tissoires198fdee2014-07-24 13:03:05 -070091 struct hid_field field = {
92 .logical_maximum = logical_extents,
93 .physical_maximum = physical_extents,
94 .unit = unit,
95 .unit_exponent = exponent,
96 };
Jason Gerecke115d5e12012-10-03 17:24:32 -070097
Benjamin Tissoires198fdee2014-07-24 13:03:05 -070098 return hidinput_calc_abs_res(&field, ABS_X);
Jason Gerecke115d5e12012-10-03 17:24:32 -070099}
100
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700101static void wacom_feature_mapping(struct hid_device *hdev,
102 struct hid_field *field, struct hid_usage *usage)
Chris Bagwell41343612011-10-26 22:32:52 -0700103{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700104 struct wacom *wacom = hid_get_drvdata(hdev);
105 struct wacom_features *features = &wacom->wacom_wac.features;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400106 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400107 u8 *data;
108 int ret;
Chris Bagwell41343612011-10-26 22:32:52 -0700109
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700110 switch (usage->hid) {
111 case HID_DG_CONTACTMAX:
112 /* leave touch_max as is if predefined */
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -0400113 if (!features->touch_max) {
114 /* read manually */
115 data = kzalloc(2, GFP_KERNEL);
116 if (!data)
117 break;
118 data[0] = field->report->id;
119 ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
120 data, 2, 0);
121 if (ret == 2)
122 features->touch_max = data[1];
123 kfree(data);
124 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700125 break;
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400126 case HID_DG_INPUTMODE:
127 /* Ignore if value index is out of bounds. */
128 if (usage->usage_index >= field->report_count) {
129 dev_err(&hdev->dev, "HID_DG_INPUTMODE out of range\n");
130 break;
131 }
132
133 hid_data->inputmode = field->report->id;
134 hid_data->inputmode_index = usage->usage_index;
135 break;
Ping Chengf393ee22012-04-29 21:09:17 -0700136 }
137}
138
Chris Bagwell428f8582011-10-26 22:26:59 -0700139/*
140 * Interface Descriptor of wacom devices can be incomplete and
141 * inconsistent so wacom_features table is used to store stylus
142 * device's packet lengths, various maximum values, and tablet
143 * resolution based on product ID's.
144 *
145 * For devices that contain 2 interfaces, wacom_features table is
146 * inaccurate for the touch interface. Since the Interface Descriptor
147 * for touch interfaces has pretty complete data, this function exists
148 * to query tablet for this missing information instead of hard coding in
149 * an additional table.
150 *
151 * A typical Interface Descriptor for a stylus will contain a
152 * boot mouse application collection that is not of interest and this
153 * function will ignore it.
154 *
155 * It also contains a digitizer application collection that also is not
156 * of interest since any information it contains would be duplicate
157 * of what is in wacom_features. Usually it defines a report of an array
158 * of bytes that could be used as max length of the stylus packet returned.
159 * If it happens to define a Digitizer-Stylus Physical Collection then
160 * the X and Y logical values contain valid data but it is ignored.
161 *
162 * A typical Interface Descriptor for a touch interface will contain a
163 * Digitizer-Finger Physical Collection which will define both logical
164 * X/Y maximum as well as the physical size of tablet. Since touch
165 * interfaces haven't supported pressure or distance, this is enough
166 * information to override invalid values in the wacom_features table.
Chris Bagwell41343612011-10-26 22:32:52 -0700167 *
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700168 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
169 * data. We deal with them after returning from this function.
Chris Bagwell428f8582011-10-26 22:26:59 -0700170 */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700171static void wacom_usage_mapping(struct hid_device *hdev,
172 struct hid_field *field, struct hid_usage *usage)
173{
174 struct wacom *wacom = hid_get_drvdata(hdev);
175 struct wacom_features *features = &wacom->wacom_wac.features;
Benjamin Tissoiresd97a5522015-01-05 16:32:12 -0500176 bool finger = WACOM_FINGER_FIELD(field);
177 bool pen = WACOM_PEN_FIELD(field);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700178
179 /*
180 * Requiring Stylus Usage will ignore boot mouse
181 * X/Y values and some cases of invalid Digitizer X/Y
182 * values commonly reported.
183 */
184 if (!pen && !finger)
185 return;
186
Ping Cheng30ebc1a2014-11-18 13:29:16 -0800187 /*
188 * Bamboo models do not support HID_DG_CONTACTMAX.
189 * And, Bamboo Pen only descriptor contains touch.
190 */
191 if (features->type != BAMBOO_PT) {
192 /* ISDv4 touch devices at least supports one touch point */
193 if (finger && !features->touch_max)
194 features->touch_max = 1;
195 }
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700196
197 switch (usage->hid) {
198 case HID_GD_X:
199 features->x_max = field->logical_maximum;
200 if (finger) {
201 features->device_type = BTN_TOOL_FINGER;
202 features->x_phy = field->physical_maximum;
203 if (features->type != BAMBOO_PT) {
204 features->unit = field->unit;
205 features->unitExpo = field->unit_exponent;
206 }
207 } else {
208 features->device_type = BTN_TOOL_PEN;
209 }
210 break;
211 case HID_GD_Y:
212 features->y_max = field->logical_maximum;
213 if (finger) {
214 features->y_phy = field->physical_maximum;
215 if (features->type != BAMBOO_PT) {
216 features->unit = field->unit;
217 features->unitExpo = field->unit_exponent;
218 }
219 }
220 break;
221 case HID_DG_TIPPRESSURE:
222 if (pen)
223 features->pressure_max = field->logical_maximum;
224 break;
225 }
Benjamin Tissoires7704ac92014-09-23 12:08:08 -0400226
227 if (features->type == HID_GENERIC)
228 wacom_wac_usage_mapping(hdev, field, usage);
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700229}
230
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800231static void wacom_post_parse_hid(struct hid_device *hdev,
232 struct wacom_features *features)
233{
234 struct wacom *wacom = hid_get_drvdata(hdev);
235 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
236
237 if (features->type == HID_GENERIC) {
238 /* Any last-minute generic device setup */
239 if (features->touch_max > 1) {
240 input_mt_init_slots(wacom_wac->input, wacom_wac->features.touch_max,
241 INPUT_MT_DIRECT);
242 }
243 }
244}
245
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700246static void wacom_parse_hid(struct hid_device *hdev,
Ping Chengec67bbe2009-12-15 00:35:24 -0800247 struct wacom_features *features)
Ping Cheng545f4e92008-11-24 11:44:27 -0500248{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700249 struct hid_report_enum *rep_enum;
250 struct hid_report *hreport;
251 int i, j;
Ping Cheng545f4e92008-11-24 11:44:27 -0500252
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700253 /* check features first */
254 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
255 list_for_each_entry(hreport, &rep_enum->report_list, list) {
256 for (i = 0; i < hreport->maxfield; i++) {
257 /* Ignore if report count is out of bounds. */
258 if (hreport->field[i]->report_count < 1)
259 continue;
Ping Cheng545f4e92008-11-24 11:44:27 -0500260
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700261 for (j = 0; j < hreport->field[i]->maxusage; j++) {
262 wacom_feature_mapping(hdev, hreport->field[i],
263 hreport->field[i]->usage + j);
Ping Cheng545f4e92008-11-24 11:44:27 -0500264 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500265 }
266 }
267
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700268 /* now check the input usages */
269 rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
270 list_for_each_entry(hreport, &rep_enum->report_list, list) {
271
272 if (!hreport->maxfield)
273 continue;
274
275 for (i = 0; i < hreport->maxfield; i++)
276 for (j = 0; j < hreport->field[i]->maxusage; j++)
277 wacom_usage_mapping(hdev, hreport->field[i],
278 hreport->field[i]->usage + j);
279 }
Jason Gereckeb58ba1b2014-12-05 13:37:32 -0800280
281 wacom_post_parse_hid(hdev, features);
Ping Cheng545f4e92008-11-24 11:44:27 -0500282}
283
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400284static int wacom_hid_set_device_mode(struct hid_device *hdev)
285{
286 struct wacom *wacom = hid_get_drvdata(hdev);
287 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
288 struct hid_report *r;
289 struct hid_report_enum *re;
290
291 if (hid_data->inputmode < 0)
292 return 0;
293
294 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
295 r = re->report_id_hash[hid_data->inputmode];
296 if (r) {
297 r->field[0]->value[hid_data->inputmode_index] = 2;
298 hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
299 }
300 return 0;
301}
302
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700303static int wacom_set_device_mode(struct hid_device *hdev, int report_id,
304 int length, int mode)
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700305{
306 unsigned char *rep_data;
Jason Gereckefe494bc2012-10-03 17:25:35 -0700307 int error = -ENOMEM, limit = 0;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700308
Jason Gereckefe494bc2012-10-03 17:25:35 -0700309 rep_data = kzalloc(length, GFP_KERNEL);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700310 if (!rep_data)
Ping Chengec67bbe2009-12-15 00:35:24 -0800311 return error;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700312
Jason Gereckefe494bc2012-10-03 17:25:35 -0700313 do {
Chris Bagwell9937c022013-01-23 19:37:34 -0800314 rep_data[0] = report_id;
315 rep_data[1] = mode;
316
Przemo Firszt296b7372014-08-06 14:00:38 -0700317 error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
318 length, 1);
Benjamin Tissoires3cb83152014-07-24 12:47:47 -0700319 if (error >= 0)
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700320 error = wacom_get_report(hdev, HID_FEATURE_REPORT,
Ping Chengc64d8832014-09-10 12:41:04 -0700321 rep_data, length, 1);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700322 } while ((error < 0 || rep_data[1] != mode) && limit++ < WAC_MSG_RETRIES);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700323
324 kfree(rep_data);
325
326 return error < 0 ? error : 0;
327}
328
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700329static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
330 struct wacom_features *features)
331{
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700332 struct wacom *wacom = hid_get_drvdata(hdev);
333 int ret;
334 u8 rep_data[2];
335
336 switch (features->type) {
337 case GRAPHIRE_BT:
338 rep_data[0] = 0x03;
339 rep_data[1] = 0x00;
Przemo Firszt296b7372014-08-06 14:00:38 -0700340 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
341 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700342
343 if (ret >= 0) {
344 rep_data[0] = speed == 0 ? 0x05 : 0x06;
345 rep_data[1] = 0x00;
346
347 ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700348 rep_data, 2, 3);
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700349
350 if (ret >= 0) {
351 wacom->wacom_wac.bt_high_speed = speed;
352 return 0;
353 }
354 }
355
356 /*
357 * Note that if the raw queries fail, it's not a hard failure
358 * and it is safe to continue
359 */
360 hid_warn(hdev, "failed to poke device, command %d, err %d\n",
361 rep_data[0], ret);
362 break;
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700363 case INTUOS4WL:
364 if (speed == 1)
365 wacom->wacom_wac.bt_features &= ~0x20;
366 else
367 wacom->wacom_wac.bt_features |= 0x20;
368
369 rep_data[0] = 0x03;
370 rep_data[1] = wacom->wacom_wac.bt_features;
371
Przemo Firszt296b7372014-08-06 14:00:38 -0700372 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
373 1);
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700374 if (ret >= 0)
375 wacom->wacom_wac.bt_high_speed = speed;
376 break;
Benjamin Tissoires387142b2014-08-06 13:52:56 -0700377 }
378
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700379 return 0;
380}
381
Jason Gereckefe494bc2012-10-03 17:25:35 -0700382/*
383 * Switch the tablet into its most-capable mode. Wacom tablets are
384 * typically configured to power-up in a mode which sends mouse-like
385 * reports to the OS. To get absolute position, pressure data, etc.
386 * from the tablet, it is necessary to switch the tablet out of this
387 * mode and into one which sends the full range of tablet data.
388 */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700389static int wacom_query_tablet_data(struct hid_device *hdev,
390 struct wacom_features *features)
Jason Gereckefe494bc2012-10-03 17:25:35 -0700391{
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700392 if (hdev->bus == BUS_BLUETOOTH)
393 return wacom_bt_query_tablet_data(hdev, 1, features);
394
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -0400395 if (features->type == HID_GENERIC)
396 return wacom_hid_set_device_mode(hdev);
397
Jason Gereckefe494bc2012-10-03 17:25:35 -0700398 if (features->device_type == BTN_TOOL_FINGER) {
399 if (features->type > TABLETPC) {
400 /* MT Tablet PC touch */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700401 return wacom_set_device_mode(hdev, 3, 4, 4);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700402 }
Jason Gerecke36d3c512013-09-20 09:47:35 -0700403 else if (features->type == WACOM_24HDT || features->type == CINTIQ_HYBRID) {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700404 return wacom_set_device_mode(hdev, 18, 3, 2);
Jason Gereckeb1e42792012-10-21 00:38:04 -0700405 }
Jason Gereckefe494bc2012-10-03 17:25:35 -0700406 } else if (features->device_type == BTN_TOOL_PEN) {
407 if (features->type <= BAMBOO_PT && features->type != WIRELESS) {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700408 return wacom_set_device_mode(hdev, 2, 2, 2);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700409 }
410 }
411
412 return 0;
413}
414
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700415static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
Ping Cheng19635182012-04-29 21:09:18 -0700416 struct wacom_features *features)
Ping Chengec67bbe2009-12-15 00:35:24 -0800417{
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700418 struct wacom *wacom = hid_get_drvdata(hdev);
419 struct usb_interface *intf = wacom->intf;
Ping Chengec67bbe2009-12-15 00:35:24 -0800420
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700421 /* default features */
Ping Chengec67bbe2009-12-15 00:35:24 -0800422 features->device_type = BTN_TOOL_PEN;
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700423 features->x_fuzz = 4;
424 features->y_fuzz = 4;
425 features->pressure_fuzz = 0;
426 features->distance_fuzz = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800427
Chris Bagwelld3825d52012-03-25 23:26:11 -0700428 /*
429 * The wireless device HID is basic and layout conflicts with
430 * other tablets (monitor and touch interface can look like pen).
431 * Skip the query for this type and modify defaults based on
432 * interface number.
433 */
434 if (features->type == WIRELESS) {
435 if (intf->cur_altsetting->desc.bInterfaceNumber == 0) {
436 features->device_type = 0;
437 } else if (intf->cur_altsetting->desc.bInterfaceNumber == 2) {
Ping Chengadad0042012-06-28 16:48:17 -0700438 features->device_type = BTN_TOOL_FINGER;
Chris Bagwelld3825d52012-03-25 23:26:11 -0700439 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
440 }
441 }
442
Ping Cheng19635182012-04-29 21:09:18 -0700443 /* only devices that support touch need to retrieve the info */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700444 if (features->type < BAMBOO_PT)
445 return;
Ping Chengec67bbe2009-12-15 00:35:24 -0800446
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700447 wacom_parse_hid(hdev, features);
Ping Chengec67bbe2009-12-15 00:35:24 -0800448}
449
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700450struct wacom_hdev_data {
Ping Cheng4492eff2010-03-19 22:18:15 -0700451 struct list_head list;
452 struct kref kref;
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700453 struct hid_device *dev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700454 struct wacom_shared shared;
455};
456
457static LIST_HEAD(wacom_udev_list);
458static DEFINE_MUTEX(wacom_udev_list_lock);
459
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700460static bool wacom_are_sibling(struct hid_device *hdev,
461 struct hid_device *sibling)
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700462{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700463 struct wacom *wacom = hid_get_drvdata(hdev);
464 struct wacom_features *features = &wacom->wacom_wac.features;
465 int vid = features->oVid;
466 int pid = features->oPid;
467 int n1,n2;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700468
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700469 if (vid == 0 && pid == 0) {
470 vid = hdev->vendor;
471 pid = hdev->product;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700472 }
473
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700474 if (vid != sibling->vendor || pid != sibling->product)
475 return false;
476
477 /* Compare the physical path. */
478 n1 = strrchr(hdev->phys, '.') - hdev->phys;
479 n2 = strrchr(sibling->phys, '.') - sibling->phys;
480 if (n1 != n2 || n1 <= 0 || n2 <= 0)
481 return false;
482
483 return !strncmp(hdev->phys, sibling->phys, n1);
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700484}
485
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700486static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700487{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700488 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700489
490 list_for_each_entry(data, &wacom_udev_list, list) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700491 if (wacom_are_sibling(hdev, data->dev)) {
Ping Cheng4492eff2010-03-19 22:18:15 -0700492 kref_get(&data->kref);
493 return data;
494 }
495 }
496
497 return NULL;
498}
499
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700500static int wacom_add_shared_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700501{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700502 struct wacom *wacom = hid_get_drvdata(hdev);
503 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
504 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700505 int retval = 0;
506
507 mutex_lock(&wacom_udev_list_lock);
508
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700509 data = wacom_get_hdev_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -0700510 if (!data) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700511 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
Ping Cheng4492eff2010-03-19 22:18:15 -0700512 if (!data) {
513 retval = -ENOMEM;
514 goto out;
515 }
516
517 kref_init(&data->kref);
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700518 data->dev = hdev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700519 list_add_tail(&data->list, &wacom_udev_list);
520 }
521
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700522 wacom_wac->shared = &data->shared;
Ping Cheng4492eff2010-03-19 22:18:15 -0700523
524out:
525 mutex_unlock(&wacom_udev_list_lock);
526 return retval;
527}
528
529static void wacom_release_shared_data(struct kref *kref)
530{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700531 struct wacom_hdev_data *data =
532 container_of(kref, struct wacom_hdev_data, kref);
Ping Cheng4492eff2010-03-19 22:18:15 -0700533
534 mutex_lock(&wacom_udev_list_lock);
535 list_del(&data->list);
536 mutex_unlock(&wacom_udev_list_lock);
537
538 kfree(data);
539}
540
541static void wacom_remove_shared_data(struct wacom_wac *wacom)
542{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700543 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700544
545 if (wacom->shared) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700546 data = container_of(wacom->shared, struct wacom_hdev_data, shared);
Ping Cheng4492eff2010-03-19 22:18:15 -0700547 kref_put(&data->kref, wacom_release_shared_data);
548 wacom->shared = NULL;
549 }
550}
551
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700552static int wacom_led_control(struct wacom *wacom)
553{
554 unsigned char *buf;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700555 int retval;
Ping Cheng912ca212014-09-10 12:41:31 -0700556 unsigned char report_id = WAC_CMD_LED_CONTROL;
557 int buf_size = 9;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700558
Ping Cheng912ca212014-09-10 12:41:31 -0700559 if (wacom->wacom_wac.pid) { /* wireless connected */
560 report_id = WAC_CMD_WL_LED_CONTROL;
561 buf_size = 13;
562 }
563 buf = kzalloc(buf_size, GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700564 if (!buf)
565 return -ENOMEM;
566
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700567 if (wacom->wacom_wac.features.type >= INTUOS5S &&
Ping Cheng9a35c412013-09-20 09:51:56 -0700568 wacom->wacom_wac.features.type <= INTUOSPL) {
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700569 /*
570 * Touch Ring and crop mark LED luminance may take on
571 * one of four values:
572 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
573 */
574 int ring_led = wacom->led.select[0] & 0x03;
575 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
576 int crop_lum = 0;
Ping Cheng912ca212014-09-10 12:41:31 -0700577 unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
Ping Cheng09e7d942011-10-04 23:51:14 -0700578
Ping Cheng912ca212014-09-10 12:41:31 -0700579 buf[0] = report_id;
580 if (wacom->wacom_wac.pid) {
581 wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
582 buf, buf_size, WAC_CMD_RETRIES);
583 buf[0] = report_id;
584 buf[4] = led_bits;
585 } else
586 buf[1] = led_bits;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700587 }
588 else {
589 int led = wacom->led.select[0] | 0x4;
Ping Cheng09e7d942011-10-04 23:51:14 -0700590
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700591 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
592 wacom->wacom_wac.features.type == WACOM_24HD)
593 led |= (wacom->led.select[1] << 4) | 0x40;
594
Ping Cheng912ca212014-09-10 12:41:31 -0700595 buf[0] = report_id;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700596 buf[1] = led;
597 buf[2] = wacom->led.llv;
598 buf[3] = wacom->led.hlv;
599 buf[4] = wacom->led.img_lum;
600 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700601
Ping Cheng912ca212014-09-10 12:41:31 -0700602 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
Przemo Firszt296b7372014-08-06 14:00:38 -0700603 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700604 kfree(buf);
605
606 return retval;
607}
608
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700609static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
610 const unsigned len, const void *img)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700611{
612 unsigned char *buf;
613 int i, retval;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700614 const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700615
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700616 buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700617 if (!buf)
618 return -ENOMEM;
619
620 /* Send 'start' command */
621 buf[0] = WAC_CMD_ICON_START;
622 buf[1] = 1;
Przemo Firszt296b7372014-08-06 14:00:38 -0700623 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
624 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700625 if (retval < 0)
626 goto out;
627
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700628 buf[0] = xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700629 buf[1] = button_id & 0x07;
630 for (i = 0; i < 4; i++) {
631 buf[2] = i;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700632 memcpy(buf + 3, img + i * chunk_len, chunk_len);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700633
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700634 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
Przemo Firszt296b7372014-08-06 14:00:38 -0700635 buf, chunk_len + 3, WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700636 if (retval < 0)
637 break;
638 }
639
640 /* Send 'stop' */
641 buf[0] = WAC_CMD_ICON_START;
642 buf[1] = 0;
Przemo Firszt296b7372014-08-06 14:00:38 -0700643 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
644 WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700645
646out:
647 kfree(buf);
648 return retval;
649}
650
Ping Cheng09e7d942011-10-04 23:51:14 -0700651static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700652 const char *buf, size_t count)
653{
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700654 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700655 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700656 unsigned int id;
657 int err;
658
659 err = kstrtouint(buf, 10, &id);
660 if (err)
661 return err;
662
663 mutex_lock(&wacom->lock);
664
Ping Cheng09e7d942011-10-04 23:51:14 -0700665 wacom->led.select[set_id] = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700666 err = wacom_led_control(wacom);
667
668 mutex_unlock(&wacom->lock);
669
670 return err < 0 ? err : count;
671}
672
Ping Cheng09e7d942011-10-04 23:51:14 -0700673#define DEVICE_LED_SELECT_ATTR(SET_ID) \
674static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
675 struct device_attribute *attr, const char *buf, size_t count) \
676{ \
677 return wacom_led_select_store(dev, SET_ID, buf, count); \
678} \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700679static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
680 struct device_attribute *attr, char *buf) \
681{ \
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700682 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700683 struct wacom *wacom = hid_get_drvdata(hdev); \
Ping Cheng37449ad2014-09-10 12:40:30 -0700684 return scnprintf(buf, PAGE_SIZE, "%d\n", \
685 wacom->led.select[SET_ID]); \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700686} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700687static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700688 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -0700689 wacom_led##SET_ID##_select_store)
690
691DEVICE_LED_SELECT_ATTR(0);
692DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700693
694static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
695 const char *buf, size_t count)
696{
697 unsigned int value;
698 int err;
699
700 err = kstrtouint(buf, 10, &value);
701 if (err)
702 return err;
703
704 mutex_lock(&wacom->lock);
705
706 *dest = value & 0x7f;
707 err = wacom_led_control(wacom);
708
709 mutex_unlock(&wacom->lock);
710
711 return err < 0 ? err : count;
712}
713
714#define DEVICE_LUMINANCE_ATTR(name, field) \
715static ssize_t wacom_##name##_luminance_store(struct device *dev, \
716 struct device_attribute *attr, const char *buf, size_t count) \
717{ \
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700718 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700719 struct wacom *wacom = hid_get_drvdata(hdev); \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700720 \
721 return wacom_luminance_store(wacom, &wacom->led.field, \
722 buf, count); \
723} \
Ping Cheng37449ad2014-09-10 12:40:30 -0700724static ssize_t wacom_##name##_luminance_show(struct device *dev, \
725 struct device_attribute *attr, char *buf) \
726{ \
727 struct wacom *wacom = dev_get_drvdata(dev); \
728 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
729} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700730static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
Ping Cheng37449ad2014-09-10 12:40:30 -0700731 wacom_##name##_luminance_show, \
732 wacom_##name##_luminance_store)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700733
734DEVICE_LUMINANCE_ATTR(status0, llv);
735DEVICE_LUMINANCE_ATTR(status1, hlv);
736DEVICE_LUMINANCE_ATTR(buttons, img_lum);
737
738static ssize_t wacom_button_image_store(struct device *dev, int button_id,
739 const char *buf, size_t count)
740{
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700741 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700742 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700743 int err;
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700744 unsigned len;
745 u8 xfer_id;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700746
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700747 if (hdev->bus == BUS_BLUETOOTH) {
748 len = 256;
749 xfer_id = WAC_CMD_ICON_BT_XFER;
750 } else {
751 len = 1024;
752 xfer_id = WAC_CMD_ICON_XFER;
753 }
754
755 if (count != len)
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700756 return -EINVAL;
757
758 mutex_lock(&wacom->lock);
759
Benjamin Tissoires849e2f02014-08-06 13:58:25 -0700760 err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700761
762 mutex_unlock(&wacom->lock);
763
764 return err < 0 ? err : count;
765}
766
767#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
768static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
769 struct device_attribute *attr, const char *buf, size_t count) \
770{ \
771 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
772} \
Ping Chenge0984bc2014-09-10 12:40:05 -0700773static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700774 NULL, wacom_btnimg##BUTTON_ID##_store)
775
776DEVICE_BTNIMG_ATTR(0);
777DEVICE_BTNIMG_ATTR(1);
778DEVICE_BTNIMG_ATTR(2);
779DEVICE_BTNIMG_ATTR(3);
780DEVICE_BTNIMG_ATTR(4);
781DEVICE_BTNIMG_ATTR(5);
782DEVICE_BTNIMG_ATTR(6);
783DEVICE_BTNIMG_ATTR(7);
784
Ping Cheng09e7d942011-10-04 23:51:14 -0700785static struct attribute *cintiq_led_attrs[] = {
786 &dev_attr_status_led0_select.attr,
787 &dev_attr_status_led1_select.attr,
788 NULL
789};
790
791static struct attribute_group cintiq_led_attr_group = {
792 .name = "wacom_led",
793 .attrs = cintiq_led_attrs,
794};
795
796static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700797 &dev_attr_status0_luminance.attr,
798 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -0700799 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700800 &dev_attr_buttons_luminance.attr,
801 &dev_attr_button0_rawimg.attr,
802 &dev_attr_button1_rawimg.attr,
803 &dev_attr_button2_rawimg.attr,
804 &dev_attr_button3_rawimg.attr,
805 &dev_attr_button4_rawimg.attr,
806 &dev_attr_button5_rawimg.attr,
807 &dev_attr_button6_rawimg.attr,
808 &dev_attr_button7_rawimg.attr,
809 NULL
810};
811
Ping Cheng09e7d942011-10-04 23:51:14 -0700812static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700813 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -0700814 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700815};
816
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700817static struct attribute *intuos5_led_attrs[] = {
818 &dev_attr_status0_luminance.attr,
819 &dev_attr_status_led0_select.attr,
820 NULL
821};
822
823static struct attribute_group intuos5_led_attr_group = {
824 .name = "wacom_led",
825 .attrs = intuos5_led_attrs,
826};
827
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700828static int wacom_initialize_leds(struct wacom *wacom)
829{
830 int error;
831
Ping Cheng09e7d942011-10-04 23:51:14 -0700832 /* Initialize default values */
833 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700834 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700835 case INTUOS4:
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700836 case INTUOS4WL:
Ping Cheng09e7d942011-10-04 23:51:14 -0700837 case INTUOS4L:
838 wacom->led.select[0] = 0;
839 wacom->led.select[1] = 0;
Ping Chengf4fa9a62011-10-04 23:49:42 -0700840 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700841 wacom->led.hlv = 20;
842 wacom->led.img_lum = 10;
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700843 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700844 &intuos4_led_attr_group);
845 break;
846
Jason Gerecke246835f2011-12-12 00:12:04 -0800847 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700848 case WACOM_21UX2:
849 wacom->led.select[0] = 0;
850 wacom->led.select[1] = 0;
851 wacom->led.llv = 0;
852 wacom->led.hlv = 0;
853 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700854
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700855 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700856 &cintiq_led_attr_group);
857 break;
858
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700859 case INTUOS5S:
860 case INTUOS5:
861 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700862 case INTUOSPS:
863 case INTUOSPM:
864 case INTUOSPL:
Ping Chengc2b0c272013-09-20 09:50:14 -0700865 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN) {
866 wacom->led.select[0] = 0;
867 wacom->led.select[1] = 0;
868 wacom->led.llv = 32;
869 wacom->led.hlv = 0;
870 wacom->led.img_lum = 0;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700871
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700872 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Chengc2b0c272013-09-20 09:50:14 -0700873 &intuos5_led_attr_group);
874 } else
875 return 0;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700876 break;
877
Ping Cheng09e7d942011-10-04 23:51:14 -0700878 default:
879 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700880 }
881
Ping Cheng09e7d942011-10-04 23:51:14 -0700882 if (error) {
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700883 hid_err(wacom->hdev,
Ping Cheng09e7d942011-10-04 23:51:14 -0700884 "cannot create sysfs group err: %d\n", error);
885 return error;
886 }
887 wacom_led_control(wacom);
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700888 wacom->led_initialized = true;
Ping Cheng09e7d942011-10-04 23:51:14 -0700889
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700890 return 0;
891}
892
893static void wacom_destroy_leds(struct wacom *wacom)
894{
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700895 if (!wacom->led_initialized)
896 return;
897
898 wacom->led_initialized = false;
899
Ping Cheng09e7d942011-10-04 23:51:14 -0700900 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700901 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700902 case INTUOS4:
Benjamin Tissoires81af7e62014-08-06 13:55:56 -0700903 case INTUOS4WL:
Ping Cheng09e7d942011-10-04 23:51:14 -0700904 case INTUOS4L:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700905 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700906 &intuos4_led_attr_group);
907 break;
908
Jason Gerecke246835f2011-12-12 00:12:04 -0800909 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700910 case WACOM_21UX2:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700911 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700912 &cintiq_led_attr_group);
913 break;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700914
915 case INTUOS5S:
916 case INTUOS5:
917 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700918 case INTUOSPS:
919 case INTUOSPM:
920 case INTUOSPL:
Ping Chengc2b0c272013-09-20 09:50:14 -0700921 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN)
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700922 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Chengc2b0c272013-09-20 09:50:14 -0700923 &intuos5_led_attr_group);
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700924 break;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700925 }
926}
927
Chris Bagwella1d552c2012-03-25 23:26:30 -0700928static enum power_supply_property wacom_battery_props[] = {
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700929 POWER_SUPPLY_PROP_STATUS,
Bastien Nocera6e2a6e82013-10-15 23:33:00 -0700930 POWER_SUPPLY_PROP_SCOPE,
Chris Bagwella1d552c2012-03-25 23:26:30 -0700931 POWER_SUPPLY_PROP_CAPACITY
932};
933
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700934static enum power_supply_property wacom_ac_props[] = {
935 POWER_SUPPLY_PROP_PRESENT,
936 POWER_SUPPLY_PROP_ONLINE,
937 POWER_SUPPLY_PROP_SCOPE,
938};
939
Chris Bagwella1d552c2012-03-25 23:26:30 -0700940static int wacom_battery_get_property(struct power_supply *psy,
941 enum power_supply_property psp,
942 union power_supply_propval *val)
943{
944 struct wacom *wacom = container_of(psy, struct wacom, battery);
945 int ret = 0;
946
947 switch (psp) {
Bastien Nocera6e2a6e82013-10-15 23:33:00 -0700948 case POWER_SUPPLY_PROP_SCOPE:
949 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
950 break;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700951 case POWER_SUPPLY_PROP_CAPACITY:
952 val->intval =
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700953 wacom->wacom_wac.battery_capacity;
954 break;
955 case POWER_SUPPLY_PROP_STATUS:
956 if (wacom->wacom_wac.bat_charging)
957 val->intval = POWER_SUPPLY_STATUS_CHARGING;
958 else if (wacom->wacom_wac.battery_capacity == 100 &&
959 wacom->wacom_wac.ps_connected)
960 val->intval = POWER_SUPPLY_STATUS_FULL;
961 else
962 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700963 break;
964 default:
965 ret = -EINVAL;
966 break;
967 }
968
969 return ret;
970}
971
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700972static int wacom_ac_get_property(struct power_supply *psy,
973 enum power_supply_property psp,
974 union power_supply_propval *val)
975{
976 struct wacom *wacom = container_of(psy, struct wacom, ac);
977 int ret = 0;
978
979 switch (psp) {
980 case POWER_SUPPLY_PROP_PRESENT:
981 /* fall through */
982 case POWER_SUPPLY_PROP_ONLINE:
983 val->intval = wacom->wacom_wac.ps_connected;
984 break;
985 case POWER_SUPPLY_PROP_SCOPE:
986 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
987 break;
988 default:
989 ret = -EINVAL;
990 break;
991 }
992 return ret;
993}
994
Chris Bagwella1d552c2012-03-25 23:26:30 -0700995static int wacom_initialize_battery(struct wacom *wacom)
996{
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -0700997 static atomic_t battery_no = ATOMIC_INIT(0);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700998 int error;
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -0700999 unsigned long n;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001000
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001001 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) {
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001002 n = atomic_inc_return(&battery_no) - 1;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001003
Chris Bagwella1d552c2012-03-25 23:26:30 -07001004 wacom->battery.properties = wacom_battery_props;
1005 wacom->battery.num_properties = ARRAY_SIZE(wacom_battery_props);
1006 wacom->battery.get_property = wacom_battery_get_property;
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -07001007 sprintf(wacom->wacom_wac.bat_name, "wacom_battery_%ld", n);
1008 wacom->battery.name = wacom->wacom_wac.bat_name;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001009 wacom->battery.type = POWER_SUPPLY_TYPE_BATTERY;
1010 wacom->battery.use_for_apm = 0;
1011
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001012 wacom->ac.properties = wacom_ac_props;
1013 wacom->ac.num_properties = ARRAY_SIZE(wacom_ac_props);
1014 wacom->ac.get_property = wacom_ac_get_property;
1015 sprintf(wacom->wacom_wac.ac_name, "wacom_ac_%ld", n);
1016 wacom->ac.name = wacom->wacom_wac.ac_name;
1017 wacom->ac.type = POWER_SUPPLY_TYPE_MAINS;
1018 wacom->ac.use_for_apm = 0;
1019
Benjamin Tissoiresdd3181a2014-07-24 13:01:40 -07001020 error = power_supply_register(&wacom->hdev->dev,
Chris Bagwella1d552c2012-03-25 23:26:30 -07001021 &wacom->battery);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001022 if (error)
1023 return error;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001024
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001025 power_supply_powers(&wacom->battery, &wacom->hdev->dev);
1026
1027 error = power_supply_register(&wacom->hdev->dev, &wacom->ac);
1028 if (error) {
1029 power_supply_unregister(&wacom->battery);
1030 return error;
1031 }
1032
1033 power_supply_powers(&wacom->ac, &wacom->hdev->dev);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001034 }
1035
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001036 return 0;
Chris Bagwella1d552c2012-03-25 23:26:30 -07001037}
1038
1039static void wacom_destroy_battery(struct wacom *wacom)
1040{
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001041 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
1042 wacom->battery.dev) {
Chris Bagwella1d552c2012-03-25 23:26:30 -07001043 power_supply_unregister(&wacom->battery);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001044 wacom->battery.dev = NULL;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -07001045 power_supply_unregister(&wacom->ac);
1046 wacom->ac.dev = NULL;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001047 }
Chris Bagwella1d552c2012-03-25 23:26:30 -07001048}
1049
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001050static ssize_t wacom_show_speed(struct device *dev,
1051 struct device_attribute
1052 *attr, char *buf)
1053{
1054 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1055 struct wacom *wacom = hid_get_drvdata(hdev);
1056
1057 return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
1058}
1059
1060static ssize_t wacom_store_speed(struct device *dev,
1061 struct device_attribute *attr,
1062 const char *buf, size_t count)
1063{
1064 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1065 struct wacom *wacom = hid_get_drvdata(hdev);
1066 u8 new_speed;
1067
1068 if (kstrtou8(buf, 0, &new_speed))
1069 return -EINVAL;
1070
1071 if (new_speed != 0 && new_speed != 1)
1072 return -EINVAL;
1073
1074 wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
1075
1076 return count;
1077}
1078
Ping Chenge0984bc2014-09-10 12:40:05 -07001079static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001080 wacom_show_speed, wacom_store_speed);
1081
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001082static struct input_dev *wacom_allocate_input(struct wacom *wacom)
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001083{
1084 struct input_dev *input_dev;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001085 struct hid_device *hdev = wacom->hdev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001086 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001087
1088 input_dev = input_allocate_device();
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001089 if (!input_dev)
1090 return NULL;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001091
1092 input_dev->name = wacom_wac->name;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001093 input_dev->phys = hdev->phys;
1094 input_dev->dev.parent = &hdev->dev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001095 input_dev->open = wacom_open;
1096 input_dev->close = wacom_close;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001097 input_dev->uniq = hdev->uniq;
1098 input_dev->id.bustype = hdev->bus;
1099 input_dev->id.vendor = hdev->vendor;
Benjamin Tissoires12969e32014-09-11 13:14:04 -04001100 input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -07001101 input_dev->id.version = hdev->version;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001102 input_set_drvdata(input_dev, wacom);
1103
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001104 return input_dev;
1105}
1106
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001107static void wacom_free_inputs(struct wacom *wacom)
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001108{
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001109 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1110
1111 if (wacom_wac->input)
1112 input_free_device(wacom_wac->input);
1113 if (wacom_wac->pad_input)
1114 input_free_device(wacom_wac->pad_input);
1115 wacom_wac->input = NULL;
1116 wacom_wac->pad_input = NULL;
1117}
1118
1119static int wacom_allocate_inputs(struct wacom *wacom)
1120{
1121 struct input_dev *input_dev, *pad_input_dev;
1122 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1123
1124 input_dev = wacom_allocate_input(wacom);
1125 pad_input_dev = wacom_allocate_input(wacom);
1126 if (!input_dev || !pad_input_dev) {
1127 wacom_free_inputs(wacom);
1128 return -ENOMEM;
1129 }
1130
1131 wacom_wac->input = input_dev;
1132 wacom_wac->pad_input = pad_input_dev;
1133 wacom_wac->pad_input->name = wacom_wac->pad_name;
1134
1135 return 0;
1136}
1137
1138static void wacom_clean_inputs(struct wacom *wacom)
1139{
1140 if (wacom->wacom_wac.input) {
1141 if (wacom->wacom_wac.input_registered)
1142 input_unregister_device(wacom->wacom_wac.input);
1143 else
1144 input_free_device(wacom->wacom_wac.input);
1145 }
1146 if (wacom->wacom_wac.pad_input) {
Ping Cheng954df6a2014-11-20 16:31:12 -08001147 if (wacom->wacom_wac.pad_registered)
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001148 input_unregister_device(wacom->wacom_wac.pad_input);
1149 else
1150 input_free_device(wacom->wacom_wac.pad_input);
1151 }
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001152 wacom->wacom_wac.input = NULL;
1153 wacom->wacom_wac.pad_input = NULL;
Ping Cheng912ca212014-09-10 12:41:31 -07001154 wacom_destroy_leds(wacom);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001155}
1156
1157static int wacom_register_inputs(struct wacom *wacom)
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001158{
1159 struct input_dev *input_dev, *pad_input_dev;
1160 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1161 int error;
1162
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001163 input_dev = wacom_wac->input;
1164 pad_input_dev = wacom_wac->pad_input;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001165
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001166 if (!input_dev || !pad_input_dev)
1167 return -EINVAL;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001168
Ping Cheng30ebc1a2014-11-18 13:29:16 -08001169 error = wacom_setup_pentouch_input_capabilities(input_dev, wacom_wac);
1170 if (!error) {
1171 error = input_register_device(input_dev);
1172 if (error)
1173 return error;
Ping Cheng954df6a2014-11-20 16:31:12 -08001174 wacom_wac->input_registered = true;
Ping Cheng30ebc1a2014-11-18 13:29:16 -08001175 }
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001176
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001177 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
1178 if (error) {
1179 /* no pad in use on this interface */
1180 input_free_device(pad_input_dev);
1181 wacom_wac->pad_input = NULL;
1182 pad_input_dev = NULL;
1183 } else {
1184 error = input_register_device(pad_input_dev);
1185 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001186 goto fail_register_pad_input;
Ping Cheng954df6a2014-11-20 16:31:12 -08001187 wacom_wac->pad_registered = true;
Ping Cheng912ca212014-09-10 12:41:31 -07001188
1189 error = wacom_initialize_leds(wacom);
1190 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001191 goto fail_leds;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001192 }
1193
Ping Cheng19635182012-04-29 21:09:18 -07001194 return 0;
1195
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001196fail_leds:
Ping Cheng912ca212014-09-10 12:41:31 -07001197 input_unregister_device(pad_input_dev);
1198 pad_input_dev = NULL;
Ping Cheng954df6a2014-11-20 16:31:12 -08001199 wacom_wac->pad_registered = false;
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001200fail_register_pad_input:
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001201 input_unregister_device(input_dev);
Ping Cheng19635182012-04-29 21:09:18 -07001202 wacom_wac->input = NULL;
Ping Cheng954df6a2014-11-20 16:31:12 -08001203 wacom_wac->input_registered = false;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001204 return error;
1205}
1206
Chris Bagwell16bf2882012-03-25 23:26:20 -07001207static void wacom_wireless_work(struct work_struct *work)
1208{
1209 struct wacom *wacom = container_of(work, struct wacom, work);
1210 struct usb_device *usbdev = wacom->usbdev;
1211 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001212 struct hid_device *hdev1, *hdev2;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001213 struct wacom *wacom1, *wacom2;
1214 struct wacom_wac *wacom_wac1, *wacom_wac2;
1215 int error;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001216
1217 /*
1218 * Regardless if this is a disconnect or a new tablet,
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001219 * remove any existing input and battery devices.
Chris Bagwell16bf2882012-03-25 23:26:20 -07001220 */
1221
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001222 wacom_destroy_battery(wacom);
1223
Chris Bagwell16bf2882012-03-25 23:26:20 -07001224 /* Stylus interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001225 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
1226 wacom1 = hid_get_drvdata(hdev1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001227 wacom_wac1 = &(wacom1->wacom_wac);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001228 wacom_clean_inputs(wacom1);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001229
1230 /* Touch interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001231 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
1232 wacom2 = hid_get_drvdata(hdev2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001233 wacom_wac2 = &(wacom2->wacom_wac);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001234 wacom_clean_inputs(wacom2);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001235
1236 if (wacom_wac->pid == 0) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001237 hid_info(wacom->hdev, "wireless tablet disconnected\n");
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001238 wacom_wac1->shared->type = 0;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001239 } else {
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001240 const struct hid_device_id *id = wacom_ids;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001241
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001242 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001243 wacom_wac->pid);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001244
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001245 while (id->bus) {
1246 if (id->vendor == USB_VENDOR_ID_WACOM &&
1247 id->product == wacom_wac->pid)
Chris Bagwell16bf2882012-03-25 23:26:20 -07001248 break;
1249 id++;
1250 }
1251
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001252 if (!id->bus) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001253 hid_info(wacom->hdev, "ignoring unknown PID.\n");
Chris Bagwell16bf2882012-03-25 23:26:20 -07001254 return;
1255 }
1256
1257 /* Stylus interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001258 wacom_wac1->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001259 *((struct wacom_features *)id->driver_data);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001260 wacom_wac1->features.device_type = BTN_TOOL_PEN;
Ping Cheng57bcfce2013-10-15 23:44:00 -07001261 snprintf(wacom_wac1->name, WACOM_NAME_MAX, "%s (WL) Pen",
1262 wacom_wac1->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001263 snprintf(wacom_wac1->pad_name, WACOM_NAME_MAX, "%s (WL) Pad",
1264 wacom_wac1->features.name);
Ping Cheng961794a2013-12-05 12:54:53 -08001265 wacom_wac1->shared->touch_max = wacom_wac1->features.touch_max;
1266 wacom_wac1->shared->type = wacom_wac1->features.type;
Ping Cheng912ca212014-09-10 12:41:31 -07001267 wacom_wac1->pid = wacom_wac->pid;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001268 error = wacom_allocate_inputs(wacom1) ||
1269 wacom_register_inputs(wacom1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001270 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001271 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001272
1273 /* Touch interface */
Ping Chengb5fd2a32013-11-25 18:44:55 -08001274 if (wacom_wac1->features.touch_max ||
1275 wacom_wac1->features.type == INTUOSHT) {
Ping Cheng57bcfce2013-10-15 23:44:00 -07001276 wacom_wac2->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001277 *((struct wacom_features *)id->driver_data);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001278 wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
1279 wacom_wac2->features.device_type = BTN_TOOL_FINGER;
1280 wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
1281 if (wacom_wac2->features.touch_max)
1282 snprintf(wacom_wac2->name, WACOM_NAME_MAX,
1283 "%s (WL) Finger",wacom_wac2->features.name);
1284 else
1285 snprintf(wacom_wac2->name, WACOM_NAME_MAX,
1286 "%s (WL) Pad",wacom_wac2->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001287 snprintf(wacom_wac2->pad_name, WACOM_NAME_MAX,
1288 "%s (WL) Pad", wacom_wac2->features.name);
Ping Cheng912ca212014-09-10 12:41:31 -07001289 wacom_wac2->pid = wacom_wac->pid;
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001290 error = wacom_allocate_inputs(wacom2) ||
1291 wacom_register_inputs(wacom2);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001292 if (error)
1293 goto fail;
Ping Cheng961794a2013-12-05 12:54:53 -08001294
1295 if (wacom_wac1->features.type == INTUOSHT &&
1296 wacom_wac1->features.touch_max)
1297 wacom_wac->shared->touch_input = wacom_wac2->input;
Ping Cheng57bcfce2013-10-15 23:44:00 -07001298 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001299
1300 error = wacom_initialize_battery(wacom);
1301 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001302 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001303 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001304
1305 return;
1306
Ping Cheng57bcfce2013-10-15 23:44:00 -07001307fail:
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001308 wacom_clean_inputs(wacom1);
1309 wacom_clean_inputs(wacom2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001310 return;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001311}
1312
Ping Cheng401d7d12013-07-28 00:38:54 -07001313/*
1314 * Not all devices report physical dimensions from HID.
1315 * Compute the default from hardcoded logical dimension
1316 * and resolution before driver overwrites them.
1317 */
1318static void wacom_set_default_phy(struct wacom_features *features)
1319{
1320 if (features->x_resolution) {
1321 features->x_phy = (features->x_max * 100) /
1322 features->x_resolution;
1323 features->y_phy = (features->y_max * 100) /
1324 features->y_resolution;
1325 }
1326}
1327
1328static void wacom_calculate_res(struct wacom_features *features)
1329{
1330 features->x_resolution = wacom_calc_hid_res(features->x_max,
1331 features->x_phy,
1332 features->unit,
1333 features->unitExpo);
1334 features->y_resolution = wacom_calc_hid_res(features->y_max,
1335 features->y_phy,
1336 features->unit,
1337 features->unitExpo);
1338}
1339
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001340static size_t wacom_compute_pktlen(struct hid_device *hdev)
1341{
1342 struct hid_report_enum *report_enum;
1343 struct hid_report *report;
1344 size_t size = 0;
1345
1346 report_enum = hdev->report_enum + HID_INPUT_REPORT;
1347
1348 list_for_each_entry(report, &report_enum->report_list, list) {
Mathieu Magnaudetdabb05c62014-11-27 16:02:36 +01001349 size_t report_size = hid_report_len(report);
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001350 if (report_size > size)
1351 size = report_size;
1352 }
1353
1354 return size;
1355}
1356
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001357static int wacom_probe(struct hid_device *hdev,
1358 const struct hid_device_id *id)
Ping Cheng3bea7332006-07-13 18:01:36 -07001359{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001360 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
Ping Cheng3bea7332006-07-13 18:01:36 -07001361 struct usb_device *dev = interface_to_usbdev(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -07001362 struct wacom *wacom;
1363 struct wacom_wac *wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -08001364 struct wacom_features *features;
Jason Childse33da8a2010-02-17 22:38:31 -08001365 int error;
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001366 unsigned int connect_mask = HID_CONNECT_HIDRAW;
Ping Cheng3bea7332006-07-13 18:01:36 -07001367
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001368 if (!id->driver_data)
Bastian Blankb036f6f2010-02-10 23:06:23 -08001369 return -EINVAL;
1370
Benjamin Tissoires8ffffd52014-09-16 16:56:39 -04001371 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
1372
Ping Cheng3bea7332006-07-13 18:01:36 -07001373 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
Dan Carpenterf1823942012-03-29 22:38:11 -07001374 if (!wacom)
1375 return -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -07001376
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001377 hid_set_drvdata(hdev, wacom);
1378 wacom->hdev = hdev;
1379
Benjamin Tissoiresba9a3542014-07-24 12:58:45 -07001380 /* ask for the report descriptor to be loaded by HID */
1381 error = hid_parse(hdev);
1382 if (error) {
1383 hid_err(hdev, "parse failed\n");
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001384 goto fail_parse;
Benjamin Tissoiresba9a3542014-07-24 12:58:45 -07001385 }
1386
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001387 wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001388 wacom_wac->features = *((struct wacom_features *)id->driver_data);
Jason Childse33da8a2010-02-17 22:38:31 -08001389 features = &wacom_wac->features;
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001390 features->pktlen = wacom_compute_pktlen(hdev);
Jason Childse33da8a2010-02-17 22:38:31 -08001391 if (features->pktlen > WACOM_PKGLEN_MAX) {
1392 error = -EINVAL;
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001393 goto fail_pktlen;
Jason Childse33da8a2010-02-17 22:38:31 -08001394 }
1395
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001396 if (features->check_for_hid_type && features->hid_type != hdev->type) {
1397 error = -ENODEV;
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001398 goto fail_type;
Jason Childse33da8a2010-02-17 22:38:31 -08001399 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001400
Ping Cheng3bea7332006-07-13 18:01:36 -07001401 wacom->usbdev = dev;
Oliver Neukume7224092008-04-15 01:31:57 -04001402 wacom->intf = intf;
1403 mutex_init(&wacom->lock);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001404 INIT_WORK(&wacom->work, wacom_wireless_work);
Ping Cheng3bea7332006-07-13 18:01:36 -07001405
Benjamin Tissoires494078b2014-09-23 12:08:07 -04001406 if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
1407 error = wacom_allocate_inputs(wacom);
1408 if (error)
1409 goto fail_allocate_inputs;
1410 }
1411
Ping Cheng401d7d12013-07-28 00:38:54 -07001412 /* set the default size in case we do not get them from hid */
1413 wacom_set_default_phy(features);
1414
Ping Chengf393ee22012-04-29 21:09:17 -07001415 /* Retrieve the physical and logical size for touch devices */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001416 wacom_retrieve_hid_descriptor(hdev, features);
Ping Cheng545f4e92008-11-24 11:44:27 -05001417
Jason Gereckeae584ca2012-04-03 15:50:40 -07001418 /*
1419 * Intuos5 has no useful data about its touch interface in its
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001420 * HID descriptor. If this is the touch interface (PacketSize
Jason Gereckeae584ca2012-04-03 15:50:40 -07001421 * of WACOM_PKGLEN_BBTOUCH3), override the table values.
1422 */
Ping Chengb5fd2a32013-11-25 18:44:55 -08001423 if (features->type >= INTUOS5S && features->type <= INTUOSHT) {
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001424 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
Jason Gereckeae584ca2012-04-03 15:50:40 -07001425 features->device_type = BTN_TOOL_FINGER;
Jason Gereckeae584ca2012-04-03 15:50:40 -07001426
Jason Gereckeae584ca2012-04-03 15:50:40 -07001427 features->x_max = 4096;
1428 features->y_max = 4096;
1429 } else {
1430 features->device_type = BTN_TOOL_PEN;
1431 }
1432 }
1433
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001434 /*
1435 * Same thing for Bamboo 3rd gen.
1436 */
1437 if ((features->type == BAMBOO_PT) &&
1438 (features->pktlen == WACOM_PKGLEN_BBTOUCH3) &&
1439 (features->device_type == BTN_TOOL_PEN)) {
1440 features->device_type = BTN_TOOL_FINGER;
1441
1442 features->x_max = 4096;
1443 features->y_max = 4096;
1444 }
1445
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001446 if (hdev->bus == BUS_BLUETOOTH)
1447 features->quirks |= WACOM_QUIRK_BATTERY;
1448
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001449 wacom_setup_device_quirks(features);
1450
Ping Cheng401d7d12013-07-28 00:38:54 -07001451 /* set unit to "100th of a mm" for devices not reported by HID */
1452 if (!features->unit) {
1453 features->unit = 0x11;
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001454 features->unitExpo = -3;
Ping Cheng401d7d12013-07-28 00:38:54 -07001455 }
1456 wacom_calculate_res(features);
1457
Ping Cheng49b764a2010-02-20 00:53:49 -08001458 strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001459 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
1460 "%s Pad", features->name);
Ping Cheng49b764a2010-02-20 00:53:49 -08001461
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001462 if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
Ping Cheng49b764a2010-02-20 00:53:49 -08001463 /* Append the device type to the name */
Ping Cheng57bcfce2013-10-15 23:44:00 -07001464 if (features->device_type != BTN_TOOL_FINGER)
1465 strlcat(wacom_wac->name, " Pen", WACOM_NAME_MAX);
1466 else if (features->touch_max)
1467 strlcat(wacom_wac->name, " Finger", WACOM_NAME_MAX);
1468 else
1469 strlcat(wacom_wac->name, " Pad", WACOM_NAME_MAX);
Ping Cheng4492eff2010-03-19 22:18:15 -07001470
Benjamin Tissoires4451e082014-07-24 13:01:05 -07001471 error = wacom_add_shared_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -07001472 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001473 goto fail_shared_data;
Ping Cheng49b764a2010-02-20 00:53:49 -08001474 }
1475
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001476 if (!(features->quirks & WACOM_QUIRK_MONITOR) &&
1477 (features->quirks & WACOM_QUIRK_BATTERY)) {
1478 error = wacom_initialize_battery(wacom);
1479 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001480 goto fail_battery;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001481 }
1482
Chris Bagwelld3825d52012-03-25 23:26:11 -07001483 if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
Benjamin Tissoires494078b2014-09-23 12:08:07 -04001484 error = wacom_register_inputs(wacom);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001485 if (error)
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001486 goto fail_register_inputs;
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001487 }
1488
1489 if (hdev->bus == BUS_BLUETOOTH) {
1490 error = device_create_file(&hdev->dev, &dev_attr_speed);
1491 if (error)
1492 hid_warn(hdev,
1493 "can't create sysfs speed attribute err: %d\n",
1494 error);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001495 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001496
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001497 if (features->type == HID_GENERIC)
1498 connect_mask |= HID_CONNECT_DRIVER;
1499
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001500 /* Regular HID work starts now */
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001501 error = hid_hw_start(hdev, connect_mask);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001502 if (error) {
1503 hid_err(hdev, "hw start failed\n");
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001504 goto fail_hw_start;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001505 }
1506
Benjamin Tissoires5ae6e892014-09-23 12:08:09 -04001507 /* Note that if query fails it is not a hard failure */
1508 wacom_query_tablet_data(hdev, features);
1509
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001510 if (features->quirks & WACOM_QUIRK_MONITOR)
1511 error = hid_hw_open(hdev);
1512
Ping Cheng961794a2013-12-05 12:54:53 -08001513 if (wacom_wac->features.type == INTUOSHT && wacom_wac->features.touch_max) {
1514 if (wacom_wac->features.device_type == BTN_TOOL_FINGER)
1515 wacom_wac->shared->touch_input = wacom_wac->input;
1516 }
1517
Ping Cheng3bea7332006-07-13 18:01:36 -07001518 return 0;
1519
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001520fail_hw_start:
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001521 if (hdev->bus == BUS_BLUETOOTH)
1522 device_remove_file(&hdev->dev, &dev_attr_speed);
1523fail_register_inputs:
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001524 wacom_clean_inputs(wacom);
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001525 wacom_destroy_battery(wacom);
1526fail_battery:
1527 wacom_remove_shared_data(wacom_wac);
1528fail_shared_data:
Benjamin Tissoires494078b2014-09-23 12:08:07 -04001529 wacom_clean_inputs(wacom);
1530fail_allocate_inputs:
Benjamin Tissoires7fefeec2014-09-23 12:08:05 -04001531fail_type:
1532fail_pktlen:
1533fail_parse:
1534 kfree(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001535 hid_set_drvdata(hdev, NULL);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001536 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001537}
1538
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001539static void wacom_remove(struct hid_device *hdev)
Ping Cheng3bea7332006-07-13 18:01:36 -07001540{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001541 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -07001542
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001543 hid_hw_stop(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001544
Chris Bagwell16bf2882012-03-25 23:26:20 -07001545 cancel_work_sync(&wacom->work);
Benjamin Tissoires2546dac2014-09-23 12:08:06 -04001546 wacom_clean_inputs(wacom);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001547 if (hdev->bus == BUS_BLUETOOTH)
1548 device_remove_file(&hdev->dev, &dev_attr_speed);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001549 wacom_destroy_battery(wacom);
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001550 wacom_remove_shared_data(&wacom->wacom_wac);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001551
1552 hid_set_drvdata(hdev, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04001553 kfree(wacom);
1554}
1555
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07001556#ifdef CONFIG_PM
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001557static int wacom_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001558{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001559 struct wacom *wacom = hid_get_drvdata(hdev);
1560 struct wacom_features *features = &wacom->wacom_wac.features;
Oliver Neukume7224092008-04-15 01:31:57 -04001561
1562 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001563
1564 /* switch to wacom mode first */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -07001565 wacom_query_tablet_data(hdev, features);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001566 wacom_led_control(wacom);
1567
Oliver Neukume7224092008-04-15 01:31:57 -04001568 mutex_unlock(&wacom->lock);
1569
1570 return 0;
1571}
1572
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001573static int wacom_reset_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001574{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001575 return wacom_resume(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001576}
Geert Uytterhoeven41a74582014-08-11 11:03:19 -07001577#endif /* CONFIG_PM */
Oliver Neukume7224092008-04-15 01:31:57 -04001578
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001579static struct hid_driver wacom_driver = {
Ping Cheng3bea7332006-07-13 18:01:36 -07001580 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08001581 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07001582 .probe = wacom_probe,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001583 .remove = wacom_remove,
Benjamin Tissoires7704ac92014-09-23 12:08:08 -04001584 .event = wacom_wac_event,
1585 .report = wacom_wac_report,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001586#ifdef CONFIG_PM
Oliver Neukume7224092008-04-15 01:31:57 -04001587 .resume = wacom_resume,
1588 .reset_resume = wacom_reset_resume,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001589#endif
1590 .raw_event = wacom_raw_event,
Ping Cheng3bea7332006-07-13 18:01:36 -07001591};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001592module_hid_driver(wacom_driver);
Benjamin Tissoiresf2e0a7d2014-08-06 14:07:49 -07001593
1594MODULE_VERSION(DRIVER_VERSION);
1595MODULE_AUTHOR(DRIVER_AUTHOR);
1596MODULE_DESCRIPTION(DRIVER_DESC);
1597MODULE_LICENSE(DRIVER_LICENSE);