diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2015-03-03 12:44:00 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-03-03 15:31:54 -0500 |
commit | 70b69cfb88467988116c4863056495fa3615271a (patch) | |
tree | c2fb96bc1fe3a5f88e8a92a9c3a3e65a95595d30 | |
parent | c4bbb39806cf4098d7a01a779b40171047004046 (diff) |
HID: uclogic: Set quirks from inside the driver
Based on a patch from: Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com>
Most of the tablets handled by hid-uclogic already use MULTI_INPUT.
For the ones which are not quirked in usbhid/hidquirks, they have a
custom report descriptor which contains only one report per HID
interface. For those tablets HID_QUIRK_MULTI_INPUT is transparent.
According to https://github.com/DIGImend/tablets, the only problematic
tablet currently handled by hid-uclogic is the TWHA60 v3. This tablet
presents different report descriptors from the ones currently quirked.
This is not a problem per se, given that this tablet is not supported
currently in this version (it needs the same command as a Huion to
start forwarding events).
Reviewed-by: Nikolai Kondrashov <spbnick@gmail.com>
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/hid/hid-uclogic.c | 27 | ||||
-rw-r--r-- | drivers/hid/usbhid/hid-quirks.c | 4 |
2 files changed, 27 insertions, 4 deletions
diff --git a/drivers/hid/hid-uclogic.c b/drivers/hid/hid-uclogic.c index fb8b516ff0ed..22dccce6a85c 100644 --- a/drivers/hid/hid-uclogic.c +++ b/drivers/hid/hid-uclogic.c | |||
@@ -626,6 +626,32 @@ static __u8 *uclogic_report_fixup(struct hid_device *hdev, __u8 *rdesc, | |||
626 | return rdesc; | 626 | return rdesc; |
627 | } | 627 | } |
628 | 628 | ||
629 | static int uclogic_probe(struct hid_device *hdev, | ||
630 | const struct hid_device_id *id) | ||
631 | { | ||
632 | int rc; | ||
633 | |||
634 | /* | ||
635 | * libinput requires the pad interface to be on a different node | ||
636 | * than the pen, so use QUIRK_MULTI_INPUT for all tablets. | ||
637 | */ | ||
638 | hdev->quirks |= HID_QUIRK_MULTI_INPUT; | ||
639 | |||
640 | rc = hid_parse(hdev); | ||
641 | if (rc) { | ||
642 | hid_err(hdev, "parse failed\n"); | ||
643 | return rc; | ||
644 | } | ||
645 | |||
646 | rc = hid_hw_start(hdev, HID_CONNECT_DEFAULT); | ||
647 | if (rc) { | ||
648 | hid_err(hdev, "hw start failed\n"); | ||
649 | return rc; | ||
650 | } | ||
651 | |||
652 | return 0; | ||
653 | } | ||
654 | |||
629 | static const struct hid_device_id uclogic_devices[] = { | 655 | static const struct hid_device_id uclogic_devices[] = { |
630 | { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, | 656 | { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, |
631 | USB_DEVICE_ID_UCLOGIC_TABLET_PF1209) }, | 657 | USB_DEVICE_ID_UCLOGIC_TABLET_PF1209) }, |
@@ -648,6 +674,7 @@ MODULE_DEVICE_TABLE(hid, uclogic_devices); | |||
648 | static struct hid_driver uclogic_driver = { | 674 | static struct hid_driver uclogic_driver = { |
649 | .name = "uclogic", | 675 | .name = "uclogic", |
650 | .id_table = uclogic_devices, | 676 | .id_table = uclogic_devices, |
677 | .probe = uclogic_probe, | ||
651 | .report_fixup = uclogic_report_fixup, | 678 | .report_fixup = uclogic_report_fixup, |
652 | }; | 679 | }; |
653 | module_hid_driver(uclogic_driver); | 680 | module_hid_driver(uclogic_driver); |
diff --git a/drivers/hid/usbhid/hid-quirks.c b/drivers/hid/usbhid/hid-quirks.c index 9be99a67bfe2..6c9eab4f58bc 100644 --- a/drivers/hid/usbhid/hid-quirks.c +++ b/drivers/hid/usbhid/hid-quirks.c | |||
@@ -106,12 +106,8 @@ static const struct hid_blacklist { | |||
106 | { USB_VENDOR_ID_SYMBOL, USB_DEVICE_ID_SYMBOL_SCANNER_2, HID_QUIRK_NOGET }, | 106 | { USB_VENDOR_ID_SYMBOL, USB_DEVICE_ID_SYMBOL_SCANNER_2, HID_QUIRK_NOGET }, |
107 | { USB_VENDOR_ID_TPV, USB_DEVICE_ID_TPV_OPTICAL_TOUCHSCREEN, HID_QUIRK_NOGET }, | 107 | { USB_VENDOR_ID_TPV, USB_DEVICE_ID_TPV_OPTICAL_TOUCHSCREEN, HID_QUIRK_NOGET }, |
108 | { USB_VENDOR_ID_TURBOX, USB_DEVICE_ID_TURBOX_KEYBOARD, HID_QUIRK_NOGET }, | 108 | { USB_VENDOR_ID_TURBOX, USB_DEVICE_ID_TURBOX_KEYBOARD, HID_QUIRK_NOGET }, |
109 | { USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_PF1209, HID_QUIRK_MULTI_INPUT }, | ||
110 | { USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP4030U, HID_QUIRK_MULTI_INPUT }, | ||
111 | { USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_KNA5, HID_QUIRK_MULTI_INPUT }, | 109 | { USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_KNA5, HID_QUIRK_MULTI_INPUT }, |
112 | { USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_TWA60, HID_QUIRK_MULTI_INPUT }, | 110 | { USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_TWA60, HID_QUIRK_MULTI_INPUT }, |
113 | { USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP5540U, HID_QUIRK_MULTI_INPUT }, | ||
114 | { USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP8060U, HID_QUIRK_MULTI_INPUT }, | ||
115 | { USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_10_6_INCH, HID_QUIRK_MULTI_INPUT }, | 111 | { USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_10_6_INCH, HID_QUIRK_MULTI_INPUT }, |
116 | { USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_14_1_INCH, HID_QUIRK_MULTI_INPUT }, | 112 | { USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_14_1_INCH, HID_QUIRK_MULTI_INPUT }, |
117 | { USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SIRIUS_BATTERY_FREE_TABLET, HID_QUIRK_MULTI_INPUT }, | 113 | { USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SIRIUS_BATTERY_FREE_TABLET, HID_QUIRK_MULTI_INPUT }, |