Home | History | Annotate | Line # | Download | only in usb
usbdi.c revision 1.194
      1 /*	$NetBSD: usbdi.c,v 1.194 2020/02/17 08:16:44 riastradh Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1998, 2012, 2015 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Lennart Augustsson (lennart (at) augustsson.net) at
      9  * Carlstedt Research & Technology, Matthew R. Green (mrg (at) eterna.com.au),
     10  * and Nick Hudson.
     11  *
     12  * Redistribution and use in source and binary forms, with or without
     13  * modification, are permitted provided that the following conditions
     14  * are met:
     15  * 1. Redistributions of source code must retain the above copyright
     16  *    notice, this list of conditions and the following disclaimer.
     17  * 2. Redistributions in binary form must reproduce the above copyright
     18  *    notice, this list of conditions and the following disclaimer in the
     19  *    documentation and/or other materials provided with the distribution.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     25  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31  * POSSIBILITY OF SUCH DAMAGE.
     32  */
     33 
     34 #include <sys/cdefs.h>
     35 __KERNEL_RCSID(0, "$NetBSD: usbdi.c,v 1.194 2020/02/17 08:16:44 riastradh Exp $");
     36 
     37 #ifdef _KERNEL_OPT
     38 #include "opt_usb.h"
     39 #include "opt_compat_netbsd.h"
     40 #include "usb_dma.h"
     41 #endif
     42 
     43 #include <sys/param.h>
     44 #include <sys/systm.h>
     45 #include <sys/kernel.h>
     46 #include <sys/device.h>
     47 #include <sys/kmem.h>
     48 #include <sys/proc.h>
     49 #include <sys/bus.h>
     50 #include <sys/cpu.h>
     51 
     52 #include <dev/usb/usb.h>
     53 #include <dev/usb/usbdi.h>
     54 #include <dev/usb/usbdi_util.h>
     55 #include <dev/usb/usbdivar.h>
     56 #include <dev/usb/usb_mem.h>
     57 #include <dev/usb/usb_quirks.h>
     58 #include <dev/usb/usbhist.h>
     59 
     60 /* UTF-8 encoding stuff */
     61 #include <fs/unicode.h>
     62 
     63 extern int usbdebug;
     64 
     65 Static usbd_status usbd_ar_pipe(struct usbd_pipe *);
     66 Static void usbd_start_next(struct usbd_pipe *);
     67 Static usbd_status usbd_open_pipe_ival
     68 	(struct usbd_interface *, uint8_t, uint8_t, struct usbd_pipe **, int);
     69 static void *usbd_alloc_buffer(struct usbd_xfer *, uint32_t);
     70 static void usbd_free_buffer(struct usbd_xfer *);
     71 static struct usbd_xfer *usbd_alloc_xfer(struct usbd_device *, unsigned int);
     72 static usbd_status usbd_free_xfer(struct usbd_xfer *);
     73 static void usbd_request_async_cb(struct usbd_xfer *, void *, usbd_status);
     74 static void usbd_xfer_timeout(void *);
     75 static void usbd_xfer_timeout_task(void *);
     76 static bool usbd_xfer_probe_timeout(struct usbd_xfer *);
     77 static void usbd_xfer_cancel_timeout_async(struct usbd_xfer *);
     78 
     79 #if defined(USB_DEBUG)
     80 void
     81 usbd_dump_iface(struct usbd_interface *iface)
     82 {
     83 	USBHIST_FUNC();
     84 	USBHIST_CALLARGS(usbdebug, "iface %#jx", (uintptr_t)iface, 0, 0, 0);
     85 
     86 	if (iface == NULL)
     87 		return;
     88 	USBHIST_LOG(usbdebug, "     device = %#jx idesc = %#jx index = %d",
     89 	    (uintptr_t)iface->ui_dev, (uintptr_t)iface->ui_idesc,
     90 	    iface->ui_index, 0);
     91 	USBHIST_LOG(usbdebug, "     altindex=%d priv=%#jx",
     92 	    iface->ui_altindex, (uintptr_t)iface->ui_priv, 0, 0);
     93 }
     94 
     95 void
     96 usbd_dump_device(struct usbd_device *dev)
     97 {
     98 	USBHIST_FUNC();
     99 	USBHIST_CALLARGS(usbdebug, "dev = %#jx", (uintptr_t)dev, 0, 0, 0);
    100 
    101 	if (dev == NULL)
    102 		return;
    103 	USBHIST_LOG(usbdebug, "     bus = %#jx default_pipe = %#jx",
    104 	    (uintptr_t)dev->ud_bus, (uintptr_t)dev->ud_pipe0, 0, 0);
    105 	USBHIST_LOG(usbdebug, "     address = %jd config = %jd depth = %jd ",
    106 	    dev->ud_addr, dev->ud_config, dev->ud_depth, 0);
    107 	USBHIST_LOG(usbdebug, "     speed = %jd self_powered = %jd "
    108 	    "power = %jd langid = %jd",
    109 	    dev->ud_speed, dev->ud_selfpowered, dev->ud_power, dev->ud_langid);
    110 }
    111 
    112 void
    113 usbd_dump_endpoint(struct usbd_endpoint *endp)
    114 {
    115 	USBHIST_FUNC();
    116 	USBHIST_CALLARGS(usbdebug, "endp = %#jx", (uintptr_t)endp, 0, 0, 0);
    117 
    118 	if (endp == NULL)
    119 		return;
    120 	USBHIST_LOG(usbdebug, "    edesc = %#jx refcnt = %jd",
    121 	    (uintptr_t)endp->ue_edesc, endp->ue_refcnt, 0, 0);
    122 	if (endp->ue_edesc)
    123 		USBHIST_LOG(usbdebug, "     bEndpointAddress=0x%02x",
    124 		    endp->ue_edesc->bEndpointAddress, 0, 0, 0);
    125 }
    126 
    127 void
    128 usbd_dump_queue(struct usbd_pipe *pipe)
    129 {
    130 	struct usbd_xfer *xfer;
    131 
    132 	USBHIST_FUNC();
    133 	USBHIST_CALLARGS(usbdebug, "pipe = %#jx", (uintptr_t)pipe, 0, 0, 0);
    134 
    135 	SIMPLEQ_FOREACH(xfer, &pipe->up_queue, ux_next) {
    136 		USBHIST_LOG(usbdebug, "     xfer = %#jx", (uintptr_t)xfer,
    137 		    0, 0, 0);
    138 	}
    139 }
    140 
    141 void
    142 usbd_dump_pipe(struct usbd_pipe *pipe)
    143 {
    144 	USBHIST_FUNC();
    145 	USBHIST_CALLARGS(usbdebug, "pipe = %#jx", (uintptr_t)pipe, 0, 0, 0);
    146 
    147 	if (pipe == NULL)
    148 		return;
    149 	usbd_dump_iface(pipe->up_iface);
    150 	usbd_dump_device(pipe->up_dev);
    151 	usbd_dump_endpoint(pipe->up_endpoint);
    152 	USBHIST_LOG(usbdebug, "(usbd_dump_pipe)", 0, 0, 0, 0);
    153 	USBHIST_LOG(usbdebug, "     running = %jd aborting = %jd",
    154 	    pipe->up_running, pipe->up_aborting, 0, 0);
    155 	USBHIST_LOG(usbdebug, "     intrxfer = %#jx, repeat = %jd, "
    156 	    "interval = %jd", (uintptr_t)pipe->up_intrxfer, pipe->up_repeat,
    157 	    pipe->up_interval, 0);
    158 }
    159 #endif
    160 
    161 usbd_status
    162 usbd_open_pipe(struct usbd_interface *iface, uint8_t address,
    163 	       uint8_t flags, struct usbd_pipe **pipe)
    164 {
    165 	return (usbd_open_pipe_ival(iface, address, flags, pipe,
    166 				    USBD_DEFAULT_INTERVAL));
    167 }
    168 
    169 usbd_status
    170 usbd_open_pipe_ival(struct usbd_interface *iface, uint8_t address,
    171 		    uint8_t flags, struct usbd_pipe **pipe, int ival)
    172 {
    173 	struct usbd_pipe *p;
    174 	struct usbd_endpoint *ep;
    175 	usbd_status err;
    176 	int i;
    177 
    178 	USBHIST_FUNC();
    179 	USBHIST_CALLARGS(usbdebug, "iface = %#jx address = 0x%jx flags = 0x%jx",
    180 	    (uintptr_t)iface, address, flags, 0);
    181 
    182 	for (i = 0; i < iface->ui_idesc->bNumEndpoints; i++) {
    183 		ep = &iface->ui_endpoints[i];
    184 		if (ep->ue_edesc == NULL)
    185 			return USBD_IOERROR;
    186 		if (ep->ue_edesc->bEndpointAddress == address)
    187 			goto found;
    188 	}
    189 	return USBD_BAD_ADDRESS;
    190  found:
    191 	if ((flags & USBD_EXCLUSIVE_USE) && ep->ue_refcnt != 0)
    192 		return USBD_IN_USE;
    193 	err = usbd_setup_pipe_flags(iface->ui_dev, iface, ep, ival, &p, flags);
    194 	if (err)
    195 		return err;
    196 	LIST_INSERT_HEAD(&iface->ui_pipes, p, up_next);
    197 	*pipe = p;
    198 	return USBD_NORMAL_COMPLETION;
    199 }
    200 
    201 usbd_status
    202 usbd_open_pipe_intr(struct usbd_interface *iface, uint8_t address,
    203 		    uint8_t flags, struct usbd_pipe **pipe,
    204 		    void *priv, void *buffer, uint32_t len,
    205 		    usbd_callback cb, int ival)
    206 {
    207 	usbd_status err;
    208 	struct usbd_xfer *xfer;
    209 	struct usbd_pipe *ipipe;
    210 
    211 	USBHIST_FUNC();
    212 	USBHIST_CALLARGS(usbdebug, "address = 0x%jx flags = 0x%jx len = %jd",
    213 	    address, flags, len, 0);
    214 
    215 	err = usbd_open_pipe_ival(iface, address,
    216 				  USBD_EXCLUSIVE_USE | (flags & USBD_MPSAFE),
    217 				  &ipipe, ival);
    218 	if (err)
    219 		return err;
    220 	err = usbd_create_xfer(ipipe, len, flags, 0, &xfer);
    221 	if (err)
    222 		goto bad1;
    223 
    224 	usbd_setup_xfer(xfer, priv, buffer, len, flags, USBD_NO_TIMEOUT, cb);
    225 	ipipe->up_intrxfer = xfer;
    226 	ipipe->up_repeat = 1;
    227 	err = usbd_transfer(xfer);
    228 	*pipe = ipipe;
    229 	if (err != USBD_IN_PROGRESS)
    230 		goto bad3;
    231 	return USBD_NORMAL_COMPLETION;
    232 
    233  bad3:
    234 	ipipe->up_intrxfer = NULL;
    235 	ipipe->up_repeat = 0;
    236 
    237 	usbd_destroy_xfer(xfer);
    238  bad1:
    239 	usbd_close_pipe(ipipe);
    240 	return err;
    241 }
    242 
    243 usbd_status
    244 usbd_close_pipe(struct usbd_pipe *pipe)
    245 {
    246 	USBHIST_FUNC(); USBHIST_CALLED(usbdebug);
    247 
    248 	KASSERT(pipe != NULL);
    249 
    250 	usbd_lock_pipe(pipe);
    251 
    252 	if (!SIMPLEQ_EMPTY(&pipe->up_queue)) {
    253 		printf("WARNING: pipe closed with active xfers on addr %d\n",
    254 		    pipe->up_dev->ud_addr);
    255 		usbd_ar_pipe(pipe);
    256 	}
    257 
    258 	KASSERT(SIMPLEQ_EMPTY(&pipe->up_queue));
    259 
    260 	LIST_REMOVE(pipe, up_next);
    261 	pipe->up_endpoint->ue_refcnt--;
    262 
    263 	pipe->up_methods->upm_close(pipe);
    264 
    265 	if (pipe->up_intrxfer != NULL) {
    266 	    	usbd_unlock_pipe(pipe);
    267 		usbd_destroy_xfer(pipe->up_intrxfer);
    268 		usbd_lock_pipe(pipe);
    269 	}
    270 
    271 	usbd_unlock_pipe(pipe);
    272 	kmem_free(pipe, pipe->up_dev->ud_bus->ub_pipesize);
    273 
    274 	return USBD_NORMAL_COMPLETION;
    275 }
    276 
    277 usbd_status
    278 usbd_transfer(struct usbd_xfer *xfer)
    279 {
    280 	struct usbd_pipe *pipe = xfer->ux_pipe;
    281 	usbd_status err;
    282 	unsigned int size, flags;
    283 
    284 	USBHIST_FUNC(); USBHIST_CALLARGS(usbdebug,
    285 	    "xfer = %#jx, flags = %#jx, pipe = %#jx, running = %jd",
    286 	    (uintptr_t)xfer, xfer->ux_flags, (uintptr_t)pipe, pipe->up_running);
    287 	KASSERT(xfer->ux_status == USBD_NOT_STARTED);
    288 
    289 #ifdef USB_DEBUG
    290 	if (usbdebug > 5)
    291 		usbd_dump_queue(pipe);
    292 #endif
    293 	xfer->ux_done = 0;
    294 
    295 	if (pipe->up_aborting) {
    296 		USBHIST_LOG(usbdebug, "<- done xfer %#jx, aborting",
    297 		    (uintptr_t)xfer, 0, 0, 0);
    298 		return USBD_CANCELLED;
    299 	}
    300 
    301 	KASSERT(xfer->ux_length == 0 || xfer->ux_buf != NULL);
    302 
    303 	size = xfer->ux_length;
    304 	flags = xfer->ux_flags;
    305 
    306 	if (size != 0) {
    307 		/*
    308 		 * Use the xfer buffer if none specified in transfer setup.
    309 		 * isoc transfers always use the xfer buffer, i.e.
    310 		 * ux_buffer is always NULL for isoc.
    311 		 */
    312 		if (xfer->ux_buffer == NULL) {
    313 			xfer->ux_buffer = xfer->ux_buf;
    314 		}
    315 
    316 		/*
    317 		 * If not using the xfer buffer copy data to the
    318 		 * xfer buffer for OUT transfers of >0 length
    319 		 */
    320 		if (xfer->ux_buffer != xfer->ux_buf) {
    321 			KASSERT(xfer->ux_buf);
    322 			if (!usbd_xfer_isread(xfer)) {
    323 				memcpy(xfer->ux_buf, xfer->ux_buffer, size);
    324 			}
    325 		}
    326 	}
    327 
    328 	/* xfer is not valid after the transfer method unless synchronous */
    329 	err = pipe->up_methods->upm_transfer(xfer);
    330 
    331 	if (err != USBD_IN_PROGRESS && err) {
    332 		/*
    333 		 * The transfer made it onto the pipe queue, but didn't get
    334 		 * accepted by the HCD for some reason.  It needs removing
    335 		 * from the pipe queue.
    336 		 */
    337 		USBHIST_LOG(usbdebug, "xfer failed: %s, reinserting",
    338 		    err, 0, 0, 0);
    339 		usbd_lock_pipe(pipe);
    340 		SIMPLEQ_REMOVE_HEAD(&pipe->up_queue, ux_next);
    341 		if (pipe->up_serialise)
    342 			usbd_start_next(pipe);
    343 		usbd_unlock_pipe(pipe);
    344 	}
    345 
    346 	if (!(flags & USBD_SYNCHRONOUS)) {
    347 		USBHIST_LOG(usbdebug, "<- done xfer %#jx, not sync (err %jd)",
    348 		    (uintptr_t)xfer, err, 0, 0);
    349 		return err;
    350 	}
    351 
    352 	if (err != USBD_IN_PROGRESS) {
    353 		USBHIST_LOG(usbdebug, "<- done xfer %#jx, sync (err %jd)",
    354 		    (uintptr_t)xfer, err, 0, 0);
    355 		return err;
    356 	}
    357 
    358 	/* Sync transfer, wait for completion. */
    359 	usbd_lock_pipe(pipe);
    360 	while (!xfer->ux_done) {
    361 		if (pipe->up_dev->ud_bus->ub_usepolling)
    362 			panic("usbd_transfer: not done");
    363 		USBHIST_LOG(usbdebug, "<- sleeping on xfer %#jx",
    364 		    (uintptr_t)xfer, 0, 0, 0);
    365 
    366 		err = 0;
    367 		if ((flags & USBD_SYNCHRONOUS_SIG) != 0) {
    368 			err = cv_wait_sig(&xfer->ux_cv, pipe->up_dev->ud_bus->ub_lock);
    369 		} else {
    370 			cv_wait(&xfer->ux_cv, pipe->up_dev->ud_bus->ub_lock);
    371 		}
    372 		if (err) {
    373 			if (!xfer->ux_done)
    374 				pipe->up_methods->upm_abort(xfer);
    375 			break;
    376 		}
    377 	}
    378 	usbd_unlock_pipe(pipe);
    379 	return xfer->ux_status;
    380 }
    381 
    382 /* Like usbd_transfer(), but waits for completion. */
    383 usbd_status
    384 usbd_sync_transfer(struct usbd_xfer *xfer)
    385 {
    386 	xfer->ux_flags |= USBD_SYNCHRONOUS;
    387 	return usbd_transfer(xfer);
    388 }
    389 
    390 /* Like usbd_transfer(), but waits for completion and listens for signals. */
    391 usbd_status
    392 usbd_sync_transfer_sig(struct usbd_xfer *xfer)
    393 {
    394 	xfer->ux_flags |= USBD_SYNCHRONOUS | USBD_SYNCHRONOUS_SIG;
    395 	return usbd_transfer(xfer);
    396 }
    397 
    398 static void *
    399 usbd_alloc_buffer(struct usbd_xfer *xfer, uint32_t size)
    400 {
    401 	KASSERT(xfer->ux_buf == NULL);
    402 	KASSERT(size != 0);
    403 
    404 	xfer->ux_bufsize = 0;
    405 #if NUSB_DMA > 0
    406 	struct usbd_bus *bus = xfer->ux_bus;
    407 
    408 	if (bus->ub_usedma) {
    409 		usb_dma_t *dmap = &xfer->ux_dmabuf;
    410 
    411 		int err = usb_allocmem_flags(bus, size, 0, dmap, bus->ub_dmaflags);
    412 		if (err) {
    413 			return NULL;
    414 		}
    415 		xfer->ux_buf = KERNADDR(&xfer->ux_dmabuf, 0);
    416 		xfer->ux_bufsize = size;
    417 
    418 		return xfer->ux_buf;
    419 	}
    420 #endif
    421 	KASSERT(xfer->ux_bus->ub_usedma == false);
    422 	xfer->ux_buf = kmem_alloc(size, KM_SLEEP);
    423 	xfer->ux_bufsize = size;
    424 	return xfer->ux_buf;
    425 }
    426 
    427 static void
    428 usbd_free_buffer(struct usbd_xfer *xfer)
    429 {
    430 	KASSERT(xfer->ux_buf != NULL);
    431 	KASSERT(xfer->ux_bufsize != 0);
    432 
    433 	void *buf = xfer->ux_buf;
    434 	uint32_t size = xfer->ux_bufsize;
    435 
    436 	xfer->ux_buf = NULL;
    437 	xfer->ux_bufsize = 0;
    438 
    439 #if NUSB_DMA > 0
    440 	struct usbd_bus *bus = xfer->ux_bus;
    441 
    442 	if (bus->ub_usedma) {
    443 		usb_dma_t *dmap = &xfer->ux_dmabuf;
    444 
    445 		usb_freemem(bus, dmap);
    446 		return;
    447 	}
    448 #endif
    449 	KASSERT(xfer->ux_bus->ub_usedma == false);
    450 
    451 	kmem_free(buf, size);
    452 }
    453 
    454 void *
    455 usbd_get_buffer(struct usbd_xfer *xfer)
    456 {
    457 	return xfer->ux_buf;
    458 }
    459 
    460 struct usbd_pipe *
    461 usbd_get_pipe0(struct usbd_device *dev)
    462 {
    463 
    464 	return dev->ud_pipe0;
    465 }
    466 
    467 static struct usbd_xfer *
    468 usbd_alloc_xfer(struct usbd_device *dev, unsigned int nframes)
    469 {
    470 	struct usbd_xfer *xfer;
    471 
    472 	USBHIST_FUNC();
    473 
    474 	ASSERT_SLEEPABLE();
    475 
    476 	xfer = dev->ud_bus->ub_methods->ubm_allocx(dev->ud_bus, nframes);
    477 	if (xfer == NULL)
    478 		goto out;
    479 	xfer->ux_bus = dev->ud_bus;
    480 	callout_init(&xfer->ux_callout, CALLOUT_MPSAFE);
    481 	callout_setfunc(&xfer->ux_callout, usbd_xfer_timeout, xfer);
    482 	cv_init(&xfer->ux_cv, "usbxfer");
    483 	usb_init_task(&xfer->ux_aborttask, usbd_xfer_timeout_task, xfer,
    484 	    USB_TASKQ_MPSAFE);
    485 
    486 out:
    487 	USBHIST_CALLARGS(usbdebug, "returns %#jx", (uintptr_t)xfer, 0, 0, 0);
    488 
    489 	return xfer;
    490 }
    491 
    492 static usbd_status
    493 usbd_free_xfer(struct usbd_xfer *xfer)
    494 {
    495 	USBHIST_FUNC();
    496 	USBHIST_CALLARGS(usbdebug, "%#jx", (uintptr_t)xfer, 0, 0, 0);
    497 
    498 	if (xfer->ux_buf) {
    499 		usbd_free_buffer(xfer);
    500 	}
    501 
    502 	/* Wait for any straggling timeout to complete. */
    503 	mutex_enter(xfer->ux_bus->ub_lock);
    504 	xfer->ux_timeout_reset = false; /* do not resuscitate */
    505 	callout_halt(&xfer->ux_callout, xfer->ux_bus->ub_lock);
    506 	usb_rem_task_wait(xfer->ux_pipe->up_dev, &xfer->ux_aborttask,
    507 	    USB_TASKQ_HC, xfer->ux_bus->ub_lock);
    508 	mutex_exit(xfer->ux_bus->ub_lock);
    509 
    510 	cv_destroy(&xfer->ux_cv);
    511 	xfer->ux_bus->ub_methods->ubm_freex(xfer->ux_bus, xfer);
    512 	return USBD_NORMAL_COMPLETION;
    513 }
    514 
    515 int
    516 usbd_create_xfer(struct usbd_pipe *pipe, size_t len, unsigned int flags,
    517     unsigned int nframes, struct usbd_xfer **xp)
    518 {
    519 	KASSERT(xp != NULL);
    520 	void *buf = NULL;
    521 
    522 	struct usbd_xfer *xfer = usbd_alloc_xfer(pipe->up_dev, nframes);
    523 	if (xfer == NULL)
    524 		return ENOMEM;
    525 
    526 	if (len) {
    527 		buf = usbd_alloc_buffer(xfer, len);
    528 		if (!buf) {
    529 			usbd_free_xfer(xfer);
    530 			return ENOMEM;
    531 		}
    532 	}
    533 	xfer->ux_pipe = pipe;
    534 	xfer->ux_flags = flags;
    535 	xfer->ux_nframes = nframes;
    536 	xfer->ux_methods = pipe->up_methods;
    537 
    538 	if (xfer->ux_methods->upm_init) {
    539 		int err = xfer->ux_methods->upm_init(xfer);
    540 		if (err) {
    541 			if (buf)
    542 				usbd_free_buffer(xfer);
    543 			usbd_free_xfer(xfer);
    544 			return err;
    545 		}
    546 	}
    547 
    548 	*xp = xfer;
    549 	return 0;
    550 }
    551 
    552 void
    553 usbd_destroy_xfer(struct usbd_xfer *xfer)
    554 {
    555 
    556 	if (xfer->ux_methods->upm_fini) {
    557 		xfer->ux_methods->upm_fini(xfer);
    558 	}
    559 
    560 	usbd_free_xfer(xfer);
    561 }
    562 
    563 void
    564 usbd_setup_xfer(struct usbd_xfer *xfer, void *priv, void *buffer,
    565     uint32_t length, uint16_t flags, uint32_t timeout, usbd_callback callback)
    566 {
    567 	KASSERT(xfer->ux_pipe);
    568 
    569 	xfer->ux_priv = priv;
    570 	xfer->ux_buffer = buffer;
    571 	xfer->ux_length = length;
    572 	xfer->ux_actlen = 0;
    573 	xfer->ux_flags = flags;
    574 	xfer->ux_timeout = timeout;
    575 	xfer->ux_status = USBD_NOT_STARTED;
    576 	xfer->ux_callback = callback;
    577 	xfer->ux_rqflags &= ~URQ_REQUEST;
    578 	xfer->ux_nframes = 0;
    579 }
    580 
    581 void
    582 usbd_setup_default_xfer(struct usbd_xfer *xfer, struct usbd_device *dev,
    583     void *priv, uint32_t timeout, usb_device_request_t *req, void *buffer,
    584     uint32_t length, uint16_t flags, usbd_callback callback)
    585 {
    586 	KASSERT(xfer->ux_pipe == dev->ud_pipe0);
    587 
    588 	xfer->ux_priv = priv;
    589 	xfer->ux_buffer = buffer;
    590 	xfer->ux_length = length;
    591 	xfer->ux_actlen = 0;
    592 	xfer->ux_flags = flags;
    593 	xfer->ux_timeout = timeout;
    594 	xfer->ux_status = USBD_NOT_STARTED;
    595 	xfer->ux_callback = callback;
    596 	xfer->ux_request = *req;
    597 	xfer->ux_rqflags |= URQ_REQUEST;
    598 	xfer->ux_nframes = 0;
    599 }
    600 
    601 void
    602 usbd_setup_isoc_xfer(struct usbd_xfer *xfer, void *priv, uint16_t *frlengths,
    603     uint32_t nframes, uint16_t flags, usbd_callback callback)
    604 {
    605 	xfer->ux_priv = priv;
    606 	xfer->ux_buffer = NULL;
    607 	xfer->ux_length = 0;
    608 	xfer->ux_actlen = 0;
    609 	xfer->ux_flags = flags;
    610 	xfer->ux_timeout = USBD_NO_TIMEOUT;
    611 	xfer->ux_status = USBD_NOT_STARTED;
    612 	xfer->ux_callback = callback;
    613 	xfer->ux_rqflags &= ~URQ_REQUEST;
    614 	xfer->ux_frlengths = frlengths;
    615 	xfer->ux_nframes = nframes;
    616 }
    617 
    618 void
    619 usbd_get_xfer_status(struct usbd_xfer *xfer, void **priv,
    620 		     void **buffer, uint32_t *count, usbd_status *status)
    621 {
    622 	if (priv != NULL)
    623 		*priv = xfer->ux_priv;
    624 	if (buffer != NULL)
    625 		*buffer = xfer->ux_buffer;
    626 	if (count != NULL)
    627 		*count = xfer->ux_actlen;
    628 	if (status != NULL)
    629 		*status = xfer->ux_status;
    630 }
    631 
    632 usb_config_descriptor_t *
    633 usbd_get_config_descriptor(struct usbd_device *dev)
    634 {
    635 	KASSERT(dev != NULL);
    636 
    637 	return dev->ud_cdesc;
    638 }
    639 
    640 usb_interface_descriptor_t *
    641 usbd_get_interface_descriptor(struct usbd_interface *iface)
    642 {
    643 	KASSERT(iface != NULL);
    644 
    645 	return iface->ui_idesc;
    646 }
    647 
    648 usb_device_descriptor_t *
    649 usbd_get_device_descriptor(struct usbd_device *dev)
    650 {
    651 	KASSERT(dev != NULL);
    652 
    653 	return &dev->ud_ddesc;
    654 }
    655 
    656 usb_endpoint_descriptor_t *
    657 usbd_interface2endpoint_descriptor(struct usbd_interface *iface, uint8_t index)
    658 {
    659 
    660 	if (index >= iface->ui_idesc->bNumEndpoints)
    661 		return NULL;
    662 	return iface->ui_endpoints[index].ue_edesc;
    663 }
    664 
    665 /* Some drivers may wish to abort requests on the default pipe, *
    666  * but there is no mechanism for getting a handle on it.        */
    667 usbd_status
    668 usbd_abort_default_pipe(struct usbd_device *device)
    669 {
    670 	return usbd_abort_pipe(device->ud_pipe0);
    671 }
    672 
    673 usbd_status
    674 usbd_abort_pipe(struct usbd_pipe *pipe)
    675 {
    676 	usbd_status err;
    677 
    678 	KASSERT(pipe != NULL);
    679 
    680 	usbd_lock_pipe(pipe);
    681 	err = usbd_ar_pipe(pipe);
    682 	usbd_unlock_pipe(pipe);
    683 	return err;
    684 }
    685 
    686 usbd_status
    687 usbd_clear_endpoint_stall(struct usbd_pipe *pipe)
    688 {
    689 	struct usbd_device *dev = pipe->up_dev;
    690 	usbd_status err;
    691 
    692 	USBHIST_FUNC(); USBHIST_CALLED(usbdebug);
    693 
    694 	/*
    695 	 * Clearing en endpoint stall resets the endpoint toggle, so
    696 	 * do the same to the HC toggle.
    697 	 */
    698 	pipe->up_methods->upm_cleartoggle(pipe);
    699 
    700 	err = usbd_clear_endpoint_feature(dev,
    701 	    pipe->up_endpoint->ue_edesc->bEndpointAddress, UF_ENDPOINT_HALT);
    702 #if 0
    703 XXX should we do this?
    704 	if (!err) {
    705 		pipe->state = USBD_PIPE_ACTIVE;
    706 		/* XXX activate pipe */
    707 	}
    708 #endif
    709 	return err;
    710 }
    711 
    712 void
    713 usbd_clear_endpoint_stall_task(void *arg)
    714 {
    715 	struct usbd_pipe *pipe = arg;
    716 	struct usbd_device *dev = pipe->up_dev;
    717 
    718 	pipe->up_methods->upm_cleartoggle(pipe);
    719 
    720 	(void)usbd_clear_endpoint_feature(dev,
    721 	    pipe->up_endpoint->ue_edesc->bEndpointAddress, UF_ENDPOINT_HALT);
    722 }
    723 
    724 void
    725 usbd_clear_endpoint_stall_async(struct usbd_pipe *pipe)
    726 {
    727 	usb_add_task(pipe->up_dev, &pipe->up_async_task, USB_TASKQ_DRIVER);
    728 }
    729 
    730 void
    731 usbd_clear_endpoint_toggle(struct usbd_pipe *pipe)
    732 {
    733 
    734 	pipe->up_methods->upm_cleartoggle(pipe);
    735 }
    736 
    737 usbd_status
    738 usbd_endpoint_count(struct usbd_interface *iface, uint8_t *count)
    739 {
    740 	KASSERT(iface != NULL);
    741 	KASSERT(iface->ui_idesc != NULL);
    742 
    743 	*count = iface->ui_idesc->bNumEndpoints;
    744 	return USBD_NORMAL_COMPLETION;
    745 }
    746 
    747 usbd_status
    748 usbd_interface_count(struct usbd_device *dev, uint8_t *count)
    749 {
    750 
    751 	if (dev->ud_cdesc == NULL)
    752 		return USBD_NOT_CONFIGURED;
    753 	*count = dev->ud_cdesc->bNumInterface;
    754 	return USBD_NORMAL_COMPLETION;
    755 }
    756 
    757 void
    758 usbd_interface2device_handle(struct usbd_interface *iface,
    759 			     struct usbd_device **dev)
    760 {
    761 
    762 	*dev = iface->ui_dev;
    763 }
    764 
    765 usbd_status
    766 usbd_device2interface_handle(struct usbd_device *dev,
    767 			     uint8_t ifaceno, struct usbd_interface **iface)
    768 {
    769 
    770 	if (dev->ud_cdesc == NULL)
    771 		return USBD_NOT_CONFIGURED;
    772 	if (ifaceno >= dev->ud_cdesc->bNumInterface)
    773 		return USBD_INVAL;
    774 	*iface = &dev->ud_ifaces[ifaceno];
    775 	return USBD_NORMAL_COMPLETION;
    776 }
    777 
    778 struct usbd_device *
    779 usbd_pipe2device_handle(struct usbd_pipe *pipe)
    780 {
    781 	KASSERT(pipe != NULL);
    782 
    783 	return pipe->up_dev;
    784 }
    785 
    786 /* XXXX use altno */
    787 usbd_status
    788 usbd_set_interface(struct usbd_interface *iface, int altidx)
    789 {
    790 	usb_device_request_t req;
    791 	usbd_status err;
    792 	void *endpoints;
    793 
    794 	USBHIST_FUNC();
    795 
    796 	if (LIST_FIRST(&iface->ui_pipes) != NULL)
    797 		return USBD_IN_USE;
    798 
    799 	endpoints = iface->ui_endpoints;
    800 	int nendpt = iface->ui_idesc->bNumEndpoints;
    801 	USBHIST_CALLARGS(usbdebug, "iface %#jx endpoints = %#jx nendpt %jd",
    802 	    (uintptr_t)iface, (uintptr_t)endpoints,
    803 	    iface->ui_idesc->bNumEndpoints, 0);
    804 	err = usbd_fill_iface_data(iface->ui_dev, iface->ui_index, altidx);
    805 	if (err)
    806 		return err;
    807 
    808 	/* new setting works, we can free old endpoints */
    809 	if (endpoints != NULL) {
    810 		USBHIST_LOG(usbdebug, "iface %#jx endpoints = %#jx nendpt %jd",
    811 		    (uintptr_t)iface, (uintptr_t)endpoints, nendpt, 0);
    812 		kmem_free(endpoints, nendpt * sizeof(struct usbd_endpoint));
    813 	}
    814 	KASSERT(iface->ui_idesc != NULL);
    815 
    816 	req.bmRequestType = UT_WRITE_INTERFACE;
    817 	req.bRequest = UR_SET_INTERFACE;
    818 	USETW(req.wValue, iface->ui_idesc->bAlternateSetting);
    819 	USETW(req.wIndex, iface->ui_idesc->bInterfaceNumber);
    820 	USETW(req.wLength, 0);
    821 	return usbd_do_request(iface->ui_dev, &req, 0);
    822 }
    823 
    824 int
    825 usbd_get_no_alts(usb_config_descriptor_t *cdesc, int ifaceno)
    826 {
    827 	char *p = (char *)cdesc;
    828 	char *end = p + UGETW(cdesc->wTotalLength);
    829 	usb_interface_descriptor_t *d;
    830 	int n;
    831 
    832 	for (n = 0; p < end; p += d->bLength) {
    833 		d = (usb_interface_descriptor_t *)p;
    834 		if (p + d->bLength <= end &&
    835 		    d->bDescriptorType == UDESC_INTERFACE &&
    836 		    d->bInterfaceNumber == ifaceno)
    837 			n++;
    838 	}
    839 	return n;
    840 }
    841 
    842 int
    843 usbd_get_interface_altindex(struct usbd_interface *iface)
    844 {
    845 	return iface->ui_altindex;
    846 }
    847 
    848 usbd_status
    849 usbd_get_interface(struct usbd_interface *iface, uint8_t *aiface)
    850 {
    851 	usb_device_request_t req;
    852 
    853 	req.bmRequestType = UT_READ_INTERFACE;
    854 	req.bRequest = UR_GET_INTERFACE;
    855 	USETW(req.wValue, 0);
    856 	USETW(req.wIndex, iface->ui_idesc->bInterfaceNumber);
    857 	USETW(req.wLength, 1);
    858 	return usbd_do_request(iface->ui_dev, &req, aiface);
    859 }
    860 
    861 /*** Internal routines ***/
    862 
    863 /* Dequeue all pipe operations, called with bus lock held. */
    864 Static usbd_status
    865 usbd_ar_pipe(struct usbd_pipe *pipe)
    866 {
    867 	struct usbd_xfer *xfer;
    868 
    869 	USBHIST_FUNC();
    870 	USBHIST_CALLARGS(usbdebug, "pipe = %#jx", (uintptr_t)pipe, 0, 0, 0);
    871 
    872 	KASSERT(mutex_owned(pipe->up_dev->ud_bus->ub_lock));
    873 
    874 #ifdef USB_DEBUG
    875 	if (usbdebug > 5)
    876 		usbd_dump_queue(pipe);
    877 #endif
    878 	pipe->up_repeat = 0;
    879 	pipe->up_running = 0;
    880 	pipe->up_aborting = 1;
    881 	while ((xfer = SIMPLEQ_FIRST(&pipe->up_queue)) != NULL) {
    882 		USBHIST_LOG(usbdebug, "pipe = %#jx xfer = %#jx "
    883 		    "(methods = %#jx)", (uintptr_t)pipe, (uintptr_t)xfer,
    884 		    (uintptr_t)pipe->up_methods, 0);
    885 		if (xfer->ux_status == USBD_NOT_STARTED) {
    886 			SIMPLEQ_REMOVE_HEAD(&pipe->up_queue, ux_next);
    887 		} else {
    888 			/* Make the HC abort it (and invoke the callback). */
    889 			pipe->up_methods->upm_abort(xfer);
    890 			/* XXX only for non-0 usbd_clear_endpoint_stall(pipe); */
    891 		}
    892 	}
    893 	pipe->up_aborting = 0;
    894 	return USBD_NORMAL_COMPLETION;
    895 }
    896 
    897 /* Called with USB lock held. */
    898 void
    899 usb_transfer_complete(struct usbd_xfer *xfer)
    900 {
    901 	struct usbd_pipe *pipe = xfer->ux_pipe;
    902 	struct usbd_bus *bus = pipe->up_dev->ud_bus;
    903 	int sync = xfer->ux_flags & USBD_SYNCHRONOUS;
    904 	int erred;
    905 	int polling = bus->ub_usepolling;
    906 	int repeat = pipe->up_repeat;
    907 
    908 	USBHIST_FUNC();
    909 	USBHIST_CALLARGS(usbdebug, "pipe = %#jx xfer = %#jx status = %jd "
    910 	    "actlen = %jd", (uintptr_t)pipe, (uintptr_t)xfer, xfer->ux_status,
    911 	    xfer->ux_actlen);
    912 
    913 	KASSERT(polling || mutex_owned(pipe->up_dev->ud_bus->ub_lock));
    914 	KASSERTMSG(xfer->ux_state == XFER_ONQU, "xfer %p state is %x", xfer,
    915 	    xfer->ux_state);
    916 	KASSERT(pipe != NULL);
    917 
    918 	/*
    919 	 * If device is known to miss out ack, then pretend that
    920 	 * output timeout is a success. Userland should handle
    921 	 * the logic to verify that the operation succeeded.
    922 	 */
    923 	if (pipe->up_dev->ud_quirks &&
    924 	    pipe->up_dev->ud_quirks->uq_flags & UQ_MISS_OUT_ACK &&
    925 	    xfer->ux_status == USBD_TIMEOUT &&
    926 	    !usbd_xfer_isread(xfer)) {
    927 		USBHIST_LOG(usbdebug, "Possible output ack miss for xfer %#jx: "
    928 		    "hiding write timeout to %d.%s for %d bytes written",
    929 		    (uintptr_t)xfer, curlwp->l_proc->p_pid, curlwp->l_lid,
    930 		    xfer->ux_length);
    931 
    932 		xfer->ux_status = USBD_NORMAL_COMPLETION;
    933 		xfer->ux_actlen = xfer->ux_length;
    934 	}
    935 
    936 	erred = xfer->ux_status == USBD_CANCELLED ||
    937 	        xfer->ux_status == USBD_TIMEOUT;
    938 
    939 	if (!repeat) {
    940 		/* Remove request from queue. */
    941 
    942 		KASSERTMSG(!SIMPLEQ_EMPTY(&pipe->up_queue),
    943 		    "pipe %p is empty, but xfer %p wants to complete", pipe,
    944 		     xfer);
    945 		KASSERTMSG(xfer == SIMPLEQ_FIRST(&pipe->up_queue),
    946 		    "xfer %p is not start of queue (%p is at start)", xfer,
    947 		   SIMPLEQ_FIRST(&pipe->up_queue));
    948 
    949 #ifdef DIAGNOSTIC
    950 		xfer->ux_state = XFER_BUSY;
    951 #endif
    952 		SIMPLEQ_REMOVE_HEAD(&pipe->up_queue, ux_next);
    953 	}
    954 	USBHIST_LOG(usbdebug, "xfer %#jx: repeat %jd new head = %#jx",
    955 	    (uintptr_t)xfer, repeat, (uintptr_t)SIMPLEQ_FIRST(&pipe->up_queue),
    956 	    0);
    957 
    958 	/* Count completed transfers. */
    959 	++pipe->up_dev->ud_bus->ub_stats.uds_requests
    960 		[pipe->up_endpoint->ue_edesc->bmAttributes & UE_XFERTYPE];
    961 
    962 	xfer->ux_done = 1;
    963 	if (!xfer->ux_status && xfer->ux_actlen < xfer->ux_length &&
    964 	    !(xfer->ux_flags & USBD_SHORT_XFER_OK)) {
    965 		USBHIST_LOG(usbdebug, "short transfer %jd < %jd",
    966 		    xfer->ux_actlen, xfer->ux_length, 0, 0);
    967 		xfer->ux_status = USBD_SHORT_XFER;
    968 	}
    969 
    970 	USBHIST_LOG(usbdebug, "xfer %#jx doing done %#jx", (uintptr_t)xfer,
    971 	    (uintptr_t)pipe->up_methods->upm_done, 0, 0);
    972 	pipe->up_methods->upm_done(xfer);
    973 
    974 	if (xfer->ux_length != 0 && xfer->ux_buffer != xfer->ux_buf) {
    975 		KDASSERTMSG(xfer->ux_actlen <= xfer->ux_length,
    976 		    "actlen %d length %d",xfer->ux_actlen, xfer->ux_length);
    977 
    978 		/* Only if IN transfer */
    979 		if (usbd_xfer_isread(xfer)) {
    980 			memcpy(xfer->ux_buffer, xfer->ux_buf, xfer->ux_actlen);
    981 		}
    982 	}
    983 
    984 	USBHIST_LOG(usbdebug, "xfer %#jx doing callback %#jx status %jd",
    985 	    (uintptr_t)xfer, (uintptr_t)xfer->ux_callback, xfer->ux_status, 0);
    986 
    987 	if (xfer->ux_callback) {
    988 		if (!polling) {
    989 			mutex_exit(pipe->up_dev->ud_bus->ub_lock);
    990 			if (!(pipe->up_flags & USBD_MPSAFE))
    991 				KERNEL_LOCK(1, curlwp);
    992 		}
    993 
    994 		xfer->ux_callback(xfer, xfer->ux_priv, xfer->ux_status);
    995 
    996 		if (!polling) {
    997 			if (!(pipe->up_flags & USBD_MPSAFE))
    998 				KERNEL_UNLOCK_ONE(curlwp);
    999 			mutex_enter(pipe->up_dev->ud_bus->ub_lock);
   1000 		}
   1001 	}
   1002 
   1003 	if (sync && !polling) {
   1004 		USBHIST_LOG(usbdebug, "<- done xfer %#jx, wakeup",
   1005 		    (uintptr_t)xfer, 0, 0, 0);
   1006 		cv_broadcast(&xfer->ux_cv);
   1007 	}
   1008 
   1009 	if (repeat) {
   1010 		xfer->ux_actlen = 0;
   1011 		xfer->ux_status = USBD_NOT_STARTED;
   1012 	} else {
   1013 		/* XXX should we stop the queue on all errors? */
   1014 		if (erred && pipe->up_iface != NULL)	/* not control pipe */
   1015 			pipe->up_running = 0;
   1016 	}
   1017 	if (pipe->up_running && pipe->up_serialise)
   1018 		usbd_start_next(pipe);
   1019 }
   1020 
   1021 /* Called with USB lock held. */
   1022 usbd_status
   1023 usb_insert_transfer(struct usbd_xfer *xfer)
   1024 {
   1025 	struct usbd_pipe *pipe = xfer->ux_pipe;
   1026 	usbd_status err;
   1027 
   1028 	USBHIST_FUNC(); USBHIST_CALLARGS(usbdebug,
   1029 	    "xfer = %#jx pipe = %#jx running = %jd timeout = %jd",
   1030 	    (uintptr_t)xfer, (uintptr_t)pipe,
   1031 	    pipe->up_running, xfer->ux_timeout);
   1032 
   1033 	KASSERT(mutex_owned(pipe->up_dev->ud_bus->ub_lock));
   1034 	KASSERTMSG(xfer->ux_state == XFER_BUSY, "xfer %p state is %x", xfer,
   1035 	    xfer->ux_state);
   1036 
   1037 #ifdef DIAGNOSTIC
   1038 	xfer->ux_state = XFER_ONQU;
   1039 #endif
   1040 	SIMPLEQ_INSERT_TAIL(&pipe->up_queue, xfer, ux_next);
   1041 	if (pipe->up_running && pipe->up_serialise)
   1042 		err = USBD_IN_PROGRESS;
   1043 	else {
   1044 		pipe->up_running = 1;
   1045 		err = USBD_NORMAL_COMPLETION;
   1046 	}
   1047 	USBHIST_LOG(usbdebug, "<- done xfer %#jx, err %jd", (uintptr_t)xfer,
   1048 	    err, 0, 0);
   1049 	return err;
   1050 }
   1051 
   1052 /* Called with USB lock held. */
   1053 void
   1054 usbd_start_next(struct usbd_pipe *pipe)
   1055 {
   1056 	struct usbd_xfer *xfer;
   1057 	usbd_status err;
   1058 
   1059 	USBHIST_FUNC();
   1060 
   1061 	KASSERT(pipe != NULL);
   1062 	KASSERT(pipe->up_methods != NULL);
   1063 	KASSERT(pipe->up_methods->upm_start != NULL);
   1064 	KASSERT(pipe->up_serialise == true);
   1065 
   1066 	int polling = pipe->up_dev->ud_bus->ub_usepolling;
   1067 	KASSERT(polling || mutex_owned(pipe->up_dev->ud_bus->ub_lock));
   1068 
   1069 	/* Get next request in queue. */
   1070 	xfer = SIMPLEQ_FIRST(&pipe->up_queue);
   1071 	USBHIST_CALLARGS(usbdebug, "pipe = %#jx, xfer = %#jx", (uintptr_t)pipe,
   1072 	    (uintptr_t)xfer, 0, 0);
   1073 	if (xfer == NULL) {
   1074 		pipe->up_running = 0;
   1075 	} else {
   1076 		if (!polling)
   1077 			mutex_exit(pipe->up_dev->ud_bus->ub_lock);
   1078 		err = pipe->up_methods->upm_start(xfer);
   1079 		if (!polling)
   1080 			mutex_enter(pipe->up_dev->ud_bus->ub_lock);
   1081 
   1082 		if (err != USBD_IN_PROGRESS) {
   1083 			USBHIST_LOG(usbdebug, "error = %jd", err, 0, 0, 0);
   1084 			pipe->up_running = 0;
   1085 			/* XXX do what? */
   1086 		}
   1087 	}
   1088 
   1089 	KASSERT(polling || mutex_owned(pipe->up_dev->ud_bus->ub_lock));
   1090 }
   1091 
   1092 usbd_status
   1093 usbd_do_request(struct usbd_device *dev, usb_device_request_t *req, void *data)
   1094 {
   1095 
   1096 	return usbd_do_request_flags(dev, req, data, 0, 0,
   1097 	    USBD_DEFAULT_TIMEOUT);
   1098 }
   1099 
   1100 usbd_status
   1101 usbd_do_request_flags(struct usbd_device *dev, usb_device_request_t *req,
   1102     void *data, uint16_t flags, int *actlen, uint32_t timeout)
   1103 {
   1104 	size_t len = UGETW(req->wLength);
   1105 
   1106 	return usbd_do_request_len(dev, req, len, data, flags, actlen, timeout);
   1107 }
   1108 
   1109 usbd_status
   1110 usbd_do_request_len(struct usbd_device *dev, usb_device_request_t *req,
   1111     size_t len, void *data, uint16_t flags, int *actlen, uint32_t timeout)
   1112 {
   1113 	struct usbd_xfer *xfer;
   1114 	usbd_status err;
   1115 
   1116 	KASSERT(len >= UGETW(req->wLength));
   1117 
   1118 	USBHIST_FUNC();
   1119 	USBHIST_CALLARGS(usbdebug, "dev=%#jx req=%jx flags=%jx len=%jx",
   1120 	    (uintptr_t)dev, (uintptr_t)req, flags, len);
   1121 
   1122 	ASSERT_SLEEPABLE();
   1123 
   1124 	int error = usbd_create_xfer(dev->ud_pipe0, len, 0, 0, &xfer);
   1125 	if (error)
   1126 		return error;
   1127 
   1128 	usbd_setup_default_xfer(xfer, dev, 0, timeout, req, data,
   1129 	    UGETW(req->wLength), flags, NULL);
   1130 	KASSERT(xfer->ux_pipe == dev->ud_pipe0);
   1131 	err = usbd_sync_transfer(xfer);
   1132 #if defined(USB_DEBUG) || defined(DIAGNOSTIC)
   1133 	if (xfer->ux_actlen > xfer->ux_length) {
   1134 		USBHIST_LOG(usbdebug, "overrun addr = %jd type = 0x%02jx",
   1135 		    dev->ud_addr, xfer->ux_request.bmRequestType, 0, 0);
   1136 		USBHIST_LOG(usbdebug, "     req = 0x%02jx val = %jd "
   1137 		    "index = %jd",
   1138 		    xfer->ux_request.bRequest, UGETW(xfer->ux_request.wValue),
   1139 		    UGETW(xfer->ux_request.wIndex), 0);
   1140 		USBHIST_LOG(usbdebug, "     rlen = %jd length = %jd "
   1141 		    "actlen = %jd",
   1142 		    UGETW(xfer->ux_request.wLength),
   1143 		    xfer->ux_length, xfer->ux_actlen, 0);
   1144 	}
   1145 #endif
   1146 	if (actlen != NULL)
   1147 		*actlen = xfer->ux_actlen;
   1148 
   1149 	usbd_destroy_xfer(xfer);
   1150 
   1151 	if (err) {
   1152 		USBHIST_LOG(usbdebug, "returning err = %jd", err, 0, 0, 0);
   1153 	}
   1154 	return err;
   1155 }
   1156 
   1157 static void
   1158 usbd_request_async_cb(struct usbd_xfer *xfer, void *priv, usbd_status status)
   1159 {
   1160 	usbd_free_xfer(xfer);
   1161 }
   1162 
   1163 /*
   1164  * Execute a request without waiting for completion.
   1165  * Can be used from interrupt context.
   1166  */
   1167 usbd_status
   1168 usbd_request_async(struct usbd_device *dev, struct usbd_xfer *xfer,
   1169     usb_device_request_t *req, void *priv, usbd_callback callback)
   1170 {
   1171 	usbd_status err;
   1172 
   1173 	if (callback == NULL)
   1174 		callback = usbd_request_async_cb;
   1175 
   1176 	usbd_setup_default_xfer(xfer, dev, priv,
   1177 	    USBD_DEFAULT_TIMEOUT, req, NULL, UGETW(req->wLength), 0,
   1178 	    callback);
   1179 	err = usbd_transfer(xfer);
   1180 	if (err != USBD_IN_PROGRESS) {
   1181 		usbd_free_xfer(xfer);
   1182 		return (err);
   1183 	}
   1184 	return (USBD_NORMAL_COMPLETION);
   1185 }
   1186 
   1187 const struct usbd_quirks *
   1188 usbd_get_quirks(struct usbd_device *dev)
   1189 {
   1190 #ifdef DIAGNOSTIC
   1191 	if (dev == NULL) {
   1192 		printf("usbd_get_quirks: dev == NULL\n");
   1193 		return 0;
   1194 	}
   1195 #endif
   1196 	return dev->ud_quirks;
   1197 }
   1198 
   1199 /* XXX do periodic free() of free list */
   1200 
   1201 /*
   1202  * Called from keyboard driver when in polling mode.
   1203  */
   1204 void
   1205 usbd_dopoll(struct usbd_interface *iface)
   1206 {
   1207 	iface->ui_dev->ud_bus->ub_methods->ubm_dopoll(iface->ui_dev->ud_bus);
   1208 }
   1209 
   1210 /*
   1211  * This is for keyboard driver as well, which only operates in polling
   1212  * mode from the ask root, etc., prompt and from DDB.
   1213  */
   1214 void
   1215 usbd_set_polling(struct usbd_device *dev, int on)
   1216 {
   1217 	if (on)
   1218 		dev->ud_bus->ub_usepolling++;
   1219 	else
   1220 		dev->ud_bus->ub_usepolling--;
   1221 
   1222 	/* Kick the host controller when switching modes */
   1223 	mutex_enter(dev->ud_bus->ub_lock);
   1224 	dev->ud_bus->ub_methods->ubm_softint(dev->ud_bus);
   1225 	mutex_exit(dev->ud_bus->ub_lock);
   1226 }
   1227 
   1228 
   1229 usb_endpoint_descriptor_t *
   1230 usbd_get_endpoint_descriptor(struct usbd_interface *iface, uint8_t address)
   1231 {
   1232 	struct usbd_endpoint *ep;
   1233 	int i;
   1234 
   1235 	for (i = 0; i < iface->ui_idesc->bNumEndpoints; i++) {
   1236 		ep = &iface->ui_endpoints[i];
   1237 		if (ep->ue_edesc->bEndpointAddress == address)
   1238 			return iface->ui_endpoints[i].ue_edesc;
   1239 	}
   1240 	return NULL;
   1241 }
   1242 
   1243 /*
   1244  * usbd_ratecheck() can limit the number of error messages that occurs.
   1245  * When a device is unplugged it may take up to 0.25s for the hub driver
   1246  * to notice it.  If the driver continuously tries to do I/O operations
   1247  * this can generate a large number of messages.
   1248  */
   1249 int
   1250 usbd_ratecheck(struct timeval *last)
   1251 {
   1252 	static struct timeval errinterval = { 0, 250000 }; /* 0.25 s*/
   1253 
   1254 	return ratecheck(last, &errinterval);
   1255 }
   1256 
   1257 /*
   1258  * Search for a vendor/product pair in an array.  The item size is
   1259  * given as an argument.
   1260  */
   1261 const struct usb_devno *
   1262 usb_match_device(const struct usb_devno *tbl, u_int nentries, u_int sz,
   1263 		 uint16_t vendor, uint16_t product)
   1264 {
   1265 	while (nentries-- > 0) {
   1266 		uint16_t tproduct = tbl->ud_product;
   1267 		if (tbl->ud_vendor == vendor &&
   1268 		    (tproduct == product || tproduct == USB_PRODUCT_ANY))
   1269 			return tbl;
   1270 		tbl = (const struct usb_devno *)((const char *)tbl + sz);
   1271 	}
   1272 	return NULL;
   1273 }
   1274 
   1275 usbd_status
   1276 usbd_get_string(struct usbd_device *dev, int si, char *buf)
   1277 {
   1278 	return usbd_get_string0(dev, si, buf, 1);
   1279 }
   1280 
   1281 usbd_status
   1282 usbd_get_string0(struct usbd_device *dev, int si, char *buf, int unicode)
   1283 {
   1284 	int swap = dev->ud_quirks->uq_flags & UQ_SWAP_UNICODE;
   1285 	usb_string_descriptor_t us;
   1286 	char *s;
   1287 	int i, n;
   1288 	uint16_t c;
   1289 	usbd_status err;
   1290 	int size;
   1291 
   1292 	USBHIST_FUNC(); USBHIST_CALLED(usbdebug);
   1293 
   1294 	buf[0] = '\0';
   1295 	if (si == 0)
   1296 		return USBD_INVAL;
   1297 	if (dev->ud_quirks->uq_flags & UQ_NO_STRINGS)
   1298 		return USBD_STALLED;
   1299 	if (dev->ud_langid == USBD_NOLANG) {
   1300 		/* Set up default language */
   1301 		err = usbd_get_string_desc(dev, USB_LANGUAGE_TABLE, 0, &us,
   1302 		    &size);
   1303 		if (err || size < 4) {
   1304 			USBHIST_LOG(usbdebug, "getting lang failed, using 0",
   1305 			    0, 0, 0, 0);
   1306 			dev->ud_langid = 0; /* Well, just pick something then */
   1307 		} else {
   1308 			/* Pick the first language as the default. */
   1309 			dev->ud_langid = UGETW(us.bString[0]);
   1310 		}
   1311 	}
   1312 	err = usbd_get_string_desc(dev, si, dev->ud_langid, &us, &size);
   1313 	if (err)
   1314 		return err;
   1315 	s = buf;
   1316 	n = size / 2 - 1;
   1317 	if (unicode) {
   1318 		for (i = 0; i < n; i++) {
   1319 			c = UGETW(us.bString[i]);
   1320 			if (swap)
   1321 				c = (c >> 8) | (c << 8);
   1322 			s += wput_utf8(s, 3, c);
   1323 		}
   1324 		*s++ = 0;
   1325 	}
   1326 #ifdef COMPAT_30
   1327 	else {
   1328 		for (i = 0; i < n; i++) {
   1329 			c = UGETW(us.bString[i]);
   1330 			if (swap)
   1331 				c = (c >> 8) | (c << 8);
   1332 			*s++ = (c < 0x80) ? c : '?';
   1333 		}
   1334 		*s++ = 0;
   1335 	}
   1336 #endif
   1337 	return USBD_NORMAL_COMPLETION;
   1338 }
   1339 
   1340 /*
   1341  * usbd_xfer_trycomplete(xfer)
   1342  *
   1343  *	Try to claim xfer for completion.  Return true if successful,
   1344  *	false if the xfer has been synchronously aborted or has timed
   1345  *	out.
   1346  *
   1347  *	If this returns true, caller is responsible for setting
   1348  *	xfer->ux_status and calling usb_transfer_complete.  To be used
   1349  *	in a host controller interrupt handler.
   1350  *
   1351  *	Caller must either hold the bus lock or have the bus in polling
   1352  *	mode.
   1353  */
   1354 bool
   1355 usbd_xfer_trycomplete(struct usbd_xfer *xfer)
   1356 {
   1357 	struct usbd_bus *bus __diagused = xfer->ux_bus;
   1358 
   1359 	KASSERT(bus->ub_usepolling || mutex_owned(bus->ub_lock));
   1360 
   1361 	/*
   1362 	 * If software has completed it, either by synchronous abort or
   1363 	 * by timeout, too late.
   1364 	 */
   1365 	if (xfer->ux_status != USBD_IN_PROGRESS)
   1366 		return false;
   1367 
   1368 	/*
   1369 	 * We are completing the xfer.  Cancel the timeout if we can,
   1370 	 * but only asynchronously.  See usbd_xfer_cancel_timeout_async
   1371 	 * for why we need not wait for the callout or task here.
   1372 	 */
   1373 	usbd_xfer_cancel_timeout_async(xfer);
   1374 
   1375 	/* Success!  Note: Caller must set xfer->ux_status afterwar.  */
   1376 	return true;
   1377 }
   1378 
   1379 /*
   1380  * usbd_xfer_abort(xfer)
   1381  *
   1382  *	Try to claim xfer to abort.  If successful, mark it completed
   1383  *	with USBD_CANCELLED and call the bus-specific method to abort
   1384  *	at the hardware level.
   1385  *
   1386  *	To be called in thread context from struct
   1387  *	usbd_pipe_methods::upm_abort.
   1388  *
   1389  *	Caller must hold the bus lock.
   1390  */
   1391 void
   1392 usbd_xfer_abort(struct usbd_xfer *xfer)
   1393 {
   1394 	struct usbd_bus *bus = xfer->ux_bus;
   1395 
   1396 	KASSERT(mutex_owned(bus->ub_lock));
   1397 
   1398 	/*
   1399 	 * If host controller interrupt or timer interrupt has
   1400 	 * completed it, too late.  But the xfer cannot be
   1401 	 * cancelled already -- only one caller can synchronously
   1402 	 * abort.
   1403 	 */
   1404 	KASSERT(xfer->ux_status != USBD_CANCELLED);
   1405 	if (xfer->ux_status != USBD_IN_PROGRESS)
   1406 		return;
   1407 
   1408 	/*
   1409 	 * Cancel the timeout if we can, but only asynchronously; see
   1410 	 * usbd_xfer_cancel_timeout_async for why we need not wait for
   1411 	 * the callout or task here.
   1412 	 */
   1413 	usbd_xfer_cancel_timeout_async(xfer);
   1414 
   1415 	/*
   1416 	 * We beat everyone else.  Claim the status as cancelled and do
   1417 	 * the bus-specific dance to abort the hardware.
   1418 	 */
   1419 	xfer->ux_status = USBD_CANCELLED;
   1420 	bus->ub_methods->ubm_abortx(xfer);
   1421 }
   1422 
   1423 /*
   1424  * usbd_xfer_timeout(xfer)
   1425  *
   1426  *	Called at IPL_SOFTCLOCK when too much time has elapsed waiting
   1427  *	for xfer to complete.  Since we can't abort the xfer at
   1428  *	IPL_SOFTCLOCK, defer to a usb_task to run it in thread context,
   1429  *	unless the xfer has completed or aborted concurrently -- and if
   1430  *	the xfer has also been resubmitted, take care of rescheduling
   1431  *	the callout.
   1432  */
   1433 static void
   1434 usbd_xfer_timeout(void *cookie)
   1435 {
   1436 	struct usbd_xfer *xfer = cookie;
   1437 	struct usbd_bus *bus = xfer->ux_bus;
   1438 	struct usbd_device *dev = xfer->ux_pipe->up_dev;
   1439 
   1440 	/* Acquire the lock so we can transition the timeout state.  */
   1441 	mutex_enter(bus->ub_lock);
   1442 
   1443 	/*
   1444 	 * Use usbd_xfer_probe_timeout to check whether the timeout is
   1445 	 * still valid, or to reschedule the callout if necessary.  If
   1446 	 * it is still valid, schedule the task.
   1447 	 */
   1448 	if (usbd_xfer_probe_timeout(xfer))
   1449 		usb_add_task(dev, &xfer->ux_aborttask, USB_TASKQ_HC);
   1450 
   1451 	/*
   1452 	 * Notify usbd_xfer_cancel_timeout_async that we may have
   1453 	 * scheduled the task.  This causes callout_invoking to return
   1454 	 * false in usbd_xfer_cancel_timeout_async so that it can tell
   1455 	 * which stage in the callout->task->abort process we're at.
   1456 	 */
   1457 	callout_ack(&xfer->ux_callout);
   1458 
   1459 	/* All done -- release the lock.  */
   1460 	mutex_exit(bus->ub_lock);
   1461 }
   1462 
   1463 /*
   1464  * usbd_xfer_timeout_task(xfer)
   1465  *
   1466  *	Called in thread context when too much time has elapsed waiting
   1467  *	for xfer to complete.  Abort the xfer with USBD_TIMEOUT, unless
   1468  *	it has completed or aborted concurrently -- and if the xfer has
   1469  *	also been resubmitted, take care of rescheduling the callout.
   1470  */
   1471 static void
   1472 usbd_xfer_timeout_task(void *cookie)
   1473 {
   1474 	struct usbd_xfer *xfer = cookie;
   1475 	struct usbd_bus *bus = xfer->ux_bus;
   1476 
   1477 	/* Acquire the lock so we can transition the timeout state.  */
   1478 	mutex_enter(bus->ub_lock);
   1479 
   1480 	/*
   1481 	 * Use usbd_xfer_probe_timeout to check whether the timeout is
   1482 	 * still valid, or to reschedule the callout if necessary.  If
   1483 	 * it is not valid -- the timeout has been asynchronously
   1484 	 * cancelled, or the xfer has already been resubmitted -- then
   1485 	 * we're done here.
   1486 	 */
   1487 	if (!usbd_xfer_probe_timeout(xfer))
   1488 		goto out;
   1489 
   1490 	/*
   1491 	 * May have completed or been aborted, but we're the only one
   1492 	 * who can time it out.  If it has completed or been aborted,
   1493 	 * no need to timeout.
   1494 	 */
   1495 	KASSERT(xfer->ux_status != USBD_TIMEOUT);
   1496 	if (xfer->ux_status != USBD_IN_PROGRESS)
   1497 		goto out;
   1498 
   1499 	/*
   1500 	 * We beat everyone else.  Claim the status as timed out and do
   1501 	 * the bus-specific dance to abort the hardware.
   1502 	 */
   1503 	xfer->ux_status = USBD_TIMEOUT;
   1504 	bus->ub_methods->ubm_abortx(xfer);
   1505 
   1506 out:	/* All done -- release the lock.  */
   1507 	mutex_exit(bus->ub_lock);
   1508 }
   1509 
   1510 /*
   1511  * usbd_xfer_probe_timeout(xfer)
   1512  *
   1513  *	Probe the status of xfer's timeout.  Acknowledge and process a
   1514  *	request to reschedule.  Return true if the timeout is still
   1515  *	valid and the caller should take further action (queueing a
   1516  *	task or aborting the xfer), false if it must stop here.
   1517  */
   1518 static bool
   1519 usbd_xfer_probe_timeout(struct usbd_xfer *xfer)
   1520 {
   1521 	struct usbd_bus *bus = xfer->ux_bus;
   1522 	bool valid;
   1523 
   1524 	KASSERT(bus->ub_usepolling || mutex_owned(bus->ub_lock));
   1525 
   1526 	/* The timeout must be set.  */
   1527 	KASSERT(xfer->ux_timeout_set);
   1528 
   1529 	/*
   1530 	 * Neither callout nor task may be pending; they execute
   1531 	 * alternately in lock step.
   1532 	 */
   1533 	KASSERT(!callout_pending(&xfer->ux_callout));
   1534 	KASSERT(!usb_task_pending(xfer->ux_pipe->up_dev, &xfer->ux_aborttask));
   1535 
   1536 	/* There are a few cases... */
   1537 	if (bus->ub_methods->ubm_dying(bus)) {
   1538 		/* Host controller dying.  Drop it all on the floor.  */
   1539 		xfer->ux_timeout_set = false;
   1540 		xfer->ux_timeout_reset = false;
   1541 		valid = false;
   1542 	} else if (xfer->ux_timeout_reset) {
   1543 		/*
   1544 		 * The xfer completed _and_ got resubmitted while we
   1545 		 * waited for the lock.  Acknowledge the request to
   1546 		 * reschedule, and reschedule it if there is a timeout
   1547 		 * and the bus is not polling.
   1548 		 */
   1549 		xfer->ux_timeout_reset = false;
   1550 		if (xfer->ux_timeout && !bus->ub_usepolling) {
   1551 			KASSERT(xfer->ux_timeout_set);
   1552 			callout_schedule(&xfer->ux_callout,
   1553 			    mstohz(xfer->ux_timeout));
   1554 		} else {
   1555 			/* No more callout or task scheduled.  */
   1556 			xfer->ux_timeout_set = false;
   1557 		}
   1558 		valid = false;
   1559 	} else if (xfer->ux_status != USBD_IN_PROGRESS) {
   1560 		/*
   1561 		 * The xfer has completed by hardware completion or by
   1562 		 * software abort, and has not been resubmitted, so the
   1563 		 * timeout must be unset, and is no longer valid for
   1564 		 * the caller.
   1565 		 */
   1566 		xfer->ux_timeout_set = false;
   1567 		valid = false;
   1568 	} else {
   1569 		/*
   1570 		 * The xfer has not yet completed, so the timeout is
   1571 		 * valid.
   1572 		 */
   1573 		valid = true;
   1574 	}
   1575 
   1576 	/* Any reset must have been processed.  */
   1577 	KASSERT(!xfer->ux_timeout_reset);
   1578 
   1579 	/*
   1580 	 * Either we claim the timeout is set, or the callout is idle.
   1581 	 * If the timeout is still set, we may be handing off to the
   1582 	 * task instead, so this is an if but not an iff.
   1583 	 */
   1584 	KASSERT(xfer->ux_timeout_set || !callout_pending(&xfer->ux_callout));
   1585 
   1586 	/*
   1587 	 * The task must be idle now.
   1588 	 *
   1589 	 * - If the caller is the callout, _and_ the timeout is still
   1590 	 *   valid, the caller will schedule it, but it hasn't been
   1591 	 *   scheduled yet.  (If the timeout is not valid, the task
   1592 	 *   should not be scheduled.)
   1593 	 *
   1594 	 * - If the caller is the task, it cannot be scheduled again
   1595 	 *   until the callout runs again, which won't happen until we
   1596 	 *   next release the lock.
   1597 	 */
   1598 	KASSERT(!usb_task_pending(xfer->ux_pipe->up_dev, &xfer->ux_aborttask));
   1599 
   1600 	KASSERT(bus->ub_usepolling || mutex_owned(bus->ub_lock));
   1601 
   1602 	return valid;
   1603 }
   1604 
   1605 /*
   1606  * usbd_xfer_schedule_timeout(xfer)
   1607  *
   1608  *	Ensure that xfer has a timeout.  If the callout is already
   1609  *	queued or the task is already running, request that they
   1610  *	reschedule the callout.  If not, and if we're not polling,
   1611  *	schedule the callout anew.
   1612  *
   1613  *	To be called in thread context from struct
   1614  *	usbd_pipe_methods::upm_start.
   1615  */
   1616 void
   1617 usbd_xfer_schedule_timeout(struct usbd_xfer *xfer)
   1618 {
   1619 	struct usbd_bus *bus = xfer->ux_bus;
   1620 
   1621 	KASSERT(bus->ub_usepolling || mutex_owned(bus->ub_lock));
   1622 
   1623 	if (xfer->ux_timeout_set) {
   1624 		/*
   1625 		 * Callout or task has fired from a prior completed
   1626 		 * xfer but has not yet noticed that the xfer is done.
   1627 		 * Ask it to reschedule itself to ux_timeout.
   1628 		 */
   1629 		xfer->ux_timeout_reset = true;
   1630 	} else if (xfer->ux_timeout && !bus->ub_usepolling) {
   1631 		/* Callout is not scheduled.  Schedule it.  */
   1632 		KASSERT(!callout_pending(&xfer->ux_callout));
   1633 		callout_schedule(&xfer->ux_callout, mstohz(xfer->ux_timeout));
   1634 		xfer->ux_timeout_set = true;
   1635 	}
   1636 
   1637 	KASSERT(bus->ub_usepolling || mutex_owned(bus->ub_lock));
   1638 }
   1639 
   1640 /*
   1641  * usbd_xfer_cancel_timeout_async(xfer)
   1642  *
   1643  *	Cancel the callout and the task of xfer, which have not yet run
   1644  *	to completion, but don't wait for the callout or task to finish
   1645  *	running.
   1646  *
   1647  *	If they have already fired, at worst they are waiting for the
   1648  *	bus lock.  They will see that the xfer is no longer in progress
   1649  *	and give up, or they will see that the xfer has been
   1650  *	resubmitted with a new timeout and reschedule the callout.
   1651  *
   1652  *	If a resubmitted request completed so fast that the callout
   1653  *	didn't have time to process a timer reset, just cancel the
   1654  *	timer reset.
   1655  */
   1656 static void
   1657 usbd_xfer_cancel_timeout_async(struct usbd_xfer *xfer)
   1658 {
   1659 	struct usbd_bus *bus __diagused = xfer->ux_bus;
   1660 
   1661 	KASSERT(bus->ub_usepolling || mutex_owned(bus->ub_lock));
   1662 
   1663 	/*
   1664 	 * If the timer wasn't running anyway, forget about it.  This
   1665 	 * can happen if we are completing an isochronous transfer
   1666 	 * which doesn't use the same timeout logic.
   1667 	 */
   1668 	if (!xfer->ux_timeout_set)
   1669 		return;
   1670 
   1671 	xfer->ux_timeout_reset = false;
   1672 	if (!callout_stop(&xfer->ux_callout)) {
   1673 		/*
   1674 		 * We stopped the callout before it ran.  The timeout
   1675 		 * is no longer set.
   1676 		 */
   1677 		xfer->ux_timeout_set = false;
   1678 	} else if (callout_invoking(&xfer->ux_callout)) {
   1679 		/*
   1680 		 * The callout has begun to run but it has not yet
   1681 		 * acquired the lock and called callout_ack.  The task
   1682 		 * cannot be queued yet, and the callout cannot have
   1683 		 * been rescheduled yet.
   1684 		 *
   1685 		 * By the time the callout acquires the lock, we will
   1686 		 * have transitioned from USBD_IN_PROGRESS to a
   1687 		 * completed status, and possibly also resubmitted the
   1688 		 * xfer and set xfer->ux_timeout_reset = true.  In both
   1689 		 * cases, the callout will DTRT, so no further action
   1690 		 * is needed here.
   1691 		 */
   1692 	} else if (usb_rem_task(xfer->ux_pipe->up_dev, &xfer->ux_aborttask)) {
   1693 		/*
   1694 		 * The callout had fired and scheduled the task, but we
   1695 		 * stopped the task before it could run.  The timeout
   1696 		 * is therefore no longer set -- the next resubmission
   1697 		 * of the xfer must schedule a new timeout.
   1698 		 *
   1699 		 * The callout should not be be pending at this point:
   1700 		 * it is scheduled only under the lock, and only when
   1701 		 * xfer->ux_timeout_set is false, or by the callout or
   1702 		 * task itself when xfer->ux_timeout_reset is true.
   1703 		 */
   1704 		xfer->ux_timeout_set = false;
   1705 	}
   1706 
   1707 	/*
   1708 	 * The callout cannot be scheduled and the task cannot be
   1709 	 * queued at this point.  Either we cancelled them, or they are
   1710 	 * already running and waiting for the bus lock.
   1711 	 */
   1712 	KASSERT(!callout_pending(&xfer->ux_callout));
   1713 	KASSERT(!usb_task_pending(xfer->ux_pipe->up_dev, &xfer->ux_aborttask));
   1714 
   1715 	KASSERT(bus->ub_usepolling || mutex_owned(bus->ub_lock));
   1716 }
   1717