xref: /freebsd/sys/dev/usb/input/usbhid.c (revision 5aa839c9e2c373275091b8bf529c1311d0b84d76)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-NetBSD
3  *
4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
5  * Copyright (c) 2019 Vladimir Kondratyev <wulf@FreeBSD.org>
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Lennart Augustsson (lennart@augustsson.net) at
9  * Carlstedt Research & Technology.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 /*
37  * HID spec: https://www.usb.org/sites/default/files/documents/hid1_11.pdf
38  */
39 
40 #include <sys/stdint.h>
41 #include <sys/stddef.h>
42 #include <sys/param.h>
43 #include <sys/queue.h>
44 #include <sys/types.h>
45 #include <sys/systm.h>
46 #include <sys/kernel.h>
47 #include <sys/bus.h>
48 #include <sys/module.h>
49 #include <sys/lock.h>
50 #include <sys/mutex.h>
51 #include <sys/condvar.h>
52 #include <sys/sysctl.h>
53 #include <sys/sx.h>
54 #include <sys/unistd.h>
55 #include <sys/callout.h>
56 #include <sys/malloc.h>
57 #include <sys/priv.h>
58 #include <sys/conf.h>
59 #include <sys/fcntl.h>
60 
61 #include <dev/evdev/input.h>
62 
63 #include <dev/hid/hid.h>
64 #include <dev/hid/hidquirk.h>
65 
66 #include <dev/usb/usb.h>
67 #include <dev/usb/usbdi.h>
68 #include <dev/usb/usbdi_util.h>
69 #include <dev/usb/usbhid.h>
70 #include <dev/usb/usb_core.h>
71 #include <dev/usb/usb_ioctl.h>
72 
73 #define	USB_DEBUG_VAR usbhid_debug
74 #include <dev/usb/usb_debug.h>
75 
76 #include <dev/usb/quirk/usb_quirk.h>
77 
78 #include "hid_if.h"
79 
80 static SYSCTL_NODE(_hw_usb, OID_AUTO, usbhid, CTLFLAG_RW, 0, "USB usbhid");
81 static int usbhid_enable = 0;
82 SYSCTL_INT(_hw_usb_usbhid, OID_AUTO, enable, CTLFLAG_RWTUN,
83     &usbhid_enable, 0, "Enable usbhid and prefer it to other USB HID drivers");
84 #ifdef USB_DEBUG
85 static int usbhid_debug = 0;
86 SYSCTL_INT(_hw_usb_usbhid, OID_AUTO, debug, CTLFLAG_RWTUN,
87     &usbhid_debug, 0, "Debug level");
88 #endif
89 
90 /* Second set of USB transfers for polling mode */
91 #define	POLL_XFER(xfer)	((xfer) + USBHID_N_TRANSFER)
92 enum {
93 	USBHID_INTR_OUT_DT,
94 	USBHID_INTR_IN_DT,
95 	USBHID_CTRL_DT,
96 	USBHID_N_TRANSFER,
97 };
98 
99 struct usbhid_xfer_ctx;
100 typedef int usbhid_callback_t(struct usbhid_xfer_ctx *xfer_ctx);
101 
102 union usbhid_device_request {
103 	struct {			/* INTR xfers */
104 		uint16_t maxlen;
105 		uint16_t actlen;
106 	} intr;
107 	struct usb_device_request ctrl;	/* CTRL xfers */
108 };
109 
110 /* Syncronous USB transfer context */
111 struct usbhid_xfer_ctx {
112 	union usbhid_device_request req;
113 	uint8_t *buf;
114 	int error;
115 	usbhid_callback_t *cb;
116 	void *cb_ctx;
117 	int waiters;
118 	bool influx;
119 };
120 
121 struct usbhid_softc {
122 	hid_intr_t *sc_intr_handler;
123 	void *sc_intr_ctx;
124 	void *sc_intr_buf;
125 
126 	struct hid_device_info sc_hw;
127 
128 	struct mtx sc_mtx;
129 	struct usb_config sc_config[USBHID_N_TRANSFER];
130 	struct usb_xfer *sc_xfer[POLL_XFER(USBHID_N_TRANSFER)];
131 	struct usbhid_xfer_ctx sc_xfer_ctx[POLL_XFER(USBHID_N_TRANSFER)];
132 	bool sc_can_poll;
133 
134 	struct usb_device *sc_udev;
135 	uint8_t	sc_iface_no;
136 	uint8_t	sc_iface_index;
137 };
138 
139 /* prototypes */
140 
141 static device_probe_t usbhid_probe;
142 static device_attach_t usbhid_attach;
143 static device_detach_t usbhid_detach;
144 
145 static usb_callback_t usbhid_intr_out_callback;
146 static usb_callback_t usbhid_intr_in_callback;
147 static usb_callback_t usbhid_ctrl_callback;
148 
149 static usbhid_callback_t usbhid_intr_handler_cb;
150 static usbhid_callback_t usbhid_sync_wakeup_cb;
151 
152 static void
153 usbhid_intr_out_callback(struct usb_xfer *xfer, usb_error_t error)
154 {
155 	struct usbhid_xfer_ctx *xfer_ctx = usbd_xfer_softc(xfer);
156 	struct usb_page_cache *pc;
157 	int len;
158 
159 	switch (USB_GET_STATE(xfer)) {
160 	case USB_ST_TRANSFERRED:
161 	case USB_ST_SETUP:
162 tr_setup:
163 		len = xfer_ctx->req.intr.maxlen;
164 		if (len == 0) {
165 			if (USB_IN_POLLING_MODE_FUNC())
166 				xfer_ctx->error = 0;
167 			return;
168 		}
169 		pc = usbd_xfer_get_frame(xfer, 0);
170 		usbd_copy_in(pc, 0, xfer_ctx->buf, len);
171 		usbd_xfer_set_frame_len(xfer, 0, len);
172 		usbd_transfer_submit(xfer);
173 		xfer_ctx->req.intr.maxlen = 0;
174 		if (USB_IN_POLLING_MODE_FUNC())
175 			return;
176 		xfer_ctx->error = 0;
177 		goto tr_exit;
178 
179 	default:			/* Error */
180 		if (error != USB_ERR_CANCELLED) {
181 			/* try to clear stall first */
182 			usbd_xfer_set_stall(xfer);
183 			goto tr_setup;
184 		}
185 		xfer_ctx->error = EIO;
186 tr_exit:
187 		(void)xfer_ctx->cb(xfer_ctx);
188 		return;
189 	}
190 }
191 
192 static void
193 usbhid_intr_in_callback(struct usb_xfer *xfer, usb_error_t error)
194 {
195 	struct usbhid_xfer_ctx *xfer_ctx = usbd_xfer_softc(xfer);
196 	struct usb_page_cache *pc;
197 	int actlen;
198 
199 	switch (USB_GET_STATE(xfer)) {
200 	case USB_ST_TRANSFERRED:
201 		DPRINTF("transferred!\n");
202 
203 		usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
204 		pc = usbd_xfer_get_frame(xfer, 0);
205 		usbd_copy_out(pc, 0, xfer_ctx->buf, actlen);
206 		xfer_ctx->req.intr.actlen = actlen;
207 		if (xfer_ctx->cb(xfer_ctx) != 0)
208 			return;
209 
210 	case USB_ST_SETUP:
211 re_submit:
212 		usbd_xfer_set_frame_len(xfer, 0, xfer_ctx->req.intr.maxlen);
213 		usbd_transfer_submit(xfer);
214 		return;
215 
216 	default:			/* Error */
217 		if (error != USB_ERR_CANCELLED) {
218 			/* try to clear stall first */
219 			usbd_xfer_set_stall(xfer);
220 			goto re_submit;
221 		}
222 		return;
223 	}
224 }
225 
226 static void
227 usbhid_ctrl_callback(struct usb_xfer *xfer, usb_error_t error)
228 {
229 	struct usbhid_xfer_ctx *xfer_ctx = usbd_xfer_softc(xfer);
230 	struct usb_device_request *req = &xfer_ctx->req.ctrl;
231 	struct usb_page_cache *pc;
232 	int len = UGETW(req->wLength);
233 	bool is_rd = (req->bmRequestType & UT_READ) != 0;
234 
235 	switch (USB_GET_STATE(xfer)) {
236 	case USB_ST_SETUP:
237 		if (!is_rd && len != 0) {
238 			pc = usbd_xfer_get_frame(xfer, 1);
239 			usbd_copy_in(pc, 0, xfer_ctx->buf, len);
240 		}
241 
242 		pc = usbd_xfer_get_frame(xfer, 0);
243 		usbd_copy_in(pc, 0, req, sizeof(*req));
244 		usbd_xfer_set_frame_len(xfer, 0, sizeof(*req));
245 		if (len != 0)
246 			usbd_xfer_set_frame_len(xfer, 1, len);
247 		usbd_xfer_set_frames(xfer, len != 0 ? 2 : 1);
248 		usbd_transfer_submit(xfer);
249 		return;
250 
251 	case USB_ST_TRANSFERRED:
252 		if (is_rd && len != 0) {
253 			pc = usbd_xfer_get_frame(xfer, 0);
254 			usbd_copy_out(pc, sizeof(*req), xfer_ctx->buf, len);
255 		}
256 		xfer_ctx->error = 0;
257 		goto tr_exit;
258 
259 	default:			/* Error */
260 		/* bomb out */
261 		DPRINTFN(1, "error=%s\n", usbd_errstr(error));
262 		xfer_ctx->error = EIO;
263 tr_exit:
264 		(void)xfer_ctx->cb(xfer_ctx);
265 		return;
266 	}
267 }
268 
269 static int
270 usbhid_intr_handler_cb(struct usbhid_xfer_ctx *xfer_ctx)
271 {
272 	struct usbhid_softc *sc = xfer_ctx->cb_ctx;
273 
274 	sc->sc_intr_handler(sc->sc_intr_ctx, xfer_ctx->buf,
275 	    xfer_ctx->req.intr.actlen);
276 
277 	return (0);
278 }
279 
280 static int
281 usbhid_sync_wakeup_cb(struct usbhid_xfer_ctx *xfer_ctx)
282 {
283 
284 	if (!USB_IN_POLLING_MODE_FUNC())
285 		wakeup(xfer_ctx->cb_ctx);
286 
287 	return (ECANCELED);
288 }
289 
290 static const struct usb_config usbhid_config[USBHID_N_TRANSFER] = {
291 
292 	[USBHID_INTR_OUT_DT] = {
293 		.type = UE_INTERRUPT,
294 		.endpoint = UE_ADDR_ANY,
295 		.direction = UE_DIR_OUT,
296 		.flags = {.pipe_bof = 1,.proxy_buffer = 1},
297 		.callback = &usbhid_intr_out_callback,
298 	},
299 	[USBHID_INTR_IN_DT] = {
300 		.type = UE_INTERRUPT,
301 		.endpoint = UE_ADDR_ANY,
302 		.direction = UE_DIR_IN,
303 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,.proxy_buffer = 1},
304 		.callback = &usbhid_intr_in_callback,
305 	},
306 	[USBHID_CTRL_DT] = {
307 		.type = UE_CONTROL,
308 		.endpoint = 0x00,	/* Control pipe */
309 		.direction = UE_DIR_ANY,
310 		.flags = {.proxy_buffer = 1},
311 		.callback = &usbhid_ctrl_callback,
312 		.timeout = 1000,	/* 1 second */
313 	},
314 };
315 
316 static inline usb_frlength_t
317 usbhid_xfer_max_len(struct usb_xfer *xfer)
318 {
319 	return (xfer == NULL ? 0 : usbd_xfer_max_len(xfer));
320 }
321 
322 static inline int
323 usbhid_xfer_check_len(struct usbhid_softc* sc, int xfer_idx, hid_size_t len)
324 {
325 	if (USB_IN_POLLING_MODE_FUNC())
326 		xfer_idx = POLL_XFER(xfer_idx);
327 	if (sc->sc_xfer[xfer_idx] == NULL)
328 		return (ENODEV);
329 	if (len > usbd_xfer_max_len(sc->sc_xfer[xfer_idx]))
330 		return (ENOBUFS);
331 	return (0);
332 }
333 
334 static void
335 usbhid_intr_setup(device_t dev, hid_intr_t intr, void *context,
336     struct hid_rdesc_info *rdesc)
337 {
338 	struct usbhid_softc* sc = device_get_softc(dev);
339 	uint16_t n;
340 	bool nowrite;
341 	int error;
342 
343 	nowrite = hid_test_quirk(&sc->sc_hw, HQ_NOWRITE);
344 
345 	/*
346 	 * Setup the USB transfers one by one, so they are memory independent
347 	 * which allows for handling panics triggered by the HID drivers
348 	 * itself, typically by hkbd via CTRL+ALT+ESC sequences. Or if the HID
349 	 * keyboard driver was processing a key at the moment of panic.
350 	 */
351 	if (intr == NULL) {
352 		if (sc->sc_can_poll)
353 			return;
354 		for (n = 0; n != USBHID_N_TRANSFER; n++) {
355 			if (nowrite && n == USBHID_INTR_OUT_DT)
356 				continue;
357 			error = usbd_transfer_setup(sc->sc_udev,
358 			    &sc->sc_iface_index, sc->sc_xfer + POLL_XFER(n),
359 			    sc->sc_config + n, 1,
360 			    (void *)(sc->sc_xfer_ctx + POLL_XFER(n)),
361 			    &sc->sc_mtx);
362 			if (error)
363 				DPRINTF("xfer %d setup error=%s\n", n,
364 				    usbd_errstr(error));
365 		}
366 		mtx_lock(&sc->sc_mtx);
367 		if (sc->sc_xfer[USBHID_INTR_IN_DT] != NULL &&
368 		    sc->sc_xfer[USBHID_INTR_IN_DT]->flags_int.started)
369 			usbd_transfer_start(
370 			    sc->sc_xfer[POLL_XFER(USBHID_INTR_IN_DT)]);
371 		mtx_unlock(&sc->sc_mtx);
372 		sc->sc_can_poll = true;
373 		return;
374 	}
375 
376 	sc->sc_intr_handler = intr;
377 	sc->sc_intr_ctx = context;
378 	bcopy(usbhid_config, sc->sc_config, sizeof(usbhid_config));
379 	bzero(sc->sc_xfer, sizeof(sc->sc_xfer));
380 
381 	/* Set buffer sizes to match HID report sizes */
382 	sc->sc_config[USBHID_INTR_OUT_DT].bufsize = rdesc->osize;
383 	sc->sc_config[USBHID_INTR_IN_DT].bufsize = rdesc->isize;
384 	sc->sc_config[USBHID_CTRL_DT].bufsize =
385 	    MAX(rdesc->isize, MAX(rdesc->osize, rdesc->fsize));
386 
387 	for (n = 0; n != USBHID_N_TRANSFER; n++) {
388 		if (nowrite && n == USBHID_INTR_OUT_DT)
389 			continue;
390 		error = usbd_transfer_setup(sc->sc_udev, &sc->sc_iface_index,
391 		    sc->sc_xfer + n, sc->sc_config + n, 1,
392 		    (void *)(sc->sc_xfer_ctx + n), &sc->sc_mtx);
393 		if (error)
394 			DPRINTF("xfer %d setup error=%s\n", n,
395 			    usbd_errstr(error));
396 	}
397 
398 	rdesc->rdsize = usbhid_xfer_max_len(sc->sc_xfer[USBHID_INTR_IN_DT]);
399 	rdesc->grsize = usbhid_xfer_max_len(sc->sc_xfer[USBHID_CTRL_DT]);
400 	rdesc->srsize = rdesc->grsize;
401 	rdesc->wrsize = nowrite ? rdesc->srsize :
402 	    usbhid_xfer_max_len(sc->sc_xfer[USBHID_INTR_OUT_DT]);
403 
404 	sc->sc_intr_buf = malloc(rdesc->rdsize, M_USBDEV, M_ZERO | M_WAITOK);
405 }
406 
407 static void
408 usbhid_intr_unsetup(device_t dev)
409 {
410 	struct usbhid_softc* sc = device_get_softc(dev);
411 
412 	usbd_transfer_unsetup(sc->sc_xfer, USBHID_N_TRANSFER);
413 	if (sc->sc_can_poll)
414 		usbd_transfer_unsetup(
415 		    sc->sc_xfer, POLL_XFER(USBHID_N_TRANSFER));
416 	sc->sc_can_poll = false;
417 	free(sc->sc_intr_buf, M_USBDEV);
418 }
419 
420 static int
421 usbhid_intr_start(device_t dev)
422 {
423 	struct usbhid_softc* sc = device_get_softc(dev);
424 
425 	if (sc->sc_xfer[USBHID_INTR_IN_DT] == NULL)
426 		return (ENODEV);
427 
428 	mtx_lock(&sc->sc_mtx);
429 	sc->sc_xfer_ctx[USBHID_INTR_IN_DT] = (struct usbhid_xfer_ctx) {
430 		.req.intr.maxlen =
431 		    usbd_xfer_max_len(sc->sc_xfer[USBHID_INTR_IN_DT]),
432 		.cb = usbhid_intr_handler_cb,
433 		.cb_ctx = sc,
434 		.buf = sc->sc_intr_buf,
435 	};
436 	sc->sc_xfer_ctx[POLL_XFER(USBHID_INTR_IN_DT)] = (struct usbhid_xfer_ctx) {
437 		.req.intr.maxlen =
438 		    usbd_xfer_max_len(sc->sc_xfer[USBHID_INTR_IN_DT]),
439 		.cb = usbhid_intr_handler_cb,
440 		.cb_ctx = sc,
441 		.buf = sc->sc_intr_buf,
442 	};
443 	usbd_transfer_start(sc->sc_xfer[USBHID_INTR_IN_DT]);
444 	if (sc->sc_can_poll)
445 		usbd_transfer_start(sc->sc_xfer[POLL_XFER(USBHID_INTR_IN_DT)]);
446 	mtx_unlock(&sc->sc_mtx);
447 
448 	return (0);
449 }
450 
451 static int
452 usbhid_intr_stop(device_t dev)
453 {
454 	struct usbhid_softc* sc = device_get_softc(dev);
455 
456 	usbd_transfer_drain(sc->sc_xfer[USBHID_INTR_IN_DT]);
457 	usbd_transfer_drain(sc->sc_xfer[USBHID_INTR_OUT_DT]);
458 	if (sc->sc_can_poll)
459 		usbd_transfer_drain(sc->sc_xfer[POLL_XFER(USBHID_INTR_IN_DT)]);
460 
461 	return (0);
462 }
463 
464 static void
465 usbhid_intr_poll(device_t dev)
466 {
467 	struct usbhid_softc* sc = device_get_softc(dev);
468 
469 	MPASS(sc->sc_can_poll);
470 	usbd_transfer_poll(sc->sc_xfer + USBHID_INTR_IN_DT, 1);
471 	usbd_transfer_poll(sc->sc_xfer + POLL_XFER(USBHID_INTR_IN_DT), 1);
472 }
473 
474 /*
475  * HID interface
476  */
477 static int
478 usbhid_sync_xfer(struct usbhid_softc* sc, int xfer_idx,
479     union usbhid_device_request *req, void *buf)
480 {
481 	int error, timeout;
482 	struct usbhid_xfer_ctx *xfer_ctx;
483 
484 	xfer_ctx = sc->sc_xfer_ctx + xfer_idx;
485 
486 	if (USB_IN_POLLING_MODE_FUNC()) {
487 		xfer_ctx = POLL_XFER(xfer_ctx);
488 		xfer_idx = POLL_XFER(xfer_idx);
489 	} else {
490 		mtx_lock(&sc->sc_mtx);
491 		++xfer_ctx->waiters;
492 		while (xfer_ctx->influx)
493 			mtx_sleep(&xfer_ctx->waiters, &sc->sc_mtx, 0,
494 			    "usbhid wt", 0);
495 		--xfer_ctx->waiters;
496 		xfer_ctx->influx = true;
497 	}
498 
499 	xfer_ctx->buf = buf;
500 	xfer_ctx->req = *req;
501 	xfer_ctx->error = ETIMEDOUT;
502 	xfer_ctx->cb = &usbhid_sync_wakeup_cb;
503 	xfer_ctx->cb_ctx = xfer_ctx;
504 	timeout = USB_DEFAULT_TIMEOUT;
505 	usbd_transfer_start(sc->sc_xfer[xfer_idx]);
506 
507 	if (USB_IN_POLLING_MODE_FUNC())
508 		while (timeout > 0 && xfer_ctx->error == ETIMEDOUT) {
509 			usbd_transfer_poll(sc->sc_xfer + xfer_idx, 1);
510 			DELAY(1000);
511 			timeout--;
512 		}
513 	 else
514 		msleep_sbt(xfer_ctx, &sc->sc_mtx, 0, "usbhid io",
515 		    SBT_1MS * timeout, 0, C_HARDCLOCK);
516 
517 	/* Perform usbhid_write() asyncronously to improve pipelining */
518 	if (USB_IN_POLLING_MODE_FUNC() || xfer_ctx->error != 0 ||
519 	    sc->sc_config[xfer_idx].type != UE_INTERRUPT ||
520 	    sc->sc_config[xfer_idx].direction != UE_DIR_OUT)
521 		usbd_transfer_stop(sc->sc_xfer[xfer_idx]);
522 	error = xfer_ctx->error;
523 	if (error == 0)
524 		*req = xfer_ctx->req;
525 
526 	if (!USB_IN_POLLING_MODE_FUNC()) {
527 		xfer_ctx->influx = false;
528 		if (xfer_ctx->waiters != 0)
529 			wakeup_one(&xfer_ctx->waiters);
530 		mtx_unlock(&sc->sc_mtx);
531 	}
532 
533 	if (error)
534 		DPRINTF("USB IO error:%d\n", error);
535 
536 	return (error);
537 }
538 
539 static int
540 usbhid_get_rdesc(device_t dev, void *buf, hid_size_t len)
541 {
542 	struct usbhid_softc* sc = device_get_softc(dev);
543 	int error;
544 
545 	error = usbd_req_get_report_descriptor(sc->sc_udev, NULL,
546 	    buf, len, sc->sc_iface_index);
547 
548 	if (error)
549 		DPRINTF("no report descriptor: %s\n", usbd_errstr(error));
550 
551 	return (error == 0 ? 0 : ENXIO);
552 }
553 
554 static int
555 usbhid_get_report(device_t dev, void *buf, hid_size_t maxlen,
556     hid_size_t *actlen, uint8_t type, uint8_t id)
557 {
558 	struct usbhid_softc* sc = device_get_softc(dev);
559 	union usbhid_device_request req;
560 	int error;
561 
562 	error = usbhid_xfer_check_len(sc, USBHID_CTRL_DT, maxlen);
563 	if (error)
564 		return (error);
565 
566 	req.ctrl.bmRequestType = UT_READ_CLASS_INTERFACE;
567 	req.ctrl.bRequest = UR_GET_REPORT;
568 	USETW2(req.ctrl.wValue, type, id);
569 	req.ctrl.wIndex[0] = sc->sc_iface_no;
570 	req.ctrl.wIndex[1] = 0;
571 	USETW(req.ctrl.wLength, maxlen);
572 
573 	error = usbhid_sync_xfer(sc, USBHID_CTRL_DT, &req, buf);
574 	if (!error && actlen != NULL)
575 		*actlen = maxlen;
576 
577 	return (error);
578 }
579 
580 static int
581 usbhid_set_report(device_t dev, const void *buf, hid_size_t len, uint8_t type,
582     uint8_t id)
583 {
584 	struct usbhid_softc* sc = device_get_softc(dev);
585 	union usbhid_device_request req;
586 	int error;
587 
588 	error = usbhid_xfer_check_len(sc, USBHID_CTRL_DT, len);
589 	if (error)
590 		return (error);
591 
592 	req.ctrl.bmRequestType = UT_WRITE_CLASS_INTERFACE;
593 	req.ctrl.bRequest = UR_SET_REPORT;
594 	USETW2(req.ctrl.wValue, type, id);
595 	req.ctrl.wIndex[0] = sc->sc_iface_no;
596 	req.ctrl.wIndex[1] = 0;
597 	USETW(req.ctrl.wLength, len);
598 
599 	return (usbhid_sync_xfer(sc, USBHID_CTRL_DT, &req,
600 	    __DECONST(void *, buf)));
601 }
602 
603 static int
604 usbhid_read(device_t dev, void *buf, hid_size_t maxlen, hid_size_t *actlen)
605 {
606 	struct usbhid_softc* sc = device_get_softc(dev);
607 	union usbhid_device_request req;
608 	int error;
609 
610 	error = usbhid_xfer_check_len(sc, USBHID_INTR_IN_DT, maxlen);
611 	if (error)
612 		return (error);
613 
614 	req.intr.maxlen = maxlen;
615 	error = usbhid_sync_xfer(sc, USBHID_INTR_IN_DT, &req, buf);
616 	if (error == 0 && actlen != NULL)
617 		*actlen = req.intr.actlen;
618 
619 	return (error);
620 }
621 
622 static int
623 usbhid_write(device_t dev, const void *buf, hid_size_t len)
624 {
625 	struct usbhid_softc* sc = device_get_softc(dev);
626 	union usbhid_device_request req;
627 	int error;
628 
629 	error = usbhid_xfer_check_len(sc, USBHID_INTR_OUT_DT, len);
630 	if (error)
631 		return (error);
632 
633 	req.intr.maxlen = len;
634 	return (usbhid_sync_xfer(sc, USBHID_INTR_OUT_DT, &req,
635 	    __DECONST(void *, buf)));
636 }
637 
638 static int
639 usbhid_set_idle(device_t dev, uint16_t duration, uint8_t id)
640 {
641 	struct usbhid_softc* sc = device_get_softc(dev);
642 	union usbhid_device_request req;
643 	int error;
644 
645 	error = usbhid_xfer_check_len(sc, USBHID_CTRL_DT, 0);
646 	if (error)
647 		return (error);
648 
649 	/* Duration is measured in 4 milliseconds per unit. */
650 	req.ctrl.bmRequestType = UT_WRITE_CLASS_INTERFACE;
651 	req.ctrl.bRequest = UR_SET_IDLE;
652 	USETW2(req.ctrl.wValue, (duration + 3) / 4, id);
653 	req.ctrl.wIndex[0] = sc->sc_iface_no;
654 	req.ctrl.wIndex[1] = 0;
655 	USETW(req.ctrl.wLength, 0);
656 
657 	return (usbhid_sync_xfer(sc, USBHID_CTRL_DT, &req, NULL));
658 }
659 
660 static int
661 usbhid_set_protocol(device_t dev, uint16_t protocol)
662 {
663 	struct usbhid_softc* sc = device_get_softc(dev);
664 	union usbhid_device_request req;
665 	int error;
666 
667 	error = usbhid_xfer_check_len(sc, USBHID_CTRL_DT, 0);
668 	if (error)
669 		return (error);
670 
671 	req.ctrl.bmRequestType = UT_WRITE_CLASS_INTERFACE;
672 	req.ctrl.bRequest = UR_SET_PROTOCOL;
673 	USETW(req.ctrl.wValue, protocol);
674 	req.ctrl.wIndex[0] = sc->sc_iface_no;
675 	req.ctrl.wIndex[1] = 0;
676 	USETW(req.ctrl.wLength, 0);
677 
678 	return (usbhid_sync_xfer(sc, USBHID_CTRL_DT, &req, NULL));
679 }
680 
681 static int
682 usbhid_ioctl(device_t dev, unsigned long cmd, uintptr_t data)
683 {
684 	struct usbhid_softc* sc = device_get_softc(dev);
685 	struct usb_ctl_request *ucr;
686 	union usbhid_device_request req;
687 	int error;
688 
689 	switch (cmd) {
690 	case USB_REQUEST:
691 		ucr = (struct usb_ctl_request *)data;
692 		req.ctrl = ucr->ucr_request;
693 		error = usbhid_xfer_check_len(
694 		    sc, USBHID_CTRL_DT, UGETW(req.ctrl.wLength));
695 		if (error)
696 			break;
697 
698 		error = usbhid_sync_xfer(
699 		    sc, USBHID_CTRL_DT, &req, ucr->ucr_data);
700 		if (error == 0)
701 			ucr->ucr_actlen = UGETW(req.ctrl.wLength);
702 		break;
703 	default:
704 		error = EINVAL;
705 	}
706 
707 	return (error);
708 }
709 
710 static void
711 usbhid_init_device_info(struct usb_attach_arg *uaa, struct hid_device_info *hw)
712 {
713 
714 	hw->idBus = BUS_USB;
715 	hw->idVendor = uaa->info.idVendor;
716 	hw->idProduct = uaa->info.idProduct;
717 	hw->idVersion = uaa->info.bcdDevice;
718 
719 	/* Set various quirks based on usb_attach_arg */
720 	hid_add_dynamic_quirk(hw, USB_GET_DRIVER_INFO(uaa));
721 }
722 
723 static void
724 usbhid_fill_device_info(struct usb_attach_arg *uaa, struct hid_device_info *hw)
725 {
726 	struct usb_device *udev = uaa->device;
727 	struct usb_interface *iface = uaa->iface;
728 	struct usb_hid_descriptor *hid;
729 	struct usb_endpoint *ep;
730 
731 	snprintf(hw->name, sizeof(hw->name), "%s %s",
732 	    usb_get_manufacturer(udev), usb_get_product(udev));
733 	strlcpy(hw->serial, usb_get_serial(udev), sizeof(hw->serial));
734 
735 	if (uaa->info.bInterfaceClass == UICLASS_HID &&
736 	    iface != NULL && iface->idesc != NULL) {
737 		hid = hid_get_descriptor_from_usb(
738 		    usbd_get_config_descriptor(udev), iface->idesc);
739 		if (hid != NULL)
740 			hw->rdescsize =
741 			    UGETW(hid->descrs[0].wDescriptorLength);
742 	}
743 
744 	/* See if there is a interrupt out endpoint. */
745 	ep = usbd_get_endpoint(udev, uaa->info.bIfaceIndex,
746 	    usbhid_config + USBHID_INTR_OUT_DT);
747 	if (ep == NULL || ep->methods == NULL)
748 		hid_add_dynamic_quirk(hw, HQ_NOWRITE);
749 }
750 
751 static const STRUCT_USB_HOST_ID usbhid_devs[] = {
752 	/* the Xbox 360 gamepad doesn't use the HID class */
753 	{USB_IFACE_CLASS(UICLASS_VENDOR),
754 	 USB_IFACE_SUBCLASS(UISUBCLASS_XBOX360_CONTROLLER),
755 	 USB_IFACE_PROTOCOL(UIPROTO_XBOX360_GAMEPAD),
756 	 USB_DRIVER_INFO(HQ_IS_XBOX360GP)},
757 	/* HID keyboard with boot protocol support */
758 	{USB_IFACE_CLASS(UICLASS_HID),
759 	 USB_IFACE_SUBCLASS(UISUBCLASS_BOOT),
760 	 USB_IFACE_PROTOCOL(UIPROTO_BOOT_KEYBOARD),
761 	 USB_DRIVER_INFO(HQ_HAS_KBD_BOOTPROTO)},
762 	/* HID mouse with boot protocol support */
763 	{USB_IFACE_CLASS(UICLASS_HID),
764 	 USB_IFACE_SUBCLASS(UISUBCLASS_BOOT),
765 	 USB_IFACE_PROTOCOL(UIPROTO_MOUSE),
766 	 USB_DRIVER_INFO(HQ_HAS_MS_BOOTPROTO)},
767 	/* generic HID class */
768 	{USB_IFACE_CLASS(UICLASS_HID), USB_DRIVER_INFO(HQ_NONE)},
769 };
770 
771 static int
772 usbhid_probe(device_t dev)
773 {
774 	struct usb_attach_arg *uaa = device_get_ivars(dev);
775 	struct usbhid_softc *sc = device_get_softc(dev);
776 	int error;
777 
778 	DPRINTFN(11, "\n");
779 
780 	if (usbhid_enable == 0)
781 		return (ENXIO);
782 
783 	if (uaa->usb_mode != USB_MODE_HOST)
784 		return (ENXIO);
785 
786 	error = usbd_lookup_id_by_uaa(usbhid_devs, sizeof(usbhid_devs), uaa);
787 	if (error)
788 		return (error);
789 
790 	if (usb_test_quirk(uaa, UQ_HID_IGNORE))
791 		return (ENXIO);
792 
793 	/*
794 	 * Setup temporary hid_device_info so that we can figure out some
795 	 * basic quirks for this device.
796 	 */
797 	usbhid_init_device_info(uaa, &sc->sc_hw);
798 
799 	if (hid_test_quirk(&sc->sc_hw, HQ_HID_IGNORE))
800 		return (ENXIO);
801 
802 	return (BUS_PROBE_GENERIC + 1);
803 }
804 
805 static int
806 usbhid_attach(device_t dev)
807 {
808 	struct usb_attach_arg *uaa = device_get_ivars(dev);
809 	struct usbhid_softc *sc = device_get_softc(dev);
810 	device_t child;
811 	int error = 0;
812 
813 	DPRINTFN(10, "sc=%p\n", sc);
814 
815 	device_set_usb_desc(dev);
816 
817 	sc->sc_udev = uaa->device;
818 	sc->sc_iface_no = uaa->info.bIfaceNum;
819 	sc->sc_iface_index = uaa->info.bIfaceIndex;
820 
821 	usbhid_fill_device_info(uaa, &sc->sc_hw);
822 
823 	error = usbd_req_set_idle(uaa->device, NULL,
824 	    uaa->info.bIfaceIndex, 0, 0);
825 	if (error)
826 		DPRINTF("set idle failed, error=%s (ignored)\n",
827 		    usbd_errstr(error));
828 
829 	mtx_init(&sc->sc_mtx, "usbhid lock", NULL, MTX_DEF);
830 
831 	child = device_add_child(dev, "hidbus", -1);
832 	if (child == NULL) {
833 		device_printf(dev, "Could not add hidbus device\n");
834 		usbhid_detach(dev);
835 		return (ENOMEM);
836 	}
837 
838 	device_set_ivars(child, &sc->sc_hw);
839 	error = bus_generic_attach(dev);
840 	if (error) {
841 		device_printf(dev, "failed to attach child: %d\n", error);
842 		usbhid_detach(dev);
843 		return (error);
844 	}
845 
846 	return (0);			/* success */
847 }
848 
849 static int
850 usbhid_detach(device_t dev)
851 {
852 	struct usbhid_softc *sc = device_get_softc(dev);
853 
854 	device_delete_children(dev);
855 	mtx_destroy(&sc->sc_mtx);
856 
857 	return (0);
858 }
859 
860 static devclass_t usbhid_devclass;
861 
862 static device_method_t usbhid_methods[] = {
863 	DEVMETHOD(device_probe,		usbhid_probe),
864 	DEVMETHOD(device_attach,	usbhid_attach),
865 	DEVMETHOD(device_detach,	usbhid_detach),
866 
867 	DEVMETHOD(hid_intr_setup,	usbhid_intr_setup),
868 	DEVMETHOD(hid_intr_unsetup,	usbhid_intr_unsetup),
869 	DEVMETHOD(hid_intr_start,	usbhid_intr_start),
870 	DEVMETHOD(hid_intr_stop,	usbhid_intr_stop),
871 	DEVMETHOD(hid_intr_poll,	usbhid_intr_poll),
872 
873 	/* HID interface */
874 	DEVMETHOD(hid_get_rdesc,	usbhid_get_rdesc),
875 	DEVMETHOD(hid_read,		usbhid_read),
876 	DEVMETHOD(hid_write,		usbhid_write),
877 	DEVMETHOD(hid_get_report,	usbhid_get_report),
878 	DEVMETHOD(hid_set_report,	usbhid_set_report),
879 	DEVMETHOD(hid_set_idle,		usbhid_set_idle),
880 	DEVMETHOD(hid_set_protocol,	usbhid_set_protocol),
881 	DEVMETHOD(hid_ioctl,		usbhid_ioctl),
882 
883 	DEVMETHOD_END
884 };
885 
886 static driver_t usbhid_driver = {
887 	.name = "usbhid",
888 	.methods = usbhid_methods,
889 	.size = sizeof(struct usbhid_softc),
890 };
891 
892 DRIVER_MODULE(usbhid, uhub, usbhid_driver, usbhid_devclass, NULL, 0);
893 MODULE_DEPEND(usbhid, usb, 1, 1, 1);
894 MODULE_DEPEND(usbhid, hid, 1, 1, 1);
895 MODULE_DEPEND(usbhid, hidbus, 1, 1, 1);
896 MODULE_VERSION(usbhid, 1);
897 USB_PNP_HOST_INFO(usbhid_devs);
898