1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * drivers/input/tablet/wacom_sys.c
5 * USB Wacom tablet support - system specific code
11 #include "wacom_wac.h"
13 #include <linux/input/mt.h>
15 #define WAC_MSG_RETRIES 5
16 #define WAC_CMD_RETRIES 10
18 #define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
19 #define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)
20 #define DEV_ATTR_RO_PERM (S_IRUSR | S_IRGRP)
22 static int wacom_get_report(struct hid_device
*hdev
, u8 type
, u8
*buf
,
23 size_t size
, unsigned int retries
)
28 retval
= hid_hw_raw_request(hdev
, buf
[0], buf
, size
, type
,
30 } while ((retval
== -ETIMEDOUT
|| retval
== -EAGAIN
) && --retries
);
33 hid_err(hdev
, "wacom_get_report: ran out of retries "
34 "(last error = %d)\n", retval
);
39 static int wacom_set_report(struct hid_device
*hdev
, u8 type
, u8
*buf
,
40 size_t size
, unsigned int retries
)
45 retval
= hid_hw_raw_request(hdev
, buf
[0], buf
, size
, type
,
47 } while ((retval
== -ETIMEDOUT
|| retval
== -EAGAIN
) && --retries
);
50 hid_err(hdev
, "wacom_set_report: ran out of retries "
51 "(last error = %d)\n", retval
);
56 static void wacom_wac_queue_insert(struct hid_device
*hdev
,
57 struct kfifo_rec_ptr_2
*fifo
,
58 u8
*raw_data
, int size
)
62 while (kfifo_avail(fifo
) < size
) {
64 hid_warn(hdev
, "%s: kfifo has filled, starting to drop events\n", __func__
);
70 kfifo_in(fifo
, raw_data
, size
);
73 static void wacom_wac_queue_flush(struct hid_device
*hdev
,
74 struct kfifo_rec_ptr_2
*fifo
)
76 while (!kfifo_is_empty(fifo
)) {
77 u8 buf
[WACOM_PKGLEN_MAX
];
81 size
= kfifo_out(fifo
, buf
, sizeof(buf
));
82 err
= hid_report_raw_event(hdev
, HID_INPUT_REPORT
, buf
, size
, false);
84 hid_warn(hdev
, "%s: unable to flush event due to error %d\n",
90 static int wacom_wac_pen_serial_enforce(struct hid_device
*hdev
,
91 struct hid_report
*report
, u8
*raw_data
, int report_size
)
93 struct wacom
*wacom
= hid_get_drvdata(hdev
);
94 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
95 struct wacom_features
*features
= &wacom_wac
->features
;
100 if (wacom_wac
->serial
[0] || !(features
->quirks
& WACOM_QUIRK_TOOLSERIAL
))
103 /* Queue events which have invalid tool type or serial number */
104 for (i
= 0; i
< report
->maxfield
; i
++) {
105 for (j
= 0; j
< report
->field
[i
]->maxusage
; j
++) {
106 struct hid_field
*field
= report
->field
[i
];
107 struct hid_usage
*usage
= &field
->usage
[j
];
108 unsigned int equivalent_usage
= wacom_equivalent_usage(usage
->hid
);
113 if (equivalent_usage
!= HID_DG_INRANGE
&&
114 equivalent_usage
!= HID_DG_TOOLSERIALNUMBER
&&
115 equivalent_usage
!= WACOM_HID_WD_SERIALHI
&&
116 equivalent_usage
!= WACOM_HID_WD_TOOLTYPE
)
119 offset
= field
->report_offset
;
120 size
= field
->report_size
;
121 value
= hid_field_extract(hdev
, raw_data
+1, offset
+ j
* size
, size
);
123 /* If we go out of range, we need to flush the queue ASAP */
124 if (equivalent_usage
== HID_DG_INRANGE
)
129 switch (equivalent_usage
) {
130 case HID_DG_TOOLSERIALNUMBER
:
131 wacom_wac
->serial
[0] = value
;
134 case WACOM_HID_WD_SERIALHI
:
135 wacom_wac
->serial
[0] |= ((__u64
)value
) << 32;
138 case WACOM_HID_WD_TOOLTYPE
:
139 wacom_wac
->id
[0] = value
;
150 wacom_wac_queue_flush(hdev
, &wacom_wac
->pen_fifo
);
152 wacom_wac_queue_insert(hdev
, &wacom_wac
->pen_fifo
,
153 raw_data
, report_size
);
155 return insert
&& !flush
;
158 static int wacom_raw_event(struct hid_device
*hdev
, struct hid_report
*report
,
159 u8
*raw_data
, int size
)
161 struct wacom
*wacom
= hid_get_drvdata(hdev
);
163 if (size
> WACOM_PKGLEN_MAX
)
166 if (wacom_wac_pen_serial_enforce(hdev
, report
, raw_data
, size
))
169 memcpy(wacom
->wacom_wac
.data
, raw_data
, size
);
171 wacom_wac_irq(&wacom
->wacom_wac
, size
);
176 static int wacom_open(struct input_dev
*dev
)
178 struct wacom
*wacom
= input_get_drvdata(dev
);
180 return hid_hw_open(wacom
->hdev
);
183 static void wacom_close(struct input_dev
*dev
)
185 struct wacom
*wacom
= input_get_drvdata(dev
);
188 * wacom->hdev should never be null, but surprisingly, I had the case
189 * once while unplugging the Wacom Wireless Receiver.
192 hid_hw_close(wacom
->hdev
);
196 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
198 static int wacom_calc_hid_res(int logical_extents
, int physical_extents
,
199 unsigned unit
, int exponent
)
201 struct hid_field field
= {
202 .logical_maximum
= logical_extents
,
203 .physical_maximum
= physical_extents
,
205 .unit_exponent
= exponent
,
208 return hidinput_calc_abs_res(&field
, ABS_X
);
211 static void wacom_hid_usage_quirk(struct hid_device
*hdev
,
212 struct hid_field
*field
, struct hid_usage
*usage
)
214 struct wacom
*wacom
= hid_get_drvdata(hdev
);
215 struct wacom_features
*features
= &wacom
->wacom_wac
.features
;
216 unsigned int equivalent_usage
= wacom_equivalent_usage(usage
->hid
);
219 * The Dell Canvas 27 needs to be switched to its vendor-defined
220 * report to provide the best resolution.
222 if (hdev
->vendor
== USB_VENDOR_ID_WACOM
&&
223 hdev
->product
== 0x4200 &&
224 field
->application
== HID_UP_MSVENDOR
) {
225 wacom
->wacom_wac
.mode_report
= field
->report
->id
;
226 wacom
->wacom_wac
.mode_value
= 2;
230 * ISDv4 devices which predate HID's adoption of the
231 * HID_DG_BARELSWITCH2 usage use 0x000D0000 in its
232 * position instead. We can accurately detect if a
233 * usage with that value should be HID_DG_BARRELSWITCH2
234 * based on the surrounding usages, which have remained
235 * constant across generations.
237 if (features
->type
== HID_GENERIC
&&
238 usage
->hid
== 0x000D0000 &&
239 field
->application
== HID_DG_PEN
&&
240 field
->physical
== HID_DG_STYLUS
) {
241 int i
= usage
->usage_index
;
243 if (i
-4 >= 0 && i
+1 < field
->maxusage
&&
244 field
->usage
[i
-4].hid
== HID_DG_TIPSWITCH
&&
245 field
->usage
[i
-3].hid
== HID_DG_BARRELSWITCH
&&
246 field
->usage
[i
-2].hid
== HID_DG_ERASER
&&
247 field
->usage
[i
-1].hid
== HID_DG_INVERT
&&
248 field
->usage
[i
+1].hid
== HID_DG_INRANGE
) {
249 usage
->hid
= HID_DG_BARRELSWITCH2
;
254 * Wacom's AES devices use different vendor-defined usages to
255 * report serial number information compared to their branded
256 * hardware. The usages are also sometimes ill-defined and do
257 * not have the correct logical min/max values set. Lets patch
258 * the descriptor to use the branded usage convention and fix
261 if (usage
->hid
== WACOM_HID_WT_SERIALNUMBER
&&
262 field
->report_size
== 16 &&
263 field
->index
+ 2 < field
->report
->maxfield
) {
264 struct hid_field
*a
= field
->report
->field
[field
->index
+ 1];
265 struct hid_field
*b
= field
->report
->field
[field
->index
+ 2];
267 if (a
->maxusage
> 0 &&
268 a
->usage
[0].hid
== HID_DG_TOOLSERIALNUMBER
&&
269 a
->report_size
== 32 &&
271 b
->usage
[0].hid
== 0xFF000000 &&
272 b
->report_size
== 8) {
273 features
->quirks
|= WACOM_QUIRK_AESPEN
;
274 usage
->hid
= WACOM_HID_WD_TOOLTYPE
;
275 field
->logical_minimum
= S16_MIN
;
276 field
->logical_maximum
= S16_MAX
;
277 a
->logical_minimum
= S32_MIN
;
278 a
->logical_maximum
= S32_MAX
;
279 b
->usage
[0].hid
= WACOM_HID_WD_SERIALHI
;
280 b
->logical_minimum
= 0;
281 b
->logical_maximum
= U8_MAX
;
285 /* 2nd-generation Intuos Pro Large has incorrect Y maximum */
286 if (hdev
->vendor
== USB_VENDOR_ID_WACOM
&&
287 hdev
->product
== 0x0358 &&
288 WACOM_PEN_FIELD(field
) &&
289 equivalent_usage
== HID_GD_Y
) {
290 field
->logical_maximum
= 43200;
294 static void wacom_feature_mapping(struct hid_device
*hdev
,
295 struct hid_field
*field
, struct hid_usage
*usage
)
297 struct wacom
*wacom
= hid_get_drvdata(hdev
);
298 struct wacom_features
*features
= &wacom
->wacom_wac
.features
;
299 struct hid_data
*hid_data
= &wacom
->wacom_wac
.hid_data
;
300 unsigned int equivalent_usage
= wacom_equivalent_usage(usage
->hid
);
305 wacom_hid_usage_quirk(hdev
, field
, usage
);
307 switch (equivalent_usage
) {
308 case WACOM_HID_WD_TOUCH_RING_SETTING
:
309 wacom
->generic_has_leds
= true;
311 case HID_DG_CONTACTMAX
:
312 /* leave touch_max as is if predefined */
313 if (!features
->touch_max
) {
315 n
= hid_report_len(field
->report
);
316 data
= hid_alloc_report_buf(field
->report
, GFP_KERNEL
);
319 data
[0] = field
->report
->id
;
320 ret
= wacom_get_report(hdev
, HID_FEATURE_REPORT
,
321 data
, n
, WAC_CMD_RETRIES
);
322 if (ret
== n
&& features
->type
== HID_GENERIC
) {
323 ret
= hid_report_raw_event(hdev
,
324 HID_FEATURE_REPORT
, data
, n
, 0);
325 } else if (ret
== 2 && features
->type
!= HID_GENERIC
) {
326 features
->touch_max
= data
[1];
328 features
->touch_max
= 16;
329 hid_warn(hdev
, "wacom_feature_mapping: "
330 "could not get HID_DG_CONTACTMAX, "
331 "defaulting to %d\n",
332 features
->touch_max
);
337 case HID_DG_INPUTMODE
:
338 /* Ignore if value index is out of bounds. */
339 if (usage
->usage_index
>= field
->report_count
) {
340 dev_err(&hdev
->dev
, "HID_DG_INPUTMODE out of range\n");
344 hid_data
->inputmode
= field
->report
->id
;
345 hid_data
->inputmode_index
= usage
->usage_index
;
348 case HID_UP_DIGITIZER
:
349 if (field
->report
->id
== 0x0B &&
350 (field
->application
== WACOM_HID_G9_PEN
||
351 field
->application
== WACOM_HID_G11_PEN
)) {
352 wacom
->wacom_wac
.mode_report
= field
->report
->id
;
353 wacom
->wacom_wac
.mode_value
= 0;
357 case WACOM_HID_WD_DATAMODE
:
358 wacom
->wacom_wac
.mode_report
= field
->report
->id
;
359 wacom
->wacom_wac
.mode_value
= 2;
362 case WACOM_HID_UP_G9
:
363 case WACOM_HID_UP_G11
:
364 if (field
->report
->id
== 0x03 &&
365 (field
->application
== WACOM_HID_G9_TOUCHSCREEN
||
366 field
->application
== WACOM_HID_G11_TOUCHSCREEN
)) {
367 wacom
->wacom_wac
.mode_report
= field
->report
->id
;
368 wacom
->wacom_wac
.mode_value
= 0;
371 case WACOM_HID_WD_OFFSETLEFT
:
372 case WACOM_HID_WD_OFFSETTOP
:
373 case WACOM_HID_WD_OFFSETRIGHT
:
374 case WACOM_HID_WD_OFFSETBOTTOM
:
376 n
= hid_report_len(field
->report
);
377 data
= hid_alloc_report_buf(field
->report
, GFP_KERNEL
);
380 data
[0] = field
->report
->id
;
381 ret
= wacom_get_report(hdev
, HID_FEATURE_REPORT
,
382 data
, n
, WAC_CMD_RETRIES
);
384 ret
= hid_report_raw_event(hdev
, HID_FEATURE_REPORT
,
387 hid_warn(hdev
, "%s: could not retrieve sensor offsets\n",
396 * Interface Descriptor of wacom devices can be incomplete and
397 * inconsistent so wacom_features table is used to store stylus
398 * device's packet lengths, various maximum values, and tablet
399 * resolution based on product ID's.
401 * For devices that contain 2 interfaces, wacom_features table is
402 * inaccurate for the touch interface. Since the Interface Descriptor
403 * for touch interfaces has pretty complete data, this function exists
404 * to query tablet for this missing information instead of hard coding in
405 * an additional table.
407 * A typical Interface Descriptor for a stylus will contain a
408 * boot mouse application collection that is not of interest and this
409 * function will ignore it.
411 * It also contains a digitizer application collection that also is not
412 * of interest since any information it contains would be duplicate
413 * of what is in wacom_features. Usually it defines a report of an array
414 * of bytes that could be used as max length of the stylus packet returned.
415 * If it happens to define a Digitizer-Stylus Physical Collection then
416 * the X and Y logical values contain valid data but it is ignored.
418 * A typical Interface Descriptor for a touch interface will contain a
419 * Digitizer-Finger Physical Collection which will define both logical
420 * X/Y maximum as well as the physical size of tablet. Since touch
421 * interfaces haven't supported pressure or distance, this is enough
422 * information to override invalid values in the wacom_features table.
424 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
425 * data. We deal with them after returning from this function.
427 static void wacom_usage_mapping(struct hid_device
*hdev
,
428 struct hid_field
*field
, struct hid_usage
*usage
)
430 struct wacom
*wacom
= hid_get_drvdata(hdev
);
431 struct wacom_features
*features
= &wacom
->wacom_wac
.features
;
432 bool finger
= WACOM_FINGER_FIELD(field
);
433 bool pen
= WACOM_PEN_FIELD(field
);
434 unsigned equivalent_usage
= wacom_equivalent_usage(usage
->hid
);
437 * Requiring Stylus Usage will ignore boot mouse
438 * X/Y values and some cases of invalid Digitizer X/Y
439 * values commonly reported.
442 features
->device_type
|= WACOM_DEVICETYPE_PEN
;
444 features
->device_type
|= WACOM_DEVICETYPE_TOUCH
;
448 wacom_hid_usage_quirk(hdev
, field
, usage
);
450 switch (equivalent_usage
) {
452 features
->x_max
= field
->logical_maximum
;
454 features
->x_phy
= field
->physical_maximum
;
455 if ((features
->type
!= BAMBOO_PT
) &&
456 (features
->type
!= BAMBOO_TOUCH
)) {
457 features
->unit
= field
->unit
;
458 features
->unitExpo
= field
->unit_exponent
;
463 features
->y_max
= field
->logical_maximum
;
465 features
->y_phy
= field
->physical_maximum
;
466 if ((features
->type
!= BAMBOO_PT
) &&
467 (features
->type
!= BAMBOO_TOUCH
)) {
468 features
->unit
= field
->unit
;
469 features
->unitExpo
= field
->unit_exponent
;
473 case HID_DG_TIPPRESSURE
:
475 features
->pressure_max
= field
->logical_maximum
;
479 if (features
->type
== HID_GENERIC
)
480 wacom_wac_usage_mapping(hdev
, field
, usage
);
483 static void wacom_post_parse_hid(struct hid_device
*hdev
,
484 struct wacom_features
*features
)
486 struct wacom
*wacom
= hid_get_drvdata(hdev
);
487 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
489 if (features
->type
== HID_GENERIC
) {
490 /* Any last-minute generic device setup */
491 if (wacom_wac
->has_mode_change
) {
492 if (wacom_wac
->is_direct_mode
)
493 features
->device_type
|= WACOM_DEVICETYPE_DIRECT
;
495 features
->device_type
&= ~WACOM_DEVICETYPE_DIRECT
;
498 if (features
->touch_max
> 1) {
499 if (features
->device_type
& WACOM_DEVICETYPE_DIRECT
)
500 input_mt_init_slots(wacom_wac
->touch_input
,
501 wacom_wac
->features
.touch_max
,
504 input_mt_init_slots(wacom_wac
->touch_input
,
505 wacom_wac
->features
.touch_max
,
511 static void wacom_parse_hid(struct hid_device
*hdev
,
512 struct wacom_features
*features
)
514 struct hid_report_enum
*rep_enum
;
515 struct hid_report
*hreport
;
518 /* check features first */
519 rep_enum
= &hdev
->report_enum
[HID_FEATURE_REPORT
];
520 list_for_each_entry(hreport
, &rep_enum
->report_list
, list
) {
521 for (i
= 0; i
< hreport
->maxfield
; i
++) {
522 /* Ignore if report count is out of bounds. */
523 if (hreport
->field
[i
]->report_count
< 1)
526 for (j
= 0; j
< hreport
->field
[i
]->maxusage
; j
++) {
527 wacom_feature_mapping(hdev
, hreport
->field
[i
],
528 hreport
->field
[i
]->usage
+ j
);
533 /* now check the input usages */
534 rep_enum
= &hdev
->report_enum
[HID_INPUT_REPORT
];
535 list_for_each_entry(hreport
, &rep_enum
->report_list
, list
) {
537 if (!hreport
->maxfield
)
540 for (i
= 0; i
< hreport
->maxfield
; i
++)
541 for (j
= 0; j
< hreport
->field
[i
]->maxusage
; j
++)
542 wacom_usage_mapping(hdev
, hreport
->field
[i
],
543 hreport
->field
[i
]->usage
+ j
);
546 wacom_post_parse_hid(hdev
, features
);
549 static int wacom_hid_set_device_mode(struct hid_device
*hdev
)
551 struct wacom
*wacom
= hid_get_drvdata(hdev
);
552 struct hid_data
*hid_data
= &wacom
->wacom_wac
.hid_data
;
553 struct hid_report
*r
;
554 struct hid_report_enum
*re
;
556 if (hid_data
->inputmode
< 0)
559 re
= &(hdev
->report_enum
[HID_FEATURE_REPORT
]);
560 r
= re
->report_id_hash
[hid_data
->inputmode
];
562 r
->field
[0]->value
[hid_data
->inputmode_index
] = 2;
563 hid_hw_request(hdev
, r
, HID_REQ_SET_REPORT
);
568 static int wacom_set_device_mode(struct hid_device
*hdev
,
569 struct wacom_wac
*wacom_wac
)
572 struct hid_report
*r
;
573 struct hid_report_enum
*re
;
575 int error
= -ENOMEM
, limit
= 0;
577 if (wacom_wac
->mode_report
< 0)
580 re
= &(hdev
->report_enum
[HID_FEATURE_REPORT
]);
581 r
= re
->report_id_hash
[wacom_wac
->mode_report
];
585 rep_data
= hid_alloc_report_buf(r
, GFP_KERNEL
);
589 length
= hid_report_len(r
);
592 rep_data
[0] = wacom_wac
->mode_report
;
593 rep_data
[1] = wacom_wac
->mode_value
;
595 error
= wacom_set_report(hdev
, HID_FEATURE_REPORT
, rep_data
,
598 error
= wacom_get_report(hdev
, HID_FEATURE_REPORT
,
599 rep_data
, length
, 1);
600 } while (error
>= 0 &&
601 rep_data
[1] != wacom_wac
->mode_report
&&
602 limit
++ < WAC_MSG_RETRIES
);
606 return error
< 0 ? error
: 0;
609 static int wacom_bt_query_tablet_data(struct hid_device
*hdev
, u8 speed
,
610 struct wacom_features
*features
)
612 struct wacom
*wacom
= hid_get_drvdata(hdev
);
616 switch (features
->type
) {
620 ret
= wacom_set_report(hdev
, HID_FEATURE_REPORT
, rep_data
, 2,
624 rep_data
[0] = speed
== 0 ? 0x05 : 0x06;
627 ret
= wacom_set_report(hdev
, HID_FEATURE_REPORT
,
631 wacom
->wacom_wac
.bt_high_speed
= speed
;
637 * Note that if the raw queries fail, it's not a hard failure
638 * and it is safe to continue
640 hid_warn(hdev
, "failed to poke device, command %d, err %d\n",
645 wacom
->wacom_wac
.bt_features
&= ~0x20;
647 wacom
->wacom_wac
.bt_features
|= 0x20;
650 rep_data
[1] = wacom
->wacom_wac
.bt_features
;
652 ret
= wacom_set_report(hdev
, HID_FEATURE_REPORT
, rep_data
, 2,
655 wacom
->wacom_wac
.bt_high_speed
= speed
;
663 * Switch the tablet into its most-capable mode. Wacom tablets are
664 * typically configured to power-up in a mode which sends mouse-like
665 * reports to the OS. To get absolute position, pressure data, etc.
666 * from the tablet, it is necessary to switch the tablet out of this
667 * mode and into one which sends the full range of tablet data.
669 static int _wacom_query_tablet_data(struct wacom
*wacom
)
671 struct hid_device
*hdev
= wacom
->hdev
;
672 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
673 struct wacom_features
*features
= &wacom_wac
->features
;
675 if (hdev
->bus
== BUS_BLUETOOTH
)
676 return wacom_bt_query_tablet_data(hdev
, 1, features
);
678 if (features
->type
!= HID_GENERIC
) {
679 if (features
->device_type
& WACOM_DEVICETYPE_TOUCH
) {
680 if (features
->type
> TABLETPC
) {
681 /* MT Tablet PC touch */
682 wacom_wac
->mode_report
= 3;
683 wacom_wac
->mode_value
= 4;
684 } else if (features
->type
== WACOM_24HDT
) {
685 wacom_wac
->mode_report
= 18;
686 wacom_wac
->mode_value
= 2;
687 } else if (features
->type
== WACOM_27QHDT
) {
688 wacom_wac
->mode_report
= 131;
689 wacom_wac
->mode_value
= 2;
690 } else if (features
->type
== BAMBOO_PAD
) {
691 wacom_wac
->mode_report
= 2;
692 wacom_wac
->mode_value
= 2;
694 } else if (features
->device_type
& WACOM_DEVICETYPE_PEN
) {
695 if (features
->type
<= BAMBOO_PT
) {
696 wacom_wac
->mode_report
= 2;
697 wacom_wac
->mode_value
= 2;
702 wacom_set_device_mode(hdev
, wacom_wac
);
704 if (features
->type
== HID_GENERIC
)
705 return wacom_hid_set_device_mode(hdev
);
710 static void wacom_retrieve_hid_descriptor(struct hid_device
*hdev
,
711 struct wacom_features
*features
)
713 struct wacom
*wacom
= hid_get_drvdata(hdev
);
714 struct usb_interface
*intf
= wacom
->intf
;
716 /* default features */
717 features
->x_fuzz
= 4;
718 features
->y_fuzz
= 4;
719 features
->pressure_fuzz
= 0;
720 features
->distance_fuzz
= 1;
721 features
->tilt_fuzz
= 1;
724 * The wireless device HID is basic and layout conflicts with
725 * other tablets (monitor and touch interface can look like pen).
726 * Skip the query for this type and modify defaults based on
729 if (features
->type
== WIRELESS
) {
730 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
== 0)
731 features
->device_type
= WACOM_DEVICETYPE_WL_MONITOR
;
733 features
->device_type
= WACOM_DEVICETYPE_NONE
;
737 wacom_parse_hid(hdev
, features
);
740 struct wacom_hdev_data
{
741 struct list_head list
;
743 struct hid_device
*dev
;
744 struct wacom_shared shared
;
747 static LIST_HEAD(wacom_udev_list
);
748 static DEFINE_MUTEX(wacom_udev_list_lock
);
750 static bool wacom_are_sibling(struct hid_device
*hdev
,
751 struct hid_device
*sibling
)
753 struct wacom
*wacom
= hid_get_drvdata(hdev
);
754 struct wacom_features
*features
= &wacom
->wacom_wac
.features
;
755 struct wacom
*sibling_wacom
= hid_get_drvdata(sibling
);
756 struct wacom_features
*sibling_features
= &sibling_wacom
->wacom_wac
.features
;
757 __u32 oVid
= features
->oVid
? features
->oVid
: hdev
->vendor
;
758 __u32 oPid
= features
->oPid
? features
->oPid
: hdev
->product
;
760 /* The defined oVid/oPid must match that of the sibling */
761 if (features
->oVid
!= HID_ANY_ID
&& sibling
->vendor
!= oVid
)
763 if (features
->oPid
!= HID_ANY_ID
&& sibling
->product
!= oPid
)
767 * Devices with the same VID/PID must share the same physical
768 * device path, while those with different VID/PID must share
769 * the same physical parent device path.
771 if (hdev
->vendor
== sibling
->vendor
&& hdev
->product
== sibling
->product
) {
772 if (!hid_compare_device_paths(hdev
, sibling
, '/'))
775 if (!hid_compare_device_paths(hdev
, sibling
, '.'))
779 /* Skip the remaining heuristics unless you are a HID_GENERIC device */
780 if (features
->type
!= HID_GENERIC
)
784 * Direct-input devices may not be siblings of indirect-input
787 if ((features
->device_type
& WACOM_DEVICETYPE_DIRECT
) &&
788 !(sibling_features
->device_type
& WACOM_DEVICETYPE_DIRECT
))
792 * Indirect-input devices may not be siblings of direct-input
795 if (!(features
->device_type
& WACOM_DEVICETYPE_DIRECT
) &&
796 (sibling_features
->device_type
& WACOM_DEVICETYPE_DIRECT
))
799 /* Pen devices may only be siblings of touch devices */
800 if ((features
->device_type
& WACOM_DEVICETYPE_PEN
) &&
801 !(sibling_features
->device_type
& WACOM_DEVICETYPE_TOUCH
))
804 /* Touch devices may only be siblings of pen devices */
805 if ((features
->device_type
& WACOM_DEVICETYPE_TOUCH
) &&
806 !(sibling_features
->device_type
& WACOM_DEVICETYPE_PEN
))
810 * No reason could be found for these two devices to NOT be
811 * siblings, so there's a good chance they ARE siblings
816 static struct wacom_hdev_data
*wacom_get_hdev_data(struct hid_device
*hdev
)
818 struct wacom_hdev_data
*data
;
820 /* Try to find an already-probed interface from the same device */
821 list_for_each_entry(data
, &wacom_udev_list
, list
) {
822 if (hid_compare_device_paths(hdev
, data
->dev
, '/')) {
823 kref_get(&data
->kref
);
828 /* Fallback to finding devices that appear to be "siblings" */
829 list_for_each_entry(data
, &wacom_udev_list
, list
) {
830 if (wacom_are_sibling(hdev
, data
->dev
)) {
831 kref_get(&data
->kref
);
839 static void wacom_release_shared_data(struct kref
*kref
)
841 struct wacom_hdev_data
*data
=
842 container_of(kref
, struct wacom_hdev_data
, kref
);
844 mutex_lock(&wacom_udev_list_lock
);
845 list_del(&data
->list
);
846 mutex_unlock(&wacom_udev_list_lock
);
851 static void wacom_remove_shared_data(void *res
)
853 struct wacom
*wacom
= res
;
854 struct wacom_hdev_data
*data
;
855 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
857 if (wacom_wac
->shared
) {
858 data
= container_of(wacom_wac
->shared
, struct wacom_hdev_data
,
861 if (wacom_wac
->shared
->touch
== wacom
->hdev
)
862 wacom_wac
->shared
->touch
= NULL
;
863 else if (wacom_wac
->shared
->pen
== wacom
->hdev
)
864 wacom_wac
->shared
->pen
= NULL
;
866 kref_put(&data
->kref
, wacom_release_shared_data
);
867 wacom_wac
->shared
= NULL
;
871 static int wacom_add_shared_data(struct hid_device
*hdev
)
873 struct wacom
*wacom
= hid_get_drvdata(hdev
);
874 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
875 struct wacom_hdev_data
*data
;
878 mutex_lock(&wacom_udev_list_lock
);
880 data
= wacom_get_hdev_data(hdev
);
882 data
= kzalloc(sizeof(struct wacom_hdev_data
), GFP_KERNEL
);
888 kref_init(&data
->kref
);
890 list_add_tail(&data
->list
, &wacom_udev_list
);
893 wacom_wac
->shared
= &data
->shared
;
895 retval
= devm_add_action(&hdev
->dev
, wacom_remove_shared_data
, wacom
);
897 mutex_unlock(&wacom_udev_list_lock
);
898 wacom_remove_shared_data(wacom
);
902 if (wacom_wac
->features
.device_type
& WACOM_DEVICETYPE_TOUCH
)
903 wacom_wac
->shared
->touch
= hdev
;
904 else if (wacom_wac
->features
.device_type
& WACOM_DEVICETYPE_PEN
)
905 wacom_wac
->shared
->pen
= hdev
;
908 mutex_unlock(&wacom_udev_list_lock
);
912 static int wacom_led_control(struct wacom
*wacom
)
916 unsigned char report_id
= WAC_CMD_LED_CONTROL
;
919 if (!wacom
->led
.groups
)
922 if (wacom
->wacom_wac
.features
.type
== REMOTE
)
925 if (wacom
->wacom_wac
.pid
) { /* wireless connected */
926 report_id
= WAC_CMD_WL_LED_CONTROL
;
929 else if (wacom
->wacom_wac
.features
.type
== INTUOSP2_BT
) {
930 report_id
= WAC_CMD_WL_INTUOSP2
;
933 buf
= kzalloc(buf_size
, GFP_KERNEL
);
937 if (wacom
->wacom_wac
.features
.type
== HID_GENERIC
) {
938 buf
[0] = WAC_CMD_LED_CONTROL_GENERIC
;
939 buf
[1] = wacom
->led
.llv
;
940 buf
[2] = wacom
->led
.groups
[0].select
& 0x03;
942 } else if ((wacom
->wacom_wac
.features
.type
>= INTUOS5S
&&
943 wacom
->wacom_wac
.features
.type
<= INTUOSPL
)) {
945 * Touch Ring and crop mark LED luminance may take on
946 * one of four values:
947 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
949 int ring_led
= wacom
->led
.groups
[0].select
& 0x03;
950 int ring_lum
= (((wacom
->led
.llv
& 0x60) >> 5) - 1) & 0x03;
952 unsigned char led_bits
= (crop_lum
<< 4) | (ring_lum
<< 2) | (ring_led
);
955 if (wacom
->wacom_wac
.pid
) {
956 wacom_get_report(wacom
->hdev
, HID_FEATURE_REPORT
,
957 buf
, buf_size
, WAC_CMD_RETRIES
);
963 else if (wacom
->wacom_wac
.features
.type
== INTUOSP2_BT
) {
965 buf
[4] = 100; // Power Connection LED (ORANGE)
966 buf
[5] = 100; // BT Connection LED (BLUE)
967 buf
[6] = 100; // Paper Mode (RED?)
968 buf
[7] = 100; // Paper Mode (GREEN?)
969 buf
[8] = 100; // Paper Mode (BLUE?)
970 buf
[9] = wacom
->led
.llv
;
971 buf
[10] = wacom
->led
.groups
[0].select
& 0x03;
974 int led
= wacom
->led
.groups
[0].select
| 0x4;
976 if (wacom
->wacom_wac
.features
.type
== WACOM_21UX2
||
977 wacom
->wacom_wac
.features
.type
== WACOM_24HD
)
978 led
|= (wacom
->led
.groups
[1].select
<< 4) | 0x40;
982 buf
[2] = wacom
->led
.llv
;
983 buf
[3] = wacom
->led
.hlv
;
984 buf
[4] = wacom
->led
.img_lum
;
987 retval
= wacom_set_report(wacom
->hdev
, HID_FEATURE_REPORT
, buf
, buf_size
,
994 static int wacom_led_putimage(struct wacom
*wacom
, int button_id
, u8 xfer_id
,
995 const unsigned len
, const void *img
)
999 const unsigned chunk_len
= len
/ 4; /* 4 chunks are needed to be sent */
1001 buf
= kzalloc(chunk_len
+ 3 , GFP_KERNEL
);
1005 /* Send 'start' command */
1006 buf
[0] = WAC_CMD_ICON_START
;
1008 retval
= wacom_set_report(wacom
->hdev
, HID_FEATURE_REPORT
, buf
, 2,
1014 buf
[1] = button_id
& 0x07;
1015 for (i
= 0; i
< 4; i
++) {
1017 memcpy(buf
+ 3, img
+ i
* chunk_len
, chunk_len
);
1019 retval
= wacom_set_report(wacom
->hdev
, HID_FEATURE_REPORT
,
1020 buf
, chunk_len
+ 3, WAC_CMD_RETRIES
);
1026 buf
[0] = WAC_CMD_ICON_START
;
1028 wacom_set_report(wacom
->hdev
, HID_FEATURE_REPORT
, buf
, 2,
1036 static ssize_t
wacom_led_select_store(struct device
*dev
, int set_id
,
1037 const char *buf
, size_t count
)
1039 struct hid_device
*hdev
= to_hid_device(dev
);
1040 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1044 err
= kstrtouint(buf
, 10, &id
);
1048 mutex_lock(&wacom
->lock
);
1050 wacom
->led
.groups
[set_id
].select
= id
& 0x3;
1051 err
= wacom_led_control(wacom
);
1053 mutex_unlock(&wacom
->lock
);
1055 return err
< 0 ? err
: count
;
1058 #define DEVICE_LED_SELECT_ATTR(SET_ID) \
1059 static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
1060 struct device_attribute *attr, const char *buf, size_t count) \
1062 return wacom_led_select_store(dev, SET_ID, buf, count); \
1064 static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
1065 struct device_attribute *attr, char *buf) \
1067 struct hid_device *hdev = to_hid_device(dev);\
1068 struct wacom *wacom = hid_get_drvdata(hdev); \
1069 return scnprintf(buf, PAGE_SIZE, "%d\n", \
1070 wacom->led.groups[SET_ID].select); \
1072 static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM, \
1073 wacom_led##SET_ID##_select_show, \
1074 wacom_led##SET_ID##_select_store)
1076 DEVICE_LED_SELECT_ATTR(0);
1077 DEVICE_LED_SELECT_ATTR(1);
1079 static ssize_t
wacom_luminance_store(struct wacom
*wacom
, u8
*dest
,
1080 const char *buf
, size_t count
)
1085 err
= kstrtouint(buf
, 10, &value
);
1089 mutex_lock(&wacom
->lock
);
1091 *dest
= value
& 0x7f;
1092 err
= wacom_led_control(wacom
);
1094 mutex_unlock(&wacom
->lock
);
1096 return err
< 0 ? err
: count
;
1099 #define DEVICE_LUMINANCE_ATTR(name, field) \
1100 static ssize_t wacom_##name##_luminance_store(struct device *dev, \
1101 struct device_attribute *attr, const char *buf, size_t count) \
1103 struct hid_device *hdev = to_hid_device(dev);\
1104 struct wacom *wacom = hid_get_drvdata(hdev); \
1106 return wacom_luminance_store(wacom, &wacom->led.field, \
1109 static ssize_t wacom_##name##_luminance_show(struct device *dev, \
1110 struct device_attribute *attr, char *buf) \
1112 struct wacom *wacom = dev_get_drvdata(dev); \
1113 return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field); \
1115 static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM, \
1116 wacom_##name##_luminance_show, \
1117 wacom_##name##_luminance_store)
1119 DEVICE_LUMINANCE_ATTR(status0
, llv
);
1120 DEVICE_LUMINANCE_ATTR(status1
, hlv
);
1121 DEVICE_LUMINANCE_ATTR(buttons
, img_lum
);
1123 static ssize_t
wacom_button_image_store(struct device
*dev
, int button_id
,
1124 const char *buf
, size_t count
)
1126 struct hid_device
*hdev
= to_hid_device(dev
);
1127 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1132 if (hdev
->bus
== BUS_BLUETOOTH
) {
1134 xfer_id
= WAC_CMD_ICON_BT_XFER
;
1137 xfer_id
= WAC_CMD_ICON_XFER
;
1143 mutex_lock(&wacom
->lock
);
1145 err
= wacom_led_putimage(wacom
, button_id
, xfer_id
, len
, buf
);
1147 mutex_unlock(&wacom
->lock
);
1149 return err
< 0 ? err
: count
;
1152 #define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
1153 static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
1154 struct device_attribute *attr, const char *buf, size_t count) \
1156 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
1158 static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM, \
1159 NULL, wacom_btnimg##BUTTON_ID##_store)
1161 DEVICE_BTNIMG_ATTR(0);
1162 DEVICE_BTNIMG_ATTR(1);
1163 DEVICE_BTNIMG_ATTR(2);
1164 DEVICE_BTNIMG_ATTR(3);
1165 DEVICE_BTNIMG_ATTR(4);
1166 DEVICE_BTNIMG_ATTR(5);
1167 DEVICE_BTNIMG_ATTR(6);
1168 DEVICE_BTNIMG_ATTR(7);
1170 static struct attribute
*cintiq_led_attrs
[] = {
1171 &dev_attr_status_led0_select
.attr
,
1172 &dev_attr_status_led1_select
.attr
,
1176 static const struct attribute_group cintiq_led_attr_group
= {
1177 .name
= "wacom_led",
1178 .attrs
= cintiq_led_attrs
,
1181 static struct attribute
*intuos4_led_attrs
[] = {
1182 &dev_attr_status0_luminance
.attr
,
1183 &dev_attr_status1_luminance
.attr
,
1184 &dev_attr_status_led0_select
.attr
,
1185 &dev_attr_buttons_luminance
.attr
,
1186 &dev_attr_button0_rawimg
.attr
,
1187 &dev_attr_button1_rawimg
.attr
,
1188 &dev_attr_button2_rawimg
.attr
,
1189 &dev_attr_button3_rawimg
.attr
,
1190 &dev_attr_button4_rawimg
.attr
,
1191 &dev_attr_button5_rawimg
.attr
,
1192 &dev_attr_button6_rawimg
.attr
,
1193 &dev_attr_button7_rawimg
.attr
,
1197 static const struct attribute_group intuos4_led_attr_group
= {
1198 .name
= "wacom_led",
1199 .attrs
= intuos4_led_attrs
,
1202 static struct attribute
*intuos5_led_attrs
[] = {
1203 &dev_attr_status0_luminance
.attr
,
1204 &dev_attr_status_led0_select
.attr
,
1208 static const struct attribute_group intuos5_led_attr_group
= {
1209 .name
= "wacom_led",
1210 .attrs
= intuos5_led_attrs
,
1213 static struct attribute
*generic_led_attrs
[] = {
1214 &dev_attr_status0_luminance
.attr
,
1215 &dev_attr_status_led0_select
.attr
,
1219 static const struct attribute_group generic_led_attr_group
= {
1220 .name
= "wacom_led",
1221 .attrs
= generic_led_attrs
,
1224 struct wacom_sysfs_group_devres
{
1225 const struct attribute_group
*group
;
1226 struct kobject
*root
;
1229 static void wacom_devm_sysfs_group_release(struct device
*dev
, void *res
)
1231 struct wacom_sysfs_group_devres
*devres
= res
;
1232 struct kobject
*kobj
= devres
->root
;
1234 dev_dbg(dev
, "%s: dropping reference to %s\n",
1235 __func__
, devres
->group
->name
);
1236 sysfs_remove_group(kobj
, devres
->group
);
1239 static int __wacom_devm_sysfs_create_group(struct wacom
*wacom
,
1240 struct kobject
*root
,
1241 const struct attribute_group
*group
)
1243 struct wacom_sysfs_group_devres
*devres
;
1246 devres
= devres_alloc(wacom_devm_sysfs_group_release
,
1247 sizeof(struct wacom_sysfs_group_devres
),
1252 devres
->group
= group
;
1253 devres
->root
= root
;
1255 error
= sysfs_create_group(devres
->root
, group
);
1257 devres_free(devres
);
1261 devres_add(&wacom
->hdev
->dev
, devres
);
1266 static int wacom_devm_sysfs_create_group(struct wacom
*wacom
,
1267 const struct attribute_group
*group
)
1269 return __wacom_devm_sysfs_create_group(wacom
, &wacom
->hdev
->dev
.kobj
,
1273 enum led_brightness
wacom_leds_brightness_get(struct wacom_led
*led
)
1275 struct wacom
*wacom
= led
->wacom
;
1277 if (wacom
->led
.max_hlv
)
1278 return led
->hlv
* LED_FULL
/ wacom
->led
.max_hlv
;
1280 if (wacom
->led
.max_llv
)
1281 return led
->llv
* LED_FULL
/ wacom
->led
.max_llv
;
1283 /* device doesn't support brightness tuning */
1287 static enum led_brightness
__wacom_led_brightness_get(struct led_classdev
*cdev
)
1289 struct wacom_led
*led
= container_of(cdev
, struct wacom_led
, cdev
);
1290 struct wacom
*wacom
= led
->wacom
;
1292 if (wacom
->led
.groups
[led
->group
].select
!= led
->id
)
1295 return wacom_leds_brightness_get(led
);
1298 static int wacom_led_brightness_set(struct led_classdev
*cdev
,
1299 enum led_brightness brightness
)
1301 struct wacom_led
*led
= container_of(cdev
, struct wacom_led
, cdev
);
1302 struct wacom
*wacom
= led
->wacom
;
1305 mutex_lock(&wacom
->lock
);
1307 if (!wacom
->led
.groups
|| (brightness
== LED_OFF
&&
1308 wacom
->led
.groups
[led
->group
].select
!= led
->id
)) {
1313 led
->llv
= wacom
->led
.llv
= wacom
->led
.max_llv
* brightness
/ LED_FULL
;
1314 led
->hlv
= wacom
->led
.hlv
= wacom
->led
.max_hlv
* brightness
/ LED_FULL
;
1316 wacom
->led
.groups
[led
->group
].select
= led
->id
;
1318 error
= wacom_led_control(wacom
);
1321 mutex_unlock(&wacom
->lock
);
1326 static void wacom_led_readonly_brightness_set(struct led_classdev
*cdev
,
1327 enum led_brightness brightness
)
1331 static int wacom_led_register_one(struct device
*dev
, struct wacom
*wacom
,
1332 struct wacom_led
*led
, unsigned int group
,
1333 unsigned int id
, bool read_only
)
1338 name
= devm_kasprintf(dev
, GFP_KERNEL
,
1347 led
->trigger
.name
= name
;
1348 error
= devm_led_trigger_register(dev
, &led
->trigger
);
1350 hid_err(wacom
->hdev
,
1351 "failed to register LED trigger %s: %d\n",
1352 led
->cdev
.name
, error
);
1360 led
->llv
= wacom
->led
.llv
;
1361 led
->hlv
= wacom
->led
.hlv
;
1362 led
->cdev
.name
= name
;
1363 led
->cdev
.max_brightness
= LED_FULL
;
1364 led
->cdev
.flags
= LED_HW_PLUGGABLE
;
1365 led
->cdev
.brightness_get
= __wacom_led_brightness_get
;
1367 led
->cdev
.brightness_set_blocking
= wacom_led_brightness_set
;
1368 led
->cdev
.default_trigger
= led
->cdev
.name
;
1370 led
->cdev
.brightness_set
= wacom_led_readonly_brightness_set
;
1373 error
= devm_led_classdev_register(dev
, &led
->cdev
);
1375 hid_err(wacom
->hdev
,
1376 "failed to register LED %s: %d\n",
1377 led
->cdev
.name
, error
);
1378 led
->cdev
.name
= NULL
;
1385 static void wacom_led_groups_release_one(void *data
)
1387 struct wacom_group_leds
*group
= data
;
1389 devres_release_group(group
->dev
, group
);
1392 static int wacom_led_groups_alloc_and_register_one(struct device
*dev
,
1393 struct wacom
*wacom
,
1394 int group_id
, int count
,
1397 struct wacom_led
*leds
;
1400 if (group_id
>= wacom
->led
.count
|| count
<= 0)
1403 if (!devres_open_group(dev
, &wacom
->led
.groups
[group_id
], GFP_KERNEL
))
1406 leds
= devm_kcalloc(dev
, count
, sizeof(struct wacom_led
), GFP_KERNEL
);
1412 wacom
->led
.groups
[group_id
].leds
= leds
;
1413 wacom
->led
.groups
[group_id
].count
= count
;
1415 for (i
= 0; i
< count
; i
++) {
1416 error
= wacom_led_register_one(dev
, wacom
, &leds
[i
],
1417 group_id
, i
, read_only
);
1422 wacom
->led
.groups
[group_id
].dev
= dev
;
1424 devres_close_group(dev
, &wacom
->led
.groups
[group_id
]);
1427 * There is a bug (?) in devm_led_classdev_register() in which its
1428 * increments the refcount of the parent. If the parent is an input
1429 * device, that means the ref count never reaches 0 when
1430 * devm_input_device_release() gets called.
1431 * This means that the LEDs are still there after disconnect.
1432 * Manually force the release of the group so that the leds are released
1433 * once we are done using them.
1435 error
= devm_add_action_or_reset(&wacom
->hdev
->dev
,
1436 wacom_led_groups_release_one
,
1437 &wacom
->led
.groups
[group_id
]);
1444 devres_release_group(dev
, &wacom
->led
.groups
[group_id
]);
1448 struct wacom_led
*wacom_led_find(struct wacom
*wacom
, unsigned int group_id
,
1451 struct wacom_group_leds
*group
;
1453 if (group_id
>= wacom
->led
.count
)
1456 group
= &wacom
->led
.groups
[group_id
];
1463 return &group
->leds
[id
];
1467 * wacom_led_next: gives the next available led with a wacom trigger.
1469 * returns the next available struct wacom_led which has its default trigger
1470 * or the current one if none is available.
1472 struct wacom_led
*wacom_led_next(struct wacom
*wacom
, struct wacom_led
*cur
)
1474 struct wacom_led
*next_led
;
1484 next_led
= wacom_led_find(wacom
, group
, ++next
);
1485 if (!next_led
|| next_led
== cur
)
1487 } while (next_led
->cdev
.trigger
!= &next_led
->trigger
);
1492 static void wacom_led_groups_release(void *data
)
1494 struct wacom
*wacom
= data
;
1496 wacom
->led
.groups
= NULL
;
1497 wacom
->led
.count
= 0;
1500 static int wacom_led_groups_allocate(struct wacom
*wacom
, int count
)
1502 struct device
*dev
= &wacom
->hdev
->dev
;
1503 struct wacom_group_leds
*groups
;
1506 groups
= devm_kcalloc(dev
, count
, sizeof(struct wacom_group_leds
),
1511 error
= devm_add_action_or_reset(dev
, wacom_led_groups_release
, wacom
);
1515 wacom
->led
.groups
= groups
;
1516 wacom
->led
.count
= count
;
1521 static int wacom_leds_alloc_and_register(struct wacom
*wacom
, int group_count
,
1522 int led_per_group
, bool read_only
)
1527 if (!wacom
->wacom_wac
.pad_input
)
1530 dev
= &wacom
->wacom_wac
.pad_input
->dev
;
1532 error
= wacom_led_groups_allocate(wacom
, group_count
);
1536 for (i
= 0; i
< group_count
; i
++) {
1537 error
= wacom_led_groups_alloc_and_register_one(dev
, wacom
, i
,
1547 int wacom_initialize_leds(struct wacom
*wacom
)
1551 if (!(wacom
->wacom_wac
.features
.device_type
& WACOM_DEVICETYPE_PAD
))
1554 /* Initialize default values */
1555 switch (wacom
->wacom_wac
.features
.type
) {
1557 if (!wacom
->generic_has_leds
)
1559 wacom
->led
.llv
= 100;
1560 wacom
->led
.max_llv
= 100;
1562 error
= wacom_leds_alloc_and_register(wacom
, 1, 4, false);
1564 hid_err(wacom
->hdev
,
1565 "cannot create leds err: %d\n", error
);
1569 error
= wacom_devm_sysfs_create_group(wacom
,
1570 &generic_led_attr_group
);
1577 wacom
->led
.llv
= 10;
1578 wacom
->led
.hlv
= 20;
1579 wacom
->led
.max_llv
= 127;
1580 wacom
->led
.max_hlv
= 127;
1581 wacom
->led
.img_lum
= 10;
1583 error
= wacom_leds_alloc_and_register(wacom
, 1, 4, false);
1585 hid_err(wacom
->hdev
,
1586 "cannot create leds err: %d\n", error
);
1590 error
= wacom_devm_sysfs_create_group(wacom
,
1591 &intuos4_led_attr_group
);
1598 wacom
->led
.img_lum
= 0;
1600 error
= wacom_leds_alloc_and_register(wacom
, 2, 4, false);
1602 hid_err(wacom
->hdev
,
1603 "cannot create leds err: %d\n", error
);
1607 error
= wacom_devm_sysfs_create_group(wacom
,
1608 &cintiq_led_attr_group
);
1617 wacom
->led
.llv
= 32;
1618 wacom
->led
.max_llv
= 96;
1620 error
= wacom_leds_alloc_and_register(wacom
, 1, 4, false);
1622 hid_err(wacom
->hdev
,
1623 "cannot create leds err: %d\n", error
);
1627 error
= wacom_devm_sysfs_create_group(wacom
,
1628 &intuos5_led_attr_group
);
1632 wacom
->led
.llv
= 50;
1633 wacom
->led
.max_llv
= 100;
1634 error
= wacom_leds_alloc_and_register(wacom
, 1, 4, false);
1636 hid_err(wacom
->hdev
,
1637 "cannot create leds err: %d\n", error
);
1643 wacom
->led
.llv
= 255;
1644 wacom
->led
.max_llv
= 255;
1645 error
= wacom_led_groups_allocate(wacom
, 5);
1647 hid_err(wacom
->hdev
,
1648 "cannot create leds err: %d\n", error
);
1658 hid_err(wacom
->hdev
,
1659 "cannot create sysfs group err: %d\n", error
);
1666 static void wacom_init_work(struct work_struct
*work
)
1668 struct wacom
*wacom
= container_of(work
, struct wacom
, init_work
.work
);
1670 _wacom_query_tablet_data(wacom
);
1671 wacom_led_control(wacom
);
1674 static void wacom_query_tablet_data(struct wacom
*wacom
)
1676 schedule_delayed_work(&wacom
->init_work
, msecs_to_jiffies(1000));
1679 static enum power_supply_property wacom_battery_props
[] = {
1680 POWER_SUPPLY_PROP_MODEL_NAME
,
1681 POWER_SUPPLY_PROP_PRESENT
,
1682 POWER_SUPPLY_PROP_STATUS
,
1683 POWER_SUPPLY_PROP_SCOPE
,
1684 POWER_SUPPLY_PROP_CAPACITY
1687 static int wacom_battery_get_property(struct power_supply
*psy
,
1688 enum power_supply_property psp
,
1689 union power_supply_propval
*val
)
1691 struct wacom_battery
*battery
= power_supply_get_drvdata(psy
);
1695 case POWER_SUPPLY_PROP_MODEL_NAME
:
1696 val
->strval
= battery
->wacom
->wacom_wac
.name
;
1698 case POWER_SUPPLY_PROP_PRESENT
:
1699 val
->intval
= battery
->bat_connected
;
1701 case POWER_SUPPLY_PROP_SCOPE
:
1702 val
->intval
= POWER_SUPPLY_SCOPE_DEVICE
;
1704 case POWER_SUPPLY_PROP_CAPACITY
:
1705 val
->intval
= battery
->battery_capacity
;
1707 case POWER_SUPPLY_PROP_STATUS
:
1708 if (battery
->bat_status
!= WACOM_POWER_SUPPLY_STATUS_AUTO
)
1709 val
->intval
= battery
->bat_status
;
1710 else if (battery
->bat_charging
)
1711 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
1712 else if (battery
->battery_capacity
== 100 &&
1713 battery
->ps_connected
)
1714 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
1715 else if (battery
->ps_connected
)
1716 val
->intval
= POWER_SUPPLY_STATUS_NOT_CHARGING
;
1718 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
1728 static int __wacom_initialize_battery(struct wacom
*wacom
,
1729 struct wacom_battery
*battery
)
1731 static atomic_t battery_no
= ATOMIC_INIT(0);
1732 struct device
*dev
= &wacom
->hdev
->dev
;
1733 struct power_supply_config psy_cfg
= { .drv_data
= battery
, };
1734 struct power_supply
*ps_bat
;
1735 struct power_supply_desc
*bat_desc
= &battery
->bat_desc
;
1739 if (!devres_open_group(dev
, bat_desc
, GFP_KERNEL
))
1742 battery
->wacom
= wacom
;
1744 n
= atomic_inc_return(&battery_no
) - 1;
1746 bat_desc
->properties
= wacom_battery_props
;
1747 bat_desc
->num_properties
= ARRAY_SIZE(wacom_battery_props
);
1748 bat_desc
->get_property
= wacom_battery_get_property
;
1749 sprintf(battery
->bat_name
, "wacom_battery_%ld", n
);
1750 bat_desc
->name
= battery
->bat_name
;
1751 bat_desc
->type
= POWER_SUPPLY_TYPE_USB
;
1752 bat_desc
->use_for_apm
= 0;
1754 ps_bat
= devm_power_supply_register(dev
, bat_desc
, &psy_cfg
);
1755 if (IS_ERR(ps_bat
)) {
1756 error
= PTR_ERR(ps_bat
);
1760 power_supply_powers(ps_bat
, &wacom
->hdev
->dev
);
1762 battery
->battery
= ps_bat
;
1764 devres_close_group(dev
, bat_desc
);
1768 devres_release_group(dev
, bat_desc
);
1772 static int wacom_initialize_battery(struct wacom
*wacom
)
1774 if (wacom
->wacom_wac
.features
.quirks
& WACOM_QUIRK_BATTERY
)
1775 return __wacom_initialize_battery(wacom
, &wacom
->battery
);
1780 static void wacom_destroy_battery(struct wacom
*wacom
)
1782 if (wacom
->battery
.battery
) {
1783 devres_release_group(&wacom
->hdev
->dev
,
1784 &wacom
->battery
.bat_desc
);
1785 wacom
->battery
.battery
= NULL
;
1789 static ssize_t
wacom_show_speed(struct device
*dev
,
1790 struct device_attribute
1793 struct hid_device
*hdev
= to_hid_device(dev
);
1794 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1796 return snprintf(buf
, PAGE_SIZE
, "%i\n", wacom
->wacom_wac
.bt_high_speed
);
1799 static ssize_t
wacom_store_speed(struct device
*dev
,
1800 struct device_attribute
*attr
,
1801 const char *buf
, size_t count
)
1803 struct hid_device
*hdev
= to_hid_device(dev
);
1804 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1807 if (kstrtou8(buf
, 0, &new_speed
))
1810 if (new_speed
!= 0 && new_speed
!= 1)
1813 wacom_bt_query_tablet_data(hdev
, new_speed
, &wacom
->wacom_wac
.features
);
1818 static DEVICE_ATTR(speed
, DEV_ATTR_RW_PERM
,
1819 wacom_show_speed
, wacom_store_speed
);
1822 static ssize_t
wacom_show_remote_mode(struct kobject
*kobj
,
1823 struct kobj_attribute
*kattr
,
1824 char *buf
, int index
)
1826 struct device
*dev
= kobj_to_dev(kobj
->parent
);
1827 struct hid_device
*hdev
= to_hid_device(dev
);
1828 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1831 mode
= wacom
->led
.groups
[index
].select
;
1832 return sprintf(buf
, "%d\n", mode
< 3 ? mode
: -1);
1835 #define DEVICE_EKR_ATTR_GROUP(SET_ID) \
1836 static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj, \
1837 struct kobj_attribute *kattr, char *buf) \
1839 return wacom_show_remote_mode(kobj, kattr, buf, SET_ID); \
1841 static struct kobj_attribute remote##SET_ID##_mode_attr = { \
1842 .attr = {.name = "remote_mode", \
1843 .mode = DEV_ATTR_RO_PERM}, \
1844 .show = wacom_show_remote##SET_ID##_mode, \
1846 static struct attribute *remote##SET_ID##_serial_attrs[] = { \
1847 &remote##SET_ID##_mode_attr.attr, \
1850 static const struct attribute_group remote##SET_ID##_serial_group = { \
1852 .attrs = remote##SET_ID##_serial_attrs, \
1855 DEVICE_EKR_ATTR_GROUP(0);
1856 DEVICE_EKR_ATTR_GROUP(1);
1857 DEVICE_EKR_ATTR_GROUP(2);
1858 DEVICE_EKR_ATTR_GROUP(3);
1859 DEVICE_EKR_ATTR_GROUP(4);
1861 static int wacom_remote_create_attr_group(struct wacom
*wacom
, __u32 serial
,
1865 struct wacom_remote
*remote
= wacom
->remote
;
1867 remote
->remotes
[index
].group
.name
= devm_kasprintf(&wacom
->hdev
->dev
,
1870 if (!remote
->remotes
[index
].group
.name
)
1873 error
= __wacom_devm_sysfs_create_group(wacom
, remote
->remote_dir
,
1874 &remote
->remotes
[index
].group
);
1876 remote
->remotes
[index
].group
.name
= NULL
;
1877 hid_err(wacom
->hdev
,
1878 "cannot create sysfs group err: %d\n", error
);
1885 static int wacom_cmd_unpair_remote(struct wacom
*wacom
, unsigned char selector
)
1887 const size_t buf_size
= 2;
1891 buf
= kzalloc(buf_size
, GFP_KERNEL
);
1895 buf
[0] = WAC_CMD_DELETE_PAIRING
;
1898 retval
= wacom_set_report(wacom
->hdev
, HID_OUTPUT_REPORT
, buf
,
1899 buf_size
, WAC_CMD_RETRIES
);
1905 static ssize_t
wacom_store_unpair_remote(struct kobject
*kobj
,
1906 struct kobj_attribute
*attr
,
1907 const char *buf
, size_t count
)
1909 unsigned char selector
= 0;
1910 struct device
*dev
= kobj_to_dev(kobj
->parent
);
1911 struct hid_device
*hdev
= to_hid_device(dev
);
1912 struct wacom
*wacom
= hid_get_drvdata(hdev
);
1915 if (!strncmp(buf
, "*\n", 2)) {
1916 selector
= WAC_CMD_UNPAIR_ALL
;
1918 hid_info(wacom
->hdev
, "remote: unrecognized unpair code: %s\n",
1923 mutex_lock(&wacom
->lock
);
1925 err
= wacom_cmd_unpair_remote(wacom
, selector
);
1926 mutex_unlock(&wacom
->lock
);
1928 return err
< 0 ? err
: count
;
1931 static struct kobj_attribute unpair_remote_attr
= {
1932 .attr
= {.name
= "unpair_remote", .mode
= 0200},
1933 .store
= wacom_store_unpair_remote
,
1936 static const struct attribute
*remote_unpair_attrs
[] = {
1937 &unpair_remote_attr
.attr
,
1941 static void wacom_remotes_destroy(void *data
)
1943 struct wacom
*wacom
= data
;
1944 struct wacom_remote
*remote
= wacom
->remote
;
1949 kobject_put(remote
->remote_dir
);
1950 kfifo_free(&remote
->remote_fifo
);
1951 wacom
->remote
= NULL
;
1954 static int wacom_initialize_remotes(struct wacom
*wacom
)
1957 struct wacom_remote
*remote
;
1960 if (wacom
->wacom_wac
.features
.type
!= REMOTE
)
1963 remote
= devm_kzalloc(&wacom
->hdev
->dev
, sizeof(*wacom
->remote
),
1968 wacom
->remote
= remote
;
1970 spin_lock_init(&remote
->remote_lock
);
1972 error
= kfifo_alloc(&remote
->remote_fifo
,
1973 5 * sizeof(struct wacom_remote_data
),
1976 hid_err(wacom
->hdev
, "failed allocating remote_fifo\n");
1980 remote
->remotes
[0].group
= remote0_serial_group
;
1981 remote
->remotes
[1].group
= remote1_serial_group
;
1982 remote
->remotes
[2].group
= remote2_serial_group
;
1983 remote
->remotes
[3].group
= remote3_serial_group
;
1984 remote
->remotes
[4].group
= remote4_serial_group
;
1986 remote
->remote_dir
= kobject_create_and_add("wacom_remote",
1987 &wacom
->hdev
->dev
.kobj
);
1988 if (!remote
->remote_dir
)
1991 error
= sysfs_create_files(remote
->remote_dir
, remote_unpair_attrs
);
1994 hid_err(wacom
->hdev
,
1995 "cannot create sysfs group err: %d\n", error
);
1999 for (i
= 0; i
< WACOM_MAX_REMOTES
; i
++) {
2000 wacom
->led
.groups
[i
].select
= WACOM_STATUS_UNKNOWN
;
2001 remote
->remotes
[i
].serial
= 0;
2004 error
= devm_add_action_or_reset(&wacom
->hdev
->dev
,
2005 wacom_remotes_destroy
, wacom
);
2012 static struct input_dev
*wacom_allocate_input(struct wacom
*wacom
)
2014 struct input_dev
*input_dev
;
2015 struct hid_device
*hdev
= wacom
->hdev
;
2016 struct wacom_wac
*wacom_wac
= &(wacom
->wacom_wac
);
2018 input_dev
= devm_input_allocate_device(&hdev
->dev
);
2022 input_dev
->name
= wacom_wac
->features
.name
;
2023 input_dev
->phys
= hdev
->phys
;
2024 input_dev
->dev
.parent
= &hdev
->dev
;
2025 input_dev
->open
= wacom_open
;
2026 input_dev
->close
= wacom_close
;
2027 input_dev
->uniq
= hdev
->uniq
;
2028 input_dev
->id
.bustype
= hdev
->bus
;
2029 input_dev
->id
.vendor
= hdev
->vendor
;
2030 input_dev
->id
.product
= wacom_wac
->pid
? wacom_wac
->pid
: hdev
->product
;
2031 input_dev
->id
.version
= hdev
->version
;
2032 input_set_drvdata(input_dev
, wacom
);
2037 static int wacom_allocate_inputs(struct wacom
*wacom
)
2039 struct wacom_wac
*wacom_wac
= &(wacom
->wacom_wac
);
2041 wacom_wac
->pen_input
= wacom_allocate_input(wacom
);
2042 wacom_wac
->touch_input
= wacom_allocate_input(wacom
);
2043 wacom_wac
->pad_input
= wacom_allocate_input(wacom
);
2044 if (!wacom_wac
->pen_input
||
2045 !wacom_wac
->touch_input
||
2046 !wacom_wac
->pad_input
)
2049 wacom_wac
->pen_input
->name
= wacom_wac
->pen_name
;
2050 wacom_wac
->touch_input
->name
= wacom_wac
->touch_name
;
2051 wacom_wac
->pad_input
->name
= wacom_wac
->pad_name
;
2056 static int wacom_register_inputs(struct wacom
*wacom
)
2058 struct input_dev
*pen_input_dev
, *touch_input_dev
, *pad_input_dev
;
2059 struct wacom_wac
*wacom_wac
= &(wacom
->wacom_wac
);
2062 pen_input_dev
= wacom_wac
->pen_input
;
2063 touch_input_dev
= wacom_wac
->touch_input
;
2064 pad_input_dev
= wacom_wac
->pad_input
;
2066 if (!pen_input_dev
|| !touch_input_dev
|| !pad_input_dev
)
2069 error
= wacom_setup_pen_input_capabilities(pen_input_dev
, wacom_wac
);
2071 /* no pen in use on this interface */
2072 input_free_device(pen_input_dev
);
2073 wacom_wac
->pen_input
= NULL
;
2074 pen_input_dev
= NULL
;
2076 error
= input_register_device(pen_input_dev
);
2081 error
= wacom_setup_touch_input_capabilities(touch_input_dev
, wacom_wac
);
2083 /* no touch in use on this interface */
2084 input_free_device(touch_input_dev
);
2085 wacom_wac
->touch_input
= NULL
;
2086 touch_input_dev
= NULL
;
2088 error
= input_register_device(touch_input_dev
);
2093 error
= wacom_setup_pad_input_capabilities(pad_input_dev
, wacom_wac
);
2095 /* no pad in use on this interface */
2096 input_free_device(pad_input_dev
);
2097 wacom_wac
->pad_input
= NULL
;
2098 pad_input_dev
= NULL
;
2100 error
= input_register_device(pad_input_dev
);
2108 wacom_wac
->pad_input
= NULL
;
2109 wacom_wac
->touch_input
= NULL
;
2110 wacom_wac
->pen_input
= NULL
;
2115 * Not all devices report physical dimensions from HID.
2116 * Compute the default from hardcoded logical dimension
2117 * and resolution before driver overwrites them.
2119 static void wacom_set_default_phy(struct wacom_features
*features
)
2121 if (features
->x_resolution
) {
2122 features
->x_phy
= (features
->x_max
* 100) /
2123 features
->x_resolution
;
2124 features
->y_phy
= (features
->y_max
* 100) /
2125 features
->y_resolution
;
2129 static void wacom_calculate_res(struct wacom_features
*features
)
2131 /* set unit to "100th of a mm" for devices not reported by HID */
2132 if (!features
->unit
) {
2133 features
->unit
= 0x11;
2134 features
->unitExpo
= -3;
2137 features
->x_resolution
= wacom_calc_hid_res(features
->x_max
,
2140 features
->unitExpo
);
2141 features
->y_resolution
= wacom_calc_hid_res(features
->y_max
,
2144 features
->unitExpo
);
2147 void wacom_battery_work(struct work_struct
*work
)
2149 struct wacom
*wacom
= container_of(work
, struct wacom
, battery_work
);
2151 if ((wacom
->wacom_wac
.features
.quirks
& WACOM_QUIRK_BATTERY
) &&
2152 !wacom
->battery
.battery
) {
2153 wacom_initialize_battery(wacom
);
2155 else if (!(wacom
->wacom_wac
.features
.quirks
& WACOM_QUIRK_BATTERY
) &&
2156 wacom
->battery
.battery
) {
2157 wacom_destroy_battery(wacom
);
2161 static size_t wacom_compute_pktlen(struct hid_device
*hdev
)
2163 struct hid_report_enum
*report_enum
;
2164 struct hid_report
*report
;
2167 report_enum
= hdev
->report_enum
+ HID_INPUT_REPORT
;
2169 list_for_each_entry(report
, &report_enum
->report_list
, list
) {
2170 size_t report_size
= hid_report_len(report
);
2171 if (report_size
> size
)
2178 static void wacom_update_name(struct wacom
*wacom
, const char *suffix
)
2180 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
2181 struct wacom_features
*features
= &wacom_wac
->features
;
2182 char name
[WACOM_NAME_MAX
- 20]; /* Leave some room for suffixes */
2184 /* Generic devices name unspecified */
2185 if ((features
->type
== HID_GENERIC
) && !strcmp("Wacom HID", features
->name
)) {
2186 char *product_name
= wacom
->hdev
->name
;
2188 if (hid_is_using_ll_driver(wacom
->hdev
, &usb_hid_driver
)) {
2189 struct usb_interface
*intf
= to_usb_interface(wacom
->hdev
->dev
.parent
);
2190 struct usb_device
*dev
= interface_to_usbdev(intf
);
2191 product_name
= dev
->product
;
2194 if (wacom
->hdev
->bus
== BUS_I2C
) {
2195 snprintf(name
, sizeof(name
), "%s %X",
2196 features
->name
, wacom
->hdev
->product
);
2197 } else if (strstr(product_name
, "Wacom") ||
2198 strstr(product_name
, "wacom") ||
2199 strstr(product_name
, "WACOM")) {
2200 strlcpy(name
, product_name
, sizeof(name
));
2202 snprintf(name
, sizeof(name
), "Wacom %s", product_name
);
2205 /* strip out excess whitespaces */
2207 char *gap
= strstr(name
, " ");
2210 /* shift everything including the terminator */
2211 memmove(gap
, gap
+1, strlen(gap
));
2214 /* get rid of trailing whitespace */
2215 if (name
[strlen(name
)-1] == ' ')
2216 name
[strlen(name
)-1] = '\0';
2218 strlcpy(name
, features
->name
, sizeof(name
));
2221 snprintf(wacom_wac
->name
, sizeof(wacom_wac
->name
), "%s%s",
2224 /* Append the device type to the name */
2225 snprintf(wacom_wac
->pen_name
, sizeof(wacom_wac
->pen_name
),
2226 "%s%s Pen", name
, suffix
);
2227 snprintf(wacom_wac
->touch_name
, sizeof(wacom_wac
->touch_name
),
2228 "%s%s Finger", name
, suffix
);
2229 snprintf(wacom_wac
->pad_name
, sizeof(wacom_wac
->pad_name
),
2230 "%s%s Pad", name
, suffix
);
2233 static void wacom_release_resources(struct wacom
*wacom
)
2235 struct hid_device
*hdev
= wacom
->hdev
;
2237 if (!wacom
->resources
)
2240 devres_release_group(&hdev
->dev
, wacom
);
2242 wacom
->resources
= false;
2244 wacom
->wacom_wac
.pen_input
= NULL
;
2245 wacom
->wacom_wac
.touch_input
= NULL
;
2246 wacom
->wacom_wac
.pad_input
= NULL
;
2249 static void wacom_set_shared_values(struct wacom_wac
*wacom_wac
)
2251 if (wacom_wac
->features
.device_type
& WACOM_DEVICETYPE_TOUCH
) {
2252 wacom_wac
->shared
->type
= wacom_wac
->features
.type
;
2253 wacom_wac
->shared
->touch_input
= wacom_wac
->touch_input
;
2256 if (wacom_wac
->has_mute_touch_switch
) {
2257 wacom_wac
->shared
->has_mute_touch_switch
= true;
2258 wacom_wac
->shared
->is_touch_on
= true;
2261 if (wacom_wac
->shared
->has_mute_touch_switch
&&
2262 wacom_wac
->shared
->touch_input
) {
2263 set_bit(EV_SW
, wacom_wac
->shared
->touch_input
->evbit
);
2264 input_set_capability(wacom_wac
->shared
->touch_input
, EV_SW
,
2269 static int wacom_parse_and_register(struct wacom
*wacom
, bool wireless
)
2271 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
2272 struct wacom_features
*features
= &wacom_wac
->features
;
2273 struct hid_device
*hdev
= wacom
->hdev
;
2275 unsigned int connect_mask
= HID_CONNECT_HIDRAW
;
2277 features
->pktlen
= wacom_compute_pktlen(hdev
);
2278 if (features
->pktlen
> WACOM_PKGLEN_MAX
)
2281 if (!devres_open_group(&hdev
->dev
, wacom
, GFP_KERNEL
))
2284 wacom
->resources
= true;
2286 error
= wacom_allocate_inputs(wacom
);
2291 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
2292 * into debug mode for the touch part.
2293 * We ignore the other interfaces.
2295 if (features
->type
== BAMBOO_PAD
) {
2296 if (features
->pktlen
== WACOM_PKGLEN_PENABLED
) {
2297 features
->type
= HID_GENERIC
;
2298 } else if ((features
->pktlen
!= WACOM_PKGLEN_BPAD_TOUCH
) &&
2299 (features
->pktlen
!= WACOM_PKGLEN_BPAD_TOUCH_USB
)) {
2305 /* set the default size in case we do not get them from hid */
2306 wacom_set_default_phy(features
);
2308 /* Retrieve the physical and logical size for touch devices */
2309 wacom_retrieve_hid_descriptor(hdev
, features
);
2310 wacom_setup_device_quirks(wacom
);
2312 if (features
->device_type
== WACOM_DEVICETYPE_NONE
&&
2313 features
->type
!= WIRELESS
) {
2314 error
= features
->type
== HID_GENERIC
? -ENODEV
: 0;
2316 dev_warn(&hdev
->dev
, "Unknown device_type for '%s'. %s.",
2318 error
? "Ignoring" : "Assuming pen");
2323 features
->device_type
|= WACOM_DEVICETYPE_PEN
;
2326 wacom_calculate_res(features
);
2328 wacom_update_name(wacom
, wireless
? " (WL)" : "");
2330 /* pen only Bamboo neither support touch nor pad */
2331 if ((features
->type
== BAMBOO_PEN
) &&
2332 ((features
->device_type
& WACOM_DEVICETYPE_TOUCH
) ||
2333 (features
->device_type
& WACOM_DEVICETYPE_PAD
))) {
2338 error
= wacom_add_shared_data(hdev
);
2342 if (!(features
->device_type
& WACOM_DEVICETYPE_WL_MONITOR
) &&
2343 (features
->quirks
& WACOM_QUIRK_BATTERY
)) {
2344 error
= wacom_initialize_battery(wacom
);
2349 error
= wacom_register_inputs(wacom
);
2353 if (wacom
->wacom_wac
.features
.device_type
& WACOM_DEVICETYPE_PAD
) {
2354 error
= wacom_initialize_leds(wacom
);
2358 error
= wacom_initialize_remotes(wacom
);
2363 if (features
->type
== HID_GENERIC
)
2364 connect_mask
|= HID_CONNECT_DRIVER
;
2366 /* Regular HID work starts now */
2367 error
= hid_hw_start(hdev
, connect_mask
);
2369 hid_err(hdev
, "hw start failed\n");
2374 /* Note that if query fails it is not a hard failure */
2375 wacom_query_tablet_data(wacom
);
2378 /* touch only Bamboo doesn't support pen */
2379 if ((features
->type
== BAMBOO_TOUCH
) &&
2380 (features
->device_type
& WACOM_DEVICETYPE_PEN
)) {
2381 cancel_delayed_work_sync(&wacom
->init_work
);
2382 _wacom_query_tablet_data(wacom
);
2387 if (features
->device_type
& WACOM_DEVICETYPE_WL_MONITOR
)
2388 error
= hid_hw_open(hdev
);
2390 wacom_set_shared_values(wacom_wac
);
2391 devres_close_group(&hdev
->dev
, wacom
);
2398 wacom_release_resources(wacom
);
2402 static void wacom_wireless_work(struct work_struct
*work
)
2404 struct wacom
*wacom
= container_of(work
, struct wacom
, wireless_work
);
2405 struct usb_device
*usbdev
= wacom
->usbdev
;
2406 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
2407 struct hid_device
*hdev1
, *hdev2
;
2408 struct wacom
*wacom1
, *wacom2
;
2409 struct wacom_wac
*wacom_wac1
, *wacom_wac2
;
2413 * Regardless if this is a disconnect or a new tablet,
2414 * remove any existing input and battery devices.
2417 wacom_destroy_battery(wacom
);
2419 /* Stylus interface */
2420 hdev1
= usb_get_intfdata(usbdev
->config
->interface
[1]);
2421 wacom1
= hid_get_drvdata(hdev1
);
2422 wacom_wac1
= &(wacom1
->wacom_wac
);
2423 wacom_release_resources(wacom1
);
2425 /* Touch interface */
2426 hdev2
= usb_get_intfdata(usbdev
->config
->interface
[2]);
2427 wacom2
= hid_get_drvdata(hdev2
);
2428 wacom_wac2
= &(wacom2
->wacom_wac
);
2429 wacom_release_resources(wacom2
);
2431 if (wacom_wac
->pid
== 0) {
2432 hid_info(wacom
->hdev
, "wireless tablet disconnected\n");
2434 const struct hid_device_id
*id
= wacom_ids
;
2436 hid_info(wacom
->hdev
, "wireless tablet connected with PID %x\n",
2440 if (id
->vendor
== USB_VENDOR_ID_WACOM
&&
2441 id
->product
== wacom_wac
->pid
)
2447 hid_info(wacom
->hdev
, "ignoring unknown PID.\n");
2451 /* Stylus interface */
2452 wacom_wac1
->features
=
2453 *((struct wacom_features
*)id
->driver_data
);
2455 wacom_wac1
->pid
= wacom_wac
->pid
;
2457 error
= wacom_parse_and_register(wacom1
, true);
2461 /* Touch interface */
2462 if (wacom_wac1
->features
.touch_max
||
2463 (wacom_wac1
->features
.type
>= INTUOSHT
&&
2464 wacom_wac1
->features
.type
<= BAMBOO_PT
)) {
2465 wacom_wac2
->features
=
2466 *((struct wacom_features
*)id
->driver_data
);
2467 wacom_wac2
->pid
= wacom_wac
->pid
;
2469 error
= wacom_parse_and_register(wacom2
, true);
2474 strlcpy(wacom_wac
->name
, wacom_wac1
->name
,
2475 sizeof(wacom_wac
->name
));
2476 error
= wacom_initialize_battery(wacom
);
2484 wacom_release_resources(wacom1
);
2485 wacom_release_resources(wacom2
);
2489 static void wacom_remote_destroy_one(struct wacom
*wacom
, unsigned int index
)
2491 struct wacom_remote
*remote
= wacom
->remote
;
2492 u32 serial
= remote
->remotes
[index
].serial
;
2494 unsigned long flags
;
2496 for (i
= 0; i
< WACOM_MAX_REMOTES
; i
++) {
2497 if (remote
->remotes
[i
].serial
== serial
) {
2499 spin_lock_irqsave(&remote
->remote_lock
, flags
);
2500 remote
->remotes
[i
].registered
= false;
2501 spin_unlock_irqrestore(&remote
->remote_lock
, flags
);
2503 if (remote
->remotes
[i
].battery
.battery
)
2504 devres_release_group(&wacom
->hdev
->dev
,
2505 &remote
->remotes
[i
].battery
.bat_desc
);
2507 if (remote
->remotes
[i
].group
.name
)
2508 devres_release_group(&wacom
->hdev
->dev
,
2509 &remote
->remotes
[i
]);
2511 remote
->remotes
[i
].serial
= 0;
2512 remote
->remotes
[i
].group
.name
= NULL
;
2513 remote
->remotes
[i
].battery
.battery
= NULL
;
2514 wacom
->led
.groups
[i
].select
= WACOM_STATUS_UNKNOWN
;
2519 static int wacom_remote_create_one(struct wacom
*wacom
, u32 serial
,
2522 struct wacom_remote
*remote
= wacom
->remote
;
2523 struct device
*dev
= &wacom
->hdev
->dev
;
2526 /* A remote can pair more than once with an EKR,
2527 * check to make sure this serial isn't already paired.
2529 for (k
= 0; k
< WACOM_MAX_REMOTES
; k
++) {
2530 if (remote
->remotes
[k
].serial
== serial
)
2534 if (k
< WACOM_MAX_REMOTES
) {
2535 remote
->remotes
[index
].serial
= serial
;
2539 if (!devres_open_group(dev
, &remote
->remotes
[index
], GFP_KERNEL
))
2542 error
= wacom_remote_create_attr_group(wacom
, serial
, index
);
2546 remote
->remotes
[index
].input
= wacom_allocate_input(wacom
);
2547 if (!remote
->remotes
[index
].input
) {
2551 remote
->remotes
[index
].input
->uniq
= remote
->remotes
[index
].group
.name
;
2552 remote
->remotes
[index
].input
->name
= wacom
->wacom_wac
.pad_name
;
2554 if (!remote
->remotes
[index
].input
->name
) {
2559 error
= wacom_setup_pad_input_capabilities(remote
->remotes
[index
].input
,
2564 remote
->remotes
[index
].serial
= serial
;
2566 error
= input_register_device(remote
->remotes
[index
].input
);
2570 error
= wacom_led_groups_alloc_and_register_one(
2571 &remote
->remotes
[index
].input
->dev
,
2572 wacom
, index
, 3, true);
2576 remote
->remotes
[index
].registered
= true;
2578 devres_close_group(dev
, &remote
->remotes
[index
]);
2582 devres_release_group(dev
, &remote
->remotes
[index
]);
2583 remote
->remotes
[index
].serial
= 0;
2587 static int wacom_remote_attach_battery(struct wacom
*wacom
, int index
)
2589 struct wacom_remote
*remote
= wacom
->remote
;
2592 if (!remote
->remotes
[index
].registered
)
2595 if (remote
->remotes
[index
].battery
.battery
)
2598 if (wacom
->led
.groups
[index
].select
== WACOM_STATUS_UNKNOWN
)
2601 error
= __wacom_initialize_battery(wacom
,
2602 &wacom
->remote
->remotes
[index
].battery
);
2609 static void wacom_remote_work(struct work_struct
*work
)
2611 struct wacom
*wacom
= container_of(work
, struct wacom
, remote_work
);
2612 struct wacom_remote
*remote
= wacom
->remote
;
2613 struct wacom_remote_data data
;
2614 unsigned long flags
;
2619 spin_lock_irqsave(&remote
->remote_lock
, flags
);
2621 count
= kfifo_out(&remote
->remote_fifo
, &data
, sizeof(data
));
2623 if (count
!= sizeof(data
)) {
2624 hid_err(wacom
->hdev
,
2625 "workitem triggered without status available\n");
2626 spin_unlock_irqrestore(&remote
->remote_lock
, flags
);
2630 if (!kfifo_is_empty(&remote
->remote_fifo
))
2631 wacom_schedule_work(&wacom
->wacom_wac
, WACOM_WORKER_REMOTE
);
2633 spin_unlock_irqrestore(&remote
->remote_lock
, flags
);
2635 for (i
= 0; i
< WACOM_MAX_REMOTES
; i
++) {
2636 serial
= data
.remote
[i
].serial
;
2637 if (data
.remote
[i
].connected
) {
2639 if (remote
->remotes
[i
].serial
== serial
) {
2640 wacom_remote_attach_battery(wacom
, i
);
2644 if (remote
->remotes
[i
].serial
)
2645 wacom_remote_destroy_one(wacom
, i
);
2647 wacom_remote_create_one(wacom
, serial
, i
);
2649 } else if (remote
->remotes
[i
].serial
) {
2650 wacom_remote_destroy_one(wacom
, i
);
2655 static void wacom_mode_change_work(struct work_struct
*work
)
2657 struct wacom
*wacom
= container_of(work
, struct wacom
, mode_change_work
);
2658 struct wacom_shared
*shared
= wacom
->wacom_wac
.shared
;
2659 struct wacom
*wacom1
= NULL
;
2660 struct wacom
*wacom2
= NULL
;
2661 bool is_direct
= wacom
->wacom_wac
.is_direct_mode
;
2665 wacom1
= hid_get_drvdata(shared
->pen
);
2666 wacom_release_resources(wacom1
);
2667 hid_hw_stop(wacom1
->hdev
);
2668 wacom1
->wacom_wac
.has_mode_change
= true;
2669 wacom1
->wacom_wac
.is_direct_mode
= is_direct
;
2672 if (shared
->touch
) {
2673 wacom2
= hid_get_drvdata(shared
->touch
);
2674 wacom_release_resources(wacom2
);
2675 hid_hw_stop(wacom2
->hdev
);
2676 wacom2
->wacom_wac
.has_mode_change
= true;
2677 wacom2
->wacom_wac
.is_direct_mode
= is_direct
;
2681 error
= wacom_parse_and_register(wacom1
, false);
2687 error
= wacom_parse_and_register(wacom2
, false);
2695 static int wacom_probe(struct hid_device
*hdev
,
2696 const struct hid_device_id
*id
)
2698 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
2699 struct usb_device
*dev
= interface_to_usbdev(intf
);
2700 struct wacom
*wacom
;
2701 struct wacom_wac
*wacom_wac
;
2702 struct wacom_features
*features
;
2705 if (!id
->driver_data
)
2708 hdev
->quirks
|= HID_QUIRK_NO_INIT_REPORTS
;
2710 /* hid-core sets this quirk for the boot interface */
2711 hdev
->quirks
&= ~HID_QUIRK_NOGET
;
2713 wacom
= devm_kzalloc(&hdev
->dev
, sizeof(struct wacom
), GFP_KERNEL
);
2717 hid_set_drvdata(hdev
, wacom
);
2720 wacom_wac
= &wacom
->wacom_wac
;
2721 wacom_wac
->features
= *((struct wacom_features
*)id
->driver_data
);
2722 features
= &wacom_wac
->features
;
2724 if (features
->check_for_hid_type
&& features
->hid_type
!= hdev
->type
)
2727 error
= kfifo_alloc(&wacom_wac
->pen_fifo
, WACOM_PKGLEN_MAX
, GFP_KERNEL
);
2731 wacom_wac
->hid_data
.inputmode
= -1;
2732 wacom_wac
->mode_report
= -1;
2734 wacom
->usbdev
= dev
;
2736 mutex_init(&wacom
->lock
);
2737 INIT_DELAYED_WORK(&wacom
->init_work
, wacom_init_work
);
2738 INIT_WORK(&wacom
->wireless_work
, wacom_wireless_work
);
2739 INIT_WORK(&wacom
->battery_work
, wacom_battery_work
);
2740 INIT_WORK(&wacom
->remote_work
, wacom_remote_work
);
2741 INIT_WORK(&wacom
->mode_change_work
, wacom_mode_change_work
);
2743 /* ask for the report descriptor to be loaded by HID */
2744 error
= hid_parse(hdev
);
2746 hid_err(hdev
, "parse failed\n");
2750 error
= wacom_parse_and_register(wacom
, false);
2754 if (hdev
->bus
== BUS_BLUETOOTH
) {
2755 error
= device_create_file(&hdev
->dev
, &dev_attr_speed
);
2758 "can't create sysfs speed attribute err: %d\n",
2765 static void wacom_remove(struct hid_device
*hdev
)
2767 struct wacom
*wacom
= hid_get_drvdata(hdev
);
2768 struct wacom_wac
*wacom_wac
= &wacom
->wacom_wac
;
2769 struct wacom_features
*features
= &wacom_wac
->features
;
2771 if (features
->device_type
& WACOM_DEVICETYPE_WL_MONITOR
)
2776 cancel_delayed_work_sync(&wacom
->init_work
);
2777 cancel_work_sync(&wacom
->wireless_work
);
2778 cancel_work_sync(&wacom
->battery_work
);
2779 cancel_work_sync(&wacom
->remote_work
);
2780 cancel_work_sync(&wacom
->mode_change_work
);
2781 if (hdev
->bus
== BUS_BLUETOOTH
)
2782 device_remove_file(&hdev
->dev
, &dev_attr_speed
);
2784 /* make sure we don't trigger the LEDs */
2785 wacom_led_groups_release(wacom
);
2787 if (wacom
->wacom_wac
.features
.type
!= REMOTE
)
2788 wacom_release_resources(wacom
);
2790 kfifo_free(&wacom_wac
->pen_fifo
);
2794 static int wacom_resume(struct hid_device
*hdev
)
2796 struct wacom
*wacom
= hid_get_drvdata(hdev
);
2798 mutex_lock(&wacom
->lock
);
2800 /* switch to wacom mode first */
2801 _wacom_query_tablet_data(wacom
);
2802 wacom_led_control(wacom
);
2804 mutex_unlock(&wacom
->lock
);
2809 static int wacom_reset_resume(struct hid_device
*hdev
)
2811 return wacom_resume(hdev
);
2813 #endif /* CONFIG_PM */
2815 static struct hid_driver wacom_driver
= {
2817 .id_table
= wacom_ids
,
2818 .probe
= wacom_probe
,
2819 .remove
= wacom_remove
,
2820 .report
= wacom_wac_report
,
2822 .resume
= wacom_resume
,
2823 .reset_resume
= wacom_reset_resume
,
2825 .raw_event
= wacom_raw_event
,
2827 module_hid_driver(wacom_driver
);
2829 MODULE_VERSION(DRIVER_VERSION
);
2830 MODULE_AUTHOR(DRIVER_AUTHOR
);
2831 MODULE_DESCRIPTION(DRIVER_DESC
);
2832 MODULE_LICENSE("GPL");