1 // SPDX-License-Identifier: GPL-2.0+
3 * HID driver for UC-Logic devices not fully compliant with HID standard
4 * - tablet initialization and parameter retrieval
6 * Copyright (c) 2018 Nikolai Kondrashov
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
16 #include "hid-uclogic-params.h"
17 #include "hid-uclogic-rdesc.h"
18 #include "usbhid/usbhid.h"
20 #include <linux/ctype.h>
21 #include <linux/string.h>
22 #include <asm/unaligned.h>
25 * uclogic_params_pen_inrange_to_str() - Convert a pen in-range reporting type
27 * @inrange: The in-range reporting type to convert.
30 * * The string representing the type, or
31 * * %NULL if the type is unknown.
33 static const char *uclogic_params_pen_inrange_to_str(
34 enum uclogic_params_pen_inrange inrange)
37 case UCLOGIC_PARAMS_PEN_INRANGE_NORMAL:
39 case UCLOGIC_PARAMS_PEN_INRANGE_INVERTED:
41 case UCLOGIC_PARAMS_PEN_INRANGE_NONE:
49 * uclogic_params_pen_hid_dbg() - Dump tablet interface pen parameters
50 * @hdev: The HID device the pen parameters describe.
51 * @pen: The pen parameters to dump.
53 * Dump tablet interface pen parameters with hid_dbg(). The dump is indented
56 static void uclogic_params_pen_hid_dbg(const struct hid_device *hdev,
57 const struct uclogic_params_pen *pen)
61 hid_dbg(hdev, "\t.usage_invalid = %s\n",
62 (pen->usage_invalid ? "true" : "false"));
63 hid_dbg(hdev, "\t.desc_ptr = %p\n", pen->desc_ptr);
64 hid_dbg(hdev, "\t.desc_size = %u\n", pen->desc_size);
65 hid_dbg(hdev, "\t.id = %u\n", pen->id);
66 hid_dbg(hdev, "\t.subreport_list = {\n");
67 for (i = 0; i < ARRAY_SIZE(pen->subreport_list); i++) {
68 hid_dbg(hdev, "\t\t{0x%02hhx, %hhu}%s\n",
69 pen->subreport_list[i].value,
70 pen->subreport_list[i].id,
71 i < (ARRAY_SIZE(pen->subreport_list) - 1) ? "," : "");
73 hid_dbg(hdev, "\t}\n");
74 hid_dbg(hdev, "\t.inrange = %s\n",
75 uclogic_params_pen_inrange_to_str(pen->inrange));
76 hid_dbg(hdev, "\t.fragmented_hires = %s\n",
77 (pen->fragmented_hires ? "true" : "false"));
78 hid_dbg(hdev, "\t.tilt_y_flipped = %s\n",
79 (pen->tilt_y_flipped ? "true" : "false"));
83 * uclogic_params_frame_hid_dbg() - Dump tablet interface frame parameters
84 * @hdev: The HID device the pen parameters describe.
85 * @frame: The frame parameters to dump.
87 * Dump tablet interface frame parameters with hid_dbg(). The dump is
88 * indented with two tabs.
90 static void uclogic_params_frame_hid_dbg(
91 const struct hid_device *hdev,
92 const struct uclogic_params_frame *frame)
94 hid_dbg(hdev, "\t\t.desc_ptr = %p\n", frame->desc_ptr);
95 hid_dbg(hdev, "\t\t.desc_size = %u\n", frame->desc_size);
96 hid_dbg(hdev, "\t\t.id = %u\n", frame->id);
97 hid_dbg(hdev, "\t\t.suffix = %s\n", frame->suffix);
98 hid_dbg(hdev, "\t\t.re_lsb = %u\n", frame->re_lsb);
99 hid_dbg(hdev, "\t\t.dev_id_byte = %u\n", frame->dev_id_byte);
100 hid_dbg(hdev, "\t\t.touch_byte = %u\n", frame->touch_byte);
101 hid_dbg(hdev, "\t\t.touch_max = %hhd\n", frame->touch_max);
102 hid_dbg(hdev, "\t\t.touch_flip_at = %hhd\n",
103 frame->touch_flip_at);
104 hid_dbg(hdev, "\t\t.bitmap_dial_byte = %u\n",
105 frame->bitmap_dial_byte);
109 * uclogic_params_hid_dbg() - Dump tablet interface parameters
110 * @hdev: The HID device the parameters describe.
111 * @params: The parameters to dump.
113 * Dump tablet interface parameters with hid_dbg().
115 void uclogic_params_hid_dbg(const struct hid_device *hdev,
116 const struct uclogic_params *params)
120 hid_dbg(hdev, ".invalid = %s\n",
121 params->invalid ? "true" : "false");
122 hid_dbg(hdev, ".desc_ptr = %p\n", params->desc_ptr);
123 hid_dbg(hdev, ".desc_size = %u\n", params->desc_size);
124 hid_dbg(hdev, ".pen = {\n");
125 uclogic_params_pen_hid_dbg(hdev, ¶ms->pen);
126 hid_dbg(hdev, "\t}\n");
127 hid_dbg(hdev, ".frame_list = {\n");
128 for (i = 0; i < ARRAY_SIZE(params->frame_list); i++) {
129 hid_dbg(hdev, "\t{\n");
130 uclogic_params_frame_hid_dbg(hdev, ¶ms->frame_list[i]);
131 hid_dbg(hdev, "\t}%s\n",
132 i < (ARRAY_SIZE(params->frame_list) - 1) ? "," : "");
134 hid_dbg(hdev, "}\n");
138 * uclogic_params_get_str_desc - retrieve a string descriptor from a HID
139 * device interface, putting it into a kmalloc-allocated buffer as is, without
140 * character encoding conversion.
142 * @pbuf: Location for the kmalloc-allocated buffer pointer containing
143 * the retrieved descriptor. Not modified in case of error.
144 * Can be NULL to have retrieved descriptor discarded.
145 * @hdev: The HID device of the tablet interface to retrieve the string
146 * descriptor from. Cannot be NULL.
147 * @idx: Index of the string descriptor to request from the device.
148 * @len: Length of the buffer to allocate and the data to retrieve.
151 * number of bytes retrieved (<= len),
152 * -EPIPE, if the descriptor was not found, or
153 * another negative errno code in case of other error.
155 static int uclogic_params_get_str_desc(__u8 **pbuf, struct hid_device *hdev,
156 __u8 idx, size_t len)
159 struct usb_device *udev;
162 /* Check arguments */
168 udev = hid_to_usb_dev(hdev);
170 buf = kmalloc(len, GFP_KERNEL);
176 rc = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
177 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
178 (USB_DT_STRING << 8) + idx,
180 USB_CTRL_GET_TIMEOUT);
182 hid_dbg(hdev, "string descriptor #%hhu not found\n", idx);
186 "failed retrieving string descriptor #%u: %d\n",
202 * uclogic_params_pen_cleanup - free resources used by struct
203 * uclogic_params_pen (tablet interface's pen input parameters).
204 * Can be called repeatedly.
206 * @pen: Pen input parameters to cleanup. Cannot be NULL.
208 static void uclogic_params_pen_cleanup(struct uclogic_params_pen *pen)
210 kfree(pen->desc_ptr);
211 memset(pen, 0, sizeof(*pen));
215 * uclogic_params_pen_init_v1() - initialize tablet interface pen
216 * input and retrieve its parameters from the device, using v1 protocol.
218 * @pen: Pointer to the pen parameters to initialize (to be
219 * cleaned up with uclogic_params_pen_cleanup()). Not modified in
220 * case of error, or if parameters are not found. Cannot be NULL.
221 * @pfound: Location for a flag which is set to true if the parameters
222 * were found, and to false if not (e.g. device was
223 * incompatible). Not modified in case of error. Cannot be NULL.
224 * @hdev: The HID device of the tablet interface to initialize and get
225 * parameters from. Cannot be NULL.
228 * Zero, if successful. A negative errno code on error.
230 static int uclogic_params_pen_init_v1(struct uclogic_params_pen *pen,
232 struct hid_device *hdev)
236 /* Buffer for (part of) the string descriptor */
238 /* Minimum descriptor length required, maximum seen so far is 18 */
241 /* Pen report descriptor template parameters */
242 s32 desc_params[UCLOGIC_RDESC_PH_ID_NUM];
243 __u8 *desc_ptr = NULL;
245 /* Check arguments */
246 if (pen == NULL || pfound == NULL || hdev == NULL) {
252 * Read string descriptor containing pen input parameters.
253 * The specific string descriptor and data were discovered by sniffing
254 * the Windows driver traffic.
255 * NOTE: This enables fully-functional tablet mode.
257 rc = uclogic_params_get_str_desc(&buf, hdev, 100, len);
260 "string descriptor with pen parameters not found, assuming not compatible\n");
263 hid_err(hdev, "failed retrieving pen parameters: %d\n", rc);
265 } else if (rc != len) {
267 "string descriptor with pen parameters has invalid length (got %d, expected %d), assuming not compatible\n",
273 * Fill report descriptor parameters from the string descriptor
275 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_LM] =
276 get_unaligned_le16(buf + 2);
277 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_LM] =
278 get_unaligned_le16(buf + 4);
279 desc_params[UCLOGIC_RDESC_PEN_PH_ID_PRESSURE_LM] =
280 get_unaligned_le16(buf + 8);
281 resolution = get_unaligned_le16(buf + 10);
282 if (resolution == 0) {
283 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_PM] = 0;
284 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_PM] = 0;
286 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_PM] =
287 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_LM] * 1000 /
289 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_PM] =
290 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_LM] * 1000 /
297 * Generate pen report descriptor
299 desc_ptr = uclogic_rdesc_template_apply(
300 uclogic_rdesc_v1_pen_template_arr,
301 uclogic_rdesc_v1_pen_template_size,
302 desc_params, ARRAY_SIZE(desc_params));
303 if (desc_ptr == NULL) {
309 * Fill-in the parameters
311 memset(pen, 0, sizeof(*pen));
312 pen->desc_ptr = desc_ptr;
314 pen->desc_size = uclogic_rdesc_v1_pen_template_size;
315 pen->id = UCLOGIC_RDESC_V1_PEN_ID;
316 pen->inrange = UCLOGIC_PARAMS_PEN_INRANGE_INVERTED;
328 * uclogic_params_get_le24() - get a 24-bit little-endian number from a
331 * @p: The pointer to the number buffer.
334 * The retrieved number
336 static s32 uclogic_params_get_le24(const void *p)
339 return b[0] | (b[1] << 8UL) | (b[2] << 16UL);
343 * uclogic_params_pen_init_v2() - initialize tablet interface pen
344 * input and retrieve its parameters from the device, using v2 protocol.
346 * @pen: Pointer to the pen parameters to initialize (to be
347 * cleaned up with uclogic_params_pen_cleanup()). Not
348 * modified in case of error, or if parameters are not
349 * found. Cannot be NULL.
350 * @pfound: Location for a flag which is set to true if the
351 * parameters were found, and to false if not (e.g.
352 * device was incompatible). Not modified in case of
353 * error. Cannot be NULL.
354 * @pparams_ptr: Location for a kmalloc'ed pointer to the retrieved raw
355 * parameters, which could be used to identify the tablet
356 * to some extent. Should be freed with kfree after use.
357 * NULL, if not needed. Not modified in case of error.
358 * Only set if *pfound is set to true.
359 * @pparams_len: Location for the length of the retrieved raw
360 * parameters. NULL, if not needed. Not modified in case
361 * of error. Only set if *pfound is set to true.
362 * @hdev: The HID device of the tablet interface to initialize
363 * and get parameters from. Cannot be NULL.
366 * Zero, if successful. A negative errno code on error.
368 static int uclogic_params_pen_init_v2(struct uclogic_params_pen *pen,
372 struct hid_device *hdev)
376 /* Buffer for (part of) the parameter string descriptor */
378 /* Parameter string descriptor required length */
379 const int params_len_min = 18;
380 /* Parameter string descriptor accepted length */
381 const int params_len_max = 32;
382 /* Parameter string descriptor received length */
386 /* Pen report descriptor template parameters */
387 s32 desc_params[UCLOGIC_RDESC_PH_ID_NUM];
388 __u8 *desc_ptr = NULL;
390 /* Check arguments */
391 if (pen == NULL || pfound == NULL || hdev == NULL) {
397 * Read string descriptor containing pen input parameters.
398 * The specific string descriptor and data were discovered by sniffing
399 * the Windows driver traffic.
400 * NOTE: This enables fully-functional tablet mode.
402 rc = uclogic_params_get_str_desc(&buf, hdev, 200, params_len_max);
405 "string descriptor with pen parameters not found, assuming not compatible\n");
408 hid_err(hdev, "failed retrieving pen parameters: %d\n", rc);
410 } else if (rc < params_len_min) {
412 "string descriptor with pen parameters is too short (got %d, expected at least %d), assuming not compatible\n",
420 * Check it's not just a catch-all UTF-16LE-encoded ASCII
421 * string (such as the model name) some tablets put into all
422 * unknown string descriptors.
426 (buf[i] >= 0x20 && buf[i] < 0x7f && buf[i + 1] == 0);
428 if (i >= params_len) {
430 "string descriptor with pen parameters seems to contain only text, assuming not compatible\n");
435 * Fill report descriptor parameters from the string descriptor
437 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_LM] =
438 uclogic_params_get_le24(buf + 2);
439 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_LM] =
440 uclogic_params_get_le24(buf + 5);
441 desc_params[UCLOGIC_RDESC_PEN_PH_ID_PRESSURE_LM] =
442 get_unaligned_le16(buf + 8);
443 resolution = get_unaligned_le16(buf + 10);
444 if (resolution == 0) {
445 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_PM] = 0;
446 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_PM] = 0;
448 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_PM] =
449 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_LM] * 1000 /
451 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_PM] =
452 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_LM] * 1000 /
457 * Generate pen report descriptor
459 desc_ptr = uclogic_rdesc_template_apply(
460 uclogic_rdesc_v2_pen_template_arr,
461 uclogic_rdesc_v2_pen_template_size,
462 desc_params, ARRAY_SIZE(desc_params));
463 if (desc_ptr == NULL) {
469 * Fill-in the parameters
471 memset(pen, 0, sizeof(*pen));
472 pen->desc_ptr = desc_ptr;
474 pen->desc_size = uclogic_rdesc_v2_pen_template_size;
475 pen->id = UCLOGIC_RDESC_V2_PEN_ID;
476 pen->inrange = UCLOGIC_PARAMS_PEN_INRANGE_NONE;
477 pen->fragmented_hires = true;
478 pen->tilt_y_flipped = true;
480 if (pparams_ptr != NULL) {
484 if (pparams_len != NULL)
485 *pparams_len = params_len;
497 * uclogic_params_frame_cleanup - free resources used by struct
498 * uclogic_params_frame (tablet interface's frame controls input parameters).
499 * Can be called repeatedly.
501 * @frame: Frame controls input parameters to cleanup. Cannot be NULL.
503 static void uclogic_params_frame_cleanup(struct uclogic_params_frame *frame)
505 kfree(frame->desc_ptr);
506 memset(frame, 0, sizeof(*frame));
510 * uclogic_params_frame_init_with_desc() - initialize tablet's frame control
511 * parameters with a static report descriptor.
513 * @frame: Pointer to the frame parameters to initialize (to be cleaned
514 * up with uclogic_params_frame_cleanup()). Not modified in case
515 * of error. Cannot be NULL.
516 * @desc_ptr: Report descriptor pointer. Can be NULL, if desc_size is zero.
517 * @desc_size: Report descriptor size.
518 * @id: Report ID used for frame reports, if they should be tweaked,
522 * Zero, if successful. A negative errno code on error.
524 static int uclogic_params_frame_init_with_desc(
525 struct uclogic_params_frame *frame,
526 const __u8 *desc_ptr,
532 if (frame == NULL || (desc_ptr == NULL && desc_size != 0))
535 copy_desc_ptr = kmemdup(desc_ptr, desc_size, GFP_KERNEL);
536 if (copy_desc_ptr == NULL)
539 memset(frame, 0, sizeof(*frame));
540 frame->desc_ptr = copy_desc_ptr;
541 frame->desc_size = desc_size;
547 * uclogic_params_frame_init_v1() - initialize v1 tablet interface frame
550 * @frame: Pointer to the frame parameters to initialize (to be cleaned
551 * up with uclogic_params_frame_cleanup()). Not modified in case
552 * of error, or if parameters are not found. Cannot be NULL.
553 * @pfound: Location for a flag which is set to true if the parameters
554 * were found, and to false if not (e.g. device was
555 * incompatible). Not modified in case of error. Cannot be NULL.
556 * @hdev: The HID device of the tablet interface to initialize and get
557 * parameters from. Cannot be NULL.
560 * Zero, if successful. A negative errno code on error.
562 static int uclogic_params_frame_init_v1(struct uclogic_params_frame *frame,
564 struct hid_device *hdev)
568 struct usb_device *usb_dev;
569 char *str_buf = NULL;
570 const size_t str_len = 16;
572 /* Check arguments */
573 if (frame == NULL || pfound == NULL || hdev == NULL) {
578 usb_dev = hid_to_usb_dev(hdev);
581 * Enable generic button mode
583 str_buf = kzalloc(str_len, GFP_KERNEL);
584 if (str_buf == NULL) {
589 rc = usb_string(usb_dev, 123, str_buf, str_len);
592 "generic button -enabling string descriptor not found\n");
595 } else if (strncmp(str_buf, "HK On", rc) != 0) {
597 "invalid response to enabling generic buttons: \"%s\"\n",
600 hid_dbg(hdev, "generic buttons enabled\n");
601 rc = uclogic_params_frame_init_with_desc(
603 uclogic_rdesc_v1_frame_arr,
604 uclogic_rdesc_v1_frame_size,
605 UCLOGIC_RDESC_V1_FRAME_ID);
619 * uclogic_params_cleanup_event_hooks - free resources used by the list of raw
621 * Can be called repeatedly.
623 * @params: Input parameters to cleanup. Cannot be NULL.
625 static void uclogic_params_cleanup_event_hooks(struct uclogic_params *params)
627 struct uclogic_raw_event_hook *curr, *n;
629 if (!params || !params->event_hooks)
632 list_for_each_entry_safe(curr, n, ¶ms->event_hooks->list, list) {
633 cancel_work_sync(&curr->work);
634 list_del(&curr->list);
639 kfree(params->event_hooks);
640 params->event_hooks = NULL;
644 * uclogic_params_cleanup - free resources used by struct uclogic_params
645 * (tablet interface's parameters).
646 * Can be called repeatedly.
648 * @params: Input parameters to cleanup. Cannot be NULL.
650 void uclogic_params_cleanup(struct uclogic_params *params)
652 if (!params->invalid) {
654 kfree(params->desc_ptr);
655 uclogic_params_pen_cleanup(¶ms->pen);
656 for (i = 0; i < ARRAY_SIZE(params->frame_list); i++)
657 uclogic_params_frame_cleanup(¶ms->frame_list[i]);
659 uclogic_params_cleanup_event_hooks(params);
660 memset(params, 0, sizeof(*params));
665 * uclogic_params_get_desc() - Get a replacement report descriptor for a
666 * tablet's interface.
668 * @params: The parameters of a tablet interface to get report
669 * descriptor for. Cannot be NULL.
670 * @pdesc: Location for the resulting, kmalloc-allocated report
671 * descriptor pointer, or for NULL, if there's no replacement
672 * report descriptor. Not modified in case of error. Cannot be
674 * @psize: Location for the resulting report descriptor size, not set if
675 * there's no replacement report descriptor. Not modified in case
676 * of error. Cannot be NULL.
679 * Zero, if successful.
680 * -EINVAL, if invalid arguments are supplied.
681 * -ENOMEM, if failed to allocate memory.
683 int uclogic_params_get_desc(const struct uclogic_params *params,
688 bool present = false;
689 unsigned int size = 0;
693 /* Check arguments */
694 if (params == NULL || pdesc == NULL || psize == NULL)
697 /* Concatenate descriptors */
698 #define ADD_DESC(_desc_ptr, _desc_size) \
700 unsigned int new_size; \
702 if ((_desc_ptr) == NULL) { \
705 new_size = size + (_desc_size); \
706 new_desc = krealloc(desc, new_size, GFP_KERNEL); \
707 if (new_desc == NULL) { \
710 memcpy(new_desc + size, (_desc_ptr), (_desc_size)); \
716 ADD_DESC(params->desc_ptr, params->desc_size);
717 ADD_DESC(params->pen.desc_ptr, params->pen.desc_size);
718 for (i = 0; i < ARRAY_SIZE(params->frame_list); i++) {
719 ADD_DESC(params->frame_list[i].desc_ptr,
720 params->frame_list[i].desc_size);
737 * uclogic_params_init_invalid() - initialize tablet interface parameters,
738 * specifying the interface is invalid.
740 * @params: Parameters to initialize (to be cleaned with
741 * uclogic_params_cleanup()). Cannot be NULL.
743 static void uclogic_params_init_invalid(struct uclogic_params *params)
745 params->invalid = true;
749 * uclogic_params_init_with_opt_desc() - initialize tablet interface
750 * parameters with an optional replacement report descriptor. Only modify
751 * report descriptor, if the original report descriptor matches the expected
754 * @params: Parameters to initialize (to be cleaned with
755 * uclogic_params_cleanup()). Not modified in case of
756 * error. Cannot be NULL.
757 * @hdev: The HID device of the tablet interface create the
758 * parameters for. Cannot be NULL.
759 * @orig_desc_size: Expected size of the original report descriptor to
761 * @desc_ptr: Pointer to the replacement report descriptor.
762 * Can be NULL, if desc_size is zero.
763 * @desc_size: Size of the replacement report descriptor.
766 * Zero, if successful. -EINVAL if an invalid argument was passed.
767 * -ENOMEM, if failed to allocate memory.
769 static int uclogic_params_init_with_opt_desc(struct uclogic_params *params,
770 struct hid_device *hdev,
771 unsigned int orig_desc_size,
773 unsigned int desc_size)
775 __u8 *desc_copy_ptr = NULL;
776 unsigned int desc_copy_size;
779 /* Check arguments */
780 if (params == NULL || hdev == NULL ||
781 (desc_ptr == NULL && desc_size != 0)) {
786 /* Replace report descriptor, if it matches */
787 if (hdev->dev_rsize == orig_desc_size) {
789 "device report descriptor matches the expected size, replacing\n");
790 desc_copy_ptr = kmemdup(desc_ptr, desc_size, GFP_KERNEL);
791 if (desc_copy_ptr == NULL) {
795 desc_copy_size = desc_size;
798 "device report descriptor doesn't match the expected size (%u != %u), preserving\n",
799 hdev->dev_rsize, orig_desc_size);
800 desc_copy_ptr = NULL;
804 /* Output parameters */
805 memset(params, 0, sizeof(*params));
806 params->desc_ptr = desc_copy_ptr;
807 desc_copy_ptr = NULL;
808 params->desc_size = desc_copy_size;
812 kfree(desc_copy_ptr);
817 * uclogic_params_huion_init() - initialize a Huion tablet interface and discover
820 * @params: Parameters to fill in (to be cleaned with
821 * uclogic_params_cleanup()). Not modified in case of error.
823 * @hdev: The HID device of the tablet interface to initialize and get
824 * parameters from. Cannot be NULL.
827 * Zero, if successful. A negative errno code on error.
829 static int uclogic_params_huion_init(struct uclogic_params *params,
830 struct hid_device *hdev)
833 struct usb_device *udev;
834 struct usb_interface *iface;
835 __u8 bInterfaceNumber;
837 /* The resulting parameters (noop) */
838 struct uclogic_params p = {0, };
839 static const char transition_ver[] = "HUION_T153_160607";
840 char *ver_ptr = NULL;
841 const size_t ver_len = sizeof(transition_ver) + 1;
842 __u8 *params_ptr = NULL;
843 size_t params_len = 0;
844 /* Parameters string descriptor of a model with touch ring (HS610) */
845 const __u8 touch_ring_model_params_buf[] = {
846 0x13, 0x03, 0x70, 0xC6, 0x00, 0x06, 0x7C, 0x00,
847 0xFF, 0x1F, 0xD8, 0x13, 0x03, 0x0D, 0x10, 0x01,
851 /* Check arguments */
852 if (params == NULL || hdev == NULL) {
857 udev = hid_to_usb_dev(hdev);
858 iface = to_usb_interface(hdev->dev.parent);
859 bInterfaceNumber = iface->cur_altsetting->desc.bInterfaceNumber;
861 /* If it's a custom keyboard interface */
862 if (bInterfaceNumber == 1) {
863 /* Keep everything intact, but mark pen usage invalid */
864 p.pen.usage_invalid = true;
866 /* Else, if it's not a pen interface */
867 } else if (bInterfaceNumber != 0) {
868 uclogic_params_init_invalid(&p);
872 /* Try to get firmware version */
873 ver_ptr = kzalloc(ver_len, GFP_KERNEL);
874 if (ver_ptr == NULL) {
878 rc = usb_string(udev, 201, ver_ptr, ver_len);
883 "failed retrieving Huion firmware version: %d\n", rc);
887 /* If this is a transition firmware */
888 if (strcmp(ver_ptr, transition_ver) == 0) {
890 "transition firmware detected, not probing pen v2 parameters\n");
892 /* Try to probe v2 pen parameters */
893 rc = uclogic_params_pen_init_v2(&p.pen, &found,
894 ¶ms_ptr, ¶ms_len,
898 "failed probing pen v2 parameters: %d\n", rc);
901 hid_dbg(hdev, "pen v2 parameters found\n");
902 /* Create v2 frame button parameters */
903 rc = uclogic_params_frame_init_with_desc(
905 uclogic_rdesc_v2_frame_buttons_arr,
906 uclogic_rdesc_v2_frame_buttons_size,
907 UCLOGIC_RDESC_V2_FRAME_BUTTONS_ID);
910 "failed creating v2 frame button parameters: %d\n",
915 /* Link from pen sub-report */
916 p.pen.subreport_list[0].value = 0xe0;
917 p.pen.subreport_list[0].id =
918 UCLOGIC_RDESC_V2_FRAME_BUTTONS_ID;
920 /* If this is the model with touch ring */
921 if (params_ptr != NULL &&
922 params_len == sizeof(touch_ring_model_params_buf) &&
923 memcmp(params_ptr, touch_ring_model_params_buf,
925 /* Create touch ring parameters */
926 rc = uclogic_params_frame_init_with_desc(
928 uclogic_rdesc_v2_frame_touch_ring_arr,
929 uclogic_rdesc_v2_frame_touch_ring_size,
930 UCLOGIC_RDESC_V2_FRAME_TOUCH_ID);
933 "failed creating v2 frame touch ring parameters: %d\n",
937 p.frame_list[1].suffix = "Touch Ring";
938 p.frame_list[1].dev_id_byte =
939 UCLOGIC_RDESC_V2_FRAME_TOUCH_DEV_ID_BYTE;
940 p.frame_list[1].touch_byte = 5;
941 p.frame_list[1].touch_max = 12;
942 p.frame_list[1].touch_flip_at = 7;
944 /* Create touch strip parameters */
945 rc = uclogic_params_frame_init_with_desc(
947 uclogic_rdesc_v2_frame_touch_strip_arr,
948 uclogic_rdesc_v2_frame_touch_strip_size,
949 UCLOGIC_RDESC_V2_FRAME_TOUCH_ID);
952 "failed creating v2 frame touch strip parameters: %d\n",
956 p.frame_list[1].suffix = "Touch Strip";
957 p.frame_list[1].dev_id_byte =
958 UCLOGIC_RDESC_V2_FRAME_TOUCH_DEV_ID_BYTE;
959 p.frame_list[1].touch_byte = 5;
960 p.frame_list[1].touch_max = 8;
963 /* Link from pen sub-report */
964 p.pen.subreport_list[1].value = 0xf0;
965 p.pen.subreport_list[1].id =
966 UCLOGIC_RDESC_V2_FRAME_TOUCH_ID;
968 /* Create v2 frame dial parameters */
969 rc = uclogic_params_frame_init_with_desc(
971 uclogic_rdesc_v2_frame_dial_arr,
972 uclogic_rdesc_v2_frame_dial_size,
973 UCLOGIC_RDESC_V2_FRAME_DIAL_ID);
976 "failed creating v2 frame dial parameters: %d\n",
980 p.frame_list[2].suffix = "Dial";
981 p.frame_list[2].dev_id_byte =
982 UCLOGIC_RDESC_V2_FRAME_DIAL_DEV_ID_BYTE;
983 p.frame_list[2].bitmap_dial_byte = 5;
985 /* Link from pen sub-report */
986 p.pen.subreport_list[2].value = 0xf1;
987 p.pen.subreport_list[2].id =
988 UCLOGIC_RDESC_V2_FRAME_DIAL_ID;
992 hid_dbg(hdev, "pen v2 parameters not found\n");
995 /* Try to probe v1 pen parameters */
996 rc = uclogic_params_pen_init_v1(&p.pen, &found, hdev);
999 "failed probing pen v1 parameters: %d\n", rc);
1002 hid_dbg(hdev, "pen v1 parameters found\n");
1003 /* Try to probe v1 frame */
1004 rc = uclogic_params_frame_init_v1(&p.frame_list[0],
1007 hid_err(hdev, "v1 frame probing failed: %d\n", rc);
1010 hid_dbg(hdev, "frame v1 parameters%s found\n",
1011 (found ? "" : " not"));
1013 /* Link frame button subreports from pen reports */
1014 p.pen.subreport_list[0].value = 0xe0;
1015 p.pen.subreport_list[0].id =
1016 UCLOGIC_RDESC_V1_FRAME_ID;
1020 hid_dbg(hdev, "pen v1 parameters not found\n");
1022 uclogic_params_init_invalid(&p);
1025 /* Output parameters */
1026 memcpy(params, &p, sizeof(*params));
1027 memset(&p, 0, sizeof(p));
1032 uclogic_params_cleanup(&p);
1037 * uclogic_probe_interface() - some tablets, like the Parblo A610 PLUS V2 or
1038 * the XP-PEN Deco Mini 7, need to be initialized by sending them magic data.
1040 * @hdev: The HID device of the tablet interface to initialize and get
1041 * parameters from. Cannot be NULL.
1042 * @magic_arr: The magic data that should be sent to probe the interface.
1044 * @magic_size: Size of the magic data.
1045 * @endpoint: Endpoint where the magic data should be sent.
1048 * Zero, if successful. A negative errno code on error.
1050 static int uclogic_probe_interface(struct hid_device *hdev, const u8 *magic_arr,
1051 size_t magic_size, int endpoint)
1053 struct usb_device *udev;
1054 unsigned int pipe = 0;
1059 if (!hdev || !magic_arr) {
1064 buf = kmemdup(magic_arr, magic_size, GFP_KERNEL);
1070 udev = hid_to_usb_dev(hdev);
1071 pipe = usb_sndintpipe(udev, endpoint);
1073 rc = usb_interrupt_msg(udev, pipe, buf, magic_size, &sent, 1000);
1074 if (rc || sent != magic_size) {
1075 hid_err(hdev, "Interface probing failed: %d\n", rc);
1087 * uclogic_params_parse_ugee_v2_desc - parse the string descriptor containing
1088 * pen and frame parameters returned by UGEE v2 devices.
1090 * @str_desc: String descriptor, cannot be NULL.
1091 * @str_desc_size: Size of the string descriptor.
1092 * @desc_params: Output description params list.
1093 * @desc_params_size: Size of the output description params list.
1094 * @frame_type: Output frame type.
1097 * Zero, if successful. A negative errno code on error.
1099 static int uclogic_params_parse_ugee_v2_desc(const __u8 *str_desc,
1100 size_t str_desc_size,
1102 size_t desc_params_size,
1103 enum uclogic_params_frame_type *frame_type)
1105 s32 pen_x_lm, pen_y_lm;
1106 s32 pen_x_pm, pen_y_pm;
1107 s32 pen_pressure_lm;
1108 s32 frame_num_buttons;
1111 /* Minimum descriptor length required, maximum seen so far is 14 */
1112 const int min_str_desc_size = 12;
1114 if (!str_desc || str_desc_size < min_str_desc_size)
1117 if (desc_params_size != UCLOGIC_RDESC_PH_ID_NUM)
1120 pen_x_lm = get_unaligned_le16(str_desc + 2);
1121 pen_y_lm = get_unaligned_le16(str_desc + 4);
1122 frame_num_buttons = str_desc[6];
1123 *frame_type = str_desc[7];
1124 pen_pressure_lm = get_unaligned_le16(str_desc + 8);
1126 resolution = get_unaligned_le16(str_desc + 10);
1127 if (resolution == 0) {
1131 pen_x_pm = pen_x_lm * 1000 / resolution;
1132 pen_y_pm = pen_y_lm * 1000 / resolution;
1135 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_LM] = pen_x_lm;
1136 desc_params[UCLOGIC_RDESC_PEN_PH_ID_X_PM] = pen_x_pm;
1137 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_LM] = pen_y_lm;
1138 desc_params[UCLOGIC_RDESC_PEN_PH_ID_Y_PM] = pen_y_pm;
1139 desc_params[UCLOGIC_RDESC_PEN_PH_ID_PRESSURE_LM] = pen_pressure_lm;
1140 desc_params[UCLOGIC_RDESC_FRAME_PH_ID_UM] = frame_num_buttons;
1146 * uclogic_params_ugee_v2_init_frame_buttons() - initialize a UGEE v2 frame with
1148 * @p: Parameters to fill in, cannot be NULL.
1149 * @desc_params: Device description params list.
1150 * @desc_params_size: Size of the description params list.
1153 * Zero, if successful. A negative errno code on error.
1155 static int uclogic_params_ugee_v2_init_frame_buttons(struct uclogic_params *p,
1156 const s32 *desc_params,
1157 size_t desc_params_size)
1159 __u8 *rdesc_frame = NULL;
1162 if (!p || desc_params_size != UCLOGIC_RDESC_PH_ID_NUM)
1165 rdesc_frame = uclogic_rdesc_template_apply(
1166 uclogic_rdesc_ugee_v2_frame_btn_template_arr,
1167 uclogic_rdesc_ugee_v2_frame_btn_template_size,
1168 desc_params, UCLOGIC_RDESC_PH_ID_NUM);
1172 rc = uclogic_params_frame_init_with_desc(&p->frame_list[0],
1174 uclogic_rdesc_ugee_v2_frame_btn_template_size,
1175 UCLOGIC_RDESC_V1_FRAME_ID);
1181 * uclogic_params_ugee_v2_init_frame_dial() - initialize a UGEE v2 frame with a
1183 * @p: Parameters to fill in, cannot be NULL.
1184 * @desc_params: Device description params list.
1185 * @desc_params_size: Size of the description params list.
1188 * Zero, if successful. A negative errno code on error.
1190 static int uclogic_params_ugee_v2_init_frame_dial(struct uclogic_params *p,
1191 const s32 *desc_params,
1192 size_t desc_params_size)
1194 __u8 *rdesc_frame = NULL;
1197 if (!p || desc_params_size != UCLOGIC_RDESC_PH_ID_NUM)
1200 rdesc_frame = uclogic_rdesc_template_apply(
1201 uclogic_rdesc_ugee_v2_frame_dial_template_arr,
1202 uclogic_rdesc_ugee_v2_frame_dial_template_size,
1203 desc_params, UCLOGIC_RDESC_PH_ID_NUM);
1207 rc = uclogic_params_frame_init_with_desc(&p->frame_list[0],
1209 uclogic_rdesc_ugee_v2_frame_dial_template_size,
1210 UCLOGIC_RDESC_V1_FRAME_ID);
1215 p->frame_list[0].bitmap_dial_byte = 7;
1220 * uclogic_params_ugee_v2_init_frame_mouse() - initialize a UGEE v2 frame with a
1222 * @p: Parameters to fill in, cannot be NULL.
1225 * Zero, if successful. A negative errno code on error.
1227 static int uclogic_params_ugee_v2_init_frame_mouse(struct uclogic_params *p)
1234 rc = uclogic_params_frame_init_with_desc(&p->frame_list[1],
1235 uclogic_rdesc_ugee_v2_frame_mouse_template_arr,
1236 uclogic_rdesc_ugee_v2_frame_mouse_template_size,
1237 UCLOGIC_RDESC_V1_FRAME_ID);
1242 * uclogic_params_ugee_v2_has_battery() - check whether a UGEE v2 device has
1244 * @hdev: The HID device of the tablet interface.
1247 * True if the device has battery, false otherwise.
1249 static bool uclogic_params_ugee_v2_has_battery(struct hid_device *hdev)
1251 struct uclogic_drvdata *drvdata = hid_get_drvdata(hdev);
1253 if (drvdata->quirks & UCLOGIC_BATTERY_QUIRK)
1256 /* The XP-PEN Deco LW vendor, product and version are identical to the
1257 * Deco L. The only difference reported by their firmware is the product
1258 * name. Add a quirk to support battery reporting on the wireless
1261 if (hdev->vendor == USB_VENDOR_ID_UGEE &&
1262 hdev->product == USB_DEVICE_ID_UGEE_XPPEN_TABLET_DECO_L) {
1263 struct usb_device *udev = hid_to_usb_dev(hdev);
1265 if (strstarts(udev->product, "Deco LW"))
1273 * uclogic_params_ugee_v2_init_battery() - initialize UGEE v2 battery reporting.
1274 * @hdev: The HID device of the tablet interface, cannot be NULL.
1275 * @p: Parameters to fill in, cannot be NULL.
1278 * Zero, if successful. A negative errno code on error.
1280 static int uclogic_params_ugee_v2_init_battery(struct hid_device *hdev,
1281 struct uclogic_params *p)
1288 /* Some tablets contain invalid characters in hdev->uniq, throwing a
1289 * "hwmon: '<name>' is not a valid name attribute, please fix" error.
1290 * Use the device vendor and product IDs instead.
1292 snprintf(hdev->uniq, sizeof(hdev->uniq), "%x-%x", hdev->vendor,
1295 rc = uclogic_params_frame_init_with_desc(&p->frame_list[1],
1296 uclogic_rdesc_ugee_v2_battery_template_arr,
1297 uclogic_rdesc_ugee_v2_battery_template_size,
1298 UCLOGIC_RDESC_UGEE_V2_BATTERY_ID);
1302 p->frame_list[1].suffix = "Battery";
1303 p->pen.subreport_list[1].value = 0xf2;
1304 p->pen.subreport_list[1].id = UCLOGIC_RDESC_UGEE_V2_BATTERY_ID;
1310 * uclogic_params_ugee_v2_reconnect_work() - When a wireless tablet looses
1311 * connection to the USB dongle and reconnects, either because of its physical
1312 * distance or because it was switches off and on using the frame's switch,
1313 * uclogic_probe_interface() needs to be called again to enable the tablet.
1315 * @work: The work that triggered this function.
1317 static void uclogic_params_ugee_v2_reconnect_work(struct work_struct *work)
1319 struct uclogic_raw_event_hook *event_hook;
1321 event_hook = container_of(work, struct uclogic_raw_event_hook, work);
1322 uclogic_probe_interface(event_hook->hdev, uclogic_ugee_v2_probe_arr,
1323 uclogic_ugee_v2_probe_size,
1324 uclogic_ugee_v2_probe_endpoint);
1328 * uclogic_params_ugee_v2_init_event_hooks() - initialize the list of events
1329 * to be hooked for UGEE v2 devices.
1330 * @hdev: The HID device of the tablet interface to initialize and get
1332 * @p: Parameters to fill in, cannot be NULL.
1335 * Zero, if successful. A negative errno code on error.
1337 static int uclogic_params_ugee_v2_init_event_hooks(struct hid_device *hdev,
1338 struct uclogic_params *p)
1340 struct uclogic_raw_event_hook *event_hook;
1341 __u8 reconnect_event[] = {
1342 /* Event received on wireless tablet reconnection */
1343 0x02, 0xF8, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
1349 /* The reconnection event is only received if the tablet has battery */
1350 if (!uclogic_params_ugee_v2_has_battery(hdev))
1353 p->event_hooks = kzalloc(sizeof(*p->event_hooks), GFP_KERNEL);
1354 if (!p->event_hooks)
1357 INIT_LIST_HEAD(&p->event_hooks->list);
1359 event_hook = kzalloc(sizeof(*event_hook), GFP_KERNEL);
1363 INIT_WORK(&event_hook->work, uclogic_params_ugee_v2_reconnect_work);
1364 event_hook->hdev = hdev;
1365 event_hook->size = ARRAY_SIZE(reconnect_event);
1366 event_hook->event = kmemdup(reconnect_event, event_hook->size, GFP_KERNEL);
1367 if (!event_hook->event)
1370 list_add_tail(&event_hook->list, &p->event_hooks->list);
1376 * uclogic_params_ugee_v2_init() - initialize a UGEE graphics tablets by
1377 * discovering their parameters.
1379 * These tables, internally designed as v2 to differentiate them from older
1380 * models, expect a payload of magic data in orther to be switched to the fully
1381 * functional mode and expose their parameters in a similar way to the
1382 * information present in uclogic_params_pen_init_v1() but with some
1385 * @params: Parameters to fill in (to be cleaned with
1386 * uclogic_params_cleanup()). Not modified in case of error.
1388 * @hdev: The HID device of the tablet interface to initialize and get
1389 * parameters from. Cannot be NULL.
1392 * Zero, if successful. A negative errno code on error.
1394 static int uclogic_params_ugee_v2_init(struct uclogic_params *params,
1395 struct hid_device *hdev)
1398 struct uclogic_drvdata *drvdata;
1399 struct usb_interface *iface;
1400 __u8 bInterfaceNumber;
1401 const int str_desc_len = 12;
1402 __u8 *str_desc = NULL;
1403 __u8 *rdesc_pen = NULL;
1404 s32 desc_params[UCLOGIC_RDESC_PH_ID_NUM];
1405 enum uclogic_params_frame_type frame_type;
1406 /* The resulting parameters (noop) */
1407 struct uclogic_params p = {0, };
1409 if (!params || !hdev) {
1414 drvdata = hid_get_drvdata(hdev);
1415 iface = to_usb_interface(hdev->dev.parent);
1416 bInterfaceNumber = iface->cur_altsetting->desc.bInterfaceNumber;
1418 if (bInterfaceNumber == 0) {
1419 rc = uclogic_params_ugee_v2_init_frame_mouse(&p);
1426 if (bInterfaceNumber != 2) {
1427 uclogic_params_init_invalid(&p);
1432 * Initialize the interface by sending magic data.
1433 * The specific data was discovered by sniffing the Windows driver
1436 rc = uclogic_probe_interface(hdev, uclogic_ugee_v2_probe_arr,
1437 uclogic_ugee_v2_probe_size,
1438 uclogic_ugee_v2_probe_endpoint);
1440 uclogic_params_init_invalid(&p);
1445 * Read the string descriptor containing pen and frame parameters.
1446 * The specific string descriptor and data were discovered by sniffing
1447 * the Windows driver traffic.
1449 rc = uclogic_params_get_str_desc(&str_desc, hdev, 100, str_desc_len);
1450 if (rc != str_desc_len) {
1451 hid_err(hdev, "failed retrieving pen and frame parameters: %d\n", rc);
1452 uclogic_params_init_invalid(&p);
1456 rc = uclogic_params_parse_ugee_v2_desc(str_desc, str_desc_len,
1458 ARRAY_SIZE(desc_params),
1466 /* Initialize the pen interface */
1467 rdesc_pen = uclogic_rdesc_template_apply(
1468 uclogic_rdesc_ugee_v2_pen_template_arr,
1469 uclogic_rdesc_ugee_v2_pen_template_size,
1470 desc_params, ARRAY_SIZE(desc_params));
1476 p.pen.desc_ptr = rdesc_pen;
1477 p.pen.desc_size = uclogic_rdesc_ugee_v2_pen_template_size;
1479 p.pen.subreport_list[0].value = 0xf0;
1480 p.pen.subreport_list[0].id = UCLOGIC_RDESC_V1_FRAME_ID;
1482 /* Initialize the frame interface */
1483 if (drvdata->quirks & UCLOGIC_MOUSE_FRAME_QUIRK)
1484 frame_type = UCLOGIC_PARAMS_FRAME_MOUSE;
1486 switch (frame_type) {
1487 case UCLOGIC_PARAMS_FRAME_DIAL:
1488 case UCLOGIC_PARAMS_FRAME_MOUSE:
1489 rc = uclogic_params_ugee_v2_init_frame_dial(&p, desc_params,
1490 ARRAY_SIZE(desc_params));
1492 case UCLOGIC_PARAMS_FRAME_BUTTONS:
1494 rc = uclogic_params_ugee_v2_init_frame_buttons(&p, desc_params,
1495 ARRAY_SIZE(desc_params));
1502 /* Initialize the battery interface*/
1503 if (uclogic_params_ugee_v2_has_battery(hdev)) {
1504 rc = uclogic_params_ugee_v2_init_battery(hdev, &p);
1506 hid_err(hdev, "error initializing battery: %d\n", rc);
1511 /* Create a list of raw events to be ignored */
1512 rc = uclogic_params_ugee_v2_init_event_hooks(hdev, &p);
1514 hid_err(hdev, "error initializing event hook list: %d\n", rc);
1519 /* Output parameters */
1520 memcpy(params, &p, sizeof(*params));
1521 memset(&p, 0, sizeof(p));
1525 uclogic_params_cleanup(&p);
1530 * uclogic_params_init() - initialize a tablet interface and discover its
1533 * @params: Parameters to fill in (to be cleaned with
1534 * uclogic_params_cleanup()). Not modified in case of error.
1536 * @hdev: The HID device of the tablet interface to initialize and get
1537 * parameters from. Cannot be NULL. Must be using the USB low-level
1538 * driver, i.e. be an actual USB tablet.
1541 * Zero, if successful. A negative errno code on error.
1543 int uclogic_params_init(struct uclogic_params *params,
1544 struct hid_device *hdev)
1547 struct usb_device *udev;
1548 __u8 bNumInterfaces;
1549 struct usb_interface *iface;
1550 __u8 bInterfaceNumber;
1552 /* The resulting parameters (noop) */
1553 struct uclogic_params p = {0, };
1555 /* Check arguments */
1556 if (params == NULL || hdev == NULL || !hid_is_usb(hdev)) {
1561 udev = hid_to_usb_dev(hdev);
1562 bNumInterfaces = udev->config->desc.bNumInterfaces;
1563 iface = to_usb_interface(hdev->dev.parent);
1564 bInterfaceNumber = iface->cur_altsetting->desc.bInterfaceNumber;
1567 * Set replacement report descriptor if the original matches the
1568 * specified size. Otherwise keep interface unchanged.
1570 #define WITH_OPT_DESC(_orig_desc_token, _new_desc_token) \
1571 uclogic_params_init_with_opt_desc( \
1573 UCLOGIC_RDESC_##_orig_desc_token##_SIZE, \
1574 uclogic_rdesc_##_new_desc_token##_arr, \
1575 uclogic_rdesc_##_new_desc_token##_size)
1577 #define VID_PID(_vid, _pid) \
1578 (((__u32)(_vid) << 16) | ((__u32)(_pid) & U16_MAX))
1581 * Handle specific interfaces for specific tablets.
1583 * Observe the following logic:
1585 * If the interface is recognized as producing certain useful input:
1586 * Mark interface as valid.
1587 * Output interface parameters.
1588 * Else, if the interface is recognized as *not* producing any useful
1590 * Mark interface as invalid.
1592 * Mark interface as valid.
1593 * Output noop parameters.
1595 * Rule of thumb: it is better to disable a broken interface than let
1596 * it spew garbage input.
1599 switch (VID_PID(hdev->vendor, hdev->product)) {
1600 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1601 USB_DEVICE_ID_UCLOGIC_TABLET_PF1209):
1602 rc = WITH_OPT_DESC(PF1209_ORIG, pf1209_fixed);
1606 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1607 USB_DEVICE_ID_UCLOGIC_TABLET_WP4030U):
1608 rc = WITH_OPT_DESC(WPXXXXU_ORIG, wp4030u_fixed);
1612 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1613 USB_DEVICE_ID_UCLOGIC_TABLET_WP5540U):
1614 if (hdev->dev_rsize == UCLOGIC_RDESC_WP5540U_V2_ORIG_SIZE) {
1615 if (bInterfaceNumber == 0) {
1616 /* Try to probe v1 pen parameters */
1617 rc = uclogic_params_pen_init_v1(&p.pen,
1621 "pen probing failed: %d\n",
1627 "pen parameters not found");
1630 uclogic_params_init_invalid(&p);
1633 rc = WITH_OPT_DESC(WPXXXXU_ORIG, wp5540u_fixed);
1638 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1639 USB_DEVICE_ID_UCLOGIC_TABLET_WP8060U):
1640 rc = WITH_OPT_DESC(WPXXXXU_ORIG, wp8060u_fixed);
1644 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1645 USB_DEVICE_ID_UCLOGIC_TABLET_WP1062):
1646 rc = WITH_OPT_DESC(WP1062_ORIG, wp1062_fixed);
1650 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1651 USB_DEVICE_ID_UCLOGIC_WIRELESS_TABLET_TWHL850):
1652 switch (bInterfaceNumber) {
1654 rc = WITH_OPT_DESC(TWHL850_ORIG0, twhl850_fixed0);
1659 rc = WITH_OPT_DESC(TWHL850_ORIG1, twhl850_fixed1);
1664 rc = WITH_OPT_DESC(TWHL850_ORIG2, twhl850_fixed2);
1670 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1671 USB_DEVICE_ID_UCLOGIC_TABLET_TWHA60):
1673 * If it is not a three-interface version, which is known to
1674 * respond to initialization.
1676 if (bNumInterfaces != 3) {
1677 switch (bInterfaceNumber) {
1679 rc = WITH_OPT_DESC(TWHA60_ORIG0,
1685 rc = WITH_OPT_DESC(TWHA60_ORIG1,
1694 case VID_PID(USB_VENDOR_ID_HUION,
1695 USB_DEVICE_ID_HUION_TABLET):
1696 case VID_PID(USB_VENDOR_ID_HUION,
1697 USB_DEVICE_ID_HUION_TABLET2):
1698 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1699 USB_DEVICE_ID_HUION_TABLET):
1700 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1701 USB_DEVICE_ID_YIYNOVA_TABLET):
1702 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1703 USB_DEVICE_ID_UCLOGIC_UGEE_TABLET_81):
1704 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1705 USB_DEVICE_ID_UCLOGIC_DRAWIMAGE_G3):
1706 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1707 USB_DEVICE_ID_UCLOGIC_UGEE_TABLET_45):
1708 case VID_PID(USB_VENDOR_ID_UCLOGIC,
1709 USB_DEVICE_ID_UCLOGIC_UGEE_TABLET_47):
1710 rc = uclogic_params_huion_init(&p, hdev);
1714 case VID_PID(USB_VENDOR_ID_UGTIZER,
1715 USB_DEVICE_ID_UGTIZER_TABLET_GP0610):
1716 case VID_PID(USB_VENDOR_ID_UGTIZER,
1717 USB_DEVICE_ID_UGTIZER_TABLET_GT5040):
1718 case VID_PID(USB_VENDOR_ID_UGEE,
1719 USB_DEVICE_ID_UGEE_XPPEN_TABLET_G540):
1720 case VID_PID(USB_VENDOR_ID_UGEE,
1721 USB_DEVICE_ID_UGEE_XPPEN_TABLET_G640):
1722 case VID_PID(USB_VENDOR_ID_UGEE,
1723 USB_DEVICE_ID_UGEE_XPPEN_TABLET_STAR06):
1724 case VID_PID(USB_VENDOR_ID_UGEE,
1725 USB_DEVICE_ID_UGEE_TABLET_RAINBOW_CV720):
1726 /* If this is the pen interface */
1727 if (bInterfaceNumber == 1) {
1728 /* Probe v1 pen parameters */
1729 rc = uclogic_params_pen_init_v1(&p.pen, &found, hdev);
1731 hid_err(hdev, "pen probing failed: %d\n", rc);
1735 hid_warn(hdev, "pen parameters not found");
1736 uclogic_params_init_invalid(&p);
1739 uclogic_params_init_invalid(&p);
1742 case VID_PID(USB_VENDOR_ID_UGEE,
1743 USB_DEVICE_ID_UGEE_XPPEN_TABLET_DECO01):
1744 /* If this is the pen and frame interface */
1745 if (bInterfaceNumber == 1) {
1746 /* Probe v1 pen parameters */
1747 rc = uclogic_params_pen_init_v1(&p.pen, &found, hdev);
1749 hid_err(hdev, "pen probing failed: %d\n", rc);
1752 /* Initialize frame parameters */
1753 rc = uclogic_params_frame_init_with_desc(
1755 uclogic_rdesc_xppen_deco01_frame_arr,
1756 uclogic_rdesc_xppen_deco01_frame_size,
1761 uclogic_params_init_invalid(&p);
1764 case VID_PID(USB_VENDOR_ID_UGEE,
1765 USB_DEVICE_ID_UGEE_PARBLO_A610_PRO):
1766 case VID_PID(USB_VENDOR_ID_UGEE,
1767 USB_DEVICE_ID_UGEE_XPPEN_TABLET_DECO01_V2):
1768 case VID_PID(USB_VENDOR_ID_UGEE,
1769 USB_DEVICE_ID_UGEE_XPPEN_TABLET_DECO_L):
1770 case VID_PID(USB_VENDOR_ID_UGEE,
1771 USB_DEVICE_ID_UGEE_XPPEN_TABLET_DECO_PRO_MW):
1772 case VID_PID(USB_VENDOR_ID_UGEE,
1773 USB_DEVICE_ID_UGEE_XPPEN_TABLET_DECO_PRO_S):
1774 case VID_PID(USB_VENDOR_ID_UGEE,
1775 USB_DEVICE_ID_UGEE_XPPEN_TABLET_DECO_PRO_SW):
1776 rc = uclogic_params_ugee_v2_init(&p, hdev);
1780 case VID_PID(USB_VENDOR_ID_TRUST,
1781 USB_DEVICE_ID_TRUST_PANORA_TABLET):
1782 case VID_PID(USB_VENDOR_ID_UGEE,
1783 USB_DEVICE_ID_UGEE_TABLET_G5):
1784 /* Ignore non-pen interfaces */
1785 if (bInterfaceNumber != 1) {
1786 uclogic_params_init_invalid(&p);
1790 rc = uclogic_params_pen_init_v1(&p.pen, &found, hdev);
1792 hid_err(hdev, "pen probing failed: %d\n", rc);
1795 rc = uclogic_params_frame_init_with_desc(
1797 uclogic_rdesc_ugee_g5_frame_arr,
1798 uclogic_rdesc_ugee_g5_frame_size,
1799 UCLOGIC_RDESC_UGEE_G5_FRAME_ID);
1802 "failed creating frame parameters: %d\n",
1806 p.frame_list[0].re_lsb =
1807 UCLOGIC_RDESC_UGEE_G5_FRAME_RE_LSB;
1808 p.frame_list[0].dev_id_byte =
1809 UCLOGIC_RDESC_UGEE_G5_FRAME_DEV_ID_BYTE;
1811 hid_warn(hdev, "pen parameters not found");
1812 uclogic_params_init_invalid(&p);
1816 case VID_PID(USB_VENDOR_ID_UGEE,
1817 USB_DEVICE_ID_UGEE_TABLET_EX07S):
1818 /* Ignore non-pen interfaces */
1819 if (bInterfaceNumber != 1) {
1820 uclogic_params_init_invalid(&p);
1824 rc = uclogic_params_pen_init_v1(&p.pen, &found, hdev);
1826 hid_err(hdev, "pen probing failed: %d\n", rc);
1829 rc = uclogic_params_frame_init_with_desc(
1831 uclogic_rdesc_ugee_ex07_frame_arr,
1832 uclogic_rdesc_ugee_ex07_frame_size,
1836 "failed creating frame parameters: %d\n",
1841 hid_warn(hdev, "pen parameters not found");
1842 uclogic_params_init_invalid(&p);
1849 #undef WITH_OPT_DESC
1851 /* Output parameters */
1852 memcpy(params, &p, sizeof(*params));
1853 memset(&p, 0, sizeof(p));
1856 uclogic_params_cleanup(&p);
1860 #ifdef CONFIG_HID_KUNIT_TEST
1861 #include "hid-uclogic-params-test.c"