blob: 46c425bf4f0def5b13f884c9a7fa5706176e8ccc [file] [log] [blame]
Martin Rusko68e353f2013-05-28 14:25:15 +02001/*
2 * HID driver for Huion devices not fully compliant with HID standard
3 *
4 * Copyright (c) 2013 Martin Rusko
Nikolai Kondrashove917e982014-07-23 19:31:54 +03005 * Copyright (c) 2014 Nikolai Kondrashov
Martin Rusko68e353f2013-05-28 14:25:15 +02006 */
7
8/*
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 */
14
15#include <linux/device.h>
16#include <linux/hid.h>
17#include <linux/module.h>
18#include <linux/usb.h>
19#include "usbhid/usbhid.h"
20
21#include "hid-ids.h"
22
Nikolai Kondrashove917e982014-07-23 19:31:54 +030023/* Original tablet report descriptor size */
24#define HUION_TABLET_RDESC_ORIG_SIZE 177
Martin Rusko68e353f2013-05-28 14:25:15 +020025
Nikolai Kondrashove917e982014-07-23 19:31:54 +030026/* Fixed tablet report descriptor */
27static __u8 huion_tablet_rdesc_fixed[] = {
Martin Rusko68e353f2013-05-28 14:25:15 +020028 0x05, 0x0D, /* Usage Page (Digitizer), */
29 0x09, 0x02, /* Usage (Pen), */
30 0xA1, 0x01, /* Collection (Application), */
31 0x85, 0x07, /* Report ID (7), */
32 0x09, 0x20, /* Usage (Stylus), */
33 0xA0, /* Collection (Physical), */
34 0x14, /* Logical Minimum (0), */
35 0x25, 0x01, /* Logical Maximum (1), */
36 0x75, 0x01, /* Report Size (1), */
37 0x09, 0x42, /* Usage (Tip Switch), */
38 0x09, 0x44, /* Usage (Barrel Switch), */
39 0x09, 0x46, /* Usage (Tablet Pick), */
40 0x95, 0x03, /* Report Count (3), */
41 0x81, 0x02, /* Input (Variable), */
42 0x95, 0x03, /* Report Count (3), */
43 0x81, 0x03, /* Input (Constant, Variable), */
44 0x09, 0x32, /* Usage (In Range), */
45 0x95, 0x01, /* Report Count (1), */
46 0x81, 0x02, /* Input (Variable), */
47 0x95, 0x01, /* Report Count (1), */
48 0x81, 0x03, /* Input (Constant, Variable), */
49 0x75, 0x10, /* Report Size (16), */
50 0x95, 0x01, /* Report Count (1), */
51 0xA4, /* Push, */
52 0x05, 0x01, /* Usage Page (Desktop), */
53 0x65, 0x13, /* Unit (Inch), */
54 0x55, 0xFD, /* Unit Exponent (-3), */
55 0x34, /* Physical Minimum (0), */
56 0x09, 0x30, /* Usage (X), */
57 0x46, 0x40, 0x1F, /* Physical Maximum (8000), */
58 0x26, 0x00, 0x7D, /* Logical Maximum (32000), */
59 0x81, 0x02, /* Input (Variable), */
60 0x09, 0x31, /* Usage (Y), */
61 0x46, 0x88, 0x13, /* Physical Maximum (5000), */
62 0x26, 0x20, 0x4E, /* Logical Maximum (20000), */
63 0x81, 0x02, /* Input (Variable), */
64 0xB4, /* Pop, */
65 0x09, 0x30, /* Usage (Tip Pressure), */
66 0x26, 0xFF, 0x07, /* Logical Maximum (2047), */
67 0x81, 0x02, /* Input (Variable), */
68 0xC0, /* End Collection, */
69 0xC0 /* End Collection */
70};
71
72static __u8 *huion_report_fixup(struct hid_device *hdev, __u8 *rdesc,
73 unsigned int *rsize)
74{
75 switch (hdev->product) {
Nikolai Kondrashove917e982014-07-23 19:31:54 +030076 case USB_DEVICE_ID_HUION_TABLET:
77 if (*rsize == HUION_TABLET_RDESC_ORIG_SIZE) {
78 rdesc = huion_tablet_rdesc_fixed;
79 *rsize = sizeof(huion_tablet_rdesc_fixed);
Martin Rusko68e353f2013-05-28 14:25:15 +020080 }
81 break;
82 }
83 return rdesc;
84}
85
86/**
87 * Enable fully-functional tablet mode by reading special string
88 * descriptor.
89 *
90 * @hdev: HID device
91 *
92 * The specific string descriptor and data were discovered by sniffing
93 * the Windows driver traffic.
94 */
95static int huion_tablet_enable(struct hid_device *hdev)
96{
97 int rc;
98 char buf[22];
99
100 rc = usb_string(hid_to_usb_dev(hdev), 0x64, buf, sizeof(buf));
101 if (rc < 0)
102 return rc;
103
104 return 0;
105}
106
107static int huion_probe(struct hid_device *hdev, const struct hid_device_id *id)
108{
109 int ret;
Martin Rusko68e353f2013-05-28 14:25:15 +0200110
111 ret = hid_parse(hdev);
112 if (ret) {
113 hid_err(hdev, "parse failed\n");
114 goto err;
115 }
116
117 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
118 if (ret) {
119 hid_err(hdev, "hw start failed\n");
120 goto err;
121 }
122
123 switch (id->product) {
Nikolai Kondrashove917e982014-07-23 19:31:54 +0300124 case USB_DEVICE_ID_HUION_TABLET:
Martin Rusko68e353f2013-05-28 14:25:15 +0200125 ret = huion_tablet_enable(hdev);
126 if (ret) {
127 hid_err(hdev, "tablet enabling failed\n");
128 goto enabling_err;
129 }
130 break;
131 }
132
133 return 0;
134enabling_err:
135 hid_hw_stop(hdev);
136err:
137 return ret;
138}
139
140static int huion_raw_event(struct hid_device *hdev, struct hid_report *report,
141 u8 *data, int size)
142{
Nikolai Kondrashovfb853292014-07-23 19:31:55 +0300143 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
144
145 /* If this is a pen input report */
146 if (intf->cur_altsetting->desc.bInterfaceNumber == 0 &&
147 report->type == HID_INPUT_REPORT &&
148 report->id == 0x07 && size >= 2)
149 /* Invert the in-range bit */
Martin Rusko68e353f2013-05-28 14:25:15 +0200150 data[1] ^= 0x40;
151
152 return 0;
153}
154
155static const struct hid_device_id huion_devices[] = {
Nikolai Kondrashove917e982014-07-23 19:31:54 +0300156 { HID_USB_DEVICE(USB_VENDOR_ID_HUION, USB_DEVICE_ID_HUION_TABLET) },
Martin Rusko68e353f2013-05-28 14:25:15 +0200157 { }
158};
159MODULE_DEVICE_TABLE(hid, huion_devices);
160
161static struct hid_driver huion_driver = {
162 .name = "huion",
163 .id_table = huion_devices,
164 .probe = huion_probe,
165 .report_fixup = huion_report_fixup,
166 .raw_event = huion_raw_event,
167};
168module_hid_driver(huion_driver);
169
170MODULE_AUTHOR("Martin Rusko");
171MODULE_DESCRIPTION("Huion HID driver");
172MODULE_LICENSE("GPL");