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