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