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
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 #define WAC_CMD_DELETE_PAIRING 0x20
27 #define WAC_CMD_UNPAIR_ALL 0xFF
29 #define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
30 #define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)
31 #define DEV_ATTR_RO_PERM (S_IRUSR | S_IRGRP)
33 static int wacom_get_report(struct hid_device
*hdev
, u8 type
, u8
*buf
,
34 size_t size
, unsigned int retries
)
39 retval
= hid_hw_raw_request(hdev
, buf
[0], buf
, size
, type
,
41 } while ((retval
== -ETIMEDOUT
|| retval
== -EAGAIN
) && --retries
);
44 hid_err(hdev
, "wacom_get_report: ran out of retries "
45 "(last error = %d)\n", retval
);
50 static int wacom_set_report(struct hid_device
*hdev
, u8 type
, u8
*buf
,
51 size_t size
, unsigned int retries
)
56 retval
= hid_hw_raw_request(hdev
, buf
[0], buf
, size
, type
,
58 } while ((retval
== -ETIMEDOUT
|| retval
== -EAGAIN
) && --retries
);
61 hid_err(hdev
, "wacom_set_report: ran out of retries "
62 "(last error = %d)\n", retval
);
67 static int wacom_raw_event(struct hid_device
*hdev
, struct hid_report
*report
,
68 u8
*raw_data
, int size
)
70 struct wacom
*wacom
= hid_get_drvdata(hdev
);
72 if (size
> WACOM_PKGLEN_MAX
)
75 memcpy(wacom
->wacom_wac
.data
, raw_data
, size
);
77 wacom_wac_irq(&wacom
->wacom_wac
, size
);
82 static int wacom_open(struct input_dev
*dev
)
84 struct wacom
*wacom
= input_get_drvdata(dev
);
86 return hid_hw_open(wacom
->hdev
);
89 static void wacom_close(struct input_dev
*dev
)
91 struct wacom
*wacom
= input_get_drvdata(dev
);
94 * wacom->hdev should never be null, but surprisingly, I had the case
95 * once while unplugging the Wacom Wireless Receiver.
98 hid_hw_close(wacom
->hdev
);
102 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
104 static int wacom_calc_hid_res(int logical_extents
, int physical_extents
,
105 unsigned unit
, int exponent
)
107 struct hid_field field
= {
108 .logical_maximum
= logical_extents
,
109 .physical_maximum
= physical_extents
,
111 .unit_exponent
= exponent
,
114 return hidinput_calc_abs_res(&field
, ABS_X
);
117 static void wacom_feature_mapping(struct hid_device
*hdev
,
118 struct hid_field
*field
, struct hid_usage
*usage
)
120 struct wacom
*wacom
= hid_get_drvdata(hdev
);
121 struct wacom_features
*features
= &wacom
->wacom_wac
.features
;
122 struct hid_data
*hid_data
= &wacom
->wacom_wac
.hid_data
;
127 switch (usage
->hid
) {
128 case HID_DG_CONTACTMAX
:
129 /* leave touch_max as is if predefined */
130 if (!features
->touch_max
) {
132 data
= kzalloc(2, GFP_KERNEL
);
135 data
[0] = field
->report
->id
;
136 ret
= wacom_get_report(hdev
, HID_FEATURE_REPORT
,
137 data
, 2, WAC_CMD_RETRIES
);
139 features
->touch_max
= data
[1];
141 features
->touch_max
= 16;
142 hid_warn(hdev
, "wacom_feature_mapping: "
143 "could not get HID_DG_CONTACTMAX, "
144 "defaulting to %d\n",
145 features
->touch_max
);
150 case HID_DG_INPUTMODE
:
151 /* Ignore if value index is out of bounds. */
152 if (usage
->usage_index
>= field
->report_count
) {
153 dev_err(&hdev
->dev
, "HID_DG_INPUTMODE out of range\n");
157 hid_data
->inputmode
= field
->report
->id
;
158 hid_data
->inputmode_index
= usage
->usage_index
;
161 case HID_UP_DIGITIZER
:
162 if (field
->report
->id
== 0x0B &&
163 (field
->application
== WACOM_HID_G9_PEN
||
164 field
->application
== WACOM_HID_G11_PEN
)) {
165 wacom
->wacom_wac
.mode_report
= field
->report
->id
;
166 wacom
->wacom_wac
.mode_value
= 0;
170 case WACOM_HID_WD_DATAMODE
:
171 wacom
->wacom_wac
.mode_report
= field
->report
->id
;
172 wacom
->wacom_wac
.mode_value
= 2;
175 case WACOM_HID_UP_G9
:
176 case WACOM_HID_UP_G11
:
177 if (field
->report
->id
== 0x03 &&
178 (field
->application
== WACOM_HID_G9_TOUCHSCREEN
||
179 field
->application
== WACOM_HID_G11_TOUCHSCREEN
)) {
180 wacom
->wacom_wac
.mode_report
= field
->report
->id
;
181 wacom
->wacom_wac
.mode_value
= 0;
184 case WACOM_HID_WD_OFFSETLEFT
:
185 case WACOM_HID_WD_OFFSETTOP
:
186 case WACOM_HID_WD_OFFSETRIGHT
:
187 case WACOM_HID_WD_OFFSETBOTTOM
:
189 n
= hid_report_len(field
->report
);
190 data
= hid_alloc_report_buf(field
->report
, GFP_KERNEL
);
193 data
[0] = field
->report
->id
;
194 ret
= wacom_get_report(hdev
, HID_FEATURE_REPORT
,
195 data
, n
, WAC_CMD_RETRIES
);
197 ret
= hid_report_raw_event(hdev
, HID_FEATURE_REPORT
,
200 hid_warn(hdev
, "%s: could not retrieve sensor offsets\n",
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 (features
->touch_max
> 1) {
336 input_mt_init_slots(wacom_wac
->touch_input
, wacom_wac
->features
.touch_max
,
342 static void wacom_parse_hid(struct hid_device
*hdev
,
343 struct wacom_features
*features
)
345 struct hid_report_enum
*rep_enum
;
346 struct hid_report
*hreport
;
349 /* check features first */
350 rep_enum
= &hdev
->report_enum
[HID_FEATURE_REPORT
];
351 list_for_each_entry(hreport
, &rep_enum
->report_list
, list
) {
352 for (i
= 0; i
< hreport
->maxfield
; i
++) {
353 /* Ignore if report count is out of bounds. */
354 if (hreport
->field
[i
]->report_count
< 1)
357 for (j
= 0; j
< hreport
->field
[i
]->maxusage
; j
++) {
358 wacom_feature_mapping(hdev
, hreport
->field
[i
],
359 hreport
->field
[i
]->usage
+ j
);
364 /* now check the input usages */
365 rep_enum
= &hdev
->report_enum
[HID_INPUT_REPORT
];
366 list_for_each_entry(hreport
, &rep_enum
->report_list
, list
) {
368 if (!hreport
->maxfield
)
371 for (i
= 0; i
< hreport
->maxfield
; i
++)
372 for (j
= 0; j
< hreport
->field
[i
]->maxusage
; j
++)
373 wacom_usage_mapping(hdev
, hreport
->field
[i
],
374 hreport
->field
[i
]->usage
+ j
);
377 wacom_post_parse_hid(hdev
, features
);
380 static int wacom_hid_set_device_mode(struct hid_device
*hdev
)
382 struct wacom
*wacom
= hid_get_drvdata(hdev
);
383 struct hid_data
*hid_data
= &wacom
->wacom_wac
.hid_data
;
384 struct hid_report
*r
;
385 struct hid_report_enum
*re
;
387 if (hid_data
->inputmode
< 0)
390 re
= &(hdev
->report_enum
[HID_FEATURE_REPORT
]);
391 r
= re
->report_id_hash
[hid_data
->inputmode
];
393 r
->field
[0]->value
[hid_data
->inputmode_index
] = 2;
394 hid_hw_request(hdev
, r
, HID_REQ_SET_REPORT
);
399 static int wacom_set_device_mode(struct hid_device
*hdev
,
400 struct wacom_wac
*wacom_wac
)
403 struct hid_report
*r
;
404 struct hid_report_enum
*re
;
406 int error
= -ENOMEM
, limit
= 0;
408 if (wacom_wac
->mode_report
< 0)
411 re
= &(hdev
->report_enum
[HID_FEATURE_REPORT
]);
412 r
= re
->report_id_hash
[wacom_wac
->mode_report
];
416 rep_data
= hid_alloc_report_buf(r
, GFP_KERNEL
);
420 length
= hid_report_len(r
);
423 rep_data
[0] = wacom_wac
->mode_report
;
424 rep_data
[1] = wacom_wac
->mode_value
;
426 error
= wacom_set_report(hdev
, HID_FEATURE_REPORT
, rep_data
,
429 error
= wacom_get_report(hdev
, HID_FEATURE_REPORT
,
430 rep_data
, length
, 1);
431 } while (error
>= 0 &&
432 rep_data
[1] != wacom_wac
->mode_report
&&
433 limit
++ < WAC_MSG_RETRIES
);
437 return error
< 0 ? error
: 0;
440 static int wacom_bt_query_tablet_data(struct hid_device
*hdev
, u8 speed
,
441 struct wacom_features
*features
)
443 struct wacom
*wacom
= hid_get_drvdata(hdev
);
447 switch (features
->type
) {
451 ret
= wacom_set_report(hdev
, HID_FEATURE_REPORT
, rep_data
, 2,
455 rep_data
[0] = speed
== 0 ? 0x05 : 0x06;
458 ret
= wacom_set_report(hdev
, HID_FEATURE_REPORT
,
462 wacom
->wacom_wac
.bt_high_speed
= speed
;
468 * Note that if the raw queries fail, it's not a hard failure
469 * and it is safe to continue
471 hid_warn(hdev
, "failed to poke device, command %d, err %d\n",
476 wacom
->wacom_wac
.bt_features
&= ~0x20;
478 wacom
->wacom_wac
.bt_features
|= 0x20;
481 rep_data
[1] = wacom
->wacom_wac
.bt_features
;
483 ret
= wacom_set_report(hdev
, HID_FEATURE_REPORT
, rep_data
, 2,
486 wacom
->wacom_wac
.bt_high_speed
= speed
;
494 * Switch the tablet into its most-capable mode. Wacom tablets are
495 * typically configured to power-up in a mode which sends mouse-like
496 * reports to the OS. To get absolute position, pressure data, etc.
497 * from the tablet, it is necessary to switch the tablet out of this
498 * mode and into one which sends the full range of tablet data.
500 static int wacom_query_tablet_data(struct hid_device
*hdev
,
501 struct wacom_features
*features
)
503 struct wacom
*wacom
= hid_get_drvdata(hdev
);
504 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
506 if (hdev
->bus
== BUS_BLUETOOTH
)
507 return wacom_bt_query_tablet_data(hdev
, 1, features
);
509 if (features
->type
!= HID_GENERIC
) {
510 if (features
->device_type
& WACOM_DEVICETYPE_TOUCH
) {
511 if (features
->type
> TABLETPC
) {
512 /* MT Tablet PC touch */
513 wacom_wac
->mode_report
= 3;
514 wacom_wac
->mode_value
= 4;
515 } else if (features
->type
== WACOM_24HDT
) {
516 wacom_wac
->mode_report
= 18;
517 wacom_wac
->mode_value
= 2;
518 } else if (features
->type
== WACOM_27QHDT
) {
519 wacom_wac
->mode_report
= 131;
520 wacom_wac
->mode_value
= 2;
521 } else if (features
->type
== BAMBOO_PAD
) {
522 wacom_wac
->mode_report
= 2;
523 wacom_wac
->mode_value
= 2;
525 } else if (features
->device_type
& WACOM_DEVICETYPE_PEN
) {
526 if (features
->type
<= BAMBOO_PT
) {
527 wacom_wac
->mode_report
= 2;
528 wacom_wac
->mode_value
= 2;
533 wacom_set_device_mode(hdev
, wacom_wac
);
535 if (features
->type
== HID_GENERIC
)
536 return wacom_hid_set_device_mode(hdev
);
541 static void wacom_retrieve_hid_descriptor(struct hid_device
*hdev
,
542 struct wacom_features
*features
)
544 struct wacom
*wacom
= hid_get_drvdata(hdev
);
545 struct usb_interface
*intf
= wacom
->intf
;
547 /* default features */
548 features
->x_fuzz
= 4;
549 features
->y_fuzz
= 4;
550 features
->pressure_fuzz
= 0;
551 features
->distance_fuzz
= 1;
552 features
->tilt_fuzz
= 1;
555 * The wireless device HID is basic and layout conflicts with
556 * other tablets (monitor and touch interface can look like pen).
557 * Skip the query for this type and modify defaults based on
560 if (features
->type
== WIRELESS
) {
561 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
== 0)
562 features
->device_type
= WACOM_DEVICETYPE_WL_MONITOR
;
564 features
->device_type
= WACOM_DEVICETYPE_NONE
;
568 wacom_parse_hid(hdev
, features
);
571 struct wacom_hdev_data
{
572 struct list_head list
;
574 struct hid_device
*dev
;
575 struct wacom_shared shared
;
578 static LIST_HEAD(wacom_udev_list
);
579 static DEFINE_MUTEX(wacom_udev_list_lock
);
581 static bool compare_device_paths(struct hid_device
*hdev_a
,
582 struct hid_device
*hdev_b
, char separator
)
584 int n1
= strrchr(hdev_a
->phys
, separator
) - hdev_a
->phys
;
585 int n2
= strrchr(hdev_b
->phys
, separator
) - hdev_b
->phys
;
587 if (n1
!= n2
|| n1
<= 0 || n2
<= 0)
590 return !strncmp(hdev_a
->phys
, hdev_b
->phys
, n1
);
593 static bool wacom_are_sibling(struct hid_device
*hdev
,
594 struct hid_device
*sibling
)
596 struct wacom
*wacom
= hid_get_drvdata(hdev
);
597 struct wacom_features
*features
= &wacom
->wacom_wac
.features
;
598 struct wacom
*sibling_wacom
= hid_get_drvdata(sibling
);
599 struct wacom_features
*sibling_features
= &sibling_wacom
->wacom_wac
.features
;
600 __u32 oVid
= features
->oVid
? features
->oVid
: hdev
->vendor
;
601 __u32 oPid
= features
->oPid
? features
->oPid
: hdev
->product
;
603 /* The defined oVid/oPid must match that of the sibling */
604 if (features
->oVid
!= HID_ANY_ID
&& sibling
->vendor
!= oVid
)
606 if (features
->oPid
!= HID_ANY_ID
&& sibling
->product
!= oPid
)
610 * Devices with the same VID/PID must share the same physical
611 * device path, while those with different VID/PID must share
612 * the same physical parent device path.
614 if (hdev
->vendor
== sibling
->vendor
&& hdev
->product
== sibling
->product
) {
615 if (!compare_device_paths(hdev
, sibling
, '/'))
618 if (!compare_device_paths(hdev
, sibling
, '.'))
622 /* Skip the remaining heuristics unless you are a HID_GENERIC device */
623 if (features
->type
!= HID_GENERIC
)
627 * Direct-input devices may not be siblings of indirect-input
630 if ((features
->device_type
& WACOM_DEVICETYPE_DIRECT
) &&
631 !(sibling_features
->device_type
& WACOM_DEVICETYPE_DIRECT
))
635 * Indirect-input devices may not be siblings of direct-input
638 if (!(features
->device_type
& WACOM_DEVICETYPE_DIRECT
) &&
639 (sibling_features
->device_type
& WACOM_DEVICETYPE_DIRECT
))
642 /* Pen devices may only be siblings of touch devices */
643 if ((features
->device_type
& WACOM_DEVICETYPE_PEN
) &&
644 !(sibling_features
->device_type
& WACOM_DEVICETYPE_TOUCH
))
647 /* Touch devices may only be siblings of pen devices */
648 if ((features
->device_type
& WACOM_DEVICETYPE_TOUCH
) &&
649 !(sibling_features
->device_type
& WACOM_DEVICETYPE_PEN
))
653 * No reason could be found for these two devices to NOT be
654 * siblings, so there's a good chance they ARE siblings
659 static struct wacom_hdev_data
*wacom_get_hdev_data(struct hid_device
*hdev
)
661 struct wacom_hdev_data
*data
;
663 /* Try to find an already-probed interface from the same device */
664 list_for_each_entry(data
, &wacom_udev_list
, list
) {
665 if (compare_device_paths(hdev
, data
->dev
, '/'))
669 /* Fallback to finding devices that appear to be "siblings" */
670 list_for_each_entry(data
, &wacom_udev_list
, list
) {
671 if (wacom_are_sibling(hdev
, data
->dev
)) {
672 kref_get(&data
->kref
);
680 static void wacom_release_shared_data(struct kref
*kref
)
682 struct wacom_hdev_data
*data
=
683 container_of(kref
, struct wacom_hdev_data
, kref
);
685 mutex_lock(&wacom_udev_list_lock
);
686 list_del(&data
->list
);
687 mutex_unlock(&wacom_udev_list_lock
);
692 static void wacom_remove_shared_data(void *res
)
694 struct wacom
*wacom
= res
;
695 struct wacom_hdev_data
*data
;
696 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
698 if (wacom_wac
->shared
) {
699 data
= container_of(wacom_wac
->shared
, struct wacom_hdev_data
,
702 if (wacom_wac
->shared
->touch
== wacom
->hdev
)
703 wacom_wac
->shared
->touch
= NULL
;
704 else if (wacom_wac
->shared
->pen
== wacom
->hdev
)
705 wacom_wac
->shared
->pen
= NULL
;
707 kref_put(&data
->kref
, wacom_release_shared_data
);
708 wacom_wac
->shared
= NULL
;
712 static int wacom_add_shared_data(struct hid_device
*hdev
)
714 struct wacom
*wacom
= hid_get_drvdata(hdev
);
715 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
716 struct wacom_hdev_data
*data
;
719 mutex_lock(&wacom_udev_list_lock
);
721 data
= wacom_get_hdev_data(hdev
);
723 data
= kzalloc(sizeof(struct wacom_hdev_data
), GFP_KERNEL
);
729 kref_init(&data
->kref
);
731 list_add_tail(&data
->list
, &wacom_udev_list
);
734 wacom_wac
->shared
= &data
->shared
;
736 retval
= devm_add_action(&hdev
->dev
, wacom_remove_shared_data
, wacom
);
738 mutex_unlock(&wacom_udev_list_lock
);
739 wacom_remove_shared_data(wacom
);
744 mutex_unlock(&wacom_udev_list_lock
);
748 static int wacom_led_control(struct wacom
*wacom
)
752 unsigned char report_id
= WAC_CMD_LED_CONTROL
;
755 if (!hid_get_drvdata(wacom
->hdev
))
758 if (!wacom
->led
.groups
)
761 if (wacom
->wacom_wac
.pid
) { /* wireless connected */
762 report_id
= WAC_CMD_WL_LED_CONTROL
;
765 buf
= kzalloc(buf_size
, GFP_KERNEL
);
769 if (wacom
->wacom_wac
.features
.type
>= INTUOS5S
&&
770 wacom
->wacom_wac
.features
.type
<= INTUOSPL
) {
772 * Touch Ring and crop mark LED luminance may take on
773 * one of four values:
774 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
776 int ring_led
= wacom
->led
.groups
[0].select
& 0x03;
777 int ring_lum
= (((wacom
->led
.llv
& 0x60) >> 5) - 1) & 0x03;
779 unsigned char led_bits
= (crop_lum
<< 4) | (ring_lum
<< 2) | (ring_led
);
782 if (wacom
->wacom_wac
.pid
) {
783 wacom_get_report(wacom
->hdev
, HID_FEATURE_REPORT
,
784 buf
, buf_size
, WAC_CMD_RETRIES
);
791 int led
= wacom
->led
.groups
[0].select
| 0x4;
793 if (wacom
->wacom_wac
.features
.type
== WACOM_21UX2
||
794 wacom
->wacom_wac
.features
.type
== WACOM_24HD
)
795 led
|= (wacom
->led
.groups
[1].select
<< 4) | 0x40;
799 buf
[2] = wacom
->led
.llv
;
800 buf
[3] = wacom
->led
.hlv
;
801 buf
[4] = wacom
->led
.img_lum
;
804 retval
= wacom_set_report(wacom
->hdev
, HID_FEATURE_REPORT
, buf
, buf_size
,
811 static int wacom_led_putimage(struct wacom
*wacom
, int button_id
, u8 xfer_id
,
812 const unsigned len
, const void *img
)
816 const unsigned chunk_len
= len
/ 4; /* 4 chunks are needed to be sent */
818 buf
= kzalloc(chunk_len
+ 3 , GFP_KERNEL
);
822 /* Send 'start' command */
823 buf
[0] = WAC_CMD_ICON_START
;
825 retval
= wacom_set_report(wacom
->hdev
, HID_FEATURE_REPORT
, buf
, 2,
831 buf
[1] = button_id
& 0x07;
832 for (i
= 0; i
< 4; i
++) {
834 memcpy(buf
+ 3, img
+ i
* chunk_len
, chunk_len
);
836 retval
= wacom_set_report(wacom
->hdev
, HID_FEATURE_REPORT
,
837 buf
, chunk_len
+ 3, WAC_CMD_RETRIES
);
843 buf
[0] = WAC_CMD_ICON_START
;
845 wacom_set_report(wacom
->hdev
, HID_FEATURE_REPORT
, buf
, 2,
853 static ssize_t
wacom_led_select_store(struct device
*dev
, int set_id
,
854 const char *buf
, size_t count
)
856 struct hid_device
*hdev
= to_hid_device(dev
);
857 struct wacom
*wacom
= hid_get_drvdata(hdev
);
861 err
= kstrtouint(buf
, 10, &id
);
865 mutex_lock(&wacom
->lock
);
867 wacom
->led
.groups
[set_id
].select
= id
& 0x3;
868 err
= wacom_led_control(wacom
);
870 mutex_unlock(&wacom
->lock
);
872 return err
< 0 ? err
: count
;
875 #define DEVICE_LED_SELECT_ATTR(SET_ID) \
876 static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
877 struct device_attribute *attr, const char *buf, size_t count) \
879 return wacom_led_select_store(dev, SET_ID, buf, count); \
881 static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
882 struct device_attribute *attr, char *buf) \
884 struct hid_device *hdev = to_hid_device(dev);\
885 struct wacom *wacom = hid_get_drvdata(hdev); \
886 return scnprintf(buf, PAGE_SIZE, "%d\n", \
887 wacom->led.groups[SET_ID].select); \
889 static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
890 wacom_led##SET_ID##_select_show, \
891 wacom_led##SET_ID##_select_store)
893 DEVICE_LED_SELECT_ATTR(0);
894 DEVICE_LED_SELECT_ATTR(1);
896 static ssize_t
wacom_luminance_store(struct wacom
*wacom
, u8
*dest
,
897 const char *buf
, size_t count
)
902 err
= kstrtouint(buf
, 10, &value
);
906 mutex_lock(&wacom
->lock
);
908 *dest
= value
& 0x7f;
909 err
= wacom_led_control(wacom
);
911 mutex_unlock(&wacom
->lock
);
913 return err
< 0 ? err
: count
;
916 #define DEVICE_LUMINANCE_ATTR(name, field) \
917 static ssize_t wacom_##name##_luminance_store(struct device *dev, \
918 struct device_attribute *attr, const char *buf, size_t count) \
920 struct hid_device *hdev = to_hid_device(dev);\
921 struct wacom *wacom = hid_get_drvdata(hdev); \
923 return wacom_luminance_store(wacom, &wacom->led.field, \
926 static ssize_t wacom_##name##_luminance_show(struct device *dev, \
927 struct device_attribute *attr, char *buf) \
929 struct wacom *wacom = dev_get_drvdata(dev); \
930 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
932 static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
933 wacom_##name##_luminance_show, \
934 wacom_##name##_luminance_store)
936 DEVICE_LUMINANCE_ATTR(status0
, llv
);
937 DEVICE_LUMINANCE_ATTR(status1
, hlv
);
938 DEVICE_LUMINANCE_ATTR(buttons
, img_lum
);
940 static ssize_t
wacom_button_image_store(struct device
*dev
, int button_id
,
941 const char *buf
, size_t count
)
943 struct hid_device
*hdev
= to_hid_device(dev
);
944 struct wacom
*wacom
= hid_get_drvdata(hdev
);
949 if (hdev
->bus
== BUS_BLUETOOTH
) {
951 xfer_id
= WAC_CMD_ICON_BT_XFER
;
954 xfer_id
= WAC_CMD_ICON_XFER
;
960 mutex_lock(&wacom
->lock
);
962 err
= wacom_led_putimage(wacom
, button_id
, xfer_id
, len
, buf
);
964 mutex_unlock(&wacom
->lock
);
966 return err
< 0 ? err
: count
;
969 #define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
970 static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
971 struct device_attribute *attr, const char *buf, size_t count) \
973 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
975 static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
976 NULL, wacom_btnimg##BUTTON_ID##_store)
978 DEVICE_BTNIMG_ATTR(0);
979 DEVICE_BTNIMG_ATTR(1);
980 DEVICE_BTNIMG_ATTR(2);
981 DEVICE_BTNIMG_ATTR(3);
982 DEVICE_BTNIMG_ATTR(4);
983 DEVICE_BTNIMG_ATTR(5);
984 DEVICE_BTNIMG_ATTR(6);
985 DEVICE_BTNIMG_ATTR(7);
987 static struct attribute
*cintiq_led_attrs
[] = {
988 &dev_attr_status_led0_select
.attr
,
989 &dev_attr_status_led1_select
.attr
,
993 static struct attribute_group cintiq_led_attr_group
= {
995 .attrs
= cintiq_led_attrs
,
998 static struct attribute
*intuos4_led_attrs
[] = {
999 &dev_attr_status0_luminance
.attr
,
1000 &dev_attr_status1_luminance
.attr
,
1001 &dev_attr_status_led0_select
.attr
,
1002 &dev_attr_buttons_luminance
.attr
,
1003 &dev_attr_button0_rawimg
.attr
,
1004 &dev_attr_button1_rawimg
.attr
,
1005 &dev_attr_button2_rawimg
.attr
,
1006 &dev_attr_button3_rawimg
.attr
,
1007 &dev_attr_button4_rawimg
.attr
,
1008 &dev_attr_button5_rawimg
.attr
,
1009 &dev_attr_button6_rawimg
.attr
,
1010 &dev_attr_button7_rawimg
.attr
,
1014 static struct attribute_group intuos4_led_attr_group
= {
1015 .name
= "wacom_led",
1016 .attrs
= intuos4_led_attrs
,
1019 static struct attribute
*intuos5_led_attrs
[] = {
1020 &dev_attr_status0_luminance
.attr
,
1021 &dev_attr_status_led0_select
.attr
,
1025 static struct attribute_group intuos5_led_attr_group
= {
1026 .name
= "wacom_led",
1027 .attrs
= intuos5_led_attrs
,
1030 struct wacom_sysfs_group_devres
{
1031 struct attribute_group
*group
;
1032 struct kobject
*root
;
1035 static void wacom_devm_sysfs_group_release(struct device
*dev
, void *res
)
1037 struct wacom_sysfs_group_devres
*devres
= res
;
1038 struct kobject
*kobj
= devres
->root
;
1040 dev_dbg(dev
, "%s: dropping reference to %s\n",
1041 __func__
, devres
->group
->name
);
1042 sysfs_remove_group(kobj
, devres
->group
);
1045 static int __wacom_devm_sysfs_create_group(struct wacom
*wacom
,
1046 struct kobject
*root
,
1047 struct attribute_group
*group
)
1049 struct wacom_sysfs_group_devres
*devres
;
1052 devres
= devres_alloc(wacom_devm_sysfs_group_release
,
1053 sizeof(struct wacom_sysfs_group_devres
),
1058 devres
->group
= group
;
1059 devres
->root
= root
;
1061 error
= sysfs_create_group(devres
->root
, group
);
1065 devres_add(&wacom
->hdev
->dev
, devres
);
1070 static int wacom_devm_sysfs_create_group(struct wacom
*wacom
,
1071 struct attribute_group
*group
)
1073 return __wacom_devm_sysfs_create_group(wacom
, &wacom
->hdev
->dev
.kobj
,
1077 enum led_brightness
wacom_leds_brightness_get(struct wacom_led
*led
)
1079 struct wacom
*wacom
= led
->wacom
;
1081 if (wacom
->led
.max_hlv
)
1082 return led
->hlv
* LED_FULL
/ wacom
->led
.max_hlv
;
1084 if (wacom
->led
.max_llv
)
1085 return led
->llv
* LED_FULL
/ wacom
->led
.max_llv
;
1087 /* device doesn't support brightness tuning */
1091 static enum led_brightness
__wacom_led_brightness_get(struct led_classdev
*cdev
)
1093 struct wacom_led
*led
= container_of(cdev
, struct wacom_led
, cdev
);
1094 struct wacom
*wacom
= led
->wacom
;
1096 if (wacom
->led
.groups
[led
->group
].select
!= led
->id
)
1099 return wacom_leds_brightness_get(led
);
1102 static int wacom_led_brightness_set(struct led_classdev
*cdev
,
1103 enum led_brightness brightness
)
1105 struct wacom_led
*led
= container_of(cdev
, struct wacom_led
, cdev
);
1106 struct wacom
*wacom
= led
->wacom
;
1109 mutex_lock(&wacom
->lock
);
1111 if (!wacom
->led
.groups
|| (brightness
== LED_OFF
&&
1112 wacom
->led
.groups
[led
->group
].select
!= led
->id
)) {
1117 led
->llv
= wacom
->led
.llv
= wacom
->led
.max_llv
* brightness
/ LED_FULL
;
1118 led
->hlv
= wacom
->led
.hlv
= wacom
->led
.max_hlv
* brightness
/ LED_FULL
;
1120 wacom
->led
.groups
[led
->group
].select
= led
->id
;
1122 error
= wacom_led_control(wacom
);
1125 mutex_unlock(&wacom
->lock
);
1130 static void wacom_led_readonly_brightness_set(struct led_classdev
*cdev
,
1131 enum led_brightness brightness
)
1135 static int wacom_led_register_one(struct device
*dev
, struct wacom
*wacom
,
1136 struct wacom_led
*led
, unsigned int group
,
1137 unsigned int id
, bool read_only
)
1142 name
= devm_kasprintf(dev
, GFP_KERNEL
,
1151 led
->trigger
.name
= name
;
1152 error
= devm_led_trigger_register(dev
, &led
->trigger
);
1154 hid_err(wacom
->hdev
,
1155 "failed to register LED trigger %s: %d\n",
1156 led
->cdev
.name
, error
);
1164 led
->llv
= wacom
->led
.llv
;
1165 led
->hlv
= wacom
->led
.hlv
;
1166 led
->cdev
.name
= name
;
1167 led
->cdev
.max_brightness
= LED_FULL
;
1168 led
->cdev
.flags
= LED_HW_PLUGGABLE
;
1169 led
->cdev
.brightness_get
= __wacom_led_brightness_get
;
1171 led
->cdev
.brightness_set_blocking
= wacom_led_brightness_set
;
1172 led
->cdev
.default_trigger
= led
->cdev
.name
;
1174 led
->cdev
.brightness_set
= wacom_led_readonly_brightness_set
;
1177 error
= devm_led_classdev_register(dev
, &led
->cdev
);
1179 hid_err(wacom
->hdev
,
1180 "failed to register LED %s: %d\n",
1181 led
->cdev
.name
, error
);
1182 led
->cdev
.name
= NULL
;
1189 static void wacom_led_groups_release_one(void *data
)
1191 struct wacom_group_leds
*group
= data
;
1193 devres_release_group(group
->dev
, group
);
1196 static int wacom_led_groups_alloc_and_register_one(struct device
*dev
,
1197 struct wacom
*wacom
,
1198 int group_id
, int count
,
1201 struct wacom_led
*leds
;
1204 if (group_id
>= wacom
->led
.count
|| count
<= 0)
1207 if (!devres_open_group(dev
, &wacom
->led
.groups
[group_id
], GFP_KERNEL
))
1210 leds
= devm_kzalloc(dev
, sizeof(struct wacom_led
) * count
, GFP_KERNEL
);
1216 wacom
->led
.groups
[group_id
].leds
= leds
;
1217 wacom
->led
.groups
[group_id
].count
= count
;
1219 for (i
= 0; i
< count
; i
++) {
1220 error
= wacom_led_register_one(dev
, wacom
, &leds
[i
],
1221 group_id
, i
, read_only
);
1226 wacom
->led
.groups
[group_id
].dev
= dev
;
1228 devres_close_group(dev
, &wacom
->led
.groups
[group_id
]);
1231 * There is a bug (?) in devm_led_classdev_register() in which its
1232 * increments the refcount of the parent. If the parent is an input
1233 * device, that means the ref count never reaches 0 when
1234 * devm_input_device_release() gets called.
1235 * This means that the LEDs are still there after disconnect.
1236 * Manually force the release of the group so that the leds are released
1237 * once we are done using them.
1239 error
= devm_add_action_or_reset(&wacom
->hdev
->dev
,
1240 wacom_led_groups_release_one
,
1241 &wacom
->led
.groups
[group_id
]);
1248 devres_release_group(dev
, &wacom
->led
.groups
[group_id
]);
1252 struct wacom_led
*wacom_led_find(struct wacom
*wacom
, unsigned int group_id
,
1255 struct wacom_group_leds
*group
;
1257 if (group_id
>= wacom
->led
.count
)
1260 group
= &wacom
->led
.groups
[group_id
];
1267 return &group
->leds
[id
];
1271 * wacom_led_next: gives the next available led with a wacom trigger.
1273 * returns the next available struct wacom_led which has its default trigger
1274 * or the current one if none is available.
1276 struct wacom_led
*wacom_led_next(struct wacom
*wacom
, struct wacom_led
*cur
)
1278 struct wacom_led
*next_led
;
1288 next_led
= wacom_led_find(wacom
, group
, ++next
);
1289 if (!next_led
|| next_led
== cur
)
1291 } while (next_led
->cdev
.trigger
!= &next_led
->trigger
);
1296 static void wacom_led_groups_release(void *data
)
1298 struct wacom
*wacom
= data
;
1300 wacom
->led
.groups
= NULL
;
1301 wacom
->led
.count
= 0;
1304 static int wacom_led_groups_allocate(struct wacom
*wacom
, int count
)
1306 struct device
*dev
= &wacom
->hdev
->dev
;
1307 struct wacom_group_leds
*groups
;
1310 groups
= devm_kzalloc(dev
, sizeof(struct wacom_group_leds
) * count
,
1315 error
= devm_add_action_or_reset(dev
, wacom_led_groups_release
, wacom
);
1319 wacom
->led
.groups
= groups
;
1320 wacom
->led
.count
= count
;
1325 static int wacom_leds_alloc_and_register(struct wacom
*wacom
, int group_count
,
1326 int led_per_group
, bool read_only
)
1331 if (!wacom
->wacom_wac
.pad_input
)
1334 dev
= &wacom
->wacom_wac
.pad_input
->dev
;
1336 error
= wacom_led_groups_allocate(wacom
, group_count
);
1340 for (i
= 0; i
< group_count
; i
++) {
1341 error
= wacom_led_groups_alloc_and_register_one(dev
, wacom
, i
,
1351 static int wacom_initialize_leds(struct wacom
*wacom
)
1355 if (!(wacom
->wacom_wac
.features
.device_type
& WACOM_DEVICETYPE_PAD
))
1358 /* Initialize default values */
1359 switch (wacom
->wacom_wac
.features
.type
) {
1364 wacom
->led
.llv
= 10;
1365 wacom
->led
.hlv
= 20;
1366 wacom
->led
.max_llv
= 127;
1367 wacom
->led
.max_hlv
= 127;
1368 wacom
->led
.img_lum
= 10;
1370 error
= wacom_leds_alloc_and_register(wacom
, 1, 4, false);
1372 hid_err(wacom
->hdev
,
1373 "cannot create leds err: %d\n", error
);
1377 error
= wacom_devm_sysfs_create_group(wacom
,
1378 &intuos4_led_attr_group
);
1385 wacom
->led
.img_lum
= 0;
1387 error
= wacom_leds_alloc_and_register(wacom
, 2, 4, false);
1389 hid_err(wacom
->hdev
,
1390 "cannot create leds err: %d\n", error
);
1394 error
= wacom_devm_sysfs_create_group(wacom
,
1395 &cintiq_led_attr_group
);
1404 wacom
->led
.llv
= 32;
1405 wacom
->led
.max_llv
= 96;
1407 error
= wacom_leds_alloc_and_register(wacom
, 1, 4, false);
1409 hid_err(wacom
->hdev
,
1410 "cannot create leds err: %d\n", error
);
1414 error
= wacom_devm_sysfs_create_group(wacom
,
1415 &intuos5_led_attr_group
);
1419 wacom
->led
.llv
= 255;
1420 wacom
->led
.max_llv
= 255;
1421 error
= wacom_led_groups_allocate(wacom
, 5);
1423 hid_err(wacom
->hdev
,
1424 "cannot create leds err: %d\n", error
);
1434 hid_err(wacom
->hdev
,
1435 "cannot create sysfs group err: %d\n", error
);
1438 wacom_led_control(wacom
);
1443 static enum power_supply_property wacom_battery_props
[] = {
1444 POWER_SUPPLY_PROP_MODEL_NAME
,
1445 POWER_SUPPLY_PROP_PRESENT
,
1446 POWER_SUPPLY_PROP_STATUS
,
1447 POWER_SUPPLY_PROP_SCOPE
,
1448 POWER_SUPPLY_PROP_CAPACITY
1451 static int wacom_battery_get_property(struct power_supply
*psy
,
1452 enum power_supply_property psp
,
1453 union power_supply_propval
*val
)
1455 struct wacom_battery
*battery
= power_supply_get_drvdata(psy
);
1459 case POWER_SUPPLY_PROP_MODEL_NAME
:
1460 val
->strval
= battery
->wacom
->wacom_wac
.name
;
1462 case POWER_SUPPLY_PROP_PRESENT
:
1463 val
->intval
= battery
->bat_connected
;
1465 case POWER_SUPPLY_PROP_SCOPE
:
1466 val
->intval
= POWER_SUPPLY_SCOPE_DEVICE
;
1468 case POWER_SUPPLY_PROP_CAPACITY
:
1469 val
->intval
= battery
->battery_capacity
;
1471 case POWER_SUPPLY_PROP_STATUS
:
1472 if (battery
->bat_charging
)
1473 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
1474 else if (battery
->battery_capacity
== 100 &&
1475 battery
->ps_connected
)
1476 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
1477 else if (battery
->ps_connected
)
1478 val
->intval
= POWER_SUPPLY_STATUS_NOT_CHARGING
;
1480 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
1490 static int __wacom_initialize_battery(struct wacom
*wacom
,
1491 struct wacom_battery
*battery
)
1493 static atomic_t battery_no
= ATOMIC_INIT(0);
1494 struct device
*dev
= &wacom
->hdev
->dev
;
1495 struct power_supply_config psy_cfg
= { .drv_data
= battery
, };
1496 struct power_supply
*ps_bat
;
1497 struct power_supply_desc
*bat_desc
= &battery
->bat_desc
;
1501 if (!devres_open_group(dev
, bat_desc
, GFP_KERNEL
))
1504 battery
->wacom
= wacom
;
1506 n
= atomic_inc_return(&battery_no
) - 1;
1508 bat_desc
->properties
= wacom_battery_props
;
1509 bat_desc
->num_properties
= ARRAY_SIZE(wacom_battery_props
);
1510 bat_desc
->get_property
= wacom_battery_get_property
;
1511 sprintf(battery
->bat_name
, "wacom_battery_%ld", n
);
1512 bat_desc
->name
= battery
->bat_name
;
1513 bat_desc
->type
= POWER_SUPPLY_TYPE_USB
;
1514 bat_desc
->use_for_apm
= 0;
1516 ps_bat
= devm_power_supply_register(dev
, bat_desc
, &psy_cfg
);
1517 if (IS_ERR(ps_bat
)) {
1518 error
= PTR_ERR(ps_bat
);
1522 power_supply_powers(ps_bat
, &wacom
->hdev
->dev
);
1524 battery
->battery
= ps_bat
;
1526 devres_close_group(dev
, bat_desc
);
1530 devres_release_group(dev
, bat_desc
);
1534 static int wacom_initialize_battery(struct wacom
*wacom
)
1536 if (wacom
->wacom_wac
.features
.quirks
& WACOM_QUIRK_BATTERY
)
1537 return __wacom_initialize_battery(wacom
, &wacom
->battery
);
1542 static void wacom_destroy_battery(struct wacom
*wacom
)
1544 if (wacom
->battery
.battery
) {
1545 devres_release_group(&wacom
->hdev
->dev
,
1546 &wacom
->battery
.bat_desc
);
1547 wacom
->battery
.battery
= NULL
;
1551 static ssize_t
wacom_show_speed(struct device
*dev
,
1552 struct device_attribute
1555 struct hid_device
*hdev
= to_hid_device(dev
);
1556 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1558 return snprintf(buf
, PAGE_SIZE
, "%i\n", wacom
->wacom_wac
.bt_high_speed
);
1561 static ssize_t
wacom_store_speed(struct device
*dev
,
1562 struct device_attribute
*attr
,
1563 const char *buf
, size_t count
)
1565 struct hid_device
*hdev
= to_hid_device(dev
);
1566 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1569 if (kstrtou8(buf
, 0, &new_speed
))
1572 if (new_speed
!= 0 && new_speed
!= 1)
1575 wacom_bt_query_tablet_data(hdev
, new_speed
, &wacom
->wacom_wac
.features
);
1580 static DEVICE_ATTR(speed
, DEV_ATTR_RW_PERM
,
1581 wacom_show_speed
, wacom_store_speed
);
1584 static ssize_t
wacom_show_remote_mode(struct kobject
*kobj
,
1585 struct kobj_attribute
*kattr
,
1586 char *buf
, int index
)
1588 struct device
*dev
= kobj_to_dev(kobj
->parent
);
1589 struct hid_device
*hdev
= to_hid_device(dev
);
1590 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1593 mode
= wacom
->led
.groups
[index
].select
;
1594 if (mode
>= 0 && mode
< 3)
1595 return snprintf(buf
, PAGE_SIZE
, "%d\n", mode
);
1597 return snprintf(buf
, PAGE_SIZE
, "%d\n", -1);
1600 #define DEVICE_EKR_ATTR_GROUP(SET_ID) \
1601 static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj, \
1602 struct kobj_attribute *kattr, char *buf) \
1604 return wacom_show_remote_mode(kobj, kattr, buf, SET_ID); \
1606 static struct kobj_attribute remote##SET_ID##_mode_attr = { \
1607 .attr = {.name = "remote_mode", \
1608 .mode = DEV_ATTR_RO_PERM}, \
1609 .show = wacom_show_remote##SET_ID##_mode, \
1611 static struct attribute *remote##SET_ID##_serial_attrs[] = { \
1612 &remote##SET_ID##_mode_attr.attr, \
1615 static struct attribute_group remote##SET_ID##_serial_group = { \
1617 .attrs = remote##SET_ID##_serial_attrs, \
1620 DEVICE_EKR_ATTR_GROUP(0);
1621 DEVICE_EKR_ATTR_GROUP(1);
1622 DEVICE_EKR_ATTR_GROUP(2);
1623 DEVICE_EKR_ATTR_GROUP(3);
1624 DEVICE_EKR_ATTR_GROUP(4);
1626 static int wacom_remote_create_attr_group(struct wacom
*wacom
, __u32 serial
,
1630 struct wacom_remote
*remote
= wacom
->remote
;
1632 remote
->remotes
[index
].group
.name
= devm_kasprintf(&wacom
->hdev
->dev
,
1635 if (!remote
->remotes
[index
].group
.name
)
1638 error
= __wacom_devm_sysfs_create_group(wacom
, remote
->remote_dir
,
1639 &remote
->remotes
[index
].group
);
1641 remote
->remotes
[index
].group
.name
= NULL
;
1642 hid_err(wacom
->hdev
,
1643 "cannot create sysfs group err: %d\n", error
);
1650 static int wacom_cmd_unpair_remote(struct wacom
*wacom
, unsigned char selector
)
1652 const size_t buf_size
= 2;
1656 buf
= kzalloc(buf_size
, GFP_KERNEL
);
1660 buf
[0] = WAC_CMD_DELETE_PAIRING
;
1663 retval
= wacom_set_report(wacom
->hdev
, HID_OUTPUT_REPORT
, buf
,
1664 buf_size
, WAC_CMD_RETRIES
);
1670 static ssize_t
wacom_store_unpair_remote(struct kobject
*kobj
,
1671 struct kobj_attribute
*attr
,
1672 const char *buf
, size_t count
)
1674 unsigned char selector
= 0;
1675 struct device
*dev
= kobj_to_dev(kobj
->parent
);
1676 struct hid_device
*hdev
= to_hid_device(dev
);
1677 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1680 if (!strncmp(buf
, "*\n", 2)) {
1681 selector
= WAC_CMD_UNPAIR_ALL
;
1683 hid_info(wacom
->hdev
, "remote: unrecognized unpair code: %s\n",
1688 mutex_lock(&wacom
->lock
);
1690 err
= wacom_cmd_unpair_remote(wacom
, selector
);
1691 mutex_unlock(&wacom
->lock
);
1693 return err
< 0 ? err
: count
;
1696 static struct kobj_attribute unpair_remote_attr
= {
1697 .attr
= {.name
= "unpair_remote", .mode
= 0200},
1698 .store
= wacom_store_unpair_remote
,
1701 static const struct attribute
*remote_unpair_attrs
[] = {
1702 &unpair_remote_attr
.attr
,
1706 static void wacom_remotes_destroy(void *data
)
1708 struct wacom
*wacom
= data
;
1709 struct wacom_remote
*remote
= wacom
->remote
;
1714 kobject_put(remote
->remote_dir
);
1715 kfifo_free(&remote
->remote_fifo
);
1716 wacom
->remote
= NULL
;
1719 static int wacom_initialize_remotes(struct wacom
*wacom
)
1722 struct wacom_remote
*remote
;
1725 if (wacom
->wacom_wac
.features
.type
!= REMOTE
)
1728 remote
= devm_kzalloc(&wacom
->hdev
->dev
, sizeof(*wacom
->remote
),
1733 wacom
->remote
= remote
;
1735 spin_lock_init(&remote
->remote_lock
);
1737 error
= kfifo_alloc(&remote
->remote_fifo
,
1738 5 * sizeof(struct wacom_remote_data
),
1741 hid_err(wacom
->hdev
, "failed allocating remote_fifo\n");
1745 remote
->remotes
[0].group
= remote0_serial_group
;
1746 remote
->remotes
[1].group
= remote1_serial_group
;
1747 remote
->remotes
[2].group
= remote2_serial_group
;
1748 remote
->remotes
[3].group
= remote3_serial_group
;
1749 remote
->remotes
[4].group
= remote4_serial_group
;
1751 remote
->remote_dir
= kobject_create_and_add("wacom_remote",
1752 &wacom
->hdev
->dev
.kobj
);
1753 if (!remote
->remote_dir
)
1756 error
= sysfs_create_files(remote
->remote_dir
, remote_unpair_attrs
);
1759 hid_err(wacom
->hdev
,
1760 "cannot create sysfs group err: %d\n", error
);
1764 for (i
= 0; i
< WACOM_MAX_REMOTES
; i
++) {
1765 wacom
->led
.groups
[i
].select
= WACOM_STATUS_UNKNOWN
;
1766 remote
->remotes
[i
].serial
= 0;
1769 error
= devm_add_action_or_reset(&wacom
->hdev
->dev
,
1770 wacom_remotes_destroy
, wacom
);
1777 static struct input_dev
*wacom_allocate_input(struct wacom
*wacom
)
1779 struct input_dev
*input_dev
;
1780 struct hid_device
*hdev
= wacom
->hdev
;
1781 struct wacom_wac
*wacom_wac
= &(wacom
->wacom_wac
);
1783 input_dev
= devm_input_allocate_device(&hdev
->dev
);
1787 input_dev
->name
= wacom_wac
->features
.name
;
1788 input_dev
->phys
= hdev
->phys
;
1789 input_dev
->dev
.parent
= &hdev
->dev
;
1790 input_dev
->open
= wacom_open
;
1791 input_dev
->close
= wacom_close
;
1792 input_dev
->uniq
= hdev
->uniq
;
1793 input_dev
->id
.bustype
= hdev
->bus
;
1794 input_dev
->id
.vendor
= hdev
->vendor
;
1795 input_dev
->id
.product
= wacom_wac
->pid
? wacom_wac
->pid
: hdev
->product
;
1796 input_dev
->id
.version
= hdev
->version
;
1797 input_set_drvdata(input_dev
, wacom
);
1802 static int wacom_allocate_inputs(struct wacom
*wacom
)
1804 struct wacom_wac
*wacom_wac
= &(wacom
->wacom_wac
);
1806 wacom_wac
->pen_input
= wacom_allocate_input(wacom
);
1807 wacom_wac
->touch_input
= wacom_allocate_input(wacom
);
1808 wacom_wac
->pad_input
= wacom_allocate_input(wacom
);
1809 if (!wacom_wac
->pen_input
||
1810 !wacom_wac
->touch_input
||
1811 !wacom_wac
->pad_input
)
1814 wacom_wac
->pen_input
->name
= wacom_wac
->pen_name
;
1815 wacom_wac
->touch_input
->name
= wacom_wac
->touch_name
;
1816 wacom_wac
->pad_input
->name
= wacom_wac
->pad_name
;
1821 static int wacom_register_inputs(struct wacom
*wacom
)
1823 struct input_dev
*pen_input_dev
, *touch_input_dev
, *pad_input_dev
;
1824 struct wacom_wac
*wacom_wac
= &(wacom
->wacom_wac
);
1827 pen_input_dev
= wacom_wac
->pen_input
;
1828 touch_input_dev
= wacom_wac
->touch_input
;
1829 pad_input_dev
= wacom_wac
->pad_input
;
1831 if (!pen_input_dev
|| !touch_input_dev
|| !pad_input_dev
)
1834 error
= wacom_setup_pen_input_capabilities(pen_input_dev
, wacom_wac
);
1836 /* no pen in use on this interface */
1837 input_free_device(pen_input_dev
);
1838 wacom_wac
->pen_input
= NULL
;
1839 pen_input_dev
= NULL
;
1841 error
= input_register_device(pen_input_dev
);
1846 error
= wacom_setup_touch_input_capabilities(touch_input_dev
, wacom_wac
);
1848 /* no touch in use on this interface */
1849 input_free_device(touch_input_dev
);
1850 wacom_wac
->touch_input
= NULL
;
1851 touch_input_dev
= NULL
;
1853 error
= input_register_device(touch_input_dev
);
1858 error
= wacom_setup_pad_input_capabilities(pad_input_dev
, wacom_wac
);
1860 /* no pad in use on this interface */
1861 input_free_device(pad_input_dev
);
1862 wacom_wac
->pad_input
= NULL
;
1863 pad_input_dev
= NULL
;
1865 error
= input_register_device(pad_input_dev
);
1873 wacom_wac
->pad_input
= NULL
;
1874 wacom_wac
->touch_input
= NULL
;
1875 wacom_wac
->pen_input
= NULL
;
1880 * Not all devices report physical dimensions from HID.
1881 * Compute the default from hardcoded logical dimension
1882 * and resolution before driver overwrites them.
1884 static void wacom_set_default_phy(struct wacom_features
*features
)
1886 if (features
->x_resolution
) {
1887 features
->x_phy
= (features
->x_max
* 100) /
1888 features
->x_resolution
;
1889 features
->y_phy
= (features
->y_max
* 100) /
1890 features
->y_resolution
;
1894 static void wacom_calculate_res(struct wacom_features
*features
)
1896 /* set unit to "100th of a mm" for devices not reported by HID */
1897 if (!features
->unit
) {
1898 features
->unit
= 0x11;
1899 features
->unitExpo
= -3;
1902 features
->x_resolution
= wacom_calc_hid_res(features
->x_max
,
1905 features
->unitExpo
);
1906 features
->y_resolution
= wacom_calc_hid_res(features
->y_max
,
1909 features
->unitExpo
);
1912 void wacom_battery_work(struct work_struct
*work
)
1914 struct wacom
*wacom
= container_of(work
, struct wacom
, battery_work
);
1916 if ((wacom
->wacom_wac
.features
.quirks
& WACOM_QUIRK_BATTERY
) &&
1917 !wacom
->battery
.battery
) {
1918 wacom_initialize_battery(wacom
);
1920 else if (!(wacom
->wacom_wac
.features
.quirks
& WACOM_QUIRK_BATTERY
) &&
1921 wacom
->battery
.battery
) {
1922 wacom_destroy_battery(wacom
);
1926 static size_t wacom_compute_pktlen(struct hid_device
*hdev
)
1928 struct hid_report_enum
*report_enum
;
1929 struct hid_report
*report
;
1932 report_enum
= hdev
->report_enum
+ HID_INPUT_REPORT
;
1934 list_for_each_entry(report
, &report_enum
->report_list
, list
) {
1935 size_t report_size
= hid_report_len(report
);
1936 if (report_size
> size
)
1943 static void wacom_update_name(struct wacom
*wacom
, const char *suffix
)
1945 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
1946 struct wacom_features
*features
= &wacom_wac
->features
;
1947 char name
[WACOM_NAME_MAX
];
1949 /* Generic devices name unspecified */
1950 if ((features
->type
== HID_GENERIC
) && !strcmp("Wacom HID", features
->name
)) {
1951 if (strstr(wacom
->hdev
->name
, "Wacom") ||
1952 strstr(wacom
->hdev
->name
, "wacom") ||
1953 strstr(wacom
->hdev
->name
, "WACOM")) {
1954 /* name is in HID descriptor, use it */
1955 strlcpy(name
, wacom
->hdev
->name
, sizeof(name
));
1957 /* strip out excess whitespaces */
1959 char *gap
= strstr(name
, " ");
1962 /* shift everything including the terminator */
1963 memmove(gap
, gap
+1, strlen(gap
));
1966 /* strip off excessive prefixing */
1967 if (strstr(name
, "Wacom Co.,Ltd. Wacom ") == name
) {
1968 int n
= strlen(name
);
1969 int x
= strlen("Wacom Co.,Ltd. ");
1970 memmove(name
, name
+x
, n
-x
+1);
1972 if (strstr(name
, "Wacom Co., Ltd. Wacom ") == name
) {
1973 int n
= strlen(name
);
1974 int x
= strlen("Wacom Co., Ltd. ");
1975 memmove(name
, name
+x
, n
-x
+1);
1978 /* get rid of trailing whitespace */
1979 if (name
[strlen(name
)-1] == ' ')
1980 name
[strlen(name
)-1] = '\0';
1982 /* no meaningful name retrieved. use product ID */
1983 snprintf(name
, sizeof(name
),
1984 "%s %X", features
->name
, wacom
->hdev
->product
);
1987 strlcpy(name
, features
->name
, sizeof(name
));
1990 snprintf(wacom_wac
->name
, sizeof(wacom_wac
->name
), "%s%s",
1993 /* Append the device type to the name */
1994 snprintf(wacom_wac
->pen_name
, sizeof(wacom_wac
->pen_name
),
1995 "%s%s Pen", name
, suffix
);
1996 snprintf(wacom_wac
->touch_name
, sizeof(wacom_wac
->touch_name
),
1997 "%s%s Finger", name
, suffix
);
1998 snprintf(wacom_wac
->pad_name
, sizeof(wacom_wac
->pad_name
),
1999 "%s%s Pad", name
, suffix
);
2002 static void wacom_release_resources(struct wacom
*wacom
)
2004 struct hid_device
*hdev
= wacom
->hdev
;
2006 if (!wacom
->resources
)
2009 devres_release_group(&hdev
->dev
, wacom
);
2011 wacom
->resources
= false;
2013 wacom
->wacom_wac
.pen_input
= NULL
;
2014 wacom
->wacom_wac
.touch_input
= NULL
;
2015 wacom
->wacom_wac
.pad_input
= NULL
;
2018 static int wacom_parse_and_register(struct wacom
*wacom
, bool wireless
)
2020 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
2021 struct wacom_features
*features
= &wacom_wac
->features
;
2022 struct hid_device
*hdev
= wacom
->hdev
;
2024 unsigned int connect_mask
= HID_CONNECT_HIDRAW
;
2026 features
->pktlen
= wacom_compute_pktlen(hdev
);
2027 if (features
->pktlen
> WACOM_PKGLEN_MAX
)
2030 if (!devres_open_group(&hdev
->dev
, wacom
, GFP_KERNEL
))
2033 wacom
->resources
= true;
2035 error
= wacom_allocate_inputs(wacom
);
2039 error
= wacom_add_shared_data(hdev
);
2044 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
2045 * into debug mode for the touch part.
2046 * We ignore the other interfaces.
2048 if (features
->type
== BAMBOO_PAD
) {
2049 if (features
->pktlen
== WACOM_PKGLEN_PENABLED
) {
2050 features
->type
= HID_GENERIC
;
2051 } else if ((features
->pktlen
!= WACOM_PKGLEN_BPAD_TOUCH
) &&
2052 (features
->pktlen
!= WACOM_PKGLEN_BPAD_TOUCH_USB
)) {
2058 /* set the default size in case we do not get them from hid */
2059 wacom_set_default_phy(features
);
2061 /* Retrieve the physical and logical size for touch devices */
2062 wacom_retrieve_hid_descriptor(hdev
, features
);
2063 wacom_setup_device_quirks(wacom
);
2065 if (features
->device_type
== WACOM_DEVICETYPE_NONE
&&
2066 features
->type
!= WIRELESS
) {
2067 error
= features
->type
== HID_GENERIC
? -ENODEV
: 0;
2069 dev_warn(&hdev
->dev
, "Unknown device_type for '%s'. %s.",
2071 error
? "Ignoring" : "Assuming pen");
2076 features
->device_type
|= WACOM_DEVICETYPE_PEN
;
2079 wacom_calculate_res(features
);
2081 wacom_update_name(wacom
, wireless
? " (WL)" : "");
2083 if (wacom_wac
->features
.device_type
& WACOM_DEVICETYPE_TOUCH
)
2084 wacom_wac
->shared
->touch
= hdev
;
2085 else if (wacom_wac
->features
.device_type
& WACOM_DEVICETYPE_PEN
)
2086 wacom_wac
->shared
->pen
= hdev
;
2088 if (!(features
->device_type
& WACOM_DEVICETYPE_WL_MONITOR
) &&
2089 (features
->quirks
& WACOM_QUIRK_BATTERY
)) {
2090 error
= wacom_initialize_battery(wacom
);
2095 error
= wacom_register_inputs(wacom
);
2099 if (wacom
->wacom_wac
.features
.device_type
& WACOM_DEVICETYPE_PAD
) {
2100 error
= wacom_initialize_leds(wacom
);
2104 error
= wacom_initialize_remotes(wacom
);
2109 if (features
->type
== HID_GENERIC
)
2110 connect_mask
|= HID_CONNECT_DRIVER
;
2112 /* Regular HID work starts now */
2113 error
= hid_hw_start(hdev
, connect_mask
);
2115 hid_err(hdev
, "hw start failed\n");
2120 /* Note that if query fails it is not a hard failure */
2121 wacom_query_tablet_data(hdev
, features
);
2124 /* touch only Bamboo doesn't support pen */
2125 if ((features
->type
== BAMBOO_TOUCH
) &&
2126 (features
->device_type
& WACOM_DEVICETYPE_PEN
)) {
2131 /* pen only Bamboo neither support touch nor pad */
2132 if ((features
->type
== BAMBOO_PEN
) &&
2133 ((features
->device_type
& WACOM_DEVICETYPE_TOUCH
) ||
2134 (features
->device_type
& WACOM_DEVICETYPE_PAD
))) {
2139 if (features
->device_type
& WACOM_DEVICETYPE_WL_MONITOR
)
2140 error
= hid_hw_open(hdev
);
2142 if ((wacom_wac
->features
.type
== INTUOSHT
||
2143 wacom_wac
->features
.type
== INTUOSHT2
) &&
2144 (wacom_wac
->features
.device_type
& WACOM_DEVICETYPE_TOUCH
)) {
2145 wacom_wac
->shared
->type
= wacom_wac
->features
.type
;
2146 wacom_wac
->shared
->touch_input
= wacom_wac
->touch_input
;
2149 devres_close_group(&hdev
->dev
, wacom
);
2156 wacom_release_resources(wacom
);
2160 static void wacom_wireless_work(struct work_struct
*work
)
2162 struct wacom
*wacom
= container_of(work
, struct wacom
, wireless_work
);
2163 struct usb_device
*usbdev
= wacom
->usbdev
;
2164 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
2165 struct hid_device
*hdev1
, *hdev2
;
2166 struct wacom
*wacom1
, *wacom2
;
2167 struct wacom_wac
*wacom_wac1
, *wacom_wac2
;
2171 * Regardless if this is a disconnect or a new tablet,
2172 * remove any existing input and battery devices.
2175 wacom_destroy_battery(wacom
);
2177 /* Stylus interface */
2178 hdev1
= usb_get_intfdata(usbdev
->config
->interface
[1]);
2179 wacom1
= hid_get_drvdata(hdev1
);
2180 wacom_wac1
= &(wacom1
->wacom_wac
);
2181 wacom_release_resources(wacom1
);
2183 /* Touch interface */
2184 hdev2
= usb_get_intfdata(usbdev
->config
->interface
[2]);
2185 wacom2
= hid_get_drvdata(hdev2
);
2186 wacom_wac2
= &(wacom2
->wacom_wac
);
2187 wacom_release_resources(wacom2
);
2189 if (wacom_wac
->pid
== 0) {
2190 hid_info(wacom
->hdev
, "wireless tablet disconnected\n");
2192 const struct hid_device_id
*id
= wacom_ids
;
2194 hid_info(wacom
->hdev
, "wireless tablet connected with PID %x\n",
2198 if (id
->vendor
== USB_VENDOR_ID_WACOM
&&
2199 id
->product
== wacom_wac
->pid
)
2205 hid_info(wacom
->hdev
, "ignoring unknown PID.\n");
2209 /* Stylus interface */
2210 wacom_wac1
->features
=
2211 *((struct wacom_features
*)id
->driver_data
);
2213 wacom_wac1
->pid
= wacom_wac
->pid
;
2215 error
= wacom_parse_and_register(wacom1
, true);
2219 /* Touch interface */
2220 if (wacom_wac1
->features
.touch_max
||
2221 (wacom_wac1
->features
.type
>= INTUOSHT
&&
2222 wacom_wac1
->features
.type
<= BAMBOO_PT
)) {
2223 wacom_wac2
->features
=
2224 *((struct wacom_features
*)id
->driver_data
);
2225 wacom_wac2
->pid
= wacom_wac
->pid
;
2227 error
= wacom_parse_and_register(wacom2
, true);
2232 strlcpy(wacom_wac
->name
, wacom_wac1
->name
,
2233 sizeof(wacom_wac
->name
));
2234 error
= wacom_initialize_battery(wacom
);
2242 wacom_release_resources(wacom1
);
2243 wacom_release_resources(wacom2
);
2247 static void wacom_remote_destroy_one(struct wacom
*wacom
, unsigned int index
)
2249 struct wacom_remote
*remote
= wacom
->remote
;
2250 u32 serial
= remote
->remotes
[index
].serial
;
2252 unsigned long flags
;
2254 spin_lock_irqsave(&remote
->remote_lock
, flags
);
2255 remote
->remotes
[index
].registered
= false;
2256 spin_unlock_irqrestore(&remote
->remote_lock
, flags
);
2258 if (remote
->remotes
[index
].battery
.battery
)
2259 devres_release_group(&wacom
->hdev
->dev
,
2260 &remote
->remotes
[index
].battery
.bat_desc
);
2262 if (remote
->remotes
[index
].group
.name
)
2263 devres_release_group(&wacom
->hdev
->dev
,
2264 &remote
->remotes
[index
]);
2266 for (i
= 0; i
< WACOM_MAX_REMOTES
; i
++) {
2267 if (remote
->remotes
[i
].serial
== serial
) {
2268 remote
->remotes
[i
].serial
= 0;
2269 remote
->remotes
[i
].group
.name
= NULL
;
2270 remote
->remotes
[i
].registered
= false;
2271 remote
->remotes
[i
].battery
.battery
= NULL
;
2272 wacom
->led
.groups
[i
].select
= WACOM_STATUS_UNKNOWN
;
2277 static int wacom_remote_create_one(struct wacom
*wacom
, u32 serial
,
2280 struct wacom_remote
*remote
= wacom
->remote
;
2281 struct device
*dev
= &wacom
->hdev
->dev
;
2284 /* A remote can pair more than once with an EKR,
2285 * check to make sure this serial isn't already paired.
2287 for (k
= 0; k
< WACOM_MAX_REMOTES
; k
++) {
2288 if (remote
->remotes
[k
].serial
== serial
)
2292 if (k
< WACOM_MAX_REMOTES
) {
2293 remote
->remotes
[index
].serial
= serial
;
2297 if (!devres_open_group(dev
, &remote
->remotes
[index
], GFP_KERNEL
))
2300 error
= wacom_remote_create_attr_group(wacom
, serial
, index
);
2304 remote
->remotes
[index
].input
= wacom_allocate_input(wacom
);
2305 if (!remote
->remotes
[index
].input
) {
2309 remote
->remotes
[index
].input
->uniq
= remote
->remotes
[index
].group
.name
;
2310 remote
->remotes
[index
].input
->name
= wacom
->wacom_wac
.pad_name
;
2312 if (!remote
->remotes
[index
].input
->name
) {
2317 error
= wacom_setup_pad_input_capabilities(remote
->remotes
[index
].input
,
2322 remote
->remotes
[index
].serial
= serial
;
2324 error
= input_register_device(remote
->remotes
[index
].input
);
2328 error
= wacom_led_groups_alloc_and_register_one(
2329 &remote
->remotes
[index
].input
->dev
,
2330 wacom
, index
, 3, true);
2334 remote
->remotes
[index
].registered
= true;
2336 devres_close_group(dev
, &remote
->remotes
[index
]);
2340 devres_release_group(dev
, &remote
->remotes
[index
]);
2341 remote
->remotes
[index
].serial
= 0;
2345 static int wacom_remote_attach_battery(struct wacom
*wacom
, int index
)
2347 struct wacom_remote
*remote
= wacom
->remote
;
2350 if (!remote
->remotes
[index
].registered
)
2353 if (remote
->remotes
[index
].battery
.battery
)
2356 if (wacom
->led
.groups
[index
].select
== WACOM_STATUS_UNKNOWN
)
2359 error
= __wacom_initialize_battery(wacom
,
2360 &wacom
->remote
->remotes
[index
].battery
);
2367 static void wacom_remote_work(struct work_struct
*work
)
2369 struct wacom
*wacom
= container_of(work
, struct wacom
, remote_work
);
2370 struct wacom_remote
*remote
= wacom
->remote
;
2371 struct wacom_remote_data data
;
2372 unsigned long flags
;
2377 spin_lock_irqsave(&remote
->remote_lock
, flags
);
2379 count
= kfifo_out(&remote
->remote_fifo
, &data
, sizeof(data
));
2381 if (count
!= sizeof(data
)) {
2382 hid_err(wacom
->hdev
,
2383 "workitem triggered without status available\n");
2384 spin_unlock_irqrestore(&remote
->remote_lock
, flags
);
2388 if (!kfifo_is_empty(&remote
->remote_fifo
))
2389 wacom_schedule_work(&wacom
->wacom_wac
, WACOM_WORKER_REMOTE
);
2391 spin_unlock_irqrestore(&remote
->remote_lock
, flags
);
2393 for (i
= 0; i
< WACOM_MAX_REMOTES
; i
++) {
2394 serial
= data
.remote
[i
].serial
;
2395 if (data
.remote
[i
].connected
) {
2397 if (remote
->remotes
[i
].serial
== serial
) {
2398 wacom_remote_attach_battery(wacom
, i
);
2402 if (remote
->remotes
[i
].serial
)
2403 wacom_remote_destroy_one(wacom
, i
);
2405 wacom_remote_create_one(wacom
, serial
, i
);
2407 } else if (remote
->remotes
[i
].serial
) {
2408 wacom_remote_destroy_one(wacom
, i
);
2413 static int wacom_probe(struct hid_device
*hdev
,
2414 const struct hid_device_id
*id
)
2416 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
2417 struct usb_device
*dev
= interface_to_usbdev(intf
);
2418 struct wacom
*wacom
;
2419 struct wacom_wac
*wacom_wac
;
2420 struct wacom_features
*features
;
2423 if (!id
->driver_data
)
2426 hdev
->quirks
|= HID_QUIRK_NO_INIT_REPORTS
;
2428 /* hid-core sets this quirk for the boot interface */
2429 hdev
->quirks
&= ~HID_QUIRK_NOGET
;
2431 wacom
= devm_kzalloc(&hdev
->dev
, sizeof(struct wacom
), GFP_KERNEL
);
2435 hid_set_drvdata(hdev
, wacom
);
2438 wacom_wac
= &wacom
->wacom_wac
;
2439 wacom_wac
->features
= *((struct wacom_features
*)id
->driver_data
);
2440 features
= &wacom_wac
->features
;
2442 if (features
->check_for_hid_type
&& features
->hid_type
!= hdev
->type
) {
2447 wacom_wac
->hid_data
.inputmode
= -1;
2448 wacom_wac
->mode_report
= -1;
2450 wacom
->usbdev
= dev
;
2452 mutex_init(&wacom
->lock
);
2453 INIT_WORK(&wacom
->wireless_work
, wacom_wireless_work
);
2454 INIT_WORK(&wacom
->battery_work
, wacom_battery_work
);
2455 INIT_WORK(&wacom
->remote_work
, wacom_remote_work
);
2457 /* ask for the report descriptor to be loaded by HID */
2458 error
= hid_parse(hdev
);
2460 hid_err(hdev
, "parse failed\n");
2464 error
= wacom_parse_and_register(wacom
, false);
2468 if (hdev
->bus
== BUS_BLUETOOTH
) {
2469 error
= device_create_file(&hdev
->dev
, &dev_attr_speed
);
2472 "can't create sysfs speed attribute err: %d\n",
2479 hid_set_drvdata(hdev
, NULL
);
2483 static void wacom_remove(struct hid_device
*hdev
)
2485 struct wacom
*wacom
= hid_get_drvdata(hdev
);
2486 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
2487 struct wacom_features
*features
= &wacom_wac
->features
;
2489 if (features
->device_type
& WACOM_DEVICETYPE_WL_MONITOR
)
2494 cancel_work_sync(&wacom
->wireless_work
);
2495 cancel_work_sync(&wacom
->battery_work
);
2496 cancel_work_sync(&wacom
->remote_work
);
2497 if (hdev
->bus
== BUS_BLUETOOTH
)
2498 device_remove_file(&hdev
->dev
, &dev_attr_speed
);
2500 hid_set_drvdata(hdev
, NULL
);
2504 static int wacom_resume(struct hid_device
*hdev
)
2506 struct wacom
*wacom
= hid_get_drvdata(hdev
);
2507 struct wacom_features
*features
= &wacom
->wacom_wac
.features
;
2509 mutex_lock(&wacom
->lock
);
2511 /* switch to wacom mode first */
2512 wacom_query_tablet_data(hdev
, features
);
2513 wacom_led_control(wacom
);
2515 mutex_unlock(&wacom
->lock
);
2520 static int wacom_reset_resume(struct hid_device
*hdev
)
2522 return wacom_resume(hdev
);
2524 #endif /* CONFIG_PM */
2526 static struct hid_driver wacom_driver
= {
2528 .id_table
= wacom_ids
,
2529 .probe
= wacom_probe
,
2530 .remove
= wacom_remove
,
2531 .report
= wacom_wac_report
,
2533 .resume
= wacom_resume
,
2534 .reset_resume
= wacom_reset_resume
,
2536 .raw_event
= wacom_raw_event
,
2538 module_hid_driver(wacom_driver
);
2540 MODULE_VERSION(DRIVER_VERSION
);
2541 MODULE_AUTHOR(DRIVER_AUTHOR
);
2542 MODULE_DESCRIPTION(DRIVER_DESC
);
2543 MODULE_LICENSE(DRIVER_LICENSE
);