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