Home | History | Annotate | Line # | Download | only in usb
uhci.c revision 1.235
      1 /*	$NetBSD: uhci.c,v 1.235 2010/11/13 13:52:12 uebayasi Exp $	*/
      2 /*	$FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $	*/
      3 
      4 /*
      5  * Copyright (c) 1998, 2004 The NetBSD Foundation, Inc.
      6  * All rights reserved.
      7  *
      8  * This code is derived from software contributed to The NetBSD Foundation
      9  * by Lennart Augustsson (lennart (at) augustsson.net) at
     10  * Carlstedt Research & Technology.
     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 /*
     35  * USB Universal Host Controller driver.
     36  * Handles e.g. PIIX3 and PIIX4.
     37  *
     38  * UHCI spec: http://www.intel.com/technology/usb/spec.htm
     39  * USB spec: http://www.usb.org/developers/docs/
     40  * PIIXn spec: ftp://download.intel.com/design/intarch/datashts/29055002.pdf
     41  *             ftp://download.intel.com/design/intarch/datashts/29056201.pdf
     42  */
     43 
     44 #include <sys/cdefs.h>
     45 __KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.235 2010/11/13 13:52:12 uebayasi Exp $");
     46 
     47 #include <sys/param.h>
     48 #include <sys/systm.h>
     49 #include <sys/kernel.h>
     50 #include <sys/malloc.h>
     51 #include <sys/device.h>
     52 #include <sys/select.h>
     53 #include <sys/extent.h>
     54 #include <sys/proc.h>
     55 #include <sys/queue.h>
     56 #include <sys/bus.h>
     57 
     58 #include <machine/endian.h>
     59 
     60 #include <dev/usb/usb.h>
     61 #include <dev/usb/usbdi.h>
     62 #include <dev/usb/usbdivar.h>
     63 #include <dev/usb/usb_mem.h>
     64 #include <dev/usb/usb_quirks.h>
     65 
     66 #include <dev/usb/uhcireg.h>
     67 #include <dev/usb/uhcivar.h>
     68 #include <dev/usb/usbroothub_subr.h>
     69 
     70 /* Use bandwidth reclamation for control transfers. Some devices choke on it. */
     71 /*#define UHCI_CTL_LOOP */
     72 
     73 
     74 
     75 #ifdef UHCI_DEBUG
     76 uhci_softc_t *thesc;
     77 #define DPRINTF(x)	if (uhcidebug) printf x
     78 #define DPRINTFN(n,x)	if (uhcidebug>(n)) printf x
     79 int uhcidebug = 0;
     80 int uhcinoloop = 0;
     81 #else
     82 #define DPRINTF(x)
     83 #define DPRINTFN(n,x)
     84 #endif
     85 
     86 /*
     87  * The UHCI controller is little endian, so on big endian machines
     88  * the data stored in memory needs to be swapped.
     89  */
     90 
     91 struct uhci_pipe {
     92 	struct usbd_pipe pipe;
     93 	int nexttoggle;
     94 
     95 	u_char aborting;
     96 	usbd_xfer_handle abortstart, abortend;
     97 
     98 	/* Info needed for different pipe kinds. */
     99 	union {
    100 		/* Control pipe */
    101 		struct {
    102 			uhci_soft_qh_t *sqh;
    103 			usb_dma_t reqdma;
    104 			uhci_soft_td_t *setup, *stat;
    105 			u_int length;
    106 		} ctl;
    107 		/* Interrupt pipe */
    108 		struct {
    109 			int npoll;
    110 			int isread;
    111 			uhci_soft_qh_t **qhs;
    112 		} intr;
    113 		/* Bulk pipe */
    114 		struct {
    115 			uhci_soft_qh_t *sqh;
    116 			u_int length;
    117 			int isread;
    118 		} bulk;
    119 		/* Iso pipe */
    120 		struct iso {
    121 			uhci_soft_td_t **stds;
    122 			int next, inuse;
    123 		} iso;
    124 	} u;
    125 };
    126 
    127 Static void		uhci_globalreset(uhci_softc_t *);
    128 Static usbd_status	uhci_portreset(uhci_softc_t*, int);
    129 Static void		uhci_reset(uhci_softc_t *);
    130 Static usbd_status	uhci_run(uhci_softc_t *, int run);
    131 Static uhci_soft_td_t  *uhci_alloc_std(uhci_softc_t *);
    132 Static void		uhci_free_std(uhci_softc_t *, uhci_soft_td_t *);
    133 Static uhci_soft_qh_t  *uhci_alloc_sqh(uhci_softc_t *);
    134 Static void		uhci_free_sqh(uhci_softc_t *, uhci_soft_qh_t *);
    135 #if 0
    136 Static void		uhci_enter_ctl_q(uhci_softc_t *, uhci_soft_qh_t *,
    137 					 uhci_intr_info_t *);
    138 Static void		uhci_exit_ctl_q(uhci_softc_t *, uhci_soft_qh_t *);
    139 #endif
    140 
    141 Static void		uhci_free_std_chain(uhci_softc_t *,
    142 					    uhci_soft_td_t *, uhci_soft_td_t *);
    143 Static usbd_status	uhci_alloc_std_chain(struct uhci_pipe *,
    144 			    uhci_softc_t *, int, int, u_int16_t, usb_dma_t *,
    145 			    uhci_soft_td_t **, uhci_soft_td_t **);
    146 Static void		uhci_poll_hub(void *);
    147 Static void		uhci_waitintr(uhci_softc_t *, usbd_xfer_handle);
    148 Static void		uhci_check_intr(uhci_softc_t *, uhci_intr_info_t *);
    149 Static void		uhci_idone(uhci_intr_info_t *);
    150 
    151 Static void		uhci_abort_xfer(usbd_xfer_handle, usbd_status status);
    152 
    153 Static void		uhci_timeout(void *);
    154 Static void		uhci_timeout_task(void *);
    155 Static void		uhci_add_ls_ctrl(uhci_softc_t *, uhci_soft_qh_t *);
    156 Static void		uhci_add_hs_ctrl(uhci_softc_t *, uhci_soft_qh_t *);
    157 Static void		uhci_add_bulk(uhci_softc_t *, uhci_soft_qh_t *);
    158 Static void		uhci_remove_ls_ctrl(uhci_softc_t *,uhci_soft_qh_t *);
    159 Static void		uhci_remove_hs_ctrl(uhci_softc_t *,uhci_soft_qh_t *);
    160 Static void		uhci_remove_bulk(uhci_softc_t *,uhci_soft_qh_t *);
    161 Static void		uhci_add_loop(uhci_softc_t *sc);
    162 Static void		uhci_rem_loop(uhci_softc_t *sc);
    163 
    164 Static usbd_status	uhci_setup_isoc(usbd_pipe_handle pipe);
    165 Static void		uhci_device_isoc_enter(usbd_xfer_handle);
    166 
    167 Static usbd_status	uhci_allocm(struct usbd_bus *, usb_dma_t *, u_int32_t);
    168 Static void		uhci_freem(struct usbd_bus *, usb_dma_t *);
    169 
    170 Static usbd_xfer_handle	uhci_allocx(struct usbd_bus *);
    171 Static void		uhci_freex(struct usbd_bus *, usbd_xfer_handle);
    172 
    173 Static usbd_status	uhci_device_ctrl_transfer(usbd_xfer_handle);
    174 Static usbd_status	uhci_device_ctrl_start(usbd_xfer_handle);
    175 Static void		uhci_device_ctrl_abort(usbd_xfer_handle);
    176 Static void		uhci_device_ctrl_close(usbd_pipe_handle);
    177 Static void		uhci_device_ctrl_done(usbd_xfer_handle);
    178 
    179 Static usbd_status	uhci_device_intr_transfer(usbd_xfer_handle);
    180 Static usbd_status	uhci_device_intr_start(usbd_xfer_handle);
    181 Static void		uhci_device_intr_abort(usbd_xfer_handle);
    182 Static void		uhci_device_intr_close(usbd_pipe_handle);
    183 Static void		uhci_device_intr_done(usbd_xfer_handle);
    184 
    185 Static usbd_status	uhci_device_bulk_transfer(usbd_xfer_handle);
    186 Static usbd_status	uhci_device_bulk_start(usbd_xfer_handle);
    187 Static void		uhci_device_bulk_abort(usbd_xfer_handle);
    188 Static void		uhci_device_bulk_close(usbd_pipe_handle);
    189 Static void		uhci_device_bulk_done(usbd_xfer_handle);
    190 
    191 Static usbd_status	uhci_device_isoc_transfer(usbd_xfer_handle);
    192 Static usbd_status	uhci_device_isoc_start(usbd_xfer_handle);
    193 Static void		uhci_device_isoc_abort(usbd_xfer_handle);
    194 Static void		uhci_device_isoc_close(usbd_pipe_handle);
    195 Static void		uhci_device_isoc_done(usbd_xfer_handle);
    196 
    197 Static usbd_status	uhci_root_ctrl_transfer(usbd_xfer_handle);
    198 Static usbd_status	uhci_root_ctrl_start(usbd_xfer_handle);
    199 Static void		uhci_root_ctrl_abort(usbd_xfer_handle);
    200 Static void		uhci_root_ctrl_close(usbd_pipe_handle);
    201 Static void		uhci_root_ctrl_done(usbd_xfer_handle);
    202 
    203 Static usbd_status	uhci_root_intr_transfer(usbd_xfer_handle);
    204 Static usbd_status	uhci_root_intr_start(usbd_xfer_handle);
    205 Static void		uhci_root_intr_abort(usbd_xfer_handle);
    206 Static void		uhci_root_intr_close(usbd_pipe_handle);
    207 Static void		uhci_root_intr_done(usbd_xfer_handle);
    208 
    209 Static usbd_status	uhci_open(usbd_pipe_handle);
    210 Static void		uhci_poll(struct usbd_bus *);
    211 Static void		uhci_softintr(void *);
    212 
    213 Static usbd_status	uhci_device_request(usbd_xfer_handle xfer);
    214 
    215 Static void		uhci_add_intr(uhci_softc_t *, uhci_soft_qh_t *);
    216 Static void		uhci_remove_intr(uhci_softc_t *, uhci_soft_qh_t *);
    217 Static usbd_status	uhci_device_setintr(uhci_softc_t *sc,
    218 			    struct uhci_pipe *pipe, int ival);
    219 
    220 Static void		uhci_device_clear_toggle(usbd_pipe_handle pipe);
    221 Static void		uhci_noop(usbd_pipe_handle pipe);
    222 
    223 Static inline uhci_soft_qh_t *uhci_find_prev_qh(uhci_soft_qh_t *,
    224 						    uhci_soft_qh_t *);
    225 
    226 #ifdef UHCI_DEBUG
    227 Static void		uhci_dump_all(uhci_softc_t *);
    228 Static void		uhci_dumpregs(uhci_softc_t *);
    229 Static void		uhci_dump_qhs(uhci_soft_qh_t *);
    230 Static void		uhci_dump_qh(uhci_soft_qh_t *);
    231 Static void		uhci_dump_tds(uhci_soft_td_t *);
    232 Static void		uhci_dump_td(uhci_soft_td_t *);
    233 Static void		uhci_dump_ii(uhci_intr_info_t *ii);
    234 void			uhci_dump(void);
    235 #endif
    236 
    237 #define UBARR(sc) bus_space_barrier((sc)->iot, (sc)->ioh, 0, (sc)->sc_size, \
    238 			BUS_SPACE_BARRIER_READ|BUS_SPACE_BARRIER_WRITE)
    239 #define UWRITE1(sc, r, x) \
    240  do { UBARR(sc); bus_space_write_1((sc)->iot, (sc)->ioh, (r), (x)); \
    241  } while (/*CONSTCOND*/0)
    242 #define UWRITE2(sc, r, x) \
    243  do { UBARR(sc); bus_space_write_2((sc)->iot, (sc)->ioh, (r), (x)); \
    244  } while (/*CONSTCOND*/0)
    245 #define UWRITE4(sc, r, x) \
    246  do { UBARR(sc); bus_space_write_4((sc)->iot, (sc)->ioh, (r), (x)); \
    247  } while (/*CONSTCOND*/0)
    248 static __inline uint8_t
    249 UREAD1(uhci_softc_t *sc, bus_size_t r)
    250 {
    251 
    252 	UBARR(sc);
    253 	return bus_space_read_1(sc->iot, sc->ioh, r);
    254 }
    255 
    256 static __inline uint16_t
    257 UREAD2(uhci_softc_t *sc, bus_size_t r)
    258 {
    259 
    260 	UBARR(sc);
    261 	return bus_space_read_2(sc->iot, sc->ioh, r);
    262 }
    263 
    264 static __inline uint32_t
    265 UREAD4(uhci_softc_t *sc, bus_size_t r)
    266 {
    267 
    268 	UBARR(sc);
    269 	return bus_space_read_4(sc->iot, sc->ioh, r);
    270 }
    271 
    272 #define UHCICMD(sc, cmd) UWRITE2(sc, UHCI_CMD, cmd)
    273 #define UHCISTS(sc) UREAD2(sc, UHCI_STS)
    274 
    275 #define UHCI_RESET_TIMEOUT 100	/* ms, reset timeout */
    276 
    277 #define UHCI_CURFRAME(sc) (UREAD2(sc, UHCI_FRNUM) & UHCI_FRNUM_MASK)
    278 
    279 #define UHCI_INTR_ENDPT 1
    280 
    281 const struct usbd_bus_methods uhci_bus_methods = {
    282 	uhci_open,
    283 	uhci_softintr,
    284 	uhci_poll,
    285 	uhci_allocm,
    286 	uhci_freem,
    287 	uhci_allocx,
    288 	uhci_freex,
    289 };
    290 
    291 const struct usbd_pipe_methods uhci_root_ctrl_methods = {
    292 	uhci_root_ctrl_transfer,
    293 	uhci_root_ctrl_start,
    294 	uhci_root_ctrl_abort,
    295 	uhci_root_ctrl_close,
    296 	uhci_noop,
    297 	uhci_root_ctrl_done,
    298 };
    299 
    300 const struct usbd_pipe_methods uhci_root_intr_methods = {
    301 	uhci_root_intr_transfer,
    302 	uhci_root_intr_start,
    303 	uhci_root_intr_abort,
    304 	uhci_root_intr_close,
    305 	uhci_noop,
    306 	uhci_root_intr_done,
    307 };
    308 
    309 const struct usbd_pipe_methods uhci_device_ctrl_methods = {
    310 	uhci_device_ctrl_transfer,
    311 	uhci_device_ctrl_start,
    312 	uhci_device_ctrl_abort,
    313 	uhci_device_ctrl_close,
    314 	uhci_noop,
    315 	uhci_device_ctrl_done,
    316 };
    317 
    318 const struct usbd_pipe_methods uhci_device_intr_methods = {
    319 	uhci_device_intr_transfer,
    320 	uhci_device_intr_start,
    321 	uhci_device_intr_abort,
    322 	uhci_device_intr_close,
    323 	uhci_device_clear_toggle,
    324 	uhci_device_intr_done,
    325 };
    326 
    327 const struct usbd_pipe_methods uhci_device_bulk_methods = {
    328 	uhci_device_bulk_transfer,
    329 	uhci_device_bulk_start,
    330 	uhci_device_bulk_abort,
    331 	uhci_device_bulk_close,
    332 	uhci_device_clear_toggle,
    333 	uhci_device_bulk_done,
    334 };
    335 
    336 const struct usbd_pipe_methods uhci_device_isoc_methods = {
    337 	uhci_device_isoc_transfer,
    338 	uhci_device_isoc_start,
    339 	uhci_device_isoc_abort,
    340 	uhci_device_isoc_close,
    341 	uhci_noop,
    342 	uhci_device_isoc_done,
    343 };
    344 
    345 #define uhci_add_intr_info(sc, ii) \
    346 	LIST_INSERT_HEAD(&(sc)->sc_intrhead, (ii), list)
    347 #define uhci_del_intr_info(ii) \
    348 	do { \
    349 		LIST_REMOVE((ii), list); \
    350 		(ii)->list.le_prev = NULL; \
    351 	} while (0)
    352 #define uhci_active_intr_info(ii) ((ii)->list.le_prev != NULL)
    353 
    354 Static inline uhci_soft_qh_t *
    355 uhci_find_prev_qh(uhci_soft_qh_t *pqh, uhci_soft_qh_t *sqh)
    356 {
    357 	DPRINTFN(15,("uhci_find_prev_qh: pqh=%p sqh=%p\n", pqh, sqh));
    358 
    359 	for (; pqh->hlink != sqh; pqh = pqh->hlink) {
    360 #if defined(DIAGNOSTIC) || defined(UHCI_DEBUG)
    361 		usb_syncmem(&pqh->dma,
    362 		    pqh->offs + offsetof(uhci_qh_t, qh_hlink),
    363 		    sizeof(pqh->qh.qh_hlink),
    364 		    BUS_DMASYNC_POSTWRITE);
    365 		if (le32toh(pqh->qh.qh_hlink) & UHCI_PTR_T) {
    366 			printf("uhci_find_prev_qh: QH not found\n");
    367 			return (NULL);
    368 		}
    369 #endif
    370 	}
    371 	return (pqh);
    372 }
    373 
    374 void
    375 uhci_globalreset(uhci_softc_t *sc)
    376 {
    377 	UHCICMD(sc, UHCI_CMD_GRESET);	/* global reset */
    378 	usb_delay_ms(&sc->sc_bus, USB_BUS_RESET_DELAY); /* wait a little */
    379 	UHCICMD(sc, 0);			/* do nothing */
    380 }
    381 
    382 usbd_status
    383 uhci_init(uhci_softc_t *sc)
    384 {
    385 	usbd_status err;
    386 	int i, j;
    387 	uhci_soft_qh_t *clsqh, *chsqh, *bsqh, *sqh, *lsqh;
    388 	uhci_soft_td_t *std;
    389 
    390 	DPRINTFN(1,("uhci_init: start\n"));
    391 
    392 #ifdef UHCI_DEBUG
    393 	thesc = sc;
    394 
    395 	if (uhcidebug > 2)
    396 		uhci_dumpregs(sc);
    397 #endif
    398 
    399 	sc->sc_suspend = PWR_RESUME;
    400 
    401 	UWRITE2(sc, UHCI_INTR, 0);		/* disable interrupts */
    402 	uhci_globalreset(sc);			/* reset the controller */
    403 	uhci_reset(sc);
    404 
    405 	usb_setup_reserve(sc->sc_dev, &sc->sc_dma_reserve, sc->sc_bus.dmatag,
    406 	    USB_MEM_RESERVE);
    407 
    408 	/* Allocate and initialize real frame array. */
    409 	err = usb_allocmem(&sc->sc_bus,
    410 		  UHCI_FRAMELIST_COUNT * sizeof(uhci_physaddr_t),
    411 		  UHCI_FRAMELIST_ALIGN, &sc->sc_dma);
    412 	if (err)
    413 		return (err);
    414 	sc->sc_pframes = KERNADDR(&sc->sc_dma, 0);
    415 	UWRITE2(sc, UHCI_FRNUM, 0);		/* set frame number to 0 */
    416 	UWRITE4(sc, UHCI_FLBASEADDR, DMAADDR(&sc->sc_dma, 0)); /* set frame list*/
    417 
    418 	/*
    419 	 * Allocate a TD, inactive, that hangs from the last QH.
    420 	 * This is to avoid a bug in the PIIX that makes it run berserk
    421 	 * otherwise.
    422 	 */
    423 	std = uhci_alloc_std(sc);
    424 	if (std == NULL)
    425 		return (USBD_NOMEM);
    426 	std->link.std = NULL;
    427 	std->td.td_link = htole32(UHCI_PTR_T);
    428 	std->td.td_status = htole32(0); /* inactive */
    429 	std->td.td_token = htole32(0);
    430 	std->td.td_buffer = htole32(0);
    431 	usb_syncmem(&std->dma, std->offs, sizeof(std->td),
    432 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
    433 
    434 	/* Allocate the dummy QH marking the end and used for looping the QHs.*/
    435 	lsqh = uhci_alloc_sqh(sc);
    436 	if (lsqh == NULL)
    437 		return (USBD_NOMEM);
    438 	lsqh->hlink = NULL;
    439 	lsqh->qh.qh_hlink = htole32(UHCI_PTR_T);	/* end of QH chain */
    440 	lsqh->elink = std;
    441 	lsqh->qh.qh_elink = htole32(std->physaddr | UHCI_PTR_TD);
    442 	sc->sc_last_qh = lsqh;
    443 	usb_syncmem(&lsqh->dma, lsqh->offs, sizeof(lsqh->qh),
    444 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
    445 
    446 	/* Allocate the dummy QH where bulk traffic will be queued. */
    447 	bsqh = uhci_alloc_sqh(sc);
    448 	if (bsqh == NULL)
    449 		return (USBD_NOMEM);
    450 	bsqh->hlink = lsqh;
    451 	bsqh->qh.qh_hlink = htole32(lsqh->physaddr | UHCI_PTR_QH);
    452 	bsqh->elink = NULL;
    453 	bsqh->qh.qh_elink = htole32(UHCI_PTR_T);
    454 	sc->sc_bulk_start = sc->sc_bulk_end = bsqh;
    455 	usb_syncmem(&bsqh->dma, bsqh->offs, sizeof(bsqh->qh),
    456 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
    457 
    458 	/* Allocate dummy QH where high speed control traffic will be queued. */
    459 	chsqh = uhci_alloc_sqh(sc);
    460 	if (chsqh == NULL)
    461 		return (USBD_NOMEM);
    462 	chsqh->hlink = bsqh;
    463 	chsqh->qh.qh_hlink = htole32(bsqh->physaddr | UHCI_PTR_QH);
    464 	chsqh->elink = NULL;
    465 	chsqh->qh.qh_elink = htole32(UHCI_PTR_T);
    466 	sc->sc_hctl_start = sc->sc_hctl_end = chsqh;
    467 	usb_syncmem(&chsqh->dma, chsqh->offs, sizeof(chsqh->qh),
    468 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
    469 
    470 	/* Allocate dummy QH where control traffic will be queued. */
    471 	clsqh = uhci_alloc_sqh(sc);
    472 	if (clsqh == NULL)
    473 		return (USBD_NOMEM);
    474 	clsqh->hlink = chsqh;
    475 	clsqh->qh.qh_hlink = htole32(chsqh->physaddr | UHCI_PTR_QH);
    476 	clsqh->elink = NULL;
    477 	clsqh->qh.qh_elink = htole32(UHCI_PTR_T);
    478 	sc->sc_lctl_start = sc->sc_lctl_end = clsqh;
    479 	usb_syncmem(&clsqh->dma, clsqh->offs, sizeof(clsqh->qh),
    480 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
    481 
    482 	/*
    483 	 * Make all (virtual) frame list pointers point to the interrupt
    484 	 * queue heads and the interrupt queue heads at the control
    485 	 * queue head and point the physical frame list to the virtual.
    486 	 */
    487 	for(i = 0; i < UHCI_VFRAMELIST_COUNT; i++) {
    488 		std = uhci_alloc_std(sc);
    489 		sqh = uhci_alloc_sqh(sc);
    490 		if (std == NULL || sqh == NULL)
    491 			return (USBD_NOMEM);
    492 		std->link.sqh = sqh;
    493 		std->td.td_link = htole32(sqh->physaddr | UHCI_PTR_QH);
    494 		std->td.td_status = htole32(UHCI_TD_IOS); /* iso, inactive */
    495 		std->td.td_token = htole32(0);
    496 		std->td.td_buffer = htole32(0);
    497 		usb_syncmem(&std->dma, std->offs, sizeof(std->td),
    498 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
    499 		sqh->hlink = clsqh;
    500 		sqh->qh.qh_hlink = htole32(clsqh->physaddr | UHCI_PTR_QH);
    501 		sqh->elink = NULL;
    502 		sqh->qh.qh_elink = htole32(UHCI_PTR_T);
    503 		usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh),
    504 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
    505 		sc->sc_vframes[i].htd = std;
    506 		sc->sc_vframes[i].etd = std;
    507 		sc->sc_vframes[i].hqh = sqh;
    508 		sc->sc_vframes[i].eqh = sqh;
    509 		for (j = i;
    510 		     j < UHCI_FRAMELIST_COUNT;
    511 		     j += UHCI_VFRAMELIST_COUNT)
    512 			sc->sc_pframes[j] = htole32(std->physaddr);
    513 	}
    514 	usb_syncmem(&sc->sc_dma, 0,
    515 	    UHCI_FRAMELIST_COUNT * sizeof(uhci_physaddr_t),
    516 	    BUS_DMASYNC_PREWRITE);
    517 
    518 
    519 	LIST_INIT(&sc->sc_intrhead);
    520 
    521 	SIMPLEQ_INIT(&sc->sc_free_xfers);
    522 
    523 	callout_init(&sc->sc_poll_handle, 0);
    524 
    525 	/* Set up the bus struct. */
    526 	sc->sc_bus.methods = &uhci_bus_methods;
    527 	sc->sc_bus.pipe_size = sizeof(struct uhci_pipe);
    528 
    529 	UHCICMD(sc, UHCI_CMD_MAXP); /* Assume 64 byte packets at frame end */
    530 
    531 	DPRINTFN(1,("uhci_init: enabling\n"));
    532 
    533 	err =  uhci_run(sc, 1);		/* and here we go... */
    534 	UWRITE2(sc, UHCI_INTR, UHCI_INTR_TOCRCIE | UHCI_INTR_RIE |
    535 		UHCI_INTR_IOCE | UHCI_INTR_SPIE);	/* enable interrupts */
    536 	return err;
    537 }
    538 
    539 int
    540 uhci_activate(device_t self, enum devact act)
    541 {
    542 	struct uhci_softc *sc = device_private(self);
    543 
    544 	switch (act) {
    545 	case DVACT_DEACTIVATE:
    546 		sc->sc_dying = 1;
    547 		return 0;
    548 	default:
    549 		return EOPNOTSUPP;
    550 	}
    551 }
    552 
    553 void
    554 uhci_childdet(device_t self, device_t child)
    555 {
    556 	struct uhci_softc *sc = device_private(self);
    557 
    558 	KASSERT(sc->sc_child == child);
    559 	sc->sc_child = NULL;
    560 }
    561 
    562 int
    563 uhci_detach(struct uhci_softc *sc, int flags)
    564 {
    565 	usbd_xfer_handle xfer;
    566 	int rv = 0;
    567 
    568 	if (sc->sc_child != NULL)
    569 		rv = config_detach(sc->sc_child, flags);
    570 
    571 	if (rv != 0)
    572 		return (rv);
    573 
    574 	/* Free all xfers associated with this HC. */
    575 	for (;;) {
    576 		xfer = SIMPLEQ_FIRST(&sc->sc_free_xfers);
    577 		if (xfer == NULL)
    578 			break;
    579 		SIMPLEQ_REMOVE_HEAD(&sc->sc_free_xfers, next);
    580 		free(xfer, M_USB);
    581 	}
    582 
    583 	callout_halt(&sc->sc_poll_handle, NULL);
    584 	callout_destroy(&sc->sc_poll_handle);
    585 
    586 	/* XXX free other data structures XXX */
    587 
    588 	return (rv);
    589 }
    590 
    591 usbd_status
    592 uhci_allocm(struct usbd_bus *bus, usb_dma_t *dma, u_int32_t size)
    593 {
    594 	struct uhci_softc *sc = bus->hci_private;
    595 	usbd_status status;
    596 	u_int32_t n;
    597 
    598 	/*
    599 	 * XXX
    600 	 * Since we are allocating a buffer we can assume that we will
    601 	 * need TDs for it.  Since we don't want to allocate those from
    602 	 * an interrupt context, we allocate them here and free them again.
    603 	 * This is no guarantee that we'll get the TDs next time...
    604 	 */
    605 	n = size / 8;
    606 	if (n > 16) {
    607 		u_int32_t i;
    608 		uhci_soft_td_t **stds;
    609 		DPRINTF(("uhci_allocm: get %d TDs\n", n));
    610 		stds = malloc(sizeof(uhci_soft_td_t *) * n, M_TEMP,
    611 		    M_WAITOK|M_ZERO);
    612 		for(i=0; i < n; i++)
    613 			stds[i] = uhci_alloc_std(sc);
    614 		for(i=0; i < n; i++)
    615 			if (stds[i] != NULL)
    616 				uhci_free_std(sc, stds[i]);
    617 		free(stds, M_TEMP);
    618 	}
    619 
    620 
    621 	status = usb_allocmem(&sc->sc_bus, size, 0, dma);
    622 	if (status == USBD_NOMEM)
    623 		status = usb_reserve_allocm(&sc->sc_dma_reserve, dma, size);
    624 	return status;
    625 }
    626 
    627 void
    628 uhci_freem(struct usbd_bus *bus, usb_dma_t *dma)
    629 {
    630 	if (dma->block->flags & USB_DMA_RESERVE) {
    631 		usb_reserve_freem(&((struct uhci_softc *)bus)->sc_dma_reserve,
    632 		    dma);
    633 		return;
    634 	}
    635 	usb_freemem(&((struct uhci_softc *)bus)->sc_bus, dma);
    636 }
    637 
    638 usbd_xfer_handle
    639 uhci_allocx(struct usbd_bus *bus)
    640 {
    641 	struct uhci_softc *sc = bus->hci_private;
    642 	usbd_xfer_handle xfer;
    643 
    644 	xfer = SIMPLEQ_FIRST(&sc->sc_free_xfers);
    645 	if (xfer != NULL) {
    646 		SIMPLEQ_REMOVE_HEAD(&sc->sc_free_xfers, next);
    647 #ifdef DIAGNOSTIC
    648 		if (xfer->busy_free != XFER_FREE) {
    649 			printf("uhci_allocx: xfer=%p not free, 0x%08x\n", xfer,
    650 			       xfer->busy_free);
    651 		}
    652 #endif
    653 	} else {
    654 		xfer = malloc(sizeof(struct uhci_xfer), M_USB, M_NOWAIT);
    655 	}
    656 	if (xfer != NULL) {
    657 		memset(xfer, 0, sizeof (struct uhci_xfer));
    658 		UXFER(xfer)->iinfo.sc = sc;
    659 #ifdef DIAGNOSTIC
    660 		UXFER(xfer)->iinfo.isdone = 1;
    661 		xfer->busy_free = XFER_BUSY;
    662 #endif
    663 	}
    664 	return (xfer);
    665 }
    666 
    667 void
    668 uhci_freex(struct usbd_bus *bus, usbd_xfer_handle xfer)
    669 {
    670 	struct uhci_softc *sc = bus->hci_private;
    671 
    672 #ifdef DIAGNOSTIC
    673 	if (xfer->busy_free != XFER_BUSY) {
    674 		printf("uhci_freex: xfer=%p not busy, 0x%08x\n", xfer,
    675 		       xfer->busy_free);
    676 	}
    677 	xfer->busy_free = XFER_FREE;
    678 	if (!UXFER(xfer)->iinfo.isdone) {
    679 		printf("uhci_freex: !isdone\n");
    680 	}
    681 #endif
    682 	SIMPLEQ_INSERT_HEAD(&sc->sc_free_xfers, xfer, next);
    683 }
    684 
    685 /*
    686  * Handle suspend/resume.
    687  *
    688  * We need to switch to polling mode here, because this routine is
    689  * called from an interrupt context.  This is all right since we
    690  * are almost suspended anyway.
    691  */
    692 bool
    693 uhci_resume(device_t dv, const pmf_qual_t *qual)
    694 {
    695 	uhci_softc_t *sc = device_private(dv);
    696 	int cmd;
    697 	int s;
    698 
    699 	s = splhardusb();
    700 
    701 	cmd = UREAD2(sc, UHCI_CMD);
    702 	sc->sc_bus.use_polling++;
    703 	UWRITE2(sc, UHCI_INTR, 0);
    704 	uhci_globalreset(sc);
    705 	uhci_reset(sc);
    706 	if (cmd & UHCI_CMD_RS)
    707 		uhci_run(sc, 0);
    708 
    709 	/* restore saved state */
    710 	UWRITE4(sc, UHCI_FLBASEADDR, DMAADDR(&sc->sc_dma, 0));
    711 	UWRITE2(sc, UHCI_FRNUM, sc->sc_saved_frnum);
    712 	UWRITE1(sc, UHCI_SOF, sc->sc_saved_sof);
    713 
    714 	UHCICMD(sc, cmd | UHCI_CMD_FGR); /* force resume */
    715 	usb_delay_ms(&sc->sc_bus, USB_RESUME_DELAY);
    716 	UHCICMD(sc, cmd & ~UHCI_CMD_EGSM); /* back to normal */
    717 	UWRITE2(sc, UHCI_INTR, UHCI_INTR_TOCRCIE |
    718 	    UHCI_INTR_RIE | UHCI_INTR_IOCE | UHCI_INTR_SPIE);
    719 	UHCICMD(sc, UHCI_CMD_MAXP);
    720 	uhci_run(sc, 1); /* and start traffic again */
    721 	usb_delay_ms(&sc->sc_bus, USB_RESUME_RECOVERY);
    722 	sc->sc_bus.use_polling--;
    723 	if (sc->sc_intr_xfer != NULL)
    724 		callout_reset(&sc->sc_poll_handle, sc->sc_ival, uhci_poll_hub,
    725 		    sc->sc_intr_xfer);
    726 #ifdef UHCI_DEBUG
    727 	if (uhcidebug > 2)
    728 		uhci_dumpregs(sc);
    729 #endif
    730 
    731 	sc->sc_suspend = PWR_RESUME;
    732 	splx(s);
    733 
    734 	return true;
    735 }
    736 
    737 bool
    738 uhci_suspend(device_t dv, const pmf_qual_t *qual)
    739 {
    740 	uhci_softc_t *sc = device_private(dv);
    741 	int cmd;
    742 	int s;
    743 
    744 	s = splhardusb();
    745 
    746 	cmd = UREAD2(sc, UHCI_CMD);
    747 
    748 #ifdef UHCI_DEBUG
    749 	if (uhcidebug > 2)
    750 		uhci_dumpregs(sc);
    751 #endif
    752 	if (sc->sc_intr_xfer != NULL)
    753 		callout_stop(&sc->sc_poll_handle);
    754 	sc->sc_suspend = PWR_SUSPEND;
    755 	sc->sc_bus.use_polling++;
    756 
    757 	uhci_run(sc, 0); /* stop the controller */
    758 	cmd &= ~UHCI_CMD_RS;
    759 
    760 	/* save some state if BIOS doesn't */
    761 	sc->sc_saved_frnum = UREAD2(sc, UHCI_FRNUM);
    762 	sc->sc_saved_sof = UREAD1(sc, UHCI_SOF);
    763 
    764 	UWRITE2(sc, UHCI_INTR, 0); /* disable intrs */
    765 
    766 	UHCICMD(sc, cmd | UHCI_CMD_EGSM); /* enter suspend */
    767 	usb_delay_ms(&sc->sc_bus, USB_RESUME_WAIT);
    768 	sc->sc_bus.use_polling--;
    769 
    770 	splx(s);
    771 
    772 	return true;
    773 }
    774 
    775 #ifdef UHCI_DEBUG
    776 Static void
    777 uhci_dumpregs(uhci_softc_t *sc)
    778 {
    779 	DPRINTFN(-1,("%s regs: cmd=%04x, sts=%04x, intr=%04x, frnum=%04x, "
    780 		     "flbase=%08x, sof=%04x, portsc1=%04x, portsc2=%04x\n",
    781 		     device_xname(sc->sc_dev),
    782 		     UREAD2(sc, UHCI_CMD),
    783 		     UREAD2(sc, UHCI_STS),
    784 		     UREAD2(sc, UHCI_INTR),
    785 		     UREAD2(sc, UHCI_FRNUM),
    786 		     UREAD4(sc, UHCI_FLBASEADDR),
    787 		     UREAD1(sc, UHCI_SOF),
    788 		     UREAD2(sc, UHCI_PORTSC1),
    789 		     UREAD2(sc, UHCI_PORTSC2)));
    790 }
    791 
    792 void
    793 uhci_dump_td(uhci_soft_td_t *p)
    794 {
    795 	char sbuf[128], sbuf2[128];
    796 
    797 
    798 	usb_syncmem(&p->dma, p->offs, sizeof(p->td),
    799 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
    800 	DPRINTFN(-1,("TD(%p) at %08lx = link=0x%08lx status=0x%08lx "
    801 		     "token=0x%08lx buffer=0x%08lx\n",
    802 		     p, (long)p->physaddr,
    803 		     (long)le32toh(p->td.td_link),
    804 		     (long)le32toh(p->td.td_status),
    805 		     (long)le32toh(p->td.td_token),
    806 		     (long)le32toh(p->td.td_buffer)));
    807 
    808 	snprintb(sbuf, sizeof(sbuf), "\20\1T\2Q\3VF",
    809 	    (u_int32_t)le32toh(p->td.td_link));
    810 	snprintb(sbuf2, sizeof(sbuf2),
    811 	    "\20\22BITSTUFF\23CRCTO\24NAK\25BABBLE\26DBUFFER\27"
    812 	    "STALLED\30ACTIVE\31IOC\32ISO\33LS\36SPD",
    813 	    (u_int32_t)le32toh(p->td.td_status));
    814 
    815 	DPRINTFN(-1,("  %s %s,errcnt=%d,actlen=%d pid=%02x,addr=%d,endpt=%d,"
    816 		     "D=%d,maxlen=%d\n", sbuf, sbuf2,
    817 		     UHCI_TD_GET_ERRCNT(le32toh(p->td.td_status)),
    818 		     UHCI_TD_GET_ACTLEN(le32toh(p->td.td_status)),
    819 		     UHCI_TD_GET_PID(le32toh(p->td.td_token)),
    820 		     UHCI_TD_GET_DEVADDR(le32toh(p->td.td_token)),
    821 		     UHCI_TD_GET_ENDPT(le32toh(p->td.td_token)),
    822 		     UHCI_TD_GET_DT(le32toh(p->td.td_token)),
    823 		     UHCI_TD_GET_MAXLEN(le32toh(p->td.td_token))));
    824 	usb_syncmem(&p->dma, p->offs, sizeof(p->td),
    825 	    BUS_DMASYNC_PREREAD);
    826 }
    827 
    828 void
    829 uhci_dump_qh(uhci_soft_qh_t *sqh)
    830 {
    831 	usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh),
    832 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
    833 	DPRINTFN(-1,("QH(%p) at %08x: hlink=%08x elink=%08x\n", sqh,
    834 	    (int)sqh->physaddr, le32toh(sqh->qh.qh_hlink),
    835 	    le32toh(sqh->qh.qh_elink)));
    836 	usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh), BUS_DMASYNC_PREREAD);
    837 }
    838 
    839 
    840 #if 1
    841 void
    842 uhci_dump(void)
    843 {
    844 	uhci_dump_all(thesc);
    845 }
    846 #endif
    847 
    848 void
    849 uhci_dump_all(uhci_softc_t *sc)
    850 {
    851 	uhci_dumpregs(sc);
    852 	printf("intrs=%d\n", sc->sc_bus.no_intrs);
    853 	/*printf("framelist[i].link = %08x\n", sc->sc_framelist[0].link);*/
    854 	uhci_dump_qh(sc->sc_lctl_start);
    855 }
    856 
    857 
    858 void
    859 uhci_dump_qhs(uhci_soft_qh_t *sqh)
    860 {
    861 	uhci_dump_qh(sqh);
    862 
    863 	/* uhci_dump_qhs displays all the QHs and TDs from the given QH onwards
    864 	 * Traverses sideways first, then down.
    865 	 *
    866 	 * QH1
    867 	 * QH2
    868 	 * No QH
    869 	 * TD2.1
    870 	 * TD2.2
    871 	 * TD1.1
    872 	 * etc.
    873 	 *
    874 	 * TD2.x being the TDs queued at QH2 and QH1 being referenced from QH1.
    875 	 */
    876 
    877 
    878 	usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh),
    879 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
    880 	if (sqh->hlink != NULL && !(le32toh(sqh->qh.qh_hlink) & UHCI_PTR_T))
    881 		uhci_dump_qhs(sqh->hlink);
    882 	else
    883 		DPRINTF(("No QH\n"));
    884 	usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh), BUS_DMASYNC_PREREAD);
    885 
    886 	if (sqh->elink != NULL && !(le32toh(sqh->qh.qh_elink) & UHCI_PTR_T))
    887 		uhci_dump_tds(sqh->elink);
    888 	else
    889 		DPRINTF(("No TD\n"));
    890 }
    891 
    892 void
    893 uhci_dump_tds(uhci_soft_td_t *std)
    894 {
    895 	uhci_soft_td_t *td;
    896 	int stop;
    897 
    898 	for(td = std; td != NULL; td = td->link.std) {
    899 		uhci_dump_td(td);
    900 
    901 		/* Check whether the link pointer in this TD marks
    902 		 * the link pointer as end of queue. This avoids
    903 		 * printing the free list in case the queue/TD has
    904 		 * already been moved there (seatbelt).
    905 		 */
    906 		usb_syncmem(&td->dma, td->offs + offsetof(uhci_td_t, td_link),
    907 		    sizeof(td->td.td_link),
    908 		    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
    909 		stop = (le32toh(td->td.td_link) & UHCI_PTR_T ||
    910 			le32toh(td->td.td_link) == 0);
    911 		usb_syncmem(&td->dma, td->offs + offsetof(uhci_td_t, td_link),
    912 		    sizeof(td->td.td_link), BUS_DMASYNC_PREREAD);
    913 		if (stop)
    914 			break;
    915 	}
    916 }
    917 
    918 Static void
    919 uhci_dump_ii(uhci_intr_info_t *ii)
    920 {
    921 	usbd_pipe_handle pipe;
    922 	usb_endpoint_descriptor_t *ed;
    923 	usbd_device_handle dev;
    924 
    925 #ifdef DIAGNOSTIC
    926 #define DONE ii->isdone
    927 #else
    928 #define DONE 0
    929 #endif
    930         if (ii == NULL) {
    931                 printf("ii NULL\n");
    932                 return;
    933         }
    934         if (ii->xfer == NULL) {
    935 		printf("ii %p: done=%d xfer=NULL\n",
    936 		       ii, DONE);
    937                 return;
    938         }
    939         pipe = ii->xfer->pipe;
    940         if (pipe == NULL) {
    941 		printf("ii %p: done=%d xfer=%p pipe=NULL\n",
    942 		       ii, DONE, ii->xfer);
    943                 return;
    944 	}
    945         if (pipe->endpoint == NULL) {
    946 		printf("ii %p: done=%d xfer=%p pipe=%p pipe->endpoint=NULL\n",
    947 		       ii, DONE, ii->xfer, pipe);
    948                 return;
    949 	}
    950         if (pipe->device == NULL) {
    951 		printf("ii %p: done=%d xfer=%p pipe=%p pipe->device=NULL\n",
    952 		       ii, DONE, ii->xfer, pipe);
    953                 return;
    954 	}
    955         ed = pipe->endpoint->edesc;
    956         dev = pipe->device;
    957 	printf("ii %p: done=%d xfer=%p dev=%p vid=0x%04x pid=0x%04x addr=%d pipe=%p ep=0x%02x attr=0x%02x\n",
    958 	       ii, DONE, ii->xfer, dev,
    959 	       UGETW(dev->ddesc.idVendor),
    960 	       UGETW(dev->ddesc.idProduct),
    961 	       dev->address, pipe,
    962 	       ed->bEndpointAddress, ed->bmAttributes);
    963 #undef DONE
    964 }
    965 
    966 void uhci_dump_iis(struct uhci_softc *sc);
    967 void
    968 uhci_dump_iis(struct uhci_softc *sc)
    969 {
    970 	uhci_intr_info_t *ii;
    971 
    972 	printf("intr_info list:\n");
    973 	for (ii = LIST_FIRST(&sc->sc_intrhead); ii; ii = LIST_NEXT(ii, list))
    974 		uhci_dump_ii(ii);
    975 }
    976 
    977 void iidump(void);
    978 void iidump(void) { uhci_dump_iis(thesc); }
    979 
    980 #endif
    981 
    982 /*
    983  * This routine is executed periodically and simulates interrupts
    984  * from the root controller interrupt pipe for port status change.
    985  */
    986 void
    987 uhci_poll_hub(void *addr)
    988 {
    989 	usbd_xfer_handle xfer = addr;
    990 	usbd_pipe_handle pipe = xfer->pipe;
    991 	uhci_softc_t *sc;
    992 	int s;
    993 	u_char *p;
    994 
    995 	DPRINTFN(20, ("uhci_poll_hub\n"));
    996 
    997 	if (__predict_false(pipe->device == NULL || pipe->device->bus == NULL))
    998 		return;	/* device has detached */
    999 	sc = pipe->device->bus->hci_private;
   1000 	callout_reset(&sc->sc_poll_handle, sc->sc_ival, uhci_poll_hub, xfer);
   1001 
   1002 	p = KERNADDR(&xfer->dmabuf, 0);
   1003 	p[0] = 0;
   1004 	if (UREAD2(sc, UHCI_PORTSC1) & (UHCI_PORTSC_CSC|UHCI_PORTSC_OCIC))
   1005 		p[0] |= 1<<1;
   1006 	if (UREAD2(sc, UHCI_PORTSC2) & (UHCI_PORTSC_CSC|UHCI_PORTSC_OCIC))
   1007 		p[0] |= 1<<2;
   1008 	if (p[0] == 0)
   1009 		/* No change, try again in a while */
   1010 		return;
   1011 
   1012 	xfer->actlen = 1;
   1013 	xfer->status = USBD_NORMAL_COMPLETION;
   1014 	s = splusb();
   1015 	xfer->device->bus->intr_context++;
   1016 	usb_transfer_complete(xfer);
   1017 	xfer->device->bus->intr_context--;
   1018 	splx(s);
   1019 }
   1020 
   1021 void
   1022 uhci_root_intr_done(usbd_xfer_handle xfer)
   1023 {
   1024 }
   1025 
   1026 void
   1027 uhci_root_ctrl_done(usbd_xfer_handle xfer)
   1028 {
   1029 }
   1030 
   1031 /*
   1032  * Let the last QH loop back to the high speed control transfer QH.
   1033  * This is what intel calls "bandwidth reclamation" and improves
   1034  * USB performance a lot for some devices.
   1035  * If we are already looping, just count it.
   1036  */
   1037 void
   1038 uhci_add_loop(uhci_softc_t *sc) {
   1039 #ifdef UHCI_DEBUG
   1040 	if (uhcinoloop)
   1041 		return;
   1042 #endif
   1043 	if (++sc->sc_loops == 1) {
   1044 		DPRINTFN(5,("uhci_start_loop: add\n"));
   1045 		/* Note, we don't loop back the soft pointer. */
   1046 		sc->sc_last_qh->qh.qh_hlink =
   1047 		    htole32(sc->sc_hctl_start->physaddr | UHCI_PTR_QH);
   1048 		usb_syncmem(&sc->sc_last_qh->dma,
   1049 		    sc->sc_last_qh->offs + offsetof(uhci_qh_t, qh_hlink),
   1050 		    sizeof(sc->sc_last_qh->qh.qh_hlink),
   1051 		    BUS_DMASYNC_PREWRITE);
   1052 	}
   1053 }
   1054 
   1055 void
   1056 uhci_rem_loop(uhci_softc_t *sc) {
   1057 #ifdef UHCI_DEBUG
   1058 	if (uhcinoloop)
   1059 		return;
   1060 #endif
   1061 	if (--sc->sc_loops == 0) {
   1062 		DPRINTFN(5,("uhci_end_loop: remove\n"));
   1063 		sc->sc_last_qh->qh.qh_hlink = htole32(UHCI_PTR_T);
   1064 		usb_syncmem(&sc->sc_last_qh->dma,
   1065 		    sc->sc_last_qh->offs + offsetof(uhci_qh_t, qh_hlink),
   1066 		    sizeof(sc->sc_last_qh->qh.qh_hlink),
   1067 		    BUS_DMASYNC_PREWRITE);
   1068 	}
   1069 }
   1070 
   1071 /* Add high speed control QH, called at splusb(). */
   1072 void
   1073 uhci_add_hs_ctrl(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
   1074 {
   1075 	uhci_soft_qh_t *eqh;
   1076 
   1077 	SPLUSBCHECK;
   1078 
   1079 	DPRINTFN(10, ("uhci_add_ctrl: sqh=%p\n", sqh));
   1080 	eqh = sc->sc_hctl_end;
   1081 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1082 	    sizeof(eqh->qh.qh_hlink),
   1083 	    BUS_DMASYNC_POSTWRITE);
   1084 	sqh->hlink       = eqh->hlink;
   1085 	sqh->qh.qh_hlink = eqh->qh.qh_hlink;
   1086 	usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh),
   1087 	    BUS_DMASYNC_PREWRITE);
   1088 	eqh->hlink       = sqh;
   1089 	eqh->qh.qh_hlink = htole32(sqh->physaddr | UHCI_PTR_QH);
   1090 	sc->sc_hctl_end = sqh;
   1091 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1092 	    sizeof(eqh->qh.qh_hlink), BUS_DMASYNC_PREWRITE);
   1093 #ifdef UHCI_CTL_LOOP
   1094 	uhci_add_loop(sc);
   1095 #endif
   1096 }
   1097 
   1098 /* Remove high speed control QH, called at splusb(). */
   1099 void
   1100 uhci_remove_hs_ctrl(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
   1101 {
   1102 	uhci_soft_qh_t *pqh;
   1103 
   1104 	SPLUSBCHECK;
   1105 
   1106 	DPRINTFN(10, ("uhci_remove_hs_ctrl: sqh=%p\n", sqh));
   1107 #ifdef UHCI_CTL_LOOP
   1108 	uhci_rem_loop(sc);
   1109 #endif
   1110 	/*
   1111 	 * The T bit should be set in the elink of the QH so that the HC
   1112 	 * doesn't follow the pointer.  This condition may fail if the
   1113 	 * the transferred packet was short so that the QH still points
   1114 	 * at the last used TD.
   1115 	 * In this case we set the T bit and wait a little for the HC
   1116 	 * to stop looking at the TD.
   1117 	 * Note that if the TD chain is large enough, the controller
   1118 	 * may still be looking at the chain at the end of this function.
   1119 	 * uhci_free_std_chain() will make sure the controller stops
   1120 	 * looking at it quickly, but until then we should not change
   1121 	 * sqh->hlink.
   1122 	 */
   1123 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_elink),
   1124 	    sizeof(sqh->qh.qh_elink),
   1125 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   1126 	if (!(sqh->qh.qh_elink & htole32(UHCI_PTR_T))) {
   1127 		sqh->qh.qh_elink = htole32(UHCI_PTR_T);
   1128 		usb_syncmem(&sqh->dma,
   1129 		    sqh->offs + offsetof(uhci_qh_t, qh_elink),
   1130 		    sizeof(sqh->qh.qh_elink),
   1131 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1132 		delay(UHCI_QH_REMOVE_DELAY);
   1133 	}
   1134 
   1135 	pqh = uhci_find_prev_qh(sc->sc_hctl_start, sqh);
   1136 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1137 	    sizeof(sqh->qh.qh_hlink), BUS_DMASYNC_POSTWRITE);
   1138 	pqh->hlink = sqh->hlink;
   1139 	pqh->qh.qh_hlink = sqh->qh.qh_hlink;
   1140 	usb_syncmem(&pqh->dma, pqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1141 	    sizeof(pqh->qh.qh_hlink),
   1142 	    BUS_DMASYNC_PREWRITE);
   1143 	delay(UHCI_QH_REMOVE_DELAY);
   1144 	if (sc->sc_hctl_end == sqh)
   1145 		sc->sc_hctl_end = pqh;
   1146 }
   1147 
   1148 /* Add low speed control QH, called at splusb(). */
   1149 void
   1150 uhci_add_ls_ctrl(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
   1151 {
   1152 	uhci_soft_qh_t *eqh;
   1153 
   1154 	SPLUSBCHECK;
   1155 
   1156 	DPRINTFN(10, ("uhci_add_ls_ctrl: sqh=%p\n", sqh));
   1157 	eqh = sc->sc_lctl_end;
   1158 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1159 	    sizeof(eqh->qh.qh_hlink), BUS_DMASYNC_POSTWRITE);
   1160 	sqh->hlink = eqh->hlink;
   1161 	sqh->qh.qh_hlink = eqh->qh.qh_hlink;
   1162 	usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh),
   1163 	    BUS_DMASYNC_PREWRITE);
   1164 	eqh->hlink = sqh;
   1165 	eqh->qh.qh_hlink = htole32(sqh->physaddr | UHCI_PTR_QH);
   1166 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1167 	    sizeof(eqh->qh.qh_hlink), BUS_DMASYNC_PREWRITE);
   1168 	sc->sc_lctl_end = sqh;
   1169 }
   1170 
   1171 /* Remove low speed control QH, called at splusb(). */
   1172 void
   1173 uhci_remove_ls_ctrl(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
   1174 {
   1175 	uhci_soft_qh_t *pqh;
   1176 
   1177 	SPLUSBCHECK;
   1178 
   1179 	DPRINTFN(10, ("uhci_remove_ls_ctrl: sqh=%p\n", sqh));
   1180 	/* See comment in uhci_remove_hs_ctrl() */
   1181 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_elink),
   1182 	    sizeof(sqh->qh.qh_elink),
   1183 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   1184 	if (!(sqh->qh.qh_elink & htole32(UHCI_PTR_T))) {
   1185 		sqh->qh.qh_elink = htole32(UHCI_PTR_T);
   1186 		usb_syncmem(&sqh->dma,
   1187 		    sqh->offs + offsetof(uhci_qh_t, qh_elink),
   1188 		    sizeof(sqh->qh.qh_elink),
   1189 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1190 		delay(UHCI_QH_REMOVE_DELAY);
   1191 	}
   1192 	pqh = uhci_find_prev_qh(sc->sc_lctl_start, sqh);
   1193 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1194 	    sizeof(sqh->qh.qh_hlink), BUS_DMASYNC_POSTWRITE);
   1195 	pqh->hlink = sqh->hlink;
   1196 	pqh->qh.qh_hlink = sqh->qh.qh_hlink;
   1197 	usb_syncmem(&pqh->dma, pqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1198 	    sizeof(pqh->qh.qh_hlink),
   1199 	    BUS_DMASYNC_PREWRITE);
   1200 	delay(UHCI_QH_REMOVE_DELAY);
   1201 	if (sc->sc_lctl_end == sqh)
   1202 		sc->sc_lctl_end = pqh;
   1203 }
   1204 
   1205 /* Add bulk QH, called at splusb(). */
   1206 void
   1207 uhci_add_bulk(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
   1208 {
   1209 	uhci_soft_qh_t *eqh;
   1210 
   1211 	SPLUSBCHECK;
   1212 
   1213 	DPRINTFN(10, ("uhci_add_bulk: sqh=%p\n", sqh));
   1214 	eqh = sc->sc_bulk_end;
   1215 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1216 	    sizeof(eqh->qh.qh_hlink), BUS_DMASYNC_POSTWRITE);
   1217 	sqh->hlink = eqh->hlink;
   1218 	sqh->qh.qh_hlink = eqh->qh.qh_hlink;
   1219 	usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh),
   1220 	    BUS_DMASYNC_PREWRITE);
   1221 	eqh->hlink = sqh;
   1222 	eqh->qh.qh_hlink = htole32(sqh->physaddr | UHCI_PTR_QH);
   1223 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1224 	    sizeof(eqh->qh.qh_hlink), BUS_DMASYNC_PREWRITE);
   1225 	sc->sc_bulk_end = sqh;
   1226 	uhci_add_loop(sc);
   1227 }
   1228 
   1229 /* Remove bulk QH, called at splusb(). */
   1230 void
   1231 uhci_remove_bulk(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
   1232 {
   1233 	uhci_soft_qh_t *pqh;
   1234 
   1235 	SPLUSBCHECK;
   1236 
   1237 	DPRINTFN(10, ("uhci_remove_bulk: sqh=%p\n", sqh));
   1238 	uhci_rem_loop(sc);
   1239 	/* See comment in uhci_remove_hs_ctrl() */
   1240 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_elink),
   1241 	    sizeof(sqh->qh.qh_elink),
   1242 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   1243 	if (!(sqh->qh.qh_elink & htole32(UHCI_PTR_T))) {
   1244 		sqh->qh.qh_elink = htole32(UHCI_PTR_T);
   1245 		usb_syncmem(&sqh->dma,
   1246 		    sqh->offs + offsetof(uhci_qh_t, qh_elink),
   1247 		    sizeof(sqh->qh.qh_elink),
   1248 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1249 		delay(UHCI_QH_REMOVE_DELAY);
   1250 	}
   1251 	pqh = uhci_find_prev_qh(sc->sc_bulk_start, sqh);
   1252 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1253 	    sizeof(sqh->qh.qh_hlink), BUS_DMASYNC_POSTWRITE);
   1254 	pqh->hlink       = sqh->hlink;
   1255 	pqh->qh.qh_hlink = sqh->qh.qh_hlink;
   1256 	usb_syncmem(&pqh->dma, pqh->offs + offsetof(uhci_qh_t, qh_hlink),
   1257 	    sizeof(pqh->qh.qh_hlink), BUS_DMASYNC_PREWRITE);
   1258 	delay(UHCI_QH_REMOVE_DELAY);
   1259 	if (sc->sc_bulk_end == sqh)
   1260 		sc->sc_bulk_end = pqh;
   1261 }
   1262 
   1263 Static int uhci_intr1(uhci_softc_t *);
   1264 
   1265 int
   1266 uhci_intr(void *arg)
   1267 {
   1268 	uhci_softc_t *sc = arg;
   1269 
   1270 	if (sc->sc_dying || !device_has_power(sc->sc_dev))
   1271 		return (0);
   1272 
   1273 	if (sc->sc_bus.use_polling || UREAD2(sc, UHCI_INTR) == 0) {
   1274 #ifdef DIAGNOSTIC
   1275 		DPRINTFN(16, ("uhci_intr: ignored interrupt while polling\n"));
   1276 #endif
   1277 		return (0);
   1278 	}
   1279 
   1280 	return (uhci_intr1(sc));
   1281 }
   1282 
   1283 int
   1284 uhci_intr1(uhci_softc_t *sc)
   1285 {
   1286 	int status;
   1287 	int ack;
   1288 
   1289 #ifdef UHCI_DEBUG
   1290 	if (uhcidebug > 15) {
   1291 		DPRINTF(("%s: uhci_intr1\n", device_xname(sc->sc_dev)));
   1292 		uhci_dumpregs(sc);
   1293 	}
   1294 #endif
   1295 
   1296 	status = UREAD2(sc, UHCI_STS) & UHCI_STS_ALLINTRS;
   1297 	if (status == 0)	/* The interrupt was not for us. */
   1298 		return (0);
   1299 
   1300 	if (sc->sc_suspend != PWR_RESUME) {
   1301 #ifdef DIAGNOSTIC
   1302 		printf("%s: interrupt while not operating ignored\n",
   1303 		       device_xname(sc->sc_dev));
   1304 #endif
   1305 		UWRITE2(sc, UHCI_STS, status); /* acknowledge the ints */
   1306 		return (0);
   1307 	}
   1308 
   1309 	ack = 0;
   1310 	if (status & UHCI_STS_USBINT)
   1311 		ack |= UHCI_STS_USBINT;
   1312 	if (status & UHCI_STS_USBEI)
   1313 		ack |= UHCI_STS_USBEI;
   1314 	if (status & UHCI_STS_RD) {
   1315 		ack |= UHCI_STS_RD;
   1316 #ifdef UHCI_DEBUG
   1317 		printf("%s: resume detect\n", device_xname(sc->sc_dev));
   1318 #endif
   1319 	}
   1320 	if (status & UHCI_STS_HSE) {
   1321 		ack |= UHCI_STS_HSE;
   1322 		printf("%s: host system error\n", device_xname(sc->sc_dev));
   1323 	}
   1324 	if (status & UHCI_STS_HCPE) {
   1325 		ack |= UHCI_STS_HCPE;
   1326 		printf("%s: host controller process error\n",
   1327 		       device_xname(sc->sc_dev));
   1328 	}
   1329 
   1330 	/* When HCHalted=1 and Run/Stop=0 , it is normal */
   1331 	if ((status & UHCI_STS_HCH) && (UREAD2(sc, UHCI_CMD) & UHCI_CMD_RS)) {
   1332 		/* no acknowledge needed */
   1333 		if (!sc->sc_dying) {
   1334 			printf("%s: host controller halted\n",
   1335 			    device_xname(sc->sc_dev));
   1336 #ifdef UHCI_DEBUG
   1337 			uhci_dump_all(sc);
   1338 #endif
   1339 		}
   1340 		sc->sc_dying = 1;
   1341 	}
   1342 
   1343 	if (!ack)
   1344 		return (0);	/* nothing to acknowledge */
   1345 	UWRITE2(sc, UHCI_STS, ack); /* acknowledge the ints */
   1346 
   1347 	sc->sc_bus.no_intrs++;
   1348 	usb_schedsoftintr(&sc->sc_bus);
   1349 
   1350 	DPRINTFN(15, ("%s: uhci_intr: exit\n", device_xname(sc->sc_dev)));
   1351 
   1352 	return (1);
   1353 }
   1354 
   1355 void
   1356 uhci_softintr(void *v)
   1357 {
   1358 	struct usbd_bus *bus = v;
   1359 	uhci_softc_t *sc = bus->hci_private;
   1360 	uhci_intr_info_t *ii, *nextii;
   1361 
   1362 	DPRINTFN(10,("%s: uhci_softintr (%d)\n", device_xname(sc->sc_dev),
   1363 		     sc->sc_bus.intr_context));
   1364 
   1365 	sc->sc_bus.intr_context++;
   1366 
   1367 	/*
   1368 	 * Interrupts on UHCI really suck.  When the host controller
   1369 	 * interrupts because a transfer is completed there is no
   1370 	 * way of knowing which transfer it was.  You can scan down
   1371 	 * the TDs and QHs of the previous frame to limit the search,
   1372 	 * but that assumes that the interrupt was not delayed by more
   1373 	 * than 1 ms, which may not always be true (e.g. after debug
   1374 	 * output on a slow console).
   1375 	 * We scan all interrupt descriptors to see if any have
   1376 	 * completed.
   1377 	 */
   1378 	for (ii = LIST_FIRST(&sc->sc_intrhead); ii; ii = nextii) {
   1379 		nextii = LIST_NEXT(ii, list);
   1380 		uhci_check_intr(sc, ii);
   1381 	}
   1382 
   1383 #ifdef USB_USE_SOFTINTR
   1384 	if (sc->sc_softwake) {
   1385 		sc->sc_softwake = 0;
   1386 		wakeup(&sc->sc_softwake);
   1387 	}
   1388 #endif /* USB_USE_SOFTINTR */
   1389 
   1390 	sc->sc_bus.intr_context--;
   1391 }
   1392 
   1393 /* Check for an interrupt. */
   1394 void
   1395 uhci_check_intr(uhci_softc_t *sc, uhci_intr_info_t *ii)
   1396 {
   1397 	uhci_soft_td_t *std, *lstd;
   1398 	u_int32_t status;
   1399 
   1400 	DPRINTFN(15, ("uhci_check_intr: ii=%p\n", ii));
   1401 #ifdef DIAGNOSTIC
   1402 	if (ii == NULL) {
   1403 		printf("uhci_check_intr: no ii? %p\n", ii);
   1404 		return;
   1405 	}
   1406 #endif
   1407 	if (ii->xfer->status == USBD_CANCELLED ||
   1408 	    ii->xfer->status == USBD_TIMEOUT) {
   1409 		DPRINTF(("uhci_check_intr: aborted xfer=%p\n", ii->xfer));
   1410 		return;
   1411 	}
   1412 
   1413 	if (ii->stdstart == NULL)
   1414 		return;
   1415 	lstd = ii->stdend;
   1416 #ifdef DIAGNOSTIC
   1417 	if (lstd == NULL) {
   1418 		printf("uhci_check_intr: std==0\n");
   1419 		return;
   1420 	}
   1421 #endif
   1422 	/*
   1423 	 * If the last TD is still active we need to check whether there
   1424 	 * is an error somewhere in the middle, or whether there was a
   1425 	 * short packet (SPD and not ACTIVE).
   1426 	 */
   1427 	usb_syncmem(&lstd->dma,
   1428 	    lstd->offs + offsetof(uhci_td_t, td_status),
   1429 	    sizeof(lstd->td.td_status),
   1430 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   1431 	if (le32toh(lstd->td.td_status) & UHCI_TD_ACTIVE) {
   1432 		DPRINTFN(12, ("uhci_check_intr: active ii=%p\n", ii));
   1433 		for (std = ii->stdstart; std != lstd; std = std->link.std) {
   1434 			usb_syncmem(&std->dma,
   1435 			    std->offs + offsetof(uhci_td_t, td_status),
   1436 			    sizeof(std->td.td_status),
   1437 			    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   1438 			status = le32toh(std->td.td_status);
   1439 			usb_syncmem(&std->dma,
   1440 			    std->offs + offsetof(uhci_td_t, td_status),
   1441 			    sizeof(std->td.td_status), BUS_DMASYNC_PREREAD);
   1442 			/* If there's an active TD the xfer isn't done. */
   1443 			if (status & UHCI_TD_ACTIVE)
   1444 				break;
   1445 			/* Any kind of error makes the xfer done. */
   1446 			if (status & UHCI_TD_STALLED)
   1447 				goto done;
   1448 			/* We want short packets, and it is short: it's done */
   1449 			usb_syncmem(&std->dma,
   1450 			    std->offs + offsetof(uhci_td_t, td_token),
   1451 			    sizeof(std->td.td_token),
   1452 			    BUS_DMASYNC_POSTWRITE);
   1453 			if ((status & UHCI_TD_SPD) &&
   1454 			      UHCI_TD_GET_ACTLEN(status) <
   1455 			      UHCI_TD_GET_MAXLEN(le32toh(std->td.td_token)))
   1456 				goto done;
   1457 		}
   1458 		DPRINTFN(12, ("uhci_check_intr: ii=%p std=%p still active\n",
   1459 			      ii, ii->stdstart));
   1460 		usb_syncmem(&lstd->dma,
   1461 		    lstd->offs + offsetof(uhci_td_t, td_status),
   1462 		    sizeof(lstd->td.td_status),
   1463 		    BUS_DMASYNC_PREREAD);
   1464 		return;
   1465 	}
   1466  done:
   1467 	DPRINTFN(12, ("uhci_check_intr: ii=%p done\n", ii));
   1468 	callout_stop(&ii->xfer->timeout_handle);
   1469 	uhci_idone(ii);
   1470 }
   1471 
   1472 /* Called at splusb() */
   1473 void
   1474 uhci_idone(uhci_intr_info_t *ii)
   1475 {
   1476 	usbd_xfer_handle xfer = ii->xfer;
   1477 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   1478 	uhci_soft_td_t *std;
   1479 	u_int32_t status = 0, nstatus;
   1480 	int actlen;
   1481 
   1482 	DPRINTFN(12, ("uhci_idone: ii=%p\n", ii));
   1483 #ifdef DIAGNOSTIC
   1484 	{
   1485 		int s = splhigh();
   1486 		if (ii->isdone) {
   1487 			splx(s);
   1488 #ifdef UHCI_DEBUG
   1489 			printf("uhci_idone: ii is done!\n   ");
   1490 			uhci_dump_ii(ii);
   1491 #else
   1492 			printf("uhci_idone: ii=%p is done!\n", ii);
   1493 #endif
   1494 			return;
   1495 		}
   1496 		ii->isdone = 1;
   1497 		splx(s);
   1498 	}
   1499 #endif
   1500 
   1501 	if (xfer->nframes != 0) {
   1502 		/* Isoc transfer, do things differently. */
   1503 		uhci_soft_td_t **stds = upipe->u.iso.stds;
   1504 		int i, n, nframes, len;
   1505 
   1506 		DPRINTFN(5,("uhci_idone: ii=%p isoc ready\n", ii));
   1507 
   1508 		nframes = xfer->nframes;
   1509 		actlen = 0;
   1510 		n = UXFER(xfer)->curframe;
   1511 		for (i = 0; i < nframes; i++) {
   1512 			std = stds[n];
   1513 #ifdef UHCI_DEBUG
   1514 			if (uhcidebug > 5) {
   1515 				DPRINTFN(-1,("uhci_idone: isoc TD %d\n", i));
   1516 				uhci_dump_td(std);
   1517 			}
   1518 #endif
   1519 			if (++n >= UHCI_VFRAMELIST_COUNT)
   1520 				n = 0;
   1521 			usb_syncmem(&std->dma,
   1522 			    std->offs + offsetof(uhci_td_t, td_status),
   1523 			    sizeof(std->td.td_status),
   1524 			    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   1525 			status = le32toh(std->td.td_status);
   1526 			len = UHCI_TD_GET_ACTLEN(status);
   1527 			xfer->frlengths[i] = len;
   1528 			actlen += len;
   1529 		}
   1530 		upipe->u.iso.inuse -= nframes;
   1531 		xfer->actlen = actlen;
   1532 		xfer->status = USBD_NORMAL_COMPLETION;
   1533 		goto end;
   1534 	}
   1535 
   1536 #ifdef UHCI_DEBUG
   1537 	DPRINTFN(10, ("uhci_idone: ii=%p, xfer=%p, pipe=%p ready\n",
   1538 		      ii, xfer, upipe));
   1539 	if (uhcidebug > 10)
   1540 		uhci_dump_tds(ii->stdstart);
   1541 #endif
   1542 
   1543 	/* The transfer is done, compute actual length and status. */
   1544 	actlen = 0;
   1545 	for (std = ii->stdstart; std != NULL; std = std->link.std) {
   1546 		usb_syncmem(&std->dma, std->offs, sizeof(std->td),
   1547 		    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   1548 		nstatus = le32toh(std->td.td_status);
   1549 		if (nstatus & UHCI_TD_ACTIVE)
   1550 			break;
   1551 
   1552 		status = nstatus;
   1553 		if (UHCI_TD_GET_PID(le32toh(std->td.td_token)) !=
   1554 			UHCI_TD_PID_SETUP)
   1555 			actlen += UHCI_TD_GET_ACTLEN(status);
   1556 		else {
   1557 			/*
   1558 			 * UHCI will report CRCTO in addition to a STALL or NAK
   1559 			 * for a SETUP transaction.  See section 3.2.2, "TD
   1560 			 * CONTROL AND STATUS".
   1561 			 */
   1562 			if (status & (UHCI_TD_STALLED | UHCI_TD_NAK))
   1563 				status &= ~UHCI_TD_CRCTO;
   1564 		}
   1565 	}
   1566 	/* If there are left over TDs we need to update the toggle. */
   1567 	if (std != NULL)
   1568 		upipe->nexttoggle = UHCI_TD_GET_DT(le32toh(std->td.td_token));
   1569 
   1570 	status &= UHCI_TD_ERROR;
   1571 	DPRINTFN(10, ("uhci_idone: actlen=%d, status=0x%x\n",
   1572 		      actlen, status));
   1573 	xfer->actlen = actlen;
   1574 	if (status != 0) {
   1575 #ifdef UHCI_DEBUG
   1576 		char sbuf[128];
   1577 
   1578 		snprintb(sbuf, sizeof(sbuf),
   1579 		    "\20\22BITSTUFF\23CRCTO\24NAK\25"
   1580 		    "BABBLE\26DBUFFER\27STALLED\30ACTIVE",(u_int32_t)status);
   1581 
   1582 		DPRINTFN((status == UHCI_TD_STALLED)*10,
   1583 			 ("uhci_idone: error, addr=%d, endpt=0x%02x, "
   1584 			  "status 0x%s\n",
   1585 			  xfer->pipe->device->address,
   1586 			  xfer->pipe->endpoint->edesc->bEndpointAddress,
   1587 			  sbuf));
   1588 #endif
   1589 
   1590 		if (status == UHCI_TD_STALLED)
   1591 			xfer->status = USBD_STALLED;
   1592 		else
   1593 			xfer->status = USBD_IOERROR; /* more info XXX */
   1594 	} else {
   1595 		xfer->status = USBD_NORMAL_COMPLETION;
   1596 	}
   1597 
   1598  end:
   1599 	usb_transfer_complete(xfer);
   1600 	DPRINTFN(12, ("uhci_idone: ii=%p done\n", ii));
   1601 }
   1602 
   1603 /*
   1604  * Called when a request does not complete.
   1605  */
   1606 void
   1607 uhci_timeout(void *addr)
   1608 {
   1609 	uhci_intr_info_t *ii = addr;
   1610 	struct uhci_xfer *uxfer = UXFER(ii->xfer);
   1611 	struct uhci_pipe *upipe = (struct uhci_pipe *)uxfer->xfer.pipe;
   1612 	uhci_softc_t *sc = upipe->pipe.device->bus->hci_private;
   1613 
   1614 	DPRINTF(("uhci_timeout: uxfer=%p\n", uxfer));
   1615 
   1616 	if (sc->sc_dying) {
   1617 		uhci_abort_xfer(&uxfer->xfer, USBD_TIMEOUT);
   1618 		return;
   1619 	}
   1620 
   1621 	/* Execute the abort in a process context. */
   1622 	usb_init_task(&uxfer->abort_task, uhci_timeout_task, ii->xfer);
   1623 	usb_add_task(uxfer->xfer.pipe->device, &uxfer->abort_task,
   1624 	    USB_TASKQ_HC);
   1625 }
   1626 
   1627 void
   1628 uhci_timeout_task(void *addr)
   1629 {
   1630 	usbd_xfer_handle xfer = addr;
   1631 	int s;
   1632 
   1633 	DPRINTF(("uhci_timeout_task: xfer=%p\n", xfer));
   1634 
   1635 	s = splusb();
   1636 	uhci_abort_xfer(xfer, USBD_TIMEOUT);
   1637 	splx(s);
   1638 }
   1639 
   1640 /*
   1641  * Wait here until controller claims to have an interrupt.
   1642  * Then call uhci_intr and return.  Use timeout to avoid waiting
   1643  * too long.
   1644  * Only used during boot when interrupts are not enabled yet.
   1645  */
   1646 void
   1647 uhci_waitintr(uhci_softc_t *sc, usbd_xfer_handle xfer)
   1648 {
   1649 	int timo = xfer->timeout;
   1650 	uhci_intr_info_t *ii;
   1651 
   1652 	DPRINTFN(10,("uhci_waitintr: timeout = %dms\n", timo));
   1653 
   1654 	xfer->status = USBD_IN_PROGRESS;
   1655 	for (; timo >= 0; timo--) {
   1656 		usb_delay_ms(&sc->sc_bus, 1);
   1657 		DPRINTFN(20,("uhci_waitintr: 0x%04x\n", UREAD2(sc, UHCI_STS)));
   1658 		if (UREAD2(sc, UHCI_STS) & UHCI_STS_USBINT) {
   1659 			uhci_intr1(sc);
   1660 			if (xfer->status != USBD_IN_PROGRESS)
   1661 				return;
   1662 		}
   1663 	}
   1664 
   1665 	/* Timeout */
   1666 	DPRINTF(("uhci_waitintr: timeout\n"));
   1667 	for (ii = LIST_FIRST(&sc->sc_intrhead);
   1668 	     ii != NULL && ii->xfer != xfer;
   1669 	     ii = LIST_NEXT(ii, list))
   1670 		;
   1671 #ifdef DIAGNOSTIC
   1672 	if (ii == NULL)
   1673 		panic("uhci_waitintr: lost intr_info");
   1674 #endif
   1675 	uhci_idone(ii);
   1676 }
   1677 
   1678 void
   1679 uhci_poll(struct usbd_bus *bus)
   1680 {
   1681 	uhci_softc_t *sc = bus->hci_private;
   1682 
   1683 	if (UREAD2(sc, UHCI_STS) & UHCI_STS_USBINT)
   1684 		uhci_intr1(sc);
   1685 }
   1686 
   1687 void
   1688 uhci_reset(uhci_softc_t *sc)
   1689 {
   1690 	int n;
   1691 
   1692 	UHCICMD(sc, UHCI_CMD_HCRESET);
   1693 	/* The reset bit goes low when the controller is done. */
   1694 	for (n = 0; n < UHCI_RESET_TIMEOUT &&
   1695 		    (UREAD2(sc, UHCI_CMD) & UHCI_CMD_HCRESET); n++)
   1696 		usb_delay_ms(&sc->sc_bus, 1);
   1697 	if (n >= UHCI_RESET_TIMEOUT)
   1698 		printf("%s: controller did not reset\n",
   1699 		       device_xname(sc->sc_dev));
   1700 }
   1701 
   1702 usbd_status
   1703 uhci_run(uhci_softc_t *sc, int run)
   1704 {
   1705 	int s, n, running;
   1706 	u_int16_t cmd;
   1707 
   1708 	run = run != 0;
   1709 	s = splhardusb();
   1710 	DPRINTF(("uhci_run: setting run=%d\n", run));
   1711 	cmd = UREAD2(sc, UHCI_CMD);
   1712 	if (run)
   1713 		cmd |= UHCI_CMD_RS;
   1714 	else
   1715 		cmd &= ~UHCI_CMD_RS;
   1716 	UHCICMD(sc, cmd);
   1717 	for(n = 0; n < 10; n++) {
   1718 		running = !(UREAD2(sc, UHCI_STS) & UHCI_STS_HCH);
   1719 		/* return when we've entered the state we want */
   1720 		if (run == running) {
   1721 			splx(s);
   1722 			DPRINTF(("uhci_run: done cmd=0x%x sts=0x%x\n",
   1723 				 UREAD2(sc, UHCI_CMD), UREAD2(sc, UHCI_STS)));
   1724 			return (USBD_NORMAL_COMPLETION);
   1725 		}
   1726 		usb_delay_ms(&sc->sc_bus, 1);
   1727 	}
   1728 	splx(s);
   1729 	printf("%s: cannot %s\n", device_xname(sc->sc_dev),
   1730 	       run ? "start" : "stop");
   1731 	return (USBD_IOERROR);
   1732 }
   1733 
   1734 /*
   1735  * Memory management routines.
   1736  *  uhci_alloc_std allocates TDs
   1737  *  uhci_alloc_sqh allocates QHs
   1738  * These two routines do their own free list management,
   1739  * partly for speed, partly because allocating DMAable memory
   1740  * has page size granularaity so much memory would be wasted if
   1741  * only one TD/QH (32 bytes) was placed in each allocated chunk.
   1742  */
   1743 
   1744 uhci_soft_td_t *
   1745 uhci_alloc_std(uhci_softc_t *sc)
   1746 {
   1747 	uhci_soft_td_t *std;
   1748 	usbd_status err;
   1749 	int i, offs;
   1750 	usb_dma_t dma;
   1751 
   1752 	if (sc->sc_freetds == NULL) {
   1753 		DPRINTFN(2,("uhci_alloc_std: allocating chunk\n"));
   1754 		err = usb_allocmem(&sc->sc_bus, UHCI_STD_SIZE * UHCI_STD_CHUNK,
   1755 			  UHCI_TD_ALIGN, &dma);
   1756 		if (err)
   1757 			return (0);
   1758 		for(i = 0; i < UHCI_STD_CHUNK; i++) {
   1759 			offs = i * UHCI_STD_SIZE;
   1760 			std = KERNADDR(&dma, offs);
   1761 			std->physaddr = DMAADDR(&dma, offs);
   1762 			std->dma = dma;
   1763 			std->offs = offs;
   1764 			std->link.std = sc->sc_freetds;
   1765 			sc->sc_freetds = std;
   1766 		}
   1767 	}
   1768 	std = sc->sc_freetds;
   1769 	sc->sc_freetds = std->link.std;
   1770 	memset(&std->td, 0, sizeof(uhci_td_t));
   1771 	return std;
   1772 }
   1773 
   1774 void
   1775 uhci_free_std(uhci_softc_t *sc, uhci_soft_td_t *std)
   1776 {
   1777 #ifdef DIAGNOSTIC
   1778 #define TD_IS_FREE 0x12345678
   1779 	if (le32toh(std->td.td_token) == TD_IS_FREE) {
   1780 		printf("uhci_free_std: freeing free TD %p\n", std);
   1781 		return;
   1782 	}
   1783 	std->td.td_token = htole32(TD_IS_FREE);
   1784 #endif
   1785 	std->link.std = sc->sc_freetds;
   1786 	sc->sc_freetds = std;
   1787 }
   1788 
   1789 uhci_soft_qh_t *
   1790 uhci_alloc_sqh(uhci_softc_t *sc)
   1791 {
   1792 	uhci_soft_qh_t *sqh;
   1793 	usbd_status err;
   1794 	int i, offs;
   1795 	usb_dma_t dma;
   1796 
   1797 	if (sc->sc_freeqhs == NULL) {
   1798 		DPRINTFN(2, ("uhci_alloc_sqh: allocating chunk\n"));
   1799 		err = usb_allocmem(&sc->sc_bus, UHCI_SQH_SIZE * UHCI_SQH_CHUNK,
   1800 			  UHCI_QH_ALIGN, &dma);
   1801 		if (err)
   1802 			return (0);
   1803 		for(i = 0; i < UHCI_SQH_CHUNK; i++) {
   1804 			offs = i * UHCI_SQH_SIZE;
   1805 			sqh = KERNADDR(&dma, offs);
   1806 			sqh->physaddr = DMAADDR(&dma, offs);
   1807 			sqh->dma = dma;
   1808 			sqh->offs = offs;
   1809 			sqh->hlink = sc->sc_freeqhs;
   1810 			sc->sc_freeqhs = sqh;
   1811 		}
   1812 	}
   1813 	sqh = sc->sc_freeqhs;
   1814 	sc->sc_freeqhs = sqh->hlink;
   1815 	memset(&sqh->qh, 0, sizeof(uhci_qh_t));
   1816 	return (sqh);
   1817 }
   1818 
   1819 void
   1820 uhci_free_sqh(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
   1821 {
   1822 	sqh->hlink = sc->sc_freeqhs;
   1823 	sc->sc_freeqhs = sqh;
   1824 }
   1825 
   1826 void
   1827 uhci_free_std_chain(uhci_softc_t *sc, uhci_soft_td_t *std,
   1828 		    uhci_soft_td_t *stdend)
   1829 {
   1830 	uhci_soft_td_t *p;
   1831 
   1832 	/*
   1833 	 * to avoid race condition with the controller which may be looking
   1834 	 * at this chain, we need to first invalidate all links, and
   1835 	 * then wait for the controller to move to another queue
   1836 	 */
   1837 	for (p = std; p != stdend; p = p->link.std) {
   1838 		usb_syncmem(&p->dma,
   1839 		    p->offs + offsetof(uhci_td_t, td_link),
   1840 		    sizeof(p->td.td_link),
   1841 		    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   1842 		if ((p->td.td_link & UHCI_PTR_T) == 0) {
   1843 			p->td.td_link = UHCI_PTR_T;
   1844 			usb_syncmem(&p->dma,
   1845 			    p->offs + offsetof(uhci_td_t, td_link),
   1846 			    sizeof(p->td.td_link),
   1847 			    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1848 		}
   1849 	}
   1850 	delay(UHCI_QH_REMOVE_DELAY);
   1851 
   1852 	for (; std != stdend; std = p) {
   1853 		p = std->link.std;
   1854 		uhci_free_std(sc, std);
   1855 	}
   1856 }
   1857 
   1858 usbd_status
   1859 uhci_alloc_std_chain(struct uhci_pipe *upipe, uhci_softc_t *sc, int len,
   1860 		     int rd, u_int16_t flags, usb_dma_t *dma,
   1861 		     uhci_soft_td_t **sp, uhci_soft_td_t **ep)
   1862 {
   1863 	uhci_soft_td_t *p, *lastp;
   1864 	uhci_physaddr_t lastlink;
   1865 	int i, ntd, l, tog, maxp;
   1866 	u_int32_t status;
   1867 	int addr = upipe->pipe.device->address;
   1868 	int endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
   1869 
   1870 	DPRINTFN(8, ("uhci_alloc_std_chain: addr=%d endpt=%d len=%d speed=%d "
   1871 		      "flags=0x%x\n", addr, UE_GET_ADDR(endpt), len,
   1872 		      upipe->pipe.device->speed, flags));
   1873 	maxp = UGETW(upipe->pipe.endpoint->edesc->wMaxPacketSize);
   1874 	if (maxp == 0) {
   1875 		printf("uhci_alloc_std_chain: maxp=0\n");
   1876 		return (USBD_INVAL);
   1877 	}
   1878 	ntd = (len + maxp - 1) / maxp;
   1879 	if ((flags & USBD_FORCE_SHORT_XFER) && len % maxp == 0)
   1880 		ntd++;
   1881 	DPRINTFN(10, ("uhci_alloc_std_chain: maxp=%d ntd=%d\n", maxp, ntd));
   1882 	if (ntd == 0) {
   1883 		*sp = *ep = 0;
   1884 		DPRINTFN(-1,("uhci_alloc_std_chain: ntd=0\n"));
   1885 		return (USBD_NORMAL_COMPLETION);
   1886 	}
   1887 	tog = upipe->nexttoggle;
   1888 	if (ntd % 2 == 0)
   1889 		tog ^= 1;
   1890 	upipe->nexttoggle = tog ^ 1;
   1891 	lastp = NULL;
   1892 	lastlink = UHCI_PTR_T;
   1893 	ntd--;
   1894 	status = UHCI_TD_ZERO_ACTLEN(UHCI_TD_SET_ERRCNT(3) | UHCI_TD_ACTIVE);
   1895 	if (upipe->pipe.device->speed == USB_SPEED_LOW)
   1896 		status |= UHCI_TD_LS;
   1897 	if (flags & USBD_SHORT_XFER_OK)
   1898 		status |= UHCI_TD_SPD;
   1899 	usb_syncmem(dma, 0, len,
   1900 	    rd ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
   1901 	for (i = ntd; i >= 0; i--) {
   1902 		p = uhci_alloc_std(sc);
   1903 		if (p == NULL) {
   1904 			KASSERT(lastp != NULL);
   1905 			uhci_free_std_chain(sc, lastp, NULL);
   1906 			return (USBD_NOMEM);
   1907 		}
   1908 		p->link.std = lastp;
   1909 		p->td.td_link = htole32(lastlink | UHCI_PTR_VF | UHCI_PTR_TD);
   1910 		lastp = p;
   1911 		lastlink = p->physaddr;
   1912 		p->td.td_status = htole32(status);
   1913 		if (i == ntd) {
   1914 			/* last TD */
   1915 			l = len % maxp;
   1916 			if (l == 0 && !(flags & USBD_FORCE_SHORT_XFER))
   1917 				l = maxp;
   1918 			*ep = p;
   1919 		} else
   1920 			l = maxp;
   1921 		p->td.td_token =
   1922 		    htole32(rd ? UHCI_TD_IN (l, endpt, addr, tog) :
   1923 				 UHCI_TD_OUT(l, endpt, addr, tog));
   1924 		p->td.td_buffer = htole32(DMAADDR(dma, i * maxp));
   1925 		usb_syncmem(&p->dma, p->offs, sizeof(p->td),
   1926 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1927 		tog ^= 1;
   1928 	}
   1929 	*sp = lastp;
   1930 	DPRINTFN(10, ("uhci_alloc_std_chain: nexttog=%d\n",
   1931 		      upipe->nexttoggle));
   1932 	return (USBD_NORMAL_COMPLETION);
   1933 }
   1934 
   1935 void
   1936 uhci_device_clear_toggle(usbd_pipe_handle pipe)
   1937 {
   1938 	struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
   1939 	upipe->nexttoggle = 0;
   1940 }
   1941 
   1942 void
   1943 uhci_noop(usbd_pipe_handle pipe)
   1944 {
   1945 }
   1946 
   1947 usbd_status
   1948 uhci_device_bulk_transfer(usbd_xfer_handle xfer)
   1949 {
   1950 	usbd_status err;
   1951 
   1952 	/* Insert last in queue. */
   1953 	err = usb_insert_transfer(xfer);
   1954 	if (err)
   1955 		return (err);
   1956 
   1957 	/*
   1958 	 * Pipe isn't running (otherwise err would be USBD_INPROG),
   1959 	 * so start it first.
   1960 	 */
   1961 	return (uhci_device_bulk_start(SIMPLEQ_FIRST(&xfer->pipe->queue)));
   1962 }
   1963 
   1964 usbd_status
   1965 uhci_device_bulk_start(usbd_xfer_handle xfer)
   1966 {
   1967 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   1968 	usbd_device_handle dev = upipe->pipe.device;
   1969 	uhci_softc_t *sc = dev->bus->hci_private;
   1970 	uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
   1971 	uhci_soft_td_t *data, *dataend;
   1972 	uhci_soft_qh_t *sqh;
   1973 	usbd_status err;
   1974 	int len, isread, endpt;
   1975 	int s;
   1976 
   1977 	DPRINTFN(3, ("uhci_device_bulk_start: xfer=%p len=%d flags=%d ii=%p\n",
   1978 		     xfer, xfer->length, xfer->flags, ii));
   1979 
   1980 	if (sc->sc_dying)
   1981 		return (USBD_IOERROR);
   1982 
   1983 #ifdef DIAGNOSTIC
   1984 	if (xfer->rqflags & URQ_REQUEST)
   1985 		panic("uhci_device_bulk_transfer: a request");
   1986 #endif
   1987 
   1988 	len = xfer->length;
   1989 	endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
   1990 	isread = UE_GET_DIR(endpt) == UE_DIR_IN;
   1991 	sqh = upipe->u.bulk.sqh;
   1992 
   1993 	upipe->u.bulk.isread = isread;
   1994 	upipe->u.bulk.length = len;
   1995 
   1996 	err = uhci_alloc_std_chain(upipe, sc, len, isread, xfer->flags,
   1997 				   &xfer->dmabuf, &data, &dataend);
   1998 	if (err)
   1999 		return (err);
   2000 	dataend->td.td_status |= htole32(UHCI_TD_IOC);
   2001 	usb_syncmem(&dataend->dma,
   2002 	    dataend->offs + offsetof(uhci_td_t, td_status),
   2003 	    sizeof(dataend->td.td_status),
   2004 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2005 
   2006 
   2007 #ifdef UHCI_DEBUG
   2008 	if (uhcidebug > 8) {
   2009 		DPRINTF(("uhci_device_bulk_transfer: data(1)\n"));
   2010 		uhci_dump_tds(data);
   2011 	}
   2012 #endif
   2013 
   2014 	/* Set up interrupt info. */
   2015 	ii->xfer = xfer;
   2016 	ii->stdstart = data;
   2017 	ii->stdend = dataend;
   2018 #ifdef DIAGNOSTIC
   2019 	if (!ii->isdone) {
   2020 		printf("uhci_device_bulk_transfer: not done, ii=%p\n", ii);
   2021 	}
   2022 	ii->isdone = 0;
   2023 #endif
   2024 
   2025 	sqh->elink = data;
   2026 	sqh->qh.qh_elink = htole32(data->physaddr | UHCI_PTR_TD);
   2027 	/* uhci_add_bulk() will do usb_syncmem(sqh) */
   2028 
   2029 	s = splusb();
   2030 	uhci_add_bulk(sc, sqh);
   2031 	uhci_add_intr_info(sc, ii);
   2032 
   2033 	if (xfer->timeout && !sc->sc_bus.use_polling) {
   2034 		callout_reset(&xfer->timeout_handle, mstohz(xfer->timeout),
   2035 			    uhci_timeout, ii);
   2036 	}
   2037 	xfer->status = USBD_IN_PROGRESS;
   2038 	splx(s);
   2039 
   2040 #ifdef UHCI_DEBUG
   2041 	if (uhcidebug > 10) {
   2042 		DPRINTF(("uhci_device_bulk_transfer: data(2)\n"));
   2043 		uhci_dump_tds(data);
   2044 	}
   2045 #endif
   2046 
   2047 	if (sc->sc_bus.use_polling)
   2048 		uhci_waitintr(sc, xfer);
   2049 
   2050 	return (USBD_IN_PROGRESS);
   2051 }
   2052 
   2053 /* Abort a device bulk request. */
   2054 void
   2055 uhci_device_bulk_abort(usbd_xfer_handle xfer)
   2056 {
   2057 	DPRINTF(("uhci_device_bulk_abort:\n"));
   2058 	uhci_abort_xfer(xfer, USBD_CANCELLED);
   2059 }
   2060 
   2061 /*
   2062  * Abort a device request.
   2063  * If this routine is called at splusb() it guarantees that the request
   2064  * will be removed from the hardware scheduling and that the callback
   2065  * for it will be called with USBD_CANCELLED status.
   2066  * It's impossible to guarantee that the requested transfer will not
   2067  * have happened since the hardware runs concurrently.
   2068  * If the transaction has already happened we rely on the ordinary
   2069  * interrupt processing to process it.
   2070  */
   2071 void
   2072 uhci_abort_xfer(usbd_xfer_handle xfer, usbd_status status)
   2073 {
   2074 	uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
   2075 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   2076 	uhci_softc_t *sc = upipe->pipe.device->bus->hci_private;
   2077 	uhci_soft_td_t *std;
   2078 	int s;
   2079 	int wake;
   2080 
   2081 	DPRINTFN(1,("uhci_abort_xfer: xfer=%p, status=%d\n", xfer, status));
   2082 
   2083 	if (sc->sc_dying) {
   2084 		/* If we're dying, just do the software part. */
   2085 		s = splusb();
   2086 		xfer->status = status;	/* make software ignore it */
   2087 		callout_stop(&xfer->timeout_handle);
   2088 		usb_transfer_complete(xfer);
   2089 		splx(s);
   2090 		return;
   2091 	}
   2092 
   2093 	if (xfer->device->bus->intr_context || !curproc)
   2094 		panic("uhci_abort_xfer: not in process context");
   2095 
   2096 	/*
   2097 	 * If an abort is already in progress then just wait for it to
   2098 	 * complete and return.
   2099 	 */
   2100 	if (xfer->hcflags & UXFER_ABORTING) {
   2101 		DPRINTFN(2, ("uhci_abort_xfer: already aborting\n"));
   2102 #ifdef DIAGNOSTIC
   2103 		if (status == USBD_TIMEOUT)
   2104 			printf("uhci_abort_xfer: TIMEOUT while aborting\n");
   2105 #endif
   2106 		/* Override the status which might be USBD_TIMEOUT. */
   2107 		xfer->status = status;
   2108 		DPRINTFN(2, ("uhci_abort_xfer: waiting for abort to finish\n"));
   2109 		xfer->hcflags |= UXFER_ABORTWAIT;
   2110 		while (xfer->hcflags & UXFER_ABORTING)
   2111 			tsleep(&xfer->hcflags, PZERO, "uhciaw", 0);
   2112 		return;
   2113 	}
   2114 	xfer->hcflags |= UXFER_ABORTING;
   2115 
   2116 	/*
   2117 	 * Step 1: Make interrupt routine and hardware ignore xfer.
   2118 	 */
   2119 	s = splusb();
   2120 	xfer->status = status;	/* make software ignore it */
   2121 	callout_stop(&xfer->timeout_handle);
   2122 	DPRINTFN(1,("uhci_abort_xfer: stop ii=%p\n", ii));
   2123 	for (std = ii->stdstart; std != NULL; std = std->link.std) {
   2124 		usb_syncmem(&std->dma,
   2125 		    std->offs + offsetof(uhci_td_t, td_status),
   2126 		    sizeof(std->td.td_status),
   2127 		    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   2128 		std->td.td_status &= htole32(~(UHCI_TD_ACTIVE | UHCI_TD_IOC));
   2129 		usb_syncmem(&std->dma,
   2130 		    std->offs + offsetof(uhci_td_t, td_status),
   2131 		    sizeof(std->td.td_status),
   2132 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2133 	}
   2134 	splx(s);
   2135 
   2136 	/*
   2137 	 * Step 2: Wait until we know hardware has finished any possible
   2138 	 * use of the xfer.  Also make sure the soft interrupt routine
   2139 	 * has run.
   2140 	 */
   2141 	usb_delay_ms(upipe->pipe.device->bus, 2); /* Hardware finishes in 1ms */
   2142 	s = splusb();
   2143 #ifdef USB_USE_SOFTINTR
   2144 	sc->sc_softwake = 1;
   2145 #endif /* USB_USE_SOFTINTR */
   2146 	usb_schedsoftintr(&sc->sc_bus);
   2147 #ifdef USB_USE_SOFTINTR
   2148 	DPRINTFN(1,("uhci_abort_xfer: tsleep\n"));
   2149 	tsleep(&sc->sc_softwake, PZERO, "uhciab", 0);
   2150 #endif /* USB_USE_SOFTINTR */
   2151 	splx(s);
   2152 
   2153 	/*
   2154 	 * Step 3: Execute callback.
   2155 	 */
   2156 	DPRINTFN(1,("uhci_abort_xfer: callback\n"));
   2157 	s = splusb();
   2158 #ifdef DIAGNOSTIC
   2159 	ii->isdone = 1;
   2160 #endif
   2161 	wake = xfer->hcflags & UXFER_ABORTWAIT;
   2162 	xfer->hcflags &= ~(UXFER_ABORTING | UXFER_ABORTWAIT);
   2163 	usb_transfer_complete(xfer);
   2164 	if (wake)
   2165 		wakeup(&xfer->hcflags);
   2166 	splx(s);
   2167 }
   2168 
   2169 /* Close a device bulk pipe. */
   2170 void
   2171 uhci_device_bulk_close(usbd_pipe_handle pipe)
   2172 {
   2173 	struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
   2174 	usbd_device_handle dev = upipe->pipe.device;
   2175 	uhci_softc_t *sc = dev->bus->hci_private;
   2176 
   2177 	uhci_free_sqh(sc, upipe->u.bulk.sqh);
   2178 }
   2179 
   2180 usbd_status
   2181 uhci_device_ctrl_transfer(usbd_xfer_handle xfer)
   2182 {
   2183 	usbd_status err;
   2184 
   2185 	/* Insert last in queue. */
   2186 	err = usb_insert_transfer(xfer);
   2187 	if (err)
   2188 		return (err);
   2189 
   2190 	/*
   2191 	 * Pipe isn't running (otherwise err would be USBD_INPROG),
   2192 	 * so start it first.
   2193 	 */
   2194 	return (uhci_device_ctrl_start(SIMPLEQ_FIRST(&xfer->pipe->queue)));
   2195 }
   2196 
   2197 usbd_status
   2198 uhci_device_ctrl_start(usbd_xfer_handle xfer)
   2199 {
   2200 	uhci_softc_t *sc = xfer->pipe->device->bus->hci_private;
   2201 	usbd_status err;
   2202 
   2203 	if (sc->sc_dying)
   2204 		return (USBD_IOERROR);
   2205 
   2206 #ifdef DIAGNOSTIC
   2207 	if (!(xfer->rqflags & URQ_REQUEST))
   2208 		panic("uhci_device_ctrl_transfer: not a request");
   2209 #endif
   2210 
   2211 	err = uhci_device_request(xfer);
   2212 	if (err)
   2213 		return (err);
   2214 
   2215 	if (sc->sc_bus.use_polling)
   2216 		uhci_waitintr(sc, xfer);
   2217 	return (USBD_IN_PROGRESS);
   2218 }
   2219 
   2220 usbd_status
   2221 uhci_device_intr_transfer(usbd_xfer_handle xfer)
   2222 {
   2223 	usbd_status err;
   2224 
   2225 	/* Insert last in queue. */
   2226 	err = usb_insert_transfer(xfer);
   2227 	if (err)
   2228 		return (err);
   2229 
   2230 	/*
   2231 	 * Pipe isn't running (otherwise err would be USBD_INPROG),
   2232 	 * so start it first.
   2233 	 */
   2234 	return (uhci_device_intr_start(SIMPLEQ_FIRST(&xfer->pipe->queue)));
   2235 }
   2236 
   2237 usbd_status
   2238 uhci_device_intr_start(usbd_xfer_handle xfer)
   2239 {
   2240 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   2241 	usbd_device_handle dev = upipe->pipe.device;
   2242 	uhci_softc_t *sc = dev->bus->hci_private;
   2243 	uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
   2244 	uhci_soft_td_t *data, *dataend;
   2245 	uhci_soft_qh_t *sqh;
   2246 	usbd_status err;
   2247 	int isread, endpt;
   2248 	int i, s;
   2249 
   2250 	if (sc->sc_dying)
   2251 		return (USBD_IOERROR);
   2252 
   2253 	DPRINTFN(3,("uhci_device_intr_transfer: xfer=%p len=%d flags=%d\n",
   2254 		    xfer, xfer->length, xfer->flags));
   2255 
   2256 #ifdef DIAGNOSTIC
   2257 	if (xfer->rqflags & URQ_REQUEST)
   2258 		panic("uhci_device_intr_transfer: a request");
   2259 #endif
   2260 
   2261 	endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
   2262 	isread = UE_GET_DIR(endpt) == UE_DIR_IN;
   2263 
   2264 	upipe->u.intr.isread = isread;
   2265 
   2266 	err = uhci_alloc_std_chain(upipe, sc, xfer->length, isread,
   2267 				   xfer->flags, &xfer->dmabuf, &data,
   2268 				   &dataend);
   2269 	if (err)
   2270 		return (err);
   2271 	dataend->td.td_status |= htole32(UHCI_TD_IOC);
   2272 	usb_syncmem(&dataend->dma,
   2273 	    dataend->offs + offsetof(uhci_td_t, td_status),
   2274 	    sizeof(dataend->td.td_status),
   2275 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2276 
   2277 #ifdef UHCI_DEBUG
   2278 	if (uhcidebug > 10) {
   2279 		DPRINTF(("uhci_device_intr_transfer: data(1)\n"));
   2280 		uhci_dump_tds(data);
   2281 		uhci_dump_qh(upipe->u.intr.qhs[0]);
   2282 	}
   2283 #endif
   2284 
   2285 	s = splusb();
   2286 	/* Set up interrupt info. */
   2287 	ii->xfer = xfer;
   2288 	ii->stdstart = data;
   2289 	ii->stdend = dataend;
   2290 #ifdef DIAGNOSTIC
   2291 	if (!ii->isdone) {
   2292 		printf("uhci_device_intr_transfer: not done, ii=%p\n", ii);
   2293 	}
   2294 	ii->isdone = 0;
   2295 #endif
   2296 
   2297 	DPRINTFN(10,("uhci_device_intr_transfer: qhs[0]=%p\n",
   2298 		     upipe->u.intr.qhs[0]));
   2299 	for (i = 0; i < upipe->u.intr.npoll; i++) {
   2300 		sqh = upipe->u.intr.qhs[i];
   2301 		sqh->elink = data;
   2302 		sqh->qh.qh_elink = htole32(data->physaddr | UHCI_PTR_TD);
   2303 		usb_syncmem(&sqh->dma,
   2304 		    sqh->offs + offsetof(uhci_qh_t, qh_elink),
   2305 		    sizeof(sqh->qh.qh_elink),
   2306 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2307 	}
   2308 	uhci_add_intr_info(sc, ii);
   2309 	xfer->status = USBD_IN_PROGRESS;
   2310 	splx(s);
   2311 
   2312 #ifdef UHCI_DEBUG
   2313 	if (uhcidebug > 10) {
   2314 		DPRINTF(("uhci_device_intr_transfer: data(2)\n"));
   2315 		uhci_dump_tds(data);
   2316 		uhci_dump_qh(upipe->u.intr.qhs[0]);
   2317 	}
   2318 #endif
   2319 
   2320 	return (USBD_IN_PROGRESS);
   2321 }
   2322 
   2323 /* Abort a device control request. */
   2324 void
   2325 uhci_device_ctrl_abort(usbd_xfer_handle xfer)
   2326 {
   2327 	DPRINTF(("uhci_device_ctrl_abort:\n"));
   2328 	uhci_abort_xfer(xfer, USBD_CANCELLED);
   2329 }
   2330 
   2331 /* Close a device control pipe. */
   2332 void
   2333 uhci_device_ctrl_close(usbd_pipe_handle pipe)
   2334 {
   2335 }
   2336 
   2337 /* Abort a device interrupt request. */
   2338 void
   2339 uhci_device_intr_abort(usbd_xfer_handle xfer)
   2340 {
   2341 	DPRINTFN(1,("uhci_device_intr_abort: xfer=%p\n", xfer));
   2342 	if (xfer->pipe->intrxfer == xfer) {
   2343 		DPRINTFN(1,("uhci_device_intr_abort: remove\n"));
   2344 		xfer->pipe->intrxfer = NULL;
   2345 	}
   2346 	uhci_abort_xfer(xfer, USBD_CANCELLED);
   2347 }
   2348 
   2349 /* Close a device interrupt pipe. */
   2350 void
   2351 uhci_device_intr_close(usbd_pipe_handle pipe)
   2352 {
   2353 	struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
   2354 	uhci_softc_t *sc = pipe->device->bus->hci_private;
   2355 	int i, npoll;
   2356 	int s;
   2357 
   2358 	/* Unlink descriptors from controller data structures. */
   2359 	npoll = upipe->u.intr.npoll;
   2360 	s = splusb();
   2361 	for (i = 0; i < npoll; i++)
   2362 		uhci_remove_intr(sc, upipe->u.intr.qhs[i]);
   2363 	splx(s);
   2364 
   2365 	/*
   2366 	 * We now have to wait for any activity on the physical
   2367 	 * descriptors to stop.
   2368 	 */
   2369 	usb_delay_ms(&sc->sc_bus, 2);
   2370 
   2371 	for(i = 0; i < npoll; i++)
   2372 		uhci_free_sqh(sc, upipe->u.intr.qhs[i]);
   2373 	free(upipe->u.intr.qhs, M_USBHC);
   2374 
   2375 	/* XXX free other resources */
   2376 }
   2377 
   2378 usbd_status
   2379 uhci_device_request(usbd_xfer_handle xfer)
   2380 {
   2381 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   2382 	usb_device_request_t *req = &xfer->request;
   2383 	usbd_device_handle dev = upipe->pipe.device;
   2384 	uhci_softc_t *sc = dev->bus->hci_private;
   2385 	int addr = dev->address;
   2386 	int endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
   2387 	uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
   2388 	uhci_soft_td_t *setup, *data, *stat, *next, *dataend;
   2389 	uhci_soft_qh_t *sqh;
   2390 	int len;
   2391 	u_int32_t ls;
   2392 	usbd_status err;
   2393 	int isread;
   2394 	int s;
   2395 
   2396 	DPRINTFN(3,("uhci_device_control type=0x%02x, request=0x%02x, "
   2397 		    "wValue=0x%04x, wIndex=0x%04x len=%d, addr=%d, endpt=%d\n",
   2398 		    req->bmRequestType, req->bRequest, UGETW(req->wValue),
   2399 		    UGETW(req->wIndex), UGETW(req->wLength),
   2400 		    addr, endpt));
   2401 
   2402 	ls = dev->speed == USB_SPEED_LOW ? UHCI_TD_LS : 0;
   2403 	isread = req->bmRequestType & UT_READ;
   2404 	len = UGETW(req->wLength);
   2405 
   2406 	setup = upipe->u.ctl.setup;
   2407 	stat = upipe->u.ctl.stat;
   2408 	sqh = upipe->u.ctl.sqh;
   2409 
   2410 	/* Set up data transaction */
   2411 	if (len != 0) {
   2412 		upipe->nexttoggle = 1;
   2413 		err = uhci_alloc_std_chain(upipe, sc, len, isread, xfer->flags,
   2414 					   &xfer->dmabuf, &data, &dataend);
   2415 		if (err)
   2416 			return (err);
   2417 		next = data;
   2418 		dataend->link.std = stat;
   2419 		dataend->td.td_link = htole32(stat->physaddr | UHCI_PTR_VF | UHCI_PTR_TD);
   2420 		usb_syncmem(&dataend->dma,
   2421 		    dataend->offs + offsetof(uhci_td_t, td_link),
   2422 		    sizeof(dataend->td.td_link),
   2423 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2424 	} else {
   2425 		next = stat;
   2426 	}
   2427 	upipe->u.ctl.length = len;
   2428 
   2429 	memcpy(KERNADDR(&upipe->u.ctl.reqdma, 0), req, sizeof *req);
   2430 	usb_syncmem(&upipe->u.ctl.reqdma, 0, sizeof *req, BUS_DMASYNC_PREWRITE);
   2431 
   2432 	setup->link.std = next;
   2433 	setup->td.td_link = htole32(next->physaddr | UHCI_PTR_VF | UHCI_PTR_TD);
   2434 	setup->td.td_status = htole32(UHCI_TD_SET_ERRCNT(3) | ls |
   2435 		UHCI_TD_ACTIVE);
   2436 	setup->td.td_token = htole32(UHCI_TD_SETUP(sizeof *req, endpt, addr));
   2437 	setup->td.td_buffer = htole32(DMAADDR(&upipe->u.ctl.reqdma, 0));
   2438 	usb_syncmem(&setup->dma, setup->offs, sizeof(setup->td),
   2439 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2440 
   2441 	stat->link.std = NULL;
   2442 	stat->td.td_link = htole32(UHCI_PTR_T);
   2443 	stat->td.td_status = htole32(UHCI_TD_SET_ERRCNT(3) | ls |
   2444 		UHCI_TD_ACTIVE | UHCI_TD_IOC);
   2445 	stat->td.td_token =
   2446 		htole32(isread ? UHCI_TD_OUT(0, endpt, addr, 1) :
   2447 		                 UHCI_TD_IN (0, endpt, addr, 1));
   2448 	stat->td.td_buffer = htole32(0);
   2449 	usb_syncmem(&stat->dma, stat->offs, sizeof(stat->td),
   2450 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2451 
   2452 #ifdef UHCI_DEBUG
   2453 	if (uhcidebug > 10) {
   2454 		DPRINTF(("uhci_device_request: before transfer\n"));
   2455 		uhci_dump_tds(setup);
   2456 	}
   2457 #endif
   2458 
   2459 	/* Set up interrupt info. */
   2460 	ii->xfer = xfer;
   2461 	ii->stdstart = setup;
   2462 	ii->stdend = stat;
   2463 #ifdef DIAGNOSTIC
   2464 	if (!ii->isdone) {
   2465 		printf("uhci_device_request: not done, ii=%p\n", ii);
   2466 	}
   2467 	ii->isdone = 0;
   2468 #endif
   2469 
   2470 	sqh->elink = setup;
   2471 	sqh->qh.qh_elink = htole32(setup->physaddr | UHCI_PTR_TD);
   2472 	/* uhci_add_?s_ctrl() will do usb_syncmem(sqh) */
   2473 
   2474 	s = splusb();
   2475 	if (dev->speed == USB_SPEED_LOW)
   2476 		uhci_add_ls_ctrl(sc, sqh);
   2477 	else
   2478 		uhci_add_hs_ctrl(sc, sqh);
   2479 	uhci_add_intr_info(sc, ii);
   2480 #ifdef UHCI_DEBUG
   2481 	if (uhcidebug > 12) {
   2482 		uhci_soft_td_t *std;
   2483 		uhci_soft_qh_t *xqh;
   2484 		uhci_soft_qh_t *sxqh;
   2485 		int maxqh = 0;
   2486 		uhci_physaddr_t link;
   2487 		DPRINTF(("uhci_enter_ctl_q: follow from [0]\n"));
   2488 		for (std = sc->sc_vframes[0].htd, link = 0;
   2489 		     (link & UHCI_PTR_QH) == 0;
   2490 		     std = std->link.std) {
   2491 			link = le32toh(std->td.td_link);
   2492 			uhci_dump_td(std);
   2493 		}
   2494 		sxqh = (uhci_soft_qh_t *)std;
   2495 		uhci_dump_qh(sxqh);
   2496 		for (xqh = sxqh;
   2497 		     xqh != NULL;
   2498 		     xqh = (maxqh++ == 5 || xqh->hlink == sxqh ||
   2499                             xqh->hlink == xqh ? NULL : xqh->hlink)) {
   2500 			uhci_dump_qh(xqh);
   2501 		}
   2502 		DPRINTF(("Enqueued QH:\n"));
   2503 		uhci_dump_qh(sqh);
   2504 		uhci_dump_tds(sqh->elink);
   2505 	}
   2506 #endif
   2507 	if (xfer->timeout && !sc->sc_bus.use_polling) {
   2508 		callout_reset(&xfer->timeout_handle, mstohz(xfer->timeout),
   2509 			    uhci_timeout, ii);
   2510 	}
   2511 	xfer->status = USBD_IN_PROGRESS;
   2512 	splx(s);
   2513 
   2514 	return (USBD_NORMAL_COMPLETION);
   2515 }
   2516 
   2517 usbd_status
   2518 uhci_device_isoc_transfer(usbd_xfer_handle xfer)
   2519 {
   2520 	usbd_status err;
   2521 
   2522 	DPRINTFN(5,("uhci_device_isoc_transfer: xfer=%p\n", xfer));
   2523 
   2524 	/* Put it on our queue, */
   2525 	err = usb_insert_transfer(xfer);
   2526 
   2527 	/* bail out on error, */
   2528 	if (err && err != USBD_IN_PROGRESS)
   2529 		return (err);
   2530 
   2531 	/* XXX should check inuse here */
   2532 
   2533 	/* insert into schedule, */
   2534 	uhci_device_isoc_enter(xfer);
   2535 
   2536 	/* and start if the pipe wasn't running */
   2537 	if (!err)
   2538 		uhci_device_isoc_start(SIMPLEQ_FIRST(&xfer->pipe->queue));
   2539 
   2540 	return (err);
   2541 }
   2542 
   2543 void
   2544 uhci_device_isoc_enter(usbd_xfer_handle xfer)
   2545 {
   2546 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   2547 	usbd_device_handle dev = upipe->pipe.device;
   2548 	uhci_softc_t *sc = dev->bus->hci_private;
   2549 	struct iso *iso = &upipe->u.iso;
   2550 	uhci_soft_td_t *std;
   2551 	u_int32_t buf, len, status, offs;
   2552 	int s, i, next, nframes;
   2553 	int rd = UE_GET_DIR(upipe->pipe.endpoint->edesc->bEndpointAddress) == UE_DIR_IN;
   2554 
   2555 	DPRINTFN(5,("uhci_device_isoc_enter: used=%d next=%d xfer=%p "
   2556 		    "nframes=%d\n",
   2557 		    iso->inuse, iso->next, xfer, xfer->nframes));
   2558 
   2559 	if (sc->sc_dying)
   2560 		return;
   2561 
   2562 	if (xfer->status == USBD_IN_PROGRESS) {
   2563 		/* This request has already been entered into the frame list */
   2564 		printf("uhci_device_isoc_enter: xfer=%p in frame list\n", xfer);
   2565 		/* XXX */
   2566 	}
   2567 
   2568 #ifdef DIAGNOSTIC
   2569 	if (iso->inuse >= UHCI_VFRAMELIST_COUNT)
   2570 		printf("uhci_device_isoc_enter: overflow!\n");
   2571 #endif
   2572 
   2573 	next = iso->next;
   2574 	if (next == -1) {
   2575 		/* Not in use yet, schedule it a few frames ahead. */
   2576 		next = (UREAD2(sc, UHCI_FRNUM) + 3) % UHCI_VFRAMELIST_COUNT;
   2577 		DPRINTFN(2,("uhci_device_isoc_enter: start next=%d\n", next));
   2578 	}
   2579 
   2580 	xfer->status = USBD_IN_PROGRESS;
   2581 	UXFER(xfer)->curframe = next;
   2582 
   2583 	buf = DMAADDR(&xfer->dmabuf, 0);
   2584 	offs = 0;
   2585 	status = UHCI_TD_ZERO_ACTLEN(UHCI_TD_SET_ERRCNT(0) |
   2586 				     UHCI_TD_ACTIVE |
   2587 				     UHCI_TD_IOS);
   2588 	nframes = xfer->nframes;
   2589 	s = splusb();
   2590 	for (i = 0; i < nframes; i++) {
   2591 		std = iso->stds[next];
   2592 		if (++next >= UHCI_VFRAMELIST_COUNT)
   2593 			next = 0;
   2594 		len = xfer->frlengths[i];
   2595 		std->td.td_buffer = htole32(buf);
   2596 		usb_syncmem(&xfer->dmabuf, offs, len,
   2597 		    rd ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
   2598 		if (i == nframes - 1)
   2599 			status |= UHCI_TD_IOC;
   2600 		std->td.td_status = htole32(status);
   2601 		std->td.td_token &= htole32(~UHCI_TD_MAXLEN_MASK);
   2602 		std->td.td_token |= htole32(UHCI_TD_SET_MAXLEN(len));
   2603 		usb_syncmem(&std->dma, std->offs, sizeof(std->td),
   2604 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2605 #ifdef UHCI_DEBUG
   2606 		if (uhcidebug > 5) {
   2607 			DPRINTFN(5,("uhci_device_isoc_enter: TD %d\n", i));
   2608 			uhci_dump_td(std);
   2609 		}
   2610 #endif
   2611 		buf += len;
   2612 		offs += len;
   2613 	}
   2614 	iso->next = next;
   2615 	iso->inuse += xfer->nframes;
   2616 
   2617 	splx(s);
   2618 }
   2619 
   2620 usbd_status
   2621 uhci_device_isoc_start(usbd_xfer_handle xfer)
   2622 {
   2623 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   2624 	uhci_softc_t *sc = upipe->pipe.device->bus->hci_private;
   2625 	uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
   2626 	uhci_soft_td_t *end;
   2627 	int s, i;
   2628 
   2629 	DPRINTFN(5,("uhci_device_isoc_start: xfer=%p\n", xfer));
   2630 
   2631 	if (sc->sc_dying)
   2632 		return (USBD_IOERROR);
   2633 
   2634 #ifdef DIAGNOSTIC
   2635 	if (xfer->status != USBD_IN_PROGRESS)
   2636 		printf("uhci_device_isoc_start: not in progress %p\n", xfer);
   2637 #endif
   2638 
   2639 	/* Find the last TD */
   2640 	i = UXFER(xfer)->curframe + xfer->nframes;
   2641 	if (i >= UHCI_VFRAMELIST_COUNT)
   2642 		i -= UHCI_VFRAMELIST_COUNT;
   2643 	end = upipe->u.iso.stds[i];
   2644 
   2645 #ifdef DIAGNOSTIC
   2646 	if (end == NULL) {
   2647 		printf("uhci_device_isoc_start: end == NULL\n");
   2648 		return (USBD_INVAL);
   2649 	}
   2650 #endif
   2651 
   2652 	s = splusb();
   2653 
   2654 	/* Set up interrupt info. */
   2655 	ii->xfer = xfer;
   2656 	ii->stdstart = end;
   2657 	ii->stdend = end;
   2658 #ifdef DIAGNOSTIC
   2659 	if (!ii->isdone)
   2660 		printf("uhci_device_isoc_start: not done, ii=%p\n", ii);
   2661 	ii->isdone = 0;
   2662 #endif
   2663 	uhci_add_intr_info(sc, ii);
   2664 
   2665 	splx(s);
   2666 
   2667 	return (USBD_IN_PROGRESS);
   2668 }
   2669 
   2670 void
   2671 uhci_device_isoc_abort(usbd_xfer_handle xfer)
   2672 {
   2673 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   2674 	uhci_soft_td_t **stds = upipe->u.iso.stds;
   2675 	uhci_soft_td_t *std;
   2676 	int i, n, s, nframes, maxlen, len;
   2677 
   2678 	s = splusb();
   2679 
   2680 	/* Transfer is already done. */
   2681 	if (xfer->status != USBD_NOT_STARTED &&
   2682 	    xfer->status != USBD_IN_PROGRESS) {
   2683 		splx(s);
   2684 		return;
   2685 	}
   2686 
   2687 	/* Give xfer the requested abort code. */
   2688 	xfer->status = USBD_CANCELLED;
   2689 
   2690 	/* make hardware ignore it, */
   2691 	nframes = xfer->nframes;
   2692 	n = UXFER(xfer)->curframe;
   2693 	maxlen = 0;
   2694 	for (i = 0; i < nframes; i++) {
   2695 		std = stds[n];
   2696 		usb_syncmem(&std->dma,
   2697 		    std->offs + offsetof(uhci_td_t, td_status),
   2698 		    sizeof(std->td.td_status),
   2699 		    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   2700 		std->td.td_status &= htole32(~(UHCI_TD_ACTIVE | UHCI_TD_IOC));
   2701 		usb_syncmem(&std->dma,
   2702 		    std->offs + offsetof(uhci_td_t, td_status),
   2703 		    sizeof(std->td.td_status),
   2704 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2705 		usb_syncmem(&std->dma,
   2706 		    std->offs + offsetof(uhci_td_t, td_token),
   2707 		    sizeof(std->td.td_token),
   2708 		    BUS_DMASYNC_POSTWRITE);
   2709 		len = UHCI_TD_GET_MAXLEN(le32toh(std->td.td_token));
   2710 		if (len > maxlen)
   2711 			maxlen = len;
   2712 		if (++n >= UHCI_VFRAMELIST_COUNT)
   2713 			n = 0;
   2714 	}
   2715 
   2716 	/* and wait until we are sure the hardware has finished. */
   2717 	delay(maxlen);
   2718 
   2719 #ifdef DIAGNOSTIC
   2720 	UXFER(xfer)->iinfo.isdone = 1;
   2721 #endif
   2722 	/* Run callback and remove from interrupt list. */
   2723 	usb_transfer_complete(xfer);
   2724 
   2725 	splx(s);
   2726 }
   2727 
   2728 void
   2729 uhci_device_isoc_close(usbd_pipe_handle pipe)
   2730 {
   2731 	struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
   2732 	usbd_device_handle dev = upipe->pipe.device;
   2733 	uhci_softc_t *sc = dev->bus->hci_private;
   2734 	uhci_soft_td_t *std, *vstd;
   2735 	struct iso *iso;
   2736 	int i, s;
   2737 
   2738 	/*
   2739 	 * Make sure all TDs are marked as inactive.
   2740 	 * Wait for completion.
   2741 	 * Unschedule.
   2742 	 * Deallocate.
   2743 	 */
   2744 	iso = &upipe->u.iso;
   2745 
   2746 	for (i = 0; i < UHCI_VFRAMELIST_COUNT; i++) {
   2747 		std = iso->stds[i];
   2748 		usb_syncmem(&std->dma,
   2749 		    std->offs + offsetof(uhci_td_t, td_status),
   2750 		    sizeof(std->td.td_status),
   2751 		    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   2752 		std->td.td_status &= htole32(~UHCI_TD_ACTIVE);
   2753 		usb_syncmem(&std->dma,
   2754 		    std->offs + offsetof(uhci_td_t, td_status),
   2755 		    sizeof(std->td.td_status),
   2756 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2757 	}
   2758 	usb_delay_ms(&sc->sc_bus, 2); /* wait for completion */
   2759 
   2760 	s = splusb();
   2761 	for (i = 0; i < UHCI_VFRAMELIST_COUNT; i++) {
   2762 		std = iso->stds[i];
   2763 		for (vstd = sc->sc_vframes[i].htd;
   2764 		     vstd != NULL && vstd->link.std != std;
   2765 		     vstd = vstd->link.std)
   2766 			;
   2767 		if (vstd == NULL) {
   2768 			/*panic*/
   2769 			printf("uhci_device_isoc_close: %p not found\n", std);
   2770 			splx(s);
   2771 			return;
   2772 		}
   2773 		vstd->link = std->link;
   2774 		usb_syncmem(&std->dma,
   2775 		    std->offs + offsetof(uhci_td_t, td_link),
   2776 		    sizeof(std->td.td_link),
   2777 		    BUS_DMASYNC_POSTWRITE);
   2778 		vstd->td.td_link = std->td.td_link;
   2779 		usb_syncmem(&vstd->dma,
   2780 		    vstd->offs + offsetof(uhci_td_t, td_link),
   2781 		    sizeof(vstd->td.td_link),
   2782 		    BUS_DMASYNC_PREWRITE);
   2783 		uhci_free_std(sc, std);
   2784 	}
   2785 	splx(s);
   2786 
   2787 	free(iso->stds, M_USBHC);
   2788 }
   2789 
   2790 usbd_status
   2791 uhci_setup_isoc(usbd_pipe_handle pipe)
   2792 {
   2793 	struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
   2794 	usbd_device_handle dev = upipe->pipe.device;
   2795 	uhci_softc_t *sc = dev->bus->hci_private;
   2796 	int addr = upipe->pipe.device->address;
   2797 	int endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
   2798 	int rd = UE_GET_DIR(endpt) == UE_DIR_IN;
   2799 	uhci_soft_td_t *std, *vstd;
   2800 	u_int32_t token;
   2801 	struct iso *iso;
   2802 	int i, s;
   2803 
   2804 	iso = &upipe->u.iso;
   2805 	iso->stds = malloc(UHCI_VFRAMELIST_COUNT * sizeof (uhci_soft_td_t *),
   2806 			   M_USBHC, M_WAITOK);
   2807 
   2808 	token = rd ? UHCI_TD_IN (0, endpt, addr, 0) :
   2809 		     UHCI_TD_OUT(0, endpt, addr, 0);
   2810 
   2811 	/* Allocate the TDs and mark as inactive; */
   2812 	for (i = 0; i < UHCI_VFRAMELIST_COUNT; i++) {
   2813 		std = uhci_alloc_std(sc);
   2814 		if (std == 0)
   2815 			goto bad;
   2816 		std->td.td_status = htole32(UHCI_TD_IOS); /* iso, inactive */
   2817 		std->td.td_token = htole32(token);
   2818 		usb_syncmem(&std->dma, std->offs, sizeof(std->td),
   2819 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2820 		iso->stds[i] = std;
   2821 	}
   2822 
   2823 	/* Insert TDs into schedule. */
   2824 	s = splusb();
   2825 	for (i = 0; i < UHCI_VFRAMELIST_COUNT; i++) {
   2826 		std = iso->stds[i];
   2827 		vstd = sc->sc_vframes[i].htd;
   2828 		usb_syncmem(&vstd->dma,
   2829 		    vstd->offs + offsetof(uhci_td_t, td_link),
   2830 		    sizeof(vstd->td.td_link),
   2831 		    BUS_DMASYNC_POSTWRITE);
   2832 		std->link = vstd->link;
   2833 		std->td.td_link = vstd->td.td_link;
   2834 		usb_syncmem(&std->dma,
   2835 		    std->offs + offsetof(uhci_td_t, td_link),
   2836 		    sizeof(std->td.td_link),
   2837 		    BUS_DMASYNC_PREWRITE);
   2838 		vstd->link.std = std;
   2839 		vstd->td.td_link = htole32(std->physaddr | UHCI_PTR_TD);
   2840 		usb_syncmem(&vstd->dma,
   2841 		    vstd->offs + offsetof(uhci_td_t, td_link),
   2842 		    sizeof(vstd->td.td_link),
   2843 		    BUS_DMASYNC_PREWRITE);
   2844 	}
   2845 	splx(s);
   2846 
   2847 	iso->next = -1;
   2848 	iso->inuse = 0;
   2849 
   2850 	return (USBD_NORMAL_COMPLETION);
   2851 
   2852  bad:
   2853 	while (--i >= 0)
   2854 		uhci_free_std(sc, iso->stds[i]);
   2855 	free(iso->stds, M_USBHC);
   2856 	return (USBD_NOMEM);
   2857 }
   2858 
   2859 void
   2860 uhci_device_isoc_done(usbd_xfer_handle xfer)
   2861 {
   2862 	uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
   2863 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   2864 	int i, offs;
   2865 	int rd = UE_GET_DIR(upipe->pipe.endpoint->edesc->bEndpointAddress) == UE_DIR_IN;
   2866 
   2867 
   2868 	DPRINTFN(4, ("uhci_isoc_done: length=%d, busy_free=0x%08x\n",
   2869 			xfer->actlen, xfer->busy_free));
   2870 
   2871 	if (ii->xfer != xfer)
   2872 		/* Not on interrupt list, ignore it. */
   2873 		return;
   2874 
   2875 	if (!uhci_active_intr_info(ii))
   2876 		return;
   2877 
   2878 #ifdef DIAGNOSTIC
   2879         if (ii->stdend == NULL) {
   2880                 printf("uhci_device_isoc_done: xfer=%p stdend==NULL\n", xfer);
   2881 #ifdef UHCI_DEBUG
   2882 		uhci_dump_ii(ii);
   2883 #endif
   2884 		return;
   2885 	}
   2886 #endif
   2887 
   2888 	/* Turn off the interrupt since it is active even if the TD is not. */
   2889 	usb_syncmem(&ii->stdend->dma,
   2890 	    ii->stdend->offs + offsetof(uhci_td_t, td_status),
   2891 	    sizeof(ii->stdend->td.td_status),
   2892 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   2893 	ii->stdend->td.td_status &= htole32(~UHCI_TD_IOC);
   2894 	usb_syncmem(&ii->stdend->dma,
   2895 	    ii->stdend->offs + offsetof(uhci_td_t, td_status),
   2896 	    sizeof(ii->stdend->td.td_status),
   2897 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2898 
   2899 	uhci_del_intr_info(ii);	/* remove from active list */
   2900 
   2901 	offs = 0;
   2902 	for (i = 0; i < xfer->nframes; i++) {
   2903 		usb_syncmem(&xfer->dmabuf, offs, xfer->frlengths[i],
   2904 		    rd ? BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
   2905 		offs += xfer->frlengths[i];
   2906 	}
   2907 }
   2908 
   2909 void
   2910 uhci_device_intr_done(usbd_xfer_handle xfer)
   2911 {
   2912 	uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
   2913 	uhci_softc_t *sc = ii->sc;
   2914 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   2915 	uhci_soft_qh_t *sqh;
   2916 	int i, npoll, isread;
   2917 
   2918 	DPRINTFN(5, ("uhci_device_intr_done: length=%d\n", xfer->actlen));
   2919 
   2920 	npoll = upipe->u.intr.npoll;
   2921 	for(i = 0; i < npoll; i++) {
   2922 		sqh = upipe->u.intr.qhs[i];
   2923 		sqh->elink = NULL;
   2924 		sqh->qh.qh_elink = htole32(UHCI_PTR_T);
   2925 		usb_syncmem(&sqh->dma,
   2926 		    sqh->offs + offsetof(uhci_qh_t, qh_elink),
   2927 		    sizeof(sqh->qh.qh_elink),
   2928 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2929 	}
   2930 	uhci_free_std_chain(sc, ii->stdstart, NULL);
   2931 
   2932 	isread = UE_GET_DIR(upipe->pipe.endpoint->edesc->bEndpointAddress) == UE_DIR_IN;
   2933 	usb_syncmem(&xfer->dmabuf, 0, xfer->length,
   2934 	    isread ? BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
   2935 
   2936 	/* XXX Wasteful. */
   2937 	if (xfer->pipe->repeat) {
   2938 		uhci_soft_td_t *data, *dataend;
   2939 
   2940 		DPRINTFN(5,("uhci_device_intr_done: requeing\n"));
   2941 
   2942 		/* This alloc cannot fail since we freed the chain above. */
   2943 		uhci_alloc_std_chain(upipe, sc, xfer->length,
   2944 				     upipe->u.intr.isread, xfer->flags,
   2945 				     &xfer->dmabuf, &data, &dataend);
   2946 		dataend->td.td_status |= htole32(UHCI_TD_IOC);
   2947 		usb_syncmem(&dataend->dma,
   2948 		    dataend->offs + offsetof(uhci_td_t, td_status),
   2949 		    sizeof(dataend->td.td_status),
   2950 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2951 
   2952 #ifdef UHCI_DEBUG
   2953 		if (uhcidebug > 10) {
   2954 			DPRINTF(("uhci_device_intr_done: data(1)\n"));
   2955 			uhci_dump_tds(data);
   2956 			uhci_dump_qh(upipe->u.intr.qhs[0]);
   2957 		}
   2958 #endif
   2959 
   2960 		ii->stdstart = data;
   2961 		ii->stdend = dataend;
   2962 #ifdef DIAGNOSTIC
   2963 		if (!ii->isdone) {
   2964 			printf("uhci_device_intr_done: not done, ii=%p\n", ii);
   2965 		}
   2966 		ii->isdone = 0;
   2967 #endif
   2968 		for (i = 0; i < npoll; i++) {
   2969 			sqh = upipe->u.intr.qhs[i];
   2970 			sqh->elink = data;
   2971 			sqh->qh.qh_elink = htole32(data->physaddr | UHCI_PTR_TD);
   2972 			usb_syncmem(&sqh->dma,
   2973 			    sqh->offs + offsetof(uhci_qh_t, qh_elink),
   2974 			    sizeof(sqh->qh.qh_elink),
   2975 			    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2976 		}
   2977 		xfer->status = USBD_IN_PROGRESS;
   2978 		/* The ii is already on the examined list, just leave it. */
   2979 	} else {
   2980 		DPRINTFN(5,("uhci_device_intr_done: removing\n"));
   2981 		if (uhci_active_intr_info(ii))
   2982 			uhci_del_intr_info(ii);
   2983 	}
   2984 }
   2985 
   2986 /* Deallocate request data structures */
   2987 void
   2988 uhci_device_ctrl_done(usbd_xfer_handle xfer)
   2989 {
   2990 	uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
   2991 	uhci_softc_t *sc = ii->sc;
   2992 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   2993 	int len = UGETW(xfer->request.wLength);
   2994 	int isread = (xfer->request.bmRequestType & UT_READ);
   2995 
   2996 #ifdef DIAGNOSTIC
   2997 	if (!(xfer->rqflags & URQ_REQUEST))
   2998 		panic("uhci_device_ctrl_done: not a request");
   2999 #endif
   3000 
   3001 	if (!uhci_active_intr_info(ii))
   3002 		return;
   3003 
   3004 	uhci_del_intr_info(ii);	/* remove from active list */
   3005 
   3006 	if (upipe->pipe.device->speed == USB_SPEED_LOW)
   3007 		uhci_remove_ls_ctrl(sc, upipe->u.ctl.sqh);
   3008 	else
   3009 		uhci_remove_hs_ctrl(sc, upipe->u.ctl.sqh);
   3010 
   3011 	if (upipe->u.ctl.length != 0)
   3012 		uhci_free_std_chain(sc, ii->stdstart->link.std, ii->stdend);
   3013 
   3014 	if (len) {
   3015 		usb_syncmem(&xfer->dmabuf, 0, len,
   3016 		    isread ? BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
   3017 	}
   3018 	usb_syncmem(&upipe->u.ctl.reqdma, 0,
   3019 	    sizeof(usb_device_request_t),  BUS_DMASYNC_POSTWRITE);
   3020 
   3021 	DPRINTFN(5, ("uhci_device_ctrl_done: length=%d\n", xfer->actlen));
   3022 }
   3023 
   3024 /* Deallocate request data structures */
   3025 void
   3026 uhci_device_bulk_done(usbd_xfer_handle xfer)
   3027 {
   3028 	uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
   3029 	uhci_softc_t *sc = ii->sc;
   3030 	struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
   3031 
   3032 	DPRINTFN(5,("uhci_device_bulk_done: xfer=%p ii=%p sc=%p upipe=%p\n",
   3033 		    xfer, ii, sc, upipe));
   3034 
   3035 	if (!uhci_active_intr_info(ii))
   3036 		return;
   3037 
   3038 	uhci_del_intr_info(ii);	/* remove from active list */
   3039 
   3040 	uhci_remove_bulk(sc, upipe->u.bulk.sqh);
   3041 
   3042 	uhci_free_std_chain(sc, ii->stdstart, NULL);
   3043 
   3044 	DPRINTFN(5, ("uhci_device_bulk_done: length=%d\n", xfer->actlen));
   3045 }
   3046 
   3047 /* Add interrupt QH, called with vflock. */
   3048 void
   3049 uhci_add_intr(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
   3050 {
   3051 	struct uhci_vframe *vf = &sc->sc_vframes[sqh->pos];
   3052 	uhci_soft_qh_t *eqh;
   3053 
   3054 	DPRINTFN(4, ("uhci_add_intr: n=%d sqh=%p\n", sqh->pos, sqh));
   3055 
   3056 	eqh = vf->eqh;
   3057 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
   3058 	    sizeof(eqh->qh.qh_hlink),
   3059 	    BUS_DMASYNC_POSTWRITE);
   3060 	sqh->hlink       = eqh->hlink;
   3061 	sqh->qh.qh_hlink = eqh->qh.qh_hlink;
   3062 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_hlink),
   3063 	    sizeof(sqh->qh.qh_hlink),
   3064 	    BUS_DMASYNC_PREWRITE);
   3065 	eqh->hlink       = sqh;
   3066 	eqh->qh.qh_hlink = htole32(sqh->physaddr | UHCI_PTR_QH);
   3067 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
   3068 	    sizeof(eqh->qh.qh_hlink),
   3069 	    BUS_DMASYNC_PREWRITE);
   3070 	vf->eqh = sqh;
   3071 	vf->bandwidth++;
   3072 }
   3073 
   3074 /* Remove interrupt QH. */
   3075 void
   3076 uhci_remove_intr(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
   3077 {
   3078 	struct uhci_vframe *vf = &sc->sc_vframes[sqh->pos];
   3079 	uhci_soft_qh_t *pqh;
   3080 
   3081 	DPRINTFN(4, ("uhci_remove_intr: n=%d sqh=%p\n", sqh->pos, sqh));
   3082 
   3083 	/* See comment in uhci_remove_ctrl() */
   3084 
   3085 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_elink),
   3086 	    sizeof(sqh->qh.qh_elink),
   3087 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   3088 	if (!(sqh->qh.qh_elink & htole32(UHCI_PTR_T))) {
   3089 		sqh->qh.qh_elink = htole32(UHCI_PTR_T);
   3090 		usb_syncmem(&sqh->dma,
   3091 		    sqh->offs + offsetof(uhci_qh_t, qh_elink),
   3092 		    sizeof(sqh->qh.qh_elink),
   3093 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   3094 		delay(UHCI_QH_REMOVE_DELAY);
   3095 	}
   3096 
   3097 	pqh = uhci_find_prev_qh(vf->hqh, sqh);
   3098 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_hlink),
   3099 	    sizeof(sqh->qh.qh_hlink),
   3100 	    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   3101 	pqh->hlink       = sqh->hlink;
   3102 	pqh->qh.qh_hlink = sqh->qh.qh_hlink;
   3103 	usb_syncmem(&pqh->dma, pqh->offs + offsetof(uhci_qh_t, qh_hlink),
   3104 	    sizeof(pqh->qh.qh_hlink),
   3105 	    BUS_DMASYNC_PREWRITE);
   3106 	delay(UHCI_QH_REMOVE_DELAY);
   3107 	if (vf->eqh == sqh)
   3108 		vf->eqh = pqh;
   3109 	vf->bandwidth--;
   3110 }
   3111 
   3112 usbd_status
   3113 uhci_device_setintr(uhci_softc_t *sc, struct uhci_pipe *upipe, int ival)
   3114 {
   3115 	uhci_soft_qh_t *sqh;
   3116 	int i, npoll, s;
   3117 	u_int bestbw, bw, bestoffs, offs;
   3118 
   3119 	DPRINTFN(2, ("uhci_device_setintr: pipe=%p\n", upipe));
   3120 	if (ival == 0) {
   3121 		printf("uhci_device_setintr: 0 interval\n");
   3122 		return (USBD_INVAL);
   3123 	}
   3124 
   3125 	if (ival > UHCI_VFRAMELIST_COUNT)
   3126 		ival = UHCI_VFRAMELIST_COUNT;
   3127 	npoll = (UHCI_VFRAMELIST_COUNT + ival - 1) / ival;
   3128 	DPRINTFN(2, ("uhci_device_setintr: ival=%d npoll=%d\n", ival, npoll));
   3129 
   3130 	upipe->u.intr.npoll = npoll;
   3131 	upipe->u.intr.qhs =
   3132 		malloc(npoll * sizeof(uhci_soft_qh_t *), M_USBHC, M_WAITOK);
   3133 
   3134 	/*
   3135 	 * Figure out which offset in the schedule that has most
   3136 	 * bandwidth left over.
   3137 	 */
   3138 #define MOD(i) ((i) & (UHCI_VFRAMELIST_COUNT-1))
   3139 	for (bestoffs = offs = 0, bestbw = ~0; offs < ival; offs++) {
   3140 		for (bw = i = 0; i < npoll; i++)
   3141 			bw += sc->sc_vframes[MOD(i * ival + offs)].bandwidth;
   3142 		if (bw < bestbw) {
   3143 			bestbw = bw;
   3144 			bestoffs = offs;
   3145 		}
   3146 	}
   3147 	DPRINTFN(1, ("uhci_device_setintr: bw=%d offs=%d\n", bestbw, bestoffs));
   3148 
   3149 	for(i = 0; i < npoll; i++) {
   3150 		upipe->u.intr.qhs[i] = sqh = uhci_alloc_sqh(sc);
   3151 		sqh->elink = NULL;
   3152 		sqh->qh.qh_elink = htole32(UHCI_PTR_T);
   3153 		usb_syncmem(&sqh->dma,
   3154 		    sqh->offs + offsetof(uhci_qh_t, qh_elink),
   3155 		    sizeof(sqh->qh.qh_elink),
   3156 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   3157 		sqh->pos = MOD(i * ival + bestoffs);
   3158 	}
   3159 #undef MOD
   3160 
   3161 	s = splusb();
   3162 	/* Enter QHs into the controller data structures. */
   3163 	for(i = 0; i < npoll; i++)
   3164 		uhci_add_intr(sc, upipe->u.intr.qhs[i]);
   3165 	splx(s);
   3166 
   3167 	DPRINTFN(5, ("uhci_device_setintr: returns %p\n", upipe));
   3168 	return (USBD_NORMAL_COMPLETION);
   3169 }
   3170 
   3171 /* Open a new pipe. */
   3172 usbd_status
   3173 uhci_open(usbd_pipe_handle pipe)
   3174 {
   3175 	uhci_softc_t *sc = pipe->device->bus->hci_private;
   3176 	struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
   3177 	usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
   3178 	usbd_status err;
   3179 	int ival;
   3180 
   3181 	DPRINTFN(1, ("uhci_open: pipe=%p, addr=%d, endpt=%d (%d)\n",
   3182 		     pipe, pipe->device->address,
   3183 		     ed->bEndpointAddress, sc->sc_addr));
   3184 
   3185 	upipe->aborting = 0;
   3186 	upipe->nexttoggle = 0;
   3187 
   3188 	if (pipe->device->address == sc->sc_addr) {
   3189 		switch (ed->bEndpointAddress) {
   3190 		case USB_CONTROL_ENDPOINT:
   3191 			pipe->methods = &uhci_root_ctrl_methods;
   3192 			break;
   3193 		case UE_DIR_IN | UHCI_INTR_ENDPT:
   3194 			pipe->methods = &uhci_root_intr_methods;
   3195 			break;
   3196 		default:
   3197 			return (USBD_INVAL);
   3198 		}
   3199 	} else {
   3200 		switch (ed->bmAttributes & UE_XFERTYPE) {
   3201 		case UE_CONTROL:
   3202 			pipe->methods = &uhci_device_ctrl_methods;
   3203 			upipe->u.ctl.sqh = uhci_alloc_sqh(sc);
   3204 			if (upipe->u.ctl.sqh == NULL)
   3205 				goto bad;
   3206 			upipe->u.ctl.setup = uhci_alloc_std(sc);
   3207 			if (upipe->u.ctl.setup == NULL) {
   3208 				uhci_free_sqh(sc, upipe->u.ctl.sqh);
   3209 				goto bad;
   3210 			}
   3211 			upipe->u.ctl.stat = uhci_alloc_std(sc);
   3212 			if (upipe->u.ctl.stat == NULL) {
   3213 				uhci_free_sqh(sc, upipe->u.ctl.sqh);
   3214 				uhci_free_std(sc, upipe->u.ctl.setup);
   3215 				goto bad;
   3216 			}
   3217 			err = usb_allocmem(&sc->sc_bus,
   3218 				  sizeof(usb_device_request_t),
   3219 				  0, &upipe->u.ctl.reqdma);
   3220 			if (err) {
   3221 				uhci_free_sqh(sc, upipe->u.ctl.sqh);
   3222 				uhci_free_std(sc, upipe->u.ctl.setup);
   3223 				uhci_free_std(sc, upipe->u.ctl.stat);
   3224 				goto bad;
   3225 			}
   3226 			break;
   3227 		case UE_INTERRUPT:
   3228 			pipe->methods = &uhci_device_intr_methods;
   3229 			ival = pipe->interval;
   3230 			if (ival == USBD_DEFAULT_INTERVAL)
   3231 				ival = ed->bInterval;
   3232 			return (uhci_device_setintr(sc, upipe, ival));
   3233 		case UE_ISOCHRONOUS:
   3234 			pipe->methods = &uhci_device_isoc_methods;
   3235 			return (uhci_setup_isoc(pipe));
   3236 		case UE_BULK:
   3237 			pipe->methods = &uhci_device_bulk_methods;
   3238 			upipe->u.bulk.sqh = uhci_alloc_sqh(sc);
   3239 			if (upipe->u.bulk.sqh == NULL)
   3240 				goto bad;
   3241 			break;
   3242 		}
   3243 	}
   3244 	return (USBD_NORMAL_COMPLETION);
   3245 
   3246  bad:
   3247 	return (USBD_NOMEM);
   3248 }
   3249 
   3250 /*
   3251  * Data structures and routines to emulate the root hub.
   3252  */
   3253 usb_device_descriptor_t uhci_devd = {
   3254 	USB_DEVICE_DESCRIPTOR_SIZE,
   3255 	UDESC_DEVICE,		/* type */
   3256 	{0x00, 0x01},		/* USB version */
   3257 	UDCLASS_HUB,		/* class */
   3258 	UDSUBCLASS_HUB,		/* subclass */
   3259 	UDPROTO_FSHUB,		/* protocol */
   3260 	64,			/* max packet */
   3261 	{0},{0},{0x00,0x01},	/* device id */
   3262 	1,2,0,			/* string indicies */
   3263 	1			/* # of configurations */
   3264 };
   3265 
   3266 const usb_config_descriptor_t uhci_confd = {
   3267 	USB_CONFIG_DESCRIPTOR_SIZE,
   3268 	UDESC_CONFIG,
   3269 	{USB_CONFIG_DESCRIPTOR_SIZE +
   3270 	 USB_INTERFACE_DESCRIPTOR_SIZE +
   3271 	 USB_ENDPOINT_DESCRIPTOR_SIZE},
   3272 	1,
   3273 	1,
   3274 	0,
   3275 	UC_ATTR_MBO | UC_SELF_POWERED,
   3276 	0			/* max power */
   3277 };
   3278 
   3279 const usb_interface_descriptor_t uhci_ifcd = {
   3280 	USB_INTERFACE_DESCRIPTOR_SIZE,
   3281 	UDESC_INTERFACE,
   3282 	0,
   3283 	0,
   3284 	1,
   3285 	UICLASS_HUB,
   3286 	UISUBCLASS_HUB,
   3287 	UIPROTO_FSHUB,
   3288 	0
   3289 };
   3290 
   3291 const usb_endpoint_descriptor_t uhci_endpd = {
   3292 	USB_ENDPOINT_DESCRIPTOR_SIZE,
   3293 	UDESC_ENDPOINT,
   3294 	UE_DIR_IN | UHCI_INTR_ENDPT,
   3295 	UE_INTERRUPT,
   3296 	{8},
   3297 	255
   3298 };
   3299 
   3300 const usb_hub_descriptor_t uhci_hubd_piix = {
   3301 	USB_HUB_DESCRIPTOR_SIZE,
   3302 	UDESC_HUB,
   3303 	2,
   3304 	{ UHD_PWR_NO_SWITCH | UHD_OC_INDIVIDUAL, 0 },
   3305 	50,			/* power on to power good */
   3306 	0,
   3307 	{ 0x00 },		/* both ports are removable */
   3308 	{ 0 },
   3309 };
   3310 
   3311 /*
   3312  * The USB hub protocol requires that SET_FEATURE(PORT_RESET) also
   3313  * enables the port, and also states that SET_FEATURE(PORT_ENABLE)
   3314  * should not be used by the USB subsystem.  As we cannot issue a
   3315  * SET_FEATURE(PORT_ENABLE) externally, we must ensure that the port
   3316  * will be enabled as part of the reset.
   3317  *
   3318  * On the VT83C572, the port cannot be successfully enabled until the
   3319  * outstanding "port enable change" and "connection status change"
   3320  * events have been reset.
   3321  */
   3322 Static usbd_status
   3323 uhci_portreset(uhci_softc_t *sc, int index)
   3324 {
   3325 	int lim, port, x;
   3326 
   3327 	if (index == 1)
   3328 		port = UHCI_PORTSC1;
   3329 	else if (index == 2)
   3330 		port = UHCI_PORTSC2;
   3331 	else
   3332 		return (USBD_IOERROR);
   3333 
   3334 	x = URWMASK(UREAD2(sc, port));
   3335 	UWRITE2(sc, port, x | UHCI_PORTSC_PR);
   3336 
   3337 	usb_delay_ms(&sc->sc_bus, USB_PORT_ROOT_RESET_DELAY);
   3338 
   3339 	DPRINTFN(3,("uhci port %d reset, status0 = 0x%04x\n",
   3340 		    index, UREAD2(sc, port)));
   3341 
   3342 	x = URWMASK(UREAD2(sc, port));
   3343 	UWRITE2(sc, port, x & ~(UHCI_PORTSC_PR | UHCI_PORTSC_SUSP));
   3344 
   3345 	delay(100);
   3346 
   3347 	DPRINTFN(3,("uhci port %d reset, status1 = 0x%04x\n",
   3348 		    index, UREAD2(sc, port)));
   3349 
   3350 	x = URWMASK(UREAD2(sc, port));
   3351 	UWRITE2(sc, port, x  | UHCI_PORTSC_PE);
   3352 
   3353 	for (lim = 10; --lim > 0;) {
   3354 		usb_delay_ms(&sc->sc_bus, USB_PORT_RESET_DELAY);
   3355 
   3356 		x = UREAD2(sc, port);
   3357 
   3358 		DPRINTFN(3,("uhci port %d iteration %u, status = 0x%04x\n",
   3359 			    index, lim, x));
   3360 
   3361 		if (!(x & UHCI_PORTSC_CCS)) {
   3362 			/*
   3363 			 * No device is connected (or was disconnected
   3364 			 * during reset).  Consider the port reset.
   3365 			 * The delay must be long enough to ensure on
   3366 			 * the initial iteration that the device
   3367 			 * connection will have been registered.  50ms
   3368 			 * appears to be sufficient, but 20ms is not.
   3369 			 */
   3370 			DPRINTFN(3,("uhci port %d loop %u, device detached\n",
   3371 				    index, lim));
   3372 			break;
   3373 		}
   3374 
   3375 		if (x & (UHCI_PORTSC_POEDC | UHCI_PORTSC_CSC)) {
   3376 			/*
   3377 			 * Port enabled changed and/or connection
   3378 			 * status changed were set.  Reset either or
   3379 			 * both raised flags (by writing a 1 to that
   3380 			 * bit), and wait again for state to settle.
   3381 			 */
   3382 			UWRITE2(sc, port, URWMASK(x) |
   3383 				(x & (UHCI_PORTSC_POEDC | UHCI_PORTSC_CSC)));
   3384 			continue;
   3385 		}
   3386 
   3387 		if (x & UHCI_PORTSC_PE)
   3388 			/* Port is enabled */
   3389 			break;
   3390 
   3391 		UWRITE2(sc, port, URWMASK(x) | UHCI_PORTSC_PE);
   3392 	}
   3393 
   3394 	DPRINTFN(3,("uhci port %d reset, status2 = 0x%04x\n",
   3395 		    index, UREAD2(sc, port)));
   3396 
   3397 	if (lim <= 0) {
   3398 		DPRINTFN(1,("uhci port %d reset timed out\n", index));
   3399 		return (USBD_TIMEOUT);
   3400 	}
   3401 
   3402 	sc->sc_isreset = 1;
   3403 	return (USBD_NORMAL_COMPLETION);
   3404 }
   3405 
   3406 /*
   3407  * Simulate a hardware hub by handling all the necessary requests.
   3408  */
   3409 usbd_status
   3410 uhci_root_ctrl_transfer(usbd_xfer_handle xfer)
   3411 {
   3412 	usbd_status err;
   3413 
   3414 	/* Insert last in queue. */
   3415 	err = usb_insert_transfer(xfer);
   3416 	if (err)
   3417 		return (err);
   3418 
   3419 	/*
   3420 	 * Pipe isn't running (otherwise err would be USBD_INPROG),
   3421 	 * so start it first.
   3422 	 */
   3423 	return (uhci_root_ctrl_start(SIMPLEQ_FIRST(&xfer->pipe->queue)));
   3424 }
   3425 
   3426 usbd_status
   3427 uhci_root_ctrl_start(usbd_xfer_handle xfer)
   3428 {
   3429 	uhci_softc_t *sc = xfer->pipe->device->bus->hci_private;
   3430 	usb_device_request_t *req;
   3431 	void *buf = NULL;
   3432 	int port, x;
   3433 	int s, len, value, index, status, change, l, totlen = 0;
   3434 	usb_port_status_t ps;
   3435 	usbd_status err;
   3436 
   3437 	if (sc->sc_dying)
   3438 		return (USBD_IOERROR);
   3439 
   3440 #ifdef DIAGNOSTIC
   3441 	if (!(xfer->rqflags & URQ_REQUEST))
   3442 		panic("uhci_root_ctrl_transfer: not a request");
   3443 #endif
   3444 	req = &xfer->request;
   3445 
   3446 	DPRINTFN(2,("uhci_root_ctrl_control type=0x%02x request=%02x\n",
   3447 		    req->bmRequestType, req->bRequest));
   3448 
   3449 	len = UGETW(req->wLength);
   3450 	value = UGETW(req->wValue);
   3451 	index = UGETW(req->wIndex);
   3452 
   3453 	if (len != 0)
   3454 		buf = KERNADDR(&xfer->dmabuf, 0);
   3455 
   3456 #define C(x,y) ((x) | ((y) << 8))
   3457 	switch(C(req->bRequest, req->bmRequestType)) {
   3458 	case C(UR_CLEAR_FEATURE, UT_WRITE_DEVICE):
   3459 	case C(UR_CLEAR_FEATURE, UT_WRITE_INTERFACE):
   3460 	case C(UR_CLEAR_FEATURE, UT_WRITE_ENDPOINT):
   3461 		/*
   3462 		 * DEVICE_REMOTE_WAKEUP and ENDPOINT_HALT are no-ops
   3463 		 * for the integrated root hub.
   3464 		 */
   3465 		break;
   3466 	case C(UR_GET_CONFIG, UT_READ_DEVICE):
   3467 		if (len > 0) {
   3468 			*(u_int8_t *)buf = sc->sc_conf;
   3469 			totlen = 1;
   3470 		}
   3471 		break;
   3472 	case C(UR_GET_DESCRIPTOR, UT_READ_DEVICE):
   3473 		DPRINTFN(2,("uhci_root_ctrl_control wValue=0x%04x\n", value));
   3474 		if (len == 0)
   3475 			break;
   3476 		switch(value >> 8) {
   3477 		case UDESC_DEVICE:
   3478 			if ((value & 0xff) != 0) {
   3479 				err = USBD_IOERROR;
   3480 				goto ret;
   3481 			}
   3482 			totlen = l = min(len, USB_DEVICE_DESCRIPTOR_SIZE);
   3483 			USETW(uhci_devd.idVendor, sc->sc_id_vendor);
   3484 			memcpy(buf, &uhci_devd, l);
   3485 			break;
   3486 		case UDESC_CONFIG:
   3487 			if ((value & 0xff) != 0) {
   3488 				err = USBD_IOERROR;
   3489 				goto ret;
   3490 			}
   3491 			totlen = l = min(len, USB_CONFIG_DESCRIPTOR_SIZE);
   3492 			memcpy(buf, &uhci_confd, l);
   3493 			buf = (char *)buf + l;
   3494 			len -= l;
   3495 			l = min(len, USB_INTERFACE_DESCRIPTOR_SIZE);
   3496 			totlen += l;
   3497 			memcpy(buf, &uhci_ifcd, l);
   3498 			buf = (char *)buf + l;
   3499 			len -= l;
   3500 			l = min(len, USB_ENDPOINT_DESCRIPTOR_SIZE);
   3501 			totlen += l;
   3502 			memcpy(buf, &uhci_endpd, l);
   3503 			break;
   3504 		case UDESC_STRING:
   3505 #define sd ((usb_string_descriptor_t *)buf)
   3506 			switch (value & 0xff) {
   3507 			case 0: /* Language table */
   3508 				totlen = usb_makelangtbl(sd, len);
   3509 				break;
   3510 			case 1: /* Vendor */
   3511 				totlen = usb_makestrdesc(sd, len,
   3512 							 sc->sc_vendor);
   3513 				break;
   3514 			case 2: /* Product */
   3515 				totlen = usb_makestrdesc(sd, len,
   3516 							 "UHCI root hub");
   3517 				break;
   3518 			}
   3519 #undef sd
   3520 			break;
   3521 		default:
   3522 			err = USBD_IOERROR;
   3523 			goto ret;
   3524 		}
   3525 		break;
   3526 	case C(UR_GET_INTERFACE, UT_READ_INTERFACE):
   3527 		if (len > 0) {
   3528 			*(u_int8_t *)buf = 0;
   3529 			totlen = 1;
   3530 		}
   3531 		break;
   3532 	case C(UR_GET_STATUS, UT_READ_DEVICE):
   3533 		if (len > 1) {
   3534 			USETW(((usb_status_t *)buf)->wStatus,UDS_SELF_POWERED);
   3535 			totlen = 2;
   3536 		}
   3537 		break;
   3538 	case C(UR_GET_STATUS, UT_READ_INTERFACE):
   3539 	case C(UR_GET_STATUS, UT_READ_ENDPOINT):
   3540 		if (len > 1) {
   3541 			USETW(((usb_status_t *)buf)->wStatus, 0);
   3542 			totlen = 2;
   3543 		}
   3544 		break;
   3545 	case C(UR_SET_ADDRESS, UT_WRITE_DEVICE):
   3546 		if (value >= USB_MAX_DEVICES) {
   3547 			err = USBD_IOERROR;
   3548 			goto ret;
   3549 		}
   3550 		sc->sc_addr = value;
   3551 		break;
   3552 	case C(UR_SET_CONFIG, UT_WRITE_DEVICE):
   3553 		if (value != 0 && value != 1) {
   3554 			err = USBD_IOERROR;
   3555 			goto ret;
   3556 		}
   3557 		sc->sc_conf = value;
   3558 		break;
   3559 	case C(UR_SET_DESCRIPTOR, UT_WRITE_DEVICE):
   3560 		break;
   3561 	case C(UR_SET_FEATURE, UT_WRITE_DEVICE):
   3562 	case C(UR_SET_FEATURE, UT_WRITE_INTERFACE):
   3563 	case C(UR_SET_FEATURE, UT_WRITE_ENDPOINT):
   3564 		err = USBD_IOERROR;
   3565 		goto ret;
   3566 	case C(UR_SET_INTERFACE, UT_WRITE_INTERFACE):
   3567 		break;
   3568 	case C(UR_SYNCH_FRAME, UT_WRITE_ENDPOINT):
   3569 		break;
   3570 	/* Hub requests */
   3571 	case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_DEVICE):
   3572 		break;
   3573 	case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_OTHER):
   3574 		DPRINTFN(3, ("uhci_root_ctrl_control: UR_CLEAR_PORT_FEATURE "
   3575 			     "port=%d feature=%d\n",
   3576 			     index, value));
   3577 		if (index == 1)
   3578 			port = UHCI_PORTSC1;
   3579 		else if (index == 2)
   3580 			port = UHCI_PORTSC2;
   3581 		else {
   3582 			err = USBD_IOERROR;
   3583 			goto ret;
   3584 		}
   3585 		switch(value) {
   3586 		case UHF_PORT_ENABLE:
   3587 			x = URWMASK(UREAD2(sc, port));
   3588 			UWRITE2(sc, port, x & ~UHCI_PORTSC_PE);
   3589 			break;
   3590 		case UHF_PORT_SUSPEND:
   3591 			x = URWMASK(UREAD2(sc, port));
   3592 			if (!(x & UHCI_PORTSC_SUSP)) /* not suspended */
   3593 				break;
   3594 			UWRITE2(sc, port, x | UHCI_PORTSC_RD);
   3595 			/* see USB2 spec ch. 7.1.7.7 */
   3596 			usb_delay_ms(&sc->sc_bus, 20);
   3597 			UWRITE2(sc, port, x & ~UHCI_PORTSC_SUSP);
   3598 			/* 10ms resume delay must be provided by caller */
   3599 			break;
   3600 		case UHF_PORT_RESET:
   3601 			x = URWMASK(UREAD2(sc, port));
   3602 			UWRITE2(sc, port, x & ~UHCI_PORTSC_PR);
   3603 			break;
   3604 		case UHF_C_PORT_CONNECTION:
   3605 			x = URWMASK(UREAD2(sc, port));
   3606 			UWRITE2(sc, port, x | UHCI_PORTSC_CSC);
   3607 			break;
   3608 		case UHF_C_PORT_ENABLE:
   3609 			x = URWMASK(UREAD2(sc, port));
   3610 			UWRITE2(sc, port, x | UHCI_PORTSC_POEDC);
   3611 			break;
   3612 		case UHF_C_PORT_OVER_CURRENT:
   3613 			x = URWMASK(UREAD2(sc, port));
   3614 			UWRITE2(sc, port, x | UHCI_PORTSC_OCIC);
   3615 			break;
   3616 		case UHF_C_PORT_RESET:
   3617 			sc->sc_isreset = 0;
   3618 			err = USBD_NORMAL_COMPLETION;
   3619 			goto ret;
   3620 		case UHF_PORT_CONNECTION:
   3621 		case UHF_PORT_OVER_CURRENT:
   3622 		case UHF_PORT_POWER:
   3623 		case UHF_PORT_LOW_SPEED:
   3624 		case UHF_C_PORT_SUSPEND:
   3625 		default:
   3626 			err = USBD_IOERROR;
   3627 			goto ret;
   3628 		}
   3629 		break;
   3630 	case C(UR_GET_BUS_STATE, UT_READ_CLASS_OTHER):
   3631 		if (index == 1)
   3632 			port = UHCI_PORTSC1;
   3633 		else if (index == 2)
   3634 			port = UHCI_PORTSC2;
   3635 		else {
   3636 			err = USBD_IOERROR;
   3637 			goto ret;
   3638 		}
   3639 		if (len > 0) {
   3640 			*(u_int8_t *)buf =
   3641 				(UREAD2(sc, port) & UHCI_PORTSC_LS) >>
   3642 				UHCI_PORTSC_LS_SHIFT;
   3643 			totlen = 1;
   3644 		}
   3645 		break;
   3646 	case C(UR_GET_DESCRIPTOR, UT_READ_CLASS_DEVICE):
   3647 		if (len == 0)
   3648 			break;
   3649 		if ((value & 0xff) != 0) {
   3650 			err = USBD_IOERROR;
   3651 			goto ret;
   3652 		}
   3653 		l = min(len, USB_HUB_DESCRIPTOR_SIZE);
   3654 		totlen = l;
   3655 		memcpy(buf, &uhci_hubd_piix, l);
   3656 		break;
   3657 	case C(UR_GET_STATUS, UT_READ_CLASS_DEVICE):
   3658 		if (len != 4) {
   3659 			err = USBD_IOERROR;
   3660 			goto ret;
   3661 		}
   3662 		memset(buf, 0, len);
   3663 		totlen = len;
   3664 		break;
   3665 	case C(UR_GET_STATUS, UT_READ_CLASS_OTHER):
   3666 		if (index == 1)
   3667 			port = UHCI_PORTSC1;
   3668 		else if (index == 2)
   3669 			port = UHCI_PORTSC2;
   3670 		else {
   3671 			err = USBD_IOERROR;
   3672 			goto ret;
   3673 		}
   3674 		if (len != 4) {
   3675 			err = USBD_IOERROR;
   3676 			goto ret;
   3677 		}
   3678 		x = UREAD2(sc, port);
   3679 		status = change = 0;
   3680 		if (x & UHCI_PORTSC_CCS)
   3681 			status |= UPS_CURRENT_CONNECT_STATUS;
   3682 		if (x & UHCI_PORTSC_CSC)
   3683 			change |= UPS_C_CONNECT_STATUS;
   3684 		if (x & UHCI_PORTSC_PE)
   3685 			status |= UPS_PORT_ENABLED;
   3686 		if (x & UHCI_PORTSC_POEDC)
   3687 			change |= UPS_C_PORT_ENABLED;
   3688 		if (x & UHCI_PORTSC_OCI)
   3689 			status |= UPS_OVERCURRENT_INDICATOR;
   3690 		if (x & UHCI_PORTSC_OCIC)
   3691 			change |= UPS_C_OVERCURRENT_INDICATOR;
   3692 		if (x & UHCI_PORTSC_SUSP)
   3693 			status |= UPS_SUSPEND;
   3694 		if (x & UHCI_PORTSC_LSDA)
   3695 			status |= UPS_LOW_SPEED;
   3696 		status |= UPS_PORT_POWER;
   3697 		if (sc->sc_isreset)
   3698 			change |= UPS_C_PORT_RESET;
   3699 		USETW(ps.wPortStatus, status);
   3700 		USETW(ps.wPortChange, change);
   3701 		l = min(len, sizeof ps);
   3702 		memcpy(buf, &ps, l);
   3703 		totlen = l;
   3704 		break;
   3705 	case C(UR_SET_DESCRIPTOR, UT_WRITE_CLASS_DEVICE):
   3706 		err = USBD_IOERROR;
   3707 		goto ret;
   3708 	case C(UR_SET_FEATURE, UT_WRITE_CLASS_DEVICE):
   3709 		break;
   3710 	case C(UR_SET_FEATURE, UT_WRITE_CLASS_OTHER):
   3711 		if (index == 1)
   3712 			port = UHCI_PORTSC1;
   3713 		else if (index == 2)
   3714 			port = UHCI_PORTSC2;
   3715 		else {
   3716 			err = USBD_IOERROR;
   3717 			goto ret;
   3718 		}
   3719 		switch(value) {
   3720 		case UHF_PORT_ENABLE:
   3721 			x = URWMASK(UREAD2(sc, port));
   3722 			UWRITE2(sc, port, x | UHCI_PORTSC_PE);
   3723 			break;
   3724 		case UHF_PORT_SUSPEND:
   3725 			x = URWMASK(UREAD2(sc, port));
   3726 			UWRITE2(sc, port, x | UHCI_PORTSC_SUSP);
   3727 			break;
   3728 		case UHF_PORT_RESET:
   3729 			err = uhci_portreset(sc, index);
   3730 			goto ret;
   3731 		case UHF_PORT_POWER:
   3732 			/* Pretend we turned on power */
   3733 			err = USBD_NORMAL_COMPLETION;
   3734 			goto ret;
   3735 		case UHF_C_PORT_CONNECTION:
   3736 		case UHF_C_PORT_ENABLE:
   3737 		case UHF_C_PORT_OVER_CURRENT:
   3738 		case UHF_PORT_CONNECTION:
   3739 		case UHF_PORT_OVER_CURRENT:
   3740 		case UHF_PORT_LOW_SPEED:
   3741 		case UHF_C_PORT_SUSPEND:
   3742 		case UHF_C_PORT_RESET:
   3743 		default:
   3744 			err = USBD_IOERROR;
   3745 			goto ret;
   3746 		}
   3747 		break;
   3748 	default:
   3749 		err = USBD_IOERROR;
   3750 		goto ret;
   3751 	}
   3752 	xfer->actlen = totlen;
   3753 	err = USBD_NORMAL_COMPLETION;
   3754  ret:
   3755 	xfer->status = err;
   3756 	s = splusb();
   3757 	usb_transfer_complete(xfer);
   3758 	splx(s);
   3759 	return (USBD_IN_PROGRESS);
   3760 }
   3761 
   3762 /* Abort a root control request. */
   3763 void
   3764 uhci_root_ctrl_abort(usbd_xfer_handle xfer)
   3765 {
   3766 	/* Nothing to do, all transfers are synchronous. */
   3767 }
   3768 
   3769 /* Close the root pipe. */
   3770 void
   3771 uhci_root_ctrl_close(usbd_pipe_handle pipe)
   3772 {
   3773 	DPRINTF(("uhci_root_ctrl_close\n"));
   3774 }
   3775 
   3776 /* Abort a root interrupt request. */
   3777 void
   3778 uhci_root_intr_abort(usbd_xfer_handle xfer)
   3779 {
   3780 	uhci_softc_t *sc = xfer->pipe->device->bus->hci_private;
   3781 
   3782 	callout_stop(&sc->sc_poll_handle);
   3783 	sc->sc_intr_xfer = NULL;
   3784 
   3785 	if (xfer->pipe->intrxfer == xfer) {
   3786 		DPRINTF(("uhci_root_intr_abort: remove\n"));
   3787 		xfer->pipe->intrxfer = 0;
   3788 	}
   3789 	xfer->status = USBD_CANCELLED;
   3790 #ifdef DIAGNOSTIC
   3791 	UXFER(xfer)->iinfo.isdone = 1;
   3792 #endif
   3793 	usb_transfer_complete(xfer);
   3794 }
   3795 
   3796 usbd_status
   3797 uhci_root_intr_transfer(usbd_xfer_handle xfer)
   3798 {
   3799 	usbd_status err;
   3800 
   3801 	/* Insert last in queue. */
   3802 	err = usb_insert_transfer(xfer);
   3803 	if (err)
   3804 		return (err);
   3805 
   3806 	/*
   3807 	 * Pipe isn't running (otherwise err would be USBD_INPROG),
   3808 	 * start first
   3809 	 */
   3810 	return (uhci_root_intr_start(SIMPLEQ_FIRST(&xfer->pipe->queue)));
   3811 }
   3812 
   3813 /* Start a transfer on the root interrupt pipe */
   3814 usbd_status
   3815 uhci_root_intr_start(usbd_xfer_handle xfer)
   3816 {
   3817 	usbd_pipe_handle pipe = xfer->pipe;
   3818 	uhci_softc_t *sc = pipe->device->bus->hci_private;
   3819 	unsigned int ival;
   3820 
   3821 	DPRINTFN(3, ("uhci_root_intr_start: xfer=%p len=%d flags=%d\n",
   3822 		     xfer, xfer->length, xfer->flags));
   3823 
   3824 	if (sc->sc_dying)
   3825 		return (USBD_IOERROR);
   3826 
   3827 	/* XXX temporary variable needed to avoid gcc3 warning */
   3828 	ival = xfer->pipe->endpoint->edesc->bInterval;
   3829 	sc->sc_ival = mstohz(ival);
   3830 	callout_reset(&sc->sc_poll_handle, sc->sc_ival, uhci_poll_hub, xfer);
   3831 	sc->sc_intr_xfer = xfer;
   3832 	return (USBD_IN_PROGRESS);
   3833 }
   3834 
   3835 /* Close the root interrupt pipe. */
   3836 void
   3837 uhci_root_intr_close(usbd_pipe_handle pipe)
   3838 {
   3839 	uhci_softc_t *sc = pipe->device->bus->hci_private;
   3840 
   3841 	callout_stop(&sc->sc_poll_handle);
   3842 	sc->sc_intr_xfer = NULL;
   3843 	DPRINTF(("uhci_root_intr_close\n"));
   3844 }
   3845