xref: /freebsd/sys/dev/usb/controller/xhci.c (revision bae28eaa8d26ddd67e9af51979f1a54599e9b3a8)
1 /* $FreeBSD$ */
2 /*-
3  * Copyright (c) 2010 Hans Petter Selasky. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 /*
28  * USB eXtensible Host Controller Interface, a.k.a. USB 3.0 controller.
29  *
30  * The XHCI 1.0 spec can be found at
31  * http://www.intel.com/technology/usb/download/xHCI_Specification_for_USB.pdf
32  * and the USB 3.0 spec at
33  * http://www.usb.org/developers/docs/usb_30_spec_060910.zip
34  */
35 
36 /*
37  * A few words about the design implementation: This driver emulates
38  * the concept about TDs which is found in EHCI specification. This
39  * way we achieve that the USB controller drivers look similar to
40  * eachother which makes it easier to understand the code.
41  */
42 
43 #ifdef USB_GLOBAL_INCLUDE_FILE
44 #include USB_GLOBAL_INCLUDE_FILE
45 #else
46 #include <sys/stdint.h>
47 #include <sys/stddef.h>
48 #include <sys/param.h>
49 #include <sys/queue.h>
50 #include <sys/types.h>
51 #include <sys/systm.h>
52 #include <sys/kernel.h>
53 #include <sys/bus.h>
54 #include <sys/module.h>
55 #include <sys/lock.h>
56 #include <sys/mutex.h>
57 #include <sys/condvar.h>
58 #include <sys/sysctl.h>
59 #include <sys/sx.h>
60 #include <sys/unistd.h>
61 #include <sys/callout.h>
62 #include <sys/malloc.h>
63 #include <sys/priv.h>
64 
65 #include <dev/usb/usb.h>
66 #include <dev/usb/usbdi.h>
67 
68 #define	USB_DEBUG_VAR xhcidebug
69 
70 #include <dev/usb/usb_core.h>
71 #include <dev/usb/usb_debug.h>
72 #include <dev/usb/usb_busdma.h>
73 #include <dev/usb/usb_process.h>
74 #include <dev/usb/usb_transfer.h>
75 #include <dev/usb/usb_device.h>
76 #include <dev/usb/usb_hub.h>
77 #include <dev/usb/usb_util.h>
78 
79 #include <dev/usb/usb_controller.h>
80 #include <dev/usb/usb_bus.h>
81 #endif			/* USB_GLOBAL_INCLUDE_FILE */
82 
83 #include <dev/usb/controller/xhci.h>
84 #include <dev/usb/controller/xhcireg.h>
85 
86 #define	XHCI_BUS2SC(bus) \
87    ((struct xhci_softc *)(((uint8_t *)(bus)) - \
88     ((uint8_t *)&(((struct xhci_softc *)0)->sc_bus))))
89 
90 static SYSCTL_NODE(_hw_usb, OID_AUTO, xhci, CTLFLAG_RW, 0, "USB XHCI");
91 
92 static int xhcistreams;
93 SYSCTL_INT(_hw_usb_xhci, OID_AUTO, streams, CTLFLAG_RWTUN,
94     &xhcistreams, 0, "Set to enable streams mode support");
95 
96 #ifdef USB_DEBUG
97 static int xhcidebug;
98 static int xhciroute;
99 static int xhcipolling;
100 static int xhcidma32;
101 
102 SYSCTL_INT(_hw_usb_xhci, OID_AUTO, debug, CTLFLAG_RWTUN,
103     &xhcidebug, 0, "Debug level");
104 SYSCTL_INT(_hw_usb_xhci, OID_AUTO, xhci_port_route, CTLFLAG_RWTUN,
105     &xhciroute, 0, "Routing bitmap for switching EHCI ports to the XHCI controller");
106 SYSCTL_INT(_hw_usb_xhci, OID_AUTO, use_polling, CTLFLAG_RWTUN,
107     &xhcipolling, 0, "Set to enable software interrupt polling for the XHCI controller");
108 SYSCTL_INT(_hw_usb_xhci, OID_AUTO, dma32, CTLFLAG_RWTUN,
109     &xhcidma32, 0, "Set to only use 32-bit DMA for the XHCI controller");
110 #else
111 #define	xhciroute 0
112 #define	xhcidma32 0
113 #endif
114 
115 #define	XHCI_INTR_ENDPT 1
116 
117 struct xhci_std_temp {
118 	struct xhci_softc	*sc;
119 	struct usb_page_cache	*pc;
120 	struct xhci_td		*td;
121 	struct xhci_td		*td_next;
122 	uint32_t		len;
123 	uint32_t		offset;
124 	uint32_t		max_packet_size;
125 	uint32_t		average;
126 	uint16_t		isoc_delta;
127 	uint16_t		isoc_frame;
128 	uint8_t			shortpkt;
129 	uint8_t			multishort;
130 	uint8_t			last_frame;
131 	uint8_t			trb_type;
132 	uint8_t			direction;
133 	uint8_t			tbc;
134 	uint8_t			tlbpc;
135 	uint8_t			step_td;
136 	uint8_t			do_isoc_sync;
137 };
138 
139 static void	xhci_do_poll(struct usb_bus *);
140 static void	xhci_device_done(struct usb_xfer *, usb_error_t);
141 static void	xhci_root_intr(struct xhci_softc *);
142 static void	xhci_free_device_ext(struct usb_device *);
143 static struct xhci_endpoint_ext *xhci_get_endpoint_ext(struct usb_device *,
144 		    struct usb_endpoint_descriptor *);
145 static usb_proc_callback_t xhci_configure_msg;
146 static usb_error_t xhci_configure_device(struct usb_device *);
147 static usb_error_t xhci_configure_endpoint(struct usb_device *,
148 		   struct usb_endpoint_descriptor *, struct xhci_endpoint_ext *,
149 		   uint16_t, uint8_t, uint8_t, uint8_t, uint16_t, uint16_t,
150 		   uint8_t);
151 static usb_error_t xhci_configure_mask(struct usb_device *,
152 		    uint32_t, uint8_t);
153 static usb_error_t xhci_cmd_evaluate_ctx(struct xhci_softc *,
154 		    uint64_t, uint8_t);
155 static void xhci_endpoint_doorbell(struct usb_xfer *);
156 static void xhci_ctx_set_le32(struct xhci_softc *sc, volatile uint32_t *ptr, uint32_t val);
157 static uint32_t xhci_ctx_get_le32(struct xhci_softc *sc, volatile uint32_t *ptr);
158 static void xhci_ctx_set_le64(struct xhci_softc *sc, volatile uint64_t *ptr, uint64_t val);
159 #ifdef USB_DEBUG
160 static uint64_t xhci_ctx_get_le64(struct xhci_softc *sc, volatile uint64_t *ptr);
161 #endif
162 
163 static const struct usb_bus_methods xhci_bus_methods;
164 
165 #ifdef USB_DEBUG
166 static void
167 xhci_dump_trb(struct xhci_trb *trb)
168 {
169 	DPRINTFN(5, "trb = %p\n", trb);
170 	DPRINTFN(5, "qwTrb0 = 0x%016llx\n", (long long)le64toh(trb->qwTrb0));
171 	DPRINTFN(5, "dwTrb2 = 0x%08x\n", le32toh(trb->dwTrb2));
172 	DPRINTFN(5, "dwTrb3 = 0x%08x\n", le32toh(trb->dwTrb3));
173 }
174 
175 static void
176 xhci_dump_endpoint(struct xhci_softc *sc, struct xhci_endp_ctx *pep)
177 {
178 	DPRINTFN(5, "pep = %p\n", pep);
179 	DPRINTFN(5, "dwEpCtx0=0x%08x\n", xhci_ctx_get_le32(sc, &pep->dwEpCtx0));
180 	DPRINTFN(5, "dwEpCtx1=0x%08x\n", xhci_ctx_get_le32(sc, &pep->dwEpCtx1));
181 	DPRINTFN(5, "qwEpCtx2=0x%016llx\n", (long long)xhci_ctx_get_le64(sc, &pep->qwEpCtx2));
182 	DPRINTFN(5, "dwEpCtx4=0x%08x\n", xhci_ctx_get_le32(sc, &pep->dwEpCtx4));
183 	DPRINTFN(5, "dwEpCtx5=0x%08x\n", xhci_ctx_get_le32(sc, &pep->dwEpCtx5));
184 	DPRINTFN(5, "dwEpCtx6=0x%08x\n", xhci_ctx_get_le32(sc, &pep->dwEpCtx6));
185 	DPRINTFN(5, "dwEpCtx7=0x%08x\n", xhci_ctx_get_le32(sc, &pep->dwEpCtx7));
186 }
187 
188 static void
189 xhci_dump_device(struct xhci_softc *sc, struct xhci_slot_ctx *psl)
190 {
191 	DPRINTFN(5, "psl = %p\n", psl);
192 	DPRINTFN(5, "dwSctx0=0x%08x\n", xhci_ctx_get_le32(sc, &psl->dwSctx0));
193 	DPRINTFN(5, "dwSctx1=0x%08x\n", xhci_ctx_get_le32(sc, &psl->dwSctx1));
194 	DPRINTFN(5, "dwSctx2=0x%08x\n", xhci_ctx_get_le32(sc, &psl->dwSctx2));
195 	DPRINTFN(5, "dwSctx3=0x%08x\n", xhci_ctx_get_le32(sc, &psl->dwSctx3));
196 }
197 #endif
198 
199 uint8_t
200 xhci_use_polling(void)
201 {
202 #ifdef USB_DEBUG
203 	return (xhcipolling != 0);
204 #else
205 	return (0);
206 #endif
207 }
208 
209 static void
210 xhci_iterate_hw_softc(struct usb_bus *bus, usb_bus_mem_sub_cb_t *cb)
211 {
212 	struct xhci_softc *sc = XHCI_BUS2SC(bus);
213 	uint8_t i;
214 
215 	cb(bus, &sc->sc_hw.root_pc, &sc->sc_hw.root_pg,
216 	   sizeof(struct xhci_hw_root), XHCI_PAGE_SIZE);
217 
218 	cb(bus, &sc->sc_hw.ctx_pc, &sc->sc_hw.ctx_pg,
219 	   sizeof(struct xhci_dev_ctx_addr), XHCI_PAGE_SIZE);
220 
221 	for (i = 0; i != XHCI_MAX_SCRATCHPADS; i++) {
222 		cb(bus, &sc->sc_hw.scratch_pc[i], &sc->sc_hw.scratch_pg[i],
223 		    XHCI_PAGE_SIZE, XHCI_PAGE_SIZE);
224 	}
225 }
226 
227 static void
228 xhci_ctx_set_le32(struct xhci_softc *sc, volatile uint32_t *ptr, uint32_t val)
229 {
230 	if (sc->sc_ctx_is_64_byte) {
231 		uint32_t offset;
232 		/* exploit the fact that our structures are XHCI_PAGE_SIZE aligned */
233 		/* all contexts are initially 32-bytes */
234 		offset = ((uintptr_t)ptr) & ((XHCI_PAGE_SIZE - 1) & ~(31U));
235 		ptr = (volatile uint32_t *)(((volatile uint8_t *)ptr) + offset);
236 	}
237 	*ptr = htole32(val);
238 }
239 
240 static uint32_t
241 xhci_ctx_get_le32(struct xhci_softc *sc, volatile uint32_t *ptr)
242 {
243 	if (sc->sc_ctx_is_64_byte) {
244 		uint32_t offset;
245 		/* exploit the fact that our structures are XHCI_PAGE_SIZE aligned */
246 		/* all contexts are initially 32-bytes */
247 		offset = ((uintptr_t)ptr) & ((XHCI_PAGE_SIZE - 1) & ~(31U));
248 		ptr = (volatile uint32_t *)(((volatile uint8_t *)ptr) + offset);
249 	}
250 	return (le32toh(*ptr));
251 }
252 
253 static void
254 xhci_ctx_set_le64(struct xhci_softc *sc, volatile uint64_t *ptr, uint64_t val)
255 {
256 	if (sc->sc_ctx_is_64_byte) {
257 		uint32_t offset;
258 		/* exploit the fact that our structures are XHCI_PAGE_SIZE aligned */
259 		/* all contexts are initially 32-bytes */
260 		offset = ((uintptr_t)ptr) & ((XHCI_PAGE_SIZE - 1) & ~(31U));
261 		ptr = (volatile uint64_t *)(((volatile uint8_t *)ptr) + offset);
262 	}
263 	*ptr = htole64(val);
264 }
265 
266 #ifdef USB_DEBUG
267 static uint64_t
268 xhci_ctx_get_le64(struct xhci_softc *sc, volatile uint64_t *ptr)
269 {
270 	if (sc->sc_ctx_is_64_byte) {
271 		uint32_t offset;
272 		/* exploit the fact that our structures are XHCI_PAGE_SIZE aligned */
273 		/* all contexts are initially 32-bytes */
274 		offset = ((uintptr_t)ptr) & ((XHCI_PAGE_SIZE - 1) & ~(31U));
275 		ptr = (volatile uint64_t *)(((volatile uint8_t *)ptr) + offset);
276 	}
277 	return (le64toh(*ptr));
278 }
279 #endif
280 
281 static int
282 xhci_reset_command_queue_locked(struct xhci_softc *sc)
283 {
284 	struct usb_page_search buf_res;
285 	struct xhci_hw_root *phwr;
286 	uint64_t addr;
287 	uint32_t temp;
288 
289 	DPRINTF("\n");
290 
291 	temp = XREAD4(sc, oper, XHCI_CRCR_LO);
292 	if (temp & XHCI_CRCR_LO_CRR) {
293 		DPRINTF("Command ring running\n");
294 		temp &= ~(XHCI_CRCR_LO_CS | XHCI_CRCR_LO_CA);
295 
296 		/*
297 		 * Try to abort the last command as per section
298 		 * 4.6.1.2 "Aborting a Command" of the XHCI
299 		 * specification:
300 		 */
301 
302 		/* stop and cancel */
303 		XWRITE4(sc, oper, XHCI_CRCR_LO, temp | XHCI_CRCR_LO_CS);
304 		XWRITE4(sc, oper, XHCI_CRCR_HI, 0);
305 
306 		XWRITE4(sc, oper, XHCI_CRCR_LO, temp | XHCI_CRCR_LO_CA);
307 		XWRITE4(sc, oper, XHCI_CRCR_HI, 0);
308 
309  		/* wait 250ms */
310  		usb_pause_mtx(&sc->sc_bus.bus_mtx, hz / 4);
311 
312 		/* check if command ring is still running */
313 		temp = XREAD4(sc, oper, XHCI_CRCR_LO);
314 		if (temp & XHCI_CRCR_LO_CRR) {
315 			DPRINTF("Comand ring still running\n");
316 			return (USB_ERR_IOERROR);
317 		}
318 	}
319 
320 	/* reset command ring */
321 	sc->sc_command_ccs = 1;
322 	sc->sc_command_idx = 0;
323 
324 	usbd_get_page(&sc->sc_hw.root_pc, 0, &buf_res);
325 
326 	/* set up command ring control base address */
327 	addr = buf_res.physaddr;
328 	phwr = buf_res.buffer;
329 	addr += (uintptr_t)&((struct xhci_hw_root *)0)->hwr_commands[0];
330 
331 	DPRINTF("CRCR=0x%016llx\n", (unsigned long long)addr);
332 
333 	memset(phwr->hwr_commands, 0, sizeof(phwr->hwr_commands));
334 	phwr->hwr_commands[XHCI_MAX_COMMANDS - 1].qwTrb0 = htole64(addr);
335 
336 	usb_pc_cpu_flush(&sc->sc_hw.root_pc);
337 
338 	XWRITE4(sc, oper, XHCI_CRCR_LO, ((uint32_t)addr) | XHCI_CRCR_LO_RCS);
339 	XWRITE4(sc, oper, XHCI_CRCR_HI, (uint32_t)(addr >> 32));
340 
341 	return (0);
342 }
343 
344 usb_error_t
345 xhci_start_controller(struct xhci_softc *sc)
346 {
347 	struct usb_page_search buf_res;
348 	struct xhci_hw_root *phwr;
349 	struct xhci_dev_ctx_addr *pdctxa;
350 	uint64_t addr;
351 	uint32_t temp;
352 	uint16_t i;
353 
354 	DPRINTF("\n");
355 
356 	sc->sc_event_ccs = 1;
357 	sc->sc_event_idx = 0;
358 	sc->sc_command_ccs = 1;
359 	sc->sc_command_idx = 0;
360 
361 	/* Reset controller */
362 	XWRITE4(sc, oper, XHCI_USBCMD, XHCI_CMD_HCRST);
363 
364 	for (i = 0; i != 100; i++) {
365 		usb_pause_mtx(NULL, hz / 100);
366 		temp = (XREAD4(sc, oper, XHCI_USBCMD) & XHCI_CMD_HCRST) |
367 		    (XREAD4(sc, oper, XHCI_USBSTS) & XHCI_STS_CNR);
368 		if (!temp)
369 			break;
370 	}
371 
372 	if (temp) {
373 		device_printf(sc->sc_bus.parent, "Controller "
374 		    "reset timeout.\n");
375 		return (USB_ERR_IOERROR);
376 	}
377 
378 	/* set up number of device slots */
379 	DPRINTF("CONFIG=0x%08x -> 0x%08x\n",
380 	    XREAD4(sc, oper, XHCI_CONFIG), sc->sc_noslot);
381 
382 	XWRITE4(sc, oper, XHCI_CONFIG, sc->sc_noslot);
383 
384 	temp = XREAD4(sc, oper, XHCI_USBSTS);
385 
386 	/* clear interrupts */
387 	XWRITE4(sc, oper, XHCI_USBSTS, temp);
388 	/* disable all device notifications */
389 	XWRITE4(sc, oper, XHCI_DNCTRL, 0);
390 
391 	/* set up device context base address */
392 	usbd_get_page(&sc->sc_hw.ctx_pc, 0, &buf_res);
393 	pdctxa = buf_res.buffer;
394 	memset(pdctxa, 0, sizeof(*pdctxa));
395 
396 	addr = buf_res.physaddr;
397 	addr += (uintptr_t)&((struct xhci_dev_ctx_addr *)0)->qwSpBufPtr[0];
398 
399 	/* slot 0 points to the table of scratchpad pointers */
400 	pdctxa->qwBaaDevCtxAddr[0] = htole64(addr);
401 
402 	for (i = 0; i != sc->sc_noscratch; i++) {
403 		struct usb_page_search buf_scp;
404 		usbd_get_page(&sc->sc_hw.scratch_pc[i], 0, &buf_scp);
405 		pdctxa->qwSpBufPtr[i] = htole64((uint64_t)buf_scp.physaddr);
406 	}
407 
408 	addr = buf_res.physaddr;
409 
410 	XWRITE4(sc, oper, XHCI_DCBAAP_LO, (uint32_t)addr);
411 	XWRITE4(sc, oper, XHCI_DCBAAP_HI, (uint32_t)(addr >> 32));
412 	XWRITE4(sc, oper, XHCI_DCBAAP_LO, (uint32_t)addr);
413 	XWRITE4(sc, oper, XHCI_DCBAAP_HI, (uint32_t)(addr >> 32));
414 
415 	/* set up event table size */
416 	DPRINTF("ERSTSZ=0x%08x -> 0x%08x\n",
417 	    XREAD4(sc, runt, XHCI_ERSTSZ(0)), sc->sc_erst_max);
418 
419 	XWRITE4(sc, runt, XHCI_ERSTSZ(0), XHCI_ERSTS_SET(sc->sc_erst_max));
420 
421 	/* set up interrupt rate */
422 	XWRITE4(sc, runt, XHCI_IMOD(0), sc->sc_imod_default);
423 
424 	usbd_get_page(&sc->sc_hw.root_pc, 0, &buf_res);
425 
426 	phwr = buf_res.buffer;
427 	addr = buf_res.physaddr;
428 	addr += (uintptr_t)&((struct xhci_hw_root *)0)->hwr_events[0];
429 
430 	/* reset hardware root structure */
431 	memset(phwr, 0, sizeof(*phwr));
432 
433 	phwr->hwr_ring_seg[0].qwEvrsTablePtr = htole64(addr);
434 	phwr->hwr_ring_seg[0].dwEvrsTableSize = htole32(XHCI_MAX_EVENTS);
435 
436 	DPRINTF("ERDP(0)=0x%016llx\n", (unsigned long long)addr);
437 
438 	XWRITE4(sc, runt, XHCI_ERDP_LO(0), (uint32_t)addr);
439 	XWRITE4(sc, runt, XHCI_ERDP_HI(0), (uint32_t)(addr >> 32));
440 
441 	addr = buf_res.physaddr;
442 
443 	DPRINTF("ERSTBA(0)=0x%016llx\n", (unsigned long long)addr);
444 
445 	XWRITE4(sc, runt, XHCI_ERSTBA_LO(0), (uint32_t)addr);
446 	XWRITE4(sc, runt, XHCI_ERSTBA_HI(0), (uint32_t)(addr >> 32));
447 
448 	/* set up interrupter registers */
449 	temp = XREAD4(sc, runt, XHCI_IMAN(0));
450 	temp |= XHCI_IMAN_INTR_ENA;
451 	XWRITE4(sc, runt, XHCI_IMAN(0), temp);
452 
453 	/* set up command ring control base address */
454 	addr = buf_res.physaddr;
455 	addr += (uintptr_t)&((struct xhci_hw_root *)0)->hwr_commands[0];
456 
457 	DPRINTF("CRCR=0x%016llx\n", (unsigned long long)addr);
458 
459 	XWRITE4(sc, oper, XHCI_CRCR_LO, ((uint32_t)addr) | XHCI_CRCR_LO_RCS);
460 	XWRITE4(sc, oper, XHCI_CRCR_HI, (uint32_t)(addr >> 32));
461 
462 	phwr->hwr_commands[XHCI_MAX_COMMANDS - 1].qwTrb0 = htole64(addr);
463 
464 	usb_bus_mem_flush_all(&sc->sc_bus, &xhci_iterate_hw_softc);
465 
466 	/* Go! */
467 	XWRITE4(sc, oper, XHCI_USBCMD, XHCI_CMD_RS |
468 	    XHCI_CMD_INTE | XHCI_CMD_HSEE);
469 
470 	for (i = 0; i != 100; i++) {
471 		usb_pause_mtx(NULL, hz / 100);
472 		temp = XREAD4(sc, oper, XHCI_USBSTS) & XHCI_STS_HCH;
473 		if (!temp)
474 			break;
475 	}
476 	if (temp) {
477 		XWRITE4(sc, oper, XHCI_USBCMD, 0);
478 		device_printf(sc->sc_bus.parent, "Run timeout.\n");
479 		return (USB_ERR_IOERROR);
480 	}
481 
482 	/* catch any lost interrupts */
483 	xhci_do_poll(&sc->sc_bus);
484 
485 	if (sc->sc_port_route != NULL) {
486 		/* Route all ports to the XHCI by default */
487 		sc->sc_port_route(sc->sc_bus.parent,
488 		    ~xhciroute, xhciroute);
489 	}
490 	return (0);
491 }
492 
493 usb_error_t
494 xhci_halt_controller(struct xhci_softc *sc)
495 {
496 	uint32_t temp;
497 	uint16_t i;
498 
499 	DPRINTF("\n");
500 
501 	sc->sc_capa_off = 0;
502 	sc->sc_oper_off = XREAD1(sc, capa, XHCI_CAPLENGTH);
503 	sc->sc_runt_off = XREAD4(sc, capa, XHCI_RTSOFF) & ~0xF;
504 	sc->sc_door_off = XREAD4(sc, capa, XHCI_DBOFF) & ~0x3;
505 
506 	/* Halt controller */
507 	XWRITE4(sc, oper, XHCI_USBCMD, 0);
508 
509 	for (i = 0; i != 100; i++) {
510 		usb_pause_mtx(NULL, hz / 100);
511 		temp = XREAD4(sc, oper, XHCI_USBSTS) & XHCI_STS_HCH;
512 		if (temp)
513 			break;
514 	}
515 
516 	if (!temp) {
517 		device_printf(sc->sc_bus.parent, "Controller halt timeout.\n");
518 		return (USB_ERR_IOERROR);
519 	}
520 	return (0);
521 }
522 
523 usb_error_t
524 xhci_init(struct xhci_softc *sc, device_t self, uint8_t dma32)
525 {
526 	uint32_t temp;
527 
528 	DPRINTF("\n");
529 
530 	/* initialize some bus fields */
531 	sc->sc_bus.parent = self;
532 
533 	/* set the bus revision */
534 	sc->sc_bus.usbrev = USB_REV_3_0;
535 
536 	/* set up the bus struct */
537 	sc->sc_bus.methods = &xhci_bus_methods;
538 
539 	/* set up devices array */
540 	sc->sc_bus.devices = sc->sc_devices;
541 	sc->sc_bus.devices_max = XHCI_MAX_DEVICES;
542 
543 	/* set default cycle state in case of early interrupts */
544 	sc->sc_event_ccs = 1;
545 	sc->sc_command_ccs = 1;
546 
547 	/* set up bus space offsets */
548 	sc->sc_capa_off = 0;
549 	sc->sc_oper_off = XREAD1(sc, capa, XHCI_CAPLENGTH);
550 	sc->sc_runt_off = XREAD4(sc, capa, XHCI_RTSOFF) & ~0x1F;
551 	sc->sc_door_off = XREAD4(sc, capa, XHCI_DBOFF) & ~0x3;
552 
553 	DPRINTF("CAPLENGTH=0x%x\n", sc->sc_oper_off);
554 	DPRINTF("RUNTIMEOFFSET=0x%x\n", sc->sc_runt_off);
555 	DPRINTF("DOOROFFSET=0x%x\n", sc->sc_door_off);
556 
557 	DPRINTF("xHCI version = 0x%04x\n", XREAD2(sc, capa, XHCI_HCIVERSION));
558 
559 	if (!(XREAD4(sc, oper, XHCI_PAGESIZE) & XHCI_PAGESIZE_4K)) {
560 		device_printf(sc->sc_bus.parent, "Controller does "
561 		    "not support 4K page size.\n");
562 		return (ENXIO);
563 	}
564 
565 	temp = XREAD4(sc, capa, XHCI_HCSPARAMS0);
566 
567 	DPRINTF("HCS0 = 0x%08x\n", temp);
568 
569 	/* set up context size */
570 	if (XHCI_HCS0_CSZ(temp)) {
571 		sc->sc_ctx_is_64_byte = 1;
572 	} else {
573 		sc->sc_ctx_is_64_byte = 0;
574 	}
575 
576 	/* get DMA bits */
577 	sc->sc_bus.dma_bits = (XHCI_HCS0_AC64(temp) &&
578 	    xhcidma32 == 0 && dma32 == 0) ? 64 : 32;
579 
580 	device_printf(self, "%d bytes context size, %d-bit DMA\n",
581 	    sc->sc_ctx_is_64_byte ? 64 : 32, (int)sc->sc_bus.dma_bits);
582 
583 	temp = XREAD4(sc, capa, XHCI_HCSPARAMS1);
584 
585 	/* get number of device slots */
586 	sc->sc_noport = XHCI_HCS1_N_PORTS(temp);
587 
588 	if (sc->sc_noport == 0) {
589 		device_printf(sc->sc_bus.parent, "Invalid number "
590 		    "of ports: %u\n", sc->sc_noport);
591 		return (ENXIO);
592 	}
593 
594 	sc->sc_noport = sc->sc_noport;
595 	sc->sc_noslot = XHCI_HCS1_DEVSLOT_MAX(temp);
596 
597 	DPRINTF("Max slots: %u\n", sc->sc_noslot);
598 
599 	if (sc->sc_noslot > XHCI_MAX_DEVICES)
600 		sc->sc_noslot = XHCI_MAX_DEVICES;
601 
602 	temp = XREAD4(sc, capa, XHCI_HCSPARAMS2);
603 
604 	DPRINTF("HCS2=0x%08x\n", temp);
605 
606 	/* get number of scratchpads */
607 	sc->sc_noscratch = XHCI_HCS2_SPB_MAX(temp);
608 
609 	if (sc->sc_noscratch > XHCI_MAX_SCRATCHPADS) {
610 		device_printf(sc->sc_bus.parent, "XHCI request "
611 		    "too many scratchpads\n");
612 		return (ENOMEM);
613 	}
614 
615 	DPRINTF("Max scratch: %u\n", sc->sc_noscratch);
616 
617 	/* get event table size */
618 	sc->sc_erst_max = 1U << XHCI_HCS2_ERST_MAX(temp);
619 	if (sc->sc_erst_max > XHCI_MAX_RSEG)
620 		sc->sc_erst_max = XHCI_MAX_RSEG;
621 
622 	temp = XREAD4(sc, capa, XHCI_HCSPARAMS3);
623 
624 	/* get maximum exit latency */
625 	sc->sc_exit_lat_max = XHCI_HCS3_U1_DEL(temp) +
626 	    XHCI_HCS3_U2_DEL(temp) + 250 /* us */;
627 
628 	/* Check if we should use the default IMOD value. */
629 	if (sc->sc_imod_default == 0)
630 		sc->sc_imod_default = XHCI_IMOD_DEFAULT;
631 
632 	/* get all DMA memory */
633 	if (usb_bus_mem_alloc_all(&sc->sc_bus,
634 	    USB_GET_DMA_TAG(self), &xhci_iterate_hw_softc)) {
635 		return (ENOMEM);
636 	}
637 
638 	/* set up command queue mutex and condition varible */
639 	cv_init(&sc->sc_cmd_cv, "CMDQ");
640 	sx_init(&sc->sc_cmd_sx, "CMDQ lock");
641 
642 	sc->sc_config_msg[0].hdr.pm_callback = &xhci_configure_msg;
643 	sc->sc_config_msg[0].bus = &sc->sc_bus;
644 	sc->sc_config_msg[1].hdr.pm_callback = &xhci_configure_msg;
645 	sc->sc_config_msg[1].bus = &sc->sc_bus;
646 
647 	return (0);
648 }
649 
650 void
651 xhci_uninit(struct xhci_softc *sc)
652 {
653 	/*
654 	 * NOTE: At this point the control transfer process is gone
655 	 * and "xhci_configure_msg" is no longer called. Consequently
656 	 * waiting for the configuration messages to complete is not
657 	 * needed.
658 	 */
659 	usb_bus_mem_free_all(&sc->sc_bus, &xhci_iterate_hw_softc);
660 
661 	cv_destroy(&sc->sc_cmd_cv);
662 	sx_destroy(&sc->sc_cmd_sx);
663 }
664 
665 static void
666 xhci_set_hw_power_sleep(struct usb_bus *bus, uint32_t state)
667 {
668 	struct xhci_softc *sc = XHCI_BUS2SC(bus);
669 
670 	switch (state) {
671 	case USB_HW_POWER_SUSPEND:
672 		DPRINTF("Stopping the XHCI\n");
673 		xhci_halt_controller(sc);
674 		break;
675 	case USB_HW_POWER_SHUTDOWN:
676 		DPRINTF("Stopping the XHCI\n");
677 		xhci_halt_controller(sc);
678 		break;
679 	case USB_HW_POWER_RESUME:
680 		DPRINTF("Starting the XHCI\n");
681 		xhci_start_controller(sc);
682 		break;
683 	default:
684 		break;
685 	}
686 }
687 
688 static usb_error_t
689 xhci_generic_done_sub(struct usb_xfer *xfer)
690 {
691 	struct xhci_td *td;
692 	struct xhci_td *td_alt_next;
693 	uint32_t len;
694 	uint8_t status;
695 
696 	td = xfer->td_transfer_cache;
697 	td_alt_next = td->alt_next;
698 
699 	if (xfer->aframes != xfer->nframes)
700 		usbd_xfer_set_frame_len(xfer, xfer->aframes, 0);
701 
702 	while (1) {
703 
704 		usb_pc_cpu_invalidate(td->page_cache);
705 
706 		status = td->status;
707 		len = td->remainder;
708 
709 		DPRINTFN(4, "xfer=%p[%u/%u] rem=%u/%u status=%u\n",
710 		    xfer, (unsigned int)xfer->aframes,
711 		    (unsigned int)xfer->nframes,
712 		    (unsigned int)len, (unsigned int)td->len,
713 		    (unsigned int)status);
714 
715 		/*
716 	         * Verify the status length and
717 		 * add the length to "frlengths[]":
718 	         */
719 		if (len > td->len) {
720 			/* should not happen */
721 			DPRINTF("Invalid status length, "
722 			    "0x%04x/0x%04x bytes\n", len, td->len);
723 			status = XHCI_TRB_ERROR_LENGTH;
724 		} else if (xfer->aframes != xfer->nframes) {
725 			xfer->frlengths[xfer->aframes] += td->len - len;
726 		}
727 		/* Check for last transfer */
728 		if (((void *)td) == xfer->td_transfer_last) {
729 			td = NULL;
730 			break;
731 		}
732 		/* Check for transfer error */
733 		if (status != XHCI_TRB_ERROR_SHORT_PKT &&
734 		    status != XHCI_TRB_ERROR_SUCCESS) {
735 			/* the transfer is finished */
736 			td = NULL;
737 			break;
738 		}
739 		/* Check for short transfer */
740 		if (len > 0) {
741 			if (xfer->flags_int.short_frames_ok ||
742 			    xfer->flags_int.isochronous_xfr ||
743 			    xfer->flags_int.control_xfr) {
744 				/* follow alt next */
745 				td = td->alt_next;
746 			} else {
747 				/* the transfer is finished */
748 				td = NULL;
749 			}
750 			break;
751 		}
752 		td = td->obj_next;
753 
754 		if (td->alt_next != td_alt_next) {
755 			/* this USB frame is complete */
756 			break;
757 		}
758 	}
759 
760 	/* update transfer cache */
761 
762 	xfer->td_transfer_cache = td;
763 
764 	return ((status == XHCI_TRB_ERROR_STALL) ? USB_ERR_STALLED :
765 	    (status != XHCI_TRB_ERROR_SHORT_PKT &&
766 	    status != XHCI_TRB_ERROR_SUCCESS) ? USB_ERR_IOERROR :
767 	    USB_ERR_NORMAL_COMPLETION);
768 }
769 
770 static void
771 xhci_generic_done(struct usb_xfer *xfer)
772 {
773 	usb_error_t err = 0;
774 
775 	DPRINTFN(13, "xfer=%p endpoint=%p transfer done\n",
776 	    xfer, xfer->endpoint);
777 
778 	/* reset scanner */
779 
780 	xfer->td_transfer_cache = xfer->td_transfer_first;
781 
782 	if (xfer->flags_int.control_xfr) {
783 
784 		if (xfer->flags_int.control_hdr)
785 			err = xhci_generic_done_sub(xfer);
786 
787 		xfer->aframes = 1;
788 
789 		if (xfer->td_transfer_cache == NULL)
790 			goto done;
791 	}
792 
793 	while (xfer->aframes != xfer->nframes) {
794 
795 		err = xhci_generic_done_sub(xfer);
796 		xfer->aframes++;
797 
798 		if (xfer->td_transfer_cache == NULL)
799 			goto done;
800 	}
801 
802 	if (xfer->flags_int.control_xfr &&
803 	    !xfer->flags_int.control_act)
804 		err = xhci_generic_done_sub(xfer);
805 done:
806 	/* transfer is complete */
807 	xhci_device_done(xfer, err);
808 }
809 
810 static void
811 xhci_activate_transfer(struct usb_xfer *xfer)
812 {
813 	struct xhci_td *td;
814 
815 	td = xfer->td_transfer_cache;
816 
817 	usb_pc_cpu_invalidate(td->page_cache);
818 
819 	if (!(td->td_trb[0].dwTrb3 & htole32(XHCI_TRB_3_CYCLE_BIT))) {
820 
821 		/* activate the transfer */
822 
823 		td->td_trb[0].dwTrb3 |= htole32(XHCI_TRB_3_CYCLE_BIT);
824 		usb_pc_cpu_flush(td->page_cache);
825 
826 		xhci_endpoint_doorbell(xfer);
827 	}
828 }
829 
830 static void
831 xhci_skip_transfer(struct usb_xfer *xfer)
832 {
833 	struct xhci_td *td;
834 	struct xhci_td *td_last;
835 
836 	td = xfer->td_transfer_cache;
837 	td_last = xfer->td_transfer_last;
838 
839 	td = td->alt_next;
840 
841 	usb_pc_cpu_invalidate(td->page_cache);
842 
843 	if (!(td->td_trb[0].dwTrb3 & htole32(XHCI_TRB_3_CYCLE_BIT))) {
844 
845 		usb_pc_cpu_invalidate(td_last->page_cache);
846 
847 		/* copy LINK TRB to current waiting location */
848 
849 		td->td_trb[0].qwTrb0 = td_last->td_trb[td_last->ntrb].qwTrb0;
850 		td->td_trb[0].dwTrb2 = td_last->td_trb[td_last->ntrb].dwTrb2;
851 		usb_pc_cpu_flush(td->page_cache);
852 
853 		td->td_trb[0].dwTrb3 = td_last->td_trb[td_last->ntrb].dwTrb3;
854 		usb_pc_cpu_flush(td->page_cache);
855 
856 		xhci_endpoint_doorbell(xfer);
857 	}
858 }
859 
860 /*------------------------------------------------------------------------*
861  *	xhci_check_transfer
862  *------------------------------------------------------------------------*/
863 static void
864 xhci_check_transfer(struct xhci_softc *sc, struct xhci_trb *trb)
865 {
866 	struct xhci_endpoint_ext *pepext;
867 	int64_t offset;
868 	uint64_t td_event;
869 	uint32_t temp;
870 	uint32_t remainder;
871 	uint16_t stream_id;
872 	uint16_t i;
873 	uint8_t status;
874 	uint8_t halted;
875 	uint8_t epno;
876 	uint8_t index;
877 
878 	/* decode TRB */
879 	td_event = le64toh(trb->qwTrb0);
880 	temp = le32toh(trb->dwTrb2);
881 
882 	remainder = XHCI_TRB_2_REM_GET(temp);
883 	status = XHCI_TRB_2_ERROR_GET(temp);
884 	stream_id = XHCI_TRB_2_STREAM_GET(temp);
885 
886 	temp = le32toh(trb->dwTrb3);
887 	epno = XHCI_TRB_3_EP_GET(temp);
888 	index = XHCI_TRB_3_SLOT_GET(temp);
889 
890 	/* check if error means halted */
891 	halted = (status != XHCI_TRB_ERROR_SHORT_PKT &&
892 	    status != XHCI_TRB_ERROR_SUCCESS);
893 
894 	DPRINTF("slot=%u epno=%u stream=%u remainder=%u status=%u\n",
895 	    index, epno, stream_id, remainder, status);
896 
897 	if (index > sc->sc_noslot) {
898 		DPRINTF("Invalid slot.\n");
899 		return;
900 	}
901 
902 	if ((epno == 0) || (epno >= XHCI_MAX_ENDPOINTS)) {
903 		DPRINTF("Invalid endpoint.\n");
904 		return;
905 	}
906 
907 	pepext = &sc->sc_hw.devs[index].endp[epno];
908 
909 	if (pepext->trb_ep_mode != USB_EP_MODE_STREAMS) {
910 		stream_id = 0;
911 		DPRINTF("stream_id=0\n");
912 	} else if (stream_id >= XHCI_MAX_STREAMS) {
913 		DPRINTF("Invalid stream ID.\n");
914 		return;
915 	}
916 
917 	/* try to find the USB transfer that generated the event */
918 	for (i = 0; i != (XHCI_MAX_TRANSFERS - 1); i++) {
919 		struct usb_xfer *xfer;
920 		struct xhci_td *td;
921 
922 		xfer = pepext->xfer[i + (XHCI_MAX_TRANSFERS * stream_id)];
923 		if (xfer == NULL)
924 			continue;
925 
926 		td = xfer->td_transfer_cache;
927 
928 		DPRINTFN(5, "Checking if 0x%016llx == (0x%016llx .. 0x%016llx)\n",
929 			(long long)td_event,
930 			(long long)td->td_self,
931 			(long long)td->td_self + sizeof(td->td_trb));
932 
933 		/*
934 		 * NOTE: Some XHCI implementations might not trigger
935 		 * an event on the last LINK TRB so we need to
936 		 * consider both the last and second last event
937 		 * address as conditions for a successful transfer.
938 		 *
939 		 * NOTE: We assume that the XHCI will only trigger one
940 		 * event per chain of TRBs.
941 		 */
942 
943 		offset = td_event - td->td_self;
944 
945 		if (offset >= 0 &&
946 		    offset < (int64_t)sizeof(td->td_trb)) {
947 
948 			usb_pc_cpu_invalidate(td->page_cache);
949 
950 			/* compute rest of remainder, if any */
951 			for (i = (offset / 16) + 1; i < td->ntrb; i++) {
952 				temp = le32toh(td->td_trb[i].dwTrb2);
953 				remainder += XHCI_TRB_2_BYTES_GET(temp);
954 			}
955 
956 			DPRINTFN(5, "New remainder: %u\n", remainder);
957 
958 			/* clear isochronous transfer errors */
959 			if (xfer->flags_int.isochronous_xfr) {
960 				if (halted) {
961 					halted = 0;
962 					status = XHCI_TRB_ERROR_SUCCESS;
963 					remainder = td->len;
964 				}
965 			}
966 
967 			/* "td->remainder" is verified later */
968 			td->remainder = remainder;
969 			td->status = status;
970 
971 			usb_pc_cpu_flush(td->page_cache);
972 
973 			/*
974 			 * 1) Last transfer descriptor makes the
975 			 * transfer done
976 			 */
977 			if (((void *)td) == xfer->td_transfer_last) {
978 				DPRINTF("TD is last\n");
979 				xhci_generic_done(xfer);
980 				break;
981 			}
982 
983 			/*
984 			 * 2) Any kind of error makes the transfer
985 			 * done
986 			 */
987 			if (halted) {
988 				DPRINTF("TD has I/O error\n");
989 				xhci_generic_done(xfer);
990 				break;
991 			}
992 
993 			/*
994 			 * 3) If there is no alternate next transfer,
995 			 * a short packet also makes the transfer done
996 			 */
997 			if (td->remainder > 0) {
998 				if (td->alt_next == NULL) {
999 					DPRINTF(
1000 					    "short TD has no alternate next\n");
1001 					xhci_generic_done(xfer);
1002 					break;
1003 				}
1004 				DPRINTF("TD has short pkt\n");
1005 				if (xfer->flags_int.short_frames_ok ||
1006 				    xfer->flags_int.isochronous_xfr ||
1007 				    xfer->flags_int.control_xfr) {
1008 					/* follow the alt next */
1009 					xfer->td_transfer_cache = td->alt_next;
1010 					xhci_activate_transfer(xfer);
1011 					break;
1012 				}
1013 				xhci_skip_transfer(xfer);
1014 				xhci_generic_done(xfer);
1015 				break;
1016 			}
1017 
1018 			/*
1019 			 * 4) Transfer complete - go to next TD
1020 			 */
1021 			DPRINTF("Following next TD\n");
1022 			xfer->td_transfer_cache = td->obj_next;
1023 			xhci_activate_transfer(xfer);
1024 			break;		/* there should only be one match */
1025 		}
1026 	}
1027 }
1028 
1029 static int
1030 xhci_check_command(struct xhci_softc *sc, struct xhci_trb *trb)
1031 {
1032 	if (sc->sc_cmd_addr == trb->qwTrb0) {
1033 		DPRINTF("Received command event\n");
1034 		sc->sc_cmd_result[0] = trb->dwTrb2;
1035 		sc->sc_cmd_result[1] = trb->dwTrb3;
1036 		cv_signal(&sc->sc_cmd_cv);
1037 		return (1);	/* command match */
1038 	}
1039 	return (0);
1040 }
1041 
1042 static int
1043 xhci_interrupt_poll(struct xhci_softc *sc)
1044 {
1045 	struct usb_page_search buf_res;
1046 	struct xhci_hw_root *phwr;
1047 	uint64_t addr;
1048 	uint32_t temp;
1049 	int retval = 0;
1050 	uint16_t i;
1051 	uint8_t event;
1052 	uint8_t j;
1053 	uint8_t k;
1054 	uint8_t t;
1055 
1056 	usbd_get_page(&sc->sc_hw.root_pc, 0, &buf_res);
1057 
1058 	phwr = buf_res.buffer;
1059 
1060 	/* Receive any events */
1061 
1062 	usb_pc_cpu_invalidate(&sc->sc_hw.root_pc);
1063 
1064 	i = sc->sc_event_idx;
1065 	j = sc->sc_event_ccs;
1066 	t = 2;
1067 
1068 	while (1) {
1069 
1070 		temp = le32toh(phwr->hwr_events[i].dwTrb3);
1071 
1072 		k = (temp & XHCI_TRB_3_CYCLE_BIT) ? 1 : 0;
1073 
1074 		if (j != k)
1075 			break;
1076 
1077 		event = XHCI_TRB_3_TYPE_GET(temp);
1078 
1079 		DPRINTFN(10, "event[%u] = %u (0x%016llx 0x%08lx 0x%08lx)\n",
1080 		    i, event, (long long)le64toh(phwr->hwr_events[i].qwTrb0),
1081 		    (long)le32toh(phwr->hwr_events[i].dwTrb2),
1082 		    (long)le32toh(phwr->hwr_events[i].dwTrb3));
1083 
1084 		switch (event) {
1085 		case XHCI_TRB_EVENT_TRANSFER:
1086 			xhci_check_transfer(sc, &phwr->hwr_events[i]);
1087 			break;
1088 		case XHCI_TRB_EVENT_CMD_COMPLETE:
1089 			retval |= xhci_check_command(sc, &phwr->hwr_events[i]);
1090 			break;
1091 		default:
1092 			DPRINTF("Unhandled event = %u\n", event);
1093 			break;
1094 		}
1095 
1096 		i++;
1097 
1098 		if (i == XHCI_MAX_EVENTS) {
1099 			i = 0;
1100 			j ^= 1;
1101 
1102 			/* check for timeout */
1103 			if (!--t)
1104 				break;
1105 		}
1106 	}
1107 
1108 	sc->sc_event_idx = i;
1109 	sc->sc_event_ccs = j;
1110 
1111 	/*
1112 	 * NOTE: The Event Ring Dequeue Pointer Register is 64-bit
1113 	 * latched. That means to activate the register we need to
1114 	 * write both the low and high double word of the 64-bit
1115 	 * register.
1116 	 */
1117 
1118 	addr = buf_res.physaddr;
1119 	addr += (uintptr_t)&((struct xhci_hw_root *)0)->hwr_events[i];
1120 
1121 	/* try to clear busy bit */
1122 	addr |= XHCI_ERDP_LO_BUSY;
1123 
1124 	XWRITE4(sc, runt, XHCI_ERDP_LO(0), (uint32_t)addr);
1125 	XWRITE4(sc, runt, XHCI_ERDP_HI(0), (uint32_t)(addr >> 32));
1126 
1127 	return (retval);
1128 }
1129 
1130 static usb_error_t
1131 xhci_do_command(struct xhci_softc *sc, struct xhci_trb *trb,
1132     uint16_t timeout_ms)
1133 {
1134 	struct usb_page_search buf_res;
1135 	struct xhci_hw_root *phwr;
1136 	uint64_t addr;
1137 	uint32_t temp;
1138 	uint8_t i;
1139 	uint8_t j;
1140 	uint8_t timeout = 0;
1141 	int err;
1142 
1143 	XHCI_CMD_ASSERT_LOCKED(sc);
1144 
1145 	/* get hardware root structure */
1146 
1147 	usbd_get_page(&sc->sc_hw.root_pc, 0, &buf_res);
1148 
1149 	phwr = buf_res.buffer;
1150 
1151 	/* Queue command */
1152 
1153 	USB_BUS_LOCK(&sc->sc_bus);
1154 retry:
1155 	i = sc->sc_command_idx;
1156 	j = sc->sc_command_ccs;
1157 
1158 	DPRINTFN(10, "command[%u] = %u (0x%016llx, 0x%08lx, 0x%08lx)\n",
1159 	    i, XHCI_TRB_3_TYPE_GET(le32toh(trb->dwTrb3)),
1160 	    (long long)le64toh(trb->qwTrb0),
1161 	    (long)le32toh(trb->dwTrb2),
1162 	    (long)le32toh(trb->dwTrb3));
1163 
1164 	phwr->hwr_commands[i].qwTrb0 = trb->qwTrb0;
1165 	phwr->hwr_commands[i].dwTrb2 = trb->dwTrb2;
1166 
1167 	usb_pc_cpu_flush(&sc->sc_hw.root_pc);
1168 
1169 	temp = trb->dwTrb3;
1170 
1171 	if (j)
1172 		temp |= htole32(XHCI_TRB_3_CYCLE_BIT);
1173 	else
1174 		temp &= ~htole32(XHCI_TRB_3_CYCLE_BIT);
1175 
1176 	temp &= ~htole32(XHCI_TRB_3_TC_BIT);
1177 
1178 	phwr->hwr_commands[i].dwTrb3 = temp;
1179 
1180 	usb_pc_cpu_flush(&sc->sc_hw.root_pc);
1181 
1182 	addr = buf_res.physaddr;
1183 	addr += (uintptr_t)&((struct xhci_hw_root *)0)->hwr_commands[i];
1184 
1185 	sc->sc_cmd_addr = htole64(addr);
1186 
1187 	i++;
1188 
1189 	if (i == (XHCI_MAX_COMMANDS - 1)) {
1190 
1191 		if (j) {
1192 			temp = htole32(XHCI_TRB_3_TC_BIT |
1193 			    XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_LINK) |
1194 			    XHCI_TRB_3_CYCLE_BIT);
1195 		} else {
1196 			temp = htole32(XHCI_TRB_3_TC_BIT |
1197 			    XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_LINK));
1198 		}
1199 
1200 		phwr->hwr_commands[i].dwTrb3 = temp;
1201 
1202 		usb_pc_cpu_flush(&sc->sc_hw.root_pc);
1203 
1204 		i = 0;
1205 		j ^= 1;
1206 	}
1207 
1208 	sc->sc_command_idx = i;
1209 	sc->sc_command_ccs = j;
1210 
1211 	XWRITE4(sc, door, XHCI_DOORBELL(0), 0);
1212 
1213 	err = cv_timedwait(&sc->sc_cmd_cv, &sc->sc_bus.bus_mtx,
1214 	    USB_MS_TO_TICKS(timeout_ms));
1215 
1216 	/*
1217 	 * In some error cases event interrupts are not generated.
1218 	 * Poll one time to see if the command has completed.
1219 	 */
1220 	if (err != 0 && xhci_interrupt_poll(sc) != 0) {
1221 		DPRINTF("Command was completed when polling\n");
1222 		err = 0;
1223 	}
1224 	if (err != 0) {
1225 		DPRINTF("Command timeout!\n");
1226 		/*
1227 		 * After some weeks of continuous operation, it has
1228 		 * been observed that the ASMedia Technology, ASM1042
1229 		 * SuperSpeed USB Host Controller can suddenly stop
1230 		 * accepting commands via the command queue. Try to
1231 		 * first reset the command queue. If that fails do a
1232 		 * host controller reset.
1233 		 */
1234 		if (timeout == 0 &&
1235 		    xhci_reset_command_queue_locked(sc) == 0) {
1236 			temp = le32toh(trb->dwTrb3);
1237 
1238 			/*
1239 			 * Avoid infinite XHCI reset loops if the set
1240 			 * address command fails to respond due to a
1241 			 * non-enumerating device:
1242 			 */
1243 			if (XHCI_TRB_3_TYPE_GET(temp) == XHCI_TRB_TYPE_ADDRESS_DEVICE &&
1244 			    (temp & XHCI_TRB_3_BSR_BIT) == 0) {
1245 				DPRINTF("Set address timeout\n");
1246 			} else {
1247 				timeout = 1;
1248 				goto retry;
1249 			}
1250 		} else {
1251 			DPRINTF("Controller reset!\n");
1252 			usb_bus_reset_async_locked(&sc->sc_bus);
1253 		}
1254 		err = USB_ERR_TIMEOUT;
1255 		trb->dwTrb2 = 0;
1256 		trb->dwTrb3 = 0;
1257 	} else {
1258 		temp = le32toh(sc->sc_cmd_result[0]);
1259 		if (XHCI_TRB_2_ERROR_GET(temp) != XHCI_TRB_ERROR_SUCCESS)
1260 			err = USB_ERR_IOERROR;
1261 
1262 		trb->dwTrb2 = sc->sc_cmd_result[0];
1263 		trb->dwTrb3 = sc->sc_cmd_result[1];
1264 	}
1265 
1266 	USB_BUS_UNLOCK(&sc->sc_bus);
1267 
1268 	return (err);
1269 }
1270 
1271 #if 0
1272 static usb_error_t
1273 xhci_cmd_nop(struct xhci_softc *sc)
1274 {
1275 	struct xhci_trb trb;
1276 	uint32_t temp;
1277 
1278 	DPRINTF("\n");
1279 
1280 	trb.qwTrb0 = 0;
1281 	trb.dwTrb2 = 0;
1282 	temp = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_NOOP);
1283 
1284 	trb.dwTrb3 = htole32(temp);
1285 
1286 	return (xhci_do_command(sc, &trb, 100 /* ms */));
1287 }
1288 #endif
1289 
1290 static usb_error_t
1291 xhci_cmd_enable_slot(struct xhci_softc *sc, uint8_t *pslot)
1292 {
1293 	struct xhci_trb trb;
1294 	uint32_t temp;
1295 	usb_error_t err;
1296 
1297 	DPRINTF("\n");
1298 
1299 	trb.qwTrb0 = 0;
1300 	trb.dwTrb2 = 0;
1301 	trb.dwTrb3 = htole32(XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_ENABLE_SLOT));
1302 
1303 	err = xhci_do_command(sc, &trb, 100 /* ms */);
1304 	if (err)
1305 		goto done;
1306 
1307 	temp = le32toh(trb.dwTrb3);
1308 
1309 	*pslot = XHCI_TRB_3_SLOT_GET(temp);
1310 
1311 done:
1312 	return (err);
1313 }
1314 
1315 static usb_error_t
1316 xhci_cmd_disable_slot(struct xhci_softc *sc, uint8_t slot_id)
1317 {
1318 	struct xhci_trb trb;
1319 	uint32_t temp;
1320 
1321 	DPRINTF("\n");
1322 
1323 	trb.qwTrb0 = 0;
1324 	trb.dwTrb2 = 0;
1325 	temp = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_DISABLE_SLOT) |
1326 	    XHCI_TRB_3_SLOT_SET(slot_id);
1327 
1328 	trb.dwTrb3 = htole32(temp);
1329 
1330 	return (xhci_do_command(sc, &trb, 100 /* ms */));
1331 }
1332 
1333 static usb_error_t
1334 xhci_cmd_set_address(struct xhci_softc *sc, uint64_t input_ctx,
1335     uint8_t bsr, uint8_t slot_id)
1336 {
1337 	struct xhci_trb trb;
1338 	uint32_t temp;
1339 
1340 	DPRINTF("\n");
1341 
1342 	trb.qwTrb0 = htole64(input_ctx);
1343 	trb.dwTrb2 = 0;
1344 	temp = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_ADDRESS_DEVICE) |
1345 	    XHCI_TRB_3_SLOT_SET(slot_id);
1346 
1347 	if (bsr)
1348 		temp |= XHCI_TRB_3_BSR_BIT;
1349 
1350 	trb.dwTrb3 = htole32(temp);
1351 
1352 	return (xhci_do_command(sc, &trb, 500 /* ms */));
1353 }
1354 
1355 static usb_error_t
1356 xhci_set_address(struct usb_device *udev, struct mtx *mtx, uint16_t address)
1357 {
1358 	struct usb_page_search buf_inp;
1359 	struct usb_page_search buf_dev;
1360 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
1361 	struct xhci_hw_dev *hdev;
1362 	struct xhci_dev_ctx *pdev;
1363 	struct xhci_endpoint_ext *pepext;
1364 	uint32_t temp;
1365 	uint16_t mps;
1366 	usb_error_t err;
1367 	uint8_t index;
1368 
1369 	/* the root HUB case is not handled here */
1370 	if (udev->parent_hub == NULL)
1371 		return (USB_ERR_INVAL);
1372 
1373 	index = udev->controller_slot_id;
1374 
1375 	hdev = 	&sc->sc_hw.devs[index];
1376 
1377 	if (mtx != NULL)
1378 		mtx_unlock(mtx);
1379 
1380 	XHCI_CMD_LOCK(sc);
1381 
1382 	switch (hdev->state) {
1383 	case XHCI_ST_DEFAULT:
1384 	case XHCI_ST_ENABLED:
1385 
1386 		hdev->state = XHCI_ST_ENABLED;
1387 
1388 		/* set configure mask to slot and EP0 */
1389 		xhci_configure_mask(udev, 3, 0);
1390 
1391 		/* configure input slot context structure */
1392 		err = xhci_configure_device(udev);
1393 
1394 		if (err != 0) {
1395 			DPRINTF("Could not configure device\n");
1396 			break;
1397 		}
1398 
1399 		/* configure input endpoint context structure */
1400 		switch (udev->speed) {
1401 		case USB_SPEED_LOW:
1402 		case USB_SPEED_FULL:
1403 			mps = 8;
1404 			break;
1405 		case USB_SPEED_HIGH:
1406 			mps = 64;
1407 			break;
1408 		default:
1409 			mps = 512;
1410 			break;
1411 		}
1412 
1413 		pepext = xhci_get_endpoint_ext(udev,
1414 		    &udev->ctrl_ep_desc);
1415 
1416 		/* ensure the control endpoint is setup again */
1417 		USB_BUS_LOCK(udev->bus);
1418 		pepext->trb_halted = 1;
1419 		pepext->trb_running = 0;
1420 		USB_BUS_UNLOCK(udev->bus);
1421 
1422 		err = xhci_configure_endpoint(udev,
1423 		    &udev->ctrl_ep_desc, pepext,
1424 		    0, 1, 1, 0, mps, mps, USB_EP_MODE_DEFAULT);
1425 
1426 		if (err != 0) {
1427 			DPRINTF("Could not configure default endpoint\n");
1428 			break;
1429 		}
1430 
1431 		/* execute set address command */
1432 		usbd_get_page(&hdev->input_pc, 0, &buf_inp);
1433 
1434 		err = xhci_cmd_set_address(sc, buf_inp.physaddr,
1435 		    (address == 0), index);
1436 
1437 		if (err != 0) {
1438 			temp = le32toh(sc->sc_cmd_result[0]);
1439 			if (address == 0 && sc->sc_port_route != NULL &&
1440 			    XHCI_TRB_2_ERROR_GET(temp) ==
1441 			    XHCI_TRB_ERROR_PARAMETER) {
1442 				/* LynxPoint XHCI - ports are not switchable */
1443 				/* Un-route all ports from the XHCI */
1444 				sc->sc_port_route(sc->sc_bus.parent, 0, ~0);
1445 			}
1446 			DPRINTF("Could not set address "
1447 			    "for slot %u.\n", index);
1448 			if (address != 0)
1449 				break;
1450 		}
1451 
1452 		/* update device address to new value */
1453 
1454 		usbd_get_page(&hdev->device_pc, 0, &buf_dev);
1455 		pdev = buf_dev.buffer;
1456 		usb_pc_cpu_invalidate(&hdev->device_pc);
1457 
1458 		temp = xhci_ctx_get_le32(sc, &pdev->ctx_slot.dwSctx3);
1459 		udev->address = XHCI_SCTX_3_DEV_ADDR_GET(temp);
1460 
1461 		/* update device state to new value */
1462 
1463 		if (address != 0)
1464 			hdev->state = XHCI_ST_ADDRESSED;
1465 		else
1466 			hdev->state = XHCI_ST_DEFAULT;
1467 		break;
1468 
1469 	default:
1470 		DPRINTF("Wrong state for set address.\n");
1471 		err = USB_ERR_IOERROR;
1472 		break;
1473 	}
1474 	XHCI_CMD_UNLOCK(sc);
1475 
1476 	if (mtx != NULL)
1477 		mtx_lock(mtx);
1478 
1479 	return (err);
1480 }
1481 
1482 static usb_error_t
1483 xhci_cmd_configure_ep(struct xhci_softc *sc, uint64_t input_ctx,
1484     uint8_t deconfigure, uint8_t slot_id)
1485 {
1486 	struct xhci_trb trb;
1487 	uint32_t temp;
1488 
1489 	DPRINTF("\n");
1490 
1491 	trb.qwTrb0 = htole64(input_ctx);
1492 	trb.dwTrb2 = 0;
1493 	temp = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_CONFIGURE_EP) |
1494 	    XHCI_TRB_3_SLOT_SET(slot_id);
1495 
1496 	if (deconfigure)
1497 		temp |= XHCI_TRB_3_DCEP_BIT;
1498 
1499 	trb.dwTrb3 = htole32(temp);
1500 
1501 	return (xhci_do_command(sc, &trb, 100 /* ms */));
1502 }
1503 
1504 static usb_error_t
1505 xhci_cmd_evaluate_ctx(struct xhci_softc *sc, uint64_t input_ctx,
1506     uint8_t slot_id)
1507 {
1508 	struct xhci_trb trb;
1509 	uint32_t temp;
1510 
1511 	DPRINTF("\n");
1512 
1513 	trb.qwTrb0 = htole64(input_ctx);
1514 	trb.dwTrb2 = 0;
1515 	temp = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_EVALUATE_CTX) |
1516 	    XHCI_TRB_3_SLOT_SET(slot_id);
1517 	trb.dwTrb3 = htole32(temp);
1518 
1519 	return (xhci_do_command(sc, &trb, 100 /* ms */));
1520 }
1521 
1522 static usb_error_t
1523 xhci_cmd_reset_ep(struct xhci_softc *sc, uint8_t preserve,
1524     uint8_t ep_id, uint8_t slot_id)
1525 {
1526 	struct xhci_trb trb;
1527 	uint32_t temp;
1528 
1529 	DPRINTF("\n");
1530 
1531 	trb.qwTrb0 = 0;
1532 	trb.dwTrb2 = 0;
1533 	temp = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_RESET_EP) |
1534 	    XHCI_TRB_3_SLOT_SET(slot_id) |
1535 	    XHCI_TRB_3_EP_SET(ep_id);
1536 
1537 	if (preserve)
1538 		temp |= XHCI_TRB_3_PRSV_BIT;
1539 
1540 	trb.dwTrb3 = htole32(temp);
1541 
1542 	return (xhci_do_command(sc, &trb, 100 /* ms */));
1543 }
1544 
1545 static usb_error_t
1546 xhci_cmd_set_tr_dequeue_ptr(struct xhci_softc *sc, uint64_t dequeue_ptr,
1547     uint16_t stream_id, uint8_t ep_id, uint8_t slot_id)
1548 {
1549 	struct xhci_trb trb;
1550 	uint32_t temp;
1551 
1552 	DPRINTF("\n");
1553 
1554 	trb.qwTrb0 = htole64(dequeue_ptr);
1555 
1556 	temp = XHCI_TRB_2_STREAM_SET(stream_id);
1557 	trb.dwTrb2 = htole32(temp);
1558 
1559 	temp = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_SET_TR_DEQUEUE) |
1560 	    XHCI_TRB_3_SLOT_SET(slot_id) |
1561 	    XHCI_TRB_3_EP_SET(ep_id);
1562 	trb.dwTrb3 = htole32(temp);
1563 
1564 	return (xhci_do_command(sc, &trb, 100 /* ms */));
1565 }
1566 
1567 static usb_error_t
1568 xhci_cmd_stop_ep(struct xhci_softc *sc, uint8_t suspend,
1569     uint8_t ep_id, uint8_t slot_id)
1570 {
1571 	struct xhci_trb trb;
1572 	uint32_t temp;
1573 
1574 	DPRINTF("\n");
1575 
1576 	trb.qwTrb0 = 0;
1577 	trb.dwTrb2 = 0;
1578 	temp = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_STOP_EP) |
1579 	    XHCI_TRB_3_SLOT_SET(slot_id) |
1580 	    XHCI_TRB_3_EP_SET(ep_id);
1581 
1582 	if (suspend)
1583 		temp |= XHCI_TRB_3_SUSP_EP_BIT;
1584 
1585 	trb.dwTrb3 = htole32(temp);
1586 
1587 	return (xhci_do_command(sc, &trb, 100 /* ms */));
1588 }
1589 
1590 static usb_error_t
1591 xhci_cmd_reset_dev(struct xhci_softc *sc, uint8_t slot_id)
1592 {
1593 	struct xhci_trb trb;
1594 	uint32_t temp;
1595 
1596 	DPRINTF("\n");
1597 
1598 	trb.qwTrb0 = 0;
1599 	trb.dwTrb2 = 0;
1600 	temp = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_RESET_DEVICE) |
1601 	    XHCI_TRB_3_SLOT_SET(slot_id);
1602 
1603 	trb.dwTrb3 = htole32(temp);
1604 
1605 	return (xhci_do_command(sc, &trb, 100 /* ms */));
1606 }
1607 
1608 /*------------------------------------------------------------------------*
1609  *	xhci_interrupt - XHCI interrupt handler
1610  *------------------------------------------------------------------------*/
1611 void
1612 xhci_interrupt(struct xhci_softc *sc)
1613 {
1614 	uint32_t status;
1615 	uint32_t temp;
1616 
1617 	USB_BUS_LOCK(&sc->sc_bus);
1618 
1619 	status = XREAD4(sc, oper, XHCI_USBSTS);
1620 
1621 	/* acknowledge interrupts, if any */
1622 	if (status != 0) {
1623 		XWRITE4(sc, oper, XHCI_USBSTS, status);
1624 		DPRINTFN(16, "real interrupt (status=0x%08x)\n", status);
1625 	}
1626 
1627 	temp = XREAD4(sc, runt, XHCI_IMAN(0));
1628 
1629 	/* force clearing of pending interrupts */
1630 	if (temp & XHCI_IMAN_INTR_PEND)
1631 		XWRITE4(sc, runt, XHCI_IMAN(0), temp);
1632 
1633 	/* check for event(s) */
1634 	xhci_interrupt_poll(sc);
1635 
1636 	if (status & (XHCI_STS_PCD | XHCI_STS_HCH |
1637 	    XHCI_STS_HSE | XHCI_STS_HCE)) {
1638 
1639 		if (status & XHCI_STS_PCD) {
1640 			xhci_root_intr(sc);
1641 		}
1642 
1643 		if (status & XHCI_STS_HCH) {
1644 			printf("%s: host controller halted\n",
1645 			    __FUNCTION__);
1646 		}
1647 
1648 		if (status & XHCI_STS_HSE) {
1649 			printf("%s: host system error\n",
1650 			    __FUNCTION__);
1651 		}
1652 
1653 		if (status & XHCI_STS_HCE) {
1654 			printf("%s: host controller error\n",
1655 			   __FUNCTION__);
1656 		}
1657 	}
1658 	USB_BUS_UNLOCK(&sc->sc_bus);
1659 }
1660 
1661 /*------------------------------------------------------------------------*
1662  *	xhci_timeout - XHCI timeout handler
1663  *------------------------------------------------------------------------*/
1664 static void
1665 xhci_timeout(void *arg)
1666 {
1667 	struct usb_xfer *xfer = arg;
1668 
1669 	DPRINTF("xfer=%p\n", xfer);
1670 
1671 	USB_BUS_LOCK_ASSERT(xfer->xroot->bus, MA_OWNED);
1672 
1673 	/* transfer is transferred */
1674 	xhci_device_done(xfer, USB_ERR_TIMEOUT);
1675 }
1676 
1677 static void
1678 xhci_do_poll(struct usb_bus *bus)
1679 {
1680 	struct xhci_softc *sc = XHCI_BUS2SC(bus);
1681 
1682 	USB_BUS_LOCK(&sc->sc_bus);
1683 	xhci_interrupt_poll(sc);
1684 	USB_BUS_UNLOCK(&sc->sc_bus);
1685 }
1686 
1687 static void
1688 xhci_setup_generic_chain_sub(struct xhci_std_temp *temp)
1689 {
1690 	struct usb_page_search buf_res;
1691 	struct xhci_td *td;
1692 	struct xhci_td *td_next;
1693 	struct xhci_td *td_alt_next;
1694 	struct xhci_td *td_first;
1695 	uint32_t buf_offset;
1696 	uint32_t average;
1697 	uint32_t len_old;
1698 	uint32_t npkt_off;
1699 	uint32_t dword;
1700 	uint8_t shortpkt_old;
1701 	uint8_t precompute;
1702 	uint8_t x;
1703 
1704 	td_alt_next = NULL;
1705 	buf_offset = 0;
1706 	shortpkt_old = temp->shortpkt;
1707 	len_old = temp->len;
1708 	npkt_off = 0;
1709 	precompute = 1;
1710 
1711 restart:
1712 
1713 	td = temp->td;
1714 	td_next = td_first = temp->td_next;
1715 
1716 	while (1) {
1717 
1718 		if (temp->len == 0) {
1719 
1720 			if (temp->shortpkt)
1721 				break;
1722 
1723 			/* send a Zero Length Packet, ZLP, last */
1724 
1725 			temp->shortpkt = 1;
1726 			average = 0;
1727 
1728 		} else {
1729 
1730 			average = temp->average;
1731 
1732 			if (temp->len < average) {
1733 				if (temp->len % temp->max_packet_size) {
1734 					temp->shortpkt = 1;
1735 				}
1736 				average = temp->len;
1737 			}
1738 		}
1739 
1740 		if (td_next == NULL)
1741 			panic("%s: out of XHCI transfer descriptors!", __FUNCTION__);
1742 
1743 		/* get next TD */
1744 
1745 		td = td_next;
1746 		td_next = td->obj_next;
1747 
1748 		/* check if we are pre-computing */
1749 
1750 		if (precompute) {
1751 
1752 			/* update remaining length */
1753 
1754 			temp->len -= average;
1755 
1756 			continue;
1757 		}
1758 		/* fill out current TD */
1759 
1760 		td->len = average;
1761 		td->remainder = 0;
1762 		td->status = 0;
1763 
1764 		/* update remaining length */
1765 
1766 		temp->len -= average;
1767 
1768 		/* reset TRB index */
1769 
1770 		x = 0;
1771 
1772 		if (temp->trb_type == XHCI_TRB_TYPE_SETUP_STAGE) {
1773 			/* immediate data */
1774 
1775 			if (average > 8)
1776 				average = 8;
1777 
1778 			td->td_trb[0].qwTrb0 = 0;
1779 
1780 			usbd_copy_out(temp->pc, temp->offset + buf_offset,
1781 			   (uint8_t *)(uintptr_t)&td->td_trb[0].qwTrb0,
1782 			   average);
1783 
1784 			dword = XHCI_TRB_2_BYTES_SET(8) |
1785 			    XHCI_TRB_2_TDSZ_SET(0) |
1786 			    XHCI_TRB_2_IRQ_SET(0);
1787 
1788 			td->td_trb[0].dwTrb2 = htole32(dword);
1789 
1790 			dword = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_SETUP_STAGE) |
1791 			  XHCI_TRB_3_IDT_BIT | XHCI_TRB_3_CYCLE_BIT;
1792 
1793 			/* check wLength */
1794 			if (td->td_trb[0].qwTrb0 &
1795 			   htole64(XHCI_TRB_0_WLENGTH_MASK)) {
1796 				if (td->td_trb[0].qwTrb0 &
1797 				    htole64(XHCI_TRB_0_DIR_IN_MASK))
1798 					dword |= XHCI_TRB_3_TRT_IN;
1799 				else
1800 					dword |= XHCI_TRB_3_TRT_OUT;
1801 			}
1802 
1803 			td->td_trb[0].dwTrb3 = htole32(dword);
1804 #ifdef USB_DEBUG
1805 			xhci_dump_trb(&td->td_trb[x]);
1806 #endif
1807 			x++;
1808 
1809 		} else do {
1810 
1811 			uint32_t npkt;
1812 
1813 			/* fill out buffer pointers */
1814 
1815 			if (average == 0) {
1816 				memset(&buf_res, 0, sizeof(buf_res));
1817 			} else {
1818 				usbd_get_page(temp->pc, temp->offset +
1819 				    buf_offset, &buf_res);
1820 
1821 				/* get length to end of page */
1822 				if (buf_res.length > average)
1823 					buf_res.length = average;
1824 
1825 				/* check for maximum length */
1826 				if (buf_res.length > XHCI_TD_PAGE_SIZE)
1827 					buf_res.length = XHCI_TD_PAGE_SIZE;
1828 
1829 				npkt_off += buf_res.length;
1830 			}
1831 
1832 			/* set up npkt */
1833 			npkt = (len_old - npkt_off + temp->max_packet_size - 1) /
1834 			    temp->max_packet_size;
1835 
1836 			if (npkt == 0)
1837 				npkt = 1;
1838 			else if (npkt > 31)
1839 				npkt = 31;
1840 
1841 			/* fill out TRB's */
1842 			td->td_trb[x].qwTrb0 =
1843 			    htole64((uint64_t)buf_res.physaddr);
1844 
1845 			dword =
1846 			  XHCI_TRB_2_BYTES_SET(buf_res.length) |
1847 			  XHCI_TRB_2_TDSZ_SET(npkt) |
1848 			  XHCI_TRB_2_IRQ_SET(0);
1849 
1850 			td->td_trb[x].dwTrb2 = htole32(dword);
1851 
1852 			switch (temp->trb_type) {
1853 			case XHCI_TRB_TYPE_ISOCH:
1854 				dword = XHCI_TRB_3_CHAIN_BIT | XHCI_TRB_3_CYCLE_BIT |
1855 				    XHCI_TRB_3_TBC_SET(temp->tbc) |
1856 				    XHCI_TRB_3_TLBPC_SET(temp->tlbpc);
1857 				if (td != td_first) {
1858 					dword |= XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_NORMAL);
1859 				} else if (temp->do_isoc_sync != 0) {
1860 					temp->do_isoc_sync = 0;
1861 					/* wait until "isoc_frame" */
1862 					dword |= XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_ISOCH) |
1863 					    XHCI_TRB_3_FRID_SET(temp->isoc_frame / 8);
1864 				} else {
1865 					/* start data transfer at next interval */
1866 					dword |= XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_ISOCH) |
1867 					    XHCI_TRB_3_ISO_SIA_BIT;
1868 				}
1869 				if (temp->direction == UE_DIR_IN)
1870 					dword |= XHCI_TRB_3_ISP_BIT;
1871 				break;
1872 			case XHCI_TRB_TYPE_DATA_STAGE:
1873 				dword = XHCI_TRB_3_CHAIN_BIT | XHCI_TRB_3_CYCLE_BIT |
1874 				    XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_DATA_STAGE);
1875 				if (temp->direction == UE_DIR_IN)
1876 					dword |= XHCI_TRB_3_DIR_IN | XHCI_TRB_3_ISP_BIT;
1877 				/*
1878 				 * Section 3.2.9 in the XHCI
1879 				 * specification about control
1880 				 * transfers says that we should use a
1881 				 * normal-TRB if there are more TRBs
1882 				 * extending the data-stage
1883 				 * TRB. Update the "trb_type".
1884 				 */
1885 				temp->trb_type = XHCI_TRB_TYPE_NORMAL;
1886 				break;
1887 			case XHCI_TRB_TYPE_STATUS_STAGE:
1888 				dword = XHCI_TRB_3_CHAIN_BIT | XHCI_TRB_3_CYCLE_BIT |
1889 				    XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_STATUS_STAGE);
1890 				if (temp->direction == UE_DIR_IN)
1891 					dword |= XHCI_TRB_3_DIR_IN;
1892 				break;
1893 			default:	/* XHCI_TRB_TYPE_NORMAL */
1894 				dword = XHCI_TRB_3_CHAIN_BIT | XHCI_TRB_3_CYCLE_BIT |
1895 				    XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_NORMAL);
1896 				if (temp->direction == UE_DIR_IN)
1897 					dword |= XHCI_TRB_3_ISP_BIT;
1898 				break;
1899 			}
1900 			td->td_trb[x].dwTrb3 = htole32(dword);
1901 
1902 			average -= buf_res.length;
1903 			buf_offset += buf_res.length;
1904 #ifdef USB_DEBUG
1905 			xhci_dump_trb(&td->td_trb[x]);
1906 #endif
1907 			x++;
1908 
1909 		} while (average != 0);
1910 
1911 		td->td_trb[x-1].dwTrb3 |= htole32(XHCI_TRB_3_IOC_BIT);
1912 
1913 		/* store number of data TRB's */
1914 
1915 		td->ntrb = x;
1916 
1917 		DPRINTF("NTRB=%u\n", x);
1918 
1919 		/* fill out link TRB */
1920 
1921 		if (td_next != NULL) {
1922 			/* link the current TD with the next one */
1923 			td->td_trb[x].qwTrb0 = htole64((uint64_t)td_next->td_self);
1924 			DPRINTF("LINK=0x%08llx\n", (long long)td_next->td_self);
1925 		} else {
1926 			/* this field will get updated later */
1927 			DPRINTF("NOLINK\n");
1928 		}
1929 
1930 		dword = XHCI_TRB_2_IRQ_SET(0);
1931 
1932 		td->td_trb[x].dwTrb2 = htole32(dword);
1933 
1934 		dword = XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_LINK) |
1935 		    XHCI_TRB_3_CYCLE_BIT | XHCI_TRB_3_IOC_BIT |
1936 		    /*
1937 		     * CHAIN-BIT: Ensure that a multi-TRB IN-endpoint
1938 		     * frame only receives a single short packet event
1939 		     * by setting the CHAIN bit in the LINK field. In
1940 		     * addition some XHCI controllers have problems
1941 		     * sending a ZLP unless the CHAIN-BIT is set in
1942 		     * the LINK TRB.
1943 		     */
1944 		    XHCI_TRB_3_CHAIN_BIT;
1945 
1946 		td->td_trb[x].dwTrb3 = htole32(dword);
1947 
1948 		td->alt_next = td_alt_next;
1949 #ifdef USB_DEBUG
1950 		xhci_dump_trb(&td->td_trb[x]);
1951 #endif
1952 		usb_pc_cpu_flush(td->page_cache);
1953 	}
1954 
1955 	if (precompute) {
1956 		precompute = 0;
1957 
1958 		/* set up alt next pointer, if any */
1959 		if (temp->last_frame) {
1960 			td_alt_next = NULL;
1961 		} else {
1962 			/* we use this field internally */
1963 			td_alt_next = td_next;
1964 		}
1965 
1966 		/* restore */
1967 		temp->shortpkt = shortpkt_old;
1968 		temp->len = len_old;
1969 		goto restart;
1970 	}
1971 
1972 	/*
1973 	 * Remove cycle bit from the first TRB if we are
1974 	 * stepping them:
1975 	 */
1976 	if (temp->step_td != 0) {
1977 		td_first->td_trb[0].dwTrb3 &= ~htole32(XHCI_TRB_3_CYCLE_BIT);
1978 		usb_pc_cpu_flush(td_first->page_cache);
1979 	}
1980 
1981 	/* clear TD SIZE to zero, hence this is the last TRB */
1982 	/* remove chain bit because this is the last data TRB in the chain */
1983 	td->td_trb[td->ntrb - 1].dwTrb2 &= ~htole32(XHCI_TRB_2_TDSZ_SET(15));
1984 	td->td_trb[td->ntrb - 1].dwTrb3 &= ~htole32(XHCI_TRB_3_CHAIN_BIT);
1985 	/* remove CHAIN-BIT from last LINK TRB */
1986 	td->td_trb[td->ntrb].dwTrb3 &= ~htole32(XHCI_TRB_3_CHAIN_BIT);
1987 
1988 	usb_pc_cpu_flush(td->page_cache);
1989 
1990 	temp->td = td;
1991 	temp->td_next = td_next;
1992 }
1993 
1994 static void
1995 xhci_setup_generic_chain(struct usb_xfer *xfer)
1996 {
1997 	struct xhci_std_temp temp;
1998 	struct xhci_td *td;
1999 	uint32_t x;
2000 	uint32_t y;
2001 	uint8_t mult;
2002 
2003 	temp.do_isoc_sync = 0;
2004 	temp.step_td = 0;
2005 	temp.tbc = 0;
2006 	temp.tlbpc = 0;
2007 	temp.average = xfer->max_hc_frame_size;
2008 	temp.max_packet_size = xfer->max_packet_size;
2009 	temp.sc = XHCI_BUS2SC(xfer->xroot->bus);
2010 	temp.pc = NULL;
2011 	temp.last_frame = 0;
2012 	temp.offset = 0;
2013 	temp.multishort = xfer->flags_int.isochronous_xfr ||
2014 	    xfer->flags_int.control_xfr ||
2015 	    xfer->flags_int.short_frames_ok;
2016 
2017 	/* toggle the DMA set we are using */
2018 	xfer->flags_int.curr_dma_set ^= 1;
2019 
2020 	/* get next DMA set */
2021 	td = xfer->td_start[xfer->flags_int.curr_dma_set];
2022 
2023 	temp.td = NULL;
2024 	temp.td_next = td;
2025 
2026 	xfer->td_transfer_first = td;
2027 	xfer->td_transfer_cache = td;
2028 
2029 	if (xfer->flags_int.isochronous_xfr) {
2030 		uint8_t shift;
2031 
2032 		/* compute multiplier for ISOCHRONOUS transfers */
2033 		mult = xfer->endpoint->ecomp ?
2034 		    UE_GET_SS_ISO_MULT(xfer->endpoint->ecomp->bmAttributes)
2035 		    : 0;
2036 		/* check for USB 2.0 multiplier */
2037 		if (mult == 0) {
2038 			mult = (xfer->endpoint->edesc->
2039 			    wMaxPacketSize[1] >> 3) & 3;
2040 		}
2041 		/* range check */
2042 		if (mult > 2)
2043 			mult = 3;
2044 		else
2045 			mult++;
2046 
2047 		x = XREAD4(temp.sc, runt, XHCI_MFINDEX);
2048 
2049 		DPRINTF("MFINDEX=0x%08x\n", x);
2050 
2051 		switch (usbd_get_speed(xfer->xroot->udev)) {
2052 		case USB_SPEED_FULL:
2053 			shift = 3;
2054 			temp.isoc_delta = 8;	/* 1ms */
2055 			x += temp.isoc_delta - 1;
2056 			x &= ~(temp.isoc_delta - 1);
2057 			break;
2058 		default:
2059 			shift = usbd_xfer_get_fps_shift(xfer);
2060 			temp.isoc_delta = 1U << shift;
2061 			x += temp.isoc_delta - 1;
2062 			x &= ~(temp.isoc_delta - 1);
2063 			/* simple frame load balancing */
2064 			x += xfer->endpoint->usb_uframe;
2065 			break;
2066 		}
2067 
2068 		y = XHCI_MFINDEX_GET(x - xfer->endpoint->isoc_next);
2069 
2070 		if ((xfer->endpoint->is_synced == 0) ||
2071 		    (y < (xfer->nframes << shift)) ||
2072 		    (XHCI_MFINDEX_GET(-y) >= (128 * 8))) {
2073 			/*
2074 			 * If there is data underflow or the pipe
2075 			 * queue is empty we schedule the transfer a
2076 			 * few frames ahead of the current frame
2077 			 * position. Else two isochronous transfers
2078 			 * might overlap.
2079 			 */
2080 			xfer->endpoint->isoc_next = XHCI_MFINDEX_GET(x + (3 * 8));
2081 			xfer->endpoint->is_synced = 1;
2082 			temp.do_isoc_sync = 1;
2083 
2084 			DPRINTFN(3, "start next=%d\n", xfer->endpoint->isoc_next);
2085 		}
2086 
2087 		/* compute isochronous completion time */
2088 
2089 		y = XHCI_MFINDEX_GET(xfer->endpoint->isoc_next - (x & ~7));
2090 
2091 		xfer->isoc_time_complete =
2092 		    usb_isoc_time_expand(&temp.sc->sc_bus, x / 8) +
2093 		    (y / 8) + (((xfer->nframes << shift) + 7) / 8);
2094 
2095 		x = 0;
2096 		temp.isoc_frame = xfer->endpoint->isoc_next;
2097 		temp.trb_type = XHCI_TRB_TYPE_ISOCH;
2098 
2099 		xfer->endpoint->isoc_next += xfer->nframes << shift;
2100 
2101 	} else if (xfer->flags_int.control_xfr) {
2102 
2103 		/* check if we should prepend a setup message */
2104 
2105 		if (xfer->flags_int.control_hdr) {
2106 
2107 			temp.len = xfer->frlengths[0];
2108 			temp.pc = xfer->frbuffers + 0;
2109 			temp.shortpkt = temp.len ? 1 : 0;
2110 			temp.trb_type = XHCI_TRB_TYPE_SETUP_STAGE;
2111 			temp.direction = 0;
2112 
2113 			/* check for last frame */
2114 			if (xfer->nframes == 1) {
2115 				/* no STATUS stage yet, SETUP is last */
2116 				if (xfer->flags_int.control_act)
2117 					temp.last_frame = 1;
2118 			}
2119 
2120 			xhci_setup_generic_chain_sub(&temp);
2121 		}
2122 		x = 1;
2123 		mult = 1;
2124 		temp.isoc_delta = 0;
2125 		temp.isoc_frame = 0;
2126 		temp.trb_type = xfer->flags_int.control_did_data ?
2127 		    XHCI_TRB_TYPE_NORMAL : XHCI_TRB_TYPE_DATA_STAGE;
2128 	} else {
2129 		x = 0;
2130 		mult = 1;
2131 		temp.isoc_delta = 0;
2132 		temp.isoc_frame = 0;
2133 		temp.trb_type = XHCI_TRB_TYPE_NORMAL;
2134 	}
2135 
2136 	if (x != xfer->nframes) {
2137                 /* set up page_cache pointer */
2138                 temp.pc = xfer->frbuffers + x;
2139 		/* set endpoint direction */
2140 		temp.direction = UE_GET_DIR(xfer->endpointno);
2141 	}
2142 
2143 	while (x != xfer->nframes) {
2144 
2145 		/* DATA0 / DATA1 message */
2146 
2147 		temp.len = xfer->frlengths[x];
2148 		temp.step_td = ((xfer->endpointno & UE_DIR_IN) &&
2149 		    x != 0 && temp.multishort == 0);
2150 
2151 		x++;
2152 
2153 		if (x == xfer->nframes) {
2154 			if (xfer->flags_int.control_xfr) {
2155 				/* no STATUS stage yet, DATA is last */
2156 				if (xfer->flags_int.control_act)
2157 					temp.last_frame = 1;
2158 			} else {
2159 				temp.last_frame = 1;
2160 			}
2161 		}
2162 		if (temp.len == 0) {
2163 
2164 			/* make sure that we send an USB packet */
2165 
2166 			temp.shortpkt = 0;
2167 
2168 			temp.tbc = 0;
2169 			temp.tlbpc = mult - 1;
2170 
2171 		} else if (xfer->flags_int.isochronous_xfr) {
2172 
2173 			uint8_t tdpc;
2174 
2175 			/*
2176 			 * Isochronous transfers don't have short
2177 			 * packet termination:
2178 			 */
2179 
2180 			temp.shortpkt = 1;
2181 
2182 			/* isochronous transfers have a transfer limit */
2183 
2184 			if (temp.len > xfer->max_frame_size)
2185 				temp.len = xfer->max_frame_size;
2186 
2187 			/* compute TD packet count */
2188 			tdpc = (temp.len + xfer->max_packet_size - 1) /
2189 			    xfer->max_packet_size;
2190 
2191 			temp.tbc = ((tdpc + mult - 1) / mult) - 1;
2192 			temp.tlbpc = (tdpc % mult);
2193 
2194 			if (temp.tlbpc == 0)
2195 				temp.tlbpc = mult - 1;
2196 			else
2197 				temp.tlbpc--;
2198 		} else {
2199 
2200 			/* regular data transfer */
2201 
2202 			temp.shortpkt = xfer->flags.force_short_xfer ? 0 : 1;
2203 		}
2204 
2205 		xhci_setup_generic_chain_sub(&temp);
2206 
2207 		if (xfer->flags_int.isochronous_xfr) {
2208 			temp.offset += xfer->frlengths[x - 1];
2209 			temp.isoc_frame += temp.isoc_delta;
2210 		} else {
2211 			/* get next Page Cache pointer */
2212 			temp.pc = xfer->frbuffers + x;
2213 		}
2214 	}
2215 
2216 	/* check if we should append a status stage */
2217 
2218 	if (xfer->flags_int.control_xfr &&
2219 	    !xfer->flags_int.control_act) {
2220 
2221 		/*
2222 		 * Send a DATA1 message and invert the current
2223 		 * endpoint direction.
2224 		 */
2225 		temp.step_td = (xfer->nframes != 0);
2226 		temp.direction = UE_GET_DIR(xfer->endpointno) ^ UE_DIR_IN;
2227 		temp.len = 0;
2228 		temp.pc = NULL;
2229 		temp.shortpkt = 0;
2230 		temp.last_frame = 1;
2231 		temp.trb_type = XHCI_TRB_TYPE_STATUS_STAGE;
2232 
2233 		xhci_setup_generic_chain_sub(&temp);
2234 	}
2235 
2236 	td = temp.td;
2237 
2238 	/* must have at least one frame! */
2239 
2240 	xfer->td_transfer_last = td;
2241 
2242 	DPRINTF("first=%p last=%p\n", xfer->td_transfer_first, td);
2243 }
2244 
2245 static void
2246 xhci_set_slot_pointer(struct xhci_softc *sc, uint8_t index, uint64_t dev_addr)
2247 {
2248 	struct usb_page_search buf_res;
2249 	struct xhci_dev_ctx_addr *pdctxa;
2250 
2251 	usbd_get_page(&sc->sc_hw.ctx_pc, 0, &buf_res);
2252 
2253 	pdctxa = buf_res.buffer;
2254 
2255 	DPRINTF("addr[%u]=0x%016llx\n", index, (long long)dev_addr);
2256 
2257 	pdctxa->qwBaaDevCtxAddr[index] = htole64(dev_addr);
2258 
2259 	usb_pc_cpu_flush(&sc->sc_hw.ctx_pc);
2260 }
2261 
2262 static usb_error_t
2263 xhci_configure_mask(struct usb_device *udev, uint32_t mask, uint8_t drop)
2264 {
2265 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
2266 	struct usb_page_search buf_inp;
2267 	struct xhci_input_dev_ctx *pinp;
2268 	uint32_t temp;
2269 	uint8_t index;
2270 	uint8_t x;
2271 
2272 	index = udev->controller_slot_id;
2273 
2274 	usbd_get_page(&sc->sc_hw.devs[index].input_pc, 0, &buf_inp);
2275 
2276 	pinp = buf_inp.buffer;
2277 
2278 	if (drop) {
2279 		mask &= XHCI_INCTX_NON_CTRL_MASK;
2280 		xhci_ctx_set_le32(sc, &pinp->ctx_input.dwInCtx0, mask);
2281 		xhci_ctx_set_le32(sc, &pinp->ctx_input.dwInCtx1, 0);
2282 	} else {
2283 		/*
2284 		 * Some hardware requires that we drop the endpoint
2285 		 * context before adding it again:
2286 		 */
2287 		xhci_ctx_set_le32(sc, &pinp->ctx_input.dwInCtx0,
2288 		    mask & XHCI_INCTX_NON_CTRL_MASK);
2289 
2290 		/* Add new endpoint context */
2291 		xhci_ctx_set_le32(sc, &pinp->ctx_input.dwInCtx1, mask);
2292 
2293 		/* find most significant set bit */
2294 		for (x = 31; x != 1; x--) {
2295 			if (mask & (1 << x))
2296 				break;
2297 		}
2298 
2299 		/* adjust */
2300 		x--;
2301 
2302 		/* figure out the maximum number of contexts */
2303 		if (x > sc->sc_hw.devs[index].context_num)
2304 			sc->sc_hw.devs[index].context_num = x;
2305 		else
2306 			x = sc->sc_hw.devs[index].context_num;
2307 
2308 		/* update number of contexts */
2309 		temp = xhci_ctx_get_le32(sc, &pinp->ctx_slot.dwSctx0);
2310 		temp &= ~XHCI_SCTX_0_CTX_NUM_SET(31);
2311 		temp |= XHCI_SCTX_0_CTX_NUM_SET(x + 1);
2312 		xhci_ctx_set_le32(sc, &pinp->ctx_slot.dwSctx0, temp);
2313 	}
2314 	usb_pc_cpu_flush(&sc->sc_hw.devs[index].input_pc);
2315 	return (0);
2316 }
2317 
2318 static usb_error_t
2319 xhci_configure_endpoint(struct usb_device *udev,
2320     struct usb_endpoint_descriptor *edesc, struct xhci_endpoint_ext *pepext,
2321     uint16_t interval, uint8_t max_packet_count,
2322     uint8_t mult, uint8_t fps_shift, uint16_t max_packet_size,
2323     uint16_t max_frame_size, uint8_t ep_mode)
2324 {
2325 	struct usb_page_search buf_inp;
2326 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
2327 	struct xhci_input_dev_ctx *pinp;
2328 	uint64_t ring_addr = pepext->physaddr;
2329 	uint32_t temp;
2330 	uint8_t index;
2331 	uint8_t epno;
2332 	uint8_t type;
2333 
2334 	index = udev->controller_slot_id;
2335 
2336 	usbd_get_page(&sc->sc_hw.devs[index].input_pc, 0, &buf_inp);
2337 
2338 	pinp = buf_inp.buffer;
2339 
2340 	epno = edesc->bEndpointAddress;
2341 	type = edesc->bmAttributes & UE_XFERTYPE;
2342 
2343 	if (type == UE_CONTROL)
2344 		epno |= UE_DIR_IN;
2345 
2346 	epno = XHCI_EPNO2EPID(epno);
2347 
2348  	if (epno == 0)
2349 		return (USB_ERR_NO_PIPE);		/* invalid */
2350 
2351 	if (max_packet_count == 0)
2352 		return (USB_ERR_BAD_BUFSIZE);
2353 
2354 	max_packet_count--;
2355 
2356 	if (mult == 0)
2357 		return (USB_ERR_BAD_BUFSIZE);
2358 
2359 	/* store endpoint mode */
2360 	pepext->trb_ep_mode = ep_mode;
2361 	usb_pc_cpu_flush(pepext->page_cache);
2362 
2363 	if (ep_mode == USB_EP_MODE_STREAMS) {
2364 		temp = XHCI_EPCTX_0_EPSTATE_SET(0) |
2365 		    XHCI_EPCTX_0_MAXP_STREAMS_SET(XHCI_MAX_STREAMS_LOG - 1) |
2366 		    XHCI_EPCTX_0_LSA_SET(1);
2367 
2368 		ring_addr += sizeof(struct xhci_trb) *
2369 		    XHCI_MAX_TRANSFERS * XHCI_MAX_STREAMS;
2370 	} else {
2371 		temp = XHCI_EPCTX_0_EPSTATE_SET(0) |
2372 		    XHCI_EPCTX_0_MAXP_STREAMS_SET(0) |
2373 		    XHCI_EPCTX_0_LSA_SET(0);
2374 
2375 		ring_addr |= XHCI_EPCTX_2_DCS_SET(1);
2376 	}
2377 
2378 	switch (udev->speed) {
2379 	case USB_SPEED_FULL:
2380 	case USB_SPEED_LOW:
2381 		/* 1ms -> 125us */
2382 		fps_shift += 3;
2383 		break;
2384 	default:
2385 		break;
2386 	}
2387 
2388 	switch (type) {
2389 	case UE_INTERRUPT:
2390 		if (fps_shift > 3)
2391 			fps_shift--;
2392 		temp |= XHCI_EPCTX_0_IVAL_SET(fps_shift);
2393 		break;
2394 	case UE_ISOCHRONOUS:
2395 		temp |= XHCI_EPCTX_0_IVAL_SET(fps_shift);
2396 
2397 		switch (udev->speed) {
2398 		case USB_SPEED_SUPER:
2399 			if (mult > 3)
2400 				mult = 3;
2401 			temp |= XHCI_EPCTX_0_MULT_SET(mult - 1);
2402 			max_packet_count /= mult;
2403 			break;
2404 		default:
2405 			break;
2406 		}
2407 		break;
2408 	default:
2409 		break;
2410 	}
2411 
2412 	xhci_ctx_set_le32(sc, &pinp->ctx_ep[epno - 1].dwEpCtx0, temp);
2413 
2414 	temp =
2415 	    XHCI_EPCTX_1_HID_SET(0) |
2416 	    XHCI_EPCTX_1_MAXB_SET(max_packet_count) |
2417 	    XHCI_EPCTX_1_MAXP_SIZE_SET(max_packet_size);
2418 
2419 	/*
2420 	 * Always enable the "three strikes and you are gone" feature
2421 	 * except for ISOCHRONOUS endpoints. This is suggested by
2422 	 * section 4.3.3 in the XHCI specification about device slot
2423 	 * initialisation.
2424 	 */
2425 	if (type != UE_ISOCHRONOUS)
2426 		temp |= XHCI_EPCTX_1_CERR_SET(3);
2427 
2428 	switch (type) {
2429 	case UE_CONTROL:
2430 		temp |= XHCI_EPCTX_1_EPTYPE_SET(4);
2431 		break;
2432 	case UE_ISOCHRONOUS:
2433 		temp |= XHCI_EPCTX_1_EPTYPE_SET(1);
2434 		break;
2435 	case UE_BULK:
2436 		temp |= XHCI_EPCTX_1_EPTYPE_SET(2);
2437 		break;
2438 	default:
2439 		temp |= XHCI_EPCTX_1_EPTYPE_SET(3);
2440 		break;
2441 	}
2442 
2443 	/* check for IN direction */
2444 	if (epno & 1)
2445 		temp |= XHCI_EPCTX_1_EPTYPE_SET(4);
2446 
2447 	xhci_ctx_set_le32(sc, &pinp->ctx_ep[epno - 1].dwEpCtx1, temp);
2448 	xhci_ctx_set_le64(sc, &pinp->ctx_ep[epno - 1].qwEpCtx2, ring_addr);
2449 
2450 	switch (edesc->bmAttributes & UE_XFERTYPE) {
2451 	case UE_INTERRUPT:
2452 	case UE_ISOCHRONOUS:
2453 		temp = XHCI_EPCTX_4_MAX_ESIT_PAYLOAD_SET(max_frame_size) |
2454 		    XHCI_EPCTX_4_AVG_TRB_LEN_SET(MIN(XHCI_PAGE_SIZE,
2455 		    max_frame_size));
2456 		break;
2457 	case UE_CONTROL:
2458 		temp = XHCI_EPCTX_4_AVG_TRB_LEN_SET(8);
2459 		break;
2460 	default:
2461 		temp = XHCI_EPCTX_4_AVG_TRB_LEN_SET(XHCI_PAGE_SIZE);
2462 		break;
2463 	}
2464 
2465 	xhci_ctx_set_le32(sc, &pinp->ctx_ep[epno - 1].dwEpCtx4, temp);
2466 
2467 #ifdef USB_DEBUG
2468 	xhci_dump_endpoint(sc, &pinp->ctx_ep[epno - 1]);
2469 #endif
2470 	usb_pc_cpu_flush(&sc->sc_hw.devs[index].input_pc);
2471 
2472 	return (0);		/* success */
2473 }
2474 
2475 static usb_error_t
2476 xhci_configure_endpoint_by_xfer(struct usb_xfer *xfer)
2477 {
2478 	struct xhci_endpoint_ext *pepext;
2479 	struct usb_endpoint_ss_comp_descriptor *ecomp;
2480 	usb_stream_t x;
2481 
2482 	pepext = xhci_get_endpoint_ext(xfer->xroot->udev,
2483 	    xfer->endpoint->edesc);
2484 
2485 	ecomp = xfer->endpoint->ecomp;
2486 
2487 	for (x = 0; x != XHCI_MAX_STREAMS; x++) {
2488 		uint64_t temp;
2489 
2490 		/* halt any transfers */
2491 		pepext->trb[x * XHCI_MAX_TRANSFERS].dwTrb3 = 0;
2492 
2493 		/* compute start of TRB ring for stream "x" */
2494 		temp = pepext->physaddr +
2495 		    (x * XHCI_MAX_TRANSFERS * sizeof(struct xhci_trb)) +
2496 		    XHCI_SCTX_0_SCT_SEC_TR_RING;
2497 
2498 		/* make tree structure */
2499 		pepext->trb[(XHCI_MAX_TRANSFERS *
2500 		    XHCI_MAX_STREAMS) + x].qwTrb0 = htole64(temp);
2501 
2502 		/* reserved fields */
2503 		pepext->trb[(XHCI_MAX_TRANSFERS *
2504                     XHCI_MAX_STREAMS) + x].dwTrb2 = 0;
2505 		pepext->trb[(XHCI_MAX_TRANSFERS *
2506 		    XHCI_MAX_STREAMS) + x].dwTrb3 = 0;
2507 	}
2508 	usb_pc_cpu_flush(pepext->page_cache);
2509 
2510 	return (xhci_configure_endpoint(xfer->xroot->udev,
2511 	    xfer->endpoint->edesc, pepext,
2512 	    xfer->interval, xfer->max_packet_count,
2513 	    (ecomp != NULL) ? UE_GET_SS_ISO_MULT(ecomp->bmAttributes) + 1 : 1,
2514 	    usbd_xfer_get_fps_shift(xfer), xfer->max_packet_size,
2515 	    xfer->max_frame_size, xfer->endpoint->ep_mode));
2516 }
2517 
2518 static usb_error_t
2519 xhci_configure_device(struct usb_device *udev)
2520 {
2521 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
2522 	struct usb_page_search buf_inp;
2523 	struct usb_page_cache *pcinp;
2524 	struct xhci_input_dev_ctx *pinp;
2525 	struct usb_device *hubdev;
2526 	uint32_t temp;
2527 	uint32_t route;
2528 	uint32_t rh_port;
2529 	uint8_t is_hub;
2530 	uint8_t index;
2531 	uint8_t depth;
2532 
2533 	index = udev->controller_slot_id;
2534 
2535 	DPRINTF("index=%u\n", index);
2536 
2537 	pcinp = &sc->sc_hw.devs[index].input_pc;
2538 
2539 	usbd_get_page(pcinp, 0, &buf_inp);
2540 
2541 	pinp = buf_inp.buffer;
2542 
2543 	rh_port = 0;
2544 	route = 0;
2545 
2546 	/* figure out route string and root HUB port number */
2547 
2548 	for (hubdev = udev; hubdev != NULL; hubdev = hubdev->parent_hub) {
2549 
2550 		if (hubdev->parent_hub == NULL)
2551 			break;
2552 
2553 		depth = hubdev->parent_hub->depth;
2554 
2555 		/*
2556 		 * NOTE: HS/FS/LS devices and the SS root HUB can have
2557 		 * more than 15 ports
2558 		 */
2559 
2560 		rh_port = hubdev->port_no;
2561 
2562 		if (depth == 0)
2563 			break;
2564 
2565 		if (rh_port > 15)
2566 			rh_port = 15;
2567 
2568 		if (depth < 6)
2569 			route |= rh_port << (4 * (depth - 1));
2570 	}
2571 
2572 	DPRINTF("Route=0x%08x\n", route);
2573 
2574 	temp = XHCI_SCTX_0_ROUTE_SET(route) |
2575 	    XHCI_SCTX_0_CTX_NUM_SET(
2576 	    sc->sc_hw.devs[index].context_num + 1);
2577 
2578 	switch (udev->speed) {
2579 	case USB_SPEED_LOW:
2580 		temp |= XHCI_SCTX_0_SPEED_SET(2);
2581 		if (udev->parent_hs_hub != NULL &&
2582 		    udev->parent_hs_hub->ddesc.bDeviceProtocol ==
2583 		    UDPROTO_HSHUBMTT) {
2584 			DPRINTF("Device inherits MTT\n");
2585 			temp |= XHCI_SCTX_0_MTT_SET(1);
2586 		}
2587 		break;
2588 	case USB_SPEED_HIGH:
2589 		temp |= XHCI_SCTX_0_SPEED_SET(3);
2590 		if (sc->sc_hw.devs[index].nports != 0 &&
2591 		    udev->ddesc.bDeviceProtocol == UDPROTO_HSHUBMTT) {
2592 			DPRINTF("HUB supports MTT\n");
2593 			temp |= XHCI_SCTX_0_MTT_SET(1);
2594 		}
2595 		break;
2596 	case USB_SPEED_FULL:
2597 		temp |= XHCI_SCTX_0_SPEED_SET(1);
2598 		if (udev->parent_hs_hub != NULL &&
2599 		    udev->parent_hs_hub->ddesc.bDeviceProtocol ==
2600 		    UDPROTO_HSHUBMTT) {
2601 			DPRINTF("Device inherits MTT\n");
2602 			temp |= XHCI_SCTX_0_MTT_SET(1);
2603 		}
2604 		break;
2605 	default:
2606 		temp |= XHCI_SCTX_0_SPEED_SET(4);
2607 		break;
2608 	}
2609 
2610 	is_hub = sc->sc_hw.devs[index].nports != 0 &&
2611 	    (udev->speed == USB_SPEED_SUPER ||
2612 	    udev->speed == USB_SPEED_HIGH);
2613 
2614 	if (is_hub)
2615 		temp |= XHCI_SCTX_0_HUB_SET(1);
2616 
2617 	xhci_ctx_set_le32(sc, &pinp->ctx_slot.dwSctx0, temp);
2618 
2619 	temp = XHCI_SCTX_1_RH_PORT_SET(rh_port);
2620 
2621 	if (is_hub) {
2622 		temp |= XHCI_SCTX_1_NUM_PORTS_SET(
2623 		    sc->sc_hw.devs[index].nports);
2624 	}
2625 
2626 	switch (udev->speed) {
2627 	case USB_SPEED_SUPER:
2628 		switch (sc->sc_hw.devs[index].state) {
2629 		case XHCI_ST_ADDRESSED:
2630 		case XHCI_ST_CONFIGURED:
2631 			/* enable power save */
2632 			temp |= XHCI_SCTX_1_MAX_EL_SET(sc->sc_exit_lat_max);
2633 			break;
2634 		default:
2635 			/* disable power save */
2636 			break;
2637 		}
2638 		break;
2639 	default:
2640 		break;
2641 	}
2642 
2643 	xhci_ctx_set_le32(sc, &pinp->ctx_slot.dwSctx1, temp);
2644 
2645 	temp = XHCI_SCTX_2_IRQ_TARGET_SET(0);
2646 
2647 	if (is_hub) {
2648 		temp |= XHCI_SCTX_2_TT_THINK_TIME_SET(
2649 		    sc->sc_hw.devs[index].tt);
2650 	}
2651 
2652 	hubdev = udev->parent_hs_hub;
2653 
2654 	/* check if we should activate the transaction translator */
2655 	switch (udev->speed) {
2656 	case USB_SPEED_FULL:
2657 	case USB_SPEED_LOW:
2658 		if (hubdev != NULL) {
2659 			temp |= XHCI_SCTX_2_TT_HUB_SID_SET(
2660 			    hubdev->controller_slot_id);
2661 			temp |= XHCI_SCTX_2_TT_PORT_NUM_SET(
2662 			    udev->hs_port_no);
2663 		}
2664 		break;
2665 	default:
2666 		break;
2667 	}
2668 
2669 	xhci_ctx_set_le32(sc, &pinp->ctx_slot.dwSctx2, temp);
2670 
2671 	/*
2672 	 * These fields should be initialized to zero, according to
2673 	 * XHCI section 6.2.2 - slot context:
2674 	 */
2675 	temp = XHCI_SCTX_3_DEV_ADDR_SET(0) |
2676 	    XHCI_SCTX_3_SLOT_STATE_SET(0);
2677 
2678 	xhci_ctx_set_le32(sc, &pinp->ctx_slot.dwSctx3, temp);
2679 
2680 #ifdef USB_DEBUG
2681 	xhci_dump_device(sc, &pinp->ctx_slot);
2682 #endif
2683 	usb_pc_cpu_flush(pcinp);
2684 
2685 	return (0);		/* success */
2686 }
2687 
2688 static usb_error_t
2689 xhci_alloc_device_ext(struct usb_device *udev)
2690 {
2691 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
2692 	struct usb_page_search buf_dev;
2693 	struct usb_page_search buf_ep;
2694 	struct xhci_trb *trb;
2695 	struct usb_page_cache *pc;
2696 	struct usb_page *pg;
2697 	uint64_t addr;
2698 	uint8_t index;
2699 	uint8_t i;
2700 
2701 	index = udev->controller_slot_id;
2702 
2703 	pc = &sc->sc_hw.devs[index].device_pc;
2704 	pg = &sc->sc_hw.devs[index].device_pg;
2705 
2706 	/* need to initialize the page cache */
2707 	pc->tag_parent = sc->sc_bus.dma_parent_tag;
2708 
2709 	if (usb_pc_alloc_mem(pc, pg, sc->sc_ctx_is_64_byte ?
2710 	    (2 * sizeof(struct xhci_dev_ctx)) :
2711 	    sizeof(struct xhci_dev_ctx), XHCI_PAGE_SIZE))
2712 		goto error;
2713 
2714 	usbd_get_page(pc, 0, &buf_dev);
2715 
2716 	pc = &sc->sc_hw.devs[index].input_pc;
2717 	pg = &sc->sc_hw.devs[index].input_pg;
2718 
2719 	/* need to initialize the page cache */
2720 	pc->tag_parent = sc->sc_bus.dma_parent_tag;
2721 
2722 	if (usb_pc_alloc_mem(pc, pg, sc->sc_ctx_is_64_byte ?
2723 	    (2 * sizeof(struct xhci_input_dev_ctx)) :
2724 	    sizeof(struct xhci_input_dev_ctx), XHCI_PAGE_SIZE)) {
2725 		goto error;
2726 	}
2727 
2728 	/* initialize all endpoint LINK TRBs */
2729 
2730 	for (i = 0; i != XHCI_MAX_ENDPOINTS; i++) {
2731 
2732 		pc = &sc->sc_hw.devs[index].endpoint_pc[i];
2733 		pg = &sc->sc_hw.devs[index].endpoint_pg[i];
2734 
2735 		/* need to initialize the page cache */
2736 		pc->tag_parent = sc->sc_bus.dma_parent_tag;
2737 
2738 		if (usb_pc_alloc_mem(pc, pg,
2739 		    sizeof(struct xhci_dev_endpoint_trbs), XHCI_TRB_ALIGN)) {
2740 			goto error;
2741 		}
2742 
2743 		/* lookup endpoint TRB ring */
2744 		usbd_get_page(pc, 0, &buf_ep);
2745 
2746 		/* get TRB pointer */
2747 		trb = buf_ep.buffer;
2748 		trb += XHCI_MAX_TRANSFERS - 1;
2749 
2750 		/* get TRB start address */
2751 		addr = buf_ep.physaddr;
2752 
2753 		/* create LINK TRB */
2754 		trb->qwTrb0 = htole64(addr);
2755 		trb->dwTrb2 = htole32(XHCI_TRB_2_IRQ_SET(0));
2756 		trb->dwTrb3 = htole32(XHCI_TRB_3_CYCLE_BIT |
2757 		    XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_LINK));
2758 
2759 		usb_pc_cpu_flush(pc);
2760 	}
2761 
2762 	xhci_set_slot_pointer(sc, index, buf_dev.physaddr);
2763 
2764 	return (0);
2765 
2766 error:
2767 	xhci_free_device_ext(udev);
2768 
2769 	return (USB_ERR_NOMEM);
2770 }
2771 
2772 static void
2773 xhci_free_device_ext(struct usb_device *udev)
2774 {
2775 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
2776 	uint8_t index;
2777 	uint8_t i;
2778 
2779 	index = udev->controller_slot_id;
2780 	xhci_set_slot_pointer(sc, index, 0);
2781 
2782 	usb_pc_free_mem(&sc->sc_hw.devs[index].device_pc);
2783 	usb_pc_free_mem(&sc->sc_hw.devs[index].input_pc);
2784 	for (i = 0; i != XHCI_MAX_ENDPOINTS; i++)
2785 		usb_pc_free_mem(&sc->sc_hw.devs[index].endpoint_pc[i]);
2786 }
2787 
2788 static struct xhci_endpoint_ext *
2789 xhci_get_endpoint_ext(struct usb_device *udev, struct usb_endpoint_descriptor *edesc)
2790 {
2791 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
2792 	struct xhci_endpoint_ext *pepext;
2793 	struct usb_page_cache *pc;
2794 	struct usb_page_search buf_ep;
2795 	uint8_t epno;
2796 	uint8_t index;
2797 
2798 	epno = edesc->bEndpointAddress;
2799 	if ((edesc->bmAttributes & UE_XFERTYPE) == UE_CONTROL)
2800 		epno |= UE_DIR_IN;
2801 
2802 	epno = XHCI_EPNO2EPID(epno);
2803 
2804 	index = udev->controller_slot_id;
2805 
2806 	pc = &sc->sc_hw.devs[index].endpoint_pc[epno];
2807 
2808 	usbd_get_page(pc, 0, &buf_ep);
2809 
2810 	pepext = &sc->sc_hw.devs[index].endp[epno];
2811 	pepext->page_cache = pc;
2812 	pepext->trb = buf_ep.buffer;
2813 	pepext->physaddr = buf_ep.physaddr;
2814 
2815 	return (pepext);
2816 }
2817 
2818 static void
2819 xhci_endpoint_doorbell(struct usb_xfer *xfer)
2820 {
2821 	struct xhci_softc *sc = XHCI_BUS2SC(xfer->xroot->bus);
2822 	uint8_t epno;
2823 	uint8_t index;
2824 
2825 	epno = xfer->endpointno;
2826 	if (xfer->flags_int.control_xfr)
2827 		epno |= UE_DIR_IN;
2828 
2829 	epno = XHCI_EPNO2EPID(epno);
2830 	index = xfer->xroot->udev->controller_slot_id;
2831 
2832 	if (xfer->xroot->udev->flags.self_suspended == 0) {
2833 		XWRITE4(sc, door, XHCI_DOORBELL(index),
2834 		    epno | XHCI_DB_SID_SET(xfer->stream_id));
2835 	}
2836 }
2837 
2838 static void
2839 xhci_transfer_remove(struct usb_xfer *xfer, usb_error_t error)
2840 {
2841 	struct xhci_endpoint_ext *pepext;
2842 
2843 	if (xfer->flags_int.bandwidth_reclaimed) {
2844 		xfer->flags_int.bandwidth_reclaimed = 0;
2845 
2846 		pepext = xhci_get_endpoint_ext(xfer->xroot->udev,
2847 		    xfer->endpoint->edesc);
2848 
2849 		pepext->trb_used[xfer->stream_id]--;
2850 
2851 		pepext->xfer[xfer->qh_pos] = NULL;
2852 
2853 		if (error && pepext->trb_running != 0) {
2854 			pepext->trb_halted = 1;
2855 			pepext->trb_running = 0;
2856 		}
2857 	}
2858 }
2859 
2860 static usb_error_t
2861 xhci_transfer_insert(struct usb_xfer *xfer)
2862 {
2863 	struct xhci_td *td_first;
2864 	struct xhci_td *td_last;
2865 	struct xhci_trb *trb_link;
2866 	struct xhci_endpoint_ext *pepext;
2867 	uint64_t addr;
2868 	usb_stream_t id;
2869 	uint8_t i;
2870 	uint8_t inext;
2871 	uint8_t trb_limit;
2872 
2873 	DPRINTFN(8, "\n");
2874 
2875 	id = xfer->stream_id;
2876 
2877 	/* check if already inserted */
2878 	if (xfer->flags_int.bandwidth_reclaimed) {
2879 		DPRINTFN(8, "Already in schedule\n");
2880 		return (0);
2881 	}
2882 
2883 	pepext = xhci_get_endpoint_ext(xfer->xroot->udev,
2884 	    xfer->endpoint->edesc);
2885 
2886 	td_first = xfer->td_transfer_first;
2887 	td_last = xfer->td_transfer_last;
2888 	addr = pepext->physaddr;
2889 
2890 	switch (xfer->endpoint->edesc->bmAttributes & UE_XFERTYPE) {
2891 	case UE_CONTROL:
2892 	case UE_INTERRUPT:
2893 		/* single buffered */
2894 		trb_limit = 1;
2895 		break;
2896 	default:
2897 		/* multi buffered */
2898 		trb_limit = (XHCI_MAX_TRANSFERS - 2);
2899 		break;
2900 	}
2901 
2902 	if (pepext->trb_used[id] >= trb_limit) {
2903 		DPRINTFN(8, "Too many TDs queued.\n");
2904 		return (USB_ERR_NOMEM);
2905 	}
2906 
2907 	/* check for stopped condition, after putting transfer on interrupt queue */
2908 	if (pepext->trb_running == 0) {
2909 		struct xhci_softc *sc = XHCI_BUS2SC(xfer->xroot->bus);
2910 
2911 		DPRINTFN(8, "Not running\n");
2912 
2913 		/* start configuration */
2914 		(void)usb_proc_msignal(USB_BUS_CONTROL_XFER_PROC(&sc->sc_bus),
2915 		    &sc->sc_config_msg[0], &sc->sc_config_msg[1]);
2916 		return (0);
2917 	}
2918 
2919 	pepext->trb_used[id]++;
2920 
2921 	/* get current TRB index */
2922 	i = pepext->trb_index[id];
2923 
2924 	/* get next TRB index */
2925 	inext = (i + 1);
2926 
2927 	/* the last entry of the ring is a hardcoded link TRB */
2928 	if (inext >= (XHCI_MAX_TRANSFERS - 1))
2929 		inext = 0;
2930 
2931 	/* store next TRB index, before stream ID offset is added */
2932 	pepext->trb_index[id] = inext;
2933 
2934 	/* offset for stream */
2935 	i += id * XHCI_MAX_TRANSFERS;
2936 	inext += id * XHCI_MAX_TRANSFERS;
2937 
2938 	/* compute terminating return address */
2939 	addr += (inext * sizeof(struct xhci_trb));
2940 
2941 	/* compute link TRB pointer */
2942 	trb_link = td_last->td_trb + td_last->ntrb;
2943 
2944 	/* update next pointer of last link TRB */
2945 	trb_link->qwTrb0 = htole64(addr);
2946 	trb_link->dwTrb2 = htole32(XHCI_TRB_2_IRQ_SET(0));
2947 	trb_link->dwTrb3 = htole32(XHCI_TRB_3_IOC_BIT |
2948 	    XHCI_TRB_3_CYCLE_BIT |
2949 	    XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_LINK));
2950 
2951 #ifdef USB_DEBUG
2952 	xhci_dump_trb(&td_last->td_trb[td_last->ntrb]);
2953 #endif
2954 	usb_pc_cpu_flush(td_last->page_cache);
2955 
2956 	/* write ahead chain end marker */
2957 
2958 	pepext->trb[inext].qwTrb0 = 0;
2959 	pepext->trb[inext].dwTrb2 = 0;
2960 	pepext->trb[inext].dwTrb3 = 0;
2961 
2962 	/* update next pointer of link TRB */
2963 
2964 	pepext->trb[i].qwTrb0 = htole64((uint64_t)td_first->td_self);
2965 	pepext->trb[i].dwTrb2 = htole32(XHCI_TRB_2_IRQ_SET(0));
2966 
2967 #ifdef USB_DEBUG
2968 	xhci_dump_trb(&pepext->trb[i]);
2969 #endif
2970 	usb_pc_cpu_flush(pepext->page_cache);
2971 
2972 	/* toggle cycle bit which activates the transfer chain */
2973 
2974 	pepext->trb[i].dwTrb3 = htole32(XHCI_TRB_3_CYCLE_BIT |
2975 	    XHCI_TRB_3_TYPE_SET(XHCI_TRB_TYPE_LINK));
2976 
2977 	usb_pc_cpu_flush(pepext->page_cache);
2978 
2979 	DPRINTF("qh_pos = %u\n", i);
2980 
2981 	pepext->xfer[i] = xfer;
2982 
2983 	xfer->qh_pos = i;
2984 
2985 	xfer->flags_int.bandwidth_reclaimed = 1;
2986 
2987 	xhci_endpoint_doorbell(xfer);
2988 
2989 	return (0);
2990 }
2991 
2992 static void
2993 xhci_root_intr(struct xhci_softc *sc)
2994 {
2995 	uint16_t i;
2996 
2997 	USB_BUS_LOCK_ASSERT(&sc->sc_bus, MA_OWNED);
2998 
2999 	/* clear any old interrupt data */
3000 	memset(sc->sc_hub_idata, 0, sizeof(sc->sc_hub_idata));
3001 
3002 	for (i = 1; i <= sc->sc_noport; i++) {
3003 		/* pick out CHANGE bits from the status register */
3004 		if (XREAD4(sc, oper, XHCI_PORTSC(i)) & (
3005 		    XHCI_PS_CSC | XHCI_PS_PEC |
3006 		    XHCI_PS_OCC | XHCI_PS_WRC |
3007 		    XHCI_PS_PRC | XHCI_PS_PLC |
3008 		    XHCI_PS_CEC)) {
3009 			sc->sc_hub_idata[i / 8] |= 1 << (i % 8);
3010 			DPRINTF("port %d changed\n", i);
3011 		}
3012 	}
3013 	uhub_root_intr(&sc->sc_bus, sc->sc_hub_idata,
3014 	    sizeof(sc->sc_hub_idata));
3015 }
3016 
3017 /*------------------------------------------------------------------------*
3018  *	xhci_device_done - XHCI done handler
3019  *
3020  * NOTE: This function can be called two times in a row on
3021  * the same USB transfer. From close and from interrupt.
3022  *------------------------------------------------------------------------*/
3023 static void
3024 xhci_device_done(struct usb_xfer *xfer, usb_error_t error)
3025 {
3026 	DPRINTFN(2, "xfer=%p, endpoint=%p, error=%d\n",
3027 	    xfer, xfer->endpoint, error);
3028 
3029 	/* remove transfer from HW queue */
3030 	xhci_transfer_remove(xfer, error);
3031 
3032 	/* dequeue transfer and start next transfer */
3033 	usbd_transfer_done(xfer, error);
3034 }
3035 
3036 /*------------------------------------------------------------------------*
3037  * XHCI data transfer support (generic type)
3038  *------------------------------------------------------------------------*/
3039 static void
3040 xhci_device_generic_open(struct usb_xfer *xfer)
3041 {
3042 	if (xfer->flags_int.isochronous_xfr) {
3043 		switch (xfer->xroot->udev->speed) {
3044 		case USB_SPEED_FULL:
3045 			break;
3046 		default:
3047 			usb_hs_bandwidth_alloc(xfer);
3048 			break;
3049 		}
3050 	}
3051 }
3052 
3053 static void
3054 xhci_device_generic_close(struct usb_xfer *xfer)
3055 {
3056 	DPRINTF("\n");
3057 
3058 	xhci_device_done(xfer, USB_ERR_CANCELLED);
3059 
3060 	if (xfer->flags_int.isochronous_xfr) {
3061 		switch (xfer->xroot->udev->speed) {
3062 		case USB_SPEED_FULL:
3063 			break;
3064 		default:
3065 			usb_hs_bandwidth_free(xfer);
3066 			break;
3067 		}
3068 	}
3069 }
3070 
3071 static void
3072 xhci_device_generic_multi_enter(struct usb_endpoint *ep,
3073     usb_stream_t stream_id, struct usb_xfer *enter_xfer)
3074 {
3075 	struct usb_xfer *xfer;
3076 
3077 	/* check if there is a current transfer */
3078 	xfer = ep->endpoint_q[stream_id].curr;
3079 	if (xfer == NULL)
3080 		return;
3081 
3082 	/*
3083 	 * Check if the current transfer is started and then pickup
3084 	 * the next one, if any. Else wait for next start event due to
3085 	 * block on failure feature.
3086 	 */
3087 	if (!xfer->flags_int.bandwidth_reclaimed)
3088 		return;
3089 
3090 	xfer = TAILQ_FIRST(&ep->endpoint_q[stream_id].head);
3091 	if (xfer == NULL) {
3092 		/*
3093 		 * In case of enter we have to consider that the
3094 		 * transfer is queued by the USB core after the enter
3095 		 * method is called.
3096 		 */
3097 		xfer = enter_xfer;
3098 
3099 		if (xfer == NULL)
3100 			return;
3101 	}
3102 
3103 	/* try to multi buffer */
3104 	xhci_transfer_insert(xfer);
3105 }
3106 
3107 static void
3108 xhci_device_generic_enter(struct usb_xfer *xfer)
3109 {
3110 	DPRINTF("\n");
3111 
3112 	/* set up TD's and QH */
3113 	xhci_setup_generic_chain(xfer);
3114 
3115 	xhci_device_generic_multi_enter(xfer->endpoint,
3116 	    xfer->stream_id, xfer);
3117 }
3118 
3119 static void
3120 xhci_device_generic_start(struct usb_xfer *xfer)
3121 {
3122 	DPRINTF("\n");
3123 
3124 	/* try to insert xfer on HW queue */
3125 	xhci_transfer_insert(xfer);
3126 
3127 	/* try to multi buffer */
3128 	xhci_device_generic_multi_enter(xfer->endpoint,
3129 	    xfer->stream_id, NULL);
3130 
3131 	/* add transfer last on interrupt queue */
3132 	usbd_transfer_enqueue(&xfer->xroot->bus->intr_q, xfer);
3133 
3134 	/* start timeout, if any */
3135 	if (xfer->timeout != 0)
3136 		usbd_transfer_timeout_ms(xfer, &xhci_timeout, xfer->timeout);
3137 }
3138 
3139 static const struct usb_pipe_methods xhci_device_generic_methods =
3140 {
3141 	.open = xhci_device_generic_open,
3142 	.close = xhci_device_generic_close,
3143 	.enter = xhci_device_generic_enter,
3144 	.start = xhci_device_generic_start,
3145 };
3146 
3147 /*------------------------------------------------------------------------*
3148  * xhci root HUB support
3149  *------------------------------------------------------------------------*
3150  * Simulate a hardware HUB by handling all the necessary requests.
3151  *------------------------------------------------------------------------*/
3152 
3153 #define	HSETW(ptr, val) ptr = { (uint8_t)(val), (uint8_t)((val) >> 8) }
3154 
3155 static const
3156 struct usb_device_descriptor xhci_devd =
3157 {
3158 	.bLength = sizeof(xhci_devd),
3159 	.bDescriptorType = UDESC_DEVICE,	/* type */
3160 	HSETW(.bcdUSB, 0x0300),			/* USB version */
3161 	.bDeviceClass = UDCLASS_HUB,		/* class */
3162 	.bDeviceSubClass = UDSUBCLASS_HUB,	/* subclass */
3163 	.bDeviceProtocol = UDPROTO_SSHUB,	/* protocol */
3164 	.bMaxPacketSize = 9,			/* max packet size */
3165 	HSETW(.idVendor, 0x0000),		/* vendor */
3166 	HSETW(.idProduct, 0x0000),		/* product */
3167 	HSETW(.bcdDevice, 0x0100),		/* device version */
3168 	.iManufacturer = 1,
3169 	.iProduct = 2,
3170 	.iSerialNumber = 0,
3171 	.bNumConfigurations = 1,		/* # of configurations */
3172 };
3173 
3174 static const
3175 struct xhci_bos_desc xhci_bosd = {
3176 	.bosd = {
3177 		.bLength = sizeof(xhci_bosd.bosd),
3178 		.bDescriptorType = UDESC_BOS,
3179 		HSETW(.wTotalLength, sizeof(xhci_bosd)),
3180 		.bNumDeviceCaps = 3,
3181 	},
3182 	.usb2extd = {
3183 		.bLength = sizeof(xhci_bosd.usb2extd),
3184 		.bDescriptorType = 1,
3185 		.bDevCapabilityType = 2,
3186 		.bmAttributes[0] = 2,
3187 	},
3188 	.usbdcd = {
3189 		.bLength = sizeof(xhci_bosd.usbdcd),
3190 		.bDescriptorType = UDESC_DEVICE_CAPABILITY,
3191 		.bDevCapabilityType = 3,
3192 		.bmAttributes = 0, /* XXX */
3193 		HSETW(.wSpeedsSupported, 0x000C),
3194 		.bFunctionalitySupport = 8,
3195 		.bU1DevExitLat = 255,	/* dummy - not used */
3196 		.wU2DevExitLat = { 0x00, 0x08 },
3197 	},
3198 	.cidd = {
3199 		.bLength = sizeof(xhci_bosd.cidd),
3200 		.bDescriptorType = 1,
3201 		.bDevCapabilityType = 4,
3202 		.bReserved = 0,
3203 		.bContainerID = 0, /* XXX */
3204 	},
3205 };
3206 
3207 static const
3208 struct xhci_config_desc xhci_confd = {
3209 	.confd = {
3210 		.bLength = sizeof(xhci_confd.confd),
3211 		.bDescriptorType = UDESC_CONFIG,
3212 		.wTotalLength[0] = sizeof(xhci_confd),
3213 		.bNumInterface = 1,
3214 		.bConfigurationValue = 1,
3215 		.iConfiguration = 0,
3216 		.bmAttributes = UC_SELF_POWERED,
3217 		.bMaxPower = 0		/* max power */
3218 	},
3219 	.ifcd = {
3220 		.bLength = sizeof(xhci_confd.ifcd),
3221 		.bDescriptorType = UDESC_INTERFACE,
3222 		.bNumEndpoints = 1,
3223 		.bInterfaceClass = UICLASS_HUB,
3224 		.bInterfaceSubClass = UISUBCLASS_HUB,
3225 		.bInterfaceProtocol = 0,
3226 	},
3227 	.endpd = {
3228 		.bLength = sizeof(xhci_confd.endpd),
3229 		.bDescriptorType = UDESC_ENDPOINT,
3230 		.bEndpointAddress = UE_DIR_IN | XHCI_INTR_ENDPT,
3231 		.bmAttributes = UE_INTERRUPT,
3232 		.wMaxPacketSize[0] = 2,		/* max 15 ports */
3233 		.bInterval = 255,
3234 	},
3235 	.endpcd = {
3236 		.bLength = sizeof(xhci_confd.endpcd),
3237 		.bDescriptorType = UDESC_ENDPOINT_SS_COMP,
3238 		.bMaxBurst = 0,
3239 		.bmAttributes = 0,
3240 	},
3241 };
3242 
3243 static const
3244 struct usb_hub_ss_descriptor xhci_hubd = {
3245 	.bLength = sizeof(xhci_hubd),
3246 	.bDescriptorType = UDESC_SS_HUB,
3247 };
3248 
3249 static usb_error_t
3250 xhci_roothub_exec(struct usb_device *udev,
3251     struct usb_device_request *req, const void **pptr, uint16_t *plength)
3252 {
3253 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
3254 	const char *str_ptr;
3255 	const void *ptr;
3256 	uint32_t port;
3257 	uint32_t v;
3258 	uint16_t len;
3259 	uint16_t i;
3260 	uint16_t value;
3261 	uint16_t index;
3262 	uint8_t j;
3263 	usb_error_t err;
3264 
3265 	USB_BUS_LOCK_ASSERT(&sc->sc_bus, MA_OWNED);
3266 
3267 	/* buffer reset */
3268 	ptr = (const void *)&sc->sc_hub_desc;
3269 	len = 0;
3270 	err = 0;
3271 
3272 	value = UGETW(req->wValue);
3273 	index = UGETW(req->wIndex);
3274 
3275 	DPRINTFN(3, "type=0x%02x request=0x%02x wLen=0x%04x "
3276 	    "wValue=0x%04x wIndex=0x%04x\n",
3277 	    req->bmRequestType, req->bRequest,
3278 	    UGETW(req->wLength), value, index);
3279 
3280 #define	C(x,y) ((x) | ((y) << 8))
3281 	switch (C(req->bRequest, req->bmRequestType)) {
3282 	case C(UR_CLEAR_FEATURE, UT_WRITE_DEVICE):
3283 	case C(UR_CLEAR_FEATURE, UT_WRITE_INTERFACE):
3284 	case C(UR_CLEAR_FEATURE, UT_WRITE_ENDPOINT):
3285 		/*
3286 		 * DEVICE_REMOTE_WAKEUP and ENDPOINT_HALT are no-ops
3287 		 * for the integrated root hub.
3288 		 */
3289 		break;
3290 	case C(UR_GET_CONFIG, UT_READ_DEVICE):
3291 		len = 1;
3292 		sc->sc_hub_desc.temp[0] = sc->sc_conf;
3293 		break;
3294 	case C(UR_GET_DESCRIPTOR, UT_READ_DEVICE):
3295 		switch (value >> 8) {
3296 		case UDESC_DEVICE:
3297 			if ((value & 0xff) != 0) {
3298 				err = USB_ERR_IOERROR;
3299 				goto done;
3300 			}
3301 			len = sizeof(xhci_devd);
3302 			ptr = (const void *)&xhci_devd;
3303 			break;
3304 
3305 		case UDESC_BOS:
3306 			if ((value & 0xff) != 0) {
3307 				err = USB_ERR_IOERROR;
3308 				goto done;
3309 			}
3310 			len = sizeof(xhci_bosd);
3311 			ptr = (const void *)&xhci_bosd;
3312 			break;
3313 
3314 		case UDESC_CONFIG:
3315 			if ((value & 0xff) != 0) {
3316 				err = USB_ERR_IOERROR;
3317 				goto done;
3318 			}
3319 			len = sizeof(xhci_confd);
3320 			ptr = (const void *)&xhci_confd;
3321 			break;
3322 
3323 		case UDESC_STRING:
3324 			switch (value & 0xff) {
3325 			case 0:	/* Language table */
3326 				str_ptr = "\001";
3327 				break;
3328 
3329 			case 1:	/* Vendor */
3330 				str_ptr = sc->sc_vendor;
3331 				break;
3332 
3333 			case 2:	/* Product */
3334 				str_ptr = "XHCI root HUB";
3335 				break;
3336 
3337 			default:
3338 				str_ptr = "";
3339 				break;
3340 			}
3341 
3342 			len = usb_make_str_desc(
3343 			    sc->sc_hub_desc.temp,
3344 			    sizeof(sc->sc_hub_desc.temp),
3345 			    str_ptr);
3346 			break;
3347 
3348 		default:
3349 			err = USB_ERR_IOERROR;
3350 			goto done;
3351 		}
3352 		break;
3353 	case C(UR_GET_INTERFACE, UT_READ_INTERFACE):
3354 		len = 1;
3355 		sc->sc_hub_desc.temp[0] = 0;
3356 		break;
3357 	case C(UR_GET_STATUS, UT_READ_DEVICE):
3358 		len = 2;
3359 		USETW(sc->sc_hub_desc.stat.wStatus, UDS_SELF_POWERED);
3360 		break;
3361 	case C(UR_GET_STATUS, UT_READ_INTERFACE):
3362 	case C(UR_GET_STATUS, UT_READ_ENDPOINT):
3363 		len = 2;
3364 		USETW(sc->sc_hub_desc.stat.wStatus, 0);
3365 		break;
3366 	case C(UR_SET_ADDRESS, UT_WRITE_DEVICE):
3367 		if (value >= XHCI_MAX_DEVICES) {
3368 			err = USB_ERR_IOERROR;
3369 			goto done;
3370 		}
3371 		break;
3372 	case C(UR_SET_CONFIG, UT_WRITE_DEVICE):
3373 		if (value != 0 && value != 1) {
3374 			err = USB_ERR_IOERROR;
3375 			goto done;
3376 		}
3377 		sc->sc_conf = value;
3378 		break;
3379 	case C(UR_SET_DESCRIPTOR, UT_WRITE_DEVICE):
3380 		break;
3381 	case C(UR_SET_FEATURE, UT_WRITE_DEVICE):
3382 	case C(UR_SET_FEATURE, UT_WRITE_INTERFACE):
3383 	case C(UR_SET_FEATURE, UT_WRITE_ENDPOINT):
3384 		err = USB_ERR_IOERROR;
3385 		goto done;
3386 	case C(UR_SET_INTERFACE, UT_WRITE_INTERFACE):
3387 		break;
3388 	case C(UR_SYNCH_FRAME, UT_WRITE_ENDPOINT):
3389 		break;
3390 		/* Hub requests */
3391 	case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_DEVICE):
3392 		break;
3393 	case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_OTHER):
3394 		DPRINTFN(9, "UR_CLEAR_PORT_FEATURE\n");
3395 
3396 		if ((index < 1) ||
3397 		    (index > sc->sc_noport)) {
3398 			err = USB_ERR_IOERROR;
3399 			goto done;
3400 		}
3401 		port = XHCI_PORTSC(index);
3402 
3403 		v = XREAD4(sc, oper, port);
3404 		i = XHCI_PS_PLS_GET(v);
3405 		v &= ~XHCI_PS_CLEAR;
3406 
3407 		switch (value) {
3408 		case UHF_C_BH_PORT_RESET:
3409 			XWRITE4(sc, oper, port, v | XHCI_PS_WRC);
3410 			break;
3411 		case UHF_C_PORT_CONFIG_ERROR:
3412 			XWRITE4(sc, oper, port, v | XHCI_PS_CEC);
3413 			break;
3414 		case UHF_C_PORT_SUSPEND:
3415 		case UHF_C_PORT_LINK_STATE:
3416 			XWRITE4(sc, oper, port, v | XHCI_PS_PLC);
3417 			break;
3418 		case UHF_C_PORT_CONNECTION:
3419 			XWRITE4(sc, oper, port, v | XHCI_PS_CSC);
3420 			break;
3421 		case UHF_C_PORT_ENABLE:
3422 			XWRITE4(sc, oper, port, v | XHCI_PS_PEC);
3423 			break;
3424 		case UHF_C_PORT_OVER_CURRENT:
3425 			XWRITE4(sc, oper, port, v | XHCI_PS_OCC);
3426 			break;
3427 		case UHF_C_PORT_RESET:
3428 			XWRITE4(sc, oper, port, v | XHCI_PS_PRC);
3429 			break;
3430 		case UHF_PORT_ENABLE:
3431 			XWRITE4(sc, oper, port, v | XHCI_PS_PED);
3432 			break;
3433 		case UHF_PORT_POWER:
3434 			XWRITE4(sc, oper, port, v & ~XHCI_PS_PP);
3435 			break;
3436 		case UHF_PORT_INDICATOR:
3437 			XWRITE4(sc, oper, port, v & ~XHCI_PS_PIC_SET(3));
3438 			break;
3439 		case UHF_PORT_SUSPEND:
3440 
3441 			/* U3 -> U15 */
3442 			if (i == 3) {
3443 				XWRITE4(sc, oper, port, v |
3444 				    XHCI_PS_PLS_SET(0xF) | XHCI_PS_LWS);
3445 			}
3446 
3447 			/* wait 20ms for resume sequence to complete */
3448 			usb_pause_mtx(&sc->sc_bus.bus_mtx, hz / 50);
3449 
3450 			/* U0 */
3451 			XWRITE4(sc, oper, port, v |
3452 			    XHCI_PS_PLS_SET(0) | XHCI_PS_LWS);
3453 			break;
3454 		default:
3455 			err = USB_ERR_IOERROR;
3456 			goto done;
3457 		}
3458 		break;
3459 
3460 	case C(UR_GET_DESCRIPTOR, UT_READ_CLASS_DEVICE):
3461 		if ((value & 0xff) != 0) {
3462 			err = USB_ERR_IOERROR;
3463 			goto done;
3464 		}
3465 
3466 		v = XREAD4(sc, capa, XHCI_HCSPARAMS0);
3467 
3468 		sc->sc_hub_desc.hubd = xhci_hubd;
3469 
3470 		sc->sc_hub_desc.hubd.bNbrPorts = sc->sc_noport;
3471 
3472 		if (XHCI_HCS0_PPC(v))
3473 			i = UHD_PWR_INDIVIDUAL;
3474 		else
3475 			i = UHD_PWR_GANGED;
3476 
3477 		if (XHCI_HCS0_PIND(v))
3478 			i |= UHD_PORT_IND;
3479 
3480 		i |= UHD_OC_INDIVIDUAL;
3481 
3482 		USETW(sc->sc_hub_desc.hubd.wHubCharacteristics, i);
3483 
3484 		/* see XHCI section 5.4.9: */
3485 		sc->sc_hub_desc.hubd.bPwrOn2PwrGood = 10;
3486 
3487 		for (j = 1; j <= sc->sc_noport; j++) {
3488 
3489 			v = XREAD4(sc, oper, XHCI_PORTSC(j));
3490 			if (v & XHCI_PS_DR) {
3491 				sc->sc_hub_desc.hubd.
3492 				    DeviceRemovable[j / 8] |= 1U << (j % 8);
3493 			}
3494 		}
3495 		len = sc->sc_hub_desc.hubd.bLength;
3496 		break;
3497 
3498 	case C(UR_GET_STATUS, UT_READ_CLASS_DEVICE):
3499 		len = 16;
3500 		memset(sc->sc_hub_desc.temp, 0, 16);
3501 		break;
3502 
3503 	case C(UR_GET_STATUS, UT_READ_CLASS_OTHER):
3504 		DPRINTFN(9, "UR_GET_STATUS i=%d\n", index);
3505 
3506 		if ((index < 1) ||
3507 		    (index > sc->sc_noport)) {
3508 			err = USB_ERR_IOERROR;
3509 			goto done;
3510 		}
3511 
3512 		v = XREAD4(sc, oper, XHCI_PORTSC(index));
3513 
3514 		DPRINTFN(9, "port status=0x%08x\n", v);
3515 
3516 		i = UPS_PORT_LINK_STATE_SET(XHCI_PS_PLS_GET(v));
3517 
3518 		switch (XHCI_PS_SPEED_GET(v)) {
3519 		case 3:
3520 			i |= UPS_HIGH_SPEED;
3521 			break;
3522 		case 2:
3523 			i |= UPS_LOW_SPEED;
3524 			break;
3525 		case 1:
3526 			/* FULL speed */
3527 			break;
3528 		default:
3529 			i |= UPS_OTHER_SPEED;
3530 			break;
3531 		}
3532 
3533 		if (v & XHCI_PS_CCS)
3534 			i |= UPS_CURRENT_CONNECT_STATUS;
3535 		if (v & XHCI_PS_PED)
3536 			i |= UPS_PORT_ENABLED;
3537 		if (v & XHCI_PS_OCA)
3538 			i |= UPS_OVERCURRENT_INDICATOR;
3539 		if (v & XHCI_PS_PR)
3540 			i |= UPS_RESET;
3541 		if (v & XHCI_PS_PP) {
3542 			/*
3543 			 * The USB 3.0 RH is using the
3544 			 * USB 2.0's power bit
3545 			 */
3546 			i |= UPS_PORT_POWER;
3547 		}
3548 		USETW(sc->sc_hub_desc.ps.wPortStatus, i);
3549 
3550 		i = 0;
3551 		if (v & XHCI_PS_CSC)
3552 			i |= UPS_C_CONNECT_STATUS;
3553 		if (v & XHCI_PS_PEC)
3554 			i |= UPS_C_PORT_ENABLED;
3555 		if (v & XHCI_PS_OCC)
3556 			i |= UPS_C_OVERCURRENT_INDICATOR;
3557 		if (v & XHCI_PS_WRC)
3558 			i |= UPS_C_BH_PORT_RESET;
3559 		if (v & XHCI_PS_PRC)
3560 			i |= UPS_C_PORT_RESET;
3561 		if (v & XHCI_PS_PLC)
3562 			i |= UPS_C_PORT_LINK_STATE;
3563 		if (v & XHCI_PS_CEC)
3564 			i |= UPS_C_PORT_CONFIG_ERROR;
3565 
3566 		USETW(sc->sc_hub_desc.ps.wPortChange, i);
3567 		len = sizeof(sc->sc_hub_desc.ps);
3568 		break;
3569 
3570 	case C(UR_SET_DESCRIPTOR, UT_WRITE_CLASS_DEVICE):
3571 		err = USB_ERR_IOERROR;
3572 		goto done;
3573 
3574 	case C(UR_SET_FEATURE, UT_WRITE_CLASS_DEVICE):
3575 		break;
3576 
3577 	case C(UR_SET_FEATURE, UT_WRITE_CLASS_OTHER):
3578 
3579 		i = index >> 8;
3580 		index &= 0x00FF;
3581 
3582 		if ((index < 1) ||
3583 		    (index > sc->sc_noport)) {
3584 			err = USB_ERR_IOERROR;
3585 			goto done;
3586 		}
3587 
3588 		port = XHCI_PORTSC(index);
3589 		v = XREAD4(sc, oper, port) & ~XHCI_PS_CLEAR;
3590 
3591 		switch (value) {
3592 		case UHF_PORT_U1_TIMEOUT:
3593 			if (XHCI_PS_SPEED_GET(v) != 4) {
3594 				err = USB_ERR_IOERROR;
3595 				goto done;
3596 			}
3597 			port = XHCI_PORTPMSC(index);
3598 			v = XREAD4(sc, oper, port);
3599 			v &= ~XHCI_PM3_U1TO_SET(0xFF);
3600 			v |= XHCI_PM3_U1TO_SET(i);
3601 			XWRITE4(sc, oper, port, v);
3602 			break;
3603 		case UHF_PORT_U2_TIMEOUT:
3604 			if (XHCI_PS_SPEED_GET(v) != 4) {
3605 				err = USB_ERR_IOERROR;
3606 				goto done;
3607 			}
3608 			port = XHCI_PORTPMSC(index);
3609 			v = XREAD4(sc, oper, port);
3610 			v &= ~XHCI_PM3_U2TO_SET(0xFF);
3611 			v |= XHCI_PM3_U2TO_SET(i);
3612 			XWRITE4(sc, oper, port, v);
3613 			break;
3614 		case UHF_BH_PORT_RESET:
3615 			XWRITE4(sc, oper, port, v | XHCI_PS_WPR);
3616 			break;
3617 		case UHF_PORT_LINK_STATE:
3618 			XWRITE4(sc, oper, port, v |
3619 			    XHCI_PS_PLS_SET(i) | XHCI_PS_LWS);
3620 			/* 4ms settle time */
3621 			usb_pause_mtx(&sc->sc_bus.bus_mtx, hz / 250);
3622 			break;
3623 		case UHF_PORT_ENABLE:
3624 			DPRINTFN(3, "set port enable %d\n", index);
3625 			break;
3626 		case UHF_PORT_SUSPEND:
3627 			DPRINTFN(6, "suspend port %u (LPM=%u)\n", index, i);
3628 			j = XHCI_PS_SPEED_GET(v);
3629 			if ((j < 1) || (j > 3)) {
3630 				/* non-supported speed */
3631 				err = USB_ERR_IOERROR;
3632 				goto done;
3633 			}
3634 			XWRITE4(sc, oper, port, v |
3635 			    XHCI_PS_PLS_SET(i ? 2 /* LPM */ : 3) | XHCI_PS_LWS);
3636 			break;
3637 		case UHF_PORT_RESET:
3638 			DPRINTFN(6, "reset port %d\n", index);
3639 			XWRITE4(sc, oper, port, v | XHCI_PS_PR);
3640 			break;
3641 		case UHF_PORT_POWER:
3642 			DPRINTFN(3, "set port power %d\n", index);
3643 			XWRITE4(sc, oper, port, v | XHCI_PS_PP);
3644 			break;
3645 		case UHF_PORT_TEST:
3646 			DPRINTFN(3, "set port test %d\n", index);
3647 			break;
3648 		case UHF_PORT_INDICATOR:
3649 			DPRINTFN(3, "set port indicator %d\n", index);
3650 
3651 			v &= ~XHCI_PS_PIC_SET(3);
3652 			v |= XHCI_PS_PIC_SET(1);
3653 
3654 			XWRITE4(sc, oper, port, v);
3655 			break;
3656 		default:
3657 			err = USB_ERR_IOERROR;
3658 			goto done;
3659 		}
3660 		break;
3661 
3662 	case C(UR_CLEAR_TT_BUFFER, UT_WRITE_CLASS_OTHER):
3663 	case C(UR_RESET_TT, UT_WRITE_CLASS_OTHER):
3664 	case C(UR_GET_TT_STATE, UT_READ_CLASS_OTHER):
3665 	case C(UR_STOP_TT, UT_WRITE_CLASS_OTHER):
3666 		break;
3667 	default:
3668 		err = USB_ERR_IOERROR;
3669 		goto done;
3670 	}
3671 done:
3672 	*plength = len;
3673 	*pptr = ptr;
3674 	return (err);
3675 }
3676 
3677 static void
3678 xhci_xfer_setup(struct usb_setup_params *parm)
3679 {
3680 	struct usb_page_search page_info;
3681 	struct usb_page_cache *pc;
3682 	struct xhci_softc *sc;
3683 	struct usb_xfer *xfer;
3684 	void *last_obj;
3685 	uint32_t ntd;
3686 	uint32_t n;
3687 
3688 	sc = XHCI_BUS2SC(parm->udev->bus);
3689 	xfer = parm->curr_xfer;
3690 
3691 	/*
3692 	 * The proof for the "ntd" formula is illustrated like this:
3693 	 *
3694 	 * +------------------------------------+
3695 	 * |                                    |
3696 	 * |         |remainder ->              |
3697 	 * |   +-----+---+                      |
3698 	 * |   | xxx | x | frm 0                |
3699 	 * |   +-----+---++                     |
3700 	 * |   | xxx | xx | frm 1               |
3701 	 * |   +-----+----+                     |
3702 	 * |            ...                     |
3703 	 * +------------------------------------+
3704 	 *
3705 	 * "xxx" means a completely full USB transfer descriptor
3706 	 *
3707 	 * "x" and "xx" means a short USB packet
3708 	 *
3709 	 * For the remainder of an USB transfer modulo
3710 	 * "max_data_length" we need two USB transfer descriptors.
3711 	 * One to transfer the remaining data and one to finalise with
3712 	 * a zero length packet in case the "force_short_xfer" flag is
3713 	 * set. We only need two USB transfer descriptors in the case
3714 	 * where the transfer length of the first one is a factor of
3715 	 * "max_frame_size". The rest of the needed USB transfer
3716 	 * descriptors is given by the buffer size divided by the
3717 	 * maximum data payload.
3718 	 */
3719 	parm->hc_max_packet_size = 0x400;
3720 	parm->hc_max_packet_count = 16 * 3;
3721 	parm->hc_max_frame_size = XHCI_TD_PAYLOAD_MAX;
3722 
3723 	xfer->flags_int.bdma_enable = 1;
3724 
3725 	usbd_transfer_setup_sub(parm);
3726 
3727 	if (xfer->flags_int.isochronous_xfr) {
3728 		ntd = ((1 * xfer->nframes)
3729 		    + (xfer->max_data_length / xfer->max_hc_frame_size));
3730 	} else if (xfer->flags_int.control_xfr) {
3731 		ntd = ((2 * xfer->nframes) + 1	/* STATUS */
3732 		    + (xfer->max_data_length / xfer->max_hc_frame_size));
3733 	} else {
3734 		ntd = ((2 * xfer->nframes)
3735 		    + (xfer->max_data_length / xfer->max_hc_frame_size));
3736 	}
3737 
3738 alloc_dma_set:
3739 
3740 	if (parm->err)
3741 		return;
3742 
3743 	/*
3744 	 * Allocate queue heads and transfer descriptors
3745 	 */
3746 	last_obj = NULL;
3747 
3748 	if (usbd_transfer_setup_sub_malloc(
3749 	    parm, &pc, sizeof(struct xhci_td),
3750 	    XHCI_TD_ALIGN, ntd)) {
3751 		parm->err = USB_ERR_NOMEM;
3752 		return;
3753 	}
3754 	if (parm->buf) {
3755 		for (n = 0; n != ntd; n++) {
3756 			struct xhci_td *td;
3757 
3758 			usbd_get_page(pc + n, 0, &page_info);
3759 
3760 			td = page_info.buffer;
3761 
3762 			/* init TD */
3763 			td->td_self = page_info.physaddr;
3764 			td->obj_next = last_obj;
3765 			td->page_cache = pc + n;
3766 
3767 			last_obj = td;
3768 
3769 			usb_pc_cpu_flush(pc + n);
3770 		}
3771 	}
3772 	xfer->td_start[xfer->flags_int.curr_dma_set] = last_obj;
3773 
3774 	if (!xfer->flags_int.curr_dma_set) {
3775 		xfer->flags_int.curr_dma_set = 1;
3776 		goto alloc_dma_set;
3777 	}
3778 }
3779 
3780 static usb_error_t
3781 xhci_configure_reset_endpoint(struct usb_xfer *xfer)
3782 {
3783 	struct xhci_softc *sc = XHCI_BUS2SC(xfer->xroot->bus);
3784 	struct usb_page_search buf_inp;
3785 	struct usb_device *udev;
3786 	struct xhci_endpoint_ext *pepext;
3787 	struct usb_endpoint_descriptor *edesc;
3788 	struct usb_page_cache *pcinp;
3789 	usb_error_t err;
3790 	usb_stream_t stream_id;
3791 	uint8_t index;
3792 	uint8_t epno;
3793 
3794 	pepext = xhci_get_endpoint_ext(xfer->xroot->udev,
3795 	    xfer->endpoint->edesc);
3796 
3797 	udev = xfer->xroot->udev;
3798 	index = udev->controller_slot_id;
3799 
3800 	pcinp = &sc->sc_hw.devs[index].input_pc;
3801 
3802 	usbd_get_page(pcinp, 0, &buf_inp);
3803 
3804 	edesc = xfer->endpoint->edesc;
3805 
3806 	epno = edesc->bEndpointAddress;
3807 	stream_id = xfer->stream_id;
3808 
3809 	if ((edesc->bmAttributes & UE_XFERTYPE) == UE_CONTROL)
3810 		epno |= UE_DIR_IN;
3811 
3812 	epno = XHCI_EPNO2EPID(epno);
3813 
3814  	if (epno == 0)
3815 		return (USB_ERR_NO_PIPE);		/* invalid */
3816 
3817 	XHCI_CMD_LOCK(sc);
3818 
3819 	/* configure endpoint */
3820 
3821 	err = xhci_configure_endpoint_by_xfer(xfer);
3822 
3823 	if (err != 0) {
3824 		XHCI_CMD_UNLOCK(sc);
3825 		return (err);
3826 	}
3827 
3828 	/*
3829 	 * Get the endpoint into the stopped state according to the
3830 	 * endpoint context state diagram in the XHCI specification:
3831 	 */
3832 
3833 	err = xhci_cmd_stop_ep(sc, 0, epno, index);
3834 
3835 	if (err != 0)
3836 		DPRINTF("Could not stop endpoint %u\n", epno);
3837 
3838 	err = xhci_cmd_reset_ep(sc, 0, epno, index);
3839 
3840 	if (err != 0)
3841 		DPRINTF("Could not reset endpoint %u\n", epno);
3842 
3843 	err = xhci_cmd_set_tr_dequeue_ptr(sc,
3844 	    (pepext->physaddr + (stream_id * sizeof(struct xhci_trb) *
3845 	    XHCI_MAX_TRANSFERS)) | XHCI_EPCTX_2_DCS_SET(1),
3846 	    stream_id, epno, index);
3847 
3848 	if (err != 0)
3849 		DPRINTF("Could not set dequeue ptr for endpoint %u\n", epno);
3850 
3851 	/*
3852 	 * Get the endpoint into the running state according to the
3853 	 * endpoint context state diagram in the XHCI specification:
3854 	 */
3855 
3856 	xhci_configure_mask(udev, (1U << epno) | 1U, 0);
3857 
3858 	err = xhci_cmd_evaluate_ctx(sc, buf_inp.physaddr, index);
3859 
3860 	if (err != 0)
3861 		DPRINTF("Could not configure endpoint %u\n", epno);
3862 
3863 	err = xhci_cmd_configure_ep(sc, buf_inp.physaddr, 0, index);
3864 
3865 	if (err != 0)
3866 		DPRINTF("Could not configure endpoint %u\n", epno);
3867 
3868 	XHCI_CMD_UNLOCK(sc);
3869 
3870 	return (0);
3871 }
3872 
3873 static void
3874 xhci_xfer_unsetup(struct usb_xfer *xfer)
3875 {
3876 	return;
3877 }
3878 
3879 static void
3880 xhci_start_dma_delay(struct usb_xfer *xfer)
3881 {
3882 	struct xhci_softc *sc = XHCI_BUS2SC(xfer->xroot->bus);
3883 
3884 	/* put transfer on interrupt queue (again) */
3885 	usbd_transfer_enqueue(&sc->sc_bus.intr_q, xfer);
3886 
3887 	(void)usb_proc_msignal(USB_BUS_CONTROL_XFER_PROC(&sc->sc_bus),
3888 	    &sc->sc_config_msg[0], &sc->sc_config_msg[1]);
3889 }
3890 
3891 static void
3892 xhci_configure_msg(struct usb_proc_msg *pm)
3893 {
3894 	struct xhci_softc *sc;
3895 	struct xhci_endpoint_ext *pepext;
3896 	struct usb_xfer *xfer;
3897 
3898 	sc = XHCI_BUS2SC(((struct usb_bus_msg *)pm)->bus);
3899 
3900 restart:
3901 	TAILQ_FOREACH(xfer, &sc->sc_bus.intr_q.head, wait_entry) {
3902 
3903 		pepext = xhci_get_endpoint_ext(xfer->xroot->udev,
3904 		    xfer->endpoint->edesc);
3905 
3906 		if ((pepext->trb_halted != 0) ||
3907 		    (pepext->trb_running == 0)) {
3908 
3909 			uint16_t i;
3910 
3911 			/* clear halted and running */
3912 			pepext->trb_halted = 0;
3913 			pepext->trb_running = 0;
3914 
3915 			/* nuke remaining buffered transfers */
3916 
3917 			for (i = 0; i != (XHCI_MAX_TRANSFERS *
3918 			    XHCI_MAX_STREAMS); i++) {
3919 				/*
3920 				 * NOTE: We need to use the timeout
3921 				 * error code here else existing
3922 				 * isochronous clients can get
3923 				 * confused:
3924 				 */
3925 				if (pepext->xfer[i] != NULL) {
3926 					xhci_device_done(pepext->xfer[i],
3927 					    USB_ERR_TIMEOUT);
3928 				}
3929 			}
3930 
3931 			/*
3932 			 * NOTE: The USB transfer cannot vanish in
3933 			 * this state!
3934 			 */
3935 
3936 			USB_BUS_UNLOCK(&sc->sc_bus);
3937 
3938 			xhci_configure_reset_endpoint(xfer);
3939 
3940 			USB_BUS_LOCK(&sc->sc_bus);
3941 
3942 			/* check if halted is still cleared */
3943 			if (pepext->trb_halted == 0) {
3944 				pepext->trb_running = 1;
3945 				memset(pepext->trb_index, 0,
3946 				    sizeof(pepext->trb_index));
3947 			}
3948 			goto restart;
3949 		}
3950 
3951 		if (xfer->flags_int.did_dma_delay) {
3952 
3953 			/* remove transfer from interrupt queue (again) */
3954 			usbd_transfer_dequeue(xfer);
3955 
3956 			/* we are finally done */
3957 			usb_dma_delay_done_cb(xfer);
3958 
3959 			/* queue changed - restart */
3960 			goto restart;
3961 		}
3962 	}
3963 
3964 	TAILQ_FOREACH(xfer, &sc->sc_bus.intr_q.head, wait_entry) {
3965 
3966 		/* try to insert xfer on HW queue */
3967 		xhci_transfer_insert(xfer);
3968 
3969 		/* try to multi buffer */
3970 		xhci_device_generic_multi_enter(xfer->endpoint,
3971 		    xfer->stream_id, NULL);
3972 	}
3973 }
3974 
3975 static void
3976 xhci_ep_init(struct usb_device *udev, struct usb_endpoint_descriptor *edesc,
3977     struct usb_endpoint *ep)
3978 {
3979 	struct xhci_endpoint_ext *pepext;
3980 
3981 	DPRINTFN(2, "endpoint=%p, addr=%d, endpt=%d, mode=%d\n",
3982 	    ep, udev->address, edesc->bEndpointAddress, udev->flags.usb_mode);
3983 
3984 	if (udev->parent_hub == NULL) {
3985 		/* root HUB has special endpoint handling */
3986 		return;
3987 	}
3988 
3989 	ep->methods = &xhci_device_generic_methods;
3990 
3991 	pepext = xhci_get_endpoint_ext(udev, edesc);
3992 
3993 	USB_BUS_LOCK(udev->bus);
3994 	pepext->trb_halted = 1;
3995 	pepext->trb_running = 0;
3996 	USB_BUS_UNLOCK(udev->bus);
3997 }
3998 
3999 static void
4000 xhci_ep_uninit(struct usb_device *udev, struct usb_endpoint *ep)
4001 {
4002 
4003 }
4004 
4005 static void
4006 xhci_ep_clear_stall(struct usb_device *udev, struct usb_endpoint *ep)
4007 {
4008 	struct xhci_endpoint_ext *pepext;
4009 
4010 	DPRINTF("\n");
4011 
4012 	if (udev->flags.usb_mode != USB_MODE_HOST) {
4013 		/* not supported */
4014 		return;
4015 	}
4016 	if (udev->parent_hub == NULL) {
4017 		/* root HUB has special endpoint handling */
4018 		return;
4019 	}
4020 
4021 	pepext = xhci_get_endpoint_ext(udev, ep->edesc);
4022 
4023 	USB_BUS_LOCK(udev->bus);
4024 	pepext->trb_halted = 1;
4025 	pepext->trb_running = 0;
4026 	USB_BUS_UNLOCK(udev->bus);
4027 }
4028 
4029 static usb_error_t
4030 xhci_device_init(struct usb_device *udev)
4031 {
4032 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
4033 	usb_error_t err;
4034 	uint8_t temp;
4035 
4036 	/* no init for root HUB */
4037 	if (udev->parent_hub == NULL)
4038 		return (0);
4039 
4040 	XHCI_CMD_LOCK(sc);
4041 
4042 	/* set invalid default */
4043 
4044 	udev->controller_slot_id = sc->sc_noslot + 1;
4045 
4046 	/* try to get a new slot ID from the XHCI */
4047 
4048 	err = xhci_cmd_enable_slot(sc, &temp);
4049 
4050 	if (err) {
4051 		XHCI_CMD_UNLOCK(sc);
4052 		return (err);
4053 	}
4054 
4055 	if (temp > sc->sc_noslot) {
4056 		XHCI_CMD_UNLOCK(sc);
4057 		return (USB_ERR_BAD_ADDRESS);
4058 	}
4059 
4060 	if (sc->sc_hw.devs[temp].state != XHCI_ST_DISABLED) {
4061 		DPRINTF("slot %u already allocated.\n", temp);
4062 		XHCI_CMD_UNLOCK(sc);
4063 		return (USB_ERR_BAD_ADDRESS);
4064 	}
4065 
4066 	/* store slot ID for later reference */
4067 
4068 	udev->controller_slot_id = temp;
4069 
4070 	/* reset data structure */
4071 
4072 	memset(&sc->sc_hw.devs[temp], 0, sizeof(sc->sc_hw.devs[0]));
4073 
4074 	/* set mark slot allocated */
4075 
4076 	sc->sc_hw.devs[temp].state = XHCI_ST_ENABLED;
4077 
4078 	err = xhci_alloc_device_ext(udev);
4079 
4080 	XHCI_CMD_UNLOCK(sc);
4081 
4082 	/* get device into default state */
4083 
4084 	if (err == 0)
4085 		err = xhci_set_address(udev, NULL, 0);
4086 
4087 	return (err);
4088 }
4089 
4090 static void
4091 xhci_device_uninit(struct usb_device *udev)
4092 {
4093 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
4094 	uint8_t index;
4095 
4096 	/* no init for root HUB */
4097 	if (udev->parent_hub == NULL)
4098 		return;
4099 
4100 	XHCI_CMD_LOCK(sc);
4101 
4102 	index = udev->controller_slot_id;
4103 
4104 	if (index <= sc->sc_noslot) {
4105 		xhci_cmd_disable_slot(sc, index);
4106 		sc->sc_hw.devs[index].state = XHCI_ST_DISABLED;
4107 
4108 		/* free device extension */
4109 		xhci_free_device_ext(udev);
4110 	}
4111 
4112 	XHCI_CMD_UNLOCK(sc);
4113 }
4114 
4115 static void
4116 xhci_get_dma_delay(struct usb_device *udev, uint32_t *pus)
4117 {
4118 	/*
4119 	 * Wait until the hardware has finished any possible use of
4120 	 * the transfer descriptor(s)
4121 	 */
4122 	*pus = 2048;			/* microseconds */
4123 }
4124 
4125 static void
4126 xhci_device_resume(struct usb_device *udev)
4127 {
4128 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
4129 	uint8_t index;
4130 	uint8_t n;
4131 	uint8_t p;
4132 
4133 	DPRINTF("\n");
4134 
4135 	/* check for root HUB */
4136 	if (udev->parent_hub == NULL)
4137 		return;
4138 
4139 	index = udev->controller_slot_id;
4140 
4141 	XHCI_CMD_LOCK(sc);
4142 
4143 	/* blindly resume all endpoints */
4144 
4145 	USB_BUS_LOCK(udev->bus);
4146 
4147 	for (n = 1; n != XHCI_MAX_ENDPOINTS; n++) {
4148 		for (p = 0; p != XHCI_MAX_STREAMS; p++) {
4149 			XWRITE4(sc, door, XHCI_DOORBELL(index),
4150 			    n | XHCI_DB_SID_SET(p));
4151 		}
4152 	}
4153 
4154 	USB_BUS_UNLOCK(udev->bus);
4155 
4156 	XHCI_CMD_UNLOCK(sc);
4157 }
4158 
4159 static void
4160 xhci_device_suspend(struct usb_device *udev)
4161 {
4162 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
4163 	uint8_t index;
4164 	uint8_t n;
4165 	usb_error_t err;
4166 
4167 	DPRINTF("\n");
4168 
4169 	/* check for root HUB */
4170 	if (udev->parent_hub == NULL)
4171 		return;
4172 
4173 	index = udev->controller_slot_id;
4174 
4175 	XHCI_CMD_LOCK(sc);
4176 
4177 	/* blindly suspend all endpoints */
4178 
4179 	for (n = 1; n != XHCI_MAX_ENDPOINTS; n++) {
4180 		err = xhci_cmd_stop_ep(sc, 1, n, index);
4181 		if (err != 0) {
4182 			DPRINTF("Failed to suspend endpoint "
4183 			    "%u on slot %u (ignored).\n", n, index);
4184 		}
4185 	}
4186 
4187 	XHCI_CMD_UNLOCK(sc);
4188 }
4189 
4190 static void
4191 xhci_set_hw_power(struct usb_bus *bus)
4192 {
4193 	DPRINTF("\n");
4194 }
4195 
4196 static void
4197 xhci_device_state_change(struct usb_device *udev)
4198 {
4199 	struct xhci_softc *sc = XHCI_BUS2SC(udev->bus);
4200 	struct usb_page_search buf_inp;
4201 	usb_error_t err;
4202 	uint8_t index;
4203 
4204 	/* check for root HUB */
4205 	if (udev->parent_hub == NULL)
4206 		return;
4207 
4208 	index = udev->controller_slot_id;
4209 
4210 	DPRINTF("\n");
4211 
4212 	if (usb_get_device_state(udev) == USB_STATE_CONFIGURED) {
4213 		err = uhub_query_info(udev, &sc->sc_hw.devs[index].nports,
4214 		    &sc->sc_hw.devs[index].tt);
4215 		if (err != 0)
4216 			sc->sc_hw.devs[index].nports = 0;
4217 	}
4218 
4219 	XHCI_CMD_LOCK(sc);
4220 
4221 	switch (usb_get_device_state(udev)) {
4222 	case USB_STATE_POWERED:
4223 		if (sc->sc_hw.devs[index].state == XHCI_ST_DEFAULT)
4224 			break;
4225 
4226 		/* set default state */
4227 		sc->sc_hw.devs[index].state = XHCI_ST_DEFAULT;
4228 
4229 		/* reset number of contexts */
4230 		sc->sc_hw.devs[index].context_num = 0;
4231 
4232 		err = xhci_cmd_reset_dev(sc, index);
4233 
4234 		if (err != 0) {
4235 			DPRINTF("Device reset failed "
4236 			    "for slot %u.\n", index);
4237 		}
4238 		break;
4239 
4240 	case USB_STATE_ADDRESSED:
4241 		if (sc->sc_hw.devs[index].state == XHCI_ST_ADDRESSED)
4242 			break;
4243 
4244 		sc->sc_hw.devs[index].state = XHCI_ST_ADDRESSED;
4245 
4246 		err = xhci_cmd_configure_ep(sc, 0, 1, index);
4247 
4248 		if (err) {
4249 			DPRINTF("Failed to deconfigure "
4250 			    "slot %u.\n", index);
4251 		}
4252 		break;
4253 
4254 	case USB_STATE_CONFIGURED:
4255 		if (sc->sc_hw.devs[index].state == XHCI_ST_CONFIGURED)
4256 			break;
4257 
4258 		/* set configured state */
4259 		sc->sc_hw.devs[index].state = XHCI_ST_CONFIGURED;
4260 
4261 		/* reset number of contexts */
4262 		sc->sc_hw.devs[index].context_num = 0;
4263 
4264 		usbd_get_page(&sc->sc_hw.devs[index].input_pc, 0, &buf_inp);
4265 
4266 		xhci_configure_mask(udev, 3, 0);
4267 
4268 		err = xhci_configure_device(udev);
4269 		if (err != 0) {
4270 			DPRINTF("Could not configure device "
4271 			    "at slot %u.\n", index);
4272 		}
4273 
4274 		err = xhci_cmd_evaluate_ctx(sc, buf_inp.physaddr, index);
4275 		if (err != 0) {
4276 			DPRINTF("Could not evaluate device "
4277 			    "context at slot %u.\n", index);
4278 		}
4279 		break;
4280 
4281 	default:
4282 		break;
4283 	}
4284 	XHCI_CMD_UNLOCK(sc);
4285 }
4286 
4287 static usb_error_t
4288 xhci_set_endpoint_mode(struct usb_device *udev, struct usb_endpoint *ep,
4289     uint8_t ep_mode)
4290 {
4291 	switch (ep_mode) {
4292 	case USB_EP_MODE_DEFAULT:
4293 		return (0);
4294 	case USB_EP_MODE_STREAMS:
4295 		if (xhcistreams == 0 ||
4296 		    (ep->edesc->bmAttributes & UE_XFERTYPE) != UE_BULK ||
4297 		    udev->speed != USB_SPEED_SUPER)
4298 			return (USB_ERR_INVAL);
4299 		return (0);
4300 	default:
4301 		return (USB_ERR_INVAL);
4302 	}
4303 }
4304 
4305 static const struct usb_bus_methods xhci_bus_methods = {
4306 	.endpoint_init = xhci_ep_init,
4307 	.endpoint_uninit = xhci_ep_uninit,
4308 	.xfer_setup = xhci_xfer_setup,
4309 	.xfer_unsetup = xhci_xfer_unsetup,
4310 	.get_dma_delay = xhci_get_dma_delay,
4311 	.device_init = xhci_device_init,
4312 	.device_uninit = xhci_device_uninit,
4313 	.device_resume = xhci_device_resume,
4314 	.device_suspend = xhci_device_suspend,
4315 	.set_hw_power = xhci_set_hw_power,
4316 	.roothub_exec = xhci_roothub_exec,
4317 	.xfer_poll = xhci_do_poll,
4318 	.start_dma_delay = xhci_start_dma_delay,
4319 	.set_address = xhci_set_address,
4320 	.clear_stall = xhci_ep_clear_stall,
4321 	.device_state_change = xhci_device_state_change,
4322 	.set_hw_power_sleep = xhci_set_hw_power_sleep,
4323 	.set_endpoint_mode = xhci_set_endpoint_mode,
4324 };
4325