blob: 096ed2b8afae285f8920b1f7e4fda3cc2c698a2b [file] [log] [blame]
Patrick Georgi6615ef32010-08-13 09:18:58 +00001/*
2 * This file is part of the libpayload project.
3 *
4 * Copyright (C) 2010 Patrick Georgi
Nico Huber90292652013-06-13 14:37:15 +02005 * Copyright (C) 2013 secunet Security Networks AG
Patrick Georgi6615ef32010-08-13 09:18:58 +00006 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 */
30
31#ifndef __XHCI_PRIVATE_H
32#define __XHCI_PRIVATE_H
33
Nico Huber90292652013-06-13 14:37:15 +020034//#define USB_DEBUG
Patrick Georgi6615ef32010-08-13 09:18:58 +000035#include <usb/usb.h>
36
Nico Huber90292652013-06-13 14:37:15 +020037//#define XHCI_DUMPS
38#define xhci_debug(fmt, args...) usb_debug("%s: " fmt, __func__, ## args)
39#ifdef XHCI_SPEW_DEBUG
40# define xhci_spew(fmt, args...) xhci_debug(fmt, ##args)
41#else
42# define xhci_spew(fmt, args...) do {} while(0)
43#endif
44
Patrick Georgi6615ef32010-08-13 09:18:58 +000045#define MASK(startbit, lenbit) (((1<<(lenbit))-1)<<(startbit))
46
Nico Huber90292652013-06-13 14:37:15 +020047#define TIMEOUT -1
48#define CONTROLLER_ERROR -2
49#define COMMUNICATION_ERROR -3
50#define OUT_OF_MEMORY -4
51#define DRIVER_ERROR -5
Patrick Georgi6615ef32010-08-13 09:18:58 +000052
Nico Huber90292652013-06-13 14:37:15 +020053#define CC_SUCCESS 1
54#define CC_TRB_ERROR 5
55#define CC_STALL_ERROR 6
56#define CC_SHORT_PACKET 13
57#define CC_EVENT_RING_FULL_ERROR 21
58#define CC_COMMAND_RING_STOPPED 24
59#define CC_COMMAND_ABORTED 25
60#define CC_STOPPED 26
61#define CC_STOPPED_LENGTH_INVALID 27
Patrick Georgi6615ef32010-08-13 09:18:58 +000062
Nico Huber90292652013-06-13 14:37:15 +020063enum {
64 TRB_NORMAL = 1,
65 TRB_SETUP_STAGE = 2, TRB_DATA_STAGE = 3, TRB_STATUS_STAGE = 4,
Julius Werner83da5012013-09-27 12:45:11 -070066 TRB_LINK = 6, TRB_EVENT_DATA = 7,
Nico Huber90292652013-06-13 14:37:15 +020067 TRB_CMD_ENABLE_SLOT = 9, TRB_CMD_DISABLE_SLOT = 10, TRB_CMD_ADDRESS_DEV = 11,
68 TRB_CMD_CONFIGURE_EP = 12, TRB_CMD_EVAL_CTX = 13, TRB_CMD_RESET_EP = 14,
69 TRB_CMD_STOP_EP = 15, TRB_CMD_SET_TR_DQ = 16, TRB_CMD_NOOP = 23,
70 TRB_EV_TRANSFER = 32, TRB_EV_CMD_CMPL = 33, TRB_EV_PORTSC = 34, TRB_EV_HOST = 37,
71};
72enum { TRB_TRT_NO_DATA = 0, TRB_TRT_OUT_DATA = 2, TRB_TRT_IN_DATA = 3 };
73enum { TRB_DIR_OUT = 0, TRB_DIR_IN = 1 };
Patrick Georgi6615ef32010-08-13 09:18:58 +000074
Nico Huber90292652013-06-13 14:37:15 +020075#define TRB_PORT_FIELD ptr_low
76#define TRB_PORT_START 24
77#define TRB_PORT_LEN 8
78#define TRB_TL_FIELD status /* TL - Transfer Length */
79#define TRB_TL_START 0
80#define TRB_TL_LEN 17
81#define TRB_EVTL_FIELD status /* EVTL - (Event TRB) Transfer Length */
82#define TRB_EVTL_START 0
83#define TRB_EVTL_LEN 24
84#define TRB_TDS_FIELD status /* TDS - TD Size */
85#define TRB_TDS_START 17
86#define TRB_TDS_LEN 5
87#define TRB_CC_FIELD status /* CC - Completion Code */
88#define TRB_CC_START 24
89#define TRB_CC_LEN 8
90#define TRB_C_FIELD control /* C - Cycle Bit */
91#define TRB_C_START 0
92#define TRB_C_LEN 1
93#define TRB_TC_FIELD control /* TC - Toggle Cycle */
94#define TRB_TC_START 1
95#define TRB_TC_LEN 1
96#define TRB_ISP_FIELD control /* ISP - Interrupt-on Short Packet */
97#define TRB_ISP_START 2
98#define TRB_ISP_LEN 1
99#define TRB_CH_FIELD control /* CH - Chain Bit */
100#define TRB_CH_START 4
101#define TRB_CH_LEN 1
102#define TRB_IOC_FIELD control /* IOC - Interrupt On Completion */
103#define TRB_IOC_START 5
104#define TRB_IOC_LEN 1
105#define TRB_IDT_FIELD control /* IDT - Immediate Data */
106#define TRB_IDT_START 6
107#define TRB_IDT_LEN 1
108#define TRB_DC_FIELD control /* DC - Deconfigure */
109#define TRB_DC_START 9
110#define TRB_DC_LEN 1
111#define TRB_TT_FIELD control /* TT - TRB Type */
112#define TRB_TT_START 10
113#define TRB_TT_LEN 6
114#define TRB_TRT_FIELD control /* TRT - Transfer Type */
115#define TRB_TRT_START 16
116#define TRB_TRT_LEN 2
117#define TRB_DIR_FIELD control /* DIR - Direction */
118#define TRB_DIR_START 16
119#define TRB_DIR_LEN 1
120#define TRB_EP_FIELD control /* EP - Endpoint ID */
121#define TRB_EP_START 16
122#define TRB_EP_LEN 5
123#define TRB_ID_FIELD control /* ID - Slot ID */
124#define TRB_ID_START 24
125#define TRB_ID_LEN 8
126#define TRB_MASK(tok) MASK(TRB_##tok##_START, TRB_##tok##_LEN)
127#define TRB_GET(tok, trb) (((trb)->TRB_##tok##_FIELD & TRB_MASK(tok)) \
128 >> TRB_##tok##_START)
129#define TRB_SET(tok, trb, to) (trb)->TRB_##tok##_FIELD = \
130 (((trb)->TRB_##tok##_FIELD & ~TRB_MASK(tok)) | \
131 (((to) << TRB_##tok##_START) & TRB_MASK(tok)))
132#define TRB_DUMP(tok, trb) usb_debug(" "#tok"\t0x%04"PRIx32"\n", TRB_GET(tok, trb))
133
134#define TRB_CYCLE (1 << 0)
135typedef volatile struct trb {
136 u32 ptr_low;
137 u32 ptr_high;
138 u32 status;
139 u32 control;
Patrick Georgi6615ef32010-08-13 09:18:58 +0000140} trb_t;
141
Nico Huber90292652013-06-13 14:37:15 +0200142#define EVENT_RING_SIZE 64
143typedef struct {
144 trb_t *ring;
145 trb_t *cur;
146 trb_t *last;
147 u8 ccs;
148 u8 adv;
149} event_ring_t;
150
Julius Werner83da5012013-09-27 12:45:11 -0700151/* Never raise this above 256 to prevent transfer event length overflow! */
Nico Huber90292652013-06-13 14:37:15 +0200152#define TRANSFER_RING_SIZE 32
153typedef struct {
154 trb_t *ring;
155 trb_t *cur;
156 u8 pcs;
157} __attribute__ ((packed)) transfer_ring_t;
158
159#define COMMAND_RING_SIZE 4
160typedef transfer_ring_t command_ring_t;
161
162#define SC_ROUTE_FIELD f1 /* ROUTE - Route String */
163#define SC_ROUTE_START 0
164#define SC_ROUTE_LEN 20
Julius Wernere00ba212013-09-24 20:03:54 -0700165#define SC_SPEED1_FIELD f1 /* SPEED - Port speed plus one (compared to usb_speed enum) */
166#define SC_SPEED1_START 20
167#define SC_SPEED1_LEN 4
Nico Huber90292652013-06-13 14:37:15 +0200168#define SC_MTT_FIELD f1 /* MTT - Multi Transaction Translator */
169#define SC_MTT_START 25
170#define SC_MTT_LEN 1
171#define SC_HUB_FIELD f1 /* HUB - Is this a hub? */
172#define SC_HUB_START 26
173#define SC_HUB_LEN 1
174#define SC_CTXENT_FIELD f1 /* CTXENT - Context Entries (number of following ep contexts) */
175#define SC_CTXENT_START 27
176#define SC_CTXENT_LEN 5
177#define SC_RHPORT_FIELD f2 /* RHPORT - Root Hub Port Number */
178#define SC_RHPORT_START 16
179#define SC_RHPORT_LEN 8
180#define SC_NPORTS_FIELD f2 /* NPORTS - Number of Ports */
181#define SC_NPORTS_START 24
182#define SC_NPORTS_LEN 8
183#define SC_TTID_FIELD f3 /* TTID - TT Hub Slot ID */
184#define SC_TTID_START 0
185#define SC_TTID_LEN 8
186#define SC_TTPORT_FIELD f3 /* TTPORT - TT Port Number */
187#define SC_TTPORT_START 8
188#define SC_TTPORT_LEN 8
189#define SC_TTT_FIELD f3 /* TTT - TT Think Time */
190#define SC_TTT_START 16
191#define SC_TTT_LEN 2
192#define SC_UADDR_FIELD f4 /* UADDR - USB Device Address */
193#define SC_UADDR_START 0
194#define SC_UADDR_LEN 8
195#define SC_STATE_FIELD f4 /* STATE - Slot State */
196#define SC_STATE_START 27
197#define SC_STATE_LEN 8
198#define SC_MASK(tok) MASK(SC_##tok##_START, SC_##tok##_LEN)
Julius Werner1f864342013-09-03 17:15:31 -0700199#define SC_GET(tok, sc) (((sc)->SC_##tok##_FIELD & SC_MASK(tok)) \
Nico Huber90292652013-06-13 14:37:15 +0200200 >> SC_##tok##_START)
Julius Werner1f864342013-09-03 17:15:31 -0700201#define SC_SET(tok, sc, to) (sc)->SC_##tok##_FIELD = \
202 (((sc)->SC_##tok##_FIELD & ~SC_MASK(tok)) | \
Nico Huber90292652013-06-13 14:37:15 +0200203 (((to) << SC_##tok##_START) & SC_MASK(tok)))
204#define SC_DUMP(tok, sc) usb_debug(" "#tok"\t0x%04"PRIx32"\n", SC_GET(tok, sc))
Julius Werner1f864342013-09-03 17:15:31 -0700205typedef volatile struct slotctx {
Nico Huber90292652013-06-13 14:37:15 +0200206 u32 f1;
207 u32 f2;
208 u32 f3;
209 u32 f4;
Patrick Georgi6615ef32010-08-13 09:18:58 +0000210 u32 rsvd[4];
211} slotctx_t;
212
Nico Huber90292652013-06-13 14:37:15 +0200213#define EC_STATE_FIELD f1 /* STATE - Endpoint State */
214#define EC_STATE_START 0
215#define EC_STATE_LEN 3
216#define EC_INTVAL_FIELD f1 /* INTVAL - Interval */
217#define EC_INTVAL_START 16
218#define EC_INTVAL_LEN 8
219#define EC_CERR_FIELD f2 /* CERR - Error Count */
220#define EC_CERR_START 1
221#define EC_CERR_LEN 2
222#define EC_TYPE_FIELD f2 /* TYPE - EP Type */
223#define EC_TYPE_START 3
224#define EC_TYPE_LEN 3
225#define EC_MBS_FIELD f2 /* MBS - Max Burst Size */
226#define EC_MBS_START 8
227#define EC_MBS_LEN 8
228#define EC_MPS_FIELD f2 /* MPS - Max Packet Size */
229#define EC_MPS_START 16
230#define EC_MPS_LEN 16
231#define EC_DCS_FIELD tr_dq_low /* DCS - Dequeue Cycle State */
232#define EC_DCS_START 0
233#define EC_DCS_LEN 1
234#define EC_AVRTRB_FIELD f5 /* AVRTRB - Average TRB Length */
235#define EC_AVRTRB_START 0
236#define EC_AVRTRB_LEN 16
237#define EC_MXESIT_FIELD f5 /* MXESIT - Max ESIT Payload */
238#define EC_MXESIT_START 16
239#define EC_MXESIT_LEN 16
240#define EC_MASK(tok) MASK(EC_##tok##_START, EC_##tok##_LEN)
Julius Werner1f864342013-09-03 17:15:31 -0700241#define EC_GET(tok, ec) (((ec)->EC_##tok##_FIELD & EC_MASK(tok)) \
Nico Huber90292652013-06-13 14:37:15 +0200242 >> EC_##tok##_START)
Julius Werner1f864342013-09-03 17:15:31 -0700243#define EC_SET(tok, ec, to) (ec)->EC_##tok##_FIELD = \
244 (((ec)->EC_##tok##_FIELD & ~EC_MASK(tok)) | \
Nico Huber90292652013-06-13 14:37:15 +0200245 (((to) << EC_##tok##_START) & EC_MASK(tok)))
246#define EC_DUMP(tok, ec) usb_debug(" "#tok"\t0x%04"PRIx32"\n", EC_GET(tok, ec))
247enum { EP_ISOC_OUT = 1, EP_BULK_OUT = 2, EP_INTR_OUT = 3,
248 EP_CONTROL = 4, EP_ISOC_IN = 5, EP_BULK_IN = 6, EP_INTR_IN = 7 };
Julius Werner1f864342013-09-03 17:15:31 -0700249typedef volatile struct epctx {
Nico Huber90292652013-06-13 14:37:15 +0200250 u32 f1;
251 u32 f2;
252 u32 tr_dq_low;
253 u32 tr_dq_high;
254 u32 f5;
Patrick Georgi6615ef32010-08-13 09:18:58 +0000255 u32 rsvd[3];
256} epctx_t;
257
Julius Werner1f864342013-09-03 17:15:31 -0700258#define NUM_EPS 32
259#define CTXSIZE(xhci) ((xhci)->capreg->csz ? 64 : 32)
260
Nico Huber90292652013-06-13 14:37:15 +0200261typedef union devctx {
Julius Werner1f864342013-09-03 17:15:31 -0700262 /* set of pointers, so we can dynamically adjust Slot/EP context size */
Patrick Georgi6615ef32010-08-13 09:18:58 +0000263 struct {
Julius Werner1f864342013-09-03 17:15:31 -0700264 union {
265 slotctx_t *slot;
266 void *raw; /* Pointer to the whole dev context. */
267 };
268 epctx_t *ep0;
269 epctx_t *eps1_30[NUM_EPS - 2];
Nico Huber90292652013-06-13 14:37:15 +0200270 };
Julius Werner1f864342013-09-03 17:15:31 -0700271 epctx_t *ep[NUM_EPS]; /* At index 0 it's actually the slotctx,
272 we have it like that so we can use
273 the ep_id directly as index. */
Patrick Georgi6615ef32010-08-13 09:18:58 +0000274} devctx_t;
275
Nico Huber90292652013-06-13 14:37:15 +0200276typedef struct inputctx {
Julius Werner1f864342013-09-03 17:15:31 -0700277 union { /* The drop flags are located at the start of the */
278 u32 *drop; /* structure, so a pointer to them is equivalent */
279 void *raw; /* to a pointer to the whole (raw) input context. */
280 };
281 u32 *add;
Nico Huber90292652013-06-13 14:37:15 +0200282 devctx_t dev;
283} inputctx_t;
284
285typedef struct intrq {
286 size_t size; /* Size of each transfer */
287 size_t count; /* The number of TRBs to fill at once */
288 trb_t *next; /* The next TRB expected to be processed by the controller */
289 trb_t *ready; /* The last TRB in the transfer ring processed by the controller */
290 endpoint_t *ep;
291} intrq_t;
292
293typedef struct devinfo {
Julius Werner1f864342013-09-03 17:15:31 -0700294 devctx_t ctx;
295 transfer_ring_t *transfer_rings[NUM_EPS];
Nico Huber90292652013-06-13 14:37:15 +0200296 intrq_t *interrupt_queues[32];
297} devinfo_t;
Patrick Georgi6615ef32010-08-13 09:18:58 +0000298
299typedef struct erst_entry {
300 u32 seg_base_lo;
301 u32 seg_base_hi;
302 u32 seg_size;
303 u32 rsvd;
304} erst_entry_t;
305
306typedef struct xhci {
307 /* capreg is read-only, so no need for volatile,
308 and thus 32bit accesses can be assumed. */
309 struct capreg {
310 u8 caplength;
311 u8 res1;
312 union {
313 u16 hciversion;
314 struct {
315 u8 hciver_lo;
316 u8 hciver_hi;
317 } __attribute__ ((packed));
318 } __attribute__ ((packed));
319 union {
320 u32 hcsparams1;
321 struct {
322 unsigned long MaxSlots:7;
323 unsigned long MaxIntrs:11;
324 unsigned long:6;
325 unsigned long MaxPorts:8;
326 } __attribute__ ((packed));
327 } __attribute__ ((packed));
328 union {
329 u32 hcsparams2;
330 struct {
331 unsigned long IST:4;
332 unsigned long ERST_Max:4;
333 unsigned long:18;
334 unsigned long SPR:1;
335 unsigned long Max_Scratchpad_Bufs:5;
336 } __attribute__ ((packed));
337 } __attribute__ ((packed));
338 union {
339 u32 hcsparams3;
340 struct {
341 unsigned long u1latency:8;
342 unsigned long:8;
343 unsigned long u2latency:16;
344 } __attribute__ ((packed));
345 } __attribute__ ((packed));
346 union {
347 u32 hccparams;
348 struct {
349 unsigned long ac64:1;
350 unsigned long bnc:1;
351 unsigned long csz:1;
352 unsigned long ppc:1;
353 unsigned long pind:1;
354 unsigned long lhrc:1;
355 unsigned long ltc:1;
356 unsigned long nss:1;
357 unsigned long:4;
358 unsigned long MaxPSASize:4;
359 unsigned long xECP:16;
360 } __attribute__ ((packed));
361 } __attribute__ ((packed));
362 u32 dboff;
363 u32 rtsoff;
364 } __attribute__ ((packed)) *capreg;
365
366 /* opreg is R/W is most places, so volatile access is necessary.
367 volatile means that the compiler seeks byte writes if possible,
368 making bitfields unusable for MMIO register blocks. Yay C :-( */
369 volatile struct opreg {
370 u32 usbcmd;
371#define USBCMD_RS 1<<0
372#define USBCMD_HCRST 1<<1
Nico Huber90292652013-06-13 14:37:15 +0200373#define USBCMD_INTE 1<<2
Patrick Georgi6615ef32010-08-13 09:18:58 +0000374 u32 usbsts;
375#define USBSTS_HCH 1<<0
376#define USBSTS_HSE 1<<2
377#define USBSTS_EINT 1<<3
378#define USBSTS_PCD 1<<4
379#define USBSTS_CNR 1<<11
Nico Huber90292652013-06-13 14:37:15 +0200380#define USBSTS_PRSRV_MASK ((1 << 1) | 0xffffe000)
Patrick Georgi6615ef32010-08-13 09:18:58 +0000381 u32 pagesize;
382 u8 res1[0x13-0x0c+1];
383 u32 dnctrl;
384 u32 crcr_lo;
385 u32 crcr_hi;
386#define CRCR_RCS 1<<0
387#define CRCR_CS 1<<1
388#define CRCR_CA 1<<2
389#define CRCR_CRR 1<<3
390 u8 res2[0x2f-0x20+1];
391 u32 dcbaap_lo;
392 u32 dcbaap_hi;
393 u32 config;
Gabe Black1ee2c6d2013-08-09 04:27:35 -0700394#define CONFIG_LP_MASK_MaxSlotsEn 0xff
Patrick Georgi6615ef32010-08-13 09:18:58 +0000395 u8 res3[0x3ff-0x3c+1];
396 struct {
397 u32 portsc;
Nico Huber90292652013-06-13 14:37:15 +0200398#define PORTSC_CCS (1<<0)
399#define PORTSC_PED (1<<1)
Patrick Georgi6615ef32010-08-13 09:18:58 +0000400 // BIT 2 rsvdZ
Nico Huber90292652013-06-13 14:37:15 +0200401#define PORTSC_OCA (1<<3)
402#define PORTSC_PR (1<<4)
403#define PORTSC_PLS (1<<5)
Patrick Georgi6615ef32010-08-13 09:18:58 +0000404#define PORTSC_PLS_MASK MASK(5, 4)
Nico Huber90292652013-06-13 14:37:15 +0200405#define PORTSC_PP (1<<9)
406#define PORTSC_PORT_SPEED_START 10
407#define PORTSC_PORT_SPEED (1<<PORTSC_PORT_SPEED_START)
408#define PORTSC_PORT_SPEED_MASK MASK(PORTSC_PORT_SPEED_START, 4)
409#define PORTSC_PIC (1<<14)
Patrick Georgi6615ef32010-08-13 09:18:58 +0000410#define PORTSC_PIC_MASK MASK(14, 2)
Nico Huber90292652013-06-13 14:37:15 +0200411#define PORTSC_LWS (1<<16)
412#define PORTSC_CSC (1<<17)
413#define PORTSC_PEC (1<<18)
414#define PORTSC_WRC (1<<19)
415#define PORTSC_OCC (1<<20)
416#define PORTSC_PRC (1<<21)
417#define PORTSC_PLC (1<<22)
418#define PORTSC_CEC (1<<23)
419#define PORTSC_CAS (1<<24)
420#define PORTSC_WCE (1<<25)
421#define PORTSC_WDE (1<<26)
422#define PORTSC_WOE (1<<27)
Patrick Georgi6615ef32010-08-13 09:18:58 +0000423 // BIT 29:28 rsvdZ
Nico Huber90292652013-06-13 14:37:15 +0200424#define PORTSC_DR (1<<30)
425#define PORTSC_WPR (1<<31)
426#define PORTSC_RW_MASK (PORTSC_PR | PORTSC_PLS_MASK | PORTSC_PP | PORTSC_PIC_MASK | PORTSC_LWS | PORTSC_WCE | PORTSC_WDE | PORTSC_WOE)
Patrick Georgi6615ef32010-08-13 09:18:58 +0000427 u32 portpmsc;
428 u32 portli;
429 u32 res;
430 } __attribute__ ((packed)) prs[];
431 } __attribute__ ((packed)) *opreg;
432
433 /* R/W, volatile, MMIO -> no bitfields */
434 volatile struct hcrreg {
435 u32 mfindex;
436 u8 res1[0x20-0x4];
437 struct {
438 u32 iman;
439 u32 imod;
440 u32 erstsz;
441 u32 res;
442 u32 erstba_lo;
443 u32 erstba_hi;
444 u32 erdp_lo;
445 u32 erdp_hi;
446 } __attribute__ ((packed)) intrrs[]; // up to 1024, but maximum host specific, given in capreg->MaxIntrs
447 } __attribute__ ((packed)) *hcrreg;
448
449 /* R/W, volatile, MMIO -> no bitfields */
450 volatile u32 *dbreg;
451
452 /* R/W, volatile, Memory -> bitfields allowed */
Nico Huber90292652013-06-13 14:37:15 +0200453 u64 *dcbaa; /* pointers to sp_ptrs and output (device) contexts */
454 u64 *sp_ptrs; /* pointers to scratchpad buffers */
Patrick Georgi6615ef32010-08-13 09:18:58 +0000455
Nico Huber90292652013-06-13 14:37:15 +0200456 command_ring_t cr;
457 event_ring_t er;
Patrick Georgi6615ef32010-08-13 09:18:58 +0000458 volatile erst_entry_t *ev_ring_table;
Patrick Georgi6615ef32010-08-13 09:18:58 +0000459
460 usbdev_t *roothub;
Nico Huber90292652013-06-13 14:37:15 +0200461
462 u8 max_slots_en;
Julius Werner1f864342013-09-03 17:15:31 -0700463 devinfo_t *dev; /* array of devinfos by slot_id */
464
465#define DMA_SIZE (64 * 1024)
466 void *dma_buffer;
Patrick Georgi6615ef32010-08-13 09:18:58 +0000467} xhci_t;
468
469#define XHCI_INST(controller) ((xhci_t*)((controller)->instance))
470
Nico Huber90292652013-06-13 14:37:15 +0200471void *xhci_align(const size_t min_align, const size_t size);
472void xhci_init_cycle_ring(transfer_ring_t *, const size_t ring_size);
Julius Wernere00ba212013-09-24 20:03:54 -0700473int xhci_set_address (hci_t *, usb_speed speed, int hubport, int hubaddr);
Nico Huber90292652013-06-13 14:37:15 +0200474int xhci_finish_device_config(usbdev_t *);
475void xhci_destroy_dev(hci_t *, int slot_id);
476
477void xhci_reset_event_ring(event_ring_t *);
478void xhci_advance_event_ring(xhci_t *);
479void xhci_update_event_dq(xhci_t *);
480void xhci_handle_events(xhci_t *);
481int xhci_wait_for_command_aborted(xhci_t *, const trb_t *);
482int xhci_wait_for_command_done(xhci_t *, const trb_t *, int clear_event);
483int xhci_wait_for_transfer(xhci_t *, const int slot_id, const int ep_id);
484
485void xhci_clear_trb(trb_t *, int pcs);
486
487trb_t *xhci_next_command_trb(xhci_t *);
488void xhci_post_command(xhci_t *);
489int xhci_cmd_enable_slot(xhci_t *, int *slot_id);
490int xhci_cmd_disable_slot(xhci_t *, int slot_id);
491int xhci_cmd_address_device(xhci_t *, int slot_id, inputctx_t *);
492int xhci_cmd_configure_endpoint(xhci_t *, int slot_id, int config_id, inputctx_t *);
493int xhci_cmd_evaluate_context(xhci_t *, int slot_id, inputctx_t *);
494int xhci_cmd_reset_endpoint(xhci_t *, int slot_id, int ep);
495int xhci_cmd_stop_endpoint(xhci_t *, int slot_id, int ep);
496int xhci_cmd_set_tr_dq(xhci_t *, int slot_id, int ep, trb_t *, int dcs);
497
498static inline int xhci_ep_id(const endpoint_t *const ep) {
499 return ((ep->endpoint & 0x7f) << 1) + (ep->direction == IN);
500}
501
502
503#ifdef XHCI_DUMPS
504void xhci_dump_slotctx(const slotctx_t *);
505void xhci_dump_epctx(const epctx_t *);
506void xhci_dump_devctx(const devctx_t *, const u32 ctx_mask);
507void xhci_dump_inputctx(const inputctx_t *);
508void xhci_dump_transfer_trb(const trb_t *);
509void xhci_dump_transfer_trbs(const trb_t *first, const trb_t *last);
510#else
511#define xhci_dump_slotctx(args...) do {} while(0)
512#define xhci_dump_epctx(args...) do {} while(0)
513#define xhci_dump_devctx(args...) do {} while(0)
514#define xhci_dump_inputctx(args...) do {} while(0)
515#define xhci_dump_transfer_trb(args...) do {} while(0)
516#define xhci_dump_transfer_trbs(args...) do {} while(0)
517#endif
518
Patrick Georgi6615ef32010-08-13 09:18:58 +0000519#endif