2 * drivers/input/tablet/wacom_sys.c
4 * USB Wacom tablet support - system specific code
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.
14 #include "wacom_wac.h"
16 #include <linux/input/mt.h>
18 #define WAC_MSG_RETRIES 5
19 #define WAC_CMD_RETRIES 10
21 #define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
22 #define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)
23 #define DEV_ATTR_RO_PERM (S_IRUSR | S_IRGRP)
25 static int wacom_get_report(struct hid_device *hdev, u8 type, u8 *buf,
26 size_t size, unsigned int retries)
31 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
33 } while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);
36 hid_err(hdev, "wacom_get_report: ran out of retries "
37 "(last error = %d)\n", retval);
42 static int wacom_set_report(struct hid_device *hdev, u8 type, u8 *buf,
43 size_t size, unsigned int retries)
48 retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
50 } while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);
53 hid_err(hdev, "wacom_set_report: ran out of retries "
54 "(last error = %d)\n", retval);
59 static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
60 u8 *raw_data, int size)
62 struct wacom *wacom = hid_get_drvdata(hdev);
64 if (size > WACOM_PKGLEN_MAX)
67 memcpy(wacom->wacom_wac.data, raw_data, size);
69 wacom_wac_irq(&wacom->wacom_wac, size);
74 static int wacom_open(struct input_dev *dev)
76 struct wacom *wacom = input_get_drvdata(dev);
78 return hid_hw_open(wacom->hdev);
81 static void wacom_close(struct input_dev *dev)
83 struct wacom *wacom = input_get_drvdata(dev);
86 * wacom->hdev should never be null, but surprisingly, I had the case
87 * once while unplugging the Wacom Wireless Receiver.
90 hid_hw_close(wacom->hdev);
94 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
96 static int wacom_calc_hid_res(int logical_extents, int physical_extents,
97 unsigned unit, int exponent)
99 struct hid_field field = {
100 .logical_maximum = logical_extents,
101 .physical_maximum = physical_extents,
103 .unit_exponent = exponent,
106 return hidinput_calc_abs_res(&field, ABS_X);
109 static void wacom_feature_mapping(struct hid_device *hdev,
110 struct hid_field *field, struct hid_usage *usage)
112 struct wacom *wacom = hid_get_drvdata(hdev);
113 struct wacom_features *features = &wacom->wacom_wac.features;
114 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
115 unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid);
120 switch (equivalent_usage) {
121 case HID_DG_CONTACTMAX:
122 /* leave touch_max as is if predefined */
123 if (!features->touch_max) {
125 data = kzalloc(2, GFP_KERNEL);
128 data[0] = field->report->id;
129 ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
130 data, 2, WAC_CMD_RETRIES);
132 features->touch_max = data[1];
134 features->touch_max = 16;
135 hid_warn(hdev, "wacom_feature_mapping: "
136 "could not get HID_DG_CONTACTMAX, "
137 "defaulting to %d\n",
138 features->touch_max);
143 case HID_DG_INPUTMODE:
144 /* Ignore if value index is out of bounds. */
145 if (usage->usage_index >= field->report_count) {
146 dev_err(&hdev->dev, "HID_DG_INPUTMODE out of range\n");
150 hid_data->inputmode = field->report->id;
151 hid_data->inputmode_index = usage->usage_index;
154 case HID_UP_DIGITIZER:
155 if (field->report->id == 0x0B &&
156 (field->application == WACOM_HID_G9_PEN ||
157 field->application == WACOM_HID_G11_PEN)) {
158 wacom->wacom_wac.mode_report = field->report->id;
159 wacom->wacom_wac.mode_value = 0;
163 case WACOM_HID_WD_DATAMODE:
164 wacom->wacom_wac.mode_report = field->report->id;
165 wacom->wacom_wac.mode_value = 2;
168 case WACOM_HID_UP_G9:
169 case WACOM_HID_UP_G11:
170 if (field->report->id == 0x03 &&
171 (field->application == WACOM_HID_G9_TOUCHSCREEN ||
172 field->application == WACOM_HID_G11_TOUCHSCREEN)) {
173 wacom->wacom_wac.mode_report = field->report->id;
174 wacom->wacom_wac.mode_value = 0;
177 case WACOM_HID_WD_OFFSETLEFT:
178 case WACOM_HID_WD_OFFSETTOP:
179 case WACOM_HID_WD_OFFSETRIGHT:
180 case WACOM_HID_WD_OFFSETBOTTOM:
182 n = hid_report_len(field->report);
183 data = hid_alloc_report_buf(field->report, GFP_KERNEL);
186 data[0] = field->report->id;
187 ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
188 data, n, WAC_CMD_RETRIES);
190 ret = hid_report_raw_event(hdev, HID_FEATURE_REPORT,
193 hid_warn(hdev, "%s: could not retrieve sensor offsets\n",
200 if (hdev->vendor == USB_VENDOR_ID_WACOM &&
201 hdev->product == 0x4200 /* Dell Canvas 27 */ &&
202 field->application == HID_UP_MSVENDOR) {
203 wacom->wacom_wac.mode_report = field->report->id;
204 wacom->wacom_wac.mode_value = 2;
209 * Interface Descriptor of wacom devices can be incomplete and
210 * inconsistent so wacom_features table is used to store stylus
211 * device's packet lengths, various maximum values, and tablet
212 * resolution based on product ID's.
214 * For devices that contain 2 interfaces, wacom_features table is
215 * inaccurate for the touch interface. Since the Interface Descriptor
216 * for touch interfaces has pretty complete data, this function exists
217 * to query tablet for this missing information instead of hard coding in
218 * an additional table.
220 * A typical Interface Descriptor for a stylus will contain a
221 * boot mouse application collection that is not of interest and this
222 * function will ignore it.
224 * It also contains a digitizer application collection that also is not
225 * of interest since any information it contains would be duplicate
226 * of what is in wacom_features. Usually it defines a report of an array
227 * of bytes that could be used as max length of the stylus packet returned.
228 * If it happens to define a Digitizer-Stylus Physical Collection then
229 * the X and Y logical values contain valid data but it is ignored.
231 * A typical Interface Descriptor for a touch interface will contain a
232 * Digitizer-Finger Physical Collection which will define both logical
233 * X/Y maximum as well as the physical size of tablet. Since touch
234 * interfaces haven't supported pressure or distance, this is enough
235 * information to override invalid values in the wacom_features table.
237 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
238 * data. We deal with them after returning from this function.
240 static void wacom_usage_mapping(struct hid_device *hdev,
241 struct hid_field *field, struct hid_usage *usage)
243 struct wacom *wacom = hid_get_drvdata(hdev);
244 struct wacom_features *features = &wacom->wacom_wac.features;
245 bool finger = WACOM_FINGER_FIELD(field);
246 bool pen = WACOM_PEN_FIELD(field);
249 * Requiring Stylus Usage will ignore boot mouse
250 * X/Y values and some cases of invalid Digitizer X/Y
251 * values commonly reported.
254 features->device_type |= WACOM_DEVICETYPE_PEN;
256 features->device_type |= WACOM_DEVICETYPE_TOUCH;
261 * Bamboo models do not support HID_DG_CONTACTMAX.
262 * And, Bamboo Pen only descriptor contains touch.
264 if (features->type > BAMBOO_PT) {
265 /* ISDv4 touch devices at least supports one touch point */
266 if (finger && !features->touch_max)
267 features->touch_max = 1;
271 * ISDv4 devices which predate HID's adoption of the
272 * HID_DG_BARELSWITCH2 usage use 0x000D0000 in its
273 * position instead. We can accurately detect if a
274 * usage with that value should be HID_DG_BARRELSWITCH2
275 * based on the surrounding usages, which have remained
276 * constant across generations.
278 if (features->type == HID_GENERIC &&
279 usage->hid == 0x000D0000 &&
280 field->application == HID_DG_PEN &&
281 field->physical == HID_DG_STYLUS) {
282 int i = usage->usage_index;
284 if (i-4 >= 0 && i+1 < field->maxusage &&
285 field->usage[i-4].hid == HID_DG_TIPSWITCH &&
286 field->usage[i-3].hid == HID_DG_BARRELSWITCH &&
287 field->usage[i-2].hid == HID_DG_ERASER &&
288 field->usage[i-1].hid == HID_DG_INVERT &&
289 field->usage[i+1].hid == HID_DG_INRANGE) {
290 usage->hid = HID_DG_BARRELSWITCH2;
294 switch (usage->hid) {
296 features->x_max = field->logical_maximum;
298 features->x_phy = field->physical_maximum;
299 if ((features->type != BAMBOO_PT) &&
300 (features->type != BAMBOO_TOUCH)) {
301 features->unit = field->unit;
302 features->unitExpo = field->unit_exponent;
307 features->y_max = field->logical_maximum;
309 features->y_phy = field->physical_maximum;
310 if ((features->type != BAMBOO_PT) &&
311 (features->type != BAMBOO_TOUCH)) {
312 features->unit = field->unit;
313 features->unitExpo = field->unit_exponent;
317 case HID_DG_TIPPRESSURE:
319 features->pressure_max = field->logical_maximum;
323 if (features->type == HID_GENERIC)
324 wacom_wac_usage_mapping(hdev, field, usage);
327 static void wacom_post_parse_hid(struct hid_device *hdev,
328 struct wacom_features *features)
330 struct wacom *wacom = hid_get_drvdata(hdev);
331 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
333 if (features->type == HID_GENERIC) {
334 /* Any last-minute generic device setup */
335 if (wacom_wac->has_mode_change) {
336 if (wacom_wac->is_direct_mode)
337 features->device_type |= WACOM_DEVICETYPE_DIRECT;
339 features->device_type &= ~WACOM_DEVICETYPE_DIRECT;
342 if (features->touch_max > 1) {
343 if (features->device_type & WACOM_DEVICETYPE_DIRECT)
344 input_mt_init_slots(wacom_wac->touch_input,
345 wacom_wac->features.touch_max,
348 input_mt_init_slots(wacom_wac->touch_input,
349 wacom_wac->features.touch_max,
355 static void wacom_parse_hid(struct hid_device *hdev,
356 struct wacom_features *features)
358 struct hid_report_enum *rep_enum;
359 struct hid_report *hreport;
362 /* check features first */
363 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
364 list_for_each_entry(hreport, &rep_enum->report_list, list) {
365 for (i = 0; i < hreport->maxfield; i++) {
366 /* Ignore if report count is out of bounds. */
367 if (hreport->field[i]->report_count < 1)
370 for (j = 0; j < hreport->field[i]->maxusage; j++) {
371 wacom_feature_mapping(hdev, hreport->field[i],
372 hreport->field[i]->usage + j);
377 /* now check the input usages */
378 rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
379 list_for_each_entry(hreport, &rep_enum->report_list, list) {
381 if (!hreport->maxfield)
384 for (i = 0; i < hreport->maxfield; i++)
385 for (j = 0; j < hreport->field[i]->maxusage; j++)
386 wacom_usage_mapping(hdev, hreport->field[i],
387 hreport->field[i]->usage + j);
390 wacom_post_parse_hid(hdev, features);
393 static int wacom_hid_set_device_mode(struct hid_device *hdev)
395 struct wacom *wacom = hid_get_drvdata(hdev);
396 struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
397 struct hid_report *r;
398 struct hid_report_enum *re;
400 if (hid_data->inputmode < 0)
403 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
404 r = re->report_id_hash[hid_data->inputmode];
406 r->field[0]->value[hid_data->inputmode_index] = 2;
407 hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
412 static int wacom_set_device_mode(struct hid_device *hdev,
413 struct wacom_wac *wacom_wac)
416 struct hid_report *r;
417 struct hid_report_enum *re;
419 int error = -ENOMEM, limit = 0;
421 if (wacom_wac->mode_report < 0)
424 re = &(hdev->report_enum[HID_FEATURE_REPORT]);
425 r = re->report_id_hash[wacom_wac->mode_report];
429 rep_data = hid_alloc_report_buf(r, GFP_KERNEL);
433 length = hid_report_len(r);
436 rep_data[0] = wacom_wac->mode_report;
437 rep_data[1] = wacom_wac->mode_value;
439 error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
442 error = wacom_get_report(hdev, HID_FEATURE_REPORT,
443 rep_data, length, 1);
444 } while (error >= 0 &&
445 rep_data[1] != wacom_wac->mode_report &&
446 limit++ < WAC_MSG_RETRIES);
450 return error < 0 ? error : 0;
453 static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
454 struct wacom_features *features)
456 struct wacom *wacom = hid_get_drvdata(hdev);
460 switch (features->type) {
464 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
468 rep_data[0] = speed == 0 ? 0x05 : 0x06;
471 ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
475 wacom->wacom_wac.bt_high_speed = speed;
481 * Note that if the raw queries fail, it's not a hard failure
482 * and it is safe to continue
484 hid_warn(hdev, "failed to poke device, command %d, err %d\n",
489 wacom->wacom_wac.bt_features &= ~0x20;
491 wacom->wacom_wac.bt_features |= 0x20;
494 rep_data[1] = wacom->wacom_wac.bt_features;
496 ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
499 wacom->wacom_wac.bt_high_speed = speed;
507 * Switch the tablet into its most-capable mode. Wacom tablets are
508 * typically configured to power-up in a mode which sends mouse-like
509 * reports to the OS. To get absolute position, pressure data, etc.
510 * from the tablet, it is necessary to switch the tablet out of this
511 * mode and into one which sends the full range of tablet data.
513 static int _wacom_query_tablet_data(struct wacom *wacom)
515 struct hid_device *hdev = wacom->hdev;
516 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
517 struct wacom_features *features = &wacom_wac->features;
519 if (hdev->bus == BUS_BLUETOOTH)
520 return wacom_bt_query_tablet_data(hdev, 1, features);
522 if (features->type != HID_GENERIC) {
523 if (features->device_type & WACOM_DEVICETYPE_TOUCH) {
524 if (features->type > TABLETPC) {
525 /* MT Tablet PC touch */
526 wacom_wac->mode_report = 3;
527 wacom_wac->mode_value = 4;
528 } else if (features->type == WACOM_24HDT) {
529 wacom_wac->mode_report = 18;
530 wacom_wac->mode_value = 2;
531 } else if (features->type == WACOM_27QHDT) {
532 wacom_wac->mode_report = 131;
533 wacom_wac->mode_value = 2;
534 } else if (features->type == BAMBOO_PAD) {
535 wacom_wac->mode_report = 2;
536 wacom_wac->mode_value = 2;
538 } else if (features->device_type & WACOM_DEVICETYPE_PEN) {
539 if (features->type <= BAMBOO_PT) {
540 wacom_wac->mode_report = 2;
541 wacom_wac->mode_value = 2;
546 wacom_set_device_mode(hdev, wacom_wac);
548 if (features->type == HID_GENERIC)
549 return wacom_hid_set_device_mode(hdev);
554 static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
555 struct wacom_features *features)
557 struct wacom *wacom = hid_get_drvdata(hdev);
558 struct usb_interface *intf = wacom->intf;
560 /* default features */
561 features->x_fuzz = 4;
562 features->y_fuzz = 4;
563 features->pressure_fuzz = 0;
564 features->distance_fuzz = 1;
565 features->tilt_fuzz = 1;
568 * The wireless device HID is basic and layout conflicts with
569 * other tablets (monitor and touch interface can look like pen).
570 * Skip the query for this type and modify defaults based on
573 if (features->type == WIRELESS) {
574 if (intf->cur_altsetting->desc.bInterfaceNumber == 0)
575 features->device_type = WACOM_DEVICETYPE_WL_MONITOR;
577 features->device_type = WACOM_DEVICETYPE_NONE;
581 wacom_parse_hid(hdev, features);
584 struct wacom_hdev_data {
585 struct list_head list;
587 struct hid_device *dev;
588 struct wacom_shared shared;
591 static LIST_HEAD(wacom_udev_list);
592 static DEFINE_MUTEX(wacom_udev_list_lock);
594 static bool compare_device_paths(struct hid_device *hdev_a,
595 struct hid_device *hdev_b, char separator)
597 int n1 = strrchr(hdev_a->phys, separator) - hdev_a->phys;
598 int n2 = strrchr(hdev_b->phys, separator) - hdev_b->phys;
600 if (n1 != n2 || n1 <= 0 || n2 <= 0)
603 return !strncmp(hdev_a->phys, hdev_b->phys, n1);
606 static bool wacom_are_sibling(struct hid_device *hdev,
607 struct hid_device *sibling)
609 struct wacom *wacom = hid_get_drvdata(hdev);
610 struct wacom_features *features = &wacom->wacom_wac.features;
611 struct wacom *sibling_wacom = hid_get_drvdata(sibling);
612 struct wacom_features *sibling_features = &sibling_wacom->wacom_wac.features;
613 __u32 oVid = features->oVid ? features->oVid : hdev->vendor;
614 __u32 oPid = features->oPid ? features->oPid : hdev->product;
616 /* The defined oVid/oPid must match that of the sibling */
617 if (features->oVid != HID_ANY_ID && sibling->vendor != oVid)
619 if (features->oPid != HID_ANY_ID && sibling->product != oPid)
623 * Devices with the same VID/PID must share the same physical
624 * device path, while those with different VID/PID must share
625 * the same physical parent device path.
627 if (hdev->vendor == sibling->vendor && hdev->product == sibling->product) {
628 if (!compare_device_paths(hdev, sibling, '/'))
631 if (!compare_device_paths(hdev, sibling, '.'))
635 /* Skip the remaining heuristics unless you are a HID_GENERIC device */
636 if (features->type != HID_GENERIC)
640 * Direct-input devices may not be siblings of indirect-input
643 if ((features->device_type & WACOM_DEVICETYPE_DIRECT) &&
644 !(sibling_features->device_type & WACOM_DEVICETYPE_DIRECT))
648 * Indirect-input devices may not be siblings of direct-input
651 if (!(features->device_type & WACOM_DEVICETYPE_DIRECT) &&
652 (sibling_features->device_type & WACOM_DEVICETYPE_DIRECT))
655 /* Pen devices may only be siblings of touch devices */
656 if ((features->device_type & WACOM_DEVICETYPE_PEN) &&
657 !(sibling_features->device_type & WACOM_DEVICETYPE_TOUCH))
660 /* Touch devices may only be siblings of pen devices */
661 if ((features->device_type & WACOM_DEVICETYPE_TOUCH) &&
662 !(sibling_features->device_type & WACOM_DEVICETYPE_PEN))
666 * No reason could be found for these two devices to NOT be
667 * siblings, so there's a good chance they ARE siblings
672 static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
674 struct wacom_hdev_data *data;
676 /* Try to find an already-probed interface from the same device */
677 list_for_each_entry(data, &wacom_udev_list, list) {
678 if (compare_device_paths(hdev, data->dev, '/'))
682 /* Fallback to finding devices that appear to be "siblings" */
683 list_for_each_entry(data, &wacom_udev_list, list) {
684 if (wacom_are_sibling(hdev, data->dev)) {
685 kref_get(&data->kref);
693 static void wacom_release_shared_data(struct kref *kref)
695 struct wacom_hdev_data *data =
696 container_of(kref, struct wacom_hdev_data, kref);
698 mutex_lock(&wacom_udev_list_lock);
699 list_del(&data->list);
700 mutex_unlock(&wacom_udev_list_lock);
705 static void wacom_remove_shared_data(void *res)
707 struct wacom *wacom = res;
708 struct wacom_hdev_data *data;
709 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
711 if (wacom_wac->shared) {
712 data = container_of(wacom_wac->shared, struct wacom_hdev_data,
715 if (wacom_wac->shared->touch == wacom->hdev)
716 wacom_wac->shared->touch = NULL;
717 else if (wacom_wac->shared->pen == wacom->hdev)
718 wacom_wac->shared->pen = NULL;
720 kref_put(&data->kref, wacom_release_shared_data);
721 wacom_wac->shared = NULL;
725 static int wacom_add_shared_data(struct hid_device *hdev)
727 struct wacom *wacom = hid_get_drvdata(hdev);
728 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
729 struct wacom_hdev_data *data;
732 mutex_lock(&wacom_udev_list_lock);
734 data = wacom_get_hdev_data(hdev);
736 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
742 kref_init(&data->kref);
744 list_add_tail(&data->list, &wacom_udev_list);
747 wacom_wac->shared = &data->shared;
749 retval = devm_add_action(&hdev->dev, wacom_remove_shared_data, wacom);
751 mutex_unlock(&wacom_udev_list_lock);
752 wacom_remove_shared_data(wacom);
756 if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)
757 wacom_wac->shared->touch = hdev;
758 else if (wacom_wac->features.device_type & WACOM_DEVICETYPE_PEN)
759 wacom_wac->shared->pen = hdev;
762 mutex_unlock(&wacom_udev_list_lock);
766 static int wacom_led_control(struct wacom *wacom)
770 unsigned char report_id = WAC_CMD_LED_CONTROL;
773 if (!wacom->led.groups)
776 if (wacom->wacom_wac.features.type == REMOTE)
779 if (wacom->wacom_wac.pid) { /* wireless connected */
780 report_id = WAC_CMD_WL_LED_CONTROL;
783 else if (wacom->wacom_wac.features.type == INTUOSP2_BT) {
784 report_id = WAC_CMD_WL_INTUOSP2;
787 buf = kzalloc(buf_size, GFP_KERNEL);
791 if (wacom->wacom_wac.features.type == HID_GENERIC) {
792 buf[0] = WAC_CMD_LED_CONTROL_GENERIC;
793 buf[1] = wacom->led.llv;
794 buf[2] = wacom->led.groups[0].select & 0x03;
796 } else if ((wacom->wacom_wac.features.type >= INTUOS5S &&
797 wacom->wacom_wac.features.type <= INTUOSPL)) {
799 * Touch Ring and crop mark LED luminance may take on
800 * one of four values:
801 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
803 int ring_led = wacom->led.groups[0].select & 0x03;
804 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
806 unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
809 if (wacom->wacom_wac.pid) {
810 wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
811 buf, buf_size, WAC_CMD_RETRIES);
817 else if (wacom->wacom_wac.features.type == INTUOSP2_BT) {
819 buf[4] = 100; // Power Connection LED (ORANGE)
820 buf[5] = 100; // BT Connection LED (BLUE)
821 buf[6] = 100; // Paper Mode (RED?)
822 buf[7] = 100; // Paper Mode (GREEN?)
823 buf[8] = 100; // Paper Mode (BLUE?)
824 buf[9] = wacom->led.llv;
825 buf[10] = wacom->led.groups[0].select & 0x03;
828 int led = wacom->led.groups[0].select | 0x4;
830 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
831 wacom->wacom_wac.features.type == WACOM_24HD)
832 led |= (wacom->led.groups[1].select << 4) | 0x40;
836 buf[2] = wacom->led.llv;
837 buf[3] = wacom->led.hlv;
838 buf[4] = wacom->led.img_lum;
841 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
848 static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
849 const unsigned len, const void *img)
853 const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
855 buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
859 /* Send 'start' command */
860 buf[0] = WAC_CMD_ICON_START;
862 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
868 buf[1] = button_id & 0x07;
869 for (i = 0; i < 4; i++) {
871 memcpy(buf + 3, img + i * chunk_len, chunk_len);
873 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
874 buf, chunk_len + 3, WAC_CMD_RETRIES);
880 buf[0] = WAC_CMD_ICON_START;
882 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
890 static ssize_t wacom_led_select_store(struct device *dev, int set_id,
891 const char *buf, size_t count)
893 struct hid_device *hdev = to_hid_device(dev);
894 struct wacom *wacom = hid_get_drvdata(hdev);
898 err = kstrtouint(buf, 10, &id);
902 mutex_lock(&wacom->lock);
904 wacom->led.groups[set_id].select = id & 0x3;
905 err = wacom_led_control(wacom);
907 mutex_unlock(&wacom->lock);
909 return err < 0 ? err : count;
912 #define DEVICE_LED_SELECT_ATTR(SET_ID) \
913 static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
914 struct device_attribute *attr, const char *buf, size_t count) \
916 return wacom_led_select_store(dev, SET_ID, buf, count); \
918 static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
919 struct device_attribute *attr, char *buf) \
921 struct hid_device *hdev = to_hid_device(dev);\
922 struct wacom *wacom = hid_get_drvdata(hdev); \
923 return scnprintf(buf, PAGE_SIZE, "%d\n", \
924 wacom->led.groups[SET_ID].select); \
926 static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
927 wacom_led##SET_ID##_select_show, \
928 wacom_led##SET_ID##_select_store)
930 DEVICE_LED_SELECT_ATTR(0);
931 DEVICE_LED_SELECT_ATTR(1);
933 static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
934 const char *buf, size_t count)
939 err = kstrtouint(buf, 10, &value);
943 mutex_lock(&wacom->lock);
945 *dest = value & 0x7f;
946 err = wacom_led_control(wacom);
948 mutex_unlock(&wacom->lock);
950 return err < 0 ? err : count;
953 #define DEVICE_LUMINANCE_ATTR(name, field) \
954 static ssize_t wacom_##name##_luminance_store(struct device *dev, \
955 struct device_attribute *attr, const char *buf, size_t count) \
957 struct hid_device *hdev = to_hid_device(dev);\
958 struct wacom *wacom = hid_get_drvdata(hdev); \
960 return wacom_luminance_store(wacom, &wacom->led.field, \
963 static ssize_t wacom_##name##_luminance_show(struct device *dev, \
964 struct device_attribute *attr, char *buf) \
966 struct wacom *wacom = dev_get_drvdata(dev); \
967 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
969 static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
970 wacom_##name##_luminance_show, \
971 wacom_##name##_luminance_store)
973 DEVICE_LUMINANCE_ATTR(status0, llv);
974 DEVICE_LUMINANCE_ATTR(status1, hlv);
975 DEVICE_LUMINANCE_ATTR(buttons, img_lum);
977 static ssize_t wacom_button_image_store(struct device *dev, int button_id,
978 const char *buf, size_t count)
980 struct hid_device *hdev = to_hid_device(dev);
981 struct wacom *wacom = hid_get_drvdata(hdev);
986 if (hdev->bus == BUS_BLUETOOTH) {
988 xfer_id = WAC_CMD_ICON_BT_XFER;
991 xfer_id = WAC_CMD_ICON_XFER;
997 mutex_lock(&wacom->lock);
999 err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
1001 mutex_unlock(&wacom->lock);
1003 return err < 0 ? err : count;
1006 #define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
1007 static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
1008 struct device_attribute *attr, const char *buf, size_t count) \
1010 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
1012 static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
1013 NULL, wacom_btnimg##BUTTON_ID##_store)
1015 DEVICE_BTNIMG_ATTR(0);
1016 DEVICE_BTNIMG_ATTR(1);
1017 DEVICE_BTNIMG_ATTR(2);
1018 DEVICE_BTNIMG_ATTR(3);
1019 DEVICE_BTNIMG_ATTR(4);
1020 DEVICE_BTNIMG_ATTR(5);
1021 DEVICE_BTNIMG_ATTR(6);
1022 DEVICE_BTNIMG_ATTR(7);
1024 static struct attribute *cintiq_led_attrs[] = {
1025 &dev_attr_status_led0_select.attr,
1026 &dev_attr_status_led1_select.attr,
1030 static struct attribute_group cintiq_led_attr_group = {
1031 .name = "wacom_led",
1032 .attrs = cintiq_led_attrs,
1035 static struct attribute *intuos4_led_attrs[] = {
1036 &dev_attr_status0_luminance.attr,
1037 &dev_attr_status1_luminance.attr,
1038 &dev_attr_status_led0_select.attr,
1039 &dev_attr_buttons_luminance.attr,
1040 &dev_attr_button0_rawimg.attr,
1041 &dev_attr_button1_rawimg.attr,
1042 &dev_attr_button2_rawimg.attr,
1043 &dev_attr_button3_rawimg.attr,
1044 &dev_attr_button4_rawimg.attr,
1045 &dev_attr_button5_rawimg.attr,
1046 &dev_attr_button6_rawimg.attr,
1047 &dev_attr_button7_rawimg.attr,
1051 static struct attribute_group intuos4_led_attr_group = {
1052 .name = "wacom_led",
1053 .attrs = intuos4_led_attrs,
1056 static struct attribute *intuos5_led_attrs[] = {
1057 &dev_attr_status0_luminance.attr,
1058 &dev_attr_status_led0_select.attr,
1062 static struct attribute_group intuos5_led_attr_group = {
1063 .name = "wacom_led",
1064 .attrs = intuos5_led_attrs,
1067 static struct attribute *generic_led_attrs[] = {
1068 &dev_attr_status0_luminance.attr,
1069 &dev_attr_status_led0_select.attr,
1073 static struct attribute_group generic_led_attr_group = {
1074 .name = "wacom_led",
1075 .attrs = generic_led_attrs,
1078 struct wacom_sysfs_group_devres {
1079 struct attribute_group *group;
1080 struct kobject *root;
1083 static void wacom_devm_sysfs_group_release(struct device *dev, void *res)
1085 struct wacom_sysfs_group_devres *devres = res;
1086 struct kobject *kobj = devres->root;
1088 dev_dbg(dev, "%s: dropping reference to %s\n",
1089 __func__, devres->group->name);
1090 sysfs_remove_group(kobj, devres->group);
1093 static int __wacom_devm_sysfs_create_group(struct wacom *wacom,
1094 struct kobject *root,
1095 struct attribute_group *group)
1097 struct wacom_sysfs_group_devres *devres;
1100 devres = devres_alloc(wacom_devm_sysfs_group_release,
1101 sizeof(struct wacom_sysfs_group_devres),
1106 devres->group = group;
1107 devres->root = root;
1109 error = sysfs_create_group(devres->root, group);
1113 devres_add(&wacom->hdev->dev, devres);
1118 static int wacom_devm_sysfs_create_group(struct wacom *wacom,
1119 struct attribute_group *group)
1121 return __wacom_devm_sysfs_create_group(wacom, &wacom->hdev->dev.kobj,
1125 enum led_brightness wacom_leds_brightness_get(struct wacom_led *led)
1127 struct wacom *wacom = led->wacom;
1129 if (wacom->led.max_hlv)
1130 return led->hlv * LED_FULL / wacom->led.max_hlv;
1132 if (wacom->led.max_llv)
1133 return led->llv * LED_FULL / wacom->led.max_llv;
1135 /* device doesn't support brightness tuning */
1139 static enum led_brightness __wacom_led_brightness_get(struct led_classdev *cdev)
1141 struct wacom_led *led = container_of(cdev, struct wacom_led, cdev);
1142 struct wacom *wacom = led->wacom;
1144 if (wacom->led.groups[led->group].select != led->id)
1147 return wacom_leds_brightness_get(led);
1150 static int wacom_led_brightness_set(struct led_classdev *cdev,
1151 enum led_brightness brightness)
1153 struct wacom_led *led = container_of(cdev, struct wacom_led, cdev);
1154 struct wacom *wacom = led->wacom;
1157 mutex_lock(&wacom->lock);
1159 if (!wacom->led.groups || (brightness == LED_OFF &&
1160 wacom->led.groups[led->group].select != led->id)) {
1165 led->llv = wacom->led.llv = wacom->led.max_llv * brightness / LED_FULL;
1166 led->hlv = wacom->led.hlv = wacom->led.max_hlv * brightness / LED_FULL;
1168 wacom->led.groups[led->group].select = led->id;
1170 error = wacom_led_control(wacom);
1173 mutex_unlock(&wacom->lock);
1178 static void wacom_led_readonly_brightness_set(struct led_classdev *cdev,
1179 enum led_brightness brightness)
1183 static int wacom_led_register_one(struct device *dev, struct wacom *wacom,
1184 struct wacom_led *led, unsigned int group,
1185 unsigned int id, bool read_only)
1190 name = devm_kasprintf(dev, GFP_KERNEL,
1199 led->trigger.name = name;
1200 error = devm_led_trigger_register(dev, &led->trigger);
1202 hid_err(wacom->hdev,
1203 "failed to register LED trigger %s: %d\n",
1204 led->cdev.name, error);
1212 led->llv = wacom->led.llv;
1213 led->hlv = wacom->led.hlv;
1214 led->cdev.name = name;
1215 led->cdev.max_brightness = LED_FULL;
1216 led->cdev.flags = LED_HW_PLUGGABLE;
1217 led->cdev.brightness_get = __wacom_led_brightness_get;
1219 led->cdev.brightness_set_blocking = wacom_led_brightness_set;
1220 led->cdev.default_trigger = led->cdev.name;
1222 led->cdev.brightness_set = wacom_led_readonly_brightness_set;
1225 error = devm_led_classdev_register(dev, &led->cdev);
1227 hid_err(wacom->hdev,
1228 "failed to register LED %s: %d\n",
1229 led->cdev.name, error);
1230 led->cdev.name = NULL;
1237 static void wacom_led_groups_release_one(void *data)
1239 struct wacom_group_leds *group = data;
1241 devres_release_group(group->dev, group);
1244 static int wacom_led_groups_alloc_and_register_one(struct device *dev,
1245 struct wacom *wacom,
1246 int group_id, int count,
1249 struct wacom_led *leds;
1252 if (group_id >= wacom->led.count || count <= 0)
1255 if (!devres_open_group(dev, &wacom->led.groups[group_id], GFP_KERNEL))
1258 leds = devm_kzalloc(dev, sizeof(struct wacom_led) * count, GFP_KERNEL);
1264 wacom->led.groups[group_id].leds = leds;
1265 wacom->led.groups[group_id].count = count;
1267 for (i = 0; i < count; i++) {
1268 error = wacom_led_register_one(dev, wacom, &leds[i],
1269 group_id, i, read_only);
1274 wacom->led.groups[group_id].dev = dev;
1276 devres_close_group(dev, &wacom->led.groups[group_id]);
1279 * There is a bug (?) in devm_led_classdev_register() in which its
1280 * increments the refcount of the parent. If the parent is an input
1281 * device, that means the ref count never reaches 0 when
1282 * devm_input_device_release() gets called.
1283 * This means that the LEDs are still there after disconnect.
1284 * Manually force the release of the group so that the leds are released
1285 * once we are done using them.
1287 error = devm_add_action_or_reset(&wacom->hdev->dev,
1288 wacom_led_groups_release_one,
1289 &wacom->led.groups[group_id]);
1296 devres_release_group(dev, &wacom->led.groups[group_id]);
1300 struct wacom_led *wacom_led_find(struct wacom *wacom, unsigned int group_id,
1303 struct wacom_group_leds *group;
1305 if (group_id >= wacom->led.count)
1308 group = &wacom->led.groups[group_id];
1315 return &group->leds[id];
1319 * wacom_led_next: gives the next available led with a wacom trigger.
1321 * returns the next available struct wacom_led which has its default trigger
1322 * or the current one if none is available.
1324 struct wacom_led *wacom_led_next(struct wacom *wacom, struct wacom_led *cur)
1326 struct wacom_led *next_led;
1336 next_led = wacom_led_find(wacom, group, ++next);
1337 if (!next_led || next_led == cur)
1339 } while (next_led->cdev.trigger != &next_led->trigger);
1344 static void wacom_led_groups_release(void *data)
1346 struct wacom *wacom = data;
1348 wacom->led.groups = NULL;
1349 wacom->led.count = 0;
1352 static int wacom_led_groups_allocate(struct wacom *wacom, int count)
1354 struct device *dev = &wacom->hdev->dev;
1355 struct wacom_group_leds *groups;
1358 groups = devm_kzalloc(dev, sizeof(struct wacom_group_leds) * count,
1363 error = devm_add_action_or_reset(dev, wacom_led_groups_release, wacom);
1367 wacom->led.groups = groups;
1368 wacom->led.count = count;
1373 static int wacom_leds_alloc_and_register(struct wacom *wacom, int group_count,
1374 int led_per_group, bool read_only)
1379 if (!wacom->wacom_wac.pad_input)
1382 dev = &wacom->wacom_wac.pad_input->dev;
1384 error = wacom_led_groups_allocate(wacom, group_count);
1388 for (i = 0; i < group_count; i++) {
1389 error = wacom_led_groups_alloc_and_register_one(dev, wacom, i,
1399 int wacom_initialize_leds(struct wacom *wacom)
1403 if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
1406 /* Initialize default values */
1407 switch (wacom->wacom_wac.features.type) {
1409 if (!wacom->generic_has_leds)
1411 wacom->led.llv = 100;
1412 wacom->led.max_llv = 100;
1414 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1416 hid_err(wacom->hdev,
1417 "cannot create leds err: %d\n", error);
1421 error = wacom_devm_sysfs_create_group(wacom,
1422 &generic_led_attr_group);
1429 wacom->led.llv = 10;
1430 wacom->led.hlv = 20;
1431 wacom->led.max_llv = 127;
1432 wacom->led.max_hlv = 127;
1433 wacom->led.img_lum = 10;
1435 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1437 hid_err(wacom->hdev,
1438 "cannot create leds err: %d\n", error);
1442 error = wacom_devm_sysfs_create_group(wacom,
1443 &intuos4_led_attr_group);
1450 wacom->led.img_lum = 0;
1452 error = wacom_leds_alloc_and_register(wacom, 2, 4, false);
1454 hid_err(wacom->hdev,
1455 "cannot create leds err: %d\n", error);
1459 error = wacom_devm_sysfs_create_group(wacom,
1460 &cintiq_led_attr_group);
1469 wacom->led.llv = 32;
1470 wacom->led.max_llv = 96;
1472 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1474 hid_err(wacom->hdev,
1475 "cannot create leds err: %d\n", error);
1479 error = wacom_devm_sysfs_create_group(wacom,
1480 &intuos5_led_attr_group);
1484 wacom->led.llv = 50;
1485 wacom->led.max_llv = 100;
1486 error = wacom_leds_alloc_and_register(wacom, 1, 4, false);
1488 hid_err(wacom->hdev,
1489 "cannot create leds err: %d\n", error);
1495 wacom->led.llv = 255;
1496 wacom->led.max_llv = 255;
1497 error = wacom_led_groups_allocate(wacom, 5);
1499 hid_err(wacom->hdev,
1500 "cannot create leds err: %d\n", error);
1510 hid_err(wacom->hdev,
1511 "cannot create sysfs group err: %d\n", error);
1518 static void wacom_init_work(struct work_struct *work)
1520 struct wacom *wacom = container_of(work, struct wacom, init_work.work);
1522 _wacom_query_tablet_data(wacom);
1523 wacom_led_control(wacom);
1526 static void wacom_query_tablet_data(struct wacom *wacom)
1528 schedule_delayed_work(&wacom->init_work, msecs_to_jiffies(1000));
1531 static enum power_supply_property wacom_battery_props[] = {
1532 POWER_SUPPLY_PROP_MODEL_NAME,
1533 POWER_SUPPLY_PROP_PRESENT,
1534 POWER_SUPPLY_PROP_STATUS,
1535 POWER_SUPPLY_PROP_SCOPE,
1536 POWER_SUPPLY_PROP_CAPACITY
1539 static int wacom_battery_get_property(struct power_supply *psy,
1540 enum power_supply_property psp,
1541 union power_supply_propval *val)
1543 struct wacom_battery *battery = power_supply_get_drvdata(psy);
1547 case POWER_SUPPLY_PROP_MODEL_NAME:
1548 val->strval = battery->wacom->wacom_wac.name;
1550 case POWER_SUPPLY_PROP_PRESENT:
1551 val->intval = battery->bat_connected;
1553 case POWER_SUPPLY_PROP_SCOPE:
1554 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
1556 case POWER_SUPPLY_PROP_CAPACITY:
1557 val->intval = battery->battery_capacity;
1559 case POWER_SUPPLY_PROP_STATUS:
1560 if (battery->bat_status != WACOM_POWER_SUPPLY_STATUS_AUTO)
1561 val->intval = battery->bat_status;
1562 else if (battery->bat_charging)
1563 val->intval = POWER_SUPPLY_STATUS_CHARGING;
1564 else if (battery->battery_capacity == 100 &&
1565 battery->ps_connected)
1566 val->intval = POWER_SUPPLY_STATUS_FULL;
1567 else if (battery->ps_connected)
1568 val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
1570 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
1580 static int __wacom_initialize_battery(struct wacom *wacom,
1581 struct wacom_battery *battery)
1583 static atomic_t battery_no = ATOMIC_INIT(0);
1584 struct device *dev = &wacom->hdev->dev;
1585 struct power_supply_config psy_cfg = { .drv_data = battery, };
1586 struct power_supply *ps_bat;
1587 struct power_supply_desc *bat_desc = &battery->bat_desc;
1591 if (!devres_open_group(dev, bat_desc, GFP_KERNEL))
1594 battery->wacom = wacom;
1596 n = atomic_inc_return(&battery_no) - 1;
1598 bat_desc->properties = wacom_battery_props;
1599 bat_desc->num_properties = ARRAY_SIZE(wacom_battery_props);
1600 bat_desc->get_property = wacom_battery_get_property;
1601 sprintf(battery->bat_name, "wacom_battery_%ld", n);
1602 bat_desc->name = battery->bat_name;
1603 bat_desc->type = POWER_SUPPLY_TYPE_USB;
1604 bat_desc->use_for_apm = 0;
1606 ps_bat = devm_power_supply_register(dev, bat_desc, &psy_cfg);
1607 if (IS_ERR(ps_bat)) {
1608 error = PTR_ERR(ps_bat);
1612 power_supply_powers(ps_bat, &wacom->hdev->dev);
1614 battery->battery = ps_bat;
1616 devres_close_group(dev, bat_desc);
1620 devres_release_group(dev, bat_desc);
1624 static int wacom_initialize_battery(struct wacom *wacom)
1626 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY)
1627 return __wacom_initialize_battery(wacom, &wacom->battery);
1632 static void wacom_destroy_battery(struct wacom *wacom)
1634 if (wacom->battery.battery) {
1635 devres_release_group(&wacom->hdev->dev,
1636 &wacom->battery.bat_desc);
1637 wacom->battery.battery = NULL;
1641 static ssize_t wacom_show_speed(struct device *dev,
1642 struct device_attribute
1645 struct hid_device *hdev = to_hid_device(dev);
1646 struct wacom *wacom = hid_get_drvdata(hdev);
1648 return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
1651 static ssize_t wacom_store_speed(struct device *dev,
1652 struct device_attribute *attr,
1653 const char *buf, size_t count)
1655 struct hid_device *hdev = to_hid_device(dev);
1656 struct wacom *wacom = hid_get_drvdata(hdev);
1659 if (kstrtou8(buf, 0, &new_speed))
1662 if (new_speed != 0 && new_speed != 1)
1665 wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
1670 static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
1671 wacom_show_speed, wacom_store_speed);
1674 static ssize_t wacom_show_remote_mode(struct kobject *kobj,
1675 struct kobj_attribute *kattr,
1676 char *buf, int index)
1678 struct device *dev = kobj_to_dev(kobj->parent);
1679 struct hid_device *hdev = to_hid_device(dev);
1680 struct wacom *wacom = hid_get_drvdata(hdev);
1683 mode = wacom->led.groups[index].select;
1684 return sprintf(buf, "%d\n", mode < 3 ? mode : -1);
1687 #define DEVICE_EKR_ATTR_GROUP(SET_ID) \
1688 static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj, \
1689 struct kobj_attribute *kattr, char *buf) \
1691 return wacom_show_remote_mode(kobj, kattr, buf, SET_ID); \
1693 static struct kobj_attribute remote##SET_ID##_mode_attr = { \
1694 .attr = {.name = "remote_mode", \
1695 .mode = DEV_ATTR_RO_PERM}, \
1696 .show = wacom_show_remote##SET_ID##_mode, \
1698 static struct attribute *remote##SET_ID##_serial_attrs[] = { \
1699 &remote##SET_ID##_mode_attr.attr, \
1702 static struct attribute_group remote##SET_ID##_serial_group = { \
1704 .attrs = remote##SET_ID##_serial_attrs, \
1707 DEVICE_EKR_ATTR_GROUP(0);
1708 DEVICE_EKR_ATTR_GROUP(1);
1709 DEVICE_EKR_ATTR_GROUP(2);
1710 DEVICE_EKR_ATTR_GROUP(3);
1711 DEVICE_EKR_ATTR_GROUP(4);
1713 static int wacom_remote_create_attr_group(struct wacom *wacom, __u32 serial,
1717 struct wacom_remote *remote = wacom->remote;
1719 remote->remotes[index].group.name = devm_kasprintf(&wacom->hdev->dev,
1722 if (!remote->remotes[index].group.name)
1725 error = __wacom_devm_sysfs_create_group(wacom, remote->remote_dir,
1726 &remote->remotes[index].group);
1728 remote->remotes[index].group.name = NULL;
1729 hid_err(wacom->hdev,
1730 "cannot create sysfs group err: %d\n", error);
1737 static int wacom_cmd_unpair_remote(struct wacom *wacom, unsigned char selector)
1739 const size_t buf_size = 2;
1743 buf = kzalloc(buf_size, GFP_KERNEL);
1747 buf[0] = WAC_CMD_DELETE_PAIRING;
1750 retval = wacom_set_report(wacom->hdev, HID_OUTPUT_REPORT, buf,
1751 buf_size, WAC_CMD_RETRIES);
1757 static ssize_t wacom_store_unpair_remote(struct kobject *kobj,
1758 struct kobj_attribute *attr,
1759 const char *buf, size_t count)
1761 unsigned char selector = 0;
1762 struct device *dev = kobj_to_dev(kobj->parent);
1763 struct hid_device *hdev = to_hid_device(dev);
1764 struct wacom *wacom = hid_get_drvdata(hdev);
1767 if (!strncmp(buf, "*\n", 2)) {
1768 selector = WAC_CMD_UNPAIR_ALL;
1770 hid_info(wacom->hdev, "remote: unrecognized unpair code: %s\n",
1775 mutex_lock(&wacom->lock);
1777 err = wacom_cmd_unpair_remote(wacom, selector);
1778 mutex_unlock(&wacom->lock);
1780 return err < 0 ? err : count;
1783 static struct kobj_attribute unpair_remote_attr = {
1784 .attr = {.name = "unpair_remote", .mode = 0200},
1785 .store = wacom_store_unpair_remote,
1788 static const struct attribute *remote_unpair_attrs[] = {
1789 &unpair_remote_attr.attr,
1793 static void wacom_remotes_destroy(void *data)
1795 struct wacom *wacom = data;
1796 struct wacom_remote *remote = wacom->remote;
1801 kobject_put(remote->remote_dir);
1802 kfifo_free(&remote->remote_fifo);
1803 wacom->remote = NULL;
1806 static int wacom_initialize_remotes(struct wacom *wacom)
1809 struct wacom_remote *remote;
1812 if (wacom->wacom_wac.features.type != REMOTE)
1815 remote = devm_kzalloc(&wacom->hdev->dev, sizeof(*wacom->remote),
1820 wacom->remote = remote;
1822 spin_lock_init(&remote->remote_lock);
1824 error = kfifo_alloc(&remote->remote_fifo,
1825 5 * sizeof(struct wacom_remote_data),
1828 hid_err(wacom->hdev, "failed allocating remote_fifo\n");
1832 remote->remotes[0].group = remote0_serial_group;
1833 remote->remotes[1].group = remote1_serial_group;
1834 remote->remotes[2].group = remote2_serial_group;
1835 remote->remotes[3].group = remote3_serial_group;
1836 remote->remotes[4].group = remote4_serial_group;
1838 remote->remote_dir = kobject_create_and_add("wacom_remote",
1839 &wacom->hdev->dev.kobj);
1840 if (!remote->remote_dir)
1843 error = sysfs_create_files(remote->remote_dir, remote_unpair_attrs);
1846 hid_err(wacom->hdev,
1847 "cannot create sysfs group err: %d\n", error);
1851 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
1852 wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
1853 remote->remotes[i].serial = 0;
1856 error = devm_add_action_or_reset(&wacom->hdev->dev,
1857 wacom_remotes_destroy, wacom);
1864 static struct input_dev *wacom_allocate_input(struct wacom *wacom)
1866 struct input_dev *input_dev;
1867 struct hid_device *hdev = wacom->hdev;
1868 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1870 input_dev = devm_input_allocate_device(&hdev->dev);
1874 input_dev->name = wacom_wac->features.name;
1875 input_dev->phys = hdev->phys;
1876 input_dev->dev.parent = &hdev->dev;
1877 input_dev->open = wacom_open;
1878 input_dev->close = wacom_close;
1879 input_dev->uniq = hdev->uniq;
1880 input_dev->id.bustype = hdev->bus;
1881 input_dev->id.vendor = hdev->vendor;
1882 input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
1883 input_dev->id.version = hdev->version;
1884 input_set_drvdata(input_dev, wacom);
1889 static int wacom_allocate_inputs(struct wacom *wacom)
1891 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1893 wacom_wac->pen_input = wacom_allocate_input(wacom);
1894 wacom_wac->touch_input = wacom_allocate_input(wacom);
1895 wacom_wac->pad_input = wacom_allocate_input(wacom);
1896 if (!wacom_wac->pen_input ||
1897 !wacom_wac->touch_input ||
1898 !wacom_wac->pad_input)
1901 wacom_wac->pen_input->name = wacom_wac->pen_name;
1902 wacom_wac->touch_input->name = wacom_wac->touch_name;
1903 wacom_wac->pad_input->name = wacom_wac->pad_name;
1908 static int wacom_register_inputs(struct wacom *wacom)
1910 struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev;
1911 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1914 pen_input_dev = wacom_wac->pen_input;
1915 touch_input_dev = wacom_wac->touch_input;
1916 pad_input_dev = wacom_wac->pad_input;
1918 if (!pen_input_dev || !touch_input_dev || !pad_input_dev)
1921 error = wacom_setup_pen_input_capabilities(pen_input_dev, wacom_wac);
1923 /* no pen in use on this interface */
1924 input_free_device(pen_input_dev);
1925 wacom_wac->pen_input = NULL;
1926 pen_input_dev = NULL;
1928 error = input_register_device(pen_input_dev);
1933 error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac);
1935 /* no touch in use on this interface */
1936 input_free_device(touch_input_dev);
1937 wacom_wac->touch_input = NULL;
1938 touch_input_dev = NULL;
1940 error = input_register_device(touch_input_dev);
1945 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
1947 /* no pad in use on this interface */
1948 input_free_device(pad_input_dev);
1949 wacom_wac->pad_input = NULL;
1950 pad_input_dev = NULL;
1952 error = input_register_device(pad_input_dev);
1960 wacom_wac->pad_input = NULL;
1961 wacom_wac->touch_input = NULL;
1962 wacom_wac->pen_input = NULL;
1967 * Not all devices report physical dimensions from HID.
1968 * Compute the default from hardcoded logical dimension
1969 * and resolution before driver overwrites them.
1971 static void wacom_set_default_phy(struct wacom_features *features)
1973 if (features->x_resolution) {
1974 features->x_phy = (features->x_max * 100) /
1975 features->x_resolution;
1976 features->y_phy = (features->y_max * 100) /
1977 features->y_resolution;
1981 static void wacom_calculate_res(struct wacom_features *features)
1983 /* set unit to "100th of a mm" for devices not reported by HID */
1984 if (!features->unit) {
1985 features->unit = 0x11;
1986 features->unitExpo = -3;
1989 features->x_resolution = wacom_calc_hid_res(features->x_max,
1992 features->unitExpo);
1993 features->y_resolution = wacom_calc_hid_res(features->y_max,
1996 features->unitExpo);
1999 void wacom_battery_work(struct work_struct *work)
2001 struct wacom *wacom = container_of(work, struct wacom, battery_work);
2003 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
2004 !wacom->battery.battery) {
2005 wacom_initialize_battery(wacom);
2007 else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
2008 wacom->battery.battery) {
2009 wacom_destroy_battery(wacom);
2013 static size_t wacom_compute_pktlen(struct hid_device *hdev)
2015 struct hid_report_enum *report_enum;
2016 struct hid_report *report;
2019 report_enum = hdev->report_enum + HID_INPUT_REPORT;
2021 list_for_each_entry(report, &report_enum->report_list, list) {
2022 size_t report_size = hid_report_len(report);
2023 if (report_size > size)
2030 static void wacom_update_name(struct wacom *wacom, const char *suffix)
2032 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2033 struct wacom_features *features = &wacom_wac->features;
2034 char name[WACOM_NAME_MAX];
2036 /* Generic devices name unspecified */
2037 if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) {
2038 char *product_name = wacom->hdev->name;
2040 if (hid_is_using_ll_driver(wacom->hdev, &usb_hid_driver)) {
2041 struct usb_interface *intf = to_usb_interface(wacom->hdev->dev.parent);
2042 struct usb_device *dev = interface_to_usbdev(intf);
2043 product_name = dev->product;
2046 if (wacom->hdev->bus == BUS_I2C) {
2047 snprintf(name, sizeof(name), "%s %X",
2048 features->name, wacom->hdev->product);
2049 } else if (strstr(product_name, "Wacom") ||
2050 strstr(product_name, "wacom") ||
2051 strstr(product_name, "WACOM")) {
2052 strlcpy(name, product_name, sizeof(name));
2054 snprintf(name, sizeof(name), "Wacom %s", product_name);
2057 /* strip out excess whitespaces */
2059 char *gap = strstr(name, " ");
2062 /* shift everything including the terminator */
2063 memmove(gap, gap+1, strlen(gap));
2066 /* get rid of trailing whitespace */
2067 if (name[strlen(name)-1] == ' ')
2068 name[strlen(name)-1] = '\0';
2070 strlcpy(name, features->name, sizeof(name));
2073 snprintf(wacom_wac->name, sizeof(wacom_wac->name), "%s%s",
2076 /* Append the device type to the name */
2077 snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name),
2078 "%s%s Pen", name, suffix);
2079 snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name),
2080 "%s%s Finger", name, suffix);
2081 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
2082 "%s%s Pad", name, suffix);
2085 static void wacom_release_resources(struct wacom *wacom)
2087 struct hid_device *hdev = wacom->hdev;
2089 if (!wacom->resources)
2092 devres_release_group(&hdev->dev, wacom);
2094 wacom->resources = false;
2096 wacom->wacom_wac.pen_input = NULL;
2097 wacom->wacom_wac.touch_input = NULL;
2098 wacom->wacom_wac.pad_input = NULL;
2101 static void wacom_set_shared_values(struct wacom_wac *wacom_wac)
2103 if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH) {
2104 wacom_wac->shared->type = wacom_wac->features.type;
2105 wacom_wac->shared->touch_input = wacom_wac->touch_input;
2108 if (wacom_wac->has_mute_touch_switch) {
2109 wacom_wac->shared->has_mute_touch_switch = true;
2110 wacom_wac->shared->is_touch_on = true;
2113 if (wacom_wac->shared->has_mute_touch_switch &&
2114 wacom_wac->shared->touch_input) {
2115 set_bit(EV_SW, wacom_wac->shared->touch_input->evbit);
2116 input_set_capability(wacom_wac->shared->touch_input, EV_SW,
2121 static int wacom_parse_and_register(struct wacom *wacom, bool wireless)
2123 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2124 struct wacom_features *features = &wacom_wac->features;
2125 struct hid_device *hdev = wacom->hdev;
2127 unsigned int connect_mask = HID_CONNECT_HIDRAW;
2129 features->pktlen = wacom_compute_pktlen(hdev);
2130 if (features->pktlen > WACOM_PKGLEN_MAX)
2133 if (!devres_open_group(&hdev->dev, wacom, GFP_KERNEL))
2136 wacom->resources = true;
2138 error = wacom_allocate_inputs(wacom);
2143 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
2144 * into debug mode for the touch part.
2145 * We ignore the other interfaces.
2147 if (features->type == BAMBOO_PAD) {
2148 if (features->pktlen == WACOM_PKGLEN_PENABLED) {
2149 features->type = HID_GENERIC;
2150 } else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) &&
2151 (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) {
2157 /* set the default size in case we do not get them from hid */
2158 wacom_set_default_phy(features);
2160 /* Retrieve the physical and logical size for touch devices */
2161 wacom_retrieve_hid_descriptor(hdev, features);
2162 wacom_setup_device_quirks(wacom);
2164 if (features->device_type == WACOM_DEVICETYPE_NONE &&
2165 features->type != WIRELESS) {
2166 error = features->type == HID_GENERIC ? -ENODEV : 0;
2168 dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.",
2170 error ? "Ignoring" : "Assuming pen");
2175 features->device_type |= WACOM_DEVICETYPE_PEN;
2178 wacom_calculate_res(features);
2180 wacom_update_name(wacom, wireless ? " (WL)" : "");
2182 /* pen only Bamboo neither support touch nor pad */
2183 if ((features->type == BAMBOO_PEN) &&
2184 ((features->device_type & WACOM_DEVICETYPE_TOUCH) ||
2185 (features->device_type & WACOM_DEVICETYPE_PAD))) {
2190 error = wacom_add_shared_data(hdev);
2194 if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) &&
2195 (features->quirks & WACOM_QUIRK_BATTERY)) {
2196 error = wacom_initialize_battery(wacom);
2201 error = wacom_register_inputs(wacom);
2205 if (wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD) {
2206 error = wacom_initialize_leds(wacom);
2210 error = wacom_initialize_remotes(wacom);
2215 if (features->type == HID_GENERIC)
2216 connect_mask |= HID_CONNECT_DRIVER;
2218 /* Regular HID work starts now */
2219 error = hid_hw_start(hdev, connect_mask);
2221 hid_err(hdev, "hw start failed\n");
2226 /* Note that if query fails it is not a hard failure */
2227 wacom_query_tablet_data(wacom);
2230 /* touch only Bamboo doesn't support pen */
2231 if ((features->type == BAMBOO_TOUCH) &&
2232 (features->device_type & WACOM_DEVICETYPE_PEN)) {
2233 cancel_delayed_work_sync(&wacom->init_work);
2234 _wacom_query_tablet_data(wacom);
2239 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
2240 error = hid_hw_open(hdev);
2242 wacom_set_shared_values(wacom_wac);
2243 devres_close_group(&hdev->dev, wacom);
2250 wacom_release_resources(wacom);
2254 static void wacom_wireless_work(struct work_struct *work)
2256 struct wacom *wacom = container_of(work, struct wacom, wireless_work);
2257 struct usb_device *usbdev = wacom->usbdev;
2258 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2259 struct hid_device *hdev1, *hdev2;
2260 struct wacom *wacom1, *wacom2;
2261 struct wacom_wac *wacom_wac1, *wacom_wac2;
2265 * Regardless if this is a disconnect or a new tablet,
2266 * remove any existing input and battery devices.
2269 wacom_destroy_battery(wacom);
2271 /* Stylus interface */
2272 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
2273 wacom1 = hid_get_drvdata(hdev1);
2274 wacom_wac1 = &(wacom1->wacom_wac);
2275 wacom_release_resources(wacom1);
2277 /* Touch interface */
2278 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
2279 wacom2 = hid_get_drvdata(hdev2);
2280 wacom_wac2 = &(wacom2->wacom_wac);
2281 wacom_release_resources(wacom2);
2283 if (wacom_wac->pid == 0) {
2284 hid_info(wacom->hdev, "wireless tablet disconnected\n");
2286 const struct hid_device_id *id = wacom_ids;
2288 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
2292 if (id->vendor == USB_VENDOR_ID_WACOM &&
2293 id->product == wacom_wac->pid)
2299 hid_info(wacom->hdev, "ignoring unknown PID.\n");
2303 /* Stylus interface */
2304 wacom_wac1->features =
2305 *((struct wacom_features *)id->driver_data);
2307 wacom_wac1->pid = wacom_wac->pid;
2309 error = wacom_parse_and_register(wacom1, true);
2313 /* Touch interface */
2314 if (wacom_wac1->features.touch_max ||
2315 (wacom_wac1->features.type >= INTUOSHT &&
2316 wacom_wac1->features.type <= BAMBOO_PT)) {
2317 wacom_wac2->features =
2318 *((struct wacom_features *)id->driver_data);
2319 wacom_wac2->pid = wacom_wac->pid;
2321 error = wacom_parse_and_register(wacom2, true);
2326 strlcpy(wacom_wac->name, wacom_wac1->name,
2327 sizeof(wacom_wac->name));
2328 error = wacom_initialize_battery(wacom);
2336 wacom_release_resources(wacom1);
2337 wacom_release_resources(wacom2);
2341 static void wacom_remote_destroy_one(struct wacom *wacom, unsigned int index)
2343 struct wacom_remote *remote = wacom->remote;
2344 u32 serial = remote->remotes[index].serial;
2346 unsigned long flags;
2348 spin_lock_irqsave(&remote->remote_lock, flags);
2349 remote->remotes[index].registered = false;
2350 spin_unlock_irqrestore(&remote->remote_lock, flags);
2352 if (remote->remotes[index].battery.battery)
2353 devres_release_group(&wacom->hdev->dev,
2354 &remote->remotes[index].battery.bat_desc);
2356 if (remote->remotes[index].group.name)
2357 devres_release_group(&wacom->hdev->dev,
2358 &remote->remotes[index]);
2360 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
2361 if (remote->remotes[i].serial == serial) {
2362 remote->remotes[i].serial = 0;
2363 remote->remotes[i].group.name = NULL;
2364 remote->remotes[i].registered = false;
2365 remote->remotes[i].battery.battery = NULL;
2366 wacom->led.groups[i].select = WACOM_STATUS_UNKNOWN;
2371 static int wacom_remote_create_one(struct wacom *wacom, u32 serial,
2374 struct wacom_remote *remote = wacom->remote;
2375 struct device *dev = &wacom->hdev->dev;
2378 /* A remote can pair more than once with an EKR,
2379 * check to make sure this serial isn't already paired.
2381 for (k = 0; k < WACOM_MAX_REMOTES; k++) {
2382 if (remote->remotes[k].serial == serial)
2386 if (k < WACOM_MAX_REMOTES) {
2387 remote->remotes[index].serial = serial;
2391 if (!devres_open_group(dev, &remote->remotes[index], GFP_KERNEL))
2394 error = wacom_remote_create_attr_group(wacom, serial, index);
2398 remote->remotes[index].input = wacom_allocate_input(wacom);
2399 if (!remote->remotes[index].input) {
2403 remote->remotes[index].input->uniq = remote->remotes[index].group.name;
2404 remote->remotes[index].input->name = wacom->wacom_wac.pad_name;
2406 if (!remote->remotes[index].input->name) {
2411 error = wacom_setup_pad_input_capabilities(remote->remotes[index].input,
2416 remote->remotes[index].serial = serial;
2418 error = input_register_device(remote->remotes[index].input);
2422 error = wacom_led_groups_alloc_and_register_one(
2423 &remote->remotes[index].input->dev,
2424 wacom, index, 3, true);
2428 remote->remotes[index].registered = true;
2430 devres_close_group(dev, &remote->remotes[index]);
2434 devres_release_group(dev, &remote->remotes[index]);
2435 remote->remotes[index].serial = 0;
2439 static int wacom_remote_attach_battery(struct wacom *wacom, int index)
2441 struct wacom_remote *remote = wacom->remote;
2444 if (!remote->remotes[index].registered)
2447 if (remote->remotes[index].battery.battery)
2450 if (wacom->led.groups[index].select == WACOM_STATUS_UNKNOWN)
2453 error = __wacom_initialize_battery(wacom,
2454 &wacom->remote->remotes[index].battery);
2461 static void wacom_remote_work(struct work_struct *work)
2463 struct wacom *wacom = container_of(work, struct wacom, remote_work);
2464 struct wacom_remote *remote = wacom->remote;
2465 struct wacom_remote_data data;
2466 unsigned long flags;
2471 spin_lock_irqsave(&remote->remote_lock, flags);
2473 count = kfifo_out(&remote->remote_fifo, &data, sizeof(data));
2475 if (count != sizeof(data)) {
2476 hid_err(wacom->hdev,
2477 "workitem triggered without status available\n");
2478 spin_unlock_irqrestore(&remote->remote_lock, flags);
2482 if (!kfifo_is_empty(&remote->remote_fifo))
2483 wacom_schedule_work(&wacom->wacom_wac, WACOM_WORKER_REMOTE);
2485 spin_unlock_irqrestore(&remote->remote_lock, flags);
2487 for (i = 0; i < WACOM_MAX_REMOTES; i++) {
2488 serial = data.remote[i].serial;
2489 if (data.remote[i].connected) {
2491 if (remote->remotes[i].serial == serial) {
2492 wacom_remote_attach_battery(wacom, i);
2496 if (remote->remotes[i].serial)
2497 wacom_remote_destroy_one(wacom, i);
2499 wacom_remote_create_one(wacom, serial, i);
2501 } else if (remote->remotes[i].serial) {
2502 wacom_remote_destroy_one(wacom, i);
2507 static void wacom_mode_change_work(struct work_struct *work)
2509 struct wacom *wacom = container_of(work, struct wacom, mode_change_work);
2510 struct wacom_shared *shared = wacom->wacom_wac.shared;
2511 struct wacom *wacom1 = NULL;
2512 struct wacom *wacom2 = NULL;
2513 bool is_direct = wacom->wacom_wac.is_direct_mode;
2517 wacom1 = hid_get_drvdata(shared->pen);
2518 wacom_release_resources(wacom1);
2519 hid_hw_stop(wacom1->hdev);
2520 wacom1->wacom_wac.has_mode_change = true;
2521 wacom1->wacom_wac.is_direct_mode = is_direct;
2524 if (shared->touch) {
2525 wacom2 = hid_get_drvdata(shared->touch);
2526 wacom_release_resources(wacom2);
2527 hid_hw_stop(wacom2->hdev);
2528 wacom2->wacom_wac.has_mode_change = true;
2529 wacom2->wacom_wac.is_direct_mode = is_direct;
2533 error = wacom_parse_and_register(wacom1, false);
2539 error = wacom_parse_and_register(wacom2, false);
2547 static int wacom_probe(struct hid_device *hdev,
2548 const struct hid_device_id *id)
2550 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
2551 struct usb_device *dev = interface_to_usbdev(intf);
2552 struct wacom *wacom;
2553 struct wacom_wac *wacom_wac;
2554 struct wacom_features *features;
2557 if (!id->driver_data)
2560 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
2562 /* hid-core sets this quirk for the boot interface */
2563 hdev->quirks &= ~HID_QUIRK_NOGET;
2565 wacom = devm_kzalloc(&hdev->dev, sizeof(struct wacom), GFP_KERNEL);
2569 hid_set_drvdata(hdev, wacom);
2572 wacom_wac = &wacom->wacom_wac;
2573 wacom_wac->features = *((struct wacom_features *)id->driver_data);
2574 features = &wacom_wac->features;
2576 if (features->check_for_hid_type && features->hid_type != hdev->type) {
2581 wacom_wac->hid_data.inputmode = -1;
2582 wacom_wac->mode_report = -1;
2584 wacom->usbdev = dev;
2586 mutex_init(&wacom->lock);
2587 INIT_DELAYED_WORK(&wacom->init_work, wacom_init_work);
2588 INIT_WORK(&wacom->wireless_work, wacom_wireless_work);
2589 INIT_WORK(&wacom->battery_work, wacom_battery_work);
2590 INIT_WORK(&wacom->remote_work, wacom_remote_work);
2591 INIT_WORK(&wacom->mode_change_work, wacom_mode_change_work);
2593 /* ask for the report descriptor to be loaded by HID */
2594 error = hid_parse(hdev);
2596 hid_err(hdev, "parse failed\n");
2600 error = wacom_parse_and_register(wacom, false);
2604 if (hdev->bus == BUS_BLUETOOTH) {
2605 error = device_create_file(&hdev->dev, &dev_attr_speed);
2608 "can't create sysfs speed attribute err: %d\n",
2615 hid_set_drvdata(hdev, NULL);
2619 static void wacom_remove(struct hid_device *hdev)
2621 struct wacom *wacom = hid_get_drvdata(hdev);
2622 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
2623 struct wacom_features *features = &wacom_wac->features;
2625 if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
2630 cancel_delayed_work_sync(&wacom->init_work);
2631 cancel_work_sync(&wacom->wireless_work);
2632 cancel_work_sync(&wacom->battery_work);
2633 cancel_work_sync(&wacom->remote_work);
2634 cancel_work_sync(&wacom->mode_change_work);
2635 if (hdev->bus == BUS_BLUETOOTH)
2636 device_remove_file(&hdev->dev, &dev_attr_speed);
2638 /* make sure we don't trigger the LEDs */
2639 wacom_led_groups_release(wacom);
2641 if (wacom->wacom_wac.features.type != REMOTE)
2642 wacom_release_resources(wacom);
2644 hid_set_drvdata(hdev, NULL);
2648 static int wacom_resume(struct hid_device *hdev)
2650 struct wacom *wacom = hid_get_drvdata(hdev);
2652 mutex_lock(&wacom->lock);
2654 /* switch to wacom mode first */
2655 _wacom_query_tablet_data(wacom);
2656 wacom_led_control(wacom);
2658 mutex_unlock(&wacom->lock);
2663 static int wacom_reset_resume(struct hid_device *hdev)
2665 return wacom_resume(hdev);
2667 #endif /* CONFIG_PM */
2669 static struct hid_driver wacom_driver = {
2671 .id_table = wacom_ids,
2672 .probe = wacom_probe,
2673 .remove = wacom_remove,
2674 .report = wacom_wac_report,
2676 .resume = wacom_resume,
2677 .reset_resume = wacom_reset_resume,
2679 .raw_event = wacom_raw_event,
2681 module_hid_driver(wacom_driver);
2683 MODULE_VERSION(DRIVER_VERSION);
2684 MODULE_AUTHOR(DRIVER_AUTHOR);
2685 MODULE_DESCRIPTION(DRIVER_DESC);
2686 MODULE_LICENSE("GPL");