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