xref: /freebsd/sys/dev/hid/hpen.c (revision 685dc743dc3b5645e34836464128e1c0558b404b)
1d97d5c0cSVladimir Kondratyev /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3d97d5c0cSVladimir Kondratyev  *
4d97d5c0cSVladimir Kondratyev  * Copyright (c) 2019 Vladimir Kondratyev <wulf@FreeBSD.org>
50b453151SVal Packett  * Copyright (c) 2019 Val Packett <val@packett.cool>
6d97d5c0cSVladimir Kondratyev  *
7d97d5c0cSVladimir Kondratyev  * Redistribution and use in source and binary forms, with or without
8d97d5c0cSVladimir Kondratyev  * modification, are permitted provided that the following conditions
9d97d5c0cSVladimir Kondratyev  * are met:
10d97d5c0cSVladimir Kondratyev  * 1. Redistributions of source code must retain the above copyright
11d97d5c0cSVladimir Kondratyev  *    notice, this list of conditions and the following disclaimer.
12d97d5c0cSVladimir Kondratyev  * 2. Redistributions in binary form must reproduce the above copyright
13d97d5c0cSVladimir Kondratyev  *    notice, this list of conditions and the following disclaimer in the
14d97d5c0cSVladimir Kondratyev  *    documentation and/or other materials provided with the distribution.
15d97d5c0cSVladimir Kondratyev  *
16d97d5c0cSVladimir Kondratyev  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17d97d5c0cSVladimir Kondratyev  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18d97d5c0cSVladimir Kondratyev  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19d97d5c0cSVladimir Kondratyev  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20d97d5c0cSVladimir Kondratyev  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21d97d5c0cSVladimir Kondratyev  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22d97d5c0cSVladimir Kondratyev  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23d97d5c0cSVladimir Kondratyev  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24d97d5c0cSVladimir Kondratyev  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25d97d5c0cSVladimir Kondratyev  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26d97d5c0cSVladimir Kondratyev  * SUCH DAMAGE.
27d97d5c0cSVladimir Kondratyev  */
28d97d5c0cSVladimir Kondratyev 
29d97d5c0cSVladimir Kondratyev #include <sys/cdefs.h>
30d97d5c0cSVladimir Kondratyev /*
31d97d5c0cSVladimir Kondratyev  * Generic / MS Windows compatible HID pen tablet driver:
32d97d5c0cSVladimir Kondratyev  * https://docs.microsoft.com/en-us/windows-hardware/design/component-guidelines/required-hid-top-level-collections
33d97d5c0cSVladimir Kondratyev  *
34d97d5c0cSVladimir Kondratyev  * Tested on: Wacom WCOM50C1 (Google Pixelbook "eve")
35d97d5c0cSVladimir Kondratyev  */
36d97d5c0cSVladimir Kondratyev 
37d97d5c0cSVladimir Kondratyev #include <sys/param.h>
38d97d5c0cSVladimir Kondratyev #include <sys/bus.h>
39d97d5c0cSVladimir Kondratyev #include <sys/kernel.h>
40d97d5c0cSVladimir Kondratyev #include <sys/malloc.h>
41d97d5c0cSVladimir Kondratyev #include <sys/module.h>
42d97d5c0cSVladimir Kondratyev #include <sys/sysctl.h>
43d97d5c0cSVladimir Kondratyev 
44d97d5c0cSVladimir Kondratyev #include <dev/evdev/input.h>
45d97d5c0cSVladimir Kondratyev #include <dev/evdev/evdev.h>
46d97d5c0cSVladimir Kondratyev 
47d97d5c0cSVladimir Kondratyev #include <dev/hid/hid.h>
48d97d5c0cSVladimir Kondratyev #include <dev/hid/hidbus.h>
49d97d5c0cSVladimir Kondratyev #include <dev/hid/hidmap.h>
50d97d5c0cSVladimir Kondratyev #include <dev/hid/hidrdesc.h>
51d97d5c0cSVladimir Kondratyev 
52d97d5c0cSVladimir Kondratyev #include "usbdevs.h"
53d97d5c0cSVladimir Kondratyev 
54d97d5c0cSVladimir Kondratyev static const uint8_t	hpen_graphire_report_descr[] =
55d97d5c0cSVladimir Kondratyev 			   { HID_GRAPHIRE_REPORT_DESCR() };
56d97d5c0cSVladimir Kondratyev static const uint8_t	hpen_graphire3_4x5_report_descr[] =
57d97d5c0cSVladimir Kondratyev 			   { HID_GRAPHIRE3_4X5_REPORT_DESCR() };
58d97d5c0cSVladimir Kondratyev 
59d97d5c0cSVladimir Kondratyev static hidmap_cb_t	hpen_battery_strenght_cb;
60d97d5c0cSVladimir Kondratyev static hidmap_cb_t	hpen_final_pen_cb;
61d97d5c0cSVladimir Kondratyev 
62d97d5c0cSVladimir Kondratyev #define HPEN_MAP_BUT(usage, code)	\
63d97d5c0cSVladimir Kondratyev 	HIDMAP_KEY(HUP_DIGITIZERS, HUD_##usage, code)
64d97d5c0cSVladimir Kondratyev #define HPEN_MAP_ABS(usage, code)	\
65d97d5c0cSVladimir Kondratyev 	HIDMAP_ABS(HUP_DIGITIZERS, HUD_##usage, code)
66d97d5c0cSVladimir Kondratyev #define HPEN_MAP_ABS_GD(usage, code)	\
67d97d5c0cSVladimir Kondratyev 	HIDMAP_ABS(HUP_GENERIC_DESKTOP, HUG_##usage, code)
68d97d5c0cSVladimir Kondratyev #define HPEN_MAP_ABS_CB(usage, cb)	\
69d97d5c0cSVladimir Kondratyev 	HIDMAP_ABS_CB(HUP_DIGITIZERS, HUD_##usage, &cb)
70d97d5c0cSVladimir Kondratyev 
71d97d5c0cSVladimir Kondratyev /* Generic map digitizer page map according to hut1_12v2.pdf */
72a36bdfc2SVladimir Kondratyev static const struct hidmap_item hpen_map_pen[] = {
73d97d5c0cSVladimir Kondratyev     { HPEN_MAP_ABS_GD(X,		ABS_X),		  .required = true },
74d97d5c0cSVladimir Kondratyev     { HPEN_MAP_ABS_GD(Y,		ABS_Y),		  .required = true },
75d97d5c0cSVladimir Kondratyev     { HPEN_MAP_ABS(   TIP_PRESSURE,	ABS_PRESSURE) },
76d97d5c0cSVladimir Kondratyev     { HPEN_MAP_ABS(   X_TILT,		ABS_TILT_X) },
77d97d5c0cSVladimir Kondratyev     { HPEN_MAP_ABS(   Y_TILT,		ABS_TILT_Y) },
78a36bdfc2SVladimir Kondratyev     { HPEN_MAP_ABS(   CONTACTID,	0), 		  .forbidden = true },
79a36bdfc2SVladimir Kondratyev     { HPEN_MAP_ABS(   CONTACTCOUNT,	0), 		  .forbidden = true },
80d97d5c0cSVladimir Kondratyev     { HPEN_MAP_ABS_CB(BATTERY_STRENGTH,	hpen_battery_strenght_cb) },
81d97d5c0cSVladimir Kondratyev     { HPEN_MAP_BUT(   TOUCH,		BTN_TOUCH) },
82d97d5c0cSVladimir Kondratyev     { HPEN_MAP_BUT(   TIP_SWITCH,	BTN_TOUCH) },
83d97d5c0cSVladimir Kondratyev     { HPEN_MAP_BUT(   SEC_TIP_SWITCH,	BTN_TOUCH) },
84d97d5c0cSVladimir Kondratyev     { HPEN_MAP_BUT(   BARREL_SWITCH,	BTN_STYLUS) },
85d97d5c0cSVladimir Kondratyev     { HPEN_MAP_BUT(   INVERT,		BTN_TOOL_RUBBER) },
86d97d5c0cSVladimir Kondratyev     { HPEN_MAP_BUT(   ERASER,		BTN_TOUCH) },
87d97d5c0cSVladimir Kondratyev     { HPEN_MAP_BUT(   TABLET_PICK,	BTN_STYLUS2) },
88d97d5c0cSVladimir Kondratyev     { HPEN_MAP_BUT(   SEC_BARREL_SWITCH,BTN_STYLUS2) },
89a36bdfc2SVladimir Kondratyev     { HIDMAP_FINAL_CB(			&hpen_final_pen_cb) },
90d97d5c0cSVladimir Kondratyev };
91d97d5c0cSVladimir Kondratyev 
92a36bdfc2SVladimir Kondratyev static const struct hidmap_item hpen_map_stylus[] = {
93a36bdfc2SVladimir Kondratyev     { HPEN_MAP_BUT(   IN_RANGE,		BTN_TOOL_PEN) },
94a36bdfc2SVladimir Kondratyev };
95a36bdfc2SVladimir Kondratyev static const struct hidmap_item hpen_map_finger[] = {
96a36bdfc2SVladimir Kondratyev     { HPEN_MAP_BUT(   IN_RANGE,		BTN_TOOL_FINGER) },
97d97d5c0cSVladimir Kondratyev };
98d97d5c0cSVladimir Kondratyev 
99d97d5c0cSVladimir Kondratyev static const struct hid_device_id hpen_devs[] = {
100d97d5c0cSVladimir Kondratyev 	{ HID_TLC(HUP_DIGITIZERS, HUD_DIGITIZER) },
101d97d5c0cSVladimir Kondratyev 	{ HID_TLC(HUP_DIGITIZERS, HUD_PEN) },
102a36bdfc2SVladimir Kondratyev 	{ HID_TLC(HUP_DIGITIZERS, HUD_TOUCHSCREEN),
103a36bdfc2SVladimir Kondratyev 	  HID_BVP(BUS_USB, USB_VENDOR_EGALAX, USB_PRODUCT_EGALAX_TPANEL) },
104a36bdfc2SVladimir Kondratyev };
105a36bdfc2SVladimir Kondratyev 
106a36bdfc2SVladimir Kondratyev /* Do not autoload legacy pen driver for all touchscreen */
107a36bdfc2SVladimir Kondratyev static const struct hid_device_id hpen_devs_no_load[] = {
108a36bdfc2SVladimir Kondratyev 	{ HID_TLC(HUP_DIGITIZERS, HUD_TOUCHSCREEN) },
109d97d5c0cSVladimir Kondratyev };
110d97d5c0cSVladimir Kondratyev 
111d97d5c0cSVladimir Kondratyev static int
hpen_battery_strenght_cb(HIDMAP_CB_ARGS)112d97d5c0cSVladimir Kondratyev hpen_battery_strenght_cb(HIDMAP_CB_ARGS)
113d97d5c0cSVladimir Kondratyev {
114d97d5c0cSVladimir Kondratyev 	struct evdev_dev *evdev = HIDMAP_CB_GET_EVDEV();
115d97d5c0cSVladimir Kondratyev 
116d97d5c0cSVladimir Kondratyev 	switch (HIDMAP_CB_GET_STATE()) {
117d97d5c0cSVladimir Kondratyev 	case HIDMAP_CB_IS_ATTACHING:
118d97d5c0cSVladimir Kondratyev 		evdev_support_event(evdev, EV_PWR);
119d97d5c0cSVladimir Kondratyev 		/* TODO */
120d97d5c0cSVladimir Kondratyev 		break;
121d97d5c0cSVladimir Kondratyev 	case HIDMAP_CB_IS_RUNNING:
122d97d5c0cSVladimir Kondratyev 		/* TODO */
12316079c72SRyan Libby 		break;
12416079c72SRyan Libby 	default:
12516079c72SRyan Libby 		break;
126d97d5c0cSVladimir Kondratyev 	}
127d97d5c0cSVladimir Kondratyev 
128d97d5c0cSVladimir Kondratyev 	return (0);
129d97d5c0cSVladimir Kondratyev }
130d97d5c0cSVladimir Kondratyev 
131d97d5c0cSVladimir Kondratyev static int
hpen_final_pen_cb(HIDMAP_CB_ARGS)132d97d5c0cSVladimir Kondratyev hpen_final_pen_cb(HIDMAP_CB_ARGS)
133d97d5c0cSVladimir Kondratyev {
134d97d5c0cSVladimir Kondratyev 	struct evdev_dev *evdev = HIDMAP_CB_GET_EVDEV();
135d97d5c0cSVladimir Kondratyev 
136a36bdfc2SVladimir Kondratyev 	if (HIDMAP_CB_GET_STATE() == HIDMAP_CB_IS_ATTACHING) {
137a36bdfc2SVladimir Kondratyev 		if (hidbus_get_usage(HIDMAP_CB_GET_DEV()) ==
138a36bdfc2SVladimir Kondratyev 		    HID_USAGE2(HUP_DIGITIZERS, HUD_DIGITIZER))
139a36bdfc2SVladimir Kondratyev 			evdev_support_prop(evdev, INPUT_PROP_POINTER);
140a36bdfc2SVladimir Kondratyev 		else
141d97d5c0cSVladimir Kondratyev 			evdev_support_prop(evdev, INPUT_PROP_DIRECT);
142a36bdfc2SVladimir Kondratyev 	}
143d97d5c0cSVladimir Kondratyev 
144d97d5c0cSVladimir Kondratyev 	/* Do not execute callback at interrupt handler and detach */
145d97d5c0cSVladimir Kondratyev 	return (ENOSYS);
146d97d5c0cSVladimir Kondratyev }
147d97d5c0cSVladimir Kondratyev 
148d97d5c0cSVladimir Kondratyev static void
hpen_identify(driver_t * driver,device_t parent)149d97d5c0cSVladimir Kondratyev hpen_identify(driver_t *driver, device_t parent)
150d97d5c0cSVladimir Kondratyev {
151d97d5c0cSVladimir Kondratyev 	const struct hid_device_info *hw = hid_get_device_info(parent);
152d97d5c0cSVladimir Kondratyev 
153d97d5c0cSVladimir Kondratyev 	/* the report descriptor for the Wacom Graphire is broken */
154d97d5c0cSVladimir Kondratyev 	if (hw->idBus == BUS_USB && hw->idVendor == USB_VENDOR_WACOM) {
155d97d5c0cSVladimir Kondratyev 		switch (hw->idProduct) {
156d97d5c0cSVladimir Kondratyev 		case USB_PRODUCT_WACOM_GRAPHIRE:
157d97d5c0cSVladimir Kondratyev 			hid_set_report_descr(parent,
158d97d5c0cSVladimir Kondratyev 			    hpen_graphire_report_descr,
159d97d5c0cSVladimir Kondratyev 			    sizeof(hpen_graphire_report_descr));
160d97d5c0cSVladimir Kondratyev 			break;
161d97d5c0cSVladimir Kondratyev 
162d97d5c0cSVladimir Kondratyev 		case USB_PRODUCT_WACOM_GRAPHIRE3_4X5:
163d97d5c0cSVladimir Kondratyev 			hid_set_report_descr(parent,
164d97d5c0cSVladimir Kondratyev 			    hpen_graphire3_4x5_report_descr,
165d97d5c0cSVladimir Kondratyev 			    sizeof(hpen_graphire3_4x5_report_descr));
166d97d5c0cSVladimir Kondratyev 			break;
167d97d5c0cSVladimir Kondratyev 		}
168d97d5c0cSVladimir Kondratyev 	}
169d97d5c0cSVladimir Kondratyev }
170d97d5c0cSVladimir Kondratyev 
171d97d5c0cSVladimir Kondratyev static int
hpen_probe(device_t dev)172d97d5c0cSVladimir Kondratyev hpen_probe(device_t dev)
173d97d5c0cSVladimir Kondratyev {
174d97d5c0cSVladimir Kondratyev 	struct hidmap *hm = device_get_softc(dev);
175a36bdfc2SVladimir Kondratyev 	const char *desc;
176a36bdfc2SVladimir Kondratyev 	void *d_ptr;
177a36bdfc2SVladimir Kondratyev 	hid_size_t d_len;
178d97d5c0cSVladimir Kondratyev 	int error;
179d97d5c0cSVladimir Kondratyev 
180a36bdfc2SVladimir Kondratyev 	if (HIDBUS_LOOKUP_DRIVER_INFO(dev, hpen_devs_no_load) != 0) {
181d97d5c0cSVladimir Kondratyev 		error = HIDBUS_LOOKUP_DRIVER_INFO(dev, hpen_devs);
182d97d5c0cSVladimir Kondratyev 		if (error != 0)
183d97d5c0cSVladimir Kondratyev 			return (error);
184a36bdfc2SVladimir Kondratyev 	}
185d97d5c0cSVladimir Kondratyev 
186d97d5c0cSVladimir Kondratyev 	hidmap_set_dev(hm, dev);
187d97d5c0cSVladimir Kondratyev 
188a36bdfc2SVladimir Kondratyev 	/* Check if report descriptor belongs to a HID pen device */
189a36bdfc2SVladimir Kondratyev 	error = HIDMAP_ADD_MAP(hm, hpen_map_pen, NULL);
190d97d5c0cSVladimir Kondratyev 	if (error != 0)
191d97d5c0cSVladimir Kondratyev 		return (error);
192d97d5c0cSVladimir Kondratyev 
193a36bdfc2SVladimir Kondratyev 	if (hid_get_report_descr(dev, &d_ptr, &d_len) != 0)
194a36bdfc2SVladimir Kondratyev 		return (ENXIO);
195a36bdfc2SVladimir Kondratyev 
196a36bdfc2SVladimir Kondratyev 	if (hidbus_is_collection(d_ptr, d_len,
197a36bdfc2SVladimir Kondratyev 	    HID_USAGE2(HUP_DIGITIZERS, HUD_FINGER), hidbus_get_index(dev))) {
198a36bdfc2SVladimir Kondratyev 		HIDMAP_ADD_MAP(hm, hpen_map_finger, NULL);
199a36bdfc2SVladimir Kondratyev 		desc = "TouchScreen";
200a36bdfc2SVladimir Kondratyev 	} else {
201a36bdfc2SVladimir Kondratyev 		HIDMAP_ADD_MAP(hm, hpen_map_stylus, NULL);
202a36bdfc2SVladimir Kondratyev 		desc = "Pen";
203a36bdfc2SVladimir Kondratyev 	}
204a36bdfc2SVladimir Kondratyev 	if (hidbus_get_usage(dev) == HID_USAGE2(HUP_DIGITIZERS, HUD_DIGITIZER))
205a36bdfc2SVladimir Kondratyev 		desc = "Digitizer";
206a36bdfc2SVladimir Kondratyev 
207a36bdfc2SVladimir Kondratyev 	hidbus_set_desc(dev, desc);
208d97d5c0cSVladimir Kondratyev 
209d97d5c0cSVladimir Kondratyev 	return (BUS_PROBE_DEFAULT);
210d97d5c0cSVladimir Kondratyev }
211d97d5c0cSVladimir Kondratyev 
212d97d5c0cSVladimir Kondratyev static int
hpen_attach(device_t dev)213d97d5c0cSVladimir Kondratyev hpen_attach(device_t dev)
214d97d5c0cSVladimir Kondratyev {
215d97d5c0cSVladimir Kondratyev 	const struct hid_device_info *hw = hid_get_device_info(dev);
216d97d5c0cSVladimir Kondratyev 	struct hidmap *hm = device_get_softc(dev);
217d97d5c0cSVladimir Kondratyev 	int error;
218d97d5c0cSVladimir Kondratyev 
219d97d5c0cSVladimir Kondratyev 	if (hw->idBus == BUS_USB && hw->idVendor == USB_VENDOR_WACOM &&
220d97d5c0cSVladimir Kondratyev 	    hw->idProduct == USB_PRODUCT_WACOM_GRAPHIRE3_4X5) {
221d97d5c0cSVladimir Kondratyev 		/*
222d97d5c0cSVladimir Kondratyev 		 * The Graphire3 needs 0x0202 to be written to
223d97d5c0cSVladimir Kondratyev 		 * feature report ID 2 before it'll start
224d97d5c0cSVladimir Kondratyev 		 * returning digitizer data.
225d97d5c0cSVladimir Kondratyev 		 */
226d97d5c0cSVladimir Kondratyev 		static const uint8_t reportbuf[3] = {2, 2, 2};
227d97d5c0cSVladimir Kondratyev 		error = hid_set_report(dev, reportbuf, sizeof(reportbuf),
228d97d5c0cSVladimir Kondratyev 		    HID_FEATURE_REPORT, reportbuf[0]);
229d97d5c0cSVladimir Kondratyev 		if (error)
230d97d5c0cSVladimir Kondratyev 			device_printf(dev, "set feature report failed, "
231d97d5c0cSVladimir Kondratyev 			    "error=%d (ignored)\n", error);
232d97d5c0cSVladimir Kondratyev 	}
233d97d5c0cSVladimir Kondratyev 
234d97d5c0cSVladimir Kondratyev 	return (hidmap_attach(hm));
235d97d5c0cSVladimir Kondratyev }
236d97d5c0cSVladimir Kondratyev 
237d97d5c0cSVladimir Kondratyev static int
hpen_detach(device_t dev)238d97d5c0cSVladimir Kondratyev hpen_detach(device_t dev)
239d97d5c0cSVladimir Kondratyev {
240d97d5c0cSVladimir Kondratyev 	return (hidmap_detach(device_get_softc(dev)));
241d97d5c0cSVladimir Kondratyev }
242d97d5c0cSVladimir Kondratyev 
243d97d5c0cSVladimir Kondratyev 
244d97d5c0cSVladimir Kondratyev static device_method_t hpen_methods[] = {
245d97d5c0cSVladimir Kondratyev 	DEVMETHOD(device_identify,	hpen_identify),
246d97d5c0cSVladimir Kondratyev 	DEVMETHOD(device_probe,		hpen_probe),
247d97d5c0cSVladimir Kondratyev 	DEVMETHOD(device_attach,	hpen_attach),
248d97d5c0cSVladimir Kondratyev 	DEVMETHOD(device_detach,	hpen_detach),
249d97d5c0cSVladimir Kondratyev 
250d97d5c0cSVladimir Kondratyev 	DEVMETHOD_END
251d97d5c0cSVladimir Kondratyev };
252d97d5c0cSVladimir Kondratyev 
253d97d5c0cSVladimir Kondratyev DEFINE_CLASS_0(hpen, hpen_driver, hpen_methods, sizeof(struct hidmap));
2547eeede15SJohn Baldwin DRIVER_MODULE(hpen, hidbus, hpen_driver, NULL, NULL);
255d97d5c0cSVladimir Kondratyev MODULE_DEPEND(hpen, hid, 1, 1, 1);
256d97d5c0cSVladimir Kondratyev MODULE_DEPEND(hpen, hidbus, 1, 1, 1);
257d97d5c0cSVladimir Kondratyev MODULE_DEPEND(hpen, hidmap, 1, 1, 1);
258d97d5c0cSVladimir Kondratyev MODULE_DEPEND(hpen, evdev, 1, 1, 1);
259d97d5c0cSVladimir Kondratyev MODULE_VERSION(hpen, 1);
260d97d5c0cSVladimir Kondratyev HID_PNP_INFO(hpen_devs);
261