Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[deliverable/linux.git] / drivers / hid / wacom_sys.c
CommitLineData
3bea733a 1/*
4104d13f 2 * drivers/input/tablet/wacom_sys.c
3bea733a 3 *
232f5693 4 * USB Wacom tablet support - system specific code
3bea733a
PC
5 */
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
3bea733a 14#include "wacom_wac.h"
51269fe8 15#include "wacom.h"
b58ba1ba 16#include <linux/input/mt.h>
3bea733a 17
a417ea44 18#define WAC_MSG_RETRIES 5
3bea733a 19
912ca216 20#define WAC_CMD_WL_LED_CONTROL 0x03
5d7e7d47
EH
21#define WAC_CMD_LED_CONTROL 0x20
22#define WAC_CMD_ICON_START 0x21
23#define WAC_CMD_ICON_XFER 0x23
849e2f06 24#define WAC_CMD_ICON_BT_XFER 0x26
5d7e7d47
EH
25#define WAC_CMD_RETRIES 10
26
e0984bc3
PC
27#define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
28#define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)
29
c64d8834
PC
30static int wacom_get_report(struct hid_device *hdev, u8 type, u8 *buf,
31 size_t size, unsigned int retries)
3bea733a 32{
5d7e7d47
EH
33 int retval;
34
35 do {
c64d8834 36 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
27b20a9d 37 HID_REQ_GET_REPORT);
5d7e7d47
EH
38 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
39
40 return retval;
3bea733a
PC
41}
42
296b7378
PF
43static int wacom_set_report(struct hid_device *hdev, u8 type, u8 *buf,
44 size_t size, unsigned int retries)
3bea733a 45{
5d7e7d47
EH
46 int retval;
47
48 do {
296b7378 49 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
27b20a9d 50 HID_REQ_SET_REPORT);
5d7e7d47
EH
51 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
52
53 return retval;
3bea733a
PC
54}
55
29b47391
BT
56static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
57 u8 *raw_data, int size)
3bea733a 58{
29b47391 59 struct wacom *wacom = hid_get_drvdata(hdev);
3bea733a 60
29b47391
BT
61 if (size > WACOM_PKGLEN_MAX)
62 return 1;
3bea733a 63
29b47391 64 memcpy(wacom->wacom_wac.data, raw_data, size);
3bea733a 65
29b47391
BT
66 wacom_wac_irq(&wacom->wacom_wac, size);
67
68 return 0;
3bea733a
PC
69}
70
3bea733a
PC
71static int wacom_open(struct input_dev *dev)
72{
7791bdae 73 struct wacom *wacom = input_get_drvdata(dev);
29b47391 74
dff67416 75 return hid_hw_open(wacom->hdev);
3bea733a
PC
76}
77
78static void wacom_close(struct input_dev *dev)
79{
7791bdae 80 struct wacom *wacom = input_get_drvdata(dev);
3bea733a 81
29b47391 82 hid_hw_close(wacom->hdev);
3bea733a
PC
83}
84
115d5e12 85/*
198fdee2 86 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
115d5e12
JG
87 */
88static int wacom_calc_hid_res(int logical_extents, int physical_extents,
c669fb2b 89 unsigned unit, int exponent)
115d5e12 90{
198fdee2
BT
91 struct hid_field field = {
92 .logical_maximum = logical_extents,
93 .physical_maximum = physical_extents,
94 .unit = unit,
95 .unit_exponent = exponent,
96 };
97
98 return hidinput_calc_abs_res(&field, ABS_X);
115d5e12
JG
99}
100
c669fb2b
BT
101static void wacom_feature_mapping(struct hid_device *hdev,
102 struct hid_field *field, struct hid_usage *usage)
f393ee2b 103{
c669fb2b
BT
104 struct wacom *wacom = hid_get_drvdata(hdev);
105 struct wacom_features *features = &wacom->wacom_wac.features;
5ae6e89f 106 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
8ffffd52
BT
107 u8 *data;
108 int ret;
f393ee2b 109
c669fb2b
BT
110 switch (usage->hid) {
111 case HID_DG_CONTACTMAX:
112 /* leave touch_max as is if predefined */
8ffffd52
BT
113 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 }
c669fb2b 125 break;
5ae6e89f
BT
126 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;
f393ee2b
PC
136 }
137}
138
428f8588
CB
139/*
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.
4134361a 167 *
c669fb2b
BT
168 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
169 * data. We deal with them after returning from this function.
428f8588 170 */
c669fb2b
BT
171static void wacom_usage_mapping(struct hid_device *hdev,
172 struct hid_field *field, struct hid_usage *usage)
545f4e99 173{
c669fb2b
BT
174 struct wacom *wacom = hid_get_drvdata(hdev);
175 struct wacom_features *features = &wacom->wacom_wac.features;
176 bool finger = (field->logical == HID_DG_FINGER) ||
177 (field->physical == HID_DG_FINGER);
178 bool pen = (field->logical == HID_DG_STYLUS) ||
179 (field->physical == HID_DG_STYLUS);
e9fc413f 180
c669fb2b
BT
181 /*
182 * Requiring Stylus Usage will ignore boot mouse
183 * X/Y values and some cases of invalid Digitizer X/Y
184 * values commonly reported.
185 */
186 if (!pen && !finger)
187 return;
188
30ebc1ae
PC
189 /*
190 * Bamboo models do not support HID_DG_CONTACTMAX.
191 * And, Bamboo Pen only descriptor contains touch.
192 */
193 if (features->type != BAMBOO_PT) {
194 /* ISDv4 touch devices at least supports one touch point */
195 if (finger && !features->touch_max)
196 features->touch_max = 1;
197 }
c669fb2b
BT
198
199 switch (usage->hid) {
200 case HID_GD_X:
201 features->x_max = field->logical_maximum;
202 if (finger) {
203 features->device_type = BTN_TOOL_FINGER;
204 features->x_phy = field->physical_maximum;
205 if (features->type != BAMBOO_PT) {
206 features->unit = field->unit;
207 features->unitExpo = field->unit_exponent;
545f4e99 208 }
c669fb2b
BT
209 } else {
210 features->device_type = BTN_TOOL_PEN;
211 }
212 break;
213 case HID_GD_Y:
214 features->y_max = field->logical_maximum;
215 if (finger) {
216 features->y_phy = field->physical_maximum;
217 if (features->type != BAMBOO_PT) {
218 features->unit = field->unit;
219 features->unitExpo = field->unit_exponent;
220 }
221 }
222 break;
223 case HID_DG_TIPPRESSURE:
224 if (pen)
225 features->pressure_max = field->logical_maximum;
226 break;
227 }
7704ac93
BT
228
229 if (features->type == HID_GENERIC)
230 wacom_wac_usage_mapping(hdev, field, usage);
c669fb2b 231}
4134361a 232
b58ba1ba
JG
233static void wacom_post_parse_hid(struct hid_device *hdev,
234 struct wacom_features *features)
235{
236 struct wacom *wacom = hid_get_drvdata(hdev);
237 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
238
239 if (features->type == HID_GENERIC) {
240 /* Any last-minute generic device setup */
241 if (features->touch_max > 1) {
242 input_mt_init_slots(wacom_wac->input, wacom_wac->features.touch_max,
243 INPUT_MT_DIRECT);
244 }
245 }
246}
247
c669fb2b
BT
248static void wacom_parse_hid(struct hid_device *hdev,
249 struct wacom_features *features)
250{
251 struct hid_report_enum *rep_enum;
252 struct hid_report *hreport;
253 int i, j;
254
255 /* check features first */
256 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
257 list_for_each_entry(hreport, &rep_enum->report_list, list) {
258 for (i = 0; i < hreport->maxfield; i++) {
259 /* Ignore if report count is out of bounds. */
260 if (hreport->field[i]->report_count < 1)
261 continue;
262
263 for (j = 0; j < hreport->field[i]->maxusage; j++) {
264 wacom_feature_mapping(hdev, hreport->field[i],
265 hreport->field[i]->usage + j);
4134361a 266 }
545f4e99
PC
267 }
268 }
269
c669fb2b
BT
270 /* now check the input usages */
271 rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
272 list_for_each_entry(hreport, &rep_enum->report_list, list) {
273
274 if (!hreport->maxfield)
275 continue;
276
277 for (i = 0; i < hreport->maxfield; i++)
278 for (j = 0; j < hreport->field[i]->maxusage; j++)
279 wacom_usage_mapping(hdev, hreport->field[i],
280 hreport->field[i]->usage + j);
281 }
b58ba1ba
JG
282
283 wacom_post_parse_hid(hdev, features);
545f4e99
PC
284}
285
5ae6e89f
BT
286static int wacom_hid_set_device_mode(struct hid_device *hdev)
287{
288 struct wacom *wacom = hid_get_drvdata(hdev);
289 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
290 struct hid_report *r;
291 struct hid_report_enum *re;
292
293 if (hid_data->inputmode < 0)
294 return 0;
295
296 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
297 r = re->report_id_hash[hid_data->inputmode];
298 if (r) {
299 r->field[0]->value[hid_data->inputmode_index] = 2;
300 hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
301 }
302 return 0;
303}
304
27b20a9d
BT
305static int wacom_set_device_mode(struct hid_device *hdev, int report_id,
306 int length, int mode)
3b7307c2
DT
307{
308 unsigned char *rep_data;
fe494bc2 309 int error = -ENOMEM, limit = 0;
3b7307c2 310
fe494bc2 311 rep_data = kzalloc(length, GFP_KERNEL);
3b7307c2 312 if (!rep_data)
ec67bbed
PC
313 return error;
314
fe494bc2 315 do {
9937c026
CB
316 rep_data[0] = report_id;
317 rep_data[1] = mode;
318
296b7378
PF
319 error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
320 length, 1);
3cb83157 321 if (error >= 0)
27b20a9d 322 error = wacom_get_report(hdev, HID_FEATURE_REPORT,
c64d8834 323 rep_data, length, 1);
fe494bc2
JG
324 } while ((error < 0 || rep_data[1] != mode) && limit++ < WAC_MSG_RETRIES);
325
326 kfree(rep_data);
327
328 return error < 0 ? error : 0;
329}
330
f81a1295
BT
331static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
332 struct wacom_features *features)
333{
387142bb
BT
334 struct wacom *wacom = hid_get_drvdata(hdev);
335 int ret;
336 u8 rep_data[2];
337
338 switch (features->type) {
339 case GRAPHIRE_BT:
340 rep_data[0] = 0x03;
341 rep_data[1] = 0x00;
296b7378
PF
342 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
343 3);
387142bb
BT
344
345 if (ret >= 0) {
346 rep_data[0] = speed == 0 ? 0x05 : 0x06;
347 rep_data[1] = 0x00;
348
349 ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
296b7378 350 rep_data, 2, 3);
387142bb
BT
351
352 if (ret >= 0) {
353 wacom->wacom_wac.bt_high_speed = speed;
354 return 0;
355 }
356 }
357
358 /*
359 * Note that if the raw queries fail, it's not a hard failure
360 * and it is safe to continue
361 */
362 hid_warn(hdev, "failed to poke device, command %d, err %d\n",
363 rep_data[0], ret);
364 break;
81af7e61
BT
365 case INTUOS4WL:
366 if (speed == 1)
367 wacom->wacom_wac.bt_features &= ~0x20;
368 else
369 wacom->wacom_wac.bt_features |= 0x20;
370
371 rep_data[0] = 0x03;
372 rep_data[1] = wacom->wacom_wac.bt_features;
373
296b7378
PF
374 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
375 1);
81af7e61
BT
376 if (ret >= 0)
377 wacom->wacom_wac.bt_high_speed = speed;
378 break;
387142bb
BT
379 }
380
f81a1295
BT
381 return 0;
382}
383
fe494bc2
JG
384/*
385 * Switch the tablet into its most-capable mode. Wacom tablets are
386 * typically configured to power-up in a mode which sends mouse-like
387 * reports to the OS. To get absolute position, pressure data, etc.
388 * from the tablet, it is necessary to switch the tablet out of this
389 * mode and into one which sends the full range of tablet data.
390 */
27b20a9d
BT
391static int wacom_query_tablet_data(struct hid_device *hdev,
392 struct wacom_features *features)
fe494bc2 393{
f81a1295
BT
394 if (hdev->bus == BUS_BLUETOOTH)
395 return wacom_bt_query_tablet_data(hdev, 1, features);
396
5ae6e89f
BT
397 if (features->type == HID_GENERIC)
398 return wacom_hid_set_device_mode(hdev);
399
1963518b 400 if (features->device_type == BTN_TOOL_FINGER) {
ea2e6024 401 if (features->type > TABLETPC) {
fe494bc2 402 /* MT Tablet PC touch */
27b20a9d 403 return wacom_set_device_mode(hdev, 3, 4, 4);
fe494bc2 404 }
36d3c510 405 else if (features->type == WACOM_24HDT || features->type == CINTIQ_HYBRID) {
27b20a9d 406 return wacom_set_device_mode(hdev, 18, 3, 2);
b1e4279e 407 }
fe494bc2
JG
408 } else if (features->device_type == BTN_TOOL_PEN) {
409 if (features->type <= BAMBOO_PT && features->type != WIRELESS) {
27b20a9d 410 return wacom_set_device_mode(hdev, 2, 2, 2);
1963518b 411 }
ec67bbed 412 }
3b7307c2 413
fe494bc2 414 return 0;
3b7307c2
DT
415}
416
c669fb2b 417static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
1963518b 418 struct wacom_features *features)
ec67bbed 419{
27b20a9d
BT
420 struct wacom *wacom = hid_get_drvdata(hdev);
421 struct usb_interface *intf = wacom->intf;
ec67bbed 422
fed87e65 423 /* default features */
ec67bbed 424 features->device_type = BTN_TOOL_PEN;
fed87e65
HR
425 features->x_fuzz = 4;
426 features->y_fuzz = 4;
427 features->pressure_fuzz = 0;
428 features->distance_fuzz = 0;
ec67bbed 429
d3825d51
CB
430 /*
431 * The wireless device HID is basic and layout conflicts with
432 * other tablets (monitor and touch interface can look like pen).
433 * Skip the query for this type and modify defaults based on
434 * interface number.
435 */
436 if (features->type == WIRELESS) {
437 if (intf->cur_altsetting->desc.bInterfaceNumber == 0) {
438 features->device_type = 0;
439 } else if (intf->cur_altsetting->desc.bInterfaceNumber == 2) {
adad004e 440 features->device_type = BTN_TOOL_FINGER;
d3825d51
CB
441 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
442 }
443 }
444
1963518b 445 /* only devices that support touch need to retrieve the info */
c669fb2b
BT
446 if (features->type < BAMBOO_PT)
447 return;
ec67bbed 448
c669fb2b 449 wacom_parse_hid(hdev, features);
ec67bbed
PC
450}
451
4451e088 452struct wacom_hdev_data {
4492efff
PC
453 struct list_head list;
454 struct kref kref;
4451e088 455 struct hid_device *dev;
4492efff
PC
456 struct wacom_shared shared;
457};
458
459static LIST_HEAD(wacom_udev_list);
460static DEFINE_MUTEX(wacom_udev_list_lock);
461
4451e088
BT
462static bool wacom_are_sibling(struct hid_device *hdev,
463 struct hid_device *sibling)
aea2bf6a 464{
4451e088
BT
465 struct wacom *wacom = hid_get_drvdata(hdev);
466 struct wacom_features *features = &wacom->wacom_wac.features;
467 int vid = features->oVid;
468 int pid = features->oPid;
469 int n1,n2;
470
471 if (vid == 0 && pid == 0) {
472 vid = hdev->vendor;
473 pid = hdev->product;
474 }
aea2bf6a 475
4451e088
BT
476 if (vid != sibling->vendor || pid != sibling->product)
477 return false;
aea2bf6a 478
4451e088
BT
479 /* Compare the physical path. */
480 n1 = strrchr(hdev->phys, '.') - hdev->phys;
481 n2 = strrchr(sibling->phys, '.') - sibling->phys;
482 if (n1 != n2 || n1 <= 0 || n2 <= 0)
483 return false;
aea2bf6a 484
4451e088 485 return !strncmp(hdev->phys, sibling->phys, n1);
aea2bf6a
JG
486}
487
4451e088 488static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
4492efff 489{
4451e088 490 struct wacom_hdev_data *data;
4492efff
PC
491
492 list_for_each_entry(data, &wacom_udev_list, list) {
4451e088 493 if (wacom_are_sibling(hdev, data->dev)) {
4492efff
PC
494 kref_get(&data->kref);
495 return data;
496 }
497 }
498
499 return NULL;
500}
501
4451e088 502static int wacom_add_shared_data(struct hid_device *hdev)
4492efff 503{
4451e088
BT
504 struct wacom *wacom = hid_get_drvdata(hdev);
505 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
506 struct wacom_hdev_data *data;
4492efff
PC
507 int retval = 0;
508
509 mutex_lock(&wacom_udev_list_lock);
510
4451e088 511 data = wacom_get_hdev_data(hdev);
4492efff 512 if (!data) {
4451e088 513 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
4492efff
PC
514 if (!data) {
515 retval = -ENOMEM;
516 goto out;
517 }
518
519 kref_init(&data->kref);
4451e088 520 data->dev = hdev;
4492efff
PC
521 list_add_tail(&data->list, &wacom_udev_list);
522 }
523
4451e088 524 wacom_wac->shared = &data->shared;
4492efff
PC
525
526out:
527 mutex_unlock(&wacom_udev_list_lock);
528 return retval;
529}
530
531static void wacom_release_shared_data(struct kref *kref)
532{
4451e088
BT
533 struct wacom_hdev_data *data =
534 container_of(kref, struct wacom_hdev_data, kref);
4492efff
PC
535
536 mutex_lock(&wacom_udev_list_lock);
537 list_del(&data->list);
538 mutex_unlock(&wacom_udev_list_lock);
539
540 kfree(data);
541}
542
543static void wacom_remove_shared_data(struct wacom_wac *wacom)
544{
4451e088 545 struct wacom_hdev_data *data;
4492efff
PC
546
547 if (wacom->shared) {
4451e088 548 data = container_of(wacom->shared, struct wacom_hdev_data, shared);
4492efff
PC
549 kref_put(&data->kref, wacom_release_shared_data);
550 wacom->shared = NULL;
551 }
552}
553
5d7e7d47
EH
554static int wacom_led_control(struct wacom *wacom)
555{
556 unsigned char *buf;
9b5b95dd 557 int retval;
912ca216
PC
558 unsigned char report_id = WAC_CMD_LED_CONTROL;
559 int buf_size = 9;
5d7e7d47 560
912ca216
PC
561 if (wacom->wacom_wac.pid) { /* wireless connected */
562 report_id = WAC_CMD_WL_LED_CONTROL;
563 buf_size = 13;
564 }
565 buf = kzalloc(buf_size, GFP_KERNEL);
5d7e7d47
EH
566 if (!buf)
567 return -ENOMEM;
568
9b5b95dd 569 if (wacom->wacom_wac.features.type >= INTUOS5S &&
9a35c411 570 wacom->wacom_wac.features.type <= INTUOSPL) {
9b5b95dd
JG
571 /*
572 * Touch Ring and crop mark LED luminance may take on
573 * one of four values:
574 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
575 */
576 int ring_led = wacom->led.select[0] & 0x03;
577 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
578 int crop_lum = 0;
912ca216
PC
579 unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
580
581 buf[0] = report_id;
582 if (wacom->wacom_wac.pid) {
583 wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
584 buf, buf_size, WAC_CMD_RETRIES);
585 buf[0] = report_id;
586 buf[4] = led_bits;
587 } else
588 buf[1] = led_bits;
9b5b95dd
JG
589 }
590 else {
591 int led = wacom->led.select[0] | 0x4;
592
593 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
594 wacom->wacom_wac.features.type == WACOM_24HD)
595 led |= (wacom->led.select[1] << 4) | 0x40;
596
912ca216 597 buf[0] = report_id;
9b5b95dd
JG
598 buf[1] = led;
599 buf[2] = wacom->led.llv;
600 buf[3] = wacom->led.hlv;
601 buf[4] = wacom->led.img_lum;
602 }
5d7e7d47 603
912ca216 604 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
296b7378 605 WAC_CMD_RETRIES);
5d7e7d47
EH
606 kfree(buf);
607
608 return retval;
609}
610
849e2f06
BT
611static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
612 const unsigned len, const void *img)
5d7e7d47
EH
613{
614 unsigned char *buf;
615 int i, retval;
849e2f06 616 const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
5d7e7d47 617
849e2f06 618 buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
5d7e7d47
EH
619 if (!buf)
620 return -ENOMEM;
621
622 /* Send 'start' command */
623 buf[0] = WAC_CMD_ICON_START;
624 buf[1] = 1;
296b7378
PF
625 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
626 WAC_CMD_RETRIES);
5d7e7d47
EH
627 if (retval < 0)
628 goto out;
629
849e2f06 630 buf[0] = xfer_id;
5d7e7d47
EH
631 buf[1] = button_id & 0x07;
632 for (i = 0; i < 4; i++) {
633 buf[2] = i;
849e2f06 634 memcpy(buf + 3, img + i * chunk_len, chunk_len);
5d7e7d47 635
27b20a9d 636 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
296b7378 637 buf, chunk_len + 3, WAC_CMD_RETRIES);
5d7e7d47
EH
638 if (retval < 0)
639 break;
640 }
641
642 /* Send 'stop' */
643 buf[0] = WAC_CMD_ICON_START;
644 buf[1] = 0;
296b7378
PF
645 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
646 WAC_CMD_RETRIES);
5d7e7d47
EH
647
648out:
649 kfree(buf);
650 return retval;
651}
652
09e7d941 653static ssize_t wacom_led_select_store(struct device *dev, int set_id,
5d7e7d47
EH
654 const char *buf, size_t count)
655{
c31a408f 656 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
29b47391 657 struct wacom *wacom = hid_get_drvdata(hdev);
5d7e7d47
EH
658 unsigned int id;
659 int err;
660
661 err = kstrtouint(buf, 10, &id);
662 if (err)
663 return err;
664
665 mutex_lock(&wacom->lock);
666
09e7d941 667 wacom->led.select[set_id] = id & 0x3;
5d7e7d47
EH
668 err = wacom_led_control(wacom);
669
670 mutex_unlock(&wacom->lock);
671
672 return err < 0 ? err : count;
673}
674
09e7d941
PC
675#define DEVICE_LED_SELECT_ATTR(SET_ID) \
676static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
677 struct device_attribute *attr, const char *buf, size_t count) \
678{ \
679 return wacom_led_select_store(dev, SET_ID, buf, count); \
680} \
04c59abd
PC
681static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
682 struct device_attribute *attr, char *buf) \
683{ \
c31a408f 684 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
29b47391 685 struct wacom *wacom = hid_get_drvdata(hdev); \
37449adc
PC
686 return scnprintf(buf, PAGE_SIZE, "%d\n", \
687 wacom->led.select[SET_ID]); \
04c59abd 688} \
e0984bc3 689static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
04c59abd 690 wacom_led##SET_ID##_select_show, \
09e7d941
PC
691 wacom_led##SET_ID##_select_store)
692
693DEVICE_LED_SELECT_ATTR(0);
694DEVICE_LED_SELECT_ATTR(1);
5d7e7d47
EH
695
696static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
697 const char *buf, size_t count)
698{
699 unsigned int value;
700 int err;
701
702 err = kstrtouint(buf, 10, &value);
703 if (err)
704 return err;
705
706 mutex_lock(&wacom->lock);
707
708 *dest = value & 0x7f;
709 err = wacom_led_control(wacom);
710
711 mutex_unlock(&wacom->lock);
712
713 return err < 0 ? err : count;
714}
715
716#define DEVICE_LUMINANCE_ATTR(name, field) \
717static ssize_t wacom_##name##_luminance_store(struct device *dev, \
718 struct device_attribute *attr, const char *buf, size_t count) \
719{ \
c31a408f 720 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
29b47391 721 struct wacom *wacom = hid_get_drvdata(hdev); \
5d7e7d47
EH
722 \
723 return wacom_luminance_store(wacom, &wacom->led.field, \
724 buf, count); \
725} \
37449adc
PC
726static ssize_t wacom_##name##_luminance_show(struct device *dev, \
727 struct device_attribute *attr, char *buf) \
728{ \
729 struct wacom *wacom = dev_get_drvdata(dev); \
730 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
731} \
e0984bc3 732static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
37449adc
PC
733 wacom_##name##_luminance_show, \
734 wacom_##name##_luminance_store)
5d7e7d47
EH
735
736DEVICE_LUMINANCE_ATTR(status0, llv);
737DEVICE_LUMINANCE_ATTR(status1, hlv);
738DEVICE_LUMINANCE_ATTR(buttons, img_lum);
739
740static ssize_t wacom_button_image_store(struct device *dev, int button_id,
741 const char *buf, size_t count)
742{
c31a408f 743 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
29b47391 744 struct wacom *wacom = hid_get_drvdata(hdev);
5d7e7d47 745 int err;
849e2f06
BT
746 unsigned len;
747 u8 xfer_id;
748
749 if (hdev->bus == BUS_BLUETOOTH) {
750 len = 256;
751 xfer_id = WAC_CMD_ICON_BT_XFER;
752 } else {
753 len = 1024;
754 xfer_id = WAC_CMD_ICON_XFER;
755 }
5d7e7d47 756
849e2f06 757 if (count != len)
5d7e7d47
EH
758 return -EINVAL;
759
760 mutex_lock(&wacom->lock);
761
849e2f06 762 err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
5d7e7d47
EH
763
764 mutex_unlock(&wacom->lock);
765
766 return err < 0 ? err : count;
767}
768
769#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
770static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
771 struct device_attribute *attr, const char *buf, size_t count) \
772{ \
773 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
774} \
e0984bc3 775static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
5d7e7d47
EH
776 NULL, wacom_btnimg##BUTTON_ID##_store)
777
778DEVICE_BTNIMG_ATTR(0);
779DEVICE_BTNIMG_ATTR(1);
780DEVICE_BTNIMG_ATTR(2);
781DEVICE_BTNIMG_ATTR(3);
782DEVICE_BTNIMG_ATTR(4);
783DEVICE_BTNIMG_ATTR(5);
784DEVICE_BTNIMG_ATTR(6);
785DEVICE_BTNIMG_ATTR(7);
786
09e7d941
PC
787static struct attribute *cintiq_led_attrs[] = {
788 &dev_attr_status_led0_select.attr,
789 &dev_attr_status_led1_select.attr,
790 NULL
791};
792
793static struct attribute_group cintiq_led_attr_group = {
794 .name = "wacom_led",
795 .attrs = cintiq_led_attrs,
796};
797
798static struct attribute *intuos4_led_attrs[] = {
5d7e7d47
EH
799 &dev_attr_status0_luminance.attr,
800 &dev_attr_status1_luminance.attr,
09e7d941 801 &dev_attr_status_led0_select.attr,
5d7e7d47
EH
802 &dev_attr_buttons_luminance.attr,
803 &dev_attr_button0_rawimg.attr,
804 &dev_attr_button1_rawimg.attr,
805 &dev_attr_button2_rawimg.attr,
806 &dev_attr_button3_rawimg.attr,
807 &dev_attr_button4_rawimg.attr,
808 &dev_attr_button5_rawimg.attr,
809 &dev_attr_button6_rawimg.attr,
810 &dev_attr_button7_rawimg.attr,
811 NULL
812};
813
09e7d941 814static struct attribute_group intuos4_led_attr_group = {
5d7e7d47 815 .name = "wacom_led",
09e7d941 816 .attrs = intuos4_led_attrs,
5d7e7d47
EH
817};
818
9b5b95dd
JG
819static struct attribute *intuos5_led_attrs[] = {
820 &dev_attr_status0_luminance.attr,
821 &dev_attr_status_led0_select.attr,
822 NULL
823};
824
825static struct attribute_group intuos5_led_attr_group = {
826 .name = "wacom_led",
827 .attrs = intuos5_led_attrs,
828};
829
5d7e7d47
EH
830static int wacom_initialize_leds(struct wacom *wacom)
831{
832 int error;
833
09e7d941
PC
834 /* Initialize default values */
835 switch (wacom->wacom_wac.features.type) {
a19fc986 836 case INTUOS4S:
09e7d941 837 case INTUOS4:
81af7e61 838 case INTUOS4WL:
09e7d941
PC
839 case INTUOS4L:
840 wacom->led.select[0] = 0;
841 wacom->led.select[1] = 0;
f4fa9a6d 842 wacom->led.llv = 10;
5d7e7d47
EH
843 wacom->led.hlv = 20;
844 wacom->led.img_lum = 10;
c31a408f 845 error = sysfs_create_group(&wacom->hdev->dev.kobj,
09e7d941
PC
846 &intuos4_led_attr_group);
847 break;
848
246835fc 849 case WACOM_24HD:
09e7d941
PC
850 case WACOM_21UX2:
851 wacom->led.select[0] = 0;
852 wacom->led.select[1] = 0;
853 wacom->led.llv = 0;
854 wacom->led.hlv = 0;
855 wacom->led.img_lum = 0;
5d7e7d47 856
c31a408f 857 error = sysfs_create_group(&wacom->hdev->dev.kobj,
09e7d941
PC
858 &cintiq_led_attr_group);
859 break;
860
9b5b95dd
JG
861 case INTUOS5S:
862 case INTUOS5:
863 case INTUOS5L:
9a35c411
PC
864 case INTUOSPS:
865 case INTUOSPM:
866 case INTUOSPL:
c2b0c273
PC
867 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN) {
868 wacom->led.select[0] = 0;
869 wacom->led.select[1] = 0;
870 wacom->led.llv = 32;
871 wacom->led.hlv = 0;
872 wacom->led.img_lum = 0;
873
c31a408f 874 error = sysfs_create_group(&wacom->hdev->dev.kobj,
c2b0c273
PC
875 &intuos5_led_attr_group);
876 } else
877 return 0;
9b5b95dd
JG
878 break;
879
09e7d941
PC
880 default:
881 return 0;
5d7e7d47
EH
882 }
883
09e7d941 884 if (error) {
c31a408f 885 hid_err(wacom->hdev,
09e7d941
PC
886 "cannot create sysfs group err: %d\n", error);
887 return error;
888 }
889 wacom_led_control(wacom);
c757cbaf 890 wacom->led_initialized = true;
09e7d941 891
5d7e7d47
EH
892 return 0;
893}
894
895static void wacom_destroy_leds(struct wacom *wacom)
896{
c757cbaf
BT
897 if (!wacom->led_initialized)
898 return;
899
900 wacom->led_initialized = false;
901
09e7d941 902 switch (wacom->wacom_wac.features.type) {
a19fc986 903 case INTUOS4S:
09e7d941 904 case INTUOS4:
81af7e61 905 case INTUOS4WL:
09e7d941 906 case INTUOS4L:
c31a408f 907 sysfs_remove_group(&wacom->hdev->dev.kobj,
09e7d941
PC
908 &intuos4_led_attr_group);
909 break;
910
246835fc 911 case WACOM_24HD:
09e7d941 912 case WACOM_21UX2:
c31a408f 913 sysfs_remove_group(&wacom->hdev->dev.kobj,
09e7d941
PC
914 &cintiq_led_attr_group);
915 break;
9b5b95dd
JG
916
917 case INTUOS5S:
918 case INTUOS5:
919 case INTUOS5L:
9a35c411
PC
920 case INTUOSPS:
921 case INTUOSPM:
922 case INTUOSPL:
c2b0c273 923 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN)
c31a408f 924 sysfs_remove_group(&wacom->hdev->dev.kobj,
c2b0c273 925 &intuos5_led_attr_group);
9b5b95dd 926 break;
5d7e7d47
EH
927 }
928}
929
a1d552cc 930static enum power_supply_property wacom_battery_props[] = {
ac8d1010 931 POWER_SUPPLY_PROP_STATUS,
6e2a6e80 932 POWER_SUPPLY_PROP_SCOPE,
a1d552cc
CB
933 POWER_SUPPLY_PROP_CAPACITY
934};
935
7dbd229e
BT
936static enum power_supply_property wacom_ac_props[] = {
937 POWER_SUPPLY_PROP_PRESENT,
938 POWER_SUPPLY_PROP_ONLINE,
939 POWER_SUPPLY_PROP_SCOPE,
940};
941
a1d552cc
CB
942static int wacom_battery_get_property(struct power_supply *psy,
943 enum power_supply_property psp,
944 union power_supply_propval *val)
945{
946 struct wacom *wacom = container_of(psy, struct wacom, battery);
947 int ret = 0;
948
949 switch (psp) {
6e2a6e80
BN
950 case POWER_SUPPLY_PROP_SCOPE:
951 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
952 break;
a1d552cc
CB
953 case POWER_SUPPLY_PROP_CAPACITY:
954 val->intval =
ac8d1010
BT
955 wacom->wacom_wac.battery_capacity;
956 break;
957 case POWER_SUPPLY_PROP_STATUS:
958 if (wacom->wacom_wac.bat_charging)
959 val->intval = POWER_SUPPLY_STATUS_CHARGING;
960 else if (wacom->wacom_wac.battery_capacity == 100 &&
961 wacom->wacom_wac.ps_connected)
962 val->intval = POWER_SUPPLY_STATUS_FULL;
963 else
964 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
a1d552cc
CB
965 break;
966 default:
967 ret = -EINVAL;
968 break;
969 }
970
971 return ret;
972}
973
7dbd229e
BT
974static int wacom_ac_get_property(struct power_supply *psy,
975 enum power_supply_property psp,
976 union power_supply_propval *val)
977{
978 struct wacom *wacom = container_of(psy, struct wacom, ac);
979 int ret = 0;
980
981 switch (psp) {
982 case POWER_SUPPLY_PROP_PRESENT:
983 /* fall through */
984 case POWER_SUPPLY_PROP_ONLINE:
985 val->intval = wacom->wacom_wac.ps_connected;
986 break;
987 case POWER_SUPPLY_PROP_SCOPE:
988 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
989 break;
990 default:
991 ret = -EINVAL;
992 break;
993 }
994 return ret;
995}
996
a1d552cc
CB
997static int wacom_initialize_battery(struct wacom *wacom)
998{
d70420b9 999 static atomic_t battery_no = ATOMIC_INIT(0);
7dbd229e 1000 int error;
d70420b9 1001 unsigned long n;
a1d552cc 1002
ac8d1010 1003 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) {
d70420b9 1004 n = atomic_inc_return(&battery_no) - 1;
7dbd229e 1005
a1d552cc
CB
1006 wacom->battery.properties = wacom_battery_props;
1007 wacom->battery.num_properties = ARRAY_SIZE(wacom_battery_props);
1008 wacom->battery.get_property = wacom_battery_get_property;
d70420b9
BT
1009 sprintf(wacom->wacom_wac.bat_name, "wacom_battery_%ld", n);
1010 wacom->battery.name = wacom->wacom_wac.bat_name;
a1d552cc
CB
1011 wacom->battery.type = POWER_SUPPLY_TYPE_BATTERY;
1012 wacom->battery.use_for_apm = 0;
1013
7dbd229e
BT
1014 wacom->ac.properties = wacom_ac_props;
1015 wacom->ac.num_properties = ARRAY_SIZE(wacom_ac_props);
1016 wacom->ac.get_property = wacom_ac_get_property;
1017 sprintf(wacom->wacom_wac.ac_name, "wacom_ac_%ld", n);
1018 wacom->ac.name = wacom->wacom_wac.ac_name;
1019 wacom->ac.type = POWER_SUPPLY_TYPE_MAINS;
1020 wacom->ac.use_for_apm = 0;
1021
dd3181a7 1022 error = power_supply_register(&wacom->hdev->dev,
a1d552cc 1023 &wacom->battery);
7dbd229e
BT
1024 if (error)
1025 return error;
1026
1027 power_supply_powers(&wacom->battery, &wacom->hdev->dev);
b7af2bb8 1028
7dbd229e
BT
1029 error = power_supply_register(&wacom->hdev->dev, &wacom->ac);
1030 if (error) {
1031 power_supply_unregister(&wacom->battery);
1032 return error;
1033 }
1034
1035 power_supply_powers(&wacom->ac, &wacom->hdev->dev);
a1d552cc
CB
1036 }
1037
7dbd229e 1038 return 0;
a1d552cc
CB
1039}
1040
1041static void wacom_destroy_battery(struct wacom *wacom)
1042{
ac8d1010
BT
1043 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
1044 wacom->battery.dev) {
a1d552cc 1045 power_supply_unregister(&wacom->battery);
b7af2bb8 1046 wacom->battery.dev = NULL;
7dbd229e
BT
1047 power_supply_unregister(&wacom->ac);
1048 wacom->ac.dev = NULL;
b7af2bb8 1049 }
a1d552cc
CB
1050}
1051
f81a1295
BT
1052static ssize_t wacom_show_speed(struct device *dev,
1053 struct device_attribute
1054 *attr, char *buf)
1055{
1056 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1057 struct wacom *wacom = hid_get_drvdata(hdev);
1058
1059 return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
1060}
1061
1062static ssize_t wacom_store_speed(struct device *dev,
1063 struct device_attribute *attr,
1064 const char *buf, size_t count)
1065{
1066 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1067 struct wacom *wacom = hid_get_drvdata(hdev);
1068 u8 new_speed;
1069
1070 if (kstrtou8(buf, 0, &new_speed))
1071 return -EINVAL;
1072
1073 if (new_speed != 0 && new_speed != 1)
1074 return -EINVAL;
1075
1076 wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
1077
1078 return count;
1079}
1080
e0984bc3 1081static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
f81a1295
BT
1082 wacom_show_speed, wacom_store_speed);
1083
d2d13f18 1084static struct input_dev *wacom_allocate_input(struct wacom *wacom)
3aac0ef1
CB
1085{
1086 struct input_dev *input_dev;
b6c79f2c 1087 struct hid_device *hdev = wacom->hdev;
3aac0ef1 1088 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
3aac0ef1
CB
1089
1090 input_dev = input_allocate_device();
d2d13f18
BT
1091 if (!input_dev)
1092 return NULL;
3aac0ef1
CB
1093
1094 input_dev->name = wacom_wac->name;
b6c79f2c
BT
1095 input_dev->phys = hdev->phys;
1096 input_dev->dev.parent = &hdev->dev;
3aac0ef1
CB
1097 input_dev->open = wacom_open;
1098 input_dev->close = wacom_close;
b6c79f2c
BT
1099 input_dev->uniq = hdev->uniq;
1100 input_dev->id.bustype = hdev->bus;
1101 input_dev->id.vendor = hdev->vendor;
12969e3b 1102 input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
b6c79f2c 1103 input_dev->id.version = hdev->version;
3aac0ef1
CB
1104 input_set_drvdata(input_dev, wacom);
1105
d2d13f18
BT
1106 return input_dev;
1107}
1108
2546dacd 1109static void wacom_free_inputs(struct wacom *wacom)
008f4d9e 1110{
2546dacd
BT
1111 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1112
1113 if (wacom_wac->input)
1114 input_free_device(wacom_wac->input);
1115 if (wacom_wac->pad_input)
1116 input_free_device(wacom_wac->pad_input);
1117 wacom_wac->input = NULL;
1118 wacom_wac->pad_input = NULL;
008f4d9e
BT
1119}
1120
2546dacd 1121static int wacom_allocate_inputs(struct wacom *wacom)
d2d13f18
BT
1122{
1123 struct input_dev *input_dev, *pad_input_dev;
1124 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
d2d13f18
BT
1125
1126 input_dev = wacom_allocate_input(wacom);
1127 pad_input_dev = wacom_allocate_input(wacom);
1128 if (!input_dev || !pad_input_dev) {
2546dacd
BT
1129 wacom_free_inputs(wacom);
1130 return -ENOMEM;
d2d13f18
BT
1131 }
1132
3aac0ef1 1133 wacom_wac->input = input_dev;
d2d13f18
BT
1134 wacom_wac->pad_input = pad_input_dev;
1135 wacom_wac->pad_input->name = wacom_wac->pad_name;
1136
2546dacd
BT
1137 return 0;
1138}
1139
1140static void wacom_clean_inputs(struct wacom *wacom)
1141{
1142 if (wacom->wacom_wac.input) {
1143 if (wacom->wacom_wac.input_registered)
1144 input_unregister_device(wacom->wacom_wac.input);
1145 else
1146 input_free_device(wacom->wacom_wac.input);
1147 }
1148 if (wacom->wacom_wac.pad_input) {
954df6ad 1149 if (wacom->wacom_wac.pad_registered)
2546dacd
BT
1150 input_unregister_device(wacom->wacom_wac.pad_input);
1151 else
1152 input_free_device(wacom->wacom_wac.pad_input);
1153 }
1154 wacom->wacom_wac.input = NULL;
1155 wacom->wacom_wac.pad_input = NULL;
1156 wacom_destroy_leds(wacom);
1157}
1158
1159static int wacom_register_inputs(struct wacom *wacom)
1160{
1161 struct input_dev *input_dev, *pad_input_dev;
1162 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1163 int error;
1164
1165 input_dev = wacom_wac->input;
1166 pad_input_dev = wacom_wac->pad_input;
1167
1168 if (!input_dev || !pad_input_dev)
1169 return -EINVAL;
1170
30ebc1ae
PC
1171 error = wacom_setup_pentouch_input_capabilities(input_dev, wacom_wac);
1172 if (!error) {
1173 error = input_register_device(input_dev);
1174 if (error)
1175 return error;
954df6ad 1176 wacom_wac->input_registered = true;
30ebc1ae 1177 }
1963518b 1178
d2d13f18
BT
1179 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
1180 if (error) {
1181 /* no pad in use on this interface */
1182 input_free_device(pad_input_dev);
1183 wacom_wac->pad_input = NULL;
1184 pad_input_dev = NULL;
1185 } else {
1186 error = input_register_device(pad_input_dev);
1187 if (error)
7fefeec5 1188 goto fail_register_pad_input;
954df6ad 1189 wacom_wac->pad_registered = true;
912ca216
PC
1190
1191 error = wacom_initialize_leds(wacom);
1192 if (error)
7fefeec5 1193 goto fail_leds;
d2d13f18
BT
1194 }
1195
1963518b 1196 return 0;
3aac0ef1 1197
7fefeec5 1198fail_leds:
912ca216
PC
1199 input_unregister_device(pad_input_dev);
1200 pad_input_dev = NULL;
954df6ad 1201 wacom_wac->pad_registered = false;
7fefeec5 1202fail_register_pad_input:
d2d13f18 1203 input_unregister_device(input_dev);
1963518b 1204 wacom_wac->input = NULL;
954df6ad 1205 wacom_wac->input_registered = false;
3aac0ef1
CB
1206 return error;
1207}
1208
16bf288c
CB
1209static void wacom_wireless_work(struct work_struct *work)
1210{
1211 struct wacom *wacom = container_of(work, struct wacom, work);
1212 struct usb_device *usbdev = wacom->usbdev;
1213 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
29b47391 1214 struct hid_device *hdev1, *hdev2;
b7af2bb8
CB
1215 struct wacom *wacom1, *wacom2;
1216 struct wacom_wac *wacom_wac1, *wacom_wac2;
1217 int error;
16bf288c
CB
1218
1219 /*
1220 * Regardless if this is a disconnect or a new tablet,
b7af2bb8 1221 * remove any existing input and battery devices.
16bf288c
CB
1222 */
1223
b7af2bb8
CB
1224 wacom_destroy_battery(wacom);
1225
16bf288c 1226 /* Stylus interface */
29b47391
BT
1227 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
1228 wacom1 = hid_get_drvdata(hdev1);
b7af2bb8 1229 wacom_wac1 = &(wacom1->wacom_wac);
2546dacd 1230 wacom_clean_inputs(wacom1);
16bf288c
CB
1231
1232 /* Touch interface */
29b47391
BT
1233 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
1234 wacom2 = hid_get_drvdata(hdev2);
b7af2bb8 1235 wacom_wac2 = &(wacom2->wacom_wac);
2546dacd 1236 wacom_clean_inputs(wacom2);
16bf288c
CB
1237
1238 if (wacom_wac->pid == 0) {
e2114ce1 1239 hid_info(wacom->hdev, "wireless tablet disconnected\n");
ac8d1010 1240 wacom_wac1->shared->type = 0;
16bf288c 1241 } else {
29b47391 1242 const struct hid_device_id *id = wacom_ids;
16bf288c 1243
e2114ce1 1244 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
eb71d1bb 1245 wacom_wac->pid);
16bf288c 1246
29b47391
BT
1247 while (id->bus) {
1248 if (id->vendor == USB_VENDOR_ID_WACOM &&
1249 id->product == wacom_wac->pid)
16bf288c
CB
1250 break;
1251 id++;
1252 }
1253
29b47391 1254 if (!id->bus) {
e2114ce1 1255 hid_info(wacom->hdev, "ignoring unknown PID.\n");
16bf288c
CB
1256 return;
1257 }
1258
1259 /* Stylus interface */
b7af2bb8 1260 wacom_wac1->features =
29b47391 1261 *((struct wacom_features *)id->driver_data);
b7af2bb8 1262 wacom_wac1->features.device_type = BTN_TOOL_PEN;
57bcfce3
PC
1263 snprintf(wacom_wac1->name, WACOM_NAME_MAX, "%s (WL) Pen",
1264 wacom_wac1->features.name);
008f4d9e
BT
1265 snprintf(wacom_wac1->pad_name, WACOM_NAME_MAX, "%s (WL) Pad",
1266 wacom_wac1->features.name);
961794a0
PC
1267 wacom_wac1->shared->touch_max = wacom_wac1->features.touch_max;
1268 wacom_wac1->shared->type = wacom_wac1->features.type;
912ca216 1269 wacom_wac1->pid = wacom_wac->pid;
2546dacd
BT
1270 error = wacom_allocate_inputs(wacom1) ||
1271 wacom_register_inputs(wacom1);
b7af2bb8 1272 if (error)
57bcfce3 1273 goto fail;
16bf288c
CB
1274
1275 /* Touch interface */
b5fd2a3e
PC
1276 if (wacom_wac1->features.touch_max ||
1277 wacom_wac1->features.type == INTUOSHT) {
57bcfce3 1278 wacom_wac2->features =
29b47391 1279 *((struct wacom_features *)id->driver_data);
57bcfce3
PC
1280 wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
1281 wacom_wac2->features.device_type = BTN_TOOL_FINGER;
1282 wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
1283 if (wacom_wac2->features.touch_max)
1284 snprintf(wacom_wac2->name, WACOM_NAME_MAX,
1285 "%s (WL) Finger",wacom_wac2->features.name);
1286 else
1287 snprintf(wacom_wac2->name, WACOM_NAME_MAX,
1288 "%s (WL) Pad",wacom_wac2->features.name);
008f4d9e
BT
1289 snprintf(wacom_wac2->pad_name, WACOM_NAME_MAX,
1290 "%s (WL) Pad", wacom_wac2->features.name);
912ca216 1291 wacom_wac2->pid = wacom_wac->pid;
2546dacd
BT
1292 error = wacom_allocate_inputs(wacom2) ||
1293 wacom_register_inputs(wacom2);
57bcfce3
PC
1294 if (error)
1295 goto fail;
961794a0
PC
1296
1297 if (wacom_wac1->features.type == INTUOSHT &&
1298 wacom_wac1->features.touch_max)
1299 wacom_wac->shared->touch_input = wacom_wac2->input;
57bcfce3 1300 }
b7af2bb8
CB
1301
1302 error = wacom_initialize_battery(wacom);
1303 if (error)
57bcfce3 1304 goto fail;
16bf288c 1305 }
b7af2bb8
CB
1306
1307 return;
1308
57bcfce3 1309fail:
2546dacd
BT
1310 wacom_clean_inputs(wacom1);
1311 wacom_clean_inputs(wacom2);
b7af2bb8 1312 return;
16bf288c
CB
1313}
1314
401d7d10
PC
1315/*
1316 * Not all devices report physical dimensions from HID.
1317 * Compute the default from hardcoded logical dimension
1318 * and resolution before driver overwrites them.
1319 */
1320static void wacom_set_default_phy(struct wacom_features *features)
1321{
1322 if (features->x_resolution) {
1323 features->x_phy = (features->x_max * 100) /
1324 features->x_resolution;
1325 features->y_phy = (features->y_max * 100) /
1326 features->y_resolution;
1327 }
1328}
1329
1330static void wacom_calculate_res(struct wacom_features *features)
1331{
1332 features->x_resolution = wacom_calc_hid_res(features->x_max,
1333 features->x_phy,
1334 features->unit,
1335 features->unitExpo);
1336 features->y_resolution = wacom_calc_hid_res(features->y_max,
1337 features->y_phy,
1338 features->unit,
1339 features->unitExpo);
1340}
1341
01c846f9
BT
1342static size_t wacom_compute_pktlen(struct hid_device *hdev)
1343{
1344 struct hid_report_enum *report_enum;
1345 struct hid_report *report;
1346 size_t size = 0;
1347
1348 report_enum = hdev->report_enum + HID_INPUT_REPORT;
1349
1350 list_for_each_entry(report, &report_enum->report_list, list) {
dabb05c6 1351 size_t report_size = hid_report_len(report);
01c846f9
BT
1352 if (report_size > size)
1353 size = report_size;
1354 }
1355
1356 return size;
1357}
1358
29b47391
BT
1359static int wacom_probe(struct hid_device *hdev,
1360 const struct hid_device_id *id)
3bea733a 1361{
29b47391 1362 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
3bea733a 1363 struct usb_device *dev = interface_to_usbdev(intf);
3bea733a
PC
1364 struct wacom *wacom;
1365 struct wacom_wac *wacom_wac;
e33da8a5 1366 struct wacom_features *features;
e33da8a5 1367 int error;
7704ac93 1368 unsigned int connect_mask = HID_CONNECT_HIDRAW;
3bea733a 1369
29b47391 1370 if (!id->driver_data)
b036f6fb
BB
1371 return -EINVAL;
1372
8ffffd52
BT
1373 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
1374
3bea733a 1375 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
f1823940
DC
1376 if (!wacom)
1377 return -ENOMEM;
e33da8a5 1378
29b47391
BT
1379 hid_set_drvdata(hdev, wacom);
1380 wacom->hdev = hdev;
1381
ba9a3541
BT
1382 /* ask for the report descriptor to be loaded by HID */
1383 error = hid_parse(hdev);
1384 if (error) {
1385 hid_err(hdev, "parse failed\n");
7fefeec5 1386 goto fail_parse;
ba9a3541
BT
1387 }
1388
51269fe8 1389 wacom_wac = &wacom->wacom_wac;
29b47391 1390 wacom_wac->features = *((struct wacom_features *)id->driver_data);
e33da8a5 1391 features = &wacom_wac->features;
01c846f9 1392 features->pktlen = wacom_compute_pktlen(hdev);
e33da8a5
JC
1393 if (features->pktlen > WACOM_PKGLEN_MAX) {
1394 error = -EINVAL;
7fefeec5 1395 goto fail_pktlen;
e33da8a5 1396 }
3bea733a 1397
29b47391
BT
1398 if (features->check_for_hid_type && features->hid_type != hdev->type) {
1399 error = -ENODEV;
7fefeec5 1400 goto fail_type;
e33da8a5 1401 }
3bea733a 1402
3bea733a 1403 wacom->usbdev = dev;
e7224094
ON
1404 wacom->intf = intf;
1405 mutex_init(&wacom->lock);
16bf288c 1406 INIT_WORK(&wacom->work, wacom_wireless_work);
3bea733a 1407
494078b0
BT
1408 if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
1409 error = wacom_allocate_inputs(wacom);
1410 if (error)
1411 goto fail_allocate_inputs;
1412 }
1413
401d7d10
PC
1414 /* set the default size in case we do not get them from hid */
1415 wacom_set_default_phy(features);
1416
f393ee2b 1417 /* Retrieve the physical and logical size for touch devices */
c669fb2b 1418 wacom_retrieve_hid_descriptor(hdev, features);
545f4e99 1419
ae584ca4
JG
1420 /*
1421 * Intuos5 has no useful data about its touch interface in its
01c846f9 1422 * HID descriptor. If this is the touch interface (PacketSize
ae584ca4
JG
1423 * of WACOM_PKGLEN_BBTOUCH3), override the table values.
1424 */
b5fd2a3e 1425 if (features->type >= INTUOS5S && features->type <= INTUOSHT) {
01c846f9 1426 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
ae584ca4 1427 features->device_type = BTN_TOOL_FINGER;
ae584ca4 1428
ae584ca4
JG
1429 features->x_max = 4096;
1430 features->y_max = 4096;
1431 } else {
1432 features->device_type = BTN_TOOL_PEN;
1433 }
1434 }
1435
c669fb2b
BT
1436 /*
1437 * Same thing for Bamboo 3rd gen.
1438 */
1439 if ((features->type == BAMBOO_PT) &&
1440 (features->pktlen == WACOM_PKGLEN_BBTOUCH3) &&
1441 (features->device_type == BTN_TOOL_PEN)) {
1442 features->device_type = BTN_TOOL_FINGER;
1443
1444 features->x_max = 4096;
1445 features->y_max = 4096;
1446 }
1447
f81a1295
BT
1448 if (hdev->bus == BUS_BLUETOOTH)
1449 features->quirks |= WACOM_QUIRK_BATTERY;
1450
bc73dd39
HR
1451 wacom_setup_device_quirks(features);
1452
401d7d10
PC
1453 /* set unit to "100th of a mm" for devices not reported by HID */
1454 if (!features->unit) {
1455 features->unit = 0x11;
c669fb2b 1456 features->unitExpo = -3;
401d7d10
PC
1457 }
1458 wacom_calculate_res(features);
1459
49b764ae 1460 strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
d2d13f18
BT
1461 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
1462 "%s Pad", features->name);
49b764ae 1463
bc73dd39 1464 if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
49b764ae 1465 /* Append the device type to the name */
57bcfce3
PC
1466 if (features->device_type != BTN_TOOL_FINGER)
1467 strlcat(wacom_wac->name, " Pen", WACOM_NAME_MAX);
1468 else if (features->touch_max)
1469 strlcat(wacom_wac->name, " Finger", WACOM_NAME_MAX);
1470 else
1471 strlcat(wacom_wac->name, " Pad", WACOM_NAME_MAX);
4492efff 1472
4451e088 1473 error = wacom_add_shared_data(hdev);
4492efff 1474 if (error)
7fefeec5 1475 goto fail_shared_data;
49b764ae
PC
1476 }
1477
f81a1295
BT
1478 if (!(features->quirks & WACOM_QUIRK_MONITOR) &&
1479 (features->quirks & WACOM_QUIRK_BATTERY)) {
1480 error = wacom_initialize_battery(wacom);
1481 if (error)
7fefeec5 1482 goto fail_battery;
f81a1295
BT
1483 }
1484
d3825d51 1485 if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
494078b0 1486 error = wacom_register_inputs(wacom);
d3825d51 1487 if (error)
7fefeec5 1488 goto fail_register_inputs;
f81a1295
BT
1489 }
1490
1491 if (hdev->bus == BUS_BLUETOOTH) {
1492 error = device_create_file(&hdev->dev, &dev_attr_speed);
1493 if (error)
1494 hid_warn(hdev,
1495 "can't create sysfs speed attribute err: %d\n",
1496 error);
d3825d51 1497 }
5d7e7d47 1498
7704ac93
BT
1499 if (features->type == HID_GENERIC)
1500 connect_mask |= HID_CONNECT_DRIVER;
1501
29b47391 1502 /* Regular HID work starts now */
7704ac93 1503 error = hid_hw_start(hdev, connect_mask);
29b47391
BT
1504 if (error) {
1505 hid_err(hdev, "hw start failed\n");
7fefeec5 1506 goto fail_hw_start;
d3825d51 1507 }
961794a0 1508
5ae6e89f
BT
1509 /* Note that if query fails it is not a hard failure */
1510 wacom_query_tablet_data(hdev, features);
1511
29b47391
BT
1512 if (features->quirks & WACOM_QUIRK_MONITOR)
1513 error = hid_hw_open(hdev);
1514
961794a0
PC
1515 if (wacom_wac->features.type == INTUOSHT && wacom_wac->features.touch_max) {
1516 if (wacom_wac->features.device_type == BTN_TOOL_FINGER)
1517 wacom_wac->shared->touch_input = wacom_wac->input;
1518 }
1519
3bea733a
PC
1520 return 0;
1521
7fefeec5 1522fail_hw_start:
7fefeec5 1523 if (hdev->bus == BUS_BLUETOOTH)
f81a1295 1524 device_remove_file(&hdev->dev, &dev_attr_speed);
7fefeec5 1525fail_register_inputs:
2546dacd 1526 wacom_clean_inputs(wacom);
7fefeec5
BT
1527 wacom_destroy_battery(wacom);
1528fail_battery:
1529 wacom_remove_shared_data(wacom_wac);
1530fail_shared_data:
494078b0
BT
1531 wacom_clean_inputs(wacom);
1532fail_allocate_inputs:
7fefeec5
BT
1533fail_type:
1534fail_pktlen:
1535fail_parse:
1536 kfree(wacom);
29b47391 1537 hid_set_drvdata(hdev, NULL);
5014186d 1538 return error;
3bea733a
PC
1539}
1540
29b47391 1541static void wacom_remove(struct hid_device *hdev)
3bea733a 1542{
29b47391 1543 struct wacom *wacom = hid_get_drvdata(hdev);
3bea733a 1544
29b47391 1545 hid_hw_stop(hdev);
e7224094 1546
16bf288c 1547 cancel_work_sync(&wacom->work);
2546dacd 1548 wacom_clean_inputs(wacom);
f81a1295
BT
1549 if (hdev->bus == BUS_BLUETOOTH)
1550 device_remove_file(&hdev->dev, &dev_attr_speed);
a1d552cc 1551 wacom_destroy_battery(wacom);
51269fe8 1552 wacom_remove_shared_data(&wacom->wacom_wac);
e7224094 1553
29b47391
BT
1554 hid_set_drvdata(hdev, NULL);
1555 kfree(wacom);
e7224094
ON
1556}
1557
41a74581 1558#ifdef CONFIG_PM
29b47391 1559static int wacom_resume(struct hid_device *hdev)
e7224094 1560{
29b47391 1561 struct wacom *wacom = hid_get_drvdata(hdev);
51269fe8 1562 struct wacom_features *features = &wacom->wacom_wac.features;
e7224094
ON
1563
1564 mutex_lock(&wacom->lock);
38101475
PC
1565
1566 /* switch to wacom mode first */
27b20a9d 1567 wacom_query_tablet_data(hdev, features);
5d7e7d47 1568 wacom_led_control(wacom);
38101475 1569
e7224094
ON
1570 mutex_unlock(&wacom->lock);
1571
29b47391 1572 return 0;
e7224094
ON
1573}
1574
29b47391 1575static int wacom_reset_resume(struct hid_device *hdev)
e7224094 1576{
29b47391 1577 return wacom_resume(hdev);
3bea733a 1578}
41a74581 1579#endif /* CONFIG_PM */
3bea733a 1580
29b47391 1581static struct hid_driver wacom_driver = {
3bea733a 1582 .name = "wacom",
b036f6fb 1583 .id_table = wacom_ids,
3bea733a 1584 .probe = wacom_probe,
29b47391 1585 .remove = wacom_remove,
7704ac93
BT
1586 .event = wacom_wac_event,
1587 .report = wacom_wac_report,
29b47391 1588#ifdef CONFIG_PM
e7224094
ON
1589 .resume = wacom_resume,
1590 .reset_resume = wacom_reset_resume,
29b47391
BT
1591#endif
1592 .raw_event = wacom_raw_event,
3bea733a 1593};
29b47391 1594module_hid_driver(wacom_driver);
f2e0a7d4
BT
1595
1596MODULE_VERSION(DRIVER_VERSION);
1597MODULE_AUTHOR(DRIVER_AUTHOR);
1598MODULE_DESCRIPTION(DRIVER_DESC);
1599MODULE_LICENSE(DRIVER_LICENSE);
This page took 0.604036 seconds and 5 git commands to generate.