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