kprintf to device_printf conversion.
[dragonfly.git] / sys / bus / usb / uhci.c
blob27ac7f2bb7b8449f1500bc96558f0298c2b866b9
1 /* $NetBSD: uhci.c,v 1.170 2003/02/19 01:35:04 augustss Exp $ */
2 /* $FreeBSD: src/sys/dev/usb/uhci.c,v 1.162.2.1 2006/03/01 01:59:04 iedowse Exp $ */
3 /* $DragonFly: src/sys/bus/usb/uhci.c,v 1.26 2008/05/21 19:56:46 mneumann Exp $ */
5 /* Also already incorporated from NetBSD:
6 * $NetBSD: uhci.c,v 1.172 2003/02/23 04:19:26 simonb Exp $
7 * $NetBSD: uhci.c,v 1.173 2003/05/13 04:41:59 gson Exp $
8 * $NetBSD: uhci.c,v 1.175 2003/09/12 16:18:08 mycroft Exp $
9 * $NetBSD: uhci.c,v 1.176 2003/11/04 19:11:21 mycroft Exp $
10 * $NetBSD: uhci.c,v 1.177 2003/12/29 08:17:10 toshii Exp $
11 * $NetBSD: uhci.c,v 1.178 2004/03/02 16:32:05 martin Exp $
12 * $NetBSD: uhci.c,v 1.180 2004/07/17 20:12:03 mycroft Exp $
16 * Copyright (c) 1998 The NetBSD Foundation, Inc.
17 * All rights reserved.
19 * This code is derived from software contributed to The NetBSD Foundation
20 * by Lennart Augustsson (lennart@augustsson.net) at
21 * Carlstedt Research & Technology.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * This product includes software developed by the NetBSD
34 * Foundation, Inc. and its contributors.
35 * 4. Neither the name of The NetBSD Foundation nor the names of its
36 * contributors may be used to endorse or promote products derived
37 * from this software without specific prior written permission.
39 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
40 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
41 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
43 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
44 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
45 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
46 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
49 * POSSIBILITY OF SUCH DAMAGE.
53 * USB Universal Host Controller driver.
54 * Handles e.g. PIIX3 and PIIX4.
56 * UHCI spec: http://developer.intel.com/design/USB/UHCI11D.htm
57 * USB spec: http://www.usb.org/developers/docs/usbspec.zip
58 * PIIXn spec: ftp://download.intel.com/design/intarch/datashts/29055002.pdf
59 * ftp://download.intel.com/design/intarch/datashts/29056201.pdf
62 #include <sys/param.h>
63 #include <sys/systm.h>
64 #include <sys/kernel.h>
65 #include <sys/malloc.h>
66 #include <sys/endian.h>
67 #include <sys/module.h>
68 #include <sys/bus.h>
69 #if defined(DIAGNOSTIC) && defined(__i386__)
70 #include <machine/cpu.h>
71 #endif
72 #include <sys/proc.h>
73 #include <sys/queue.h>
74 #include <sys/sysctl.h>
75 #include <sys/thread2.h>
77 #include <machine/endian.h>
79 #include <bus/usb/usb.h>
80 #include <bus/usb/usbdi.h>
81 #include <bus/usb/usbdivar.h>
82 #include <bus/usb/usb_mem.h>
83 #include <bus/usb/usb_quirks.h>
85 #include <bus/usb/uhcireg.h>
86 #include <bus/usb/uhcivar.h>
88 /* Use bandwidth reclamation for control transfers. Some devices choke on it. */
89 /*#define UHCI_CTL_LOOP */
91 #define delay(d) DELAY(d)
93 #define MS_TO_TICKS(ms) ((ms) * hz / 1000)
95 #ifdef USB_DEBUG
96 uhci_softc_t *thesc;
97 #define DPRINTF(x) if (uhcidebug) kprintf x
98 #define DPRINTFN(n,x) if (uhcidebug>(n)) kprintf x
99 int uhcidebug = 0;
100 int uhcinoloop = 0;
101 SYSCTL_NODE(_hw_usb, OID_AUTO, uhci, CTLFLAG_RW, 0, "USB uhci");
102 SYSCTL_INT(_hw_usb_uhci, OID_AUTO, debug, CTLFLAG_RW,
103 &uhcidebug, 0, "uhci debug level");
104 SYSCTL_INT(_hw_usb_uhci, OID_AUTO, loop, CTLFLAG_RW,
105 &uhcinoloop, 0, "uhci noloop");
106 #define bitmask_snprintf(q,f,b,l) ksnprintf((b), (l), "%b", (q), (f))
107 #else
108 #define DPRINTF(x)
109 #define DPRINTFN(n,x)
110 #endif
112 struct uhci_pipe {
113 struct usbd_pipe pipe;
114 int nexttoggle;
116 u_char aborting;
117 usbd_xfer_handle abortstart, abortend;
119 /* Info needed for different pipe kinds. */
120 union {
121 /* Control pipe */
122 struct {
123 uhci_soft_qh_t *sqh;
124 usb_dma_t reqdma;
125 uhci_soft_td_t *setup, *stat;
126 u_int length;
127 } ctl;
128 /* Interrupt pipe */
129 struct {
130 int npoll;
131 int isread;
132 uhci_soft_qh_t **qhs;
133 } intr;
134 /* Bulk pipe */
135 struct {
136 uhci_soft_qh_t *sqh;
137 u_int length;
138 int isread;
139 } bulk;
140 /* Iso pipe */
141 struct iso {
142 uhci_soft_td_t **stds;
143 int next, inuse;
144 } iso;
145 } u;
148 static void uhci_globalreset(uhci_softc_t *);
149 static usbd_status uhci_portreset(uhci_softc_t*, int);
150 static void uhci_reset(uhci_softc_t *);
151 static usbd_status uhci_run(uhci_softc_t *, int run);
152 static uhci_soft_td_t *uhci_alloc_std(uhci_softc_t *);
153 static void uhci_free_std(uhci_softc_t *, uhci_soft_td_t *);
154 static uhci_soft_qh_t *uhci_alloc_sqh(uhci_softc_t *);
155 static void uhci_free_sqh(uhci_softc_t *, uhci_soft_qh_t *);
156 #if 0
157 static void uhci_enter_ctl_q(uhci_softc_t *, uhci_soft_qh_t *,
158 uhci_intr_info_t *);
159 static void uhci_exit_ctl_q(uhci_softc_t *, uhci_soft_qh_t *);
160 #endif
162 static void uhci_free_std_chain(uhci_softc_t *,
163 uhci_soft_td_t *, uhci_soft_td_t *);
164 static usbd_status uhci_alloc_std_chain(struct uhci_pipe *,
165 uhci_softc_t *, int, int, u_int16_t, usb_dma_t *,
166 uhci_soft_td_t **, uhci_soft_td_t **);
167 static void uhci_poll_hub(void *);
168 static void uhci_waitintr(uhci_softc_t *, usbd_xfer_handle);
169 static void uhci_check_intr(uhci_softc_t *, uhci_intr_info_t *);
170 static void uhci_idone(uhci_intr_info_t *);
172 static void uhci_abort_xfer(usbd_xfer_handle, usbd_status status);
174 static void uhci_timeout(void *);
175 static void uhci_timeout_task(void *);
176 static void uhci_add_ls_ctrl(uhci_softc_t *, uhci_soft_qh_t *);
177 static void uhci_add_hs_ctrl(uhci_softc_t *, uhci_soft_qh_t *);
178 static void uhci_add_bulk(uhci_softc_t *, uhci_soft_qh_t *);
179 static void uhci_remove_ls_ctrl(uhci_softc_t *,uhci_soft_qh_t *);
180 static void uhci_remove_hs_ctrl(uhci_softc_t *,uhci_soft_qh_t *);
181 static void uhci_remove_bulk(uhci_softc_t *,uhci_soft_qh_t *);
182 static int uhci_str(usb_string_descriptor_t *, int, char *);
183 static void uhci_add_loop(uhci_softc_t *sc);
184 static void uhci_rem_loop(uhci_softc_t *sc);
186 static usbd_status uhci_setup_isoc(usbd_pipe_handle pipe);
187 static void uhci_device_isoc_enter(usbd_xfer_handle);
189 static usbd_status uhci_allocm(struct usbd_bus *, usb_dma_t *, u_int32_t);
190 static void uhci_freem(struct usbd_bus *, usb_dma_t *);
192 static usbd_xfer_handle uhci_allocx(struct usbd_bus *);
193 static void uhci_freex(struct usbd_bus *, usbd_xfer_handle);
195 static usbd_status uhci_device_ctrl_transfer(usbd_xfer_handle);
196 static usbd_status uhci_device_ctrl_start(usbd_xfer_handle);
197 static void uhci_device_ctrl_abort(usbd_xfer_handle);
198 static void uhci_device_ctrl_close(usbd_pipe_handle);
199 static void uhci_device_ctrl_done(usbd_xfer_handle);
201 static usbd_status uhci_device_intr_transfer(usbd_xfer_handle);
202 static usbd_status uhci_device_intr_start(usbd_xfer_handle);
203 static void uhci_device_intr_abort(usbd_xfer_handle);
204 static void uhci_device_intr_close(usbd_pipe_handle);
205 static void uhci_device_intr_done(usbd_xfer_handle);
207 static usbd_status uhci_device_bulk_transfer(usbd_xfer_handle);
208 static usbd_status uhci_device_bulk_start(usbd_xfer_handle);
209 static void uhci_device_bulk_abort(usbd_xfer_handle);
210 static void uhci_device_bulk_close(usbd_pipe_handle);
211 static void uhci_device_bulk_done(usbd_xfer_handle);
213 static usbd_status uhci_device_isoc_transfer(usbd_xfer_handle);
214 static usbd_status uhci_device_isoc_start(usbd_xfer_handle);
215 static void uhci_device_isoc_abort(usbd_xfer_handle);
216 static void uhci_device_isoc_close(usbd_pipe_handle);
217 static void uhci_device_isoc_done(usbd_xfer_handle);
219 static usbd_status uhci_root_ctrl_transfer(usbd_xfer_handle);
220 static usbd_status uhci_root_ctrl_start(usbd_xfer_handle);
221 static void uhci_root_ctrl_abort(usbd_xfer_handle);
222 static void uhci_root_ctrl_close(usbd_pipe_handle);
223 static void uhci_root_ctrl_done(usbd_xfer_handle);
225 static usbd_status uhci_root_intr_transfer(usbd_xfer_handle);
226 static usbd_status uhci_root_intr_start(usbd_xfer_handle);
227 static void uhci_root_intr_abort(usbd_xfer_handle);
228 static void uhci_root_intr_close(usbd_pipe_handle);
229 static void uhci_root_intr_done(usbd_xfer_handle);
231 static usbd_status uhci_open(usbd_pipe_handle);
232 static void uhci_poll(struct usbd_bus *);
233 static void uhci_softintr(void *);
235 static usbd_status uhci_device_request(usbd_xfer_handle xfer);
237 static void uhci_add_intr(uhci_softc_t *, uhci_soft_qh_t *);
238 static void uhci_remove_intr(uhci_softc_t *, uhci_soft_qh_t *);
239 static usbd_status uhci_device_setintr(uhci_softc_t *sc,
240 struct uhci_pipe *pipe, int ival);
242 static void uhci_device_clear_toggle(usbd_pipe_handle pipe);
243 static void uhci_noop(usbd_pipe_handle pipe);
245 static __inline uhci_soft_qh_t *uhci_find_prev_qh(uhci_soft_qh_t *,
246 uhci_soft_qh_t *);
248 #ifdef USB_DEBUG
249 static void uhci_dump_all(uhci_softc_t *);
250 static void uhci_dumpregs(uhci_softc_t *);
251 static void uhci_dump_qhs(uhci_soft_qh_t *);
252 static void uhci_dump_qh(uhci_soft_qh_t *);
253 static void uhci_dump_tds(uhci_soft_td_t *);
254 static void uhci_dump_td(uhci_soft_td_t *);
255 static void uhci_dump_ii(uhci_intr_info_t *ii);
256 void uhci_dump(void);
257 #endif
259 #define UBARR(sc) bus_space_barrier((sc)->iot, (sc)->ioh, 0, (sc)->sc_size, \
260 BUS_SPACE_BARRIER_READ|BUS_SPACE_BARRIER_WRITE)
261 #define UWRITE1(sc, r, x) \
262 do { UBARR(sc); bus_space_write_1((sc)->iot, (sc)->ioh, (r), (x)); \
263 } while (/*CONSTCOND*/0)
264 #define UWRITE2(sc, r, x) \
265 do { UBARR(sc); bus_space_write_2((sc)->iot, (sc)->ioh, (r), (x)); \
266 } while (/*CONSTCOND*/0)
267 #define UWRITE4(sc, r, x) \
268 do { UBARR(sc); bus_space_write_4((sc)->iot, (sc)->ioh, (r), (x)); \
269 } while (/*CONSTCOND*/0)
270 #define UREAD1(sc, r) (UBARR(sc), bus_space_read_1((sc)->iot, (sc)->ioh, (r)))
271 #define UREAD2(sc, r) (UBARR(sc), bus_space_read_2((sc)->iot, (sc)->ioh, (r)))
272 #define UREAD4(sc, r) (UBARR(sc), bus_space_read_4((sc)->iot, (sc)->ioh, (r)))
274 #define UHCICMD(sc, cmd) UWRITE2(sc, UHCI_CMD, cmd)
275 #define UHCISTS(sc) UREAD2(sc, UHCI_STS)
277 #define UHCI_RESET_TIMEOUT 100 /* ms, reset timeout */
279 #define UHCI_CURFRAME(sc) (UREAD2(sc, UHCI_FRNUM) & UHCI_FRNUM_MASK)
281 #define UHCI_INTR_ENDPT 1
283 struct usbd_bus_methods uhci_bus_methods = {
284 uhci_open,
285 uhci_softintr,
286 uhci_poll,
287 uhci_allocm,
288 uhci_freem,
289 uhci_allocx,
290 uhci_freex,
293 struct usbd_pipe_methods uhci_root_ctrl_methods = {
294 uhci_root_ctrl_transfer,
295 uhci_root_ctrl_start,
296 uhci_root_ctrl_abort,
297 uhci_root_ctrl_close,
298 uhci_noop,
299 uhci_root_ctrl_done,
302 struct usbd_pipe_methods uhci_root_intr_methods = {
303 uhci_root_intr_transfer,
304 uhci_root_intr_start,
305 uhci_root_intr_abort,
306 uhci_root_intr_close,
307 uhci_noop,
308 uhci_root_intr_done,
311 struct usbd_pipe_methods uhci_device_ctrl_methods = {
312 uhci_device_ctrl_transfer,
313 uhci_device_ctrl_start,
314 uhci_device_ctrl_abort,
315 uhci_device_ctrl_close,
316 uhci_noop,
317 uhci_device_ctrl_done,
320 struct usbd_pipe_methods uhci_device_intr_methods = {
321 uhci_device_intr_transfer,
322 uhci_device_intr_start,
323 uhci_device_intr_abort,
324 uhci_device_intr_close,
325 uhci_device_clear_toggle,
326 uhci_device_intr_done,
329 struct usbd_pipe_methods uhci_device_bulk_methods = {
330 uhci_device_bulk_transfer,
331 uhci_device_bulk_start,
332 uhci_device_bulk_abort,
333 uhci_device_bulk_close,
334 uhci_device_clear_toggle,
335 uhci_device_bulk_done,
338 struct usbd_pipe_methods uhci_device_isoc_methods = {
339 uhci_device_isoc_transfer,
340 uhci_device_isoc_start,
341 uhci_device_isoc_abort,
342 uhci_device_isoc_close,
343 uhci_noop,
344 uhci_device_isoc_done,
347 #define uhci_add_intr_info(sc, ii) \
348 LIST_INSERT_HEAD(&(sc)->sc_intrhead, (ii), list)
349 #define uhci_del_intr_info(ii) \
350 do { \
351 LIST_REMOVE((ii), list); \
352 (ii)->list.le_prev = NULL; \
353 } while (0)
354 #define uhci_active_intr_info(ii) ((ii)->list.le_prev != NULL)
356 static __inline uhci_soft_qh_t *
357 uhci_find_prev_qh(uhci_soft_qh_t *pqh, uhci_soft_qh_t *sqh)
359 DPRINTFN(15,("uhci_find_prev_qh: pqh=%p sqh=%p\n", pqh, sqh));
361 for (; pqh->hlink != sqh; pqh = pqh->hlink) {
362 #if defined(DIAGNOSTIC) || defined(USB_DEBUG)
363 if (le32toh(pqh->qh.qh_hlink) & UHCI_PTR_T) {
364 kprintf("uhci_find_prev_qh: QH not found\n");
365 return (NULL);
367 #endif
369 return (pqh);
372 void
373 uhci_globalreset(uhci_softc_t *sc)
375 UHCICMD(sc, UHCI_CMD_GRESET); /* global reset */
376 usb_delay_ms(&sc->sc_bus, USB_BUS_RESET_DELAY); /* wait a little */
377 UHCICMD(sc, 0); /* do nothing */
380 usbd_status
381 uhci_init(uhci_softc_t *sc)
383 usbd_status err;
384 int i, j;
385 uhci_soft_qh_t *clsqh, *chsqh, *bsqh, *sqh, *lsqh;
386 uhci_soft_td_t *std;
388 DPRINTFN(1,("uhci_init: start\n"));
390 #ifdef USB_DEBUG
391 thesc = sc;
393 if (uhcidebug > 2)
394 uhci_dumpregs(sc);
395 #endif
397 UWRITE2(sc, UHCI_INTR, 0); /* disable interrupts */
398 uhci_globalreset(sc); /* reset the controller */
399 uhci_reset(sc);
401 /* Allocate and initialize real frame array. */
402 err = usb_allocmem(&sc->sc_bus,
403 UHCI_FRAMELIST_COUNT * sizeof(uhci_physaddr_t),
404 UHCI_FRAMELIST_ALIGN, &sc->sc_dma);
405 if (err)
406 return (err);
407 sc->sc_pframes = KERNADDR(&sc->sc_dma, 0);
408 UWRITE2(sc, UHCI_FRNUM, 0); /* set frame number to 0 */
409 UWRITE4(sc, UHCI_FLBASEADDR, DMAADDR(&sc->sc_dma, 0)); /* set frame list*/
412 * Allocate a TD, inactive, that hangs from the last QH.
413 * This is to avoid a bug in the PIIX that makes it run berserk
414 * otherwise.
416 std = uhci_alloc_std(sc);
417 if (std == NULL)
418 return (USBD_NOMEM);
419 std->link.std = NULL;
420 std->td.td_link = htole32(UHCI_PTR_T);
421 std->td.td_status = htole32(0); /* inactive */
422 std->td.td_token = htole32(0);
423 std->td.td_buffer = htole32(0);
425 /* Allocate the dummy QH marking the end and used for looping the QHs.*/
426 lsqh = uhci_alloc_sqh(sc);
427 if (lsqh == NULL)
428 return (USBD_NOMEM);
429 lsqh->hlink = NULL;
430 lsqh->qh.qh_hlink = htole32(UHCI_PTR_T); /* end of QH chain */
431 lsqh->elink = std;
432 lsqh->qh.qh_elink = htole32(std->physaddr | UHCI_PTR_TD);
433 sc->sc_last_qh = lsqh;
435 /* Allocate the dummy QH where bulk traffic will be queued. */
436 bsqh = uhci_alloc_sqh(sc);
437 if (bsqh == NULL)
438 return (USBD_NOMEM);
439 bsqh->hlink = lsqh;
440 bsqh->qh.qh_hlink = htole32(lsqh->physaddr | UHCI_PTR_QH);
441 bsqh->elink = NULL;
442 bsqh->qh.qh_elink = htole32(UHCI_PTR_T);
443 sc->sc_bulk_start = sc->sc_bulk_end = bsqh;
445 /* Allocate dummy QH where high speed control traffic will be queued. */
446 chsqh = uhci_alloc_sqh(sc);
447 if (chsqh == NULL)
448 return (USBD_NOMEM);
449 chsqh->hlink = bsqh;
450 chsqh->qh.qh_hlink = htole32(bsqh->physaddr | UHCI_PTR_QH);
451 chsqh->elink = NULL;
452 chsqh->qh.qh_elink = htole32(UHCI_PTR_T);
453 sc->sc_hctl_start = sc->sc_hctl_end = chsqh;
455 /* Allocate dummy QH where control traffic will be queued. */
456 clsqh = uhci_alloc_sqh(sc);
457 if (clsqh == NULL)
458 return (USBD_NOMEM);
459 clsqh->hlink = bsqh;
460 clsqh->qh.qh_hlink = htole32(chsqh->physaddr | UHCI_PTR_QH);
461 clsqh->elink = NULL;
462 clsqh->qh.qh_elink = htole32(UHCI_PTR_T);
463 sc->sc_lctl_start = sc->sc_lctl_end = clsqh;
466 * Make all (virtual) frame list pointers point to the interrupt
467 * queue heads and the interrupt queue heads at the control
468 * queue head and point the physical frame list to the virtual.
470 for(i = 0; i < UHCI_VFRAMELIST_COUNT; i++) {
471 std = uhci_alloc_std(sc);
472 sqh = uhci_alloc_sqh(sc);
473 if (std == NULL || sqh == NULL)
474 return (USBD_NOMEM);
475 std->link.sqh = sqh;
477 std->td.td_link = htole32(sqh->physaddr | UHCI_PTR_QH);
478 std->td.td_status = htole32(UHCI_TD_IOS); /* iso, inactive */
479 std->td.td_token = htole32(0);
480 std->td.td_buffer = htole32(0);
481 sqh->hlink = clsqh;
482 sqh->qh.qh_hlink = htole32(clsqh->physaddr | UHCI_PTR_QH);
483 sqh->elink = NULL;
484 sqh->qh.qh_elink = htole32(UHCI_PTR_T);
485 sc->sc_vframes[i].htd = std;
486 sc->sc_vframes[i].etd = std;
487 sc->sc_vframes[i].hqh = sqh;
488 sc->sc_vframes[i].eqh = sqh;
489 for (j = i;
490 j < UHCI_FRAMELIST_COUNT;
491 j += UHCI_VFRAMELIST_COUNT) {
492 sc->sc_pframes[j] = htole32(std->physaddr);
496 LIST_INIT(&sc->sc_intrhead);
498 STAILQ_INIT(&sc->sc_free_xfers);
500 callout_init(&sc->sc_poll_handle);
502 /* Set up the bus struct. */
503 sc->sc_bus.methods = &uhci_bus_methods;
504 sc->sc_bus.pipe_size = sizeof(struct uhci_pipe);
506 DPRINTFN(1,("uhci_init: enabling\n"));
507 UWRITE2(sc, UHCI_INTR, UHCI_INTR_TOCRCIE | UHCI_INTR_RIE |
508 UHCI_INTR_IOCE | UHCI_INTR_SPIE); /* enable interrupts */
510 UHCICMD(sc, UHCI_CMD_MAXP); /* Assume 64 byte packets at frame end */
512 return (uhci_run(sc, 1)); /* and here we go... */
516 uhci_detach(struct uhci_softc *sc, int flags)
518 usbd_xfer_handle xfer;
519 int rv = 0;
521 UWRITE2(sc, UHCI_INTR, 0); /* disable interrupts */
522 uhci_run(sc, 0);
524 /* Free all xfers associated with this HC. */
525 for (;;) {
526 xfer = STAILQ_FIRST(&sc->sc_free_xfers);
527 if (xfer == NULL)
528 break;
529 STAILQ_REMOVE_HEAD(&sc->sc_free_xfers, next);
530 kfree(xfer, M_USB);
533 /* XXX free other data structures XXX */
534 usb_freemem(&sc->sc_bus, &sc->sc_dma);
536 return (rv);
539 usbd_status
540 uhci_allocm(struct usbd_bus *bus, usb_dma_t *dma, u_int32_t size)
542 return (usb_allocmem(bus, size, 0, dma));
545 void
546 uhci_freem(struct usbd_bus *bus, usb_dma_t *dma)
548 usb_freemem(bus, dma);
551 usbd_xfer_handle
552 uhci_allocx(struct usbd_bus *bus)
554 struct uhci_softc *sc = (struct uhci_softc *)bus;
555 usbd_xfer_handle xfer;
557 xfer = STAILQ_FIRST(&sc->sc_free_xfers);
558 if (xfer != NULL) {
559 STAILQ_REMOVE_HEAD(&sc->sc_free_xfers, next);
560 #ifdef DIAGNOSTIC
561 if (xfer->busy_free != XFER_FREE) {
562 kprintf("uhci_allocx: xfer=%p not free, 0x%08x\n", xfer,
563 xfer->busy_free);
565 #endif
566 } else {
567 xfer = kmalloc(sizeof(struct uhci_xfer), M_USB, M_INTWAIT);
569 if (xfer != NULL) {
570 memset(xfer, 0, sizeof (struct uhci_xfer));
571 UXFER(xfer)->iinfo.sc = sc;
572 usb_init_task(&UXFER(xfer)->abort_task, uhci_timeout_task,
573 xfer);
574 UXFER(xfer)->uhci_xfer_flags = 0;
575 #ifdef DIAGNOSTIC
576 UXFER(xfer)->iinfo.isdone = 1;
577 xfer->busy_free = XFER_BUSY;
578 #endif
580 return (xfer);
583 void
584 uhci_freex(struct usbd_bus *bus, usbd_xfer_handle xfer)
586 struct uhci_softc *sc = (struct uhci_softc *)bus;
588 #ifdef DIAGNOSTIC
589 if (xfer->busy_free != XFER_BUSY) {
590 kprintf("uhci_freex: xfer=%p not busy, 0x%08x\n", xfer,
591 xfer->busy_free);
592 return;
594 xfer->busy_free = XFER_FREE;
595 if (!UXFER(xfer)->iinfo.isdone) {
596 kprintf("uhci_freex: !isdone\n");
597 return;
599 #endif
600 STAILQ_INSERT_HEAD(&sc->sc_free_xfers, xfer, next);
604 * Shut down the controller when the system is going down.
606 void
607 uhci_shutdown(void *v)
609 uhci_softc_t *sc = v;
611 DPRINTF(("uhci_shutdown: stopping the HC\n"));
612 uhci_run(sc, 0); /* stop the controller */
616 * Handle suspend/resume.
618 * We need to switch to polling mode here, because this routine is
619 * called from an interrupt context. This is all right since we
620 * are almost suspended anyway.
622 void
623 uhci_power(int why, void *v)
625 uhci_softc_t *sc = v;
626 int cmd;
628 crit_enter();
629 cmd = UREAD2(sc, UHCI_CMD);
631 DPRINTF(("uhci_power: sc=%p, why=%d (was %d), cmd=0x%x\n",
632 sc, why, sc->sc_suspend, cmd));
634 if (why != PWR_RESUME) {
635 #ifdef USB_DEBUG
636 if (uhcidebug > 2)
637 uhci_dumpregs(sc);
638 #endif
639 if (sc->sc_intr_xfer != NULL)
640 callout_stop(&sc->sc_poll_handle);
641 sc->sc_bus.use_polling++;
642 uhci_run(sc, 0); /* stop the controller */
644 /* save some state if BIOS doesn't */
645 sc->sc_saved_frnum = UREAD2(sc, UHCI_FRNUM);
646 sc->sc_saved_sof = UREAD1(sc, UHCI_SOF);
648 UWRITE2(sc, UHCI_INTR, 0); /* disable intrs */
650 UHCICMD(sc, cmd | UHCI_CMD_EGSM); /* enter global suspend */
651 usb_delay_ms(&sc->sc_bus, USB_RESUME_WAIT);
652 sc->sc_suspend = why;
653 sc->sc_bus.use_polling--;
654 DPRINTF(("uhci_power: cmd=0x%x\n", UREAD2(sc, UHCI_CMD)));
655 } else {
656 #ifdef DIAGNOSTIC
657 if (sc->sc_suspend == PWR_RESUME)
658 kprintf("uhci_power: weird, resume without suspend.\n");
659 #endif
660 sc->sc_bus.use_polling++;
661 sc->sc_suspend = why;
662 UWRITE2(sc, UHCI_INTR, 0); /* disable interrupts */
663 uhci_globalreset(sc); /* reset the controller */
664 uhci_reset(sc);
665 if (cmd & UHCI_CMD_RS)
666 uhci_run(sc, 0); /* in case BIOS has started it */
668 uhci_globalreset(sc);
669 uhci_reset(sc);
671 /* restore saved state */
672 UWRITE4(sc, UHCI_FLBASEADDR, DMAADDR(&sc->sc_dma, 0));
673 UWRITE2(sc, UHCI_FRNUM, sc->sc_saved_frnum);
674 UWRITE1(sc, UHCI_SOF, sc->sc_saved_sof);
676 UHCICMD(sc, cmd | UHCI_CMD_FGR); /* force global resume */
677 usb_delay_ms(&sc->sc_bus, USB_RESUME_DELAY);
678 UHCICMD(sc, cmd & ~UHCI_CMD_EGSM); /* back to normal */
679 UWRITE2(sc, UHCI_INTR, UHCI_INTR_TOCRCIE | UHCI_INTR_RIE |
680 UHCI_INTR_IOCE | UHCI_INTR_SPIE); /* re-enable intrs */
681 UHCICMD(sc, UHCI_CMD_MAXP);
682 uhci_run(sc, 1); /* and start traffic again */
683 usb_delay_ms(&sc->sc_bus, USB_RESUME_RECOVERY);
684 sc->sc_bus.use_polling--;
685 if (sc->sc_intr_xfer != NULL)
686 callout_reset(&sc->sc_poll_handle, sc->sc_ival,
687 uhci_poll_hub, sc->sc_intr_xfer);
688 #ifdef USB_DEBUG
689 if (uhcidebug > 2)
690 uhci_dumpregs(sc);
691 #endif
693 crit_exit();
696 #ifdef USB_DEBUG
697 static void
698 uhci_dumpregs(uhci_softc_t *sc)
700 DPRINTFN(-1,("%s regs: cmd=%04x, sts=%04x, intr=%04x, frnum=%04x, "
701 "flbase=%08x, sof=%04x, portsc1=%04x, portsc2=%04x\n",
702 device_get_nameunit(sc->sc_bus.bdev),
703 UREAD2(sc, UHCI_CMD),
704 UREAD2(sc, UHCI_STS),
705 UREAD2(sc, UHCI_INTR),
706 UREAD2(sc, UHCI_FRNUM),
707 UREAD4(sc, UHCI_FLBASEADDR),
708 UREAD1(sc, UHCI_SOF),
709 UREAD2(sc, UHCI_PORTSC1),
710 UREAD2(sc, UHCI_PORTSC2)));
713 void
714 uhci_dump_td(uhci_soft_td_t *p)
716 char sbuf[128], sbuf2[128];
718 DPRINTFN(-1,("TD(%p) at %08lx = link=0x%08lx status=0x%08lx "
719 "token=0x%08lx buffer=0x%08lx\n",
720 p, (long)p->physaddr,
721 (long)le32toh(p->td.td_link),
722 (long)le32toh(p->td.td_status),
723 (long)le32toh(p->td.td_token),
724 (long)le32toh(p->td.td_buffer)));
726 bitmask_snprintf((u_int32_t)le32toh(p->td.td_link), "\20\1T\2Q\3VF",
727 sbuf, sizeof(sbuf));
728 bitmask_snprintf((u_int32_t)le32toh(p->td.td_status),
729 "\20\22BITSTUFF\23CRCTO\24NAK\25BABBLE\26DBUFFER\27"
730 "STALLED\30ACTIVE\31IOC\32ISO\33LS\36SPD",
731 sbuf2, sizeof(sbuf2));
733 DPRINTFN(-1,(" %s %s,errcnt=%d,actlen=%d pid=%02x,addr=%d,endpt=%d,"
734 "D=%d,maxlen=%d\n", sbuf, sbuf2,
735 UHCI_TD_GET_ERRCNT(le32toh(p->td.td_status)),
736 UHCI_TD_GET_ACTLEN(le32toh(p->td.td_status)),
737 UHCI_TD_GET_PID(le32toh(p->td.td_token)),
738 UHCI_TD_GET_DEVADDR(le32toh(p->td.td_token)),
739 UHCI_TD_GET_ENDPT(le32toh(p->td.td_token)),
740 UHCI_TD_GET_DT(le32toh(p->td.td_token)),
741 UHCI_TD_GET_MAXLEN(le32toh(p->td.td_token))));
744 void
745 uhci_dump_qh(uhci_soft_qh_t *sqh)
747 DPRINTFN(-1,("QH(%p) at %08x: hlink=%08x elink=%08x\n", sqh,
748 (int)sqh->physaddr, le32toh(sqh->qh.qh_hlink),
749 le32toh(sqh->qh.qh_elink)));
752 #if 1
753 void
754 uhci_dump(void)
756 uhci_dump_all(thesc);
758 #endif
760 void
761 uhci_dump_all(uhci_softc_t *sc)
763 uhci_dumpregs(sc);
764 kprintf("intrs=%d\n", sc->sc_bus.no_intrs);
765 /*kprintf("framelist[i].link = %08x\n", sc->sc_framelist[0].link);*/
766 uhci_dump_qh(sc->sc_lctl_start);
769 void
770 uhci_dump_qhs(uhci_soft_qh_t *sqh)
772 uhci_dump_qh(sqh);
774 /* uhci_dump_qhs displays all the QHs and TDs from the given QH onwards
775 * Traverses sideways first, then down.
777 * QH1
778 * QH2
779 * No QH
780 * TD2.1
781 * TD2.2
782 * TD1.1
783 * etc.
785 * TD2.x being the TDs queued at QH2 and QH1 being referenced from QH1.
789 if (sqh->hlink != NULL && !(le32toh(sqh->qh.qh_hlink) & UHCI_PTR_T))
790 uhci_dump_qhs(sqh->hlink);
791 else
792 DPRINTF(("No QH\n"));
794 if (sqh->elink != NULL && !(le32toh(sqh->qh.qh_elink) & UHCI_PTR_T))
795 uhci_dump_tds(sqh->elink);
796 else
797 DPRINTF(("No TD\n"));
800 void
801 uhci_dump_tds(uhci_soft_td_t *std)
803 uhci_soft_td_t *td;
805 for(td = std; td != NULL; td = td->link.std) {
806 uhci_dump_td(td);
808 /* Check whether the link pointer in this TD marks
809 * the link pointer as end of queue. This avoids
810 * printing the free list in case the queue/TD has
811 * already been moved there (seatbelt).
813 if (le32toh(td->td.td_link) & UHCI_PTR_T ||
814 le32toh(td->td.td_link) == 0)
815 break;
819 static void
820 uhci_dump_ii(uhci_intr_info_t *ii)
822 usbd_pipe_handle pipe;
823 usb_endpoint_descriptor_t *ed;
824 usbd_device_handle dev;
826 #ifdef DIAGNOSTIC
827 #define DONE ii->isdone
828 #else
829 #define DONE 0
830 #endif
831 if (ii == NULL) {
832 kprintf("ii NULL\n");
833 return;
835 if (ii->xfer == NULL) {
836 kprintf("ii %p: done=%d xfer=NULL\n",
837 ii, DONE);
838 return;
840 pipe = ii->xfer->pipe;
841 if (pipe == NULL) {
842 kprintf("ii %p: done=%d xfer=%p pipe=NULL\n",
843 ii, DONE, ii->xfer);
844 return;
846 if (pipe->endpoint == NULL) {
847 kprintf("ii %p: done=%d xfer=%p pipe=%p pipe->endpoint=NULL\n",
848 ii, DONE, ii->xfer, pipe);
849 return;
851 if (pipe->device == NULL) {
852 kprintf("ii %p: done=%d xfer=%p pipe=%p pipe->device=NULL\n",
853 ii, DONE, ii->xfer, pipe);
854 return;
856 ed = pipe->endpoint->edesc;
857 dev = pipe->device;
858 kprintf("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",
859 ii, DONE, ii->xfer, dev,
860 UGETW(dev->ddesc.idVendor),
861 UGETW(dev->ddesc.idProduct),
862 dev->address, pipe,
863 ed->bEndpointAddress, ed->bmAttributes);
864 #undef DONE
867 void uhci_dump_iis(struct uhci_softc *sc);
868 void
869 uhci_dump_iis(struct uhci_softc *sc)
871 uhci_intr_info_t *ii;
873 kprintf("intr_info list:\n");
874 for (ii = LIST_FIRST(&sc->sc_intrhead); ii; ii = LIST_NEXT(ii, list))
875 uhci_dump_ii(ii);
878 void iidump(void);
879 void iidump(void) { uhci_dump_iis(thesc); }
881 #endif
884 * This routine is executed periodically and simulates interrupts
885 * from the root controller interrupt pipe for port status change.
887 void
888 uhci_poll_hub(void *addr)
890 usbd_xfer_handle xfer = addr;
891 usbd_pipe_handle pipe = xfer->pipe;
892 uhci_softc_t *sc = (uhci_softc_t *)pipe->device->bus;
893 u_char *p;
895 DPRINTFN(20, ("uhci_poll_hub\n"));
897 callout_reset(&sc->sc_poll_handle, sc->sc_ival, uhci_poll_hub, xfer);
899 p = KERNADDR(&xfer->dmabuf, 0);
900 p[0] = 0;
901 if (UREAD2(sc, UHCI_PORTSC1) & (UHCI_PORTSC_CSC|UHCI_PORTSC_OCIC))
902 p[0] |= 1<<1;
903 if (UREAD2(sc, UHCI_PORTSC2) & (UHCI_PORTSC_CSC|UHCI_PORTSC_OCIC))
904 p[0] |= 1<<2;
905 if (p[0] == 0)
906 /* No change, try again in a while */
907 return;
909 xfer->actlen = 1;
910 xfer->status = USBD_NORMAL_COMPLETION;
911 crit_enter();
912 xfer->device->bus->intr_context++;
913 usb_transfer_complete(xfer);
914 xfer->device->bus->intr_context--;
915 crit_exit();
918 void
919 uhci_root_intr_done(usbd_xfer_handle xfer)
923 void
924 uhci_root_ctrl_done(usbd_xfer_handle xfer)
929 * Let the last QH loop back to the high speed control transfer QH.
930 * This is what intel calls "bandwidth reclamation" and improves
931 * USB performance a lot for some devices.
932 * If we are already looping, just count it.
934 void
935 uhci_add_loop(uhci_softc_t *sc) {
936 #ifdef USB_DEBUG
937 if (uhcinoloop)
938 return;
939 #endif
940 if (++sc->sc_loops == 1) {
941 DPRINTFN(5,("uhci_start_loop: add\n"));
942 /* Note, we don't loop back the soft pointer. */
943 sc->sc_last_qh->qh.qh_hlink =
944 htole32(sc->sc_hctl_start->physaddr | UHCI_PTR_QH);
948 void
949 uhci_rem_loop(uhci_softc_t *sc) {
950 #ifdef USB_DEBUG
951 if (uhcinoloop)
952 return;
953 #endif
954 if (--sc->sc_loops == 0) {
955 DPRINTFN(5,("uhci_end_loop: remove\n"));
956 sc->sc_last_qh->qh.qh_hlink = htole32(UHCI_PTR_T);
960 /* Add high speed control QH, called from a critical section. */
961 void
962 uhci_add_hs_ctrl(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
964 uhci_soft_qh_t *eqh;
966 DPRINTFN(10, ("uhci_add_ctrl: sqh=%p\n", sqh));
967 eqh = sc->sc_hctl_end;
968 sqh->hlink = eqh->hlink;
969 sqh->qh.qh_hlink = eqh->qh.qh_hlink;
970 eqh->hlink = sqh;
971 eqh->qh.qh_hlink = htole32(sqh->physaddr | UHCI_PTR_QH);
972 sc->sc_hctl_end = sqh;
973 #ifdef UHCI_CTL_LOOP
974 uhci_add_loop(sc);
975 #endif
978 /* Remove high speed control QH, called from a critical section. */
979 void
980 uhci_remove_hs_ctrl(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
982 uhci_soft_qh_t *pqh;
984 DPRINTFN(10, ("uhci_remove_hs_ctrl: sqh=%p\n", sqh));
985 #ifdef UHCI_CTL_LOOP
986 uhci_rem_loop(sc);
987 #endif
989 * The T bit should be set in the elink of the QH so that the HC
990 * doesn't follow the pointer. This condition may fail if the
991 * the transferred packet was short so that the QH still points
992 * at the last used TD.
993 * In this case we set the T bit and wait a little for the HC
994 * to stop looking at the TD.
996 if (!(sqh->qh.qh_elink & htole32(UHCI_PTR_T))) {
997 sqh->qh.qh_elink = htole32(UHCI_PTR_T);
998 delay(UHCI_QH_REMOVE_DELAY);
1001 pqh = uhci_find_prev_qh(sc->sc_hctl_start, sqh);
1002 pqh->hlink = sqh->hlink;
1003 pqh->qh.qh_hlink = sqh->qh.qh_hlink;
1004 delay(UHCI_QH_REMOVE_DELAY);
1005 if (sc->sc_hctl_end == sqh)
1006 sc->sc_hctl_end = pqh;
1009 /* Add low speed control QH, called from a critical section. */
1010 void
1011 uhci_add_ls_ctrl(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
1013 uhci_soft_qh_t *eqh;
1015 DPRINTFN(10, ("uhci_add_ls_ctrl: sqh=%p\n", sqh));
1016 eqh = sc->sc_lctl_end;
1017 sqh->hlink = eqh->hlink;
1018 sqh->qh.qh_hlink = eqh->qh.qh_hlink;
1019 eqh->hlink = sqh;
1020 eqh->qh.qh_hlink = htole32(sqh->physaddr | UHCI_PTR_QH);
1021 sc->sc_lctl_end = sqh;
1024 /* Remove low speed control QH, called from a critical section. */
1025 void
1026 uhci_remove_ls_ctrl(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
1028 uhci_soft_qh_t *pqh;
1030 DPRINTFN(10, ("uhci_remove_ls_ctrl: sqh=%p\n", sqh));
1031 /* See comment in uhci_remove_hs_ctrl() */
1032 if (!(sqh->qh.qh_elink & htole32(UHCI_PTR_T))) {
1033 sqh->qh.qh_elink = htole32(UHCI_PTR_T);
1034 delay(UHCI_QH_REMOVE_DELAY);
1036 pqh = uhci_find_prev_qh(sc->sc_lctl_start, sqh);
1037 pqh->hlink = sqh->hlink;
1038 pqh->qh.qh_hlink = sqh->qh.qh_hlink;
1039 delay(UHCI_QH_REMOVE_DELAY);
1040 if (sc->sc_lctl_end == sqh)
1041 sc->sc_lctl_end = pqh;
1044 /* Add bulk QH, called from a critical section. */
1045 void
1046 uhci_add_bulk(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
1048 uhci_soft_qh_t *eqh;
1050 DPRINTFN(10, ("uhci_add_bulk: sqh=%p\n", sqh));
1051 eqh = sc->sc_bulk_end;
1052 sqh->hlink = eqh->hlink;
1053 sqh->qh.qh_hlink = eqh->qh.qh_hlink;
1054 eqh->hlink = sqh;
1055 eqh->qh.qh_hlink = htole32(sqh->physaddr | UHCI_PTR_QH);
1056 sc->sc_bulk_end = sqh;
1057 uhci_add_loop(sc);
1060 /* Remove bulk QH, called from a critical section. */
1061 void
1062 uhci_remove_bulk(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
1064 uhci_soft_qh_t *pqh;
1066 DPRINTFN(10, ("uhci_remove_bulk: sqh=%p\n", sqh));
1067 uhci_rem_loop(sc);
1068 /* See comment in uhci_remove_hs_ctrl() */
1069 if (!(sqh->qh.qh_elink & htole32(UHCI_PTR_T))) {
1070 sqh->qh.qh_elink = htole32(UHCI_PTR_T);
1071 delay(UHCI_QH_REMOVE_DELAY);
1073 pqh = uhci_find_prev_qh(sc->sc_bulk_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_bulk_end == sqh)
1078 sc->sc_bulk_end = pqh;
1081 static int uhci_intr1(uhci_softc_t *);
1084 uhci_intr(void *arg)
1086 uhci_softc_t *sc = arg;
1088 if (sc->sc_dying || (sc->sc_flags & UHCI_SCFLG_DONEINIT) == 0)
1089 return (0);
1091 DPRINTFN(15,("uhci_intr: real interrupt\n"));
1092 if (sc->sc_bus.use_polling) {
1093 #ifdef DIAGNOSTIC
1094 DPRINTFN(16, ("uhci_intr: ignored interrupt while polling\n"));
1095 #endif
1096 return (0);
1099 return (uhci_intr1(sc));
1103 uhci_intr1(uhci_softc_t *sc)
1106 int status;
1107 int ack;
1110 * It can happen that an interrupt will be delivered to
1111 * us before the device has been fully attached and the
1112 * softc struct has been configured. Usually this happens
1113 * when kldloading the USB support as a module after the
1114 * system has been booted. If we detect this condition,
1115 * we need to squelch the unwanted interrupts until we're
1116 * ready for them.
1118 if (sc->sc_bus.bdev == NULL) {
1119 UWRITE2(sc, UHCI_STS, 0xFFFF); /* ack pending interrupts */
1120 uhci_run(sc, 0); /* stop the controller */
1121 UWRITE2(sc, UHCI_INTR, 0); /* disable interrupts */
1122 return(0);
1125 #ifdef USB_DEBUG
1126 if (uhcidebug > 15) {
1127 DPRINTF(("%s: uhci_intr1\n", device_get_nameunit(sc->sc_bus.bdev)));
1128 uhci_dumpregs(sc);
1130 #endif
1131 status = UREAD2(sc, UHCI_STS) & UHCI_STS_ALLINTRS;
1132 if (status == 0) /* The interrupt was not for us. */
1133 return (0);
1135 if (sc->sc_suspend != PWR_RESUME) {
1136 device_printf(sc->sc_bus.bdev,
1137 "interrupt while not operating ignored\n");
1138 UWRITE2(sc, UHCI_STS, status); /* acknowledge the ints */
1139 return (0);
1142 ack = 0;
1143 if (status & UHCI_STS_USBINT)
1144 ack |= UHCI_STS_USBINT;
1145 if (status & UHCI_STS_USBEI)
1146 ack |= UHCI_STS_USBEI;
1147 if (status & UHCI_STS_RD) {
1148 ack |= UHCI_STS_RD;
1149 #ifdef USB_DEBUG
1150 device_printf(sc->sc_bus.bdev, "resume detect\n");
1151 #endif
1153 if (status & UHCI_STS_HSE) {
1154 ack |= UHCI_STS_HSE;
1155 device_printf(sc->sc_bus.bdev, "host system error\n");
1157 if (status & UHCI_STS_HCPE) {
1158 ack |= UHCI_STS_HCPE;
1159 device_printf(sc->sc_bus.bdev,
1160 "host controller process error\n");
1162 if (status & UHCI_STS_HCH) {
1163 /* no acknowledge needed */
1164 if (!sc->sc_dying) {
1165 device_printf(sc->sc_bus.bdev,
1166 "host controller halted\n");
1167 #ifdef USB_DEBUG
1168 uhci_dump_all(sc);
1169 #endif
1171 sc->sc_dying = 1;
1174 if (!ack)
1175 return (0); /* nothing to acknowledge */
1176 UWRITE2(sc, UHCI_STS, ack); /* acknowledge the ints */
1178 sc->sc_bus.no_intrs++;
1179 usb_schedsoftintr(&sc->sc_bus);
1181 DPRINTFN(15, ("%s: uhci_intr: exit\n", device_get_nameunit(sc->sc_bus.bdev)));
1183 return (1);
1186 void
1187 uhci_softintr(void *v)
1189 uhci_softc_t *sc = v;
1190 uhci_intr_info_t *ii, *nextii;
1192 DPRINTFN(10,("%s: uhci_softintr (%d)\n", device_get_nameunit(sc->sc_bus.bdev),
1193 sc->sc_bus.intr_context));
1195 sc->sc_bus.intr_context++;
1198 * Interrupts on UHCI really suck. When the host controller
1199 * interrupts because a transfer is completed there is no
1200 * way of knowing which transfer it was. You can scan down
1201 * the TDs and QHs of the previous frame to limit the search,
1202 * but that assumes that the interrupt was not delayed by more
1203 * than 1 ms, which may not always be true (e.g. after debug
1204 * output on a slow console).
1205 * We scan all interrupt descriptors to see if any have
1206 * completed.
1208 LIST_FOREACH_MUTABLE(ii, &sc->sc_intrhead, list, nextii)
1209 uhci_check_intr(sc, ii);
1211 #ifdef USB_USE_SOFTINTR
1212 if (sc->sc_softwake) {
1213 sc->sc_softwake = 0;
1214 wakeup(&sc->sc_softwake);
1216 #endif /* USB_USE_SOFTINTR */
1218 sc->sc_bus.intr_context--;
1221 /* Check for an interrupt. */
1222 void
1223 uhci_check_intr(uhci_softc_t *sc, uhci_intr_info_t *ii)
1225 uhci_soft_td_t *std, *lstd;
1226 u_int32_t status;
1228 DPRINTFN(15, ("uhci_check_intr: ii=%p\n", ii));
1229 #ifdef DIAGNOSTIC
1230 if (ii == NULL) {
1231 kprintf("uhci_check_intr: no ii? %p\n", ii);
1232 return;
1234 #endif
1235 if (ii->xfer->status == USBD_CANCELLED ||
1236 ii->xfer->status == USBD_TIMEOUT) {
1237 DPRINTF(("uhci_check_intr: aborted xfer=%p\n", ii->xfer));
1238 return;
1241 if (ii->stdstart == NULL)
1242 return;
1243 lstd = ii->stdend;
1244 #ifdef DIAGNOSTIC
1245 if (lstd == NULL) {
1246 kprintf("uhci_check_intr: std==0\n");
1247 return;
1249 #endif
1251 * If the last TD is still active we need to check whether there
1252 * is an error somewhere in the middle, or whether there was a
1253 * short packet (SPD and not ACTIVE).
1255 if (le32toh(lstd->td.td_status) & UHCI_TD_ACTIVE) {
1256 DPRINTFN(12, ("uhci_check_intr: active ii=%p\n", ii));
1257 for (std = ii->stdstart; std != lstd; std = std->link.std) {
1258 status = le32toh(std->td.td_status);
1259 /* If there's an active TD the xfer isn't done. */
1260 if (status & UHCI_TD_ACTIVE)
1261 break;
1262 /* Any kind of error makes the xfer done. */
1263 if (status & UHCI_TD_STALLED)
1264 goto done;
1265 /* We want short packets, and it is short: it's done */
1266 if ((status & UHCI_TD_SPD) &&
1267 UHCI_TD_GET_ACTLEN(status) <
1268 UHCI_TD_GET_MAXLEN(le32toh(std->td.td_token))) {
1269 goto done;
1272 DPRINTFN(12, ("uhci_check_intr: ii=%p std=%p still active\n",
1273 ii, ii->stdstart));
1274 return;
1276 done:
1277 DPRINTFN(12, ("uhci_check_intr: ii=%p done\n", ii));
1278 callout_stop(&ii->xfer->timeout_handle);
1279 usb_rem_task(ii->xfer->pipe->device, &UXFER(ii->xfer)->abort_task);
1280 uhci_idone(ii);
1283 /* Called from a critical section. */
1284 void
1285 uhci_idone(uhci_intr_info_t *ii)
1287 usbd_xfer_handle xfer = ii->xfer;
1288 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
1289 uhci_soft_td_t *std;
1290 u_int32_t status = 0, nstatus;
1291 int actlen;
1293 DPRINTFN(12, ("uhci_idone: ii=%p\n", ii));
1294 #ifdef DIAGNOSTIC
1296 crit_enter();
1297 if (ii->isdone) {
1298 crit_exit();
1299 #ifdef USB_DEBUG
1300 kprintf("uhci_idone: ii is done!\n ");
1301 uhci_dump_ii(ii);
1302 #else
1303 kprintf("uhci_idone: ii=%p is done!\n", ii);
1304 #endif
1305 return;
1307 ii->isdone = 1;
1308 crit_exit();
1310 #endif
1312 if (xfer->nframes != 0) {
1313 /* Isoc transfer, do things differently. */
1314 uhci_soft_td_t **stds = upipe->u.iso.stds;
1315 int i, n, nframes, len;
1317 DPRINTFN(5,("uhci_idone: ii=%p isoc ready\n", ii));
1319 nframes = xfer->nframes;
1320 actlen = 0;
1321 n = UXFER(xfer)->curframe;
1322 for (i = 0; i < nframes; i++) {
1323 std = stds[n];
1324 #ifdef USB_DEBUG
1325 if (uhcidebug > 5) {
1326 DPRINTFN(-1,("uhci_idone: isoc TD %d\n", i));
1327 uhci_dump_td(std);
1329 #endif
1330 if (++n >= UHCI_VFRAMELIST_COUNT)
1331 n = 0;
1332 status = le32toh(std->td.td_status);
1333 len = UHCI_TD_GET_ACTLEN(status);
1334 xfer->frlengths[i] = len;
1335 actlen += len;
1337 upipe->u.iso.inuse -= nframes;
1338 xfer->actlen = actlen;
1339 xfer->status = USBD_NORMAL_COMPLETION;
1340 goto end;
1343 #ifdef USB_DEBUG
1344 DPRINTFN(10, ("uhci_idone: ii=%p, xfer=%p, pipe=%p ready\n",
1345 ii, xfer, upipe));
1346 if (uhcidebug > 10)
1347 uhci_dump_tds(ii->stdstart);
1348 #endif
1350 /* The transfer is done, compute actual length and status. */
1351 actlen = 0;
1352 for (std = ii->stdstart; std != NULL; std = std->link.std) {
1353 nstatus = le32toh(std->td.td_status);
1354 if (nstatus & UHCI_TD_ACTIVE)
1355 break;
1357 status = nstatus;
1358 if (UHCI_TD_GET_PID(le32toh(std->td.td_token)) !=
1359 UHCI_TD_PID_SETUP) {
1360 actlen += UHCI_TD_GET_ACTLEN(status);
1361 } else {
1363 * UHCI will report CRCTO in addition to a STALL or NAK
1364 * for a SETUP transaction. See section 3.2.2, "TD
1365 * CONTROL AND STATUS".
1367 if (status & (UHCI_TD_STALLED | UHCI_TD_NAK))
1368 status &= ~UHCI_TD_CRCTO;
1372 /* If there are left over TDs we need to update the toggle. */
1373 if (std != NULL)
1374 upipe->nexttoggle = UHCI_TD_GET_DT(le32toh(std->td.td_token));
1376 status &= UHCI_TD_ERROR;
1377 DPRINTFN(10, ("uhci_idone: actlen=%d, status=0x%x\n",
1378 actlen, status));
1379 xfer->actlen = actlen;
1380 if (status != 0) {
1381 #ifdef USB_DEBUG
1382 char sbuf[128];
1384 bitmask_snprintf((u_int32_t)status,
1385 "\20\22BITSTUFF\23CRCTO\24NAK\25"
1386 "BABBLE\26DBUFFER\27STALLED\30ACTIVE",
1387 sbuf, sizeof(sbuf));
1389 DPRINTFN((status == UHCI_TD_STALLED)*10,
1390 ("uhci_idone: error, addr=%d, endpt=0x%02x, "
1391 "status 0x%s\n",
1392 xfer->pipe->device->address,
1393 xfer->pipe->endpoint->edesc->bEndpointAddress,
1394 sbuf));
1395 #endif
1396 if (status == UHCI_TD_STALLED)
1397 xfer->status = USBD_STALLED;
1398 else
1399 xfer->status = USBD_IOERROR; /* more info XXX */
1400 } else {
1401 xfer->status = USBD_NORMAL_COMPLETION;
1404 end:
1405 usb_transfer_complete(xfer);
1406 DPRINTFN(12, ("uhci_idone: ii=%p done\n", ii));
1410 * Called when a request does not complete.
1412 void
1413 uhci_timeout(void *addr)
1415 uhci_intr_info_t *ii = addr;
1416 struct uhci_xfer *uxfer = UXFER(ii->xfer);
1417 struct uhci_pipe *upipe = (struct uhci_pipe *)uxfer->xfer.pipe;
1418 uhci_softc_t *sc = (uhci_softc_t *)upipe->pipe.device->bus;
1420 DPRINTF(("uhci_timeout: uxfer=%p\n", uxfer));
1422 if (sc->sc_dying) {
1423 uhci_abort_xfer(&uxfer->xfer, USBD_TIMEOUT);
1424 return;
1427 /* Execute the abort in a process context. */
1428 usb_add_task(uxfer->xfer.pipe->device, &uxfer->abort_task,
1429 USB_TASKQ_HC);
1432 void
1433 uhci_timeout_task(void *addr)
1435 usbd_xfer_handle xfer = addr;
1437 DPRINTF(("uhci_timeout_task: xfer=%p\n", xfer));
1439 crit_enter();
1440 uhci_abort_xfer(xfer, USBD_TIMEOUT);
1441 crit_exit();
1445 * Wait here until controller claims to have an interrupt.
1446 * Then call uhci_intr and return. Use timeout to avoid waiting
1447 * too long.
1448 * Only used during boot when interrupts are not enabled yet.
1450 void
1451 uhci_waitintr(uhci_softc_t *sc, usbd_xfer_handle xfer)
1453 int timo = xfer->timeout;
1454 uhci_intr_info_t *ii;
1456 DPRINTFN(10,("uhci_waitintr: timeout = %dms\n", timo));
1458 xfer->status = USBD_IN_PROGRESS;
1459 for (; timo >= 0; timo--) {
1460 usb_delay_ms(&sc->sc_bus, 1);
1461 DPRINTFN(20,("uhci_waitintr: 0x%04x\n", UREAD2(sc, UHCI_STS)));
1462 if (UREAD2(sc, UHCI_STS) & UHCI_STS_ALLINTRS)
1463 uhci_intr1(sc);
1464 if (xfer->status != USBD_IN_PROGRESS)
1465 return;
1468 /* Timeout */
1469 DPRINTF(("uhci_waitintr: timeout\n"));
1470 for (ii = LIST_FIRST(&sc->sc_intrhead);
1471 ii != NULL && ii->xfer != xfer;
1472 ii = LIST_NEXT(ii, list))
1474 #ifdef DIAGNOSTIC
1475 if (ii == NULL)
1476 panic("uhci_waitintr: lost intr_info");
1477 #endif
1478 uhci_idone(ii);
1481 void
1482 uhci_poll(struct usbd_bus *bus)
1484 uhci_softc_t *sc = (uhci_softc_t *)bus;
1486 if (UREAD2(sc, UHCI_STS) & UHCI_STS_ALLINTRS)
1487 uhci_intr1(sc);
1490 void
1491 uhci_reset(uhci_softc_t *sc)
1493 int n;
1495 UHCICMD(sc, UHCI_CMD_HCRESET);
1496 /* The reset bit goes low when the controller is done. */
1497 for (n = 0; n < UHCI_RESET_TIMEOUT &&
1498 (UREAD2(sc, UHCI_CMD) & UHCI_CMD_HCRESET); n++)
1499 usb_delay_ms(&sc->sc_bus, 1);
1500 if (n >= UHCI_RESET_TIMEOUT)
1501 device_printf(sc->sc_bus.bdev, "controller did not reset\n");
1504 usbd_status
1505 uhci_run(uhci_softc_t *sc, int run)
1507 int n, running;
1508 u_int16_t cmd;
1510 run = run != 0;
1511 crit_enter();
1512 DPRINTF(("uhci_run: setting run=%d\n", run));
1513 cmd = UREAD2(sc, UHCI_CMD);
1514 if (run)
1515 cmd |= UHCI_CMD_RS;
1516 else
1517 cmd &= ~UHCI_CMD_RS;
1518 UHCICMD(sc, cmd);
1519 for(n = 0; n < 10; n++) {
1520 running = !(UREAD2(sc, UHCI_STS) & UHCI_STS_HCH);
1521 /* return when we've entered the state we want */
1522 if (run == running) {
1523 crit_exit();
1524 DPRINTF(("uhci_run: done cmd=0x%x sts=0x%x\n",
1525 UREAD2(sc, UHCI_CMD), UREAD2(sc, UHCI_STS)));
1526 return (USBD_NORMAL_COMPLETION);
1528 usb_delay_ms(&sc->sc_bus, 1);
1530 crit_exit();
1531 device_printf(sc->sc_bus.bdev, "cannot %s\n", run ? "start" : "stop");
1532 return (USBD_IOERROR);
1536 * Memory management routines.
1537 * uhci_alloc_std allocates TDs
1538 * uhci_alloc_sqh allocates QHs
1539 * These two routines do their own free list management,
1540 * partly for speed, partly because allocating DMAable memory
1541 * has page size granularaity so much memory would be wasted if
1542 * only one TD/QH (32 bytes) was placed in each allocated chunk.
1545 uhci_soft_td_t *
1546 uhci_alloc_std(uhci_softc_t *sc)
1548 uhci_soft_td_t *std;
1549 usbd_status err;
1550 int i, offs;
1551 usb_dma_t dma;
1553 if (sc->sc_freetds == NULL) {
1554 DPRINTFN(2,("uhci_alloc_std: allocating chunk\n"));
1555 err = usb_allocmem(&sc->sc_bus, UHCI_STD_SIZE * UHCI_STD_CHUNK,
1556 UHCI_TD_ALIGN, &dma);
1557 if (err)
1558 return (0);
1559 for(i = 0; i < UHCI_STD_CHUNK; i++) {
1560 offs = i * UHCI_STD_SIZE;
1561 std = KERNADDR(&dma, offs);
1562 std->physaddr = DMAADDR(&dma, offs);
1563 std->link.std = sc->sc_freetds;
1564 sc->sc_freetds = std;
1567 std = sc->sc_freetds;
1568 sc->sc_freetds = std->link.std;
1569 memset(&std->td, 0, sizeof(uhci_td_t));
1570 return std;
1573 void
1574 uhci_free_std(uhci_softc_t *sc, uhci_soft_td_t *std)
1576 #ifdef DIAGNOSTIC
1577 #define TD_IS_FREE 0x12345678
1578 if (le32toh(std->td.td_token) == TD_IS_FREE) {
1579 kprintf("uhci_free_std: freeing free TD %p\n", std);
1580 return;
1582 std->td.td_token = htole32(TD_IS_FREE);
1583 #endif
1584 std->link.std = sc->sc_freetds;
1585 sc->sc_freetds = std;
1588 uhci_soft_qh_t *
1589 uhci_alloc_sqh(uhci_softc_t *sc)
1591 uhci_soft_qh_t *sqh;
1592 usbd_status err;
1593 int i, offs;
1594 usb_dma_t dma;
1596 if (sc->sc_freeqhs == NULL) {
1597 DPRINTFN(2, ("uhci_alloc_sqh: allocating chunk\n"));
1598 err = usb_allocmem(&sc->sc_bus, UHCI_SQH_SIZE * UHCI_SQH_CHUNK,
1599 UHCI_QH_ALIGN, &dma);
1600 if (err)
1601 return (0);
1602 for(i = 0; i < UHCI_SQH_CHUNK; i++) {
1603 offs = i * UHCI_SQH_SIZE;
1604 sqh = KERNADDR(&dma, offs);
1605 sqh->physaddr = DMAADDR(&dma, offs);
1606 sqh->hlink = sc->sc_freeqhs;
1607 sc->sc_freeqhs = sqh;
1610 sqh = sc->sc_freeqhs;
1611 sc->sc_freeqhs = sqh->hlink;
1612 memset(&sqh->qh, 0, sizeof(uhci_qh_t));
1613 return (sqh);
1616 void
1617 uhci_free_sqh(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
1619 sqh->hlink = sc->sc_freeqhs;
1620 sc->sc_freeqhs = sqh;
1623 void
1624 uhci_free_std_chain(uhci_softc_t *sc, uhci_soft_td_t *std,
1625 uhci_soft_td_t *stdend)
1627 uhci_soft_td_t *p;
1629 for (; std != stdend; std = p) {
1630 p = std->link.std;
1631 uhci_free_std(sc, std);
1635 usbd_status
1636 uhci_alloc_std_chain(struct uhci_pipe *upipe, uhci_softc_t *sc, int len,
1637 int rd, u_int16_t flags, usb_dma_t *dma,
1638 uhci_soft_td_t **sp, uhci_soft_td_t **ep)
1640 uhci_soft_td_t *p, *lastp;
1641 uhci_physaddr_t lastlink;
1642 int i, ntd, l, tog, maxp;
1643 u_int32_t status;
1644 int addr = upipe->pipe.device->address;
1645 int endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
1647 DPRINTFN(8, ("uhci_alloc_std_chain: addr=%d endpt=%d len=%d speed=%d "
1648 "flags=0x%x\n", addr, UE_GET_ADDR(endpt), len,
1649 upipe->pipe.device->speed, flags));
1650 maxp = UGETW(upipe->pipe.endpoint->edesc->wMaxPacketSize);
1651 if (maxp == 0) {
1652 kprintf("uhci_alloc_std_chain: maxp=0\n");
1653 return (USBD_INVAL);
1655 ntd = (len + maxp - 1) / maxp;
1656 if ((flags & USBD_FORCE_SHORT_XFER) && len % maxp == 0)
1657 ntd++;
1658 DPRINTFN(10, ("uhci_alloc_std_chain: maxp=%d ntd=%d\n", maxp, ntd));
1659 if (ntd == 0) {
1660 *sp = *ep = 0;
1661 DPRINTFN(-1,("uhci_alloc_std_chain: ntd=0\n"));
1662 return (USBD_NORMAL_COMPLETION);
1664 tog = upipe->nexttoggle;
1665 if (ntd % 2 == 0)
1666 tog ^= 1;
1667 upipe->nexttoggle = tog ^ 1;
1668 lastp = NULL;
1669 lastlink = UHCI_PTR_T;
1670 ntd--;
1671 status = UHCI_TD_ZERO_ACTLEN(UHCI_TD_SET_ERRCNT(3) | UHCI_TD_ACTIVE);
1672 if (upipe->pipe.device->speed == USB_SPEED_LOW)
1673 status |= UHCI_TD_LS;
1674 if (flags & USBD_SHORT_XFER_OK)
1675 status |= UHCI_TD_SPD;
1676 for (i = ntd; i >= 0; i--) {
1677 p = uhci_alloc_std(sc);
1678 if (p == NULL) {
1679 uhci_free_std_chain(sc, lastp, NULL);
1680 return (USBD_NOMEM);
1682 p->link.std = lastp;
1683 p->td.td_link = htole32(lastlink | UHCI_PTR_VF | UHCI_PTR_TD);
1684 lastp = p;
1685 lastlink = p->physaddr;
1686 p->td.td_status = htole32(status);
1687 if (i == ntd) {
1688 /* last TD */
1689 l = len % maxp;
1690 if (l == 0 && !(flags & USBD_FORCE_SHORT_XFER))
1691 l = maxp;
1692 *ep = p;
1693 } else
1694 l = maxp;
1695 p->td.td_token =
1696 htole32(rd ? UHCI_TD_IN (l, endpt, addr, tog) :
1697 UHCI_TD_OUT(l, endpt, addr, tog));
1698 p->td.td_buffer = htole32(DMAADDR(dma, i * maxp));
1699 tog ^= 1;
1701 *sp = lastp;
1702 DPRINTFN(10, ("uhci_alloc_std_chain: nexttog=%d\n",
1703 upipe->nexttoggle));
1704 return (USBD_NORMAL_COMPLETION);
1707 void
1708 uhci_device_clear_toggle(usbd_pipe_handle pipe)
1710 struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
1711 upipe->nexttoggle = 0;
1714 void
1715 uhci_noop(usbd_pipe_handle pipe)
1719 usbd_status
1720 uhci_device_bulk_transfer(usbd_xfer_handle xfer)
1722 usbd_status err;
1724 /* Insert last in queue. */
1725 err = usb_insert_transfer(xfer);
1726 if (err)
1727 return (err);
1730 * Pipe isn't running (otherwise err would be USBD_INPROG),
1731 * so start it first.
1733 return (uhci_device_bulk_start(STAILQ_FIRST(&xfer->pipe->queue)));
1736 usbd_status
1737 uhci_device_bulk_start(usbd_xfer_handle xfer)
1739 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
1740 usbd_device_handle dev = upipe->pipe.device;
1741 uhci_softc_t *sc = (uhci_softc_t *)dev->bus;
1742 uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
1743 uhci_soft_td_t *data, *dataend;
1744 uhci_soft_qh_t *sqh;
1745 usbd_status err;
1746 int len, isread, endpt;
1748 DPRINTFN(3, ("uhci_device_bulk_start: xfer=%p len=%d flags=%d ii=%p\n",
1749 xfer, xfer->length, xfer->flags, ii));
1751 if (sc->sc_dying)
1752 return (USBD_IOERROR);
1754 #ifdef DIAGNOSTIC
1755 if (xfer->rqflags & URQ_REQUEST)
1756 panic("uhci_device_bulk_transfer: a request");
1757 #endif
1759 len = xfer->length;
1760 endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
1761 isread = UE_GET_DIR(endpt) == UE_DIR_IN;
1762 sqh = upipe->u.bulk.sqh;
1764 upipe->u.bulk.isread = isread;
1765 upipe->u.bulk.length = len;
1767 err = uhci_alloc_std_chain(upipe, sc, len, isread, xfer->flags,
1768 &xfer->dmabuf, &data, &dataend);
1769 if (err)
1770 return (err);
1771 dataend->td.td_status |= htole32(UHCI_TD_IOC);
1773 #ifdef USB_DEBUG
1774 if (uhcidebug > 8) {
1775 DPRINTF(("uhci_device_bulk_transfer: data(1)\n"));
1776 uhci_dump_tds(data);
1778 #endif
1780 /* Set up interrupt info. */
1781 ii->xfer = xfer;
1782 ii->stdstart = data;
1783 ii->stdend = dataend;
1784 #ifdef DIAGNOSTIC
1785 if (!ii->isdone) {
1786 kprintf("uhci_device_bulk_transfer: not done, ii=%p\n", ii);
1788 ii->isdone = 0;
1789 #endif
1791 sqh->elink = data;
1792 sqh->qh.qh_elink = htole32(data->physaddr | UHCI_PTR_TD);
1794 crit_enter();
1795 uhci_add_bulk(sc, sqh);
1796 uhci_add_intr_info(sc, ii);
1798 if (xfer->timeout && !sc->sc_bus.use_polling) {
1799 callout_reset(&xfer->timeout_handle, MS_TO_TICKS(xfer->timeout),
1800 uhci_timeout, ii);
1802 xfer->status = USBD_IN_PROGRESS;
1803 crit_exit();
1805 #ifdef USB_DEBUG
1806 if (uhcidebug > 10) {
1807 DPRINTF(("uhci_device_bulk_transfer: data(2)\n"));
1808 uhci_dump_tds(data);
1810 #endif
1812 if (sc->sc_bus.use_polling)
1813 uhci_waitintr(sc, xfer);
1815 return (USBD_IN_PROGRESS);
1818 /* Abort a device bulk request. */
1819 void
1820 uhci_device_bulk_abort(usbd_xfer_handle xfer)
1822 DPRINTF(("uhci_device_bulk_abort:\n"));
1823 uhci_abort_xfer(xfer, USBD_CANCELLED);
1827 * Abort a device request.
1828 * If this routine is called from a critical section. It guarantees that
1829 * the request will be removed from the hardware scheduling and that
1830 * the callback for it will be called with USBD_CANCELLED status.
1831 * It's impossible to guarantee that the requested transfer will not
1832 * have happened since the hardware runs concurrently.
1833 * If the transaction has already happened we rely on the ordinary
1834 * interrupt processing to process it.
1836 void
1837 uhci_abort_xfer(usbd_xfer_handle xfer, usbd_status status)
1839 struct uhci_xfer *uxfer = UXFER(xfer);
1840 uhci_intr_info_t *ii = &uxfer->iinfo;
1841 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
1842 uhci_softc_t *sc = (uhci_softc_t *)upipe->pipe.device->bus;
1843 uhci_soft_td_t *std;
1845 DPRINTFN(1,("uhci_abort_xfer: xfer=%p, status=%d\n", xfer, status));
1847 if (sc->sc_dying) {
1848 /* If we're dying, just do the software part. */
1849 crit_enter();
1850 xfer->status = status; /* make software ignore it */
1851 callout_stop(&xfer->timeout_handle);
1852 usb_rem_task(xfer->pipe->device, &UXFER(xfer)->abort_task);
1853 usb_transfer_complete(xfer);
1854 crit_exit();
1855 return;
1858 if (xfer->device->bus->intr_context /* || !curproc REMOVED DFly */)
1859 panic("uhci_abort_xfer: not in process context");
1862 * If an abort is already in progress then just wait for it to
1863 * complete and return.
1865 if (uxfer->uhci_xfer_flags & UHCI_XFER_ABORTING) {
1866 DPRINTFN(2, ("uhci_abort_xfer: already aborting\n"));
1867 /* No need to wait if we're aborting from a timeout. */
1868 if (status == USBD_TIMEOUT)
1869 return;
1870 /* Override the status which might be USBD_TIMEOUT. */
1871 xfer->status = status;
1872 DPRINTFN(2, ("uhci_abort_xfer: waiting for abort to finish\n"));
1873 uxfer->uhci_xfer_flags |= UHCI_XFER_ABORTWAIT;
1874 while (uxfer->uhci_xfer_flags & UHCI_XFER_ABORTING)
1875 tsleep(&uxfer->uhci_xfer_flags, 0, "uhciaw", 0);
1876 return;
1880 * Step 1: Make interrupt routine and hardware ignore xfer.
1882 crit_enter();
1883 uxfer->uhci_xfer_flags |= UHCI_XFER_ABORTING;
1884 xfer->status = status; /* make software ignore it */
1885 callout_stop(&xfer->timeout_handle);
1886 usb_rem_task(xfer->pipe->device, &UXFER(xfer)->abort_task);
1887 DPRINTFN(1,("uhci_abort_xfer: stop ii=%p\n", ii));
1888 for (std = ii->stdstart; std != NULL; std = std->link.std)
1889 std->td.td_status &= htole32(~(UHCI_TD_ACTIVE | UHCI_TD_IOC));
1890 crit_exit();
1893 * Step 2: Wait until we know hardware has finished any possible
1894 * use of the xfer. Also make sure the soft interrupt routine
1895 * has run.
1897 usb_delay_ms(upipe->pipe.device->bus, 2); /* Hardware finishes in 1ms */
1898 crit_enter();
1899 #ifdef USB_USE_SOFTINTR
1900 sc->sc_softwake = 1;
1901 #endif /* USB_USE_SOFTINTR */
1902 usb_schedsoftintr(&sc->sc_bus);
1903 #ifdef USB_USE_SOFTINTR
1904 DPRINTFN(1,("uhci_abort_xfer: tsleep\n"));
1905 tsleep(&sc->sc_softwake, 0, "uhciab", 0);
1906 #endif /* USB_USE_SOFTINTR */
1909 * Step 3: Execute callback.
1911 DPRINTFN(1,("uhci_abort_xfer: callback\n"));
1912 #ifdef DIAGNOSTIC
1913 ii->isdone = 1;
1914 #endif
1915 /* Do the wakeup first to avoid touching the xfer after the callback. */
1916 uxfer->uhci_xfer_flags &= ~UHCI_XFER_ABORTING;
1917 if (uxfer->uhci_xfer_flags & UHCI_XFER_ABORTWAIT) {
1918 uxfer->uhci_xfer_flags &= ~UHCI_XFER_ABORTWAIT;
1919 wakeup(&uxfer->uhci_xfer_flags);
1921 usb_transfer_complete(xfer);
1922 crit_exit();
1925 /* Close a device bulk pipe. */
1926 void
1927 uhci_device_bulk_close(usbd_pipe_handle pipe)
1929 struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
1930 usbd_device_handle dev = upipe->pipe.device;
1931 uhci_softc_t *sc = (uhci_softc_t *)dev->bus;
1933 uhci_free_sqh(sc, upipe->u.bulk.sqh);
1934 pipe->endpoint->savedtoggle = upipe->nexttoggle;
1937 usbd_status
1938 uhci_device_ctrl_transfer(usbd_xfer_handle xfer)
1940 usbd_status err;
1942 /* Insert last in queue. */
1943 err = usb_insert_transfer(xfer);
1944 if (err)
1945 return (err);
1948 * Pipe isn't running (otherwise err would be USBD_INPROG),
1949 * so start it first.
1951 return (uhci_device_ctrl_start(STAILQ_FIRST(&xfer->pipe->queue)));
1954 usbd_status
1955 uhci_device_ctrl_start(usbd_xfer_handle xfer)
1957 uhci_softc_t *sc = (uhci_softc_t *)xfer->pipe->device->bus;
1958 usbd_status err;
1960 if (sc->sc_dying)
1961 return (USBD_IOERROR);
1963 #ifdef DIAGNOSTIC
1964 if (!(xfer->rqflags & URQ_REQUEST))
1965 panic("uhci_device_ctrl_transfer: not a request");
1966 #endif
1968 err = uhci_device_request(xfer);
1969 if (err)
1970 return (err);
1972 if (sc->sc_bus.use_polling)
1973 uhci_waitintr(sc, xfer);
1974 return (USBD_IN_PROGRESS);
1977 usbd_status
1978 uhci_device_intr_transfer(usbd_xfer_handle xfer)
1980 usbd_status err;
1982 /* Insert last in queue. */
1983 err = usb_insert_transfer(xfer);
1984 if (err)
1985 return (err);
1988 * Pipe isn't running (otherwise err would be USBD_INPROG),
1989 * so start it first.
1991 return (uhci_device_intr_start(STAILQ_FIRST(&xfer->pipe->queue)));
1994 usbd_status
1995 uhci_device_intr_start(usbd_xfer_handle xfer)
1997 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
1998 usbd_device_handle dev = upipe->pipe.device;
1999 uhci_softc_t *sc = (uhci_softc_t *)dev->bus;
2000 uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
2001 uhci_soft_td_t *data, *dataend;
2002 uhci_soft_qh_t *sqh;
2003 usbd_status err;
2004 int isread, endpt;
2005 int i;
2007 if (sc->sc_dying)
2008 return (USBD_IOERROR);
2010 DPRINTFN(3,("uhci_device_intr_transfer: xfer=%p len=%d flags=%d\n",
2011 xfer, xfer->length, xfer->flags));
2013 #ifdef DIAGNOSTIC
2014 if (xfer->rqflags & URQ_REQUEST)
2015 panic("uhci_device_intr_transfer: a request");
2016 #endif
2018 endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
2019 isread = UE_GET_DIR(endpt) == UE_DIR_IN;
2020 sqh = upipe->u.bulk.sqh;
2022 upipe->u.intr.isread = isread;
2024 err = uhci_alloc_std_chain(upipe, sc, xfer->length, isread,
2025 xfer->flags, &xfer->dmabuf, &data,
2026 &dataend);
2027 if (err)
2028 return (err);
2029 dataend->td.td_status |= htole32(UHCI_TD_IOC);
2031 #ifdef USB_DEBUG
2032 if (uhcidebug > 10) {
2033 DPRINTF(("uhci_device_intr_transfer: data(1)\n"));
2034 uhci_dump_tds(data);
2035 uhci_dump_qh(upipe->u.intr.qhs[0]);
2037 #endif
2039 crit_enter();
2040 /* Set up interrupt info. */
2041 ii->xfer = xfer;
2042 ii->stdstart = data;
2043 ii->stdend = dataend;
2044 #ifdef DIAGNOSTIC
2045 if (!ii->isdone) {
2046 kprintf("uhci_device_intr_transfer: not done, ii=%p\n", ii);
2048 ii->isdone = 0;
2049 #endif
2051 DPRINTFN(10,("uhci_device_intr_transfer: qhs[0]=%p\n",
2052 upipe->u.intr.qhs[0]));
2053 for (i = 0; i < upipe->u.intr.npoll; i++) {
2054 sqh = upipe->u.intr.qhs[i];
2055 sqh->elink = data;
2056 sqh->qh.qh_elink = htole32(data->physaddr | UHCI_PTR_TD);
2058 uhci_add_intr_info(sc, ii);
2059 xfer->status = USBD_IN_PROGRESS;
2060 crit_exit();
2062 #ifdef USB_DEBUG
2063 if (uhcidebug > 10) {
2064 DPRINTF(("uhci_device_intr_transfer: data(2)\n"));
2065 uhci_dump_tds(data);
2066 uhci_dump_qh(upipe->u.intr.qhs[0]);
2068 #endif
2070 return (USBD_IN_PROGRESS);
2073 /* Abort a device control request. */
2074 void
2075 uhci_device_ctrl_abort(usbd_xfer_handle xfer)
2077 DPRINTF(("uhci_device_ctrl_abort:\n"));
2078 uhci_abort_xfer(xfer, USBD_CANCELLED);
2081 /* Close a device control pipe. */
2082 void
2083 uhci_device_ctrl_close(usbd_pipe_handle pipe)
2087 /* Abort a device interrupt request. */
2088 void
2089 uhci_device_intr_abort(usbd_xfer_handle xfer)
2091 DPRINTFN(1,("uhci_device_intr_abort: xfer=%p\n", xfer));
2092 if (xfer->pipe->intrxfer == xfer) {
2093 DPRINTFN(1,("uhci_device_intr_abort: remove\n"));
2094 xfer->pipe->intrxfer = NULL;
2096 uhci_abort_xfer(xfer, USBD_CANCELLED);
2099 /* Close a device interrupt pipe. */
2100 void
2101 uhci_device_intr_close(usbd_pipe_handle pipe)
2103 struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
2104 uhci_softc_t *sc = (uhci_softc_t *)pipe->device->bus;
2105 int i, npoll;
2107 /* Unlink descriptors from controller data structures. */
2108 npoll = upipe->u.intr.npoll;
2109 crit_enter();
2110 for (i = 0; i < npoll; i++)
2111 uhci_remove_intr(sc, upipe->u.intr.qhs[i]);
2112 crit_exit();
2115 * We now have to wait for any activity on the physical
2116 * descriptors to stop.
2118 usb_delay_ms(&sc->sc_bus, 2);
2120 for(i = 0; i < npoll; i++)
2121 uhci_free_sqh(sc, upipe->u.intr.qhs[i]);
2122 kfree(upipe->u.intr.qhs, M_USBHC);
2124 /* XXX free other resources */
2127 usbd_status
2128 uhci_device_request(usbd_xfer_handle xfer)
2130 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
2131 usb_device_request_t *req = &xfer->request;
2132 usbd_device_handle dev = upipe->pipe.device;
2133 uhci_softc_t *sc = (uhci_softc_t *)dev->bus;
2134 int addr = dev->address;
2135 int endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
2136 uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
2137 uhci_soft_td_t *setup, *data, *stat, *next, *dataend;
2138 uhci_soft_qh_t *sqh;
2139 int len;
2140 u_int32_t ls;
2141 usbd_status err;
2142 int isread;
2144 DPRINTFN(3,("uhci_device_control type=0x%02x, request=0x%02x, "
2145 "wValue=0x%04x, wIndex=0x%04x len=%d, addr=%d, endpt=%d\n",
2146 req->bmRequestType, req->bRequest, UGETW(req->wValue),
2147 UGETW(req->wIndex), UGETW(req->wLength),
2148 addr, endpt));
2150 ls = dev->speed == USB_SPEED_LOW ? UHCI_TD_LS : 0;
2151 isread = req->bmRequestType & UT_READ;
2152 len = UGETW(req->wLength);
2154 setup = upipe->u.ctl.setup;
2155 stat = upipe->u.ctl.stat;
2156 sqh = upipe->u.ctl.sqh;
2158 /* Set up data transaction */
2159 if (len != 0) {
2160 upipe->nexttoggle = 1;
2161 err = uhci_alloc_std_chain(upipe, sc, len, isread, xfer->flags,
2162 &xfer->dmabuf, &data, &dataend);
2163 if (err)
2164 return (err);
2165 next = data;
2166 dataend->link.std = stat;
2167 dataend->td.td_link = htole32(stat->physaddr | UHCI_PTR_VF | UHCI_PTR_TD);
2168 } else {
2169 next = stat;
2171 upipe->u.ctl.length = len;
2173 memcpy(KERNADDR(&upipe->u.ctl.reqdma, 0), req, sizeof *req);
2175 setup->link.std = next;
2176 setup->td.td_link = htole32(next->physaddr | UHCI_PTR_VF | UHCI_PTR_TD);
2177 setup->td.td_status = htole32(UHCI_TD_SET_ERRCNT(3) | ls |
2178 UHCI_TD_ACTIVE);
2179 setup->td.td_token = htole32(UHCI_TD_SETUP(sizeof *req, endpt, addr));
2180 setup->td.td_buffer = htole32(DMAADDR(&upipe->u.ctl.reqdma, 0));
2181 stat->link.std = NULL;
2182 stat->td.td_link = htole32(UHCI_PTR_T);
2183 stat->td.td_status = htole32(UHCI_TD_SET_ERRCNT(3) | ls |
2184 UHCI_TD_ACTIVE | UHCI_TD_IOC);
2186 stat->td.td_token =
2187 htole32(isread ? UHCI_TD_OUT(0, endpt, addr, 1) :
2188 UHCI_TD_IN (0, endpt, addr, 1));
2189 stat->td.td_buffer = htole32(0);
2191 #ifdef USB_DEBUG
2192 if (uhcidebug > 10) {
2193 DPRINTF(("uhci_device_request: before transfer\n"));
2194 uhci_dump_tds(setup);
2196 #endif
2198 /* Set up interrupt info. */
2199 ii->xfer = xfer;
2200 ii->stdstart = setup;
2201 ii->stdend = stat;
2202 #ifdef DIAGNOSTIC
2203 if (!ii->isdone) {
2204 kprintf("uhci_device_request: not done, ii=%p\n", ii);
2206 ii->isdone = 0;
2207 #endif
2209 sqh->elink = setup;
2210 sqh->qh.qh_elink = htole32(setup->physaddr | UHCI_PTR_TD);
2212 crit_enter();
2213 if (dev->speed == USB_SPEED_LOW)
2214 uhci_add_ls_ctrl(sc, sqh);
2215 else
2216 uhci_add_hs_ctrl(sc, sqh);
2217 uhci_add_intr_info(sc, ii);
2218 #ifdef USB_DEBUG
2219 if (uhcidebug > 12) {
2220 uhci_soft_td_t *std;
2221 uhci_soft_qh_t *xqh;
2222 uhci_soft_qh_t *sxqh;
2223 int maxqh = 0;
2224 uhci_physaddr_t link;
2225 DPRINTF(("uhci_enter_ctl_q: follow from [0]\n"));
2226 for (std = sc->sc_vframes[0].htd, link = 0;
2227 (link & UHCI_PTR_QH) == 0;
2228 std = std->link.std) {
2229 link = le32toh(std->td.td_link);
2230 uhci_dump_td(std);
2232 sxqh = (uhci_soft_qh_t *)std;
2233 uhci_dump_qh(sxqh);
2234 for (xqh = sxqh;
2235 xqh != NULL;
2236 xqh = (maxqh++ == 5 || xqh->hlink == sxqh ||
2237 xqh->hlink == xqh ? NULL : xqh->hlink)) {
2238 uhci_dump_qh(xqh);
2240 DPRINTF(("Enqueued QH:\n"));
2241 uhci_dump_qh(sqh);
2242 uhci_dump_tds(sqh->elink);
2244 #endif
2245 if (xfer->timeout && !sc->sc_bus.use_polling) {
2246 callout_reset(&xfer->timeout_handle, MS_TO_TICKS(xfer->timeout),
2247 uhci_timeout, ii);
2249 xfer->status = USBD_IN_PROGRESS;
2250 crit_exit();
2252 return (USBD_NORMAL_COMPLETION);
2255 usbd_status
2256 uhci_device_isoc_transfer(usbd_xfer_handle xfer)
2258 usbd_status err;
2260 DPRINTFN(5,("uhci_device_isoc_transfer: xfer=%p\n", xfer));
2262 /* Put it on our queue, */
2263 err = usb_insert_transfer(xfer);
2265 /* bail out on error, */
2266 if (err && err != USBD_IN_PROGRESS)
2267 return (err);
2269 /* XXX should check inuse here */
2271 /* insert into schedule, */
2272 uhci_device_isoc_enter(xfer);
2274 /* and start if the pipe wasn't running */
2275 if (!err)
2276 uhci_device_isoc_start(STAILQ_FIRST(&xfer->pipe->queue));
2278 return (err);
2281 void
2282 uhci_device_isoc_enter(usbd_xfer_handle xfer)
2284 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
2285 usbd_device_handle dev = upipe->pipe.device;
2286 uhci_softc_t *sc = (uhci_softc_t *)dev->bus;
2287 struct iso *iso = &upipe->u.iso;
2288 uhci_soft_td_t *std;
2289 u_int32_t buf, len, status;
2290 int i, next, nframes;
2292 DPRINTFN(5,("uhci_device_isoc_enter: used=%d next=%d xfer=%p "
2293 "nframes=%d\n",
2294 iso->inuse, iso->next, xfer, xfer->nframes));
2296 if (sc->sc_dying)
2297 return;
2299 if (xfer->status == USBD_IN_PROGRESS) {
2300 /* This request has already been entered into the frame list */
2301 kprintf("uhci_device_isoc_enter: xfer=%p in frame list\n", xfer);
2302 /* XXX */
2305 #ifdef DIAGNOSTIC
2306 if (iso->inuse >= UHCI_VFRAMELIST_COUNT)
2307 kprintf("uhci_device_isoc_enter: overflow!\n");
2308 #endif
2310 next = iso->next;
2311 if (next == -1) {
2312 /* Not in use yet, schedule it a few frames ahead. */
2313 next = (UREAD2(sc, UHCI_FRNUM) + 3) % UHCI_VFRAMELIST_COUNT;
2314 DPRINTFN(2,("uhci_device_isoc_enter: start next=%d\n", next));
2317 xfer->status = USBD_IN_PROGRESS;
2318 UXFER(xfer)->curframe = next;
2320 buf = DMAADDR(&xfer->dmabuf, 0);
2321 status = UHCI_TD_ZERO_ACTLEN(UHCI_TD_SET_ERRCNT(0) |
2322 UHCI_TD_ACTIVE |
2323 UHCI_TD_IOS);
2324 nframes = xfer->nframes;
2325 crit_enter();
2326 for (i = 0; i < nframes; i++) {
2327 std = iso->stds[next];
2328 if (++next >= UHCI_VFRAMELIST_COUNT)
2329 next = 0;
2330 len = xfer->frlengths[i];
2331 std->td.td_buffer = htole32(buf);
2332 if (i == nframes - 1)
2333 status |= UHCI_TD_IOC;
2334 std->td.td_status = htole32(status);
2335 std->td.td_token &= htole32(~UHCI_TD_MAXLEN_MASK);
2336 std->td.td_token |= htole32(UHCI_TD_SET_MAXLEN(len));
2337 #ifdef USB_DEBUG
2338 if (uhcidebug > 5) {
2339 DPRINTFN(5,("uhci_device_isoc_enter: TD %d\n", i));
2340 uhci_dump_td(std);
2342 #endif
2343 buf += len;
2345 iso->next = next;
2346 iso->inuse += xfer->nframes;
2348 crit_exit();
2351 usbd_status
2352 uhci_device_isoc_start(usbd_xfer_handle xfer)
2354 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
2355 uhci_softc_t *sc = (uhci_softc_t *)upipe->pipe.device->bus;
2356 uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
2357 uhci_soft_td_t *end;
2358 int i;
2360 DPRINTFN(5,("uhci_device_isoc_start: xfer=%p\n", xfer));
2362 if (sc->sc_dying)
2363 return (USBD_IOERROR);
2365 #ifdef DIAGNOSTIC
2366 if (xfer->status != USBD_IN_PROGRESS)
2367 kprintf("uhci_device_isoc_start: not in progress %p\n", xfer);
2368 #endif
2370 /* Find the last TD */
2371 i = UXFER(xfer)->curframe + xfer->nframes;
2372 if (i >= UHCI_VFRAMELIST_COUNT)
2373 i -= UHCI_VFRAMELIST_COUNT;
2374 end = upipe->u.iso.stds[i];
2376 #ifdef DIAGNOSTIC
2377 if (end == NULL) {
2378 kprintf("uhci_device_isoc_start: end == NULL\n");
2379 return (USBD_INVAL);
2381 #endif
2383 crit_enter();
2385 /* Set up interrupt info. */
2386 ii->xfer = xfer;
2387 ii->stdstart = end;
2388 ii->stdend = end;
2389 #ifdef DIAGNOSTIC
2390 if (!ii->isdone)
2391 kprintf("uhci_device_isoc_start: not done, ii=%p\n", ii);
2392 ii->isdone = 0;
2393 #endif
2394 uhci_add_intr_info(sc, ii);
2396 crit_exit();
2398 return (USBD_IN_PROGRESS);
2401 void
2402 uhci_device_isoc_abort(usbd_xfer_handle xfer)
2404 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
2405 uhci_soft_td_t **stds = upipe->u.iso.stds;
2406 uhci_soft_td_t *std;
2407 int i, n, nframes, maxlen, len;
2409 crit_enter();
2411 /* Transfer is already done. */
2412 if (xfer->status != USBD_NOT_STARTED &&
2413 xfer->status != USBD_IN_PROGRESS) {
2414 crit_exit();
2415 return;
2418 /* Give xfer the requested abort code. */
2419 xfer->status = USBD_CANCELLED;
2421 /* make hardware ignore it, */
2422 nframes = xfer->nframes;
2423 n = UXFER(xfer)->curframe;
2424 maxlen = 0;
2425 for (i = 0; i < nframes; i++) {
2426 std = stds[n];
2427 std->td.td_status &= htole32(~(UHCI_TD_ACTIVE | UHCI_TD_IOC));
2428 len = UHCI_TD_GET_MAXLEN(le32toh(std->td.td_token));
2429 if (len > maxlen)
2430 maxlen = len;
2431 if (++n >= UHCI_VFRAMELIST_COUNT)
2432 n = 0;
2435 /* and wait until we are sure the hardware has finished. */
2436 delay(maxlen);
2438 #ifdef DIAGNOSTIC
2439 UXFER(xfer)->iinfo.isdone = 1;
2440 #endif
2441 /* Run callback and remove from interrupt list. */
2442 usb_transfer_complete(xfer);
2444 crit_exit();
2447 void
2448 uhci_device_isoc_close(usbd_pipe_handle pipe)
2450 struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
2451 usbd_device_handle dev = upipe->pipe.device;
2452 uhci_softc_t *sc = (uhci_softc_t *)dev->bus;
2453 uhci_soft_td_t *std, *vstd;
2454 struct iso *iso;
2455 int i;
2458 * Make sure all TDs are marked as inactive.
2459 * Wait for completion.
2460 * Unschedule.
2461 * Deallocate.
2463 iso = &upipe->u.iso;
2465 for (i = 0; i < UHCI_VFRAMELIST_COUNT; i++)
2466 iso->stds[i]->td.td_status &= htole32(~UHCI_TD_ACTIVE);
2467 usb_delay_ms(&sc->sc_bus, 2); /* wait for completion */
2469 crit_enter();
2470 for (i = 0; i < UHCI_VFRAMELIST_COUNT; i++) {
2471 std = iso->stds[i];
2472 for (vstd = sc->sc_vframes[i].htd;
2473 vstd != NULL && vstd->link.std != std;
2474 vstd = vstd->link.std)
2476 if (vstd == NULL) {
2477 /*panic*/
2478 kprintf("uhci_device_isoc_close: %p not found\n", std);
2479 crit_exit();
2480 return;
2482 vstd->link = std->link;
2483 vstd->td.td_link = std->td.td_link;
2484 uhci_free_std(sc, std);
2486 crit_exit();
2488 kfree(iso->stds, M_USBHC);
2491 usbd_status
2492 uhci_setup_isoc(usbd_pipe_handle pipe)
2494 struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
2495 usbd_device_handle dev = upipe->pipe.device;
2496 uhci_softc_t *sc = (uhci_softc_t *)dev->bus;
2497 int addr = upipe->pipe.device->address;
2498 int endpt = upipe->pipe.endpoint->edesc->bEndpointAddress;
2499 int rd = UE_GET_DIR(endpt) == UE_DIR_IN;
2500 uhci_soft_td_t *std, *vstd;
2501 u_int32_t token;
2502 struct iso *iso;
2503 int i;
2505 iso = &upipe->u.iso;
2506 iso->stds = kmalloc(UHCI_VFRAMELIST_COUNT * sizeof (uhci_soft_td_t *),
2507 M_USBHC, M_INTWAIT);
2509 token = rd ? UHCI_TD_IN (0, endpt, addr, 0) :
2510 UHCI_TD_OUT(0, endpt, addr, 0);
2512 /* Allocate the TDs and mark as inactive; */
2513 for (i = 0; i < UHCI_VFRAMELIST_COUNT; i++) {
2514 std = uhci_alloc_std(sc);
2515 if (std == 0)
2516 goto bad;
2517 std->td.td_status = htole32(UHCI_TD_IOS); /* iso, inactive */
2518 std->td.td_token = htole32(token);
2519 iso->stds[i] = std;
2522 /* Insert TDs into schedule. */
2523 crit_enter();
2524 for (i = 0; i < UHCI_VFRAMELIST_COUNT; i++) {
2525 std = iso->stds[i];
2526 vstd = sc->sc_vframes[i].htd;
2527 std->link = vstd->link;
2528 std->td.td_link = vstd->td.td_link;
2529 vstd->link.std = std;
2530 vstd->td.td_link = htole32(std->physaddr | UHCI_PTR_TD);
2532 crit_exit();
2534 iso->next = -1;
2535 iso->inuse = 0;
2537 return (USBD_NORMAL_COMPLETION);
2539 bad:
2540 while (--i >= 0)
2541 uhci_free_std(sc, iso->stds[i]);
2542 kfree(iso->stds, M_USBHC);
2543 return (USBD_NOMEM);
2546 void
2547 uhci_device_isoc_done(usbd_xfer_handle xfer)
2549 uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
2551 DPRINTFN(4, ("uhci_isoc_done: length=%d\n", xfer->actlen));
2553 if (ii->xfer != xfer)
2554 /* Not on interrupt list, ignore it. */
2555 return;
2557 if (!uhci_active_intr_info(ii))
2558 return;
2560 #ifdef DIAGNOSTIC
2561 if (xfer->busy_free != XFER_BUSY) {
2562 kprintf("uhci_device_isoc_done: xfer=%p not busy 0x%08x\n",
2563 xfer, xfer->busy_free);
2564 return;
2567 if (ii->stdend == NULL) {
2568 kprintf("uhci_device_isoc_done: xfer=%p stdend==NULL\n", xfer);
2569 #ifdef USB_DEBUG
2570 uhci_dump_ii(ii);
2571 #endif
2572 return;
2574 #endif
2576 /* Turn off the interrupt since it is active even if the TD is not. */
2577 ii->stdend->td.td_status &= htole32(~UHCI_TD_IOC);
2579 uhci_del_intr_info(ii); /* remove from active list */
2581 #ifdef DIAGNOSTIC
2582 if (ii->stdend == NULL) {
2583 kprintf("uhci_device_isoc_done: xfer=%p stdend==NULL\n", xfer);
2584 #ifdef USB_DEBUG
2585 uhci_dump_ii(ii);
2586 #endif
2587 return;
2589 #endif
2592 void
2593 uhci_device_intr_done(usbd_xfer_handle xfer)
2595 uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
2596 uhci_softc_t *sc = ii->sc;
2597 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
2598 uhci_soft_qh_t *sqh;
2599 int i, npoll;
2601 DPRINTFN(5, ("uhci_device_intr_done: length=%d\n", xfer->actlen));
2603 npoll = upipe->u.intr.npoll;
2604 for(i = 0; i < npoll; i++) {
2605 sqh = upipe->u.intr.qhs[i];
2606 sqh->elink = NULL;
2607 sqh->qh.qh_elink = htole32(UHCI_PTR_T);
2609 uhci_free_std_chain(sc, ii->stdstart, NULL);
2611 /* XXX Wasteful. */
2612 if (xfer->pipe->repeat) {
2613 uhci_soft_td_t *data, *dataend;
2615 DPRINTFN(5,("uhci_device_intr_done: requeueing\n"));
2617 /* This alloc cannot fail since we freed the chain above. */
2618 uhci_alloc_std_chain(upipe, sc, xfer->length,
2619 upipe->u.intr.isread, xfer->flags,
2620 &xfer->dmabuf, &data, &dataend);
2621 dataend->td.td_status |= htole32(UHCI_TD_IOC);
2623 #ifdef USB_DEBUG
2624 if (uhcidebug > 10) {
2625 DPRINTF(("uhci_device_intr_done: data(1)\n"));
2626 uhci_dump_tds(data);
2627 uhci_dump_qh(upipe->u.intr.qhs[0]);
2629 #endif
2631 ii->stdstart = data;
2632 ii->stdend = dataend;
2633 #ifdef DIAGNOSTIC
2634 if (!ii->isdone) {
2635 kprintf("uhci_device_intr_done: not done, ii=%p\n", ii);
2637 ii->isdone = 0;
2638 #endif
2639 for (i = 0; i < npoll; i++) {
2640 sqh = upipe->u.intr.qhs[i];
2641 sqh->elink = data;
2642 sqh->qh.qh_elink = htole32(data->physaddr | UHCI_PTR_TD);
2644 xfer->status = USBD_IN_PROGRESS;
2645 /* The ii is already on the examined list, just leave it. */
2646 } else {
2647 DPRINTFN(5,("uhci_device_intr_done: removing\n"));
2648 if (uhci_active_intr_info(ii))
2649 uhci_del_intr_info(ii);
2653 /* Deallocate request data structures */
2654 void
2655 uhci_device_ctrl_done(usbd_xfer_handle xfer)
2657 uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
2658 uhci_softc_t *sc = ii->sc;
2659 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
2661 #ifdef DIAGNOSTIC
2662 if (!(xfer->rqflags & URQ_REQUEST))
2663 panic("uhci_device_ctrl_done: not a request");
2664 #endif
2666 if (!uhci_active_intr_info(ii))
2667 return;
2669 uhci_del_intr_info(ii); /* remove from active list */
2671 if (upipe->pipe.device->speed == USB_SPEED_LOW)
2672 uhci_remove_ls_ctrl(sc, upipe->u.ctl.sqh);
2673 else
2674 uhci_remove_hs_ctrl(sc, upipe->u.ctl.sqh);
2676 if (upipe->u.ctl.length != 0)
2677 uhci_free_std_chain(sc, ii->stdstart->link.std, ii->stdend);
2679 DPRINTFN(5, ("uhci_device_ctrl_done: length=%d\n", xfer->actlen));
2682 /* Deallocate request data structures */
2683 void
2684 uhci_device_bulk_done(usbd_xfer_handle xfer)
2686 uhci_intr_info_t *ii = &UXFER(xfer)->iinfo;
2687 uhci_softc_t *sc = ii->sc;
2688 struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe;
2690 DPRINTFN(5,("uhci_device_bulk_done: xfer=%p ii=%p sc=%p upipe=%p\n",
2691 xfer, ii, sc, upipe));
2693 if (!uhci_active_intr_info(ii))
2694 return;
2696 uhci_del_intr_info(ii); /* remove from active list */
2698 uhci_remove_bulk(sc, upipe->u.bulk.sqh);
2700 uhci_free_std_chain(sc, ii->stdstart, NULL);
2702 DPRINTFN(5, ("uhci_device_bulk_done: length=%d\n", xfer->actlen));
2705 /* Add interrupt QH, called with vflock. */
2706 void
2707 uhci_add_intr(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
2709 struct uhci_vframe *vf = &sc->sc_vframes[sqh->pos];
2710 uhci_soft_qh_t *eqh;
2712 DPRINTFN(4, ("uhci_add_intr: n=%d sqh=%p\n", sqh->pos, sqh));
2714 eqh = vf->eqh;
2715 sqh->hlink = eqh->hlink;
2716 sqh->qh.qh_hlink = eqh->qh.qh_hlink;
2717 eqh->hlink = sqh;
2718 eqh->qh.qh_hlink = htole32(sqh->physaddr | UHCI_PTR_QH);
2719 vf->eqh = sqh;
2720 vf->bandwidth++;
2723 /* Remove interrupt QH. */
2724 void
2725 uhci_remove_intr(uhci_softc_t *sc, uhci_soft_qh_t *sqh)
2727 struct uhci_vframe *vf = &sc->sc_vframes[sqh->pos];
2728 uhci_soft_qh_t *pqh;
2730 DPRINTFN(4, ("uhci_remove_intr: n=%d sqh=%p\n", sqh->pos, sqh));
2732 /* See comment in uhci_remove_ctrl() */
2733 if (!(sqh->qh.qh_elink & htole32(UHCI_PTR_T))) {
2734 sqh->qh.qh_elink = htole32(UHCI_PTR_T);
2735 delay(UHCI_QH_REMOVE_DELAY);
2738 pqh = uhci_find_prev_qh(vf->hqh, sqh);
2739 pqh->hlink = sqh->hlink;
2740 pqh->qh.qh_hlink = sqh->qh.qh_hlink;
2741 delay(UHCI_QH_REMOVE_DELAY);
2742 if (vf->eqh == sqh)
2743 vf->eqh = pqh;
2744 vf->bandwidth--;
2747 usbd_status
2748 uhci_device_setintr(uhci_softc_t *sc, struct uhci_pipe *upipe, int ival)
2750 uhci_soft_qh_t *sqh;
2751 int i, npoll;
2752 u_int bestbw, bw, bestoffs, offs;
2754 DPRINTFN(2, ("uhci_device_setintr: pipe=%p\n", upipe));
2755 if (ival == 0) {
2756 kprintf("uhci_setintr: 0 interval\n");
2757 return (USBD_INVAL);
2760 if (ival > UHCI_VFRAMELIST_COUNT)
2761 ival = UHCI_VFRAMELIST_COUNT;
2762 npoll = (UHCI_VFRAMELIST_COUNT + ival - 1) / ival;
2763 DPRINTFN(2, ("uhci_device_setintr: ival=%d npoll=%d\n", ival, npoll));
2765 upipe->u.intr.npoll = npoll;
2766 upipe->u.intr.qhs =
2767 kmalloc(npoll * sizeof(uhci_soft_qh_t *), M_USBHC, M_INTWAIT);
2770 * Figure out which offset in the schedule that has most
2771 * bandwidth left over.
2773 #define MOD(i) ((i) & (UHCI_VFRAMELIST_COUNT-1))
2774 for (bestoffs = offs = 0, bestbw = ~0; offs < ival; offs++) {
2775 for (bw = i = 0; i < npoll; i++)
2776 bw += sc->sc_vframes[MOD(i * ival + offs)].bandwidth;
2777 if (bw < bestbw) {
2778 bestbw = bw;
2779 bestoffs = offs;
2782 DPRINTFN(1, ("uhci_device_setintr: bw=%d offs=%d\n", bestbw, bestoffs));
2784 for(i = 0; i < npoll; i++) {
2785 upipe->u.intr.qhs[i] = sqh = uhci_alloc_sqh(sc);
2786 sqh->elink = NULL;
2787 sqh->qh.qh_elink = htole32(UHCI_PTR_T);
2788 sqh->pos = MOD(i * ival + bestoffs);
2790 #undef MOD
2792 crit_enter();
2793 /* Enter QHs into the controller data structures. */
2794 for(i = 0; i < npoll; i++)
2795 uhci_add_intr(sc, upipe->u.intr.qhs[i]);
2796 crit_exit();
2798 DPRINTFN(5, ("uhci_device_setintr: returns %p\n", upipe));
2799 return (USBD_NORMAL_COMPLETION);
2802 /* Open a new pipe. */
2803 usbd_status
2804 uhci_open(usbd_pipe_handle pipe)
2806 uhci_softc_t *sc = (uhci_softc_t *)pipe->device->bus;
2807 struct uhci_pipe *upipe = (struct uhci_pipe *)pipe;
2808 usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
2809 usbd_status err;
2810 int ival;
2812 DPRINTFN(1, ("uhci_open: pipe=%p, addr=%d, endpt=%d (%d)\n",
2813 pipe, pipe->device->address,
2814 ed->bEndpointAddress, sc->sc_addr));
2816 upipe->aborting = 0;
2817 upipe->nexttoggle = pipe->endpoint->savedtoggle;
2819 if (pipe->device->address == sc->sc_addr) {
2820 switch (ed->bEndpointAddress) {
2821 case USB_CONTROL_ENDPOINT:
2822 pipe->methods = &uhci_root_ctrl_methods;
2823 break;
2824 case UE_DIR_IN | UHCI_INTR_ENDPT:
2825 pipe->methods = &uhci_root_intr_methods;
2826 break;
2827 default:
2828 return (USBD_INVAL);
2830 } else {
2831 switch (ed->bmAttributes & UE_XFERTYPE) {
2832 case UE_CONTROL:
2833 pipe->methods = &uhci_device_ctrl_methods;
2834 upipe->u.ctl.sqh = uhci_alloc_sqh(sc);
2835 if (upipe->u.ctl.sqh == NULL)
2836 goto bad;
2837 upipe->u.ctl.setup = uhci_alloc_std(sc);
2838 if (upipe->u.ctl.setup == NULL) {
2839 uhci_free_sqh(sc, upipe->u.ctl.sqh);
2840 goto bad;
2842 upipe->u.ctl.stat = uhci_alloc_std(sc);
2843 if (upipe->u.ctl.stat == NULL) {
2844 uhci_free_sqh(sc, upipe->u.ctl.sqh);
2845 uhci_free_std(sc, upipe->u.ctl.setup);
2846 goto bad;
2848 err = usb_allocmem(&sc->sc_bus,
2849 sizeof(usb_device_request_t),
2850 0, &upipe->u.ctl.reqdma);
2851 if (err) {
2852 uhci_free_sqh(sc, upipe->u.ctl.sqh);
2853 uhci_free_std(sc, upipe->u.ctl.setup);
2854 uhci_free_std(sc, upipe->u.ctl.stat);
2855 goto bad;
2857 break;
2858 case UE_INTERRUPT:
2859 pipe->methods = &uhci_device_intr_methods;
2860 ival = pipe->interval;
2861 if (ival == USBD_DEFAULT_INTERVAL)
2862 ival = ed->bInterval;
2863 return (uhci_device_setintr(sc, upipe, ival));
2864 case UE_ISOCHRONOUS:
2865 pipe->methods = &uhci_device_isoc_methods;
2866 return (uhci_setup_isoc(pipe));
2867 case UE_BULK:
2868 pipe->methods = &uhci_device_bulk_methods;
2869 upipe->u.bulk.sqh = uhci_alloc_sqh(sc);
2870 if (upipe->u.bulk.sqh == NULL)
2871 goto bad;
2872 break;
2875 return (USBD_NORMAL_COMPLETION);
2877 bad:
2878 return (USBD_NOMEM);
2882 * Data structures and routines to emulate the root hub.
2884 usb_device_descriptor_t uhci_devd = {
2885 USB_DEVICE_DESCRIPTOR_SIZE,
2886 UDESC_DEVICE, /* type */
2887 {0x00, 0x01}, /* USB version */
2888 UDCLASS_HUB, /* class */
2889 UDSUBCLASS_HUB, /* subclass */
2890 UDPROTO_FSHUB, /* protocol */
2891 64, /* max packet */
2892 {0},{0},{0x00,0x01}, /* device id */
2893 1,2,0, /* string indicies */
2894 1 /* # of configurations */
2897 usb_config_descriptor_t uhci_confd = {
2898 USB_CONFIG_DESCRIPTOR_SIZE,
2899 UDESC_CONFIG,
2900 {USB_CONFIG_DESCRIPTOR_SIZE +
2901 USB_INTERFACE_DESCRIPTOR_SIZE +
2902 USB_ENDPOINT_DESCRIPTOR_SIZE},
2906 UC_SELF_POWERED,
2907 0 /* max power */
2910 usb_interface_descriptor_t uhci_ifcd = {
2911 USB_INTERFACE_DESCRIPTOR_SIZE,
2912 UDESC_INTERFACE,
2916 UICLASS_HUB,
2917 UISUBCLASS_HUB,
2918 UIPROTO_FSHUB,
2922 usb_endpoint_descriptor_t uhci_endpd = {
2923 USB_ENDPOINT_DESCRIPTOR_SIZE,
2924 UDESC_ENDPOINT,
2925 UE_DIR_IN | UHCI_INTR_ENDPT,
2926 UE_INTERRUPT,
2927 {8},
2931 usb_hub_descriptor_t uhci_hubd_piix = {
2932 USB_HUB_DESCRIPTOR_SIZE,
2933 UDESC_HUB,
2935 { UHD_PWR_NO_SWITCH | UHD_OC_INDIVIDUAL, 0 },
2936 50, /* power on to power good */
2938 { 0x00 }, /* both ports are removable */
2942 uhci_str(usb_string_descriptor_t *p, int l, char *s)
2944 int i;
2946 if (l == 0)
2947 return (0);
2948 p->bLength = 2 * strlen(s) + 2;
2949 if (l == 1)
2950 return (1);
2951 p->bDescriptorType = UDESC_STRING;
2952 l -= 2;
2953 for (i = 0; s[i] && l > 1; i++, l -= 2)
2954 USETW2(p->bString[i], 0, s[i]);
2955 return (2*i+2);
2959 * The USB hub protocol requires that SET_FEATURE(PORT_RESET) also
2960 * enables the port, and also states that SET_FEATURE(PORT_ENABLE)
2961 * should not be used by the USB subsystem. As we cannot issue a
2962 * SET_FEATURE(PORT_ENABLE) externally, we must ensure that the port
2963 * will be enabled as part of the reset.
2965 * On the VT83C572, the port cannot be successfully enabled until the
2966 * outstanding "port enable change" and "connection status change"
2967 * events have been reset.
2969 static usbd_status
2970 uhci_portreset(uhci_softc_t *sc, int index)
2972 int lim, port, x;
2974 if (index == 1)
2975 port = UHCI_PORTSC1;
2976 else if (index == 2)
2977 port = UHCI_PORTSC2;
2978 else
2979 return (USBD_IOERROR);
2981 x = URWMASK(UREAD2(sc, port));
2982 UWRITE2(sc, port, x | UHCI_PORTSC_PR);
2984 usb_delay_ms(&sc->sc_bus, USB_PORT_ROOT_RESET_DELAY);
2986 DPRINTFN(3,("uhci port %d reset, status0 = 0x%04x\n",
2987 index, UREAD2(sc, port)));
2989 x = URWMASK(UREAD2(sc, port));
2990 UWRITE2(sc, port, x & ~UHCI_PORTSC_PR);
2992 delay(100);
2994 DPRINTFN(3,("uhci port %d reset, status1 = 0x%04x\n",
2995 index, UREAD2(sc, port)));
2997 x = URWMASK(UREAD2(sc, port));
2998 UWRITE2(sc, port, x | UHCI_PORTSC_PE);
3000 for (lim = 10; --lim > 0;) {
3001 usb_delay_ms(&sc->sc_bus, USB_PORT_RESET_DELAY);
3003 x = UREAD2(sc, port);
3005 DPRINTFN(3,("uhci port %d iteration %u, status = 0x%04x\n",
3006 index, lim, x));
3008 if (!(x & UHCI_PORTSC_CCS)) {
3010 * No device is connected (or was disconnected
3011 * during reset). Consider the port reset.
3012 * The delay must be long enough to ensure on
3013 * the initial iteration that the device
3014 * connection will have been registered. 50ms
3015 * appears to be sufficient, but 20ms is not.
3017 DPRINTFN(3,("uhci port %d loop %u, device detached\n",
3018 index, lim));
3019 break;
3022 if (x & (UHCI_PORTSC_POEDC | UHCI_PORTSC_CSC)) {
3024 * Port enabled changed and/or connection
3025 * status changed were set. Reset either or
3026 * both raised flags (by writing a 1 to that
3027 * bit), and wait again for state to settle.
3029 UWRITE2(sc, port, URWMASK(x) |
3030 (x & (UHCI_PORTSC_POEDC | UHCI_PORTSC_CSC)));
3031 continue;
3034 if (x & UHCI_PORTSC_PE)
3035 /* Port is enabled */
3036 break;
3038 UWRITE2(sc, port, URWMASK(x) | UHCI_PORTSC_PE);
3041 DPRINTFN(3,("uhci port %d reset, status2 = 0x%04x\n",
3042 index, UREAD2(sc, port)));
3044 if (lim <= 0) {
3045 DPRINTFN(1,("uhci port %d reset timed out\n", index));
3046 return (USBD_TIMEOUT);
3049 sc->sc_isreset = 1;
3050 return (USBD_NORMAL_COMPLETION);
3054 * Simulate a hardware hub by handling all the necessary requests.
3056 usbd_status
3057 uhci_root_ctrl_transfer(usbd_xfer_handle xfer)
3059 usbd_status err;
3061 /* Insert last in queue. */
3062 err = usb_insert_transfer(xfer);
3063 if (err)
3064 return (err);
3067 * Pipe isn't running (otherwise err would be USBD_INPROG),
3068 * so start it first.
3070 return (uhci_root_ctrl_start(STAILQ_FIRST(&xfer->pipe->queue)));
3073 usbd_status
3074 uhci_root_ctrl_start(usbd_xfer_handle xfer)
3076 uhci_softc_t *sc = (uhci_softc_t *)xfer->pipe->device->bus;
3077 usb_device_request_t *req;
3078 void *buf = NULL;
3079 int port, x;
3080 int len, value, index, status, change, l, totlen = 0;
3081 usb_port_status_t ps;
3082 usbd_status err;
3084 if (sc->sc_dying)
3085 return (USBD_IOERROR);
3087 #ifdef DIAGNOSTIC
3088 if (!(xfer->rqflags & URQ_REQUEST))
3089 panic("uhci_root_ctrl_transfer: not a request");
3090 #endif
3091 req = &xfer->request;
3093 DPRINTFN(2,("uhci_root_ctrl_control type=0x%02x request=%02x\n",
3094 req->bmRequestType, req->bRequest));
3096 len = UGETW(req->wLength);
3097 value = UGETW(req->wValue);
3098 index = UGETW(req->wIndex);
3100 if (len != 0)
3101 buf = KERNADDR(&xfer->dmabuf, 0);
3103 #define C(x,y) ((x) | ((y) << 8))
3104 switch(C(req->bRequest, req->bmRequestType)) {
3105 case C(UR_CLEAR_FEATURE, UT_WRITE_DEVICE):
3106 case C(UR_CLEAR_FEATURE, UT_WRITE_INTERFACE):
3107 case C(UR_CLEAR_FEATURE, UT_WRITE_ENDPOINT):
3109 * DEVICE_REMOTE_WAKEUP and ENDPOINT_HALT are no-ops
3110 * for the integrated root hub.
3112 break;
3113 case C(UR_GET_CONFIG, UT_READ_DEVICE):
3114 if (len > 0) {
3115 *(u_int8_t *)buf = sc->sc_conf;
3116 totlen = 1;
3118 break;
3119 case C(UR_GET_DESCRIPTOR, UT_READ_DEVICE):
3120 DPRINTFN(2,("uhci_root_ctrl_control wValue=0x%04x\n", value));
3121 switch(value >> 8) {
3122 case UDESC_DEVICE:
3123 if ((value & 0xff) != 0) {
3124 err = USBD_IOERROR;
3125 goto ret;
3127 totlen = l = min(len, USB_DEVICE_DESCRIPTOR_SIZE);
3128 USETW(uhci_devd.idVendor, sc->sc_id_vendor);
3129 memcpy(buf, &uhci_devd, l);
3130 break;
3131 case UDESC_CONFIG:
3132 if ((value & 0xff) != 0) {
3133 err = USBD_IOERROR;
3134 goto ret;
3136 totlen = l = min(len, USB_CONFIG_DESCRIPTOR_SIZE);
3137 memcpy(buf, &uhci_confd, l);
3138 buf = (char *)buf + l;
3139 len -= l;
3140 l = min(len, USB_INTERFACE_DESCRIPTOR_SIZE);
3141 totlen += l;
3142 memcpy(buf, &uhci_ifcd, l);
3143 buf = (char *)buf + l;
3144 len -= l;
3145 l = min(len, USB_ENDPOINT_DESCRIPTOR_SIZE);
3146 totlen += l;
3147 memcpy(buf, &uhci_endpd, l);
3148 break;
3149 case UDESC_STRING:
3150 if (len == 0)
3151 break;
3152 *(u_int8_t *)buf = 0;
3153 totlen = 1;
3154 switch (value & 0xff) {
3155 case 1: /* Vendor */
3156 totlen = uhci_str(buf, len, sc->sc_vendor);
3157 break;
3158 case 2: /* Product */
3159 totlen = uhci_str(buf, len, "UHCI root hub");
3160 break;
3162 break;
3163 default:
3164 err = USBD_IOERROR;
3165 goto ret;
3167 break;
3168 case C(UR_GET_INTERFACE, UT_READ_INTERFACE):
3169 if (len > 0) {
3170 *(u_int8_t *)buf = 0;
3171 totlen = 1;
3173 break;
3174 case C(UR_GET_STATUS, UT_READ_DEVICE):
3175 if (len > 1) {
3176 USETW(((usb_status_t *)buf)->wStatus,UDS_SELF_POWERED);
3177 totlen = 2;
3179 break;
3180 case C(UR_GET_STATUS, UT_READ_INTERFACE):
3181 case C(UR_GET_STATUS, UT_READ_ENDPOINT):
3182 if (len > 1) {
3183 USETW(((usb_status_t *)buf)->wStatus, 0);
3184 totlen = 2;
3186 break;
3187 case C(UR_SET_ADDRESS, UT_WRITE_DEVICE):
3188 if (value >= USB_MAX_DEVICES) {
3189 err = USBD_IOERROR;
3190 goto ret;
3192 sc->sc_addr = value;
3193 break;
3194 case C(UR_SET_CONFIG, UT_WRITE_DEVICE):
3195 if (value != 0 && value != 1) {
3196 err = USBD_IOERROR;
3197 goto ret;
3199 sc->sc_conf = value;
3200 break;
3201 case C(UR_SET_DESCRIPTOR, UT_WRITE_DEVICE):
3202 break;
3203 case C(UR_SET_FEATURE, UT_WRITE_DEVICE):
3204 case C(UR_SET_FEATURE, UT_WRITE_INTERFACE):
3205 case C(UR_SET_FEATURE, UT_WRITE_ENDPOINT):
3206 err = USBD_IOERROR;
3207 goto ret;
3208 case C(UR_SET_INTERFACE, UT_WRITE_INTERFACE):
3209 break;
3210 case C(UR_SYNCH_FRAME, UT_WRITE_ENDPOINT):
3211 break;
3212 /* Hub requests */
3213 case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_DEVICE):
3214 break;
3215 case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_OTHER):
3216 DPRINTFN(3, ("uhci_root_ctrl_control: UR_CLEAR_PORT_FEATURE "
3217 "port=%d feature=%d\n",
3218 index, value));
3219 if (index == 1)
3220 port = UHCI_PORTSC1;
3221 else if (index == 2)
3222 port = UHCI_PORTSC2;
3223 else {
3224 err = USBD_IOERROR;
3225 goto ret;
3227 switch(value) {
3228 case UHF_PORT_ENABLE:
3229 x = URWMASK(UREAD2(sc, port));
3230 UWRITE2(sc, port, x & ~UHCI_PORTSC_PE);
3231 break;
3232 case UHF_PORT_SUSPEND:
3233 x = URWMASK(UREAD2(sc, port));
3234 UWRITE2(sc, port, x & ~UHCI_PORTSC_SUSP);
3235 break;
3236 case UHF_PORT_RESET:
3237 x = URWMASK(UREAD2(sc, port));
3238 UWRITE2(sc, port, x & ~UHCI_PORTSC_PR);
3239 break;
3240 case UHF_C_PORT_CONNECTION:
3241 x = URWMASK(UREAD2(sc, port));
3242 UWRITE2(sc, port, x | UHCI_PORTSC_CSC);
3243 break;
3244 case UHF_C_PORT_ENABLE:
3245 x = URWMASK(UREAD2(sc, port));
3246 UWRITE2(sc, port, x | UHCI_PORTSC_POEDC);
3247 break;
3248 case UHF_C_PORT_OVER_CURRENT:
3249 x = URWMASK(UREAD2(sc, port));
3250 UWRITE2(sc, port, x | UHCI_PORTSC_OCIC);
3251 break;
3252 case UHF_C_PORT_RESET:
3253 sc->sc_isreset = 0;
3254 err = USBD_NORMAL_COMPLETION;
3255 goto ret;
3256 case UHF_PORT_CONNECTION:
3257 case UHF_PORT_OVER_CURRENT:
3258 case UHF_PORT_POWER:
3259 case UHF_PORT_LOW_SPEED:
3260 case UHF_C_PORT_SUSPEND:
3261 default:
3262 err = USBD_IOERROR;
3263 goto ret;
3265 break;
3266 case C(UR_GET_BUS_STATE, UT_READ_CLASS_OTHER):
3267 if (index == 1)
3268 port = UHCI_PORTSC1;
3269 else if (index == 2)
3270 port = UHCI_PORTSC2;
3271 else {
3272 err = USBD_IOERROR;
3273 goto ret;
3275 if (len > 0) {
3276 *(u_int8_t *)buf =
3277 (UREAD2(sc, port) & UHCI_PORTSC_LS) >>
3278 UHCI_PORTSC_LS_SHIFT;
3279 totlen = 1;
3281 break;
3282 case C(UR_GET_DESCRIPTOR, UT_READ_CLASS_DEVICE):
3283 if ((value & 0xff) != 0) {
3284 err = USBD_IOERROR;
3285 goto ret;
3287 l = min(len, USB_HUB_DESCRIPTOR_SIZE);
3288 totlen = l;
3289 memcpy(buf, &uhci_hubd_piix, l);
3290 break;
3291 case C(UR_GET_STATUS, UT_READ_CLASS_DEVICE):
3292 if (len != 4) {
3293 err = USBD_IOERROR;
3294 goto ret;
3296 memset(buf, 0, len);
3297 totlen = len;
3298 break;
3299 case C(UR_GET_STATUS, UT_READ_CLASS_OTHER):
3300 if (index == 1)
3301 port = UHCI_PORTSC1;
3302 else if (index == 2)
3303 port = UHCI_PORTSC2;
3304 else {
3305 err = USBD_IOERROR;
3306 goto ret;
3308 if (len != 4) {
3309 err = USBD_IOERROR;
3310 goto ret;
3312 x = UREAD2(sc, port);
3313 status = change = 0;
3314 if (x & UHCI_PORTSC_CCS)
3315 status |= UPS_CURRENT_CONNECT_STATUS;
3316 if (x & UHCI_PORTSC_CSC)
3317 change |= UPS_C_CONNECT_STATUS;
3318 if (x & UHCI_PORTSC_PE)
3319 status |= UPS_PORT_ENABLED;
3320 if (x & UHCI_PORTSC_POEDC)
3321 change |= UPS_C_PORT_ENABLED;
3322 if (x & UHCI_PORTSC_OCI)
3323 status |= UPS_OVERCURRENT_INDICATOR;
3324 if (x & UHCI_PORTSC_OCIC)
3325 change |= UPS_C_OVERCURRENT_INDICATOR;
3326 if (x & UHCI_PORTSC_SUSP)
3327 status |= UPS_SUSPEND;
3328 if (x & UHCI_PORTSC_LSDA)
3329 status |= UPS_LOW_SPEED;
3330 status |= UPS_PORT_POWER;
3331 if (sc->sc_isreset)
3332 change |= UPS_C_PORT_RESET;
3333 USETW(ps.wPortStatus, status);
3334 USETW(ps.wPortChange, change);
3335 l = min(len, sizeof ps);
3336 memcpy(buf, &ps, l);
3337 totlen = l;
3338 break;
3339 case C(UR_SET_DESCRIPTOR, UT_WRITE_CLASS_DEVICE):
3340 err = USBD_IOERROR;
3341 goto ret;
3342 case C(UR_SET_FEATURE, UT_WRITE_CLASS_DEVICE):
3343 break;
3344 case C(UR_SET_FEATURE, UT_WRITE_CLASS_OTHER):
3345 if (index == 1)
3346 port = UHCI_PORTSC1;
3347 else if (index == 2)
3348 port = UHCI_PORTSC2;
3349 else {
3350 err = USBD_IOERROR;
3351 goto ret;
3353 switch(value) {
3354 case UHF_PORT_ENABLE:
3355 x = URWMASK(UREAD2(sc, port));
3356 UWRITE2(sc, port, x | UHCI_PORTSC_PE);
3357 break;
3358 case UHF_PORT_SUSPEND:
3359 x = URWMASK(UREAD2(sc, port));
3360 UWRITE2(sc, port, x | UHCI_PORTSC_SUSP);
3361 break;
3362 case UHF_PORT_RESET:
3363 err = uhci_portreset(sc, index);
3364 goto ret;
3365 case UHF_PORT_POWER:
3366 /* Pretend we turned on power */
3367 err = USBD_NORMAL_COMPLETION;
3368 goto ret;
3369 case UHF_C_PORT_CONNECTION:
3370 case UHF_C_PORT_ENABLE:
3371 case UHF_C_PORT_OVER_CURRENT:
3372 case UHF_PORT_CONNECTION:
3373 case UHF_PORT_OVER_CURRENT:
3374 case UHF_PORT_LOW_SPEED:
3375 case UHF_C_PORT_SUSPEND:
3376 case UHF_C_PORT_RESET:
3377 default:
3378 err = USBD_IOERROR;
3379 goto ret;
3381 break;
3382 default:
3383 err = USBD_IOERROR;
3384 goto ret;
3386 xfer->actlen = totlen;
3387 err = USBD_NORMAL_COMPLETION;
3388 ret:
3389 xfer->status = err;
3390 crit_enter();
3391 usb_transfer_complete(xfer);
3392 crit_exit();
3393 return (USBD_IN_PROGRESS);
3396 /* Abort a root control request. */
3397 void
3398 uhci_root_ctrl_abort(usbd_xfer_handle xfer)
3400 /* Nothing to do, all transfers are synchronous. */
3403 /* Close the root pipe. */
3404 void
3405 uhci_root_ctrl_close(usbd_pipe_handle pipe)
3407 DPRINTF(("uhci_root_ctrl_close\n"));
3410 /* Abort a root interrupt request. */
3411 void
3412 uhci_root_intr_abort(usbd_xfer_handle xfer)
3414 uhci_softc_t *sc = (uhci_softc_t *)xfer->pipe->device->bus;
3416 callout_stop(&sc->sc_poll_handle);
3417 sc->sc_intr_xfer = NULL;
3419 if (xfer->pipe->intrxfer == xfer) {
3420 DPRINTF(("uhci_root_intr_abort: remove\n"));
3421 xfer->pipe->intrxfer = 0;
3423 xfer->status = USBD_CANCELLED;
3424 #ifdef DIAGNOSTIC
3425 UXFER(xfer)->iinfo.isdone = 1;
3426 #endif
3427 usb_transfer_complete(xfer);
3430 usbd_status
3431 uhci_root_intr_transfer(usbd_xfer_handle xfer)
3433 usbd_status err;
3435 /* Insert last in queue. */
3436 err = usb_insert_transfer(xfer);
3437 if (err)
3438 return (err);
3441 * Pipe isn't running (otherwise err would be USBD_INPROG),
3442 * so start it first.
3444 return (uhci_root_intr_start(STAILQ_FIRST(&xfer->pipe->queue)));
3447 /* Start a transfer on the root interrupt pipe */
3448 usbd_status
3449 uhci_root_intr_start(usbd_xfer_handle xfer)
3451 usbd_pipe_handle pipe = xfer->pipe;
3452 uhci_softc_t *sc = (uhci_softc_t *)pipe->device->bus;
3454 DPRINTFN(3, ("uhci_root_intr_start: xfer=%p len=%d flags=%d\n",
3455 xfer, xfer->length, xfer->flags));
3457 if (sc->sc_dying)
3458 return (USBD_IOERROR);
3460 sc->sc_ival = MS_TO_TICKS(xfer->pipe->endpoint->edesc->bInterval);
3461 callout_reset(&sc->sc_poll_handle, sc->sc_ival, uhci_poll_hub, xfer);
3462 sc->sc_intr_xfer = xfer;
3463 return (USBD_IN_PROGRESS);
3466 /* Close the root interrupt pipe. */
3467 void
3468 uhci_root_intr_close(usbd_pipe_handle pipe)
3470 uhci_softc_t *sc = (uhci_softc_t *)pipe->device->bus;
3472 callout_stop(&sc->sc_poll_handle);
3473 sc->sc_intr_xfer = NULL;
3474 DPRINTF(("uhci_root_intr_close\n"));