1 /* $NetBSD: ehci.c,v 1.91 2005/02/27 00:27:51 perry Exp $ */
2 /* $FreeBSD: src/sys/dev/usb/ehci.c,v 1.36.2.3 2006/09/24 13:39:04 iedowse Exp $ */
3 /* $DragonFly: src/sys/bus/usb/ehci.c,v 1.36 2008/08/14 20:55:53 hasso Exp $ */
6 * Copyright (c) 2004 The NetBSD Foundation, Inc.
9 * This code is derived from software contributed to The NetBSD Foundation
10 * by Lennart Augustsson (lennart@augustsson.net) and by Charles M. Hannum.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by the NetBSD
23 * Foundation, Inc. and its contributors.
24 * 4. Neither the name of The NetBSD Foundation nor the names of its
25 * contributors may be used to endorse or promote products derived
26 * from this software without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
29 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
30 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
31 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
32 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38 * POSSIBILITY OF SUCH DAMAGE.
42 * USB Enhanced Host Controller Driver, a.k.a. USB 2.0 controller.
44 * The EHCI 1.0 spec can be found at
45 * http://developer.intel.com/technology/usb/download/ehci-r10.pdf
46 * and the USB 2.0 spec at
47 * http://www.usb.org/developers/docs/usb_20.zip
53 * 1) The EHCI driver lacks support for isochronous transfers, so
54 * devices using them don't work.
56 * 2) Interrupt transfer scheduling does not manage the time available
57 * in each frame, so it is possible for the transfers to overrun
58 * the end of the frame.
60 * 3) Command failures are not recovered correctly.
63 #include <sys/param.h>
64 #include <sys/systm.h>
65 #include <sys/malloc.h>
66 #include <sys/kernel.h>
67 #include <sys/endian.h>
68 #include <sys/module.h>
72 #include <sys/queue.h>
73 #include <sys/sysctl.h>
74 #include <sys/thread2.h>
76 #include <machine/cpu.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/ehcireg.h>
86 #include <bus/usb/ehcivar.h>
89 #define EHCI_DEBUG USB_DEBUG
90 #define DPRINTF(x) do { if (ehcidebug) kprintf x; } while (0)
91 #define DPRINTFN(n,x) do { if (ehcidebug>(n)) kprintf x; } while (0)
93 SYSCTL_NODE(_hw_usb
, OID_AUTO
, ehci
, CTLFLAG_RW
, 0, "USB ehci");
94 SYSCTL_INT(_hw_usb_ehci
, OID_AUTO
, debug
, CTLFLAG_RW
,
95 &ehcidebug
, 0, "ehci debug level");
96 #define bitmask_snprintf(q,f,b,l) ksnprintf((b), (l), "%b", (q), (f))
103 struct usbd_pipe pipe
;
107 ehci_soft_qtd_t
*qtd
;
108 /* ehci_soft_itd_t *itd; */
115 /*ehci_soft_qtd_t *setup, *data, *stat;*/
130 static usbd_status
ehci_open(usbd_pipe_handle
);
131 static void ehci_poll(struct usbd_bus
*);
132 static void ehci_softintr(void *);
133 static int ehci_intr1(ehci_softc_t
*);
134 static void ehci_waitintr(ehci_softc_t
*, usbd_xfer_handle
);
135 static void ehci_check_intr(ehci_softc_t
*, struct ehci_xfer
*);
136 static void ehci_idone(struct ehci_xfer
*);
137 static void ehci_timeout(void *);
138 static void ehci_timeout_task(void *);
139 static void ehci_intrlist_timeout(void *);
141 static usbd_status
ehci_allocm(struct usbd_bus
*, usb_dma_t
*, u_int32_t
);
142 static void ehci_freem(struct usbd_bus
*, usb_dma_t
*);
144 static usbd_xfer_handle
ehci_allocx(struct usbd_bus
*);
145 static void ehci_freex(struct usbd_bus
*, usbd_xfer_handle
);
147 static usbd_status
ehci_root_ctrl_transfer(usbd_xfer_handle
);
148 static usbd_status
ehci_root_ctrl_start(usbd_xfer_handle
);
149 static void ehci_root_ctrl_abort(usbd_xfer_handle
);
150 static void ehci_root_ctrl_close(usbd_pipe_handle
);
151 static void ehci_root_ctrl_done(usbd_xfer_handle
);
153 static usbd_status
ehci_root_intr_transfer(usbd_xfer_handle
);
154 static usbd_status
ehci_root_intr_start(usbd_xfer_handle
);
155 static void ehci_root_intr_abort(usbd_xfer_handle
);
156 static void ehci_root_intr_close(usbd_pipe_handle
);
157 static void ehci_root_intr_done(usbd_xfer_handle
);
159 static usbd_status
ehci_device_ctrl_transfer(usbd_xfer_handle
);
160 static usbd_status
ehci_device_ctrl_start(usbd_xfer_handle
);
161 static void ehci_device_ctrl_abort(usbd_xfer_handle
);
162 static void ehci_device_ctrl_close(usbd_pipe_handle
);
163 static void ehci_device_ctrl_done(usbd_xfer_handle
);
165 static usbd_status
ehci_device_bulk_transfer(usbd_xfer_handle
);
166 static usbd_status
ehci_device_bulk_start(usbd_xfer_handle
);
167 static void ehci_device_bulk_abort(usbd_xfer_handle
);
168 static void ehci_device_bulk_close(usbd_pipe_handle
);
169 static void ehci_device_bulk_done(usbd_xfer_handle
);
171 static usbd_status
ehci_device_intr_transfer(usbd_xfer_handle
);
172 static usbd_status
ehci_device_intr_start(usbd_xfer_handle
);
173 static void ehci_device_intr_abort(usbd_xfer_handle
);
174 static void ehci_device_intr_close(usbd_pipe_handle
);
175 static void ehci_device_intr_done(usbd_xfer_handle
);
177 static usbd_status
ehci_device_isoc_transfer(usbd_xfer_handle
);
178 static usbd_status
ehci_device_isoc_start(usbd_xfer_handle
);
179 static void ehci_device_isoc_abort(usbd_xfer_handle
);
180 static void ehci_device_isoc_close(usbd_pipe_handle
);
181 static void ehci_device_isoc_done(usbd_xfer_handle
);
183 static void ehci_device_clear_toggle(usbd_pipe_handle pipe
);
184 static void ehci_noop(usbd_pipe_handle pipe
);
186 static int ehci_str(usb_string_descriptor_t
*, int, char *);
187 static void ehci_pcd(ehci_softc_t
*, usbd_xfer_handle
);
188 static void ehci_disown(ehci_softc_t
*, int, int);
190 static ehci_soft_qh_t
*ehci_alloc_sqh(ehci_softc_t
*);
191 static void ehci_free_sqh(ehci_softc_t
*, ehci_soft_qh_t
*);
193 static ehci_soft_qtd_t
*ehci_alloc_sqtd(ehci_softc_t
*);
194 static void ehci_free_sqtd(ehci_softc_t
*, ehci_soft_qtd_t
*);
195 static usbd_status
ehci_alloc_sqtd_chain(struct ehci_pipe
*,
196 ehci_softc_t
*, int, int, usbd_xfer_handle
,
197 ehci_soft_qtd_t
**, ehci_soft_qtd_t
**);
198 static void ehci_free_sqtd_chain(ehci_softc_t
*, ehci_soft_qtd_t
*,
201 static usbd_status
ehci_device_request(usbd_xfer_handle xfer
);
203 static usbd_status
ehci_device_setintr(ehci_softc_t
*, ehci_soft_qh_t
*,
206 static void ehci_add_qh(ehci_soft_qh_t
*, ehci_soft_qh_t
*);
207 static void ehci_rem_qh(ehci_softc_t
*, ehci_soft_qh_t
*,
209 static void ehci_set_qh_qtd(ehci_soft_qh_t
*, ehci_soft_qtd_t
*);
210 static void ehci_sync_hc(ehci_softc_t
*);
212 static void ehci_close_pipe(usbd_pipe_handle
, ehci_soft_qh_t
*);
213 static void ehci_abort_xfer(usbd_xfer_handle
, usbd_status
);
216 static void ehci_dump_regs(ehci_softc_t
*);
217 void ehci_dump(void);
218 static ehci_softc_t
*theehci
;
219 static void ehci_dump_link(ehci_link_t
, int);
220 static void ehci_dump_sqtds(ehci_soft_qtd_t
*);
221 static void ehci_dump_sqtd(ehci_soft_qtd_t
*);
222 static void ehci_dump_qtd(ehci_qtd_t
*);
223 static void ehci_dump_sqh(ehci_soft_qh_t
*);
225 static void ehci_dump_exfer(struct ehci_xfer
*);
229 #define EHCI_NULL htole32(EHCI_LINK_TERMINATE)
231 #define EHCI_INTR_ENDPT 1
233 #define ehci_add_intr_list(sc, ex) \
234 LIST_INSERT_HEAD(&(sc)->sc_intrhead, (ex), inext);
235 #define ehci_del_intr_list(ex) \
237 LIST_REMOVE((ex), inext); \
238 (ex)->inext.le_prev = NULL; \
240 #define ehci_active_intr_list(ex) ((ex)->inext.le_prev != NULL)
242 static struct usbd_bus_methods ehci_bus_methods
= {
252 static struct usbd_pipe_methods ehci_root_ctrl_methods
= {
253 ehci_root_ctrl_transfer
,
254 ehci_root_ctrl_start
,
255 ehci_root_ctrl_abort
,
256 ehci_root_ctrl_close
,
261 static struct usbd_pipe_methods ehci_root_intr_methods
= {
262 ehci_root_intr_transfer
,
263 ehci_root_intr_start
,
264 ehci_root_intr_abort
,
265 ehci_root_intr_close
,
270 static struct usbd_pipe_methods ehci_device_ctrl_methods
= {
271 ehci_device_ctrl_transfer
,
272 ehci_device_ctrl_start
,
273 ehci_device_ctrl_abort
,
274 ehci_device_ctrl_close
,
276 ehci_device_ctrl_done
,
279 static struct usbd_pipe_methods ehci_device_intr_methods
= {
280 ehci_device_intr_transfer
,
281 ehci_device_intr_start
,
282 ehci_device_intr_abort
,
283 ehci_device_intr_close
,
284 ehci_device_clear_toggle
,
285 ehci_device_intr_done
,
288 static struct usbd_pipe_methods ehci_device_bulk_methods
= {
289 ehci_device_bulk_transfer
,
290 ehci_device_bulk_start
,
291 ehci_device_bulk_abort
,
292 ehci_device_bulk_close
,
293 ehci_device_clear_toggle
,
294 ehci_device_bulk_done
,
297 static struct usbd_pipe_methods ehci_device_isoc_methods
= {
298 ehci_device_isoc_transfer
,
299 ehci_device_isoc_start
,
300 ehci_device_isoc_abort
,
301 ehci_device_isoc_close
,
303 ehci_device_isoc_done
,
307 ehci_init(ehci_softc_t
*sc
)
309 u_int32_t vers
, sparams
, cparams
, hcr
;
316 DPRINTF(("ehci_init: start\n"));
321 sc
->sc_offs
= EREAD1(sc
, EHCI_CAPLENGTH
);
323 vers
= EREAD2(sc
, EHCI_HCIVERSION
);
324 device_printf(sc
->sc_bus
.bdev
,
325 "EHCI version %x.%x\n", vers
>> 8, vers
& 0xff);
326 /* Disable all interrupts */
327 EOWRITE4(sc
, EHCI_USBINTR
, 0);
329 sparams
= EREAD4(sc
, EHCI_HCSPARAMS
);
330 DPRINTF(("ehci_init: sparams=0x%x\n", sparams
));
331 sc
->sc_npcomp
= EHCI_HCS_N_PCC(sparams
);
332 ncomp
= EHCI_HCS_N_CC(sparams
);
333 if (ncomp
!= sc
->sc_ncomp
) {
334 device_printf(sc
->sc_bus
.bdev
,
335 "wrong number of companions (%d != %d)\n",
336 ncomp
, sc
->sc_ncomp
);
337 if (ncomp
< sc
->sc_ncomp
)
338 sc
->sc_ncomp
= ncomp
;
340 if (sc
->sc_ncomp
> 0) {
341 device_printf(sc
->sc_bus
.bdev
,
342 "companion controller%s, %d port%s each:",
343 sc
->sc_ncomp
!=1 ? "s" : "",
344 EHCI_HCS_N_PCC(sparams
),
345 EHCI_HCS_N_PCC(sparams
)!=1 ? "s" : "");
346 for (i
= 0; i
< sc
->sc_ncomp
; i
++)
347 kprintf(" %s", device_get_nameunit(sc
->sc_comps
[i
]->bdev
));
350 sc
->sc_noport
= EHCI_HCS_N_PORTS(sparams
);
351 cparams
= EREAD4(sc
, EHCI_HCCPARAMS
);
352 DPRINTF(("ehci_init: cparams=0x%x\n", cparams
));
354 if (EHCI_HCC_64BIT(cparams
)) {
355 /* MUST clear segment register if 64 bit capable. */
356 EWRITE4(sc
, EHCI_CTRLDSSEGMENT
, 0);
359 sc
->sc_bus
.usbrev
= USBREV_2_0
;
361 /* Reset the controller */
362 DPRINTF(("%s: resetting\n", device_get_nameunit(sc
->sc_bus
.bdev
)));
363 EOWRITE4(sc
, EHCI_USBCMD
, 0); /* Halt controller */
364 usb_delay_ms(&sc
->sc_bus
, 1);
365 EOWRITE4(sc
, EHCI_USBCMD
, EHCI_CMD_HCRESET
);
366 for (i
= 0; i
< 100; i
++) {
367 usb_delay_ms(&sc
->sc_bus
, 1);
368 hcr
= EOREAD4(sc
, EHCI_USBCMD
) & EHCI_CMD_HCRESET
;
373 device_printf(sc
->sc_bus
.bdev
, "reset timeout\n");
374 return (USBD_IOERROR
);
377 /* frame list size at default, read back what we got and use that */
378 switch (EHCI_CMD_FLS(EOREAD4(sc
, EHCI_USBCMD
))) {
379 case 0: sc
->sc_flsize
= 1024; break;
380 case 1: sc
->sc_flsize
= 512; break;
381 case 2: sc
->sc_flsize
= 256; break;
382 case 3: return (USBD_IOERROR
);
384 err
= usb_allocmem(&sc
->sc_bus
, sc
->sc_flsize
* sizeof(ehci_link_t
),
385 EHCI_FLALIGN_ALIGN
, &sc
->sc_fldma
);
388 DPRINTF(("%s: flsize=%d\n", device_get_nameunit(sc
->sc_bus
.bdev
),sc
->sc_flsize
));
389 sc
->sc_flist
= KERNADDR(&sc
->sc_fldma
, 0);
390 EOWRITE4(sc
, EHCI_PERIODICLISTBASE
, DMAADDR(&sc
->sc_fldma
, 0));
392 /* Set up the bus struct. */
393 sc
->sc_bus
.methods
= &ehci_bus_methods
;
394 sc
->sc_bus
.pipe_size
= sizeof(struct ehci_pipe
);
396 sc
->sc_eintrs
= EHCI_NORMAL_INTRS
;
399 * Allocate the interrupt dummy QHs. These are arranged to give
400 * poll intervals that are powers of 2 times 1ms.
402 for (i
= 0; i
< EHCI_INTRQHS
; i
++) {
403 sqh
= ehci_alloc_sqh(sc
);
408 sc
->sc_islots
[i
].sqh
= sqh
;
411 for (i
= 0; i
< EHCI_INTRQHS
; i
++) {
412 if (i
== EHCI_IQHIDX(lev
+ 1, 0))
414 sqh
= sc
->sc_islots
[i
].sqh
;
416 /* The last (1ms) QH terminates. */
417 sqh
->qh
.qh_link
= EHCI_NULL
;
420 /* Otherwise the next QH has half the poll interval */
422 sc
->sc_islots
[EHCI_IQHIDX(lev
- 1, i
+ 1)].sqh
;
423 sqh
->qh
.qh_link
= htole32(sqh
->next
->physaddr
|
426 sqh
->qh
.qh_endp
= htole32(EHCI_QH_SET_EPS(EHCI_QH_SPEED_HIGH
));
427 sqh
->qh
.qh_endphub
= htole32(EHCI_QH_SET_MULT(1));
428 sqh
->qh
.qh_curqtd
= EHCI_NULL
;
429 sqh
->qh
.qh_qtd
.qtd_next
= EHCI_NULL
;
430 sqh
->qh
.qh_qtd
.qtd_altnext
= EHCI_NULL
;
431 sqh
->qh
.qh_qtd
.qtd_status
= htole32(EHCI_QTD_HALTED
);
434 /* Point the frame list at the last level (128ms). */
435 for (i
= 0; i
< sc
->sc_flsize
; i
++) {
436 sc
->sc_flist
[i
] = htole32(EHCI_LINK_QH
|
437 sc
->sc_islots
[EHCI_IQHIDX(EHCI_IPOLLRATES
- 1,
441 /* Allocate dummy QH that starts the async list. */
442 sqh
= ehci_alloc_sqh(sc
);
449 htole32(EHCI_QH_SET_EPS(EHCI_QH_SPEED_HIGH
) | EHCI_QH_HRECL
);
451 htole32(sqh
->physaddr
| EHCI_LINK_QH
);
452 sqh
->qh
.qh_curqtd
= EHCI_NULL
;
453 sqh
->prev
= sqh
; /*It's a circular list.. */
455 /* Fill the overlay qTD */
456 sqh
->qh
.qh_qtd
.qtd_next
= EHCI_NULL
;
457 sqh
->qh
.qh_qtd
.qtd_altnext
= EHCI_NULL
;
458 sqh
->qh
.qh_qtd
.qtd_status
= htole32(EHCI_QTD_HALTED
);
466 /* Point to async list */
467 sc
->sc_async_head
= sqh
;
468 EOWRITE4(sc
, EHCI_ASYNCLISTADDR
, sqh
->physaddr
| EHCI_LINK_QH
);
470 callout_init(&sc
->sc_tmo_intrlist
);
472 lockinit(&sc
->sc_doorbell_lock
, "ehcidb", 0, 0);
474 /* Turn on controller */
475 EOWRITE4(sc
, EHCI_USBCMD
,
476 EHCI_CMD_ITC_2
| /* 2 microframes interrupt delay */
477 (EOREAD4(sc
, EHCI_USBCMD
) & EHCI_CMD_FLS_M
) |
482 /* Take over port ownership */
483 EOWRITE4(sc
, EHCI_CONFIGFLAG
, EHCI_CONF_CF
);
485 for (i
= 0; i
< 100; i
++) {
486 usb_delay_ms(&sc
->sc_bus
, 1);
487 hcr
= EOREAD4(sc
, EHCI_USBSTS
) & EHCI_STS_HCH
;
492 device_printf(sc
->sc_bus
.bdev
, "run timeout\n");
493 return (USBD_IOERROR
);
497 sc
->sc_flags
|= EHCI_SCFLG_DONEINIT
;
498 EOWRITE4(sc
, EHCI_USBINTR
, sc
->sc_eintrs
);
502 return (USBD_NORMAL_COMPLETION
);
506 ehci_free_sqh(sc
, sc
->sc_async_head
);
507 sc
->sc_async_head
= NULL
;
510 usb_freemem(&sc
->sc_bus
, &sc
->sc_fldma
);
517 ehci_softc_t
*sc
= v
;
519 if (sc
->sc_dying
|| (sc
->sc_flags
& EHCI_SCFLG_DONEINIT
) == 0)
522 /* If we get an interrupt while polling, then just ignore it. */
523 if (sc
->sc_bus
.use_polling
) {
524 u_int32_t intrs
= EHCI_STS_INTRS(EOREAD4(sc
, EHCI_USBSTS
));
527 EOWRITE4(sc
, EHCI_USBSTS
, intrs
); /* Acknowledge */
528 sc
->sc_dintrs
|= intrs
;
530 DPRINTFN(16, ("ehci_intr: ignored interrupt while polling\n"));
535 return (ehci_intr1(sc
));
539 ehci_intr1(ehci_softc_t
*sc
)
541 u_int32_t intrs
, eintrs
;
543 DPRINTFN(20,("ehci_intr1: enter\n"));
545 intrs
= EHCI_STS_INTRS(EOREAD4(sc
, EHCI_USBSTS
)) | sc
->sc_dintrs
;
550 eintrs
= intrs
& sc
->sc_eintrs
;
551 DPRINTFN(7, ("ehci_intr1: sc=%p intrs=0x%x(0x%x) eintrs=0x%x\n",
552 sc
, (u_int
)intrs
, EOREAD4(sc
, EHCI_USBSTS
),
557 EOWRITE4(sc
, EHCI_USBSTS
, intrs
); /* Acknowledge */
558 sc
->sc_bus
.intr_context
++;
559 sc
->sc_bus
.no_intrs
++;
560 if (eintrs
& EHCI_STS_IAA
) {
561 DPRINTF(("ehci_intr1: door bell\n"));
562 wakeup(&sc
->sc_async_head
);
563 eintrs
&= ~EHCI_STS_IAA
;
565 if (eintrs
& (EHCI_STS_INT
| EHCI_STS_ERRINT
)) {
566 DPRINTFN(5,("ehci_intr1: %s %s\n",
567 eintrs
& EHCI_STS_INT
? "INT" : "",
568 eintrs
& EHCI_STS_ERRINT
? "ERRINT" : ""));
569 usb_schedsoftintr(&sc
->sc_bus
);
570 eintrs
&= ~(EHCI_STS_INT
| EHCI_STS_ERRINT
);
572 if (eintrs
& EHCI_STS_HSE
) {
573 device_printf(sc
->sc_bus
.bdev
,
574 "unrecoverable error, controller halted\n");
577 if (eintrs
& EHCI_STS_PCD
) {
578 ehci_pcd(sc
, sc
->sc_intrxfer
);
579 eintrs
&= ~EHCI_STS_PCD
;
582 sc
->sc_bus
.intr_context
--;
585 /* Block unprocessed interrupts. */
586 sc
->sc_eintrs
&= ~eintrs
;
587 EOWRITE4(sc
, EHCI_USBINTR
, sc
->sc_eintrs
);
588 device_printf(sc
->sc_bus
.bdev
,
589 "blocking intrs 0x%x\n", eintrs
);
596 ehci_pcd(ehci_softc_t
*sc
, usbd_xfer_handle xfer
)
602 /* Just ignore the change. */
606 p
= KERNADDR(&xfer
->dmabuf
, 0);
607 m
= min(sc
->sc_noport
, xfer
->length
* 8 - 1);
608 memset(p
, 0, xfer
->length
);
609 for (i
= 1; i
<= m
; i
++) {
610 /* Pick out CHANGE bits from the status reg. */
611 if (EOREAD4(sc
, EHCI_PORTSC(i
)) & EHCI_PS_CLEAR
)
612 p
[i
/8] |= 1 << (i
%8);
614 DPRINTF(("ehci_pcd: change=0x%02x\n", *p
));
615 xfer
->actlen
= xfer
->length
;
616 xfer
->status
= USBD_NORMAL_COMPLETION
;
618 usb_transfer_complete(xfer
);
622 ehci_softintr(void *v
)
624 ehci_softc_t
*sc
= v
;
625 struct ehci_xfer
*ex
, *nextex
;
627 DPRINTFN(10,("%s: ehci_softintr (%d)\n", device_get_nameunit(sc
->sc_bus
.bdev
),
628 sc
->sc_bus
.intr_context
));
630 sc
->sc_bus
.intr_context
++;
633 * The only explanation I can think of for why EHCI is as brain dead
634 * as UHCI interrupt-wise is that Intel was involved in both.
635 * An interrupt just tells us that something is done, we have no
636 * clue what, so we need to scan through all active transfers. :-(
638 for (ex
= LIST_FIRST(&sc
->sc_intrhead
); ex
; ex
= nextex
) {
639 nextex
= LIST_NEXT(ex
, inext
);
640 ehci_check_intr(sc
, ex
);
643 /* Schedule a callout to catch any dropped transactions. */
644 if ((sc
->sc_flags
& EHCI_SCFLG_LOSTINTRBUG
) &&
645 !LIST_EMPTY(&sc
->sc_intrhead
))
646 callout_reset(&sc
->sc_tmo_intrlist
, hz
/ 5, ehci_intrlist_timeout
,
649 #ifdef USB_USE_SOFTINTR
650 if (sc
->sc_softwake
) {
652 wakeup(&sc
->sc_softwake
);
654 #endif /* USB_USE_SOFTINTR */
656 sc
->sc_bus
.intr_context
--;
659 /* Check for an interrupt. */
661 ehci_check_intr(ehci_softc_t
*sc
, struct ehci_xfer
*ex
)
663 ehci_soft_qtd_t
*sqtd
, *lsqtd
;
666 DPRINTFN(/*15*/2, ("ehci_check_intr: ex=%p\n", ex
));
668 if (ex
->sqtdstart
== NULL
) {
669 kprintf("ehci_check_intr: sqtdstart=NULL\n");
675 kprintf("ehci_check_intr: lsqtd==0\n");
680 * If the last TD is still active we need to check whether there
681 * is a an error somewhere in the middle, or whether there was a
682 * short packet (SPD and not ACTIVE).
684 if (le32toh(lsqtd
->qtd
.qtd_status
) & EHCI_QTD_ACTIVE
) {
685 DPRINTFN(12, ("ehci_check_intr: active ex=%p\n", ex
));
686 for (sqtd
= ex
->sqtdstart
; sqtd
!= lsqtd
; sqtd
=sqtd
->nextqtd
) {
687 status
= le32toh(sqtd
->qtd
.qtd_status
);
688 /* If there's an active QTD the xfer isn't done. */
689 if (status
& EHCI_QTD_ACTIVE
)
691 /* Any kind of error makes the xfer done. */
692 if (status
& EHCI_QTD_HALTED
)
694 /* We want short packets, and it is short: it's done */
695 if (EHCI_QTD_GET_BYTES(status
) != 0)
698 DPRINTFN(12, ("ehci_check_intr: ex=%p std=%p still active\n",
703 DPRINTFN(12, ("ehci_check_intr: ex=%p done\n", ex
));
704 callout_stop(&ex
->xfer
.timeout_handle
);
705 usb_rem_task(ex
->xfer
.pipe
->device
, &ex
->abort_task
);
710 ehci_idone(struct ehci_xfer
*ex
)
712 usbd_xfer_handle xfer
= &ex
->xfer
;
714 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)xfer
->pipe
;
716 ehci_soft_qtd_t
*sqtd
, *lsqtd
;
717 u_int32_t status
= 0, nstatus
= 0;
720 DPRINTFN(/*12*/2, ("ehci_idone: ex=%p\n", ex
));
727 kprintf("ehci_idone: ex is done!\n ");
730 kprintf("ehci_idone: ex=%p is done!\n", ex
);
739 if (xfer
->status
== USBD_CANCELLED
||
740 xfer
->status
== USBD_TIMEOUT
) {
741 DPRINTF(("ehci_idone: aborted xfer=%p\n", xfer
));
746 DPRINTFN(/*10*/2, ("ehci_idone: xfer=%p, pipe=%p ready\n", xfer
, epipe
));
748 ehci_dump_sqtds(ex
->sqtdstart
);
751 /* The transfer is done, compute actual length and status. */
754 for (sqtd
= ex
->sqtdstart
; sqtd
!= lsqtd
->nextqtd
; sqtd
=sqtd
->nextqtd
) {
755 nstatus
= le32toh(sqtd
->qtd
.qtd_status
);
756 if (nstatus
& EHCI_QTD_ACTIVE
)
760 /* halt is ok if descriptor is last, and complete */
761 if (sqtd
->qtd
.qtd_next
== EHCI_NULL
&&
762 EHCI_QTD_GET_BYTES(status
) == 0)
763 status
&= ~EHCI_QTD_HALTED
;
764 if (EHCI_QTD_GET_PID(status
) != EHCI_QTD_PID_SETUP
)
765 actlen
+= sqtd
->len
- EHCI_QTD_GET_BYTES(status
);
768 cerr
= EHCI_QTD_GET_CERR(status
);
769 DPRINTFN(/*10*/2, ("ehci_idone: len=%d, actlen=%d, cerr=%d, "
770 "status=0x%x\n", xfer
->length
, actlen
, cerr
, status
));
771 xfer
->actlen
= actlen
;
772 if ((status
& EHCI_QTD_HALTED
) != 0) {
776 bitmask_snprintf((u_int32_t
)status
,
777 "\20\7HALTED\6BUFERR\5BABBLE\4XACTERR"
778 "\3MISSED\2SPLIT\1PING", sbuf
, sizeof(sbuf
));
781 ("ehci_idone: error, addr=%d, endpt=0x%02x, "
783 xfer
->pipe
->device
->address
,
784 xfer
->pipe
->endpoint
->edesc
->bEndpointAddress
,
787 ehci_dump_sqh(epipe
->sqh
);
788 ehci_dump_sqtds(ex
->sqtdstart
);
791 if ((status
& EHCI_QTD_BABBLE
) == 0 && cerr
> 0)
792 xfer
->status
= USBD_STALLED
;
794 xfer
->status
= USBD_IOERROR
; /* more info XXX */
796 xfer
->status
= USBD_NORMAL_COMPLETION
;
799 usb_transfer_complete(xfer
);
800 DPRINTFN(/*12*/2, ("ehci_idone: ex=%p done\n", ex
));
804 * Wait here until controller claims to have an interrupt.
805 * Then call ehci_intr and return. Use timeout to avoid waiting
809 ehci_waitintr(ehci_softc_t
*sc
, usbd_xfer_handle xfer
)
811 int timo
= xfer
->timeout
;
814 xfer
->status
= USBD_IN_PROGRESS
;
815 for (usecs
= timo
* 1000000 / hz
; usecs
> 0; usecs
-= 1000) {
816 usb_delay_ms(&sc
->sc_bus
, 1);
820 if (xfer
->status
!= USBD_IN_PROGRESS
)
825 DPRINTF(("ehci_waitintr: timeout\n"));
826 xfer
->status
= USBD_TIMEOUT
;
827 usb_transfer_complete(xfer
);
828 /* XXX should free TD */
832 ehci_poll(struct usbd_bus
*bus
)
834 ehci_softc_t
*sc
= (ehci_softc_t
*)bus
;
838 new = EHCI_STS_INTRS(EOREAD4(sc
, EHCI_USBSTS
));
840 DPRINTFN(10,("ehci_poll: intrs=0x%04x\n", new));
851 ehci_detach(struct ehci_softc
*sc
, int flags
)
857 callout_stop(&sc
->sc_tmo_intrlist
);
858 EOWRITE4(sc
, EHCI_USBINTR
, 0);
859 EOWRITE4(sc
, EHCI_USBCMD
, 0);
860 EOWRITE4(sc
, EHCI_USBCMD
, EHCI_CMD_HCRESET
);
863 usb_delay_ms(&sc
->sc_bus
, 300); /* XXX let stray task complete */
865 usb_freemem(&sc
->sc_bus
, &sc
->sc_fldma
);
866 /* XXX free other data structures XXX */
872 * Handle suspend/resume.
874 * We need to switch to polling mode here, because this routine is
875 * called from an interrupt context. This is all right since we
876 * are almost suspended anyway.
879 ehci_power(int why
, void *v
)
881 ehci_softc_t
*sc
= v
;
886 DPRINTF(("ehci_power: sc=%p, why=%d\n", sc
, why
));
895 sc
->sc_bus
.use_polling
++;
897 for (i
= 1; i
<= sc
->sc_noport
; i
++) {
898 cmd
= EOREAD4(sc
, EHCI_PORTSC(i
));
899 if ((cmd
& EHCI_PS_PO
) == 0 &&
900 (cmd
& EHCI_PS_PE
) == EHCI_PS_PE
)
901 EOWRITE4(sc
, EHCI_PORTSC(i
),
905 sc
->sc_cmd
= EOREAD4(sc
, EHCI_USBCMD
);
907 cmd
= sc
->sc_cmd
& ~(EHCI_CMD_ASE
| EHCI_CMD_PSE
);
908 EOWRITE4(sc
, EHCI_USBCMD
, cmd
);
910 for (i
= 0; i
< 100; i
++) {
911 hcr
= EOREAD4(sc
, EHCI_USBSTS
) &
912 (EHCI_STS_ASS
| EHCI_STS_PSS
);
916 usb_delay_ms(&sc
->sc_bus
, 1);
919 device_printf(sc
->sc_bus
.bdev
, "reset timeout\n");
923 EOWRITE4(sc
, EHCI_USBCMD
, cmd
);
925 for (i
= 0; i
< 100; i
++) {
926 hcr
= EOREAD4(sc
, EHCI_USBSTS
) & EHCI_STS_HCH
;
927 if (hcr
== EHCI_STS_HCH
)
930 usb_delay_ms(&sc
->sc_bus
, 1);
932 if (hcr
!= EHCI_STS_HCH
) {
933 device_printf(sc
->sc_bus
.bdev
, "config timeout\n");
936 sc
->sc_bus
.use_polling
--;
940 sc
->sc_bus
.use_polling
++;
942 /* restore things in case the bios sucks */
943 EOWRITE4(sc
, EHCI_CTRLDSSEGMENT
, 0);
944 EOWRITE4(sc
, EHCI_PERIODICLISTBASE
, DMAADDR(&sc
->sc_fldma
, 0));
945 EOWRITE4(sc
, EHCI_ASYNCLISTADDR
,
946 sc
->sc_async_head
->physaddr
| EHCI_LINK_QH
);
947 EOWRITE4(sc
, EHCI_USBINTR
, sc
->sc_eintrs
);
950 for (i
= 1; i
<= sc
->sc_noport
; i
++) {
951 cmd
= EOREAD4(sc
, EHCI_PORTSC(i
));
952 if ((cmd
& EHCI_PS_PO
) == 0 &&
953 (cmd
& EHCI_PS_SUSP
) == EHCI_PS_SUSP
) {
954 EOWRITE4(sc
, EHCI_PORTSC(i
),
961 usb_delay_ms(&sc
->sc_bus
, USB_RESUME_WAIT
);
963 for (i
= 1; i
<= sc
->sc_noport
; i
++) {
964 cmd
= EOREAD4(sc
, EHCI_PORTSC(i
));
965 if ((cmd
& EHCI_PS_PO
) == 0 &&
966 (cmd
& EHCI_PS_SUSP
) == EHCI_PS_SUSP
)
967 EOWRITE4(sc
, EHCI_PORTSC(i
),
972 EOWRITE4(sc
, EHCI_USBCMD
, sc
->sc_cmd
);
974 for (i
= 0; i
< 100; i
++) {
975 hcr
= EOREAD4(sc
, EHCI_USBSTS
) & EHCI_STS_HCH
;
976 if (hcr
!= EHCI_STS_HCH
)
979 usb_delay_ms(&sc
->sc_bus
, 1);
981 if (hcr
== EHCI_STS_HCH
) {
982 device_printf(sc
->sc_bus
.bdev
, "config timeout\n");
985 usb_delay_ms(&sc
->sc_bus
, USB_RESUME_WAIT
);
987 sc
->sc_bus
.use_polling
--;
993 DPRINTF(("ehci_power: sc=%p\n", sc
));
1000 * Shut down the controller when the system is going down.
1003 ehci_shutdown(void *v
)
1005 ehci_softc_t
*sc
= v
;
1007 DPRINTF(("ehci_shutdown: stopping the HC\n"));
1010 callout_stop(&sc
->sc_tmo_intrlist
);
1011 EOWRITE4(sc
, EHCI_USBINTR
, 0);
1012 EOWRITE4(sc
, EHCI_USBCMD
, 0);
1013 EOWRITE4(sc
, EHCI_USBCMD
, EHCI_CMD_HCRESET
);
1018 ehci_allocm(struct usbd_bus
*bus
, usb_dma_t
*dma
, u_int32_t size
)
1022 err
= usb_allocmem(bus
, size
, 0, dma
);
1025 kprintf("ehci_allocm: usb_allocmem()=%d\n", err
);
1031 ehci_freem(struct usbd_bus
*bus
, usb_dma_t
*dma
)
1033 usb_freemem(bus
, dma
);
1037 ehci_allocx(struct usbd_bus
*bus
)
1039 struct ehci_softc
*sc
= (struct ehci_softc
*)bus
;
1040 usbd_xfer_handle xfer
;
1042 xfer
= STAILQ_FIRST(&sc
->sc_free_xfers
);
1044 STAILQ_REMOVE_HEAD(&sc
->sc_free_xfers
, next
);
1046 if (xfer
->busy_free
!= XFER_FREE
) {
1047 kprintf("ehci_allocx: xfer=%p not free, 0x%08x\n", xfer
,
1052 xfer
= kmalloc(sizeof(struct ehci_xfer
), M_USB
, M_INTWAIT
);
1055 memset(xfer
, 0, sizeof(struct ehci_xfer
));
1056 usb_init_task(&EXFER(xfer
)->abort_task
, ehci_timeout_task
,
1058 EXFER(xfer
)->ehci_xfer_flags
= 0;
1060 EXFER(xfer
)->isdone
= 1;
1061 xfer
->busy_free
= XFER_BUSY
;
1068 ehci_freex(struct usbd_bus
*bus
, usbd_xfer_handle xfer
)
1070 struct ehci_softc
*sc
= (struct ehci_softc
*)bus
;
1073 if (xfer
->busy_free
!= XFER_BUSY
) {
1074 kprintf("ehci_freex: xfer=%p not busy, 0x%08x\n", xfer
,
1078 xfer
->busy_free
= XFER_FREE
;
1079 if (!EXFER(xfer
)->isdone
) {
1080 kprintf("ehci_freex: !isdone\n");
1084 STAILQ_INSERT_HEAD(&sc
->sc_free_xfers
, xfer
, next
);
1088 ehci_device_clear_toggle(usbd_pipe_handle pipe
)
1090 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)pipe
;
1092 DPRINTF(("ehci_device_clear_toggle: epipe=%p status=0x%x\n",
1093 epipe
, epipe
->sqh
->qh
.qh_qtd
.qtd_status
));
1096 usbd_dump_pipe(pipe
);
1098 KASSERT((epipe
->sqh
->qh
.qh_qtd
.qtd_status
&
1099 htole32(EHCI_QTD_ACTIVE
)) == 0,
1100 ("ehci_device_clear_toggle: queue active"));
1101 epipe
->sqh
->qh
.qh_qtd
.qtd_status
&= htole32(~EHCI_QTD_TOGGLE_MASK
);
1105 ehci_noop(usbd_pipe_handle pipe
)
1111 ehci_dump_regs(ehci_softc_t
*sc
)
1114 kprintf("cmd=0x%08x, sts=0x%08x, ien=0x%08x\n",
1115 EOREAD4(sc
, EHCI_USBCMD
),
1116 EOREAD4(sc
, EHCI_USBSTS
),
1117 EOREAD4(sc
, EHCI_USBINTR
));
1118 kprintf("frindex=0x%08x ctrdsegm=0x%08x periodic=0x%08x async=0x%08x\n",
1119 EOREAD4(sc
, EHCI_FRINDEX
),
1120 EOREAD4(sc
, EHCI_CTRLDSSEGMENT
),
1121 EOREAD4(sc
, EHCI_PERIODICLISTBASE
),
1122 EOREAD4(sc
, EHCI_ASYNCLISTADDR
));
1123 for (i
= 1; i
<= sc
->sc_noport
; i
++)
1124 kprintf("port %d status=0x%08x\n", i
,
1125 EOREAD4(sc
, EHCI_PORTSC(i
)));
1129 * Unused function - this is meant to be called from a kernel
1135 ehci_dump_regs(theehci
);
1139 ehci_dump_link(ehci_link_t link
, int type
)
1141 link
= le32toh(link
);
1142 kprintf("0x%08x", link
);
1143 if (link
& EHCI_LINK_TERMINATE
)
1148 switch (EHCI_LINK_TYPE(link
)) {
1149 case EHCI_LINK_ITD
: kprintf("ITD"); break;
1150 case EHCI_LINK_QH
: kprintf("QH"); break;
1151 case EHCI_LINK_SITD
: kprintf("SITD"); break;
1152 case EHCI_LINK_FSTN
: kprintf("FSTN"); break;
1160 ehci_dump_sqtds(ehci_soft_qtd_t
*sqtd
)
1166 for (i
= 0; sqtd
&& i
< 20 && !stop
; sqtd
= sqtd
->nextqtd
, i
++) {
1167 ehci_dump_sqtd(sqtd
);
1168 stop
= sqtd
->qtd
.qtd_next
& htole32(EHCI_LINK_TERMINATE
);
1171 kprintf("dump aborted, too many TDs\n");
1175 ehci_dump_sqtd(ehci_soft_qtd_t
*sqtd
)
1177 kprintf("QTD(%p) at 0x%08x:\n", sqtd
, sqtd
->physaddr
);
1178 ehci_dump_qtd(&sqtd
->qtd
);
1182 ehci_dump_qtd(ehci_qtd_t
*qtd
)
1187 kprintf(" next="); ehci_dump_link(qtd
->qtd_next
, 0);
1188 kprintf(" altnext="); ehci_dump_link(qtd
->qtd_altnext
, 0);
1190 s
= le32toh(qtd
->qtd_status
);
1191 bitmask_snprintf(EHCI_QTD_GET_STATUS(s
),
1192 "\20\10ACTIVE\7HALTED\6BUFERR\5BABBLE\4XACTERR"
1193 "\3MISSED\2SPLIT\1PING", sbuf
, sizeof(sbuf
));
1194 kprintf(" status=0x%08x: toggle=%d bytes=0x%x ioc=%d c_page=0x%x\n",
1195 s
, EHCI_QTD_GET_TOGGLE(s
), EHCI_QTD_GET_BYTES(s
),
1196 EHCI_QTD_GET_IOC(s
), EHCI_QTD_GET_C_PAGE(s
));
1197 kprintf(" cerr=%d pid=%d stat=0x%s\n", EHCI_QTD_GET_CERR(s
),
1198 EHCI_QTD_GET_PID(s
), sbuf
);
1199 for (s
= 0; s
< 5; s
++)
1200 kprintf(" buffer[%d]=0x%08x\n", s
, le32toh(qtd
->qtd_buffer
[s
]));
1204 ehci_dump_sqh(ehci_soft_qh_t
*sqh
)
1206 ehci_qh_t
*qh
= &sqh
->qh
;
1207 u_int32_t endp
, endphub
;
1209 kprintf("QH(%p) at 0x%08x:\n", sqh
, sqh
->physaddr
);
1210 kprintf(" link="); ehci_dump_link(qh
->qh_link
, 1); kprintf("\n");
1211 endp
= le32toh(qh
->qh_endp
);
1212 kprintf(" endp=0x%08x\n", endp
);
1213 kprintf(" addr=0x%02x inact=%d endpt=%d eps=%d dtc=%d hrecl=%d\n",
1214 EHCI_QH_GET_ADDR(endp
), EHCI_QH_GET_INACT(endp
),
1215 EHCI_QH_GET_ENDPT(endp
), EHCI_QH_GET_EPS(endp
),
1216 EHCI_QH_GET_DTC(endp
), EHCI_QH_GET_HRECL(endp
));
1217 kprintf(" mpl=0x%x ctl=%d nrl=%d\n",
1218 EHCI_QH_GET_MPL(endp
), EHCI_QH_GET_CTL(endp
),
1219 EHCI_QH_GET_NRL(endp
));
1220 endphub
= le32toh(qh
->qh_endphub
);
1221 kprintf(" endphub=0x%08x\n", endphub
);
1222 kprintf(" smask=0x%02x cmask=0x%02x huba=0x%02x port=%d mult=%d\n",
1223 EHCI_QH_GET_SMASK(endphub
), EHCI_QH_GET_CMASK(endphub
),
1224 EHCI_QH_GET_HUBA(endphub
), EHCI_QH_GET_PORT(endphub
),
1225 EHCI_QH_GET_MULT(endphub
));
1226 kprintf(" curqtd="); ehci_dump_link(qh
->qh_curqtd
, 0); kprintf("\n");
1227 kprintf("Overlay qTD:\n");
1228 ehci_dump_qtd(&qh
->qh_qtd
);
1233 ehci_dump_exfer(struct ehci_xfer
*ex
)
1235 kprintf("ehci_dump_exfer: ex=%p\n", ex
);
1241 ehci_open(usbd_pipe_handle pipe
)
1243 usbd_device_handle dev
= pipe
->device
;
1244 ehci_softc_t
*sc
= (ehci_softc_t
*)dev
->bus
;
1245 usb_endpoint_descriptor_t
*ed
= pipe
->endpoint
->edesc
;
1246 u_int8_t addr
= dev
->address
;
1247 u_int8_t xfertype
= ed
->bmAttributes
& UE_XFERTYPE
;
1248 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)pipe
;
1249 ehci_soft_qh_t
*sqh
;
1251 int ival
, speed
, naks
;
1252 int hshubaddr
, hshubport
;
1254 DPRINTFN(1, ("ehci_open: pipe=%p, addr=%d, endpt=%d (%d)\n",
1255 pipe
, addr
, ed
->bEndpointAddress
, sc
->sc_addr
));
1257 if (dev
->myhsport
) {
1258 hshubaddr
= dev
->myhsport
->parent
->address
;
1259 hshubport
= dev
->myhsport
->portno
;
1266 return (USBD_IOERROR
);
1268 if (addr
== sc
->sc_addr
) {
1269 switch (ed
->bEndpointAddress
) {
1270 case USB_CONTROL_ENDPOINT
:
1271 pipe
->methods
= &ehci_root_ctrl_methods
;
1273 case UE_DIR_IN
| EHCI_INTR_ENDPT
:
1274 pipe
->methods
= &ehci_root_intr_methods
;
1277 return (USBD_INVAL
);
1279 return (USBD_NORMAL_COMPLETION
);
1282 /* XXX All this stuff is only valid for async. */
1283 switch (dev
->speed
) {
1284 case USB_SPEED_LOW
: speed
= EHCI_QH_SPEED_LOW
; break;
1285 case USB_SPEED_FULL
: speed
= EHCI_QH_SPEED_FULL
; break;
1286 case USB_SPEED_HIGH
: speed
= EHCI_QH_SPEED_HIGH
; break;
1287 default: panic("ehci_open: bad device speed %d", dev
->speed
);
1289 if (speed
!= EHCI_QH_SPEED_HIGH
&& xfertype
== UE_ISOCHRONOUS
) {
1290 device_printf(sc
->sc_bus
.bdev
,
1291 "*** WARNING: opening low/full speed device, this "
1292 "does not work yet.\n");
1293 DPRINTFN(1,("ehci_open: hshubaddr=%d hshubport=%d\n",
1294 hshubaddr
, hshubport
));
1299 sqh
= ehci_alloc_sqh(sc
);
1302 /* qh_link filled when the QH is added */
1303 sqh
->qh
.qh_endp
= htole32(
1304 EHCI_QH_SET_ADDR(addr
) |
1305 EHCI_QH_SET_ENDPT(UE_GET_ADDR(ed
->bEndpointAddress
)) |
1306 EHCI_QH_SET_EPS(speed
) |
1307 (xfertype
== UE_CONTROL
? EHCI_QH_DTC
: 0) |
1308 EHCI_QH_SET_MPL(UGETW(ed
->wMaxPacketSize
)) |
1309 (speed
!= EHCI_QH_SPEED_HIGH
&& xfertype
== UE_CONTROL
?
1311 EHCI_QH_SET_NRL(naks
)
1313 sqh
->qh
.qh_endphub
= htole32(
1314 EHCI_QH_SET_MULT(1) |
1315 EHCI_QH_SET_HUBA(hshubaddr
) |
1316 EHCI_QH_SET_PORT(hshubport
) |
1317 EHCI_QH_SET_CMASK(0x1c) |
1318 EHCI_QH_SET_SMASK(xfertype
== UE_INTERRUPT
? 0x01 : 0)
1320 sqh
->qh
.qh_curqtd
= EHCI_NULL
;
1321 /* Fill the overlay qTD */
1322 sqh
->qh
.qh_qtd
.qtd_next
= EHCI_NULL
;
1323 sqh
->qh
.qh_qtd
.qtd_altnext
= EHCI_NULL
;
1324 sqh
->qh
.qh_qtd
.qtd_status
=
1325 htole32(EHCI_QTD_SET_TOGGLE(pipe
->endpoint
->savedtoggle
));
1331 err
= usb_allocmem(&sc
->sc_bus
, sizeof(usb_device_request_t
),
1332 0, &epipe
->u
.ctl
.reqdma
);
1335 kprintf("ehci_open: usb_allocmem()=%d\n", err
);
1339 pipe
->methods
= &ehci_device_ctrl_methods
;
1341 ehci_add_qh(sqh
, sc
->sc_async_head
);
1345 pipe
->methods
= &ehci_device_bulk_methods
;
1347 ehci_add_qh(sqh
, sc
->sc_async_head
);
1351 pipe
->methods
= &ehci_device_intr_methods
;
1352 ival
= pipe
->interval
;
1353 if (ival
== USBD_DEFAULT_INTERVAL
)
1354 ival
= ed
->bInterval
;
1355 return (ehci_device_setintr(sc
, sqh
, ival
));
1356 case UE_ISOCHRONOUS
:
1357 pipe
->methods
= &ehci_device_isoc_methods
;
1358 return (USBD_INVAL
);
1360 return (USBD_INVAL
);
1362 return (USBD_NORMAL_COMPLETION
);
1365 ehci_free_sqh(sc
, sqh
);
1368 return (USBD_NOMEM
);
1372 * Add an ED to the schedule. Called while in a critical section.
1373 * If in the async schedule, it will always have a next.
1374 * If in the intr schedule it may not.
1377 ehci_add_qh(ehci_soft_qh_t
*sqh
, ehci_soft_qh_t
*head
)
1379 sqh
->next
= head
->next
;
1381 sqh
->qh
.qh_link
= head
->qh
.qh_link
;
1384 sqh
->next
->prev
= sqh
;
1385 head
->qh
.qh_link
= htole32(sqh
->physaddr
| EHCI_LINK_QH
);
1388 if (ehcidebug
> 5) {
1389 kprintf("ehci_add_qh:\n");
1396 * Remove an ED from the schedule. Called while in a critical section.
1397 * Will always have a 'next' if it's in the async list as it's circular.
1400 ehci_rem_qh(ehci_softc_t
*sc
, ehci_soft_qh_t
*sqh
, ehci_soft_qh_t
*head
)
1403 sqh
->prev
->qh
.qh_link
= sqh
->qh
.qh_link
;
1404 sqh
->prev
->next
= sqh
->next
;
1406 sqh
->next
->prev
= sqh
->prev
;
1411 ehci_set_qh_qtd(ehci_soft_qh_t
*sqh
, ehci_soft_qtd_t
*sqtd
)
1416 /* Save toggle bit and ping status. */
1417 status
= sqh
->qh
.qh_qtd
.qtd_status
&
1418 htole32(EHCI_QTD_TOGGLE_MASK
|
1419 EHCI_QTD_SET_STATUS(EHCI_QTD_PINGSTATE
));
1420 /* Set HALTED to make hw leave it alone. */
1421 sqh
->qh
.qh_qtd
.qtd_status
=
1422 htole32(EHCI_QTD_SET_STATUS(EHCI_QTD_HALTED
));
1423 sqh
->qh
.qh_curqtd
= 0;
1424 sqh
->qh
.qh_qtd
.qtd_next
= htole32(sqtd
->physaddr
);
1425 sqh
->qh
.qh_qtd
.qtd_altnext
= 0;
1426 for (i
= 0; i
< EHCI_QTD_NBUFFERS
; i
++)
1427 sqh
->qh
.qh_qtd
.qtd_buffer
[i
] = 0;
1429 /* Set !HALTED && !ACTIVE to start execution, preserve some fields */
1430 sqh
->qh
.qh_qtd
.qtd_status
= status
;
1434 * Ensure that the HC has released all references to the QH. We do this
1435 * by asking for a Async Advance Doorbell interrupt and then we wait for
1437 * To make this easier we first obtain exclusive use of the doorbell.
1440 ehci_sync_hc(ehci_softc_t
*sc
)
1445 DPRINTFN(2,("ehci_sync_hc: dying\n"));
1448 DPRINTFN(2,("ehci_sync_hc: enter\n"));
1450 lockmgr(&sc
->sc_doorbell_lock
, LK_EXCLUSIVE
);
1452 /* ask for doorbell */
1453 EOWRITE4(sc
, EHCI_USBCMD
, EOREAD4(sc
, EHCI_USBCMD
) | EHCI_CMD_IAAD
);
1454 DPRINTFN(1,("ehci_sync_hc: cmd=0x%08x sts=0x%08x\n",
1455 EOREAD4(sc
, EHCI_USBCMD
), EOREAD4(sc
, EHCI_USBSTS
)));
1456 error
= tsleep(&sc
->sc_async_head
, 0, "ehcidi", hz
); /* bell wait */
1457 DPRINTFN(1,("ehci_sync_hc: cmd=0x%08x sts=0x%08x\n",
1458 EOREAD4(sc
, EHCI_USBCMD
), EOREAD4(sc
, EHCI_USBSTS
)));
1460 /* release doorbell */
1461 lockmgr(&sc
->sc_doorbell_lock
, LK_RELEASE
);
1464 kprintf("ehci_sync_hc: tsleep() = %d\n", error
);
1466 DPRINTFN(2,("ehci_sync_hc: exit\n"));
1472 * Data structures and routines to emulate the root hub.
1474 static usb_device_descriptor_t ehci_devd
= {
1475 USB_DEVICE_DESCRIPTOR_SIZE
,
1476 UDESC_DEVICE
, /* type */
1477 {0x00, 0x02}, /* USB version */
1478 UDCLASS_HUB
, /* class */
1479 UDSUBCLASS_HUB
, /* subclass */
1480 UDPROTO_HSHUBSTT
, /* protocol */
1481 64, /* max packet */
1482 {0},{0},{0x00,0x01}, /* device id */
1483 1,2,0, /* string indicies */
1484 1 /* # of configurations */
1487 static usb_device_qualifier_t ehci_odevd
= {
1488 USB_DEVICE_DESCRIPTOR_SIZE
,
1489 UDESC_DEVICE_QUALIFIER
, /* type */
1490 {0x00, 0x02}, /* USB version */
1491 UDCLASS_HUB
, /* class */
1492 UDSUBCLASS_HUB
, /* subclass */
1493 UDPROTO_FSHUB
, /* protocol */
1494 64, /* max packet */
1495 1, /* # of configurations */
1499 static usb_config_descriptor_t ehci_confd
= {
1500 USB_CONFIG_DESCRIPTOR_SIZE
,
1502 {USB_CONFIG_DESCRIPTOR_SIZE
+
1503 USB_INTERFACE_DESCRIPTOR_SIZE
+
1504 USB_ENDPOINT_DESCRIPTOR_SIZE
},
1512 static usb_interface_descriptor_t ehci_ifcd
= {
1513 USB_INTERFACE_DESCRIPTOR_SIZE
,
1524 static usb_endpoint_descriptor_t ehci_endpd
= {
1525 USB_ENDPOINT_DESCRIPTOR_SIZE
,
1527 UE_DIR_IN
| EHCI_INTR_ENDPT
,
1529 {8, 0}, /* max packet */
1533 static usb_hub_descriptor_t ehci_hubd
= {
1534 USB_HUB_DESCRIPTOR_SIZE
,
1544 ehci_str(usb_string_descriptor_t
*p
, int l
, char *s
)
1550 p
->bLength
= 2 * strlen(s
) + 2;
1553 p
->bDescriptorType
= UDESC_STRING
;
1555 for (i
= 0; s
[i
] && l
> 1; i
++, l
-= 2)
1556 USETW2(p
->bString
[i
], 0, s
[i
]);
1561 * Simulate a hardware hub by handling all the necessary requests.
1564 ehci_root_ctrl_transfer(usbd_xfer_handle xfer
)
1568 /* Insert last in queue. */
1569 err
= usb_insert_transfer(xfer
);
1573 /* Pipe isn't running, start first */
1574 return (ehci_root_ctrl_start(STAILQ_FIRST(&xfer
->pipe
->queue
)));
1578 ehci_root_ctrl_start(usbd_xfer_handle xfer
)
1580 ehci_softc_t
*sc
= (ehci_softc_t
*)xfer
->pipe
->device
->bus
;
1581 usb_device_request_t
*req
;
1584 int len
, value
, index
, l
, totlen
= 0;
1585 usb_port_status_t ps
;
1586 usb_hub_descriptor_t hubd
;
1591 return (USBD_IOERROR
);
1594 if (!(xfer
->rqflags
& URQ_REQUEST
))
1596 return (USBD_INVAL
);
1598 req
= &xfer
->request
;
1600 DPRINTFN(4,("ehci_root_ctrl_start: type=0x%02x request=%02x\n",
1601 req
->bmRequestType
, req
->bRequest
));
1603 len
= UGETW(req
->wLength
);
1604 value
= UGETW(req
->wValue
);
1605 index
= UGETW(req
->wIndex
);
1608 buf
= KERNADDR(&xfer
->dmabuf
, 0);
1610 #define C(x,y) ((x) | ((y) << 8))
1611 switch(C(req
->bRequest
, req
->bmRequestType
)) {
1612 case C(UR_CLEAR_FEATURE
, UT_WRITE_DEVICE
):
1613 case C(UR_CLEAR_FEATURE
, UT_WRITE_INTERFACE
):
1614 case C(UR_CLEAR_FEATURE
, UT_WRITE_ENDPOINT
):
1616 * DEVICE_REMOTE_WAKEUP and ENDPOINT_HALT are no-ops
1617 * for the integrated root hub.
1620 case C(UR_GET_CONFIG
, UT_READ_DEVICE
):
1622 *(u_int8_t
*)buf
= sc
->sc_conf
;
1626 case C(UR_GET_DESCRIPTOR
, UT_READ_DEVICE
):
1627 DPRINTFN(8,("ehci_root_ctrl_start: wValue=0x%04x\n", value
));
1628 switch(value
>> 8) {
1630 if ((value
& 0xff) != 0) {
1634 totlen
= l
= min(len
, USB_DEVICE_DESCRIPTOR_SIZE
);
1635 USETW(ehci_devd
.idVendor
, sc
->sc_id_vendor
);
1636 memcpy(buf
, &ehci_devd
, l
);
1639 * We can't really operate at another speed, but the spec says
1640 * we need this descriptor.
1642 case UDESC_DEVICE_QUALIFIER
:
1643 if ((value
& 0xff) != 0) {
1647 totlen
= l
= min(len
, USB_DEVICE_DESCRIPTOR_SIZE
);
1648 memcpy(buf
, &ehci_odevd
, l
);
1651 * We can't really operate at another speed, but the spec says
1652 * we need this descriptor.
1654 case UDESC_OTHER_SPEED_CONFIGURATION
:
1656 if ((value
& 0xff) != 0) {
1660 totlen
= l
= min(len
, USB_CONFIG_DESCRIPTOR_SIZE
);
1661 memcpy(buf
, &ehci_confd
, l
);
1662 ((usb_config_descriptor_t
*)buf
)->bDescriptorType
=
1664 buf
= (char *)buf
+ l
;
1666 l
= min(len
, USB_INTERFACE_DESCRIPTOR_SIZE
);
1668 memcpy(buf
, &ehci_ifcd
, l
);
1669 buf
= (char *)buf
+ l
;
1671 l
= min(len
, USB_ENDPOINT_DESCRIPTOR_SIZE
);
1673 memcpy(buf
, &ehci_endpd
, l
);
1678 *(u_int8_t
*)buf
= 0;
1680 switch (value
& 0xff) {
1681 case 0: /* Language table */
1682 totlen
= ehci_str(buf
, len
, "\001");
1684 case 1: /* Vendor */
1685 totlen
= ehci_str(buf
, len
, sc
->sc_vendor
);
1687 case 2: /* Product */
1688 totlen
= ehci_str(buf
, len
, "EHCI root hub");
1697 case C(UR_GET_INTERFACE
, UT_READ_INTERFACE
):
1699 *(u_int8_t
*)buf
= 0;
1703 case C(UR_GET_STATUS
, UT_READ_DEVICE
):
1705 USETW(((usb_status_t
*)buf
)->wStatus
,UDS_SELF_POWERED
);
1709 case C(UR_GET_STATUS
, UT_READ_INTERFACE
):
1710 case C(UR_GET_STATUS
, UT_READ_ENDPOINT
):
1712 USETW(((usb_status_t
*)buf
)->wStatus
, 0);
1716 case C(UR_SET_ADDRESS
, UT_WRITE_DEVICE
):
1717 if (value
>= USB_MAX_DEVICES
) {
1721 sc
->sc_addr
= value
;
1723 case C(UR_SET_CONFIG
, UT_WRITE_DEVICE
):
1724 if (value
!= 0 && value
!= 1) {
1728 sc
->sc_conf
= value
;
1730 case C(UR_SET_DESCRIPTOR
, UT_WRITE_DEVICE
):
1732 case C(UR_SET_FEATURE
, UT_WRITE_DEVICE
):
1733 case C(UR_SET_FEATURE
, UT_WRITE_INTERFACE
):
1734 case C(UR_SET_FEATURE
, UT_WRITE_ENDPOINT
):
1737 case C(UR_SET_INTERFACE
, UT_WRITE_INTERFACE
):
1739 case C(UR_SYNCH_FRAME
, UT_WRITE_ENDPOINT
):
1742 case C(UR_CLEAR_FEATURE
, UT_WRITE_CLASS_DEVICE
):
1744 case C(UR_CLEAR_FEATURE
, UT_WRITE_CLASS_OTHER
):
1745 DPRINTFN(8, ("ehci_root_ctrl_start: UR_CLEAR_PORT_FEATURE "
1746 "port=%d feature=%d\n",
1748 if (index
< 1 || index
> sc
->sc_noport
) {
1752 port
= EHCI_PORTSC(index
);
1753 v
= EOREAD4(sc
, port
) &~ EHCI_PS_CLEAR
;
1755 case UHF_PORT_ENABLE
:
1756 EOWRITE4(sc
, port
, v
&~ EHCI_PS_PE
);
1758 case UHF_PORT_SUSPEND
:
1759 EOWRITE4(sc
, port
, v
&~ EHCI_PS_SUSP
);
1761 case UHF_PORT_POWER
:
1762 EOWRITE4(sc
, port
, v
&~ EHCI_PS_PP
);
1765 DPRINTFN(2,("ehci_root_ctrl_start: clear port test "
1768 case UHF_PORT_INDICATOR
:
1769 DPRINTFN(2,("ehci_root_ctrl_start: clear port ind "
1771 EOWRITE4(sc
, port
, v
&~ EHCI_PS_PIC
);
1773 case UHF_C_PORT_CONNECTION
:
1774 EOWRITE4(sc
, port
, v
| EHCI_PS_CSC
);
1776 case UHF_C_PORT_ENABLE
:
1777 EOWRITE4(sc
, port
, v
| EHCI_PS_PEC
);
1779 case UHF_C_PORT_SUSPEND
:
1782 case UHF_C_PORT_OVER_CURRENT
:
1783 EOWRITE4(sc
, port
, v
| EHCI_PS_OCC
);
1785 case UHF_C_PORT_RESET
:
1793 case C(UR_GET_DESCRIPTOR
, UT_READ_CLASS_DEVICE
):
1794 if ((value
& 0xff) != 0) {
1799 hubd
.bNbrPorts
= sc
->sc_noport
;
1800 v
= EOREAD4(sc
, EHCI_HCSPARAMS
);
1801 USETW(hubd
.wHubCharacteristics
,
1802 EHCI_HCS_PPC(v
) ? UHD_PWR_INDIVIDUAL
: UHD_PWR_NO_SWITCH
|
1803 EHCI_HCS_P_INDICATOR(EREAD4(sc
, EHCI_HCSPARAMS
))
1804 ? UHD_PORT_IND
: 0);
1805 hubd
.bPwrOn2PwrGood
= 200; /* XXX can't find out? */
1806 for (i
= 0, l
= sc
->sc_noport
; l
> 0; i
++, l
-= 8, v
>>= 8)
1807 hubd
.DeviceRemovable
[i
++] = 0; /* XXX can't find out? */
1808 hubd
.bDescLength
= USB_HUB_DESCRIPTOR_SIZE
+ i
;
1809 l
= min(len
, hubd
.bDescLength
);
1811 memcpy(buf
, &hubd
, l
);
1813 case C(UR_GET_STATUS
, UT_READ_CLASS_DEVICE
):
1818 memset(buf
, 0, len
); /* ? XXX */
1821 case C(UR_GET_STATUS
, UT_READ_CLASS_OTHER
):
1822 DPRINTFN(8,("ehci_root_ctrl_start: get port status i=%d\n",
1824 if (index
< 1 || index
> sc
->sc_noport
) {
1832 v
= EOREAD4(sc
, EHCI_PORTSC(index
));
1833 DPRINTFN(8,("ehci_root_ctrl_start: port status=0x%04x\n", v
));
1835 if (v
& EHCI_PS_CS
) i
|= UPS_CURRENT_CONNECT_STATUS
;
1836 if (v
& EHCI_PS_PE
) i
|= UPS_PORT_ENABLED
;
1837 if (v
& EHCI_PS_SUSP
) i
|= UPS_SUSPEND
;
1838 if (v
& EHCI_PS_OCA
) i
|= UPS_OVERCURRENT_INDICATOR
;
1839 if (v
& EHCI_PS_PR
) i
|= UPS_RESET
;
1840 if (v
& EHCI_PS_PP
) i
|= UPS_PORT_POWER
;
1841 USETW(ps
.wPortStatus
, i
);
1843 if (v
& EHCI_PS_CSC
) i
|= UPS_C_CONNECT_STATUS
;
1844 if (v
& EHCI_PS_PEC
) i
|= UPS_C_PORT_ENABLED
;
1845 if (v
& EHCI_PS_OCC
) i
|= UPS_C_OVERCURRENT_INDICATOR
;
1846 if (sc
->sc_isreset
) i
|= UPS_C_PORT_RESET
;
1847 USETW(ps
.wPortChange
, i
);
1848 l
= min(len
, sizeof ps
);
1849 memcpy(buf
, &ps
, l
);
1852 case C(UR_SET_DESCRIPTOR
, UT_WRITE_CLASS_DEVICE
):
1855 case C(UR_SET_FEATURE
, UT_WRITE_CLASS_DEVICE
):
1857 case C(UR_SET_FEATURE
, UT_WRITE_CLASS_OTHER
):
1858 if (index
< 1 || index
> sc
->sc_noport
) {
1862 port
= EHCI_PORTSC(index
);
1863 v
= EOREAD4(sc
, port
) &~ EHCI_PS_CLEAR
;
1865 case UHF_PORT_ENABLE
:
1866 EOWRITE4(sc
, port
, v
| EHCI_PS_PE
);
1868 case UHF_PORT_SUSPEND
:
1869 EOWRITE4(sc
, port
, v
| EHCI_PS_SUSP
);
1871 case UHF_PORT_RESET
:
1872 DPRINTFN(5,("ehci_root_ctrl_start: reset port %d\n",
1874 if (EHCI_PS_IS_LOWSPEED(v
)) {
1875 /* Low speed device, give up ownership. */
1876 ehci_disown(sc
, index
, 1);
1879 /* Start reset sequence. */
1880 v
&= ~ (EHCI_PS_PE
| EHCI_PS_PR
);
1881 EOWRITE4(sc
, port
, v
| EHCI_PS_PR
);
1882 /* Wait for reset to complete. */
1883 usb_delay_ms(&sc
->sc_bus
, USB_PORT_ROOT_RESET_DELAY
);
1888 /* Terminate reset sequence. */
1889 EOWRITE4(sc
, port
, v
);
1890 /* Wait for HC to complete reset. */
1891 usb_delay_ms(&sc
->sc_bus
, EHCI_PORT_RESET_COMPLETE
);
1896 v
= EOREAD4(sc
, port
);
1897 DPRINTF(("ehci after reset, status=0x%08x\n", v
));
1898 if (v
& EHCI_PS_PR
) {
1899 device_printf(sc
->sc_bus
.bdev
,
1900 "port reset timeout\n");
1901 return (USBD_TIMEOUT
);
1903 if (!(v
& EHCI_PS_PE
)) {
1904 /* Not a high speed device, give up ownership.*/
1905 ehci_disown(sc
, index
, 0);
1909 DPRINTF(("ehci port %d reset, status = 0x%08x\n",
1912 case UHF_PORT_POWER
:
1913 DPRINTFN(2,("ehci_root_ctrl_start: set port power "
1915 EOWRITE4(sc
, port
, v
| EHCI_PS_PP
);
1918 DPRINTFN(2,("ehci_root_ctrl_start: set port test "
1921 case UHF_PORT_INDICATOR
:
1922 DPRINTFN(2,("ehci_root_ctrl_start: set port ind "
1924 EOWRITE4(sc
, port
, v
| EHCI_PS_PIC
);
1931 case C(UR_CLEAR_TT_BUFFER
, UT_WRITE_CLASS_OTHER
):
1932 case C(UR_RESET_TT
, UT_WRITE_CLASS_OTHER
):
1933 case C(UR_GET_TT_STATE
, UT_READ_CLASS_OTHER
):
1934 case C(UR_STOP_TT
, UT_WRITE_CLASS_OTHER
):
1940 xfer
->actlen
= totlen
;
1941 err
= USBD_NORMAL_COMPLETION
;
1945 usb_transfer_complete(xfer
);
1947 return (USBD_IN_PROGRESS
);
1951 ehci_disown(ehci_softc_t
*sc
, int index
, int lowspeed
)
1956 DPRINTF(("ehci_disown: index=%d lowspeed=%d\n", index
, lowspeed
));
1958 if (sc
->sc_npcomp
!= 0) {
1959 int i
= (index
-1) / sc
->sc_npcomp
;
1960 if (i
>= sc
->sc_ncomp
)
1961 device_printf(sc
->sc_bus
.bdev
, "strange port\n");
1963 device_printf(sc
->sc_bus
.bdev
,
1964 "handing over %s speed device on port %d to %s\n",
1965 (lowspeed
? "low" : "full"),
1966 index
, device_get_nameunit(sc
->sc_comps
[i
]->bdev
));
1968 device_printf(sc
->sc_bus
.bdev
, "npcomp == 0\n");
1971 port
= EHCI_PORTSC(index
);
1972 v
= EOREAD4(sc
, port
) &~ EHCI_PS_CLEAR
;
1973 EOWRITE4(sc
, port
, v
| EHCI_PS_PO
);
1976 /* Abort a root control request. */
1978 ehci_root_ctrl_abort(usbd_xfer_handle xfer
)
1980 /* Nothing to do, all transfers are synchronous. */
1983 /* Close the root pipe. */
1985 ehci_root_ctrl_close(usbd_pipe_handle pipe
)
1987 DPRINTF(("ehci_root_ctrl_close\n"));
1988 /* Nothing to do. */
1992 ehci_root_intr_done(usbd_xfer_handle xfer
)
1997 ehci_root_intr_transfer(usbd_xfer_handle xfer
)
2001 /* Insert last in queue. */
2002 err
= usb_insert_transfer(xfer
);
2006 /* Pipe isn't running, start first */
2007 return (ehci_root_intr_start(STAILQ_FIRST(&xfer
->pipe
->queue
)));
2011 ehci_root_intr_start(usbd_xfer_handle xfer
)
2013 usbd_pipe_handle pipe
= xfer
->pipe
;
2014 ehci_softc_t
*sc
= (ehci_softc_t
*)pipe
->device
->bus
;
2017 return (USBD_IOERROR
);
2019 sc
->sc_intrxfer
= xfer
;
2021 return (USBD_IN_PROGRESS
);
2024 /* Abort a root interrupt request. */
2026 ehci_root_intr_abort(usbd_xfer_handle xfer
)
2028 if (xfer
->pipe
->intrxfer
== xfer
) {
2029 DPRINTF(("ehci_root_intr_abort: remove\n"));
2030 xfer
->pipe
->intrxfer
= NULL
;
2032 xfer
->status
= USBD_CANCELLED
;
2034 usb_transfer_complete(xfer
);
2038 /* Close the root pipe. */
2040 ehci_root_intr_close(usbd_pipe_handle pipe
)
2042 ehci_softc_t
*sc
= (ehci_softc_t
*)pipe
->device
->bus
;
2044 DPRINTF(("ehci_root_intr_close\n"));
2046 sc
->sc_intrxfer
= NULL
;
2050 ehci_root_ctrl_done(usbd_xfer_handle xfer
)
2054 /************************/
2057 ehci_alloc_sqh(ehci_softc_t
*sc
)
2059 ehci_soft_qh_t
*sqh
;
2064 if (sc
->sc_freeqhs
== NULL
) {
2065 DPRINTFN(2, ("ehci_alloc_sqh: allocating chunk\n"));
2066 err
= usb_allocmem(&sc
->sc_bus
, EHCI_SQH_SIZE
* EHCI_SQH_CHUNK
,
2067 EHCI_PAGE_SIZE
, &dma
);
2070 kprintf("ehci_alloc_sqh: usb_allocmem()=%d\n", err
);
2074 for(i
= 0; i
< EHCI_SQH_CHUNK
; i
++) {
2075 offs
= i
* EHCI_SQH_SIZE
;
2076 sqh
= KERNADDR(&dma
, offs
);
2077 sqh
->physaddr
= DMAADDR(&dma
, offs
);
2078 sqh
->next
= sc
->sc_freeqhs
;
2079 sc
->sc_freeqhs
= sqh
;
2082 sqh
= sc
->sc_freeqhs
;
2083 sc
->sc_freeqhs
= sqh
->next
;
2084 memset(&sqh
->qh
, 0, sizeof(ehci_qh_t
));
2091 ehci_free_sqh(ehci_softc_t
*sc
, ehci_soft_qh_t
*sqh
)
2093 sqh
->next
= sc
->sc_freeqhs
;
2094 sc
->sc_freeqhs
= sqh
;
2098 ehci_alloc_sqtd(ehci_softc_t
*sc
)
2100 ehci_soft_qtd_t
*sqtd
;
2105 if (sc
->sc_freeqtds
== NULL
) {
2106 DPRINTFN(2, ("ehci_alloc_sqtd: allocating chunk\n"));
2107 err
= usb_allocmem(&sc
->sc_bus
, EHCI_SQTD_SIZE
*EHCI_SQTD_CHUNK
,
2108 EHCI_PAGE_SIZE
, &dma
);
2111 kprintf("ehci_alloc_sqtd: usb_allocmem()=%d\n", err
);
2116 for(i
= 0; i
< EHCI_SQTD_CHUNK
; i
++) {
2117 offs
= i
* EHCI_SQTD_SIZE
;
2118 sqtd
= KERNADDR(&dma
, offs
);
2119 sqtd
->physaddr
= DMAADDR(&dma
, offs
);
2120 sqtd
->nextqtd
= sc
->sc_freeqtds
;
2121 sc
->sc_freeqtds
= sqtd
;
2127 sqtd
= sc
->sc_freeqtds
;
2128 sc
->sc_freeqtds
= sqtd
->nextqtd
;
2129 memset(&sqtd
->qtd
, 0, sizeof(ehci_qtd_t
));
2130 sqtd
->nextqtd
= NULL
;
2138 ehci_free_sqtd(ehci_softc_t
*sc
, ehci_soft_qtd_t
*sqtd
)
2141 sqtd
->nextqtd
= sc
->sc_freeqtds
;
2142 sc
->sc_freeqtds
= sqtd
;
2147 ehci_alloc_sqtd_chain(struct ehci_pipe
*epipe
, ehci_softc_t
*sc
,
2148 int alen
, int rd
, usbd_xfer_handle xfer
,
2149 ehci_soft_qtd_t
**sp
, ehci_soft_qtd_t
**ep
)
2151 ehci_soft_qtd_t
*next
, *cur
;
2152 ehci_physaddr_t dataphys
, dataphyspage
, dataphyslastpage
, nextphys
;
2153 u_int32_t qtdstatus
;
2154 int len
, curlen
, mps
, offset
;
2156 usb_dma_t
*dma
= &xfer
->dmabuf
;
2158 DPRINTFN(alen
<4*4096,("ehci_alloc_sqtd_chain: start len=%d\n", alen
));
2162 iscontrol
= (epipe
->pipe
.endpoint
->edesc
->bmAttributes
& UE_XFERTYPE
) ==
2164 dataphys
= DMAADDR(dma
, 0);
2165 dataphyslastpage
= EHCI_PAGE(DMAADDR(dma
, len
- 1));
2166 qtdstatus
= EHCI_QTD_ACTIVE
|
2167 EHCI_QTD_SET_PID(rd
? EHCI_QTD_PID_IN
: EHCI_QTD_PID_OUT
) |
2168 EHCI_QTD_SET_CERR(3)
2170 /* BYTES set below */
2172 mps
= UGETW(epipe
->pipe
.endpoint
->edesc
->wMaxPacketSize
);
2174 * The control transfer data stage always starts with a toggle of 1.
2175 * For other transfers we let the hardware track the toggle state.
2178 qtdstatus
|= EHCI_QTD_SET_TOGGLE(1);
2180 cur
= ehci_alloc_sqtd(sc
);
2185 dataphyspage
= EHCI_PAGE(dataphys
);
2186 /* XXX This is pretty broken: Because we do not allocate
2187 * a contiguous buffer (contiguous in physical pages) we
2188 * can only transfer one page in one go.
2189 * So check whether the start and end of the buffer are on
2192 if (dataphyspage
== dataphyslastpage
) {
2196 /* See comment above (XXX) */
2197 curlen
= EHCI_PAGE_SIZE
-
2198 EHCI_PAGE_MASK(dataphys
);
2199 /* the length must be a multiple of the max size */
2200 curlen
-= curlen
% mps
;
2201 DPRINTFN(1,("ehci_alloc_sqtd_chain: multiple QTDs, "
2202 "curlen=%d\n", curlen
));
2203 KASSERT(curlen
!= 0, ("ehci_alloc_std: curlen == 0"));
2205 DPRINTFN(4,("ehci_alloc_sqtd_chain: dataphys=0x%08x "
2206 "dataphyslastpage=0x%08x len=%d curlen=%d\n",
2207 dataphys
, dataphyslastpage
,
2212 next
= ehci_alloc_sqtd(sc
);
2215 nextphys
= htole32(next
->physaddr
);
2218 nextphys
= EHCI_NULL
;
2221 for (i
= 0; i
* EHCI_PAGE_SIZE
< curlen
; i
++) {
2222 ehci_physaddr_t a
= dataphys
+ i
* EHCI_PAGE_SIZE
;
2223 if (i
!= 0) /* use offset only in first buffer */
2225 cur
->qtd
.qtd_buffer
[i
] = htole32(a
);
2226 cur
->qtd
.qtd_buffer_hi
[i
] = 0;
2228 if (i
>= EHCI_QTD_NBUFFERS
) {
2229 kprintf("ehci_alloc_sqtd_chain: i=%d\n", i
);
2234 cur
->nextqtd
= next
;
2235 cur
->qtd
.qtd_next
= cur
->qtd
.qtd_altnext
= nextphys
;
2236 cur
->qtd
.qtd_status
=
2237 htole32(qtdstatus
| EHCI_QTD_SET_BYTES(curlen
));
2240 DPRINTFN(10,("ehci_alloc_sqtd_chain: cbp=0x%08x end=0x%08x\n",
2241 dataphys
, dataphys
+ curlen
));
2244 * adjust the toggle based on the number of packets
2247 if (((curlen
+ mps
- 1) / mps
) & 1)
2248 qtdstatus
^= EHCI_QTD_TOGGLE_MASK
;
2252 DPRINTFN(10,("ehci_alloc_sqtd_chain: extend chain\n"));
2254 dataphys
= DMAADDR(dma
, offset
);
2257 cur
->qtd
.qtd_status
|= htole32(EHCI_QTD_IOC
);
2260 DPRINTFN(10,("ehci_alloc_sqtd_chain: return sqtd=%p sqtdend=%p\n",
2263 return (USBD_NORMAL_COMPLETION
);
2266 /* XXX free chain */
2267 DPRINTFN(-1,("ehci_alloc_sqtd_chain: no memory\n"));
2268 return (USBD_NOMEM
);
2272 ehci_free_sqtd_chain(ehci_softc_t
*sc
, ehci_soft_qtd_t
*sqtd
,
2273 ehci_soft_qtd_t
*sqtdend
)
2278 DPRINTFN(10,("ehci_free_sqtd_chain: sqtd=%p sqtdend=%p\n",
2281 for (i
= 0; sqtd
!= sqtdend
; sqtd
= p
, i
++) {
2283 ehci_free_sqtd(sc
, sqtd
);
2290 * Close a reqular pipe.
2291 * Assumes that there are no pending transactions.
2294 ehci_close_pipe(usbd_pipe_handle pipe
, ehci_soft_qh_t
*head
)
2296 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)pipe
;
2297 ehci_softc_t
*sc
= (ehci_softc_t
*)pipe
->device
->bus
;
2298 ehci_soft_qh_t
*sqh
= epipe
->sqh
;
2301 ehci_rem_qh(sc
, sqh
, head
);
2303 pipe
->endpoint
->savedtoggle
=
2304 EHCI_QTD_GET_TOGGLE(le32toh(sqh
->qh
.qh_qtd
.qtd_status
));
2305 ehci_free_sqh(sc
, epipe
->sqh
);
2310 * Abort a device request.
2311 * If this routine is called from a critical section it guarantees that the
2312 * request will be removed from the hardware scheduling and that the callback
2313 * for it will be called with USBD_CANCELLED status.
2314 * It's impossible to guarantee that the requested transfer will not
2315 * have happened since the hardware runs concurrently.
2316 * If the transaction has already happened we rely on the ordinary
2317 * interrupt processing to process it.
2318 * XXX This is most probably wrong.
2321 ehci_abort_xfer(usbd_xfer_handle xfer
, usbd_status status
)
2323 #define exfer EXFER(xfer)
2324 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)xfer
->pipe
;
2325 ehci_softc_t
*sc
= (ehci_softc_t
*)epipe
->pipe
.device
->bus
;
2326 ehci_soft_qh_t
*sqh
= epipe
->sqh
;
2327 ehci_soft_qtd_t
*sqtd
, *snext
, **psqtd
;
2328 ehci_physaddr_t cur
, us
, next
;
2330 /* int count = 0; */
2331 ehci_soft_qh_t
*psqh
;
2333 DPRINTF(("ehci_abort_xfer: xfer=%p pipe=%p\n", xfer
, epipe
));
2336 /* If we're dying, just do the software part. */
2338 xfer
->status
= status
; /* make software ignore it */
2339 callout_stop(&xfer
->timeout_handle
);
2340 usb_rem_task(epipe
->pipe
.device
, &exfer
->abort_task
);
2341 usb_transfer_complete(xfer
);
2346 if (xfer
->device
->bus
->intr_context
/* || !curproc REMOVED DFly */)
2347 panic("ehci_abort_xfer: not in process context");
2350 * If an abort is already in progress then just wait for it to
2351 * complete and return.
2353 if (exfer
->ehci_xfer_flags
& EHCI_XFER_ABORTING
) {
2354 DPRINTFN(2, ("ehci_abort_xfer: already aborting\n"));
2355 /* No need to wait if we're aborting from a timeout. */
2356 if (status
== USBD_TIMEOUT
)
2358 /* Override the status which might be USBD_TIMEOUT. */
2359 xfer
->status
= status
;
2360 DPRINTFN(2, ("ehci_abort_xfer: waiting for abort to finish\n"));
2361 exfer
->ehci_xfer_flags
|= EHCI_XFER_ABORTWAIT
;
2362 while (exfer
->ehci_xfer_flags
& EHCI_XFER_ABORTING
)
2363 tsleep(&exfer
->ehci_xfer_flags
, 0, "ehciaw", 0);
2368 * Step 1: Make interrupt routine and timeouts ignore xfer.
2371 exfer
->ehci_xfer_flags
|= EHCI_XFER_ABORTING
;
2372 xfer
->status
= status
; /* make software ignore it */
2373 callout_stop(&xfer
->timeout_handle
);
2374 usb_rem_task(epipe
->pipe
.device
, &exfer
->abort_task
);
2378 * Step 2: Wait until we know hardware has finished any possible
2379 * use of the xfer. We do this by removing the entire
2380 * queue from the async schedule and waiting for the doorbell.
2381 * Nothing else should be touching the queue now.
2384 ehci_rem_qh(sc
, sqh
, psqh
);
2387 * Step 3: make sure the soft interrupt routine
2388 * has run. This should remove any completed items off the queue.
2389 * The hardware has no reference to completed items (TDs).
2390 * It's safe to remove them at any time.
2393 #ifdef USB_USE_SOFTINTR
2394 sc
->sc_softwake
= 1;
2395 #endif /* USB_USE_SOFTINTR */
2396 usb_schedsoftintr(&sc
->sc_bus
);
2397 #ifdef USB_USE_SOFTINTR
2398 tsleep(&sc
->sc_softwake
, 0, "ehciab", 0);
2399 #endif /* USB_USE_SOFTINTR */
2402 * Step 4: Remove any vestiges of the xfer from the hardware.
2403 * The complication here is that the hardware may have executed
2404 * into or even beyond the xfer we're trying to abort.
2405 * So as we're scanning the TDs of this xfer we check if
2406 * the hardware points to any of them.
2408 * first we need to see if there are any transfers
2409 * on this queue before the xfer we are aborting.. we need
2410 * to update any pointers that point to us to point past
2411 * the aborting xfer. (If there is something past us).
2412 * Hardware and software.
2414 cur
= EHCI_LINK_ADDR(le32toh(sqh
->qh
.qh_curqtd
));
2417 /* If they initially point here. */
2418 us
= exfer
->sqtdstart
->physaddr
;
2420 /* We will change them to point here */
2421 snext
= exfer
->sqtdend
->nextqtd
;
2422 next
= snext
? htole32(snext
->physaddr
) : EHCI_NULL
;
2425 * Now loop through any qTDs before us and keep track of the pointer
2426 * that points to us for the end.
2430 while (sqtd
&& sqtd
!= exfer
->sqtdstart
) {
2431 hit
|= (cur
== sqtd
->physaddr
);
2432 if (EHCI_LINK_ADDR(le32toh(sqtd
->qtd
.qtd_next
)) == us
)
2433 sqtd
->qtd
.qtd_next
= next
;
2434 if (EHCI_LINK_ADDR(le32toh(sqtd
->qtd
.qtd_altnext
)) == us
)
2435 sqtd
->qtd
.qtd_altnext
= next
;
2436 psqtd
= &sqtd
->nextqtd
;
2437 sqtd
= sqtd
->nextqtd
;
2439 /* make the software pointer bypass us too */
2440 *psqtd
= exfer
->sqtdend
->nextqtd
;
2443 * If we already saw the active one then we are pretty much done.
2444 * We've done all the relinking we need to do.
2449 * Now reinitialise the QH to point to the next qTD
2450 * (if there is one). We only need to do this if
2451 * it was previously pointing to us.
2453 for (sqtd
= exfer
->sqtdstart
; ; sqtd
= sqtd
->nextqtd
) {
2454 if (cur
== sqtd
->physaddr
) {
2457 if (sqtd
== exfer
->sqtdend
)
2460 sqtd
= sqtd
->nextqtd
;
2462 * Only need to alter the QH if it was pointing at a qTD
2463 * that we are removing.
2467 ehci_set_qh_qtd(sqh
, snext
);
2470 sqh
->qh
.qh_curqtd
= 0; /* unlink qTDs */
2471 sqh
->qh
.qh_qtd
.qtd_status
&=
2472 htole32(EHCI_QTD_TOGGLE_MASK
);
2473 sqh
->qh
.qh_qtd
.qtd_next
=
2474 sqh
->qh
.qh_qtd
.qtd_altnext
2476 DPRINTFN(1,("ehci_abort_xfer: no hit\n"));
2480 ehci_add_qh(sqh
, psqh
);
2482 * Step 5: Execute callback.
2487 /* Do the wakeup first to avoid touching the xfer after the callback. */
2488 exfer
->ehci_xfer_flags
&= ~EHCI_XFER_ABORTING
;
2489 if (exfer
->ehci_xfer_flags
& EHCI_XFER_ABORTWAIT
) {
2490 exfer
->ehci_xfer_flags
&= ~EHCI_XFER_ABORTWAIT
;
2491 wakeup(&exfer
->ehci_xfer_flags
);
2493 usb_transfer_complete(xfer
);
2495 /* kprintf("%s: %d TDs aborted\n", __func__, count); */
2501 ehci_timeout(void *addr
)
2503 struct ehci_xfer
*exfer
= addr
;
2504 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)exfer
->xfer
.pipe
;
2505 ehci_softc_t
*sc
= (ehci_softc_t
*)epipe
->pipe
.device
->bus
;
2507 DPRINTF(("ehci_timeout: exfer=%p\n", exfer
));
2510 usbd_dump_pipe(exfer
->xfer
.pipe
);
2514 ehci_abort_xfer(&exfer
->xfer
, USBD_TIMEOUT
);
2518 /* Execute the abort in a process context. */
2519 usb_add_task(exfer
->xfer
.pipe
->device
, &exfer
->abort_task
,
2524 ehci_timeout_task(void *addr
)
2526 usbd_xfer_handle xfer
= addr
;
2528 DPRINTF(("ehci_timeout_task: xfer=%p\n", xfer
));
2530 ehci_abort_xfer(xfer
, USBD_TIMEOUT
);
2535 * Some EHCI chips from VIA / ATI seem to trigger interrupts before writing
2536 * back the qTD status, or miss signalling occasionally under heavy load.
2537 * If the host machine is too fast, we can miss transaction completion - when
2538 * we scan the active list the transaction still seems to be active. This
2539 * generally exhibits itself as a umass stall that never recovers.
2541 * We work around this behaviour by setting up this callback after any softintr
2542 * that completes with transactions still pending, giving us another chance to
2543 * check for completion after the writeback has taken place.
2546 ehci_intrlist_timeout(void *arg
)
2548 ehci_softc_t
*sc
= arg
;
2550 DPRINTFN(3, ("ehci_intrlist_timeout\n"));
2551 usb_schedsoftintr(&sc
->sc_bus
);
2554 /************************/
2557 ehci_device_ctrl_transfer(usbd_xfer_handle xfer
)
2561 /* Insert last in queue. */
2562 err
= usb_insert_transfer(xfer
);
2566 /* Pipe isn't running, start first */
2567 return (ehci_device_ctrl_start(STAILQ_FIRST(&xfer
->pipe
->queue
)));
2571 ehci_device_ctrl_start(usbd_xfer_handle xfer
)
2573 ehci_softc_t
*sc
= (ehci_softc_t
*)xfer
->pipe
->device
->bus
;
2577 return (USBD_IOERROR
);
2580 if (!(xfer
->rqflags
& URQ_REQUEST
)) {
2582 kprintf("ehci_device_ctrl_transfer: not a request\n");
2583 return (USBD_INVAL
);
2587 err
= ehci_device_request(xfer
);
2591 if (sc
->sc_bus
.use_polling
)
2592 ehci_waitintr(sc
, xfer
);
2593 return (USBD_IN_PROGRESS
);
2597 ehci_device_ctrl_done(usbd_xfer_handle xfer
)
2599 struct ehci_xfer
*ex
= EXFER(xfer
);
2600 ehci_softc_t
*sc
= (ehci_softc_t
*)xfer
->pipe
->device
->bus
;
2601 /*struct ehci_pipe *epipe = (struct ehci_pipe *)xfer->pipe;*/
2603 DPRINTFN(10,("ehci_ctrl_done: xfer=%p\n", xfer
));
2606 if (!(xfer
->rqflags
& URQ_REQUEST
)) {
2607 panic("ehci_ctrl_done: not a request");
2611 if (xfer
->status
!= USBD_NOMEM
&& ehci_active_intr_list(ex
)) {
2612 ehci_del_intr_list(ex
); /* remove from active list */
2613 ehci_free_sqtd_chain(sc
, ex
->sqtdstart
, NULL
);
2616 DPRINTFN(5, ("ehci_ctrl_done: length=%d\n", xfer
->actlen
));
2619 /* Abort a device control request. */
2621 ehci_device_ctrl_abort(usbd_xfer_handle xfer
)
2623 DPRINTF(("ehci_device_ctrl_abort: xfer=%p\n", xfer
));
2624 ehci_abort_xfer(xfer
, USBD_CANCELLED
);
2627 /* Close a device control pipe. */
2629 ehci_device_ctrl_close(usbd_pipe_handle pipe
)
2631 ehci_softc_t
*sc
= (ehci_softc_t
*)pipe
->device
->bus
;
2632 /*struct ehci_pipe *epipe = (struct ehci_pipe *)pipe;*/
2634 DPRINTF(("ehci_device_ctrl_close: pipe=%p\n", pipe
));
2635 ehci_close_pipe(pipe
, sc
->sc_async_head
);
2639 ehci_device_request(usbd_xfer_handle xfer
)
2641 #define exfer EXFER(xfer)
2642 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)xfer
->pipe
;
2643 usb_device_request_t
*req
= &xfer
->request
;
2644 usbd_device_handle dev
= epipe
->pipe
.device
;
2645 ehci_softc_t
*sc
= (ehci_softc_t
*)dev
->bus
;
2646 ehci_soft_qtd_t
*setup
, *stat
, *next
;
2647 ehci_soft_qh_t
*sqh
;
2650 int addr
= dev
->address
;
2653 isread
= req
->bmRequestType
& UT_READ
;
2654 len
= UGETW(req
->wLength
);
2656 DPRINTFN(3,("ehci_device_request: type=0x%02x, request=0x%02x, "
2657 "wValue=0x%04x, wIndex=0x%04x len=%d, addr=%d, endpt=%d\n",
2658 req
->bmRequestType
, req
->bRequest
, UGETW(req
->wValue
),
2659 UGETW(req
->wIndex
), len
, dev
->address
,
2660 epipe
->pipe
.endpoint
->edesc
->bEndpointAddress
));
2662 setup
= ehci_alloc_sqtd(sc
);
2663 if (setup
== NULL
) {
2667 stat
= ehci_alloc_sqtd(sc
);
2674 epipe
->u
.ctl
.length
= len
;
2677 /* Update device address and length since they may have changed
2678 during the setup of the control pipe in usbd_new_device(). */
2679 /* XXX This only needs to be done once, but it's too early in open. */
2680 /* XXXX Should not touch ED here! */
2682 (sqh
->qh
.qh_endp
& htole32(~(EHCI_QH_ADDRMASK
| EHCI_QH_MPLMASK
))) |
2684 EHCI_QH_SET_ADDR(addr
) |
2685 EHCI_QH_SET_MPL(UGETW(epipe
->pipe
.endpoint
->edesc
->wMaxPacketSize
))
2689 /* Set up data transaction */
2691 ehci_soft_qtd_t
*end
;
2693 err
= ehci_alloc_sqtd_chain(epipe
, sc
, len
, isread
, xfer
,
2697 end
->qtd
.qtd_status
&= htole32(~EHCI_QTD_IOC
);
2698 end
->nextqtd
= stat
;
2700 end
->qtd
.qtd_altnext
= htole32(stat
->physaddr
);
2705 memcpy(KERNADDR(&epipe
->u
.ctl
.reqdma
, 0), req
, sizeof *req
);
2708 setup
->qtd
.qtd_status
= htole32(
2710 EHCI_QTD_SET_PID(EHCI_QTD_PID_SETUP
) |
2711 EHCI_QTD_SET_CERR(3) |
2712 EHCI_QTD_SET_TOGGLE(0) |
2713 EHCI_QTD_SET_BYTES(sizeof *req
)
2715 setup
->qtd
.qtd_buffer
[0] = htole32(DMAADDR(&epipe
->u
.ctl
.reqdma
, 0));
2716 setup
->qtd
.qtd_buffer_hi
[0] = 0;
2717 setup
->nextqtd
= next
;
2718 setup
->qtd
.qtd_next
= setup
->qtd
.qtd_altnext
= htole32(next
->physaddr
);
2720 setup
->len
= sizeof *req
;
2722 stat
->qtd
.qtd_status
= htole32(
2724 EHCI_QTD_SET_PID(isread
? EHCI_QTD_PID_OUT
: EHCI_QTD_PID_IN
) |
2725 EHCI_QTD_SET_CERR(3) |
2726 EHCI_QTD_SET_TOGGLE(1) |
2729 stat
->qtd
.qtd_buffer
[0] = 0; /* XXX not needed? */
2730 stat
->qtd
.qtd_buffer_hi
[0] = 0; /* XXX not needed? */
2731 stat
->nextqtd
= NULL
;
2732 stat
->qtd
.qtd_next
= stat
->qtd
.qtd_altnext
= EHCI_NULL
;
2737 if (ehcidebug
> 5) {
2738 DPRINTF(("ehci_device_request:\n"));
2740 ehci_dump_sqtds(setup
);
2744 exfer
->sqtdstart
= setup
;
2745 exfer
->sqtdend
= stat
;
2747 if (!exfer
->isdone
) {
2748 kprintf("ehci_device_request: not done, exfer=%p\n", exfer
);
2753 /* Insert qTD in QH list. */
2755 ehci_set_qh_qtd(sqh
, setup
);
2756 if (xfer
->timeout
&& !sc
->sc_bus
.use_polling
) {
2757 callout_reset(&xfer
->timeout_handle
, MS_TO_TICKS(xfer
->timeout
),
2758 ehci_timeout
, xfer
);
2760 ehci_add_intr_list(sc
, exfer
);
2761 xfer
->status
= USBD_IN_PROGRESS
;
2765 if (ehcidebug
> 10) {
2766 DPRINTF(("ehci_device_request: status=%x\n",
2767 EOREAD4(sc
, EHCI_USBSTS
)));
2770 ehci_dump_sqh(sc
->sc_async_head
);
2772 ehci_dump_sqtds(setup
);
2776 return (USBD_NORMAL_COMPLETION
);
2779 ehci_free_sqtd(sc
, stat
);
2781 ehci_free_sqtd(sc
, setup
);
2783 DPRINTFN(-1,("ehci_device_request: no memory\n"));
2785 usb_transfer_complete(xfer
);
2790 /************************/
2793 ehci_device_bulk_transfer(usbd_xfer_handle xfer
)
2797 /* Insert last in queue. */
2798 err
= usb_insert_transfer(xfer
);
2802 /* Pipe isn't running, start first */
2803 return (ehci_device_bulk_start(STAILQ_FIRST(&xfer
->pipe
->queue
)));
2807 ehci_device_bulk_start(usbd_xfer_handle xfer
)
2809 #define exfer EXFER(xfer)
2810 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)xfer
->pipe
;
2811 usbd_device_handle dev
= epipe
->pipe
.device
;
2812 ehci_softc_t
*sc
= (ehci_softc_t
*)dev
->bus
;
2813 ehci_soft_qtd_t
*data
, *dataend
;
2814 ehci_soft_qh_t
*sqh
;
2816 int len
, isread
, endpt
;
2818 DPRINTFN(2, ("ehci_device_bulk_start: xfer=%p len=%d flags=%d\n",
2819 xfer
, xfer
->length
, xfer
->flags
));
2822 return (USBD_IOERROR
);
2825 if (xfer
->rqflags
& URQ_REQUEST
)
2826 panic("ehci_device_bulk_start: a request");
2830 endpt
= epipe
->pipe
.endpoint
->edesc
->bEndpointAddress
;
2831 isread
= UE_GET_DIR(endpt
) == UE_DIR_IN
;
2834 epipe
->u
.bulk
.length
= len
;
2836 err
= ehci_alloc_sqtd_chain(epipe
, sc
, len
, isread
, xfer
, &data
,
2839 DPRINTFN(-1,("ehci_device_bulk_start: no memory\n"));
2841 usb_transfer_complete(xfer
);
2846 if (ehcidebug
> 5) {
2847 DPRINTF(("ehci_device_bulk_start: data(1)\n"));
2849 ehci_dump_sqtds(data
);
2853 /* Set up interrupt info. */
2854 exfer
->sqtdstart
= data
;
2855 exfer
->sqtdend
= dataend
;
2857 if (!exfer
->isdone
) {
2858 kprintf("ehci_device_bulk_start: not done, ex=%p\n", exfer
);
2864 ehci_set_qh_qtd(sqh
, data
);
2865 if (xfer
->timeout
&& !sc
->sc_bus
.use_polling
) {
2866 callout_reset(&xfer
->timeout_handle
, MS_TO_TICKS(xfer
->timeout
),
2867 ehci_timeout
, xfer
);
2869 ehci_add_intr_list(sc
, exfer
);
2870 xfer
->status
= USBD_IN_PROGRESS
;
2874 if (ehcidebug
> 10) {
2875 DPRINTF(("ehci_device_bulk_start: data(2)\n"));
2877 DPRINTF(("ehci_device_bulk_start: data(3)\n"));
2880 kprintf("async_head:\n");
2881 ehci_dump_sqh(sc
->sc_async_head
);
2885 ehci_dump_sqtds(data
);
2889 if (sc
->sc_bus
.use_polling
)
2890 ehci_waitintr(sc
, xfer
);
2892 return (USBD_IN_PROGRESS
);
2897 ehci_device_bulk_abort(usbd_xfer_handle xfer
)
2899 DPRINTF(("ehci_device_bulk_abort: xfer=%p\n", xfer
));
2900 ehci_abort_xfer(xfer
, USBD_CANCELLED
);
2904 * Close a device bulk pipe.
2907 ehci_device_bulk_close(usbd_pipe_handle pipe
)
2909 ehci_softc_t
*sc
= (ehci_softc_t
*)pipe
->device
->bus
;
2911 DPRINTF(("ehci_device_bulk_close: pipe=%p\n", pipe
));
2912 ehci_close_pipe(pipe
, sc
->sc_async_head
);
2916 ehci_device_bulk_done(usbd_xfer_handle xfer
)
2918 struct ehci_xfer
*ex
= EXFER(xfer
);
2919 ehci_softc_t
*sc
= (ehci_softc_t
*)xfer
->pipe
->device
->bus
;
2920 /*struct ehci_pipe *epipe = (struct ehci_pipe *)xfer->pipe;*/
2922 DPRINTFN(10,("ehci_bulk_done: xfer=%p, actlen=%d\n",
2923 xfer
, xfer
->actlen
));
2925 if (xfer
->status
!= USBD_NOMEM
&& ehci_active_intr_list(ex
)) {
2926 ehci_del_intr_list(ex
); /* remove from active list */
2927 ehci_free_sqtd_chain(sc
, ex
->sqtdstart
, NULL
);
2930 DPRINTFN(5, ("ehci_bulk_done: length=%d\n", xfer
->actlen
));
2933 /************************/
2936 ehci_device_setintr(ehci_softc_t
*sc
, ehci_soft_qh_t
*sqh
, int ival
)
2938 struct ehci_soft_islot
*isp
;
2941 /* Find a poll rate that is large enough. */
2942 for (lev
= EHCI_IPOLLRATES
- 1; lev
> 0; lev
--)
2943 if (EHCI_ILEV_IVAL(lev
) <= ival
)
2946 /* Pick an interrupt slot at the right level. */
2947 /* XXX could do better than picking at random. */
2948 islot
= EHCI_IQHIDX(lev
, karc4random());
2951 isp
= &sc
->sc_islots
[islot
];
2952 ehci_add_qh(sqh
, isp
->sqh
);
2954 return (USBD_NORMAL_COMPLETION
);
2958 ehci_device_intr_transfer(usbd_xfer_handle xfer
)
2962 /* Insert last in queue. */
2963 err
= usb_insert_transfer(xfer
);
2968 * Pipe isn't running (otherwise err would be USBD_INPROG),
2969 * so start it first.
2971 return (ehci_device_intr_start(STAILQ_FIRST(&xfer
->pipe
->queue
)));
2975 ehci_device_intr_start(usbd_xfer_handle xfer
)
2977 #define exfer EXFER(xfer)
2978 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)xfer
->pipe
;
2979 usbd_device_handle dev
= xfer
->pipe
->device
;
2980 ehci_softc_t
*sc
= (ehci_softc_t
*)dev
->bus
;
2981 ehci_soft_qtd_t
*data
, *dataend
;
2982 ehci_soft_qh_t
*sqh
;
2984 int len
, isread
, endpt
;
2986 DPRINTFN(2, ("ehci_device_intr_start: xfer=%p len=%d flags=%d\n",
2987 xfer
, xfer
->length
, xfer
->flags
));
2990 return (USBD_IOERROR
);
2993 if (xfer
->rqflags
& URQ_REQUEST
)
2994 panic("ehci_device_intr_start: a request");
2998 endpt
= epipe
->pipe
.endpoint
->edesc
->bEndpointAddress
;
2999 isread
= UE_GET_DIR(endpt
) == UE_DIR_IN
;
3002 epipe
->u
.intr
.length
= len
;
3004 err
= ehci_alloc_sqtd_chain(epipe
, sc
, len
, isread
, xfer
, &data
,
3007 DPRINTFN(-1, ("ehci_device_intr_start: no memory\n"));
3009 usb_transfer_complete(xfer
);
3014 if (ehcidebug
> 5) {
3015 DPRINTF(("ehci_device_intr_start: data(1)\n"));
3017 ehci_dump_sqtds(data
);
3021 /* Set up interrupt info. */
3022 exfer
->sqtdstart
= data
;
3023 exfer
->sqtdend
= dataend
;
3025 if (!exfer
->isdone
) {
3026 kprintf("ehci_device_intr_start: not done, ex=%p\n", exfer
);
3032 ehci_set_qh_qtd(sqh
, data
);
3033 if (xfer
->timeout
&& !sc
->sc_bus
.use_polling
) {
3034 callout_reset(&xfer
->timeout_handle
, MS_TO_TICKS(xfer
->timeout
),
3035 ehci_timeout
, xfer
);
3037 ehci_add_intr_list(sc
, exfer
);
3038 xfer
->status
= USBD_IN_PROGRESS
;
3042 if (ehcidebug
> 10) {
3043 DPRINTF(("ehci_device_intr_start: data(2)\n"));
3045 DPRINTF(("ehci_device_intr_start: data(3)\n"));
3049 ehci_dump_sqtds(data
);
3053 if (sc
->sc_bus
.use_polling
)
3054 ehci_waitintr(sc
, xfer
);
3056 return (USBD_IN_PROGRESS
);
3061 ehci_device_intr_abort(usbd_xfer_handle xfer
)
3063 DPRINTFN(1, ("ehci_device_intr_abort: xfer=%p\n", xfer
));
3064 if (xfer
->pipe
->intrxfer
== xfer
) {
3065 DPRINTFN(1, ("ehci_device_intr_abort: remove\n"));
3066 xfer
->pipe
->intrxfer
= NULL
;
3068 ehci_abort_xfer(xfer
, USBD_CANCELLED
);
3072 ehci_device_intr_close(usbd_pipe_handle pipe
)
3074 ehci_softc_t
*sc
= (ehci_softc_t
*)pipe
->device
->bus
;
3075 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)pipe
;
3076 struct ehci_soft_islot
*isp
;
3078 isp
= &sc
->sc_islots
[epipe
->sqh
->islot
];
3079 ehci_close_pipe(pipe
, isp
->sqh
);
3083 ehci_device_intr_done(usbd_xfer_handle xfer
)
3085 #define exfer EXFER(xfer)
3086 struct ehci_xfer
*ex
= EXFER(xfer
);
3087 ehci_softc_t
*sc
= (ehci_softc_t
*)xfer
->pipe
->device
->bus
;
3088 struct ehci_pipe
*epipe
= (struct ehci_pipe
*)xfer
->pipe
;
3089 ehci_soft_qtd_t
*data
, *dataend
;
3090 ehci_soft_qh_t
*sqh
;
3092 int len
, isread
, endpt
;
3094 DPRINTFN(10, ("ehci_device_intr_done: xfer=%p, actlen=%d\n",
3095 xfer
, xfer
->actlen
));
3097 if (xfer
->pipe
->repeat
) {
3098 ehci_free_sqtd_chain(sc
, ex
->sqtdstart
, NULL
);
3100 len
= epipe
->u
.intr
.length
;
3102 endpt
= epipe
->pipe
.endpoint
->edesc
->bEndpointAddress
;
3103 isread
= UE_GET_DIR(endpt
) == UE_DIR_IN
;
3106 err
= ehci_alloc_sqtd_chain(epipe
, sc
, len
, isread
, xfer
,
3109 DPRINTFN(-1, ("ehci_device_intr_done: no memory\n"));
3114 /* Set up interrupt info. */
3115 exfer
->sqtdstart
= data
;
3116 exfer
->sqtdend
= dataend
;
3118 if (!exfer
->isdone
) {
3119 kprintf("ehci_device_intr_done: not done, ex=%p\n",
3126 ehci_set_qh_qtd(sqh
, data
);
3127 if (xfer
->timeout
&& !sc
->sc_bus
.use_polling
) {
3128 callout_reset(&xfer
->timeout_handle
,
3129 MS_TO_TICKS(xfer
->timeout
), ehci_timeout
, xfer
);
3133 xfer
->status
= USBD_IN_PROGRESS
;
3134 } else if (xfer
->status
!= USBD_NOMEM
&& ehci_active_intr_list(ex
)) {
3135 ehci_del_intr_list(ex
); /* remove from active list */
3136 ehci_free_sqtd_chain(sc
, ex
->sqtdstart
, NULL
);
3141 /************************/
3144 ehci_device_isoc_transfer(usbd_xfer_handle xfer
)
3146 return USBD_IOERROR
;
3150 ehci_device_isoc_start(usbd_xfer_handle xfer
)
3152 return USBD_IOERROR
;
3156 ehci_device_isoc_abort(usbd_xfer_handle xfer
)
3161 ehci_device_isoc_close(usbd_pipe_handle pipe
)
3166 ehci_device_isoc_done(usbd_xfer_handle xfer
)