xref: /freebsd/sys/dev/usb/input/ums.c (revision e0a69b51ac09dc0376611274903ba683e2d1ace7)
102ac6454SAndrew Thompson /*-
202ac6454SAndrew Thompson  * Copyright (c) 1998 The NetBSD Foundation, Inc.
302ac6454SAndrew Thompson  * All rights reserved.
402ac6454SAndrew Thompson  *
502ac6454SAndrew Thompson  * This code is derived from software contributed to The NetBSD Foundation
602ac6454SAndrew Thompson  * by Lennart Augustsson (lennart@augustsson.net) at
702ac6454SAndrew Thompson  * Carlstedt Research & Technology.
802ac6454SAndrew Thompson  *
902ac6454SAndrew Thompson  * Redistribution and use in source and binary forms, with or without
1002ac6454SAndrew Thompson  * modification, are permitted provided that the following conditions
1102ac6454SAndrew Thompson  * are met:
1202ac6454SAndrew Thompson  * 1. Redistributions of source code must retain the above copyright
1302ac6454SAndrew Thompson  *    notice, this list of conditions and the following disclaimer.
1402ac6454SAndrew Thompson  * 2. Redistributions in binary form must reproduce the above copyright
1502ac6454SAndrew Thompson  *    notice, this list of conditions and the following disclaimer in the
1602ac6454SAndrew Thompson  *    documentation and/or other materials provided with the distribution.
1702ac6454SAndrew Thompson  * 3. All advertising materials mentioning features or use of this software
1802ac6454SAndrew Thompson  *    must display the following acknowledgement:
1902ac6454SAndrew Thompson  *        This product includes software developed by the NetBSD
2002ac6454SAndrew Thompson  *        Foundation, Inc. and its contributors.
2102ac6454SAndrew Thompson  * 4. Neither the name of The NetBSD Foundation nor the names of its
2202ac6454SAndrew Thompson  *    contributors may be used to endorse or promote products derived
2302ac6454SAndrew Thompson  *    from this software without specific prior written permission.
2402ac6454SAndrew Thompson  *
2502ac6454SAndrew Thompson  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2602ac6454SAndrew Thompson  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2702ac6454SAndrew Thompson  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2802ac6454SAndrew Thompson  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2902ac6454SAndrew Thompson  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3002ac6454SAndrew Thompson  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3102ac6454SAndrew Thompson  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3202ac6454SAndrew Thompson  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3302ac6454SAndrew Thompson  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3402ac6454SAndrew Thompson  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3502ac6454SAndrew Thompson  * POSSIBILITY OF SUCH DAMAGE.
3602ac6454SAndrew Thompson  */
3702ac6454SAndrew Thompson 
3802ac6454SAndrew Thompson #include <sys/cdefs.h>
3902ac6454SAndrew Thompson __FBSDID("$FreeBSD$");
4002ac6454SAndrew Thompson 
4102ac6454SAndrew Thompson /*
4202ac6454SAndrew Thompson  * HID spec: http://www.usb.org/developers/devclass_docs/HID1_11.pdf
4302ac6454SAndrew Thompson  */
4402ac6454SAndrew Thompson 
4502ac6454SAndrew Thompson #include "usbdevs.h"
4602ac6454SAndrew Thompson #include <dev/usb/usb.h>
4702ac6454SAndrew Thompson #include <dev/usb/usb_mfunc.h>
4802ac6454SAndrew Thompson #include <dev/usb/usb_error.h>
4902ac6454SAndrew Thompson #include <dev/usb/usbhid.h>
5002ac6454SAndrew Thompson 
5102ac6454SAndrew Thompson #define	USB_DEBUG_VAR ums_debug
5202ac6454SAndrew Thompson 
5302ac6454SAndrew Thompson #include <dev/usb/usb_core.h>
5402ac6454SAndrew Thompson #include <dev/usb/usb_util.h>
5502ac6454SAndrew Thompson #include <dev/usb/usb_debug.h>
5602ac6454SAndrew Thompson #include <dev/usb/usb_busdma.h>
5702ac6454SAndrew Thompson #include <dev/usb/usb_process.h>
5802ac6454SAndrew Thompson #include <dev/usb/usb_transfer.h>
5902ac6454SAndrew Thompson #include <dev/usb/usb_request.h>
6002ac6454SAndrew Thompson #include <dev/usb/usb_dynamic.h>
6102ac6454SAndrew Thompson #include <dev/usb/usb_mbuf.h>
6202ac6454SAndrew Thompson #include <dev/usb/usb_dev.h>
6302ac6454SAndrew Thompson #include <dev/usb/usb_hid.h>
6402ac6454SAndrew Thompson 
6502ac6454SAndrew Thompson #include <dev/usb/quirk/usb_quirk.h>
6602ac6454SAndrew Thompson 
6702ac6454SAndrew Thompson #include <sys/ioccom.h>
6802ac6454SAndrew Thompson #include <sys/filio.h>
6902ac6454SAndrew Thompson #include <sys/tty.h>
7002ac6454SAndrew Thompson #include <sys/mouse.h>
7102ac6454SAndrew Thompson 
7202ac6454SAndrew Thompson #if USB_DEBUG
7302ac6454SAndrew Thompson static int ums_debug = 0;
7402ac6454SAndrew Thompson 
759360ae40SAndrew Thompson SYSCTL_NODE(_hw_usb, OID_AUTO, ums, CTLFLAG_RW, 0, "USB ums");
769360ae40SAndrew Thompson SYSCTL_INT(_hw_usb_ums, OID_AUTO, debug, CTLFLAG_RW,
7702ac6454SAndrew Thompson     &ums_debug, 0, "Debug level");
7802ac6454SAndrew Thompson #endif
7902ac6454SAndrew Thompson 
8002ac6454SAndrew Thompson #define	MOUSE_FLAGS_MASK (HIO_CONST|HIO_RELATIVE)
8102ac6454SAndrew Thompson #define	MOUSE_FLAGS (HIO_RELATIVE)
8202ac6454SAndrew Thompson 
8302ac6454SAndrew Thompson #define	UMS_BUF_SIZE      8		/* bytes */
8402ac6454SAndrew Thompson #define	UMS_IFQ_MAXLEN   50		/* units */
8502ac6454SAndrew Thompson #define	UMS_BUTTON_MAX   31		/* exclusive, must be less than 32 */
8602ac6454SAndrew Thompson #define	UMS_BUT(i) ((i) < 3 ? (((i) + 2) % 3) : (i))
87de967835SAndrew Thompson #define	UMS_INFO_MAX	  2		/* maximum number of HID sets */
8802ac6454SAndrew Thompson 
8902ac6454SAndrew Thompson enum {
9002ac6454SAndrew Thompson 	UMS_INTR_DT,
913e5e312aSAndrew Thompson 	UMS_N_TRANSFER,
9202ac6454SAndrew Thompson };
9302ac6454SAndrew Thompson 
94de967835SAndrew Thompson struct ums_info {
9502ac6454SAndrew Thompson 	struct hid_location sc_loc_w;
9602ac6454SAndrew Thompson 	struct hid_location sc_loc_x;
9702ac6454SAndrew Thompson 	struct hid_location sc_loc_y;
9802ac6454SAndrew Thompson 	struct hid_location sc_loc_z;
9902ac6454SAndrew Thompson 	struct hid_location sc_loc_t;
10002ac6454SAndrew Thompson 	struct hid_location sc_loc_btn[UMS_BUTTON_MAX];
10102ac6454SAndrew Thompson 
10202ac6454SAndrew Thompson 	uint32_t sc_flags;
10302ac6454SAndrew Thompson #define	UMS_FLAG_X_AXIS     0x0001
10402ac6454SAndrew Thompson #define	UMS_FLAG_Y_AXIS     0x0002
10502ac6454SAndrew Thompson #define	UMS_FLAG_Z_AXIS     0x0004
10602ac6454SAndrew Thompson #define	UMS_FLAG_T_AXIS     0x0008
10702ac6454SAndrew Thompson #define	UMS_FLAG_SBU        0x0010	/* spurious button up events */
1083e5e312aSAndrew Thompson #define	UMS_FLAG_REVZ	    0x0020	/* Z-axis is reversed */
1093e5e312aSAndrew Thompson #define	UMS_FLAG_W_AXIS     0x0040
11002ac6454SAndrew Thompson 
111bf87f556SAndrew Thompson 	uint8_t	sc_iid_w;
112bf87f556SAndrew Thompson 	uint8_t	sc_iid_x;
113bf87f556SAndrew Thompson 	uint8_t	sc_iid_y;
114bf87f556SAndrew Thompson 	uint8_t	sc_iid_z;
115bf87f556SAndrew Thompson 	uint8_t	sc_iid_t;
116bf87f556SAndrew Thompson 	uint8_t	sc_iid_btn[UMS_BUTTON_MAX];
117de967835SAndrew Thompson 	uint8_t	sc_buttons;
118de967835SAndrew Thompson };
119de967835SAndrew Thompson 
120de967835SAndrew Thompson struct ums_softc {
121760bc48eSAndrew Thompson 	struct usb_fifo_sc sc_fifo;
122de967835SAndrew Thompson 	struct mtx sc_mtx;
123760bc48eSAndrew Thompson 	struct usb_callout sc_callout;
124de967835SAndrew Thompson 	struct ums_info sc_info[UMS_INFO_MAX];
125de967835SAndrew Thompson 
126de967835SAndrew Thompson 	mousehw_t sc_hw;
127de967835SAndrew Thompson 	mousemode_t sc_mode;
128de967835SAndrew Thompson 	mousestatus_t sc_status;
129de967835SAndrew Thompson 
130760bc48eSAndrew Thompson 	struct usb_xfer *sc_xfer[UMS_N_TRANSFER];
131de967835SAndrew Thompson 
132de967835SAndrew Thompson 	uint8_t	sc_buttons;
133de967835SAndrew Thompson 	uint8_t	sc_iid;
13402ac6454SAndrew Thompson 	uint8_t	sc_temp[64];
13502ac6454SAndrew Thompson };
13602ac6454SAndrew Thompson 
13702ac6454SAndrew Thompson static void ums_put_queue_timeout(void *__sc);
13802ac6454SAndrew Thompson 
139e0a69b51SAndrew Thompson static usb_callback_t ums_intr_callback;
14002ac6454SAndrew Thompson 
14102ac6454SAndrew Thompson static device_probe_t ums_probe;
14202ac6454SAndrew Thompson static device_attach_t ums_attach;
14302ac6454SAndrew Thompson static device_detach_t ums_detach;
14402ac6454SAndrew Thompson 
145e0a69b51SAndrew Thompson static usb_fifo_cmd_t ums_start_read;
146e0a69b51SAndrew Thompson static usb_fifo_cmd_t ums_stop_read;
147e0a69b51SAndrew Thompson static usb_fifo_open_t ums_open;
148e0a69b51SAndrew Thompson static usb_fifo_close_t ums_close;
149e0a69b51SAndrew Thompson static usb_fifo_ioctl_t ums_ioctl;
15002ac6454SAndrew Thompson 
15102ac6454SAndrew Thompson static void ums_put_queue(struct ums_softc *sc, int32_t dx, int32_t dy, int32_t dz, int32_t dt, int32_t buttons);
15202ac6454SAndrew Thompson 
153760bc48eSAndrew Thompson static struct usb_fifo_methods ums_fifo_methods = {
15402ac6454SAndrew Thompson 	.f_open = &ums_open,
15502ac6454SAndrew Thompson 	.f_close = &ums_close,
15602ac6454SAndrew Thompson 	.f_ioctl = &ums_ioctl,
15702ac6454SAndrew Thompson 	.f_start_read = &ums_start_read,
15802ac6454SAndrew Thompson 	.f_stop_read = &ums_stop_read,
15902ac6454SAndrew Thompson 	.basename[0] = "ums",
16002ac6454SAndrew Thompson };
16102ac6454SAndrew Thompson 
16202ac6454SAndrew Thompson static void
16302ac6454SAndrew Thompson ums_put_queue_timeout(void *__sc)
16402ac6454SAndrew Thompson {
16502ac6454SAndrew Thompson 	struct ums_softc *sc = __sc;
16602ac6454SAndrew Thompson 
16702ac6454SAndrew Thompson 	mtx_assert(&sc->sc_mtx, MA_OWNED);
16802ac6454SAndrew Thompson 
16902ac6454SAndrew Thompson 	ums_put_queue(sc, 0, 0, 0, 0, 0);
17002ac6454SAndrew Thompson }
17102ac6454SAndrew Thompson 
17202ac6454SAndrew Thompson static void
173760bc48eSAndrew Thompson ums_intr_callback(struct usb_xfer *xfer)
17402ac6454SAndrew Thompson {
17502ac6454SAndrew Thompson 	struct ums_softc *sc = xfer->priv_sc;
176de967835SAndrew Thompson 	struct ums_info *info = &sc->sc_info[0];
17702ac6454SAndrew Thompson 	uint8_t *buf = sc->sc_temp;
17802ac6454SAndrew Thompson 	uint16_t len = xfer->actlen;
17902ac6454SAndrew Thompson 	int32_t buttons = 0;
180de967835SAndrew Thompson 	int32_t dw = 0;
181de967835SAndrew Thompson 	int32_t dx = 0;
182de967835SAndrew Thompson 	int32_t dy = 0;
183de967835SAndrew Thompson 	int32_t dz = 0;
184de967835SAndrew Thompson 	int32_t dt = 0;
18502ac6454SAndrew Thompson 	uint8_t i;
186bf87f556SAndrew Thompson 	uint8_t id;
18702ac6454SAndrew Thompson 
18802ac6454SAndrew Thompson 	switch (USB_GET_STATE(xfer)) {
18902ac6454SAndrew Thompson 	case USB_ST_TRANSFERRED:
19002ac6454SAndrew Thompson 		DPRINTFN(6, "sc=%p actlen=%d\n", sc, len);
19102ac6454SAndrew Thompson 
19202ac6454SAndrew Thompson 		if (len > sizeof(sc->sc_temp)) {
19302ac6454SAndrew Thompson 			DPRINTFN(6, "truncating large packet to %zu bytes\n",
19402ac6454SAndrew Thompson 			    sizeof(sc->sc_temp));
19502ac6454SAndrew Thompson 			len = sizeof(sc->sc_temp);
19602ac6454SAndrew Thompson 		}
1973e5e312aSAndrew Thompson 		if (len == 0)
19802ac6454SAndrew Thompson 			goto tr_setup;
1993e5e312aSAndrew Thompson 
20002ac6454SAndrew Thompson 		usb2_copy_out(xfer->frbuffers, 0, buf, len);
20102ac6454SAndrew Thompson 
20202ac6454SAndrew Thompson 		DPRINTFN(6, "data = %02x %02x %02x %02x "
20302ac6454SAndrew Thompson 		    "%02x %02x %02x %02x\n",
20402ac6454SAndrew Thompson 		    (len > 0) ? buf[0] : 0, (len > 1) ? buf[1] : 0,
20502ac6454SAndrew Thompson 		    (len > 2) ? buf[2] : 0, (len > 3) ? buf[3] : 0,
20602ac6454SAndrew Thompson 		    (len > 4) ? buf[4] : 0, (len > 5) ? buf[5] : 0,
20702ac6454SAndrew Thompson 		    (len > 6) ? buf[6] : 0, (len > 7) ? buf[7] : 0);
20802ac6454SAndrew Thompson 
20902ac6454SAndrew Thompson 		if (sc->sc_iid) {
210bf87f556SAndrew Thompson 			id = *buf;
21102ac6454SAndrew Thompson 
21202ac6454SAndrew Thompson 			len--;
21302ac6454SAndrew Thompson 			buf++;
21402ac6454SAndrew Thompson 
21502ac6454SAndrew Thompson 		} else {
216bf87f556SAndrew Thompson 			id = 0;
217de967835SAndrew Thompson 			if (sc->sc_info[0].sc_flags & UMS_FLAG_SBU) {
21802ac6454SAndrew Thompson 				if ((*buf == 0x14) || (*buf == 0x15)) {
21902ac6454SAndrew Thompson 					goto tr_setup;
22002ac6454SAndrew Thompson 				}
22102ac6454SAndrew Thompson 			}
22202ac6454SAndrew Thompson 		}
22302ac6454SAndrew Thompson 
224de967835SAndrew Thompson 	repeat:
225de967835SAndrew Thompson 		if ((info->sc_flags & UMS_FLAG_W_AXIS) &&
226de967835SAndrew Thompson 		    (id == info->sc_iid_w))
227de967835SAndrew Thompson 			dw += hid_get_data(buf, len, &info->sc_loc_w);
22802ac6454SAndrew Thompson 
229de967835SAndrew Thompson 		if ((info->sc_flags & UMS_FLAG_X_AXIS) &&
230de967835SAndrew Thompson 		    (id == info->sc_iid_x))
231de967835SAndrew Thompson 			dx += hid_get_data(buf, len, &info->sc_loc_x);
23202ac6454SAndrew Thompson 
233de967835SAndrew Thompson 		if ((info->sc_flags & UMS_FLAG_Y_AXIS) &&
234de967835SAndrew Thompson 		    (id == info->sc_iid_y))
235de967835SAndrew Thompson 			dy = -hid_get_data(buf, len, &info->sc_loc_y);
23602ac6454SAndrew Thompson 
237de967835SAndrew Thompson 		if ((info->sc_flags & UMS_FLAG_Z_AXIS) &&
238de967835SAndrew Thompson 		    (id == info->sc_iid_z)) {
239de967835SAndrew Thompson 			int32_t temp;
240de967835SAndrew Thompson 			temp = hid_get_data(buf, len, &info->sc_loc_z);
241de967835SAndrew Thompson 			if (info->sc_flags & UMS_FLAG_REVZ)
242de967835SAndrew Thompson 				temp = -temp;
243de967835SAndrew Thompson 			dz -= temp;
244de967835SAndrew Thompson 		}
24502ac6454SAndrew Thompson 
246de967835SAndrew Thompson 		if ((info->sc_flags & UMS_FLAG_T_AXIS) &&
247de967835SAndrew Thompson 		    (id == info->sc_iid_t))
248de967835SAndrew Thompson 			dt -= hid_get_data(buf, len, &info->sc_loc_t);
249bf87f556SAndrew Thompson 
250de967835SAndrew Thompson 		for (i = 0; i < info->sc_buttons; i++) {
251de967835SAndrew Thompson 			if (id != info->sc_iid_btn[i])
252bf87f556SAndrew Thompson 				continue;
253de967835SAndrew Thompson 			if (hid_get_data(buf, len, &info->sc_loc_btn[i])) {
25402ac6454SAndrew Thompson 				buttons |= (1 << UMS_BUT(i));
25502ac6454SAndrew Thompson 			}
25602ac6454SAndrew Thompson 		}
25702ac6454SAndrew Thompson 
258de967835SAndrew Thompson 		if (++info != &sc->sc_info[UMS_INFO_MAX])
259de967835SAndrew Thompson 			goto repeat;
260de967835SAndrew Thompson 
26102ac6454SAndrew Thompson 		if (dx || dy || dz || dt || dw ||
26202ac6454SAndrew Thompson 		    (buttons != sc->sc_status.button)) {
26302ac6454SAndrew Thompson 
26402ac6454SAndrew Thompson 			DPRINTFN(6, "x:%d y:%d z:%d t:%d w:%d buttons:0x%08x\n",
26502ac6454SAndrew Thompson 			    dx, dy, dz, dt, dw, buttons);
26602ac6454SAndrew Thompson 
26702ac6454SAndrew Thompson 			sc->sc_status.button = buttons;
26802ac6454SAndrew Thompson 			sc->sc_status.dx += dx;
26902ac6454SAndrew Thompson 			sc->sc_status.dy += dy;
27002ac6454SAndrew Thompson 			sc->sc_status.dz += dz;
27102ac6454SAndrew Thompson 			/*
27202ac6454SAndrew Thompson 			 * sc->sc_status.dt += dt;
27302ac6454SAndrew Thompson 			 * no way to export this yet
27402ac6454SAndrew Thompson 			 */
27502ac6454SAndrew Thompson 
27602ac6454SAndrew Thompson 			/*
2773e5e312aSAndrew Thompson 		         * The Qtronix keyboard has a built in PS/2
2783e5e312aSAndrew Thompson 		         * port for a mouse.  The firmware once in a
2793e5e312aSAndrew Thompson 		         * while posts a spurious button up
2803e5e312aSAndrew Thompson 		         * event. This event we ignore by doing a
2813e5e312aSAndrew Thompson 		         * timeout for 50 msecs.  If we receive
2823e5e312aSAndrew Thompson 		         * dx=dy=dz=buttons=0 before we add the event
2833e5e312aSAndrew Thompson 		         * to the queue.  In any other case we delete
2843e5e312aSAndrew Thompson 		         * the timeout event.
28502ac6454SAndrew Thompson 		         */
286de967835SAndrew Thompson 			if ((sc->sc_info[0].sc_flags & UMS_FLAG_SBU) &&
28702ac6454SAndrew Thompson 			    (dx == 0) && (dy == 0) && (dz == 0) && (dt == 0) &&
28802ac6454SAndrew Thompson 			    (dw == 0) && (buttons == 0)) {
28902ac6454SAndrew Thompson 
29002ac6454SAndrew Thompson 				usb2_callout_reset(&sc->sc_callout, hz / 20,
29102ac6454SAndrew Thompson 				    &ums_put_queue_timeout, sc);
29202ac6454SAndrew Thompson 			} else {
29302ac6454SAndrew Thompson 
29402ac6454SAndrew Thompson 				usb2_callout_stop(&sc->sc_callout);
29502ac6454SAndrew Thompson 
29602ac6454SAndrew Thompson 				ums_put_queue(sc, dx, dy, dz, dt, buttons);
29702ac6454SAndrew Thompson 			}
29802ac6454SAndrew Thompson 		}
29902ac6454SAndrew Thompson 	case USB_ST_SETUP:
30002ac6454SAndrew Thompson tr_setup:
30102ac6454SAndrew Thompson 		/* check if we can put more data into the FIFO */
30202ac6454SAndrew Thompson 		if (usb2_fifo_put_bytes_max(
30302ac6454SAndrew Thompson 		    sc->sc_fifo.fp[USB_FIFO_RX]) != 0) {
30402ac6454SAndrew Thompson 			xfer->frlengths[0] = xfer->max_data_length;
30502ac6454SAndrew Thompson 			usb2_start_hardware(xfer);
30602ac6454SAndrew Thompson 		}
3073e5e312aSAndrew Thompson 		break;
30802ac6454SAndrew Thompson 
30902ac6454SAndrew Thompson 	default:			/* Error */
31002ac6454SAndrew Thompson 		if (xfer->error != USB_ERR_CANCELLED) {
3113e5e312aSAndrew Thompson 			/* try clear stall first */
3123e5e312aSAndrew Thompson 			xfer->flags.stall_pipe = 1;
3133e5e312aSAndrew Thompson 			goto tr_setup;
31402ac6454SAndrew Thompson 		}
3153e5e312aSAndrew Thompson 		break;
31602ac6454SAndrew Thompson 	}
31702ac6454SAndrew Thompson }
31802ac6454SAndrew Thompson 
319760bc48eSAndrew Thompson static const struct usb_config ums_config[UMS_N_TRANSFER] = {
32002ac6454SAndrew Thompson 
32102ac6454SAndrew Thompson 	[UMS_INTR_DT] = {
32202ac6454SAndrew Thompson 		.type = UE_INTERRUPT,
32302ac6454SAndrew Thompson 		.endpoint = UE_ADDR_ANY,
32402ac6454SAndrew Thompson 		.direction = UE_DIR_IN,
3254eae601eSAndrew Thompson 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,},
3264eae601eSAndrew Thompson 		.bufsize = 0,	/* use wMaxPacketSize */
3274eae601eSAndrew Thompson 		.callback = &ums_intr_callback,
32802ac6454SAndrew Thompson 	},
32902ac6454SAndrew Thompson };
33002ac6454SAndrew Thompson 
33102ac6454SAndrew Thompson static int
33202ac6454SAndrew Thompson ums_probe(device_t dev)
33302ac6454SAndrew Thompson {
334760bc48eSAndrew Thompson 	struct usb_attach_arg *uaa = device_get_ivars(dev);
335760bc48eSAndrew Thompson 	struct usb_interface_descriptor *id;
33602ac6454SAndrew Thompson 	void *d_ptr;
3373e5e312aSAndrew Thompson 	int error;
33802ac6454SAndrew Thompson 	uint16_t d_len;
33902ac6454SAndrew Thompson 
34002ac6454SAndrew Thompson 	DPRINTFN(11, "\n");
34102ac6454SAndrew Thompson 
342f29a0724SAndrew Thompson 	if (uaa->usb_mode != USB_MODE_HOST)
34302ac6454SAndrew Thompson 		return (ENXIO);
3443e5e312aSAndrew Thompson 
34502ac6454SAndrew Thompson 	id = usb2_get_interface_descriptor(uaa->iface);
34602ac6454SAndrew Thompson 
34702ac6454SAndrew Thompson 	if ((id == NULL) ||
3483e5e312aSAndrew Thompson 	    (id->bInterfaceClass != UICLASS_HID))
34902ac6454SAndrew Thompson 		return (ENXIO);
3503e5e312aSAndrew Thompson 
351296ade60SAndrew Thompson 	error = usb2_req_get_hid_desc(uaa->device, NULL,
35202ac6454SAndrew Thompson 	    &d_ptr, &d_len, M_TEMP, uaa->info.bIfaceIndex);
35302ac6454SAndrew Thompson 
3543e5e312aSAndrew Thompson 	if (error)
35502ac6454SAndrew Thompson 		return (ENXIO);
3563e5e312aSAndrew Thompson 
35702ac6454SAndrew Thompson 	if (hid_is_collection(d_ptr, d_len,
3583e5e312aSAndrew Thompson 	    HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_MOUSE)))
35902ac6454SAndrew Thompson 		error = 0;
3603e5e312aSAndrew Thompson 	else if ((id->bInterfaceSubClass == UISUBCLASS_BOOT) &&
3613e5e312aSAndrew Thompson 	    (id->bInterfaceProtocol == UIPROTO_MOUSE))
36202ac6454SAndrew Thompson 		error = 0;
3633e5e312aSAndrew Thompson 	else
36402ac6454SAndrew Thompson 		error = ENXIO;
36502ac6454SAndrew Thompson 
36602ac6454SAndrew Thompson 	free(d_ptr, M_TEMP);
36702ac6454SAndrew Thompson 	return (error);
36802ac6454SAndrew Thompson }
36902ac6454SAndrew Thompson 
370de967835SAndrew Thompson static void
371de967835SAndrew Thompson ums_hid_parse(struct ums_softc *sc, device_t dev, const uint8_t *buf,
372de967835SAndrew Thompson     uint16_t len, uint8_t index)
373de967835SAndrew Thompson {
374de967835SAndrew Thompson 	struct ums_info *info = &sc->sc_info[index];
375de967835SAndrew Thompson 	uint32_t flags;
376de967835SAndrew Thompson 	uint8_t i;
377de967835SAndrew Thompson 
378de967835SAndrew Thompson 	if (hid_locate(buf, len, HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_X),
379de967835SAndrew Thompson 	    hid_input, index, &info->sc_loc_x, &flags, &info->sc_iid_x)) {
380de967835SAndrew Thompson 
381de967835SAndrew Thompson 		if ((flags & MOUSE_FLAGS_MASK) == MOUSE_FLAGS) {
382de967835SAndrew Thompson 			info->sc_flags |= UMS_FLAG_X_AXIS;
383de967835SAndrew Thompson 		}
384de967835SAndrew Thompson 	}
385de967835SAndrew Thompson 	if (hid_locate(buf, len, HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_Y),
386de967835SAndrew Thompson 	    hid_input, index, &info->sc_loc_y, &flags, &info->sc_iid_y)) {
387de967835SAndrew Thompson 
388de967835SAndrew Thompson 		if ((flags & MOUSE_FLAGS_MASK) == MOUSE_FLAGS) {
389de967835SAndrew Thompson 			info->sc_flags |= UMS_FLAG_Y_AXIS;
390de967835SAndrew Thompson 		}
391de967835SAndrew Thompson 	}
392de967835SAndrew Thompson 	/* Try the wheel first as the Z activator since it's tradition. */
393de967835SAndrew Thompson 	if (hid_locate(buf, len, HID_USAGE2(HUP_GENERIC_DESKTOP,
394de967835SAndrew Thompson 	    HUG_WHEEL), hid_input, index, &info->sc_loc_z, &flags,
395de967835SAndrew Thompson 	    &info->sc_iid_z) ||
396de967835SAndrew Thompson 	    hid_locate(buf, len, HID_USAGE2(HUP_GENERIC_DESKTOP,
397de967835SAndrew Thompson 	    HUG_TWHEEL), hid_input, index, &info->sc_loc_z, &flags,
398de967835SAndrew Thompson 	    &info->sc_iid_z)) {
399de967835SAndrew Thompson 		if ((flags & MOUSE_FLAGS_MASK) == MOUSE_FLAGS) {
400de967835SAndrew Thompson 			info->sc_flags |= UMS_FLAG_Z_AXIS;
401de967835SAndrew Thompson 		}
402de967835SAndrew Thompson 		/*
403de967835SAndrew Thompson 		 * We might have both a wheel and Z direction, if so put
404de967835SAndrew Thompson 		 * put the Z on the W coordinate.
405de967835SAndrew Thompson 		 */
406de967835SAndrew Thompson 		if (hid_locate(buf, len, HID_USAGE2(HUP_GENERIC_DESKTOP,
407de967835SAndrew Thompson 		    HUG_Z), hid_input, index, &info->sc_loc_w, &flags,
408de967835SAndrew Thompson 		    &info->sc_iid_w)) {
409de967835SAndrew Thompson 
410de967835SAndrew Thompson 			if ((flags & MOUSE_FLAGS_MASK) == MOUSE_FLAGS) {
411de967835SAndrew Thompson 				info->sc_flags |= UMS_FLAG_W_AXIS;
412de967835SAndrew Thompson 			}
413de967835SAndrew Thompson 		}
414de967835SAndrew Thompson 	} else if (hid_locate(buf, len, HID_USAGE2(HUP_GENERIC_DESKTOP,
415de967835SAndrew Thompson 	    HUG_Z), hid_input, index, &info->sc_loc_z, &flags,
416de967835SAndrew Thompson 	    &info->sc_iid_z)) {
417de967835SAndrew Thompson 
418de967835SAndrew Thompson 		if ((flags & MOUSE_FLAGS_MASK) == MOUSE_FLAGS) {
419de967835SAndrew Thompson 			info->sc_flags |= UMS_FLAG_Z_AXIS;
420de967835SAndrew Thompson 		}
421de967835SAndrew Thompson 	}
422de967835SAndrew Thompson 	/*
423de967835SAndrew Thompson 	 * The Microsoft Wireless Intellimouse 2.0 reports it's wheel
424de967835SAndrew Thompson 	 * using 0x0048, which is HUG_TWHEEL, and seems to expect you
425de967835SAndrew Thompson 	 * to know that the byte after the wheel is the tilt axis.
426de967835SAndrew Thompson 	 * There are no other HID axis descriptors other than X,Y and
427de967835SAndrew Thompson 	 * TWHEEL
428de967835SAndrew Thompson 	 */
429de967835SAndrew Thompson 	if (hid_locate(buf, len, HID_USAGE2(HUP_GENERIC_DESKTOP,
430de967835SAndrew Thompson 	    HUG_TWHEEL), hid_input, index, &info->sc_loc_t,
431de967835SAndrew Thompson 	    &flags, &info->sc_iid_t)) {
432de967835SAndrew Thompson 
433de967835SAndrew Thompson 		info->sc_loc_t.pos += 8;
434de967835SAndrew Thompson 
435de967835SAndrew Thompson 		if ((flags & MOUSE_FLAGS_MASK) == MOUSE_FLAGS) {
436de967835SAndrew Thompson 			info->sc_flags |= UMS_FLAG_T_AXIS;
437de967835SAndrew Thompson 		}
438de967835SAndrew Thompson 	}
439de967835SAndrew Thompson 	/* figure out the number of buttons */
440de967835SAndrew Thompson 
441de967835SAndrew Thompson 	for (i = 0; i < UMS_BUTTON_MAX; i++) {
442de967835SAndrew Thompson 		if (!hid_locate(buf, len, HID_USAGE2(HUP_BUTTON, (i + 1)),
443de967835SAndrew Thompson 		    hid_input, index, &info->sc_loc_btn[i], NULL,
444de967835SAndrew Thompson 		    &info->sc_iid_btn[i])) {
445de967835SAndrew Thompson 			break;
446de967835SAndrew Thompson 		}
447de967835SAndrew Thompson 	}
448de967835SAndrew Thompson 	info->sc_buttons = i;
449de967835SAndrew Thompson 
450de967835SAndrew Thompson 	if (i > sc->sc_buttons)
451de967835SAndrew Thompson 		sc->sc_buttons = i;
452de967835SAndrew Thompson 
453de967835SAndrew Thompson 	if (info->sc_flags == 0)
454de967835SAndrew Thompson 		return;
455de967835SAndrew Thompson 
456de967835SAndrew Thompson 	/* announce information about the mouse */
457de967835SAndrew Thompson 	device_printf(dev, "%d buttons and [%s%s%s%s%s] coordinates ID=%u\n",
458de967835SAndrew Thompson 	    (info->sc_buttons),
459de967835SAndrew Thompson 	    (info->sc_flags & UMS_FLAG_X_AXIS) ? "X" : "",
460de967835SAndrew Thompson 	    (info->sc_flags & UMS_FLAG_Y_AXIS) ? "Y" : "",
461de967835SAndrew Thompson 	    (info->sc_flags & UMS_FLAG_Z_AXIS) ? "Z" : "",
462de967835SAndrew Thompson 	    (info->sc_flags & UMS_FLAG_T_AXIS) ? "T" : "",
463de967835SAndrew Thompson 	    (info->sc_flags & UMS_FLAG_W_AXIS) ? "W" : "",
464de967835SAndrew Thompson 	    info->sc_iid_x);
465de967835SAndrew Thompson }
466de967835SAndrew Thompson 
46702ac6454SAndrew Thompson static int
46802ac6454SAndrew Thompson ums_attach(device_t dev)
46902ac6454SAndrew Thompson {
470760bc48eSAndrew Thompson 	struct usb_attach_arg *uaa = device_get_ivars(dev);
47102ac6454SAndrew Thompson 	struct ums_softc *sc = device_get_softc(dev);
472de967835SAndrew Thompson 	struct ums_info *info;
47302ac6454SAndrew Thompson 	void *d_ptr = NULL;
4743e5e312aSAndrew Thompson 	int isize;
4753e5e312aSAndrew Thompson 	int err;
47602ac6454SAndrew Thompson 	uint16_t d_len;
47702ac6454SAndrew Thompson 	uint8_t i;
478de967835SAndrew Thompson 	uint8_t j;
47902ac6454SAndrew Thompson 
48002ac6454SAndrew Thompson 	DPRINTFN(11, "sc=%p\n", sc);
48102ac6454SAndrew Thompson 
48202ac6454SAndrew Thompson 	device_set_usb2_desc(dev);
48302ac6454SAndrew Thompson 
48402ac6454SAndrew Thompson 	mtx_init(&sc->sc_mtx, "ums lock", NULL, MTX_DEF | MTX_RECURSE);
48502ac6454SAndrew Thompson 
48602ac6454SAndrew Thompson 	usb2_callout_init_mtx(&sc->sc_callout, &sc->sc_mtx, 0);
48702ac6454SAndrew Thompson 
48802ac6454SAndrew Thompson 	/*
48902ac6454SAndrew Thompson          * Force the report (non-boot) protocol.
49002ac6454SAndrew Thompson          *
49102ac6454SAndrew Thompson          * Mice without boot protocol support may choose not to implement
49202ac6454SAndrew Thompson          * Set_Protocol at all; Ignore any error.
49302ac6454SAndrew Thompson          */
494de967835SAndrew Thompson 	err = usb2_req_set_protocol(uaa->device, NULL,
495de967835SAndrew Thompson 	    uaa->info.bIfaceIndex, 1);
49602ac6454SAndrew Thompson 
49702ac6454SAndrew Thompson 	err = usb2_transfer_setup(uaa->device,
49802ac6454SAndrew Thompson 	    &uaa->info.bIfaceIndex, sc->sc_xfer, ums_config,
49902ac6454SAndrew Thompson 	    UMS_N_TRANSFER, sc, &sc->sc_mtx);
50002ac6454SAndrew Thompson 
50102ac6454SAndrew Thompson 	if (err) {
50202ac6454SAndrew Thompson 		DPRINTF("error=%s\n", usb2_errstr(err));
50302ac6454SAndrew Thompson 		goto detach;
50402ac6454SAndrew Thompson 	}
505296ade60SAndrew Thompson 	err = usb2_req_get_hid_desc(uaa->device, NULL, &d_ptr,
50602ac6454SAndrew Thompson 	    &d_len, M_TEMP, uaa->info.bIfaceIndex);
50702ac6454SAndrew Thompson 
50802ac6454SAndrew Thompson 	if (err) {
50902ac6454SAndrew Thompson 		device_printf(dev, "error reading report description\n");
51002ac6454SAndrew Thompson 		goto detach;
51102ac6454SAndrew Thompson 	}
51202ac6454SAndrew Thompson 
513bf87f556SAndrew Thompson 	isize = hid_report_size(d_ptr, d_len, hid_input, &sc->sc_iid);
51402ac6454SAndrew Thompson 
51502ac6454SAndrew Thompson 	/*
51602ac6454SAndrew Thompson 	 * The Microsoft Wireless Notebook Optical Mouse seems to be in worse
51702ac6454SAndrew Thompson 	 * shape than the Wireless Intellimouse 2.0, as its X, Y, wheel, and
51802ac6454SAndrew Thompson 	 * all of its other button positions are all off. It also reports that
51902ac6454SAndrew Thompson 	 * it has two addional buttons and a tilt wheel.
52002ac6454SAndrew Thompson 	 */
52102ac6454SAndrew Thompson 	if (usb2_test_quirk(uaa, UQ_MS_BAD_CLASS)) {
522de967835SAndrew Thompson 		info = &sc->sc_info[0];
523de967835SAndrew Thompson 		info->sc_flags = (UMS_FLAG_X_AXIS |
52402ac6454SAndrew Thompson 		    UMS_FLAG_Y_AXIS |
52502ac6454SAndrew Thompson 		    UMS_FLAG_Z_AXIS |
52602ac6454SAndrew Thompson 		    UMS_FLAG_SBU);
527de967835SAndrew Thompson 		info->sc_buttons = 3;
52802ac6454SAndrew Thompson 		isize = 5;
52902ac6454SAndrew Thompson 		/* 1st byte of descriptor report contains garbage */
530de967835SAndrew Thompson 		info->sc_loc_x.pos = 16;
531de967835SAndrew Thompson 		info->sc_loc_y.pos = 24;
532de967835SAndrew Thompson 		info->sc_loc_z.pos = 32;
533de967835SAndrew Thompson 		info->sc_loc_btn[0].pos = 8;
534de967835SAndrew Thompson 		info->sc_loc_btn[1].pos = 9;
535de967835SAndrew Thompson 		info->sc_loc_btn[2].pos = 10;
5363e5e312aSAndrew Thompson 
537de967835SAndrew Thompson 		/* Announce device */
538de967835SAndrew Thompson 		device_printf(dev, "3 buttons and [XYZ] "
539de967835SAndrew Thompson 		    "coordinates ID=0\n");
540de967835SAndrew Thompson 
541de967835SAndrew Thompson 	} else {
542de967835SAndrew Thompson 		/* Search the HID descriptor and announce device */
543de967835SAndrew Thompson 		for (i = 0; i < UMS_INFO_MAX; i++) {
544de967835SAndrew Thompson 			ums_hid_parse(sc, dev, d_ptr, d_len, i);
545de967835SAndrew Thompson 		}
54602ac6454SAndrew Thompson 	}
5473e5e312aSAndrew Thompson 
54802ac6454SAndrew Thompson 	if (usb2_test_quirk(uaa, UQ_MS_REVZ)) {
549de967835SAndrew Thompson 		info = &sc->sc_info[0];
55002ac6454SAndrew Thompson 		/* Some wheels need the Z axis reversed. */
551de967835SAndrew Thompson 		info->sc_flags |= UMS_FLAG_REVZ;
55202ac6454SAndrew Thompson 	}
55302ac6454SAndrew Thompson 	if (isize > sc->sc_xfer[UMS_INTR_DT]->max_frame_size) {
55402ac6454SAndrew Thompson 		DPRINTF("WARNING: report size, %d bytes, is larger "
55502ac6454SAndrew Thompson 		    "than interrupt size, %d bytes!\n",
55602ac6454SAndrew Thompson 		    isize, sc->sc_xfer[UMS_INTR_DT]->max_frame_size);
55702ac6454SAndrew Thompson 	}
55802ac6454SAndrew Thompson 	free(d_ptr, M_TEMP);
55902ac6454SAndrew Thompson 	d_ptr = NULL;
56002ac6454SAndrew Thompson 
56102ac6454SAndrew Thompson #if USB_DEBUG
562de967835SAndrew Thompson 	for (j = 0; j < UMS_INFO_MAX; j++) {
563de967835SAndrew Thompson 		info = &sc->sc_info[j];
56402ac6454SAndrew Thompson 
565de967835SAndrew Thompson 		DPRINTF("sc=%p, index=%d\n", sc, j);
566de967835SAndrew Thompson 		DPRINTF("X\t%d/%d id=%d\n", info->sc_loc_x.pos,
567de967835SAndrew Thompson 		    info->sc_loc_x.size, info->sc_iid_x);
568de967835SAndrew Thompson 		DPRINTF("Y\t%d/%d id=%d\n", info->sc_loc_y.pos,
569de967835SAndrew Thompson 		    info->sc_loc_y.size, info->sc_iid_y);
570de967835SAndrew Thompson 		DPRINTF("Z\t%d/%d id=%d\n", info->sc_loc_z.pos,
571de967835SAndrew Thompson 		    info->sc_loc_z.size, info->sc_iid_z);
572de967835SAndrew Thompson 		DPRINTF("T\t%d/%d id=%d\n", info->sc_loc_t.pos,
573de967835SAndrew Thompson 		    info->sc_loc_t.size, info->sc_iid_t);
574de967835SAndrew Thompson 		DPRINTF("W\t%d/%d id=%d\n", info->sc_loc_w.pos,
575de967835SAndrew Thompson 		    info->sc_loc_w.size, info->sc_iid_w);
576de967835SAndrew Thompson 
577de967835SAndrew Thompson 		for (i = 0; i < info->sc_buttons; i++) {
578bf87f556SAndrew Thompson 			DPRINTF("B%d\t%d/%d id=%d\n",
579de967835SAndrew Thompson 			    i + 1, info->sc_loc_btn[i].pos,
580de967835SAndrew Thompson 			    info->sc_loc_btn[i].size, info->sc_iid_btn[i]);
581de967835SAndrew Thompson 		}
58202ac6454SAndrew Thompson 	}
58302ac6454SAndrew Thompson 	DPRINTF("size=%d, id=%d\n", isize, sc->sc_iid);
58402ac6454SAndrew Thompson #endif
58502ac6454SAndrew Thompson 
58602ac6454SAndrew Thompson 	if (sc->sc_buttons > MOUSE_MSC_MAXBUTTON)
58702ac6454SAndrew Thompson 		sc->sc_hw.buttons = MOUSE_MSC_MAXBUTTON;
58802ac6454SAndrew Thompson 	else
58902ac6454SAndrew Thompson 		sc->sc_hw.buttons = sc->sc_buttons;
59002ac6454SAndrew Thompson 
59102ac6454SAndrew Thompson 	sc->sc_hw.iftype = MOUSE_IF_USB;
59202ac6454SAndrew Thompson 	sc->sc_hw.type = MOUSE_MOUSE;
59302ac6454SAndrew Thompson 	sc->sc_hw.model = MOUSE_MODEL_GENERIC;
59402ac6454SAndrew Thompson 	sc->sc_hw.hwid = 0;
59502ac6454SAndrew Thompson 
59602ac6454SAndrew Thompson 	sc->sc_mode.protocol = MOUSE_PROTO_MSC;
59702ac6454SAndrew Thompson 	sc->sc_mode.rate = -1;
59802ac6454SAndrew Thompson 	sc->sc_mode.resolution = MOUSE_RES_UNKNOWN;
59902ac6454SAndrew Thompson 	sc->sc_mode.accelfactor = 0;
60002ac6454SAndrew Thompson 	sc->sc_mode.level = 0;
60102ac6454SAndrew Thompson 	sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE;
60202ac6454SAndrew Thompson 	sc->sc_mode.syncmask[0] = MOUSE_MSC_SYNCMASK;
60302ac6454SAndrew Thompson 	sc->sc_mode.syncmask[1] = MOUSE_MSC_SYNC;
60402ac6454SAndrew Thompson 
60502ac6454SAndrew Thompson 	err = usb2_fifo_attach(uaa->device, sc, &sc->sc_mtx,
60602ac6454SAndrew Thompson 	    &ums_fifo_methods, &sc->sc_fifo,
607de967835SAndrew Thompson 	    device_get_unit(dev), 0 - 1, uaa->info.bIfaceIndex,
608ee3e3ff5SAndrew Thompson   	    UID_ROOT, GID_OPERATOR, 0644);
60902ac6454SAndrew Thompson 	if (err) {
61002ac6454SAndrew Thompson 		goto detach;
61102ac6454SAndrew Thompson 	}
61202ac6454SAndrew Thompson 	return (0);
61302ac6454SAndrew Thompson 
61402ac6454SAndrew Thompson detach:
61502ac6454SAndrew Thompson 	if (d_ptr) {
61602ac6454SAndrew Thompson 		free(d_ptr, M_TEMP);
61702ac6454SAndrew Thompson 	}
61802ac6454SAndrew Thompson 	ums_detach(dev);
61902ac6454SAndrew Thompson 	return (ENOMEM);
62002ac6454SAndrew Thompson }
62102ac6454SAndrew Thompson 
62202ac6454SAndrew Thompson static int
62302ac6454SAndrew Thompson ums_detach(device_t self)
62402ac6454SAndrew Thompson {
62502ac6454SAndrew Thompson 	struct ums_softc *sc = device_get_softc(self);
62602ac6454SAndrew Thompson 
62702ac6454SAndrew Thompson 	DPRINTF("sc=%p\n", sc);
62802ac6454SAndrew Thompson 
62902ac6454SAndrew Thompson 	usb2_fifo_detach(&sc->sc_fifo);
63002ac6454SAndrew Thompson 
63102ac6454SAndrew Thompson 	usb2_transfer_unsetup(sc->sc_xfer, UMS_N_TRANSFER);
63202ac6454SAndrew Thompson 
63302ac6454SAndrew Thompson 	usb2_callout_drain(&sc->sc_callout);
63402ac6454SAndrew Thompson 
63502ac6454SAndrew Thompson 	mtx_destroy(&sc->sc_mtx);
63602ac6454SAndrew Thompson 
63702ac6454SAndrew Thompson 	return (0);
63802ac6454SAndrew Thompson }
63902ac6454SAndrew Thompson 
64002ac6454SAndrew Thompson static void
641760bc48eSAndrew Thompson ums_start_read(struct usb_fifo *fifo)
64202ac6454SAndrew Thompson {
64302ac6454SAndrew Thompson 	struct ums_softc *sc = fifo->priv_sc0;
64402ac6454SAndrew Thompson 
64502ac6454SAndrew Thompson 	usb2_transfer_start(sc->sc_xfer[UMS_INTR_DT]);
64602ac6454SAndrew Thompson }
64702ac6454SAndrew Thompson 
64802ac6454SAndrew Thompson static void
649760bc48eSAndrew Thompson ums_stop_read(struct usb_fifo *fifo)
65002ac6454SAndrew Thompson {
65102ac6454SAndrew Thompson 	struct ums_softc *sc = fifo->priv_sc0;
65202ac6454SAndrew Thompson 
65302ac6454SAndrew Thompson 	usb2_transfer_stop(sc->sc_xfer[UMS_INTR_DT]);
65402ac6454SAndrew Thompson 	usb2_callout_stop(&sc->sc_callout);
65502ac6454SAndrew Thompson }
65602ac6454SAndrew Thompson 
65702ac6454SAndrew Thompson 
65802ac6454SAndrew Thompson #if ((MOUSE_SYS_PACKETSIZE != 8) || \
65902ac6454SAndrew Thompson      (MOUSE_MSC_PACKETSIZE != 5))
66002ac6454SAndrew Thompson #error "Software assumptions are not met. Please update code."
66102ac6454SAndrew Thompson #endif
66202ac6454SAndrew Thompson 
66302ac6454SAndrew Thompson static void
66402ac6454SAndrew Thompson ums_put_queue(struct ums_softc *sc, int32_t dx, int32_t dy,
66502ac6454SAndrew Thompson     int32_t dz, int32_t dt, int32_t buttons)
66602ac6454SAndrew Thompson {
66702ac6454SAndrew Thompson 	uint8_t buf[8];
66802ac6454SAndrew Thompson 
66902ac6454SAndrew Thompson 	if (1) {
67002ac6454SAndrew Thompson 
67102ac6454SAndrew Thompson 		if (dx > 254)
67202ac6454SAndrew Thompson 			dx = 254;
67302ac6454SAndrew Thompson 		if (dx < -256)
67402ac6454SAndrew Thompson 			dx = -256;
67502ac6454SAndrew Thompson 		if (dy > 254)
67602ac6454SAndrew Thompson 			dy = 254;
67702ac6454SAndrew Thompson 		if (dy < -256)
67802ac6454SAndrew Thompson 			dy = -256;
67902ac6454SAndrew Thompson 		if (dz > 126)
68002ac6454SAndrew Thompson 			dz = 126;
68102ac6454SAndrew Thompson 		if (dz < -128)
68202ac6454SAndrew Thompson 			dz = -128;
68302ac6454SAndrew Thompson 		if (dt > 126)
68402ac6454SAndrew Thompson 			dt = 126;
68502ac6454SAndrew Thompson 		if (dt < -128)
68602ac6454SAndrew Thompson 			dt = -128;
68702ac6454SAndrew Thompson 
68802ac6454SAndrew Thompson 		buf[0] = sc->sc_mode.syncmask[1];
68902ac6454SAndrew Thompson 		buf[0] |= (~buttons) & MOUSE_MSC_BUTTONS;
69002ac6454SAndrew Thompson 		buf[1] = dx >> 1;
69102ac6454SAndrew Thompson 		buf[2] = dy >> 1;
69202ac6454SAndrew Thompson 		buf[3] = dx - (dx >> 1);
69302ac6454SAndrew Thompson 		buf[4] = dy - (dy >> 1);
69402ac6454SAndrew Thompson 
69502ac6454SAndrew Thompson 		if (sc->sc_mode.level == 1) {
69602ac6454SAndrew Thompson 			buf[5] = dz >> 1;
69702ac6454SAndrew Thompson 			buf[6] = dz - (dz >> 1);
69802ac6454SAndrew Thompson 			buf[7] = (((~buttons) >> 3) & MOUSE_SYS_EXTBUTTONS);
69902ac6454SAndrew Thompson 		}
70002ac6454SAndrew Thompson 		usb2_fifo_put_data_linear(sc->sc_fifo.fp[USB_FIFO_RX], buf,
70102ac6454SAndrew Thompson 		    sc->sc_mode.packetsize, 1);
70202ac6454SAndrew Thompson 
70302ac6454SAndrew Thompson 	} else {
70402ac6454SAndrew Thompson 		DPRINTF("Buffer full, discarded packet\n");
70502ac6454SAndrew Thompson 	}
70602ac6454SAndrew Thompson }
70702ac6454SAndrew Thompson 
70802ac6454SAndrew Thompson static void
70902ac6454SAndrew Thompson ums_reset_buf(struct ums_softc *sc)
71002ac6454SAndrew Thompson {
71102ac6454SAndrew Thompson 	/* reset read queue */
71202ac6454SAndrew Thompson 	usb2_fifo_reset(sc->sc_fifo.fp[USB_FIFO_RX]);
71302ac6454SAndrew Thompson }
71402ac6454SAndrew Thompson 
71502ac6454SAndrew Thompson static int
716760bc48eSAndrew Thompson ums_open(struct usb_fifo *fifo, int fflags)
71702ac6454SAndrew Thompson {
71802ac6454SAndrew Thompson 	struct ums_softc *sc = fifo->priv_sc0;
71902ac6454SAndrew Thompson 
72002ac6454SAndrew Thompson 	DPRINTFN(2, "\n");
72102ac6454SAndrew Thompson 
72202ac6454SAndrew Thompson 	if (fflags & FREAD) {
72302ac6454SAndrew Thompson 
72402ac6454SAndrew Thompson 		/* reset status */
72502ac6454SAndrew Thompson 
72602ac6454SAndrew Thompson 		sc->sc_status.flags = 0;
72702ac6454SAndrew Thompson 		sc->sc_status.button = 0;
72802ac6454SAndrew Thompson 		sc->sc_status.obutton = 0;
72902ac6454SAndrew Thompson 		sc->sc_status.dx = 0;
73002ac6454SAndrew Thompson 		sc->sc_status.dy = 0;
73102ac6454SAndrew Thompson 		sc->sc_status.dz = 0;
73202ac6454SAndrew Thompson 		/* sc->sc_status.dt = 0; */
73302ac6454SAndrew Thompson 
73402ac6454SAndrew Thompson 		if (usb2_fifo_alloc_buffer(fifo,
73502ac6454SAndrew Thompson 		    UMS_BUF_SIZE, UMS_IFQ_MAXLEN)) {
73602ac6454SAndrew Thompson 			return (ENOMEM);
73702ac6454SAndrew Thompson 		}
73802ac6454SAndrew Thompson 	}
73902ac6454SAndrew Thompson 	return (0);
74002ac6454SAndrew Thompson }
74102ac6454SAndrew Thompson 
74202ac6454SAndrew Thompson static void
743760bc48eSAndrew Thompson ums_close(struct usb_fifo *fifo, int fflags)
74402ac6454SAndrew Thompson {
74502ac6454SAndrew Thompson 	if (fflags & FREAD) {
74602ac6454SAndrew Thompson 		usb2_fifo_free_buffer(fifo);
74702ac6454SAndrew Thompson 	}
74802ac6454SAndrew Thompson }
74902ac6454SAndrew Thompson 
75002ac6454SAndrew Thompson static int
751760bc48eSAndrew Thompson ums_ioctl(struct usb_fifo *fifo, u_long cmd, void *addr, int fflags)
75202ac6454SAndrew Thompson {
75302ac6454SAndrew Thompson 	struct ums_softc *sc = fifo->priv_sc0;
75402ac6454SAndrew Thompson 	mousemode_t mode;
75502ac6454SAndrew Thompson 	int error = 0;
75602ac6454SAndrew Thompson 
75702ac6454SAndrew Thompson 	DPRINTFN(2, "\n");
75802ac6454SAndrew Thompson 
75902ac6454SAndrew Thompson 	mtx_lock(&sc->sc_mtx);
76002ac6454SAndrew Thompson 
76102ac6454SAndrew Thompson 	switch (cmd) {
76202ac6454SAndrew Thompson 	case MOUSE_GETHWINFO:
76302ac6454SAndrew Thompson 		*(mousehw_t *)addr = sc->sc_hw;
76402ac6454SAndrew Thompson 		break;
76502ac6454SAndrew Thompson 
76602ac6454SAndrew Thompson 	case MOUSE_GETMODE:
76702ac6454SAndrew Thompson 		*(mousemode_t *)addr = sc->sc_mode;
76802ac6454SAndrew Thompson 		break;
76902ac6454SAndrew Thompson 
77002ac6454SAndrew Thompson 	case MOUSE_SETMODE:
77102ac6454SAndrew Thompson 		mode = *(mousemode_t *)addr;
77202ac6454SAndrew Thompson 
77302ac6454SAndrew Thompson 		if (mode.level == -1) {
77402ac6454SAndrew Thompson 			/* don't change the current setting */
77502ac6454SAndrew Thompson 		} else if ((mode.level < 0) || (mode.level > 1)) {
77602ac6454SAndrew Thompson 			error = EINVAL;
77702ac6454SAndrew Thompson 			goto done;
77802ac6454SAndrew Thompson 		} else {
77902ac6454SAndrew Thompson 			sc->sc_mode.level = mode.level;
78002ac6454SAndrew Thompson 		}
78102ac6454SAndrew Thompson 
78202ac6454SAndrew Thompson 		if (sc->sc_mode.level == 0) {
78302ac6454SAndrew Thompson 			if (sc->sc_buttons > MOUSE_MSC_MAXBUTTON)
78402ac6454SAndrew Thompson 				sc->sc_hw.buttons = MOUSE_MSC_MAXBUTTON;
78502ac6454SAndrew Thompson 			else
78602ac6454SAndrew Thompson 				sc->sc_hw.buttons = sc->sc_buttons;
78702ac6454SAndrew Thompson 			sc->sc_mode.protocol = MOUSE_PROTO_MSC;
78802ac6454SAndrew Thompson 			sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE;
78902ac6454SAndrew Thompson 			sc->sc_mode.syncmask[0] = MOUSE_MSC_SYNCMASK;
79002ac6454SAndrew Thompson 			sc->sc_mode.syncmask[1] = MOUSE_MSC_SYNC;
79102ac6454SAndrew Thompson 		} else if (sc->sc_mode.level == 1) {
79202ac6454SAndrew Thompson 			if (sc->sc_buttons > MOUSE_SYS_MAXBUTTON)
79302ac6454SAndrew Thompson 				sc->sc_hw.buttons = MOUSE_SYS_MAXBUTTON;
79402ac6454SAndrew Thompson 			else
79502ac6454SAndrew Thompson 				sc->sc_hw.buttons = sc->sc_buttons;
79602ac6454SAndrew Thompson 			sc->sc_mode.protocol = MOUSE_PROTO_SYSMOUSE;
79702ac6454SAndrew Thompson 			sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE;
79802ac6454SAndrew Thompson 			sc->sc_mode.syncmask[0] = MOUSE_SYS_SYNCMASK;
79902ac6454SAndrew Thompson 			sc->sc_mode.syncmask[1] = MOUSE_SYS_SYNC;
80002ac6454SAndrew Thompson 		}
80102ac6454SAndrew Thompson 		ums_reset_buf(sc);
80202ac6454SAndrew Thompson 		break;
80302ac6454SAndrew Thompson 
80402ac6454SAndrew Thompson 	case MOUSE_GETLEVEL:
80502ac6454SAndrew Thompson 		*(int *)addr = sc->sc_mode.level;
80602ac6454SAndrew Thompson 		break;
80702ac6454SAndrew Thompson 
80802ac6454SAndrew Thompson 	case MOUSE_SETLEVEL:
80902ac6454SAndrew Thompson 		if (*(int *)addr < 0 || *(int *)addr > 1) {
81002ac6454SAndrew Thompson 			error = EINVAL;
81102ac6454SAndrew Thompson 			goto done;
81202ac6454SAndrew Thompson 		}
81302ac6454SAndrew Thompson 		sc->sc_mode.level = *(int *)addr;
81402ac6454SAndrew Thompson 
81502ac6454SAndrew Thompson 		if (sc->sc_mode.level == 0) {
81602ac6454SAndrew Thompson 			if (sc->sc_buttons > MOUSE_MSC_MAXBUTTON)
81702ac6454SAndrew Thompson 				sc->sc_hw.buttons = MOUSE_MSC_MAXBUTTON;
81802ac6454SAndrew Thompson 			else
81902ac6454SAndrew Thompson 				sc->sc_hw.buttons = sc->sc_buttons;
82002ac6454SAndrew Thompson 			sc->sc_mode.protocol = MOUSE_PROTO_MSC;
82102ac6454SAndrew Thompson 			sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE;
82202ac6454SAndrew Thompson 			sc->sc_mode.syncmask[0] = MOUSE_MSC_SYNCMASK;
82302ac6454SAndrew Thompson 			sc->sc_mode.syncmask[1] = MOUSE_MSC_SYNC;
82402ac6454SAndrew Thompson 		} else if (sc->sc_mode.level == 1) {
82502ac6454SAndrew Thompson 			if (sc->sc_buttons > MOUSE_SYS_MAXBUTTON)
82602ac6454SAndrew Thompson 				sc->sc_hw.buttons = MOUSE_SYS_MAXBUTTON;
82702ac6454SAndrew Thompson 			else
82802ac6454SAndrew Thompson 				sc->sc_hw.buttons = sc->sc_buttons;
82902ac6454SAndrew Thompson 			sc->sc_mode.protocol = MOUSE_PROTO_SYSMOUSE;
83002ac6454SAndrew Thompson 			sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE;
83102ac6454SAndrew Thompson 			sc->sc_mode.syncmask[0] = MOUSE_SYS_SYNCMASK;
83202ac6454SAndrew Thompson 			sc->sc_mode.syncmask[1] = MOUSE_SYS_SYNC;
83302ac6454SAndrew Thompson 		}
83402ac6454SAndrew Thompson 		ums_reset_buf(sc);
83502ac6454SAndrew Thompson 		break;
83602ac6454SAndrew Thompson 
83702ac6454SAndrew Thompson 	case MOUSE_GETSTATUS:{
83802ac6454SAndrew Thompson 			mousestatus_t *status = (mousestatus_t *)addr;
83902ac6454SAndrew Thompson 
84002ac6454SAndrew Thompson 			*status = sc->sc_status;
84102ac6454SAndrew Thompson 			sc->sc_status.obutton = sc->sc_status.button;
84202ac6454SAndrew Thompson 			sc->sc_status.button = 0;
84302ac6454SAndrew Thompson 			sc->sc_status.dx = 0;
84402ac6454SAndrew Thompson 			sc->sc_status.dy = 0;
84502ac6454SAndrew Thompson 			sc->sc_status.dz = 0;
84602ac6454SAndrew Thompson 			/* sc->sc_status.dt = 0; */
84702ac6454SAndrew Thompson 
84802ac6454SAndrew Thompson 			if (status->dx || status->dy || status->dz /* || status->dt */ ) {
84902ac6454SAndrew Thompson 				status->flags |= MOUSE_POSCHANGED;
85002ac6454SAndrew Thompson 			}
85102ac6454SAndrew Thompson 			if (status->button != status->obutton) {
85202ac6454SAndrew Thompson 				status->flags |= MOUSE_BUTTONSCHANGED;
85302ac6454SAndrew Thompson 			}
85402ac6454SAndrew Thompson 			break;
85502ac6454SAndrew Thompson 		}
85602ac6454SAndrew Thompson 	default:
85702ac6454SAndrew Thompson 		error = ENOTTY;
85802ac6454SAndrew Thompson 	}
85902ac6454SAndrew Thompson 
86002ac6454SAndrew Thompson done:
86102ac6454SAndrew Thompson 	mtx_unlock(&sc->sc_mtx);
86202ac6454SAndrew Thompson 	return (error);
86302ac6454SAndrew Thompson }
86402ac6454SAndrew Thompson 
86502ac6454SAndrew Thompson static devclass_t ums_devclass;
86602ac6454SAndrew Thompson 
86702ac6454SAndrew Thompson static device_method_t ums_methods[] = {
86802ac6454SAndrew Thompson 	DEVMETHOD(device_probe, ums_probe),
86902ac6454SAndrew Thompson 	DEVMETHOD(device_attach, ums_attach),
87002ac6454SAndrew Thompson 	DEVMETHOD(device_detach, ums_detach),
87102ac6454SAndrew Thompson 	{0, 0}
87202ac6454SAndrew Thompson };
87302ac6454SAndrew Thompson 
87402ac6454SAndrew Thompson static driver_t ums_driver = {
87502ac6454SAndrew Thompson 	.name = "ums",
87602ac6454SAndrew Thompson 	.methods = ums_methods,
87702ac6454SAndrew Thompson 	.size = sizeof(struct ums_softc),
87802ac6454SAndrew Thompson };
87902ac6454SAndrew Thompson 
8809aef556dSAndrew Thompson DRIVER_MODULE(ums, uhub, ums_driver, ums_devclass, NULL, 0);
88102ac6454SAndrew Thompson MODULE_DEPEND(ums, usb, 1, 1, 1);
882