1*143fc13bSJean-Jacques Hiblot /* 2*143fc13bSJean-Jacques Hiblot * USB HOST XHCI Controller 3*143fc13bSJean-Jacques Hiblot * 4*143fc13bSJean-Jacques Hiblot * Based on xHCI host controller driver in linux-kernel 5*143fc13bSJean-Jacques Hiblot * by Sarah Sharp. 6*143fc13bSJean-Jacques Hiblot * 7*143fc13bSJean-Jacques Hiblot * Copyright (C) 2008 Intel Corp. 8*143fc13bSJean-Jacques Hiblot * Author: Sarah Sharp 9*143fc13bSJean-Jacques Hiblot * 10*143fc13bSJean-Jacques Hiblot * Copyright (C) 2013 Samsung Electronics Co.Ltd 11*143fc13bSJean-Jacques Hiblot * Authors: Vivek Gautam <gautam.vivek@samsung.com> 12*143fc13bSJean-Jacques Hiblot * Vikas Sajjan <vikas.sajjan@samsung.com> 13*143fc13bSJean-Jacques Hiblot * 14*143fc13bSJean-Jacques Hiblot * SPDX-License-Identifier: GPL-2.0+ 15*143fc13bSJean-Jacques Hiblot */ 16*143fc13bSJean-Jacques Hiblot 17*143fc13bSJean-Jacques Hiblot #ifndef HOST_XHCI_H_ 18*143fc13bSJean-Jacques Hiblot #define HOST_XHCI_H_ 19*143fc13bSJean-Jacques Hiblot 20*143fc13bSJean-Jacques Hiblot #include <asm/types.h> 21*143fc13bSJean-Jacques Hiblot #include <asm/cache.h> 22*143fc13bSJean-Jacques Hiblot #include <asm/io.h> 23*143fc13bSJean-Jacques Hiblot #include <linux/list.h> 24*143fc13bSJean-Jacques Hiblot #include <linux/compat.h> 25*143fc13bSJean-Jacques Hiblot 26*143fc13bSJean-Jacques Hiblot #define MAX_EP_CTX_NUM 31 27*143fc13bSJean-Jacques Hiblot #define XHCI_ALIGNMENT 64 28*143fc13bSJean-Jacques Hiblot /* Generic timeout for XHCI events */ 29*143fc13bSJean-Jacques Hiblot #define XHCI_TIMEOUT 5000 30*143fc13bSJean-Jacques Hiblot /* Max number of USB devices for any host controller - limit in section 6.1 */ 31*143fc13bSJean-Jacques Hiblot #define MAX_HC_SLOTS 256 32*143fc13bSJean-Jacques Hiblot /* Section 5.3.3 - MaxPorts */ 33*143fc13bSJean-Jacques Hiblot #define MAX_HC_PORTS 255 34*143fc13bSJean-Jacques Hiblot 35*143fc13bSJean-Jacques Hiblot /* Up to 16 ms to halt an HC */ 36*143fc13bSJean-Jacques Hiblot #define XHCI_MAX_HALT_USEC (16*1000) 37*143fc13bSJean-Jacques Hiblot 38*143fc13bSJean-Jacques Hiblot #define XHCI_MAX_RESET_USEC (250*1000) 39*143fc13bSJean-Jacques Hiblot 40*143fc13bSJean-Jacques Hiblot /* 41*143fc13bSJean-Jacques Hiblot * These bits are Read Only (RO) and should be saved and written to the 42*143fc13bSJean-Jacques Hiblot * registers: 0, 3, 10:13, 30 43*143fc13bSJean-Jacques Hiblot * connect status, over-current status, port speed, and device removable. 44*143fc13bSJean-Jacques Hiblot * connect status and port speed are also sticky - meaning they're in 45*143fc13bSJean-Jacques Hiblot * the AUX well and they aren't changed by a hot, warm, or cold reset. 46*143fc13bSJean-Jacques Hiblot */ 47*143fc13bSJean-Jacques Hiblot #define XHCI_PORT_RO ((1 << 0) | (1 << 3) | (0xf << 10) | (1 << 30)) 48*143fc13bSJean-Jacques Hiblot /* 49*143fc13bSJean-Jacques Hiblot * These bits are RW; writing a 0 clears the bit, writing a 1 sets the bit: 50*143fc13bSJean-Jacques Hiblot * bits 5:8, 9, 14:15, 25:27 51*143fc13bSJean-Jacques Hiblot * link state, port power, port indicator state, "wake on" enable state 52*143fc13bSJean-Jacques Hiblot */ 53*143fc13bSJean-Jacques Hiblot #define XHCI_PORT_RWS ((0xf << 5) | (1 << 9) | (0x3 << 14) | (0x7 << 25)) 54*143fc13bSJean-Jacques Hiblot /* 55*143fc13bSJean-Jacques Hiblot * These bits are RW; writing a 1 sets the bit, writing a 0 has no effect: 56*143fc13bSJean-Jacques Hiblot * bit 4 (port reset) 57*143fc13bSJean-Jacques Hiblot */ 58*143fc13bSJean-Jacques Hiblot #define XHCI_PORT_RW1S ((1 << 4)) 59*143fc13bSJean-Jacques Hiblot /* 60*143fc13bSJean-Jacques Hiblot * These bits are RW; writing a 1 clears the bit, writing a 0 has no effect: 61*143fc13bSJean-Jacques Hiblot * bits 1, 17, 18, 19, 20, 21, 22, 23 62*143fc13bSJean-Jacques Hiblot * port enable/disable, and 63*143fc13bSJean-Jacques Hiblot * change bits: connect, PED, 64*143fc13bSJean-Jacques Hiblot * warm port reset changed (reserved zero for USB 2.0 ports), 65*143fc13bSJean-Jacques Hiblot * over-current, reset, link state, and L1 change 66*143fc13bSJean-Jacques Hiblot */ 67*143fc13bSJean-Jacques Hiblot #define XHCI_PORT_RW1CS ((1 << 1) | (0x7f << 17)) 68*143fc13bSJean-Jacques Hiblot /* 69*143fc13bSJean-Jacques Hiblot * Bit 16 is RW, and writing a '1' to it causes the link state control to be 70*143fc13bSJean-Jacques Hiblot * latched in 71*143fc13bSJean-Jacques Hiblot */ 72*143fc13bSJean-Jacques Hiblot #define XHCI_PORT_RW ((1 << 16)) 73*143fc13bSJean-Jacques Hiblot /* 74*143fc13bSJean-Jacques Hiblot * These bits are Reserved Zero (RsvdZ) and zero should be written to them: 75*143fc13bSJean-Jacques Hiblot * bits 2, 24, 28:31 76*143fc13bSJean-Jacques Hiblot */ 77*143fc13bSJean-Jacques Hiblot #define XHCI_PORT_RZ ((1 << 2) | (1 << 24) | (0xf << 28)) 78*143fc13bSJean-Jacques Hiblot 79*143fc13bSJean-Jacques Hiblot /* 80*143fc13bSJean-Jacques Hiblot * XHCI Register Space. 81*143fc13bSJean-Jacques Hiblot */ 82*143fc13bSJean-Jacques Hiblot struct xhci_hccr { 83*143fc13bSJean-Jacques Hiblot uint32_t cr_capbase; 84*143fc13bSJean-Jacques Hiblot uint32_t cr_hcsparams1; 85*143fc13bSJean-Jacques Hiblot uint32_t cr_hcsparams2; 86*143fc13bSJean-Jacques Hiblot uint32_t cr_hcsparams3; 87*143fc13bSJean-Jacques Hiblot uint32_t cr_hccparams; 88*143fc13bSJean-Jacques Hiblot uint32_t cr_dboff; 89*143fc13bSJean-Jacques Hiblot uint32_t cr_rtsoff; 90*143fc13bSJean-Jacques Hiblot 91*143fc13bSJean-Jacques Hiblot /* hc_capbase bitmasks */ 92*143fc13bSJean-Jacques Hiblot /* bits 7:0 - how long is the Capabilities register */ 93*143fc13bSJean-Jacques Hiblot #define HC_LENGTH(p) XHCI_HC_LENGTH(p) 94*143fc13bSJean-Jacques Hiblot /* bits 31:16 */ 95*143fc13bSJean-Jacques Hiblot #define HC_VERSION(p) (((p) >> 16) & 0xffff) 96*143fc13bSJean-Jacques Hiblot 97*143fc13bSJean-Jacques Hiblot /* HCSPARAMS1 - hcs_params1 - bitmasks */ 98*143fc13bSJean-Jacques Hiblot /* bits 0:7, Max Device Slots */ 99*143fc13bSJean-Jacques Hiblot #define HCS_MAX_SLOTS(p) (((p) >> 0) & 0xff) 100*143fc13bSJean-Jacques Hiblot #define HCS_SLOTS_MASK 0xff 101*143fc13bSJean-Jacques Hiblot /* bits 8:18, Max Interrupters */ 102*143fc13bSJean-Jacques Hiblot #define HCS_MAX_INTRS(p) (((p) >> 8) & 0x7ff) 103*143fc13bSJean-Jacques Hiblot /* bits 24:31, Max Ports - max value is 0x7F = 127 ports */ 104*143fc13bSJean-Jacques Hiblot #define HCS_MAX_PORTS_SHIFT 24 105*143fc13bSJean-Jacques Hiblot #define HCS_MAX_PORTS_MASK (0xff << HCS_MAX_PORTS_SHIFT) 106*143fc13bSJean-Jacques Hiblot #define HCS_MAX_PORTS(p) (((p) >> 24) & 0xff) 107*143fc13bSJean-Jacques Hiblot 108*143fc13bSJean-Jacques Hiblot /* HCSPARAMS2 - hcs_params2 - bitmasks */ 109*143fc13bSJean-Jacques Hiblot /* bits 0:3, frames or uframes that SW needs to queue transactions 110*143fc13bSJean-Jacques Hiblot * ahead of the HW to meet periodic deadlines */ 111*143fc13bSJean-Jacques Hiblot #define HCS_IST(p) (((p) >> 0) & 0xf) 112*143fc13bSJean-Jacques Hiblot /* bits 4:7, max number of Event Ring segments */ 113*143fc13bSJean-Jacques Hiblot #define HCS_ERST_MAX(p) (((p) >> 4) & 0xf) 114*143fc13bSJean-Jacques Hiblot /* bits 21:25 Hi 5 bits of Scratchpad buffers SW must allocate for the HW */ 115*143fc13bSJean-Jacques Hiblot /* bit 26 Scratchpad restore - for save/restore HW state - not used yet */ 116*143fc13bSJean-Jacques Hiblot /* bits 27:31 Lo 5 bits of Scratchpad buffers SW must allocate for the HW */ 117*143fc13bSJean-Jacques Hiblot #define HCS_MAX_SCRATCHPAD(p) ((((p) >> 16) & 0x3e0) | (((p) >> 27) & 0x1f)) 118*143fc13bSJean-Jacques Hiblot 119*143fc13bSJean-Jacques Hiblot /* HCSPARAMS3 - hcs_params3 - bitmasks */ 120*143fc13bSJean-Jacques Hiblot /* bits 0:7, Max U1 to U0 latency for the roothub ports */ 121*143fc13bSJean-Jacques Hiblot #define HCS_U1_LATENCY(p) (((p) >> 0) & 0xff) 122*143fc13bSJean-Jacques Hiblot /* bits 16:31, Max U2 to U0 latency for the roothub ports */ 123*143fc13bSJean-Jacques Hiblot #define HCS_U2_LATENCY(p) (((p) >> 16) & 0xffff) 124*143fc13bSJean-Jacques Hiblot 125*143fc13bSJean-Jacques Hiblot /* HCCPARAMS - hcc_params - bitmasks */ 126*143fc13bSJean-Jacques Hiblot /* true: HC can use 64-bit address pointers */ 127*143fc13bSJean-Jacques Hiblot #define HCC_64BIT_ADDR(p) ((p) & (1 << 0)) 128*143fc13bSJean-Jacques Hiblot /* true: HC can do bandwidth negotiation */ 129*143fc13bSJean-Jacques Hiblot #define HCC_BANDWIDTH_NEG(p) ((p) & (1 << 1)) 130*143fc13bSJean-Jacques Hiblot /* true: HC uses 64-byte Device Context structures 131*143fc13bSJean-Jacques Hiblot * FIXME 64-byte context structures aren't supported yet. 132*143fc13bSJean-Jacques Hiblot */ 133*143fc13bSJean-Jacques Hiblot #define HCC_64BYTE_CONTEXT(p) ((p) & (1 << 2)) 134*143fc13bSJean-Jacques Hiblot /* true: HC has port power switches */ 135*143fc13bSJean-Jacques Hiblot #define HCC_PPC(p) ((p) & (1 << 3)) 136*143fc13bSJean-Jacques Hiblot /* true: HC has port indicators */ 137*143fc13bSJean-Jacques Hiblot #define HCS_INDICATOR(p) ((p) & (1 << 4)) 138*143fc13bSJean-Jacques Hiblot /* true: HC has Light HC Reset Capability */ 139*143fc13bSJean-Jacques Hiblot #define HCC_LIGHT_RESET(p) ((p) & (1 << 5)) 140*143fc13bSJean-Jacques Hiblot /* true: HC supports latency tolerance messaging */ 141*143fc13bSJean-Jacques Hiblot #define HCC_LTC(p) ((p) & (1 << 6)) 142*143fc13bSJean-Jacques Hiblot /* true: no secondary Stream ID Support */ 143*143fc13bSJean-Jacques Hiblot #define HCC_NSS(p) ((p) & (1 << 7)) 144*143fc13bSJean-Jacques Hiblot /* Max size for Primary Stream Arrays - 2^(n+1), where n is bits 12:15 */ 145*143fc13bSJean-Jacques Hiblot #define HCC_MAX_PSA(p) (1 << ((((p) >> 12) & 0xf) + 1)) 146*143fc13bSJean-Jacques Hiblot /* Extended Capabilities pointer from PCI base - section 5.3.6 */ 147*143fc13bSJean-Jacques Hiblot #define HCC_EXT_CAPS(p) XHCI_HCC_EXT_CAPS(p) 148*143fc13bSJean-Jacques Hiblot 149*143fc13bSJean-Jacques Hiblot /* db_off bitmask - bits 0:1 reserved */ 150*143fc13bSJean-Jacques Hiblot #define DBOFF_MASK (~0x3) 151*143fc13bSJean-Jacques Hiblot 152*143fc13bSJean-Jacques Hiblot /* run_regs_off bitmask - bits 0:4 reserved */ 153*143fc13bSJean-Jacques Hiblot #define RTSOFF_MASK (~0x1f) 154*143fc13bSJean-Jacques Hiblot 155*143fc13bSJean-Jacques Hiblot }; 156*143fc13bSJean-Jacques Hiblot 157*143fc13bSJean-Jacques Hiblot struct xhci_hcor_port_regs { 158*143fc13bSJean-Jacques Hiblot volatile uint32_t or_portsc; 159*143fc13bSJean-Jacques Hiblot volatile uint32_t or_portpmsc; 160*143fc13bSJean-Jacques Hiblot volatile uint32_t or_portli; 161*143fc13bSJean-Jacques Hiblot volatile uint32_t reserved_3; 162*143fc13bSJean-Jacques Hiblot }; 163*143fc13bSJean-Jacques Hiblot 164*143fc13bSJean-Jacques Hiblot struct xhci_hcor { 165*143fc13bSJean-Jacques Hiblot volatile uint32_t or_usbcmd; 166*143fc13bSJean-Jacques Hiblot volatile uint32_t or_usbsts; 167*143fc13bSJean-Jacques Hiblot volatile uint32_t or_pagesize; 168*143fc13bSJean-Jacques Hiblot volatile uint32_t reserved_0[2]; 169*143fc13bSJean-Jacques Hiblot volatile uint32_t or_dnctrl; 170*143fc13bSJean-Jacques Hiblot volatile uint64_t or_crcr; 171*143fc13bSJean-Jacques Hiblot volatile uint32_t reserved_1[4]; 172*143fc13bSJean-Jacques Hiblot volatile uint64_t or_dcbaap; 173*143fc13bSJean-Jacques Hiblot volatile uint32_t or_config; 174*143fc13bSJean-Jacques Hiblot volatile uint32_t reserved_2[241]; 175*143fc13bSJean-Jacques Hiblot struct xhci_hcor_port_regs portregs[MAX_HC_PORTS]; 176*143fc13bSJean-Jacques Hiblot }; 177*143fc13bSJean-Jacques Hiblot 178*143fc13bSJean-Jacques Hiblot /* USBCMD - USB command - command bitmasks */ 179*143fc13bSJean-Jacques Hiblot /* start/stop HC execution - do not write unless HC is halted*/ 180*143fc13bSJean-Jacques Hiblot #define CMD_RUN XHCI_CMD_RUN 181*143fc13bSJean-Jacques Hiblot /* Reset HC - resets internal HC state machine and all registers (except 182*143fc13bSJean-Jacques Hiblot * PCI config regs). HC does NOT drive a USB reset on the downstream ports. 183*143fc13bSJean-Jacques Hiblot * The xHCI driver must reinitialize the xHC after setting this bit. 184*143fc13bSJean-Jacques Hiblot */ 185*143fc13bSJean-Jacques Hiblot #define CMD_RESET (1 << 1) 186*143fc13bSJean-Jacques Hiblot /* Event Interrupt Enable - a '1' allows interrupts from the host controller */ 187*143fc13bSJean-Jacques Hiblot #define CMD_EIE XHCI_CMD_EIE 188*143fc13bSJean-Jacques Hiblot /* Host System Error Interrupt Enable - get out-of-band signal for HC errors */ 189*143fc13bSJean-Jacques Hiblot #define CMD_HSEIE XHCI_CMD_HSEIE 190*143fc13bSJean-Jacques Hiblot /* bits 4:6 are reserved (and should be preserved on writes). */ 191*143fc13bSJean-Jacques Hiblot /* light reset (port status stays unchanged) - reset completed when this is 0 */ 192*143fc13bSJean-Jacques Hiblot #define CMD_LRESET (1 << 7) 193*143fc13bSJean-Jacques Hiblot /* host controller save/restore state. */ 194*143fc13bSJean-Jacques Hiblot #define CMD_CSS (1 << 8) 195*143fc13bSJean-Jacques Hiblot #define CMD_CRS (1 << 9) 196*143fc13bSJean-Jacques Hiblot /* Enable Wrap Event - '1' means xHC generates an event when MFINDEX wraps. */ 197*143fc13bSJean-Jacques Hiblot #define CMD_EWE XHCI_CMD_EWE 198*143fc13bSJean-Jacques Hiblot /* MFINDEX power management - '1' means xHC can stop MFINDEX counter if all root 199*143fc13bSJean-Jacques Hiblot * hubs are in U3 (selective suspend), disconnect, disabled, or powered-off. 200*143fc13bSJean-Jacques Hiblot * '0' means the xHC can power it off if all ports are in the disconnect, 201*143fc13bSJean-Jacques Hiblot * disabled, or powered-off state. 202*143fc13bSJean-Jacques Hiblot */ 203*143fc13bSJean-Jacques Hiblot #define CMD_PM_INDEX (1 << 11) 204*143fc13bSJean-Jacques Hiblot /* bits 12:31 are reserved (and should be preserved on writes). */ 205*143fc13bSJean-Jacques Hiblot 206*143fc13bSJean-Jacques Hiblot /* USBSTS - USB status - status bitmasks */ 207*143fc13bSJean-Jacques Hiblot /* HC not running - set to 1 when run/stop bit is cleared. */ 208*143fc13bSJean-Jacques Hiblot #define STS_HALT XHCI_STS_HALT 209*143fc13bSJean-Jacques Hiblot /* serious error, e.g. PCI parity error. The HC will clear the run/stop bit. */ 210*143fc13bSJean-Jacques Hiblot #define STS_FATAL (1 << 2) 211*143fc13bSJean-Jacques Hiblot /* event interrupt - clear this prior to clearing any IP flags in IR set*/ 212*143fc13bSJean-Jacques Hiblot #define STS_EINT (1 << 3) 213*143fc13bSJean-Jacques Hiblot /* port change detect */ 214*143fc13bSJean-Jacques Hiblot #define STS_PORT (1 << 4) 215*143fc13bSJean-Jacques Hiblot /* bits 5:7 reserved and zeroed */ 216*143fc13bSJean-Jacques Hiblot /* save state status - '1' means xHC is saving state */ 217*143fc13bSJean-Jacques Hiblot #define STS_SAVE (1 << 8) 218*143fc13bSJean-Jacques Hiblot /* restore state status - '1' means xHC is restoring state */ 219*143fc13bSJean-Jacques Hiblot #define STS_RESTORE (1 << 9) 220*143fc13bSJean-Jacques Hiblot /* true: save or restore error */ 221*143fc13bSJean-Jacques Hiblot #define STS_SRE (1 << 10) 222*143fc13bSJean-Jacques Hiblot /* true: Controller Not Ready to accept doorbell or op reg writes after reset */ 223*143fc13bSJean-Jacques Hiblot #define STS_CNR XHCI_STS_CNR 224*143fc13bSJean-Jacques Hiblot /* true: internal Host Controller Error - SW needs to reset and reinitialize */ 225*143fc13bSJean-Jacques Hiblot #define STS_HCE (1 << 12) 226*143fc13bSJean-Jacques Hiblot /* bits 13:31 reserved and should be preserved */ 227*143fc13bSJean-Jacques Hiblot 228*143fc13bSJean-Jacques Hiblot /* 229*143fc13bSJean-Jacques Hiblot * DNCTRL - Device Notification Control Register - dev_notification bitmasks 230*143fc13bSJean-Jacques Hiblot * Generate a device notification event when the HC sees a transaction with a 231*143fc13bSJean-Jacques Hiblot * notification type that matches a bit set in this bit field. 232*143fc13bSJean-Jacques Hiblot */ 233*143fc13bSJean-Jacques Hiblot #define DEV_NOTE_MASK (0xffff) 234*143fc13bSJean-Jacques Hiblot #define ENABLE_DEV_NOTE(x) (1 << (x)) 235*143fc13bSJean-Jacques Hiblot /* Most of the device notification types should only be used for debug. 236*143fc13bSJean-Jacques Hiblot * SW does need to pay attention to function wake notifications. 237*143fc13bSJean-Jacques Hiblot */ 238*143fc13bSJean-Jacques Hiblot #define DEV_NOTE_FWAKE ENABLE_DEV_NOTE(1) 239*143fc13bSJean-Jacques Hiblot 240*143fc13bSJean-Jacques Hiblot /* CRCR - Command Ring Control Register - cmd_ring bitmasks */ 241*143fc13bSJean-Jacques Hiblot /* bit 0 is the command ring cycle state */ 242*143fc13bSJean-Jacques Hiblot /* stop ring operation after completion of the currently executing command */ 243*143fc13bSJean-Jacques Hiblot #define CMD_RING_PAUSE (1 << 1) 244*143fc13bSJean-Jacques Hiblot /* stop ring immediately - abort the currently executing command */ 245*143fc13bSJean-Jacques Hiblot #define CMD_RING_ABORT (1 << 2) 246*143fc13bSJean-Jacques Hiblot /* true: command ring is running */ 247*143fc13bSJean-Jacques Hiblot #define CMD_RING_RUNNING (1 << 3) 248*143fc13bSJean-Jacques Hiblot /* bits 4:5 reserved and should be preserved */ 249*143fc13bSJean-Jacques Hiblot /* Command Ring pointer - bit mask for the lower 32 bits. */ 250*143fc13bSJean-Jacques Hiblot #define CMD_RING_RSVD_BITS (0x3f) 251*143fc13bSJean-Jacques Hiblot 252*143fc13bSJean-Jacques Hiblot /* CONFIG - Configure Register - config_reg bitmasks */ 253*143fc13bSJean-Jacques Hiblot /* bits 0:7 - maximum number of device slots enabled (NumSlotsEn) */ 254*143fc13bSJean-Jacques Hiblot #define MAX_DEVS(p) ((p) & 0xff) 255*143fc13bSJean-Jacques Hiblot /* bits 8:31 - reserved and should be preserved */ 256*143fc13bSJean-Jacques Hiblot 257*143fc13bSJean-Jacques Hiblot /* PORTSC - Port Status and Control Register - port_status_base bitmasks */ 258*143fc13bSJean-Jacques Hiblot /* true: device connected */ 259*143fc13bSJean-Jacques Hiblot #define PORT_CONNECT (1 << 0) 260*143fc13bSJean-Jacques Hiblot /* true: port enabled */ 261*143fc13bSJean-Jacques Hiblot #define PORT_PE (1 << 1) 262*143fc13bSJean-Jacques Hiblot /* bit 2 reserved and zeroed */ 263*143fc13bSJean-Jacques Hiblot /* true: port has an over-current condition */ 264*143fc13bSJean-Jacques Hiblot #define PORT_OC (1 << 3) 265*143fc13bSJean-Jacques Hiblot /* true: port reset signaling asserted */ 266*143fc13bSJean-Jacques Hiblot #define PORT_RESET (1 << 4) 267*143fc13bSJean-Jacques Hiblot /* Port Link State - bits 5:8 268*143fc13bSJean-Jacques Hiblot * A read gives the current link PM state of the port, 269*143fc13bSJean-Jacques Hiblot * a write with Link State Write Strobe set sets the link state. 270*143fc13bSJean-Jacques Hiblot */ 271*143fc13bSJean-Jacques Hiblot #define PORT_PLS_MASK (0xf << 5) 272*143fc13bSJean-Jacques Hiblot #define XDEV_U0 (0x0 << 5) 273*143fc13bSJean-Jacques Hiblot #define XDEV_U2 (0x2 << 5) 274*143fc13bSJean-Jacques Hiblot #define XDEV_U3 (0x3 << 5) 275*143fc13bSJean-Jacques Hiblot #define XDEV_RESUME (0xf << 5) 276*143fc13bSJean-Jacques Hiblot /* true: port has power (see HCC_PPC) */ 277*143fc13bSJean-Jacques Hiblot #define PORT_POWER (1 << 9) 278*143fc13bSJean-Jacques Hiblot /* bits 10:13 indicate device speed: 279*143fc13bSJean-Jacques Hiblot * 0 - undefined speed - port hasn't be initialized by a reset yet 280*143fc13bSJean-Jacques Hiblot * 1 - full speed 281*143fc13bSJean-Jacques Hiblot * 2 - low speed 282*143fc13bSJean-Jacques Hiblot * 3 - high speed 283*143fc13bSJean-Jacques Hiblot * 4 - super speed 284*143fc13bSJean-Jacques Hiblot * 5-15 reserved 285*143fc13bSJean-Jacques Hiblot */ 286*143fc13bSJean-Jacques Hiblot #define DEV_SPEED_MASK (0xf << 10) 287*143fc13bSJean-Jacques Hiblot #define XDEV_FS (0x1 << 10) 288*143fc13bSJean-Jacques Hiblot #define XDEV_LS (0x2 << 10) 289*143fc13bSJean-Jacques Hiblot #define XDEV_HS (0x3 << 10) 290*143fc13bSJean-Jacques Hiblot #define XDEV_SS (0x4 << 10) 291*143fc13bSJean-Jacques Hiblot #define DEV_UNDEFSPEED(p) (((p) & DEV_SPEED_MASK) == (0x0<<10)) 292*143fc13bSJean-Jacques Hiblot #define DEV_FULLSPEED(p) (((p) & DEV_SPEED_MASK) == XDEV_FS) 293*143fc13bSJean-Jacques Hiblot #define DEV_LOWSPEED(p) (((p) & DEV_SPEED_MASK) == XDEV_LS) 294*143fc13bSJean-Jacques Hiblot #define DEV_HIGHSPEED(p) (((p) & DEV_SPEED_MASK) == XDEV_HS) 295*143fc13bSJean-Jacques Hiblot #define DEV_SUPERSPEED(p) (((p) & DEV_SPEED_MASK) == XDEV_SS) 296*143fc13bSJean-Jacques Hiblot /* Bits 20:23 in the Slot Context are the speed for the device */ 297*143fc13bSJean-Jacques Hiblot #define SLOT_SPEED_FS (XDEV_FS << 10) 298*143fc13bSJean-Jacques Hiblot #define SLOT_SPEED_LS (XDEV_LS << 10) 299*143fc13bSJean-Jacques Hiblot #define SLOT_SPEED_HS (XDEV_HS << 10) 300*143fc13bSJean-Jacques Hiblot #define SLOT_SPEED_SS (XDEV_SS << 10) 301*143fc13bSJean-Jacques Hiblot /* Port Indicator Control */ 302*143fc13bSJean-Jacques Hiblot #define PORT_LED_OFF (0 << 14) 303*143fc13bSJean-Jacques Hiblot #define PORT_LED_AMBER (1 << 14) 304*143fc13bSJean-Jacques Hiblot #define PORT_LED_GREEN (2 << 14) 305*143fc13bSJean-Jacques Hiblot #define PORT_LED_MASK (3 << 14) 306*143fc13bSJean-Jacques Hiblot /* Port Link State Write Strobe - set this when changing link state */ 307*143fc13bSJean-Jacques Hiblot #define PORT_LINK_STROBE (1 << 16) 308*143fc13bSJean-Jacques Hiblot /* true: connect status change */ 309*143fc13bSJean-Jacques Hiblot #define PORT_CSC (1 << 17) 310*143fc13bSJean-Jacques Hiblot /* true: port enable change */ 311*143fc13bSJean-Jacques Hiblot #define PORT_PEC (1 << 18) 312*143fc13bSJean-Jacques Hiblot /* true: warm reset for a USB 3.0 device is done. A "hot" reset puts the port 313*143fc13bSJean-Jacques Hiblot * into an enabled state, and the device into the default state. A "warm" reset 314*143fc13bSJean-Jacques Hiblot * also resets the link, forcing the device through the link training sequence. 315*143fc13bSJean-Jacques Hiblot * SW can also look at the Port Reset register to see when warm reset is done. 316*143fc13bSJean-Jacques Hiblot */ 317*143fc13bSJean-Jacques Hiblot #define PORT_WRC (1 << 19) 318*143fc13bSJean-Jacques Hiblot /* true: over-current change */ 319*143fc13bSJean-Jacques Hiblot #define PORT_OCC (1 << 20) 320*143fc13bSJean-Jacques Hiblot /* true: reset change - 1 to 0 transition of PORT_RESET */ 321*143fc13bSJean-Jacques Hiblot #define PORT_RC (1 << 21) 322*143fc13bSJean-Jacques Hiblot /* port link status change - set on some port link state transitions: 323*143fc13bSJean-Jacques Hiblot * Transition Reason 324*143fc13bSJean-Jacques Hiblot * -------------------------------------------------------------------------- 325*143fc13bSJean-Jacques Hiblot * - U3 to Resume Wakeup signaling from a device 326*143fc13bSJean-Jacques Hiblot * - Resume to Recovery to U0 USB 3.0 device resume 327*143fc13bSJean-Jacques Hiblot * - Resume to U0 USB 2.0 device resume 328*143fc13bSJean-Jacques Hiblot * - U3 to Recovery to U0 Software resume of USB 3.0 device complete 329*143fc13bSJean-Jacques Hiblot * - U3 to U0 Software resume of USB 2.0 device complete 330*143fc13bSJean-Jacques Hiblot * - U2 to U0 L1 resume of USB 2.1 device complete 331*143fc13bSJean-Jacques Hiblot * - U0 to U0 (???) L1 entry rejection by USB 2.1 device 332*143fc13bSJean-Jacques Hiblot * - U0 to disabled L1 entry error with USB 2.1 device 333*143fc13bSJean-Jacques Hiblot * - Any state to inactive Error on USB 3.0 port 334*143fc13bSJean-Jacques Hiblot */ 335*143fc13bSJean-Jacques Hiblot #define PORT_PLC (1 << 22) 336*143fc13bSJean-Jacques Hiblot /* port configure error change - port failed to configure its link partner */ 337*143fc13bSJean-Jacques Hiblot #define PORT_CEC (1 << 23) 338*143fc13bSJean-Jacques Hiblot /* bit 24 reserved */ 339*143fc13bSJean-Jacques Hiblot /* wake on connect (enable) */ 340*143fc13bSJean-Jacques Hiblot #define PORT_WKCONN_E (1 << 25) 341*143fc13bSJean-Jacques Hiblot /* wake on disconnect (enable) */ 342*143fc13bSJean-Jacques Hiblot #define PORT_WKDISC_E (1 << 26) 343*143fc13bSJean-Jacques Hiblot /* wake on over-current (enable) */ 344*143fc13bSJean-Jacques Hiblot #define PORT_WKOC_E (1 << 27) 345*143fc13bSJean-Jacques Hiblot /* bits 28:29 reserved */ 346*143fc13bSJean-Jacques Hiblot /* true: device is removable - for USB 3.0 roothub emulation */ 347*143fc13bSJean-Jacques Hiblot #define PORT_DEV_REMOVE (1 << 30) 348*143fc13bSJean-Jacques Hiblot /* Initiate a warm port reset - complete when PORT_WRC is '1' */ 349*143fc13bSJean-Jacques Hiblot #define PORT_WR (1 << 31) 350*143fc13bSJean-Jacques Hiblot 351*143fc13bSJean-Jacques Hiblot /* We mark duplicate entries with -1 */ 352*143fc13bSJean-Jacques Hiblot #define DUPLICATE_ENTRY ((u8)(-1)) 353*143fc13bSJean-Jacques Hiblot 354*143fc13bSJean-Jacques Hiblot /* Port Power Management Status and Control - port_power_base bitmasks */ 355*143fc13bSJean-Jacques Hiblot /* Inactivity timer value for transitions into U1, in microseconds. 356*143fc13bSJean-Jacques Hiblot * Timeout can be up to 127us. 0xFF means an infinite timeout. 357*143fc13bSJean-Jacques Hiblot */ 358*143fc13bSJean-Jacques Hiblot #define PORT_U1_TIMEOUT(p) ((p) & 0xff) 359*143fc13bSJean-Jacques Hiblot /* Inactivity timer value for transitions into U2 */ 360*143fc13bSJean-Jacques Hiblot #define PORT_U2_TIMEOUT(p) (((p) & 0xff) << 8) 361*143fc13bSJean-Jacques Hiblot /* Bits 24:31 for port testing */ 362*143fc13bSJean-Jacques Hiblot 363*143fc13bSJean-Jacques Hiblot /* USB2 Protocol PORTSPMSC */ 364*143fc13bSJean-Jacques Hiblot #define PORT_L1S_MASK 7 365*143fc13bSJean-Jacques Hiblot #define PORT_L1S_SUCCESS 1 366*143fc13bSJean-Jacques Hiblot #define PORT_RWE (1 << 3) 367*143fc13bSJean-Jacques Hiblot #define PORT_HIRD(p) (((p) & 0xf) << 4) 368*143fc13bSJean-Jacques Hiblot #define PORT_HIRD_MASK (0xf << 4) 369*143fc13bSJean-Jacques Hiblot #define PORT_L1DS(p) (((p) & 0xff) << 8) 370*143fc13bSJean-Jacques Hiblot #define PORT_HLE (1 << 16) 371*143fc13bSJean-Jacques Hiblot 372*143fc13bSJean-Jacques Hiblot /** 373*143fc13bSJean-Jacques Hiblot * struct xhci_intr_reg - Interrupt Register Set 374*143fc13bSJean-Jacques Hiblot * @irq_pending: IMAN - Interrupt Management Register. Used to enable 375*143fc13bSJean-Jacques Hiblot * interrupts and check for pending interrupts. 376*143fc13bSJean-Jacques Hiblot * @irq_control: IMOD - Interrupt Moderation Register. 377*143fc13bSJean-Jacques Hiblot * Used to throttle interrupts. 378*143fc13bSJean-Jacques Hiblot * @erst_size: Number of segments in the 379*143fc13bSJean-Jacques Hiblot Event Ring Segment Table (ERST). 380*143fc13bSJean-Jacques Hiblot * @erst_base: ERST base address. 381*143fc13bSJean-Jacques Hiblot * @erst_dequeue: Event ring dequeue pointer. 382*143fc13bSJean-Jacques Hiblot * 383*143fc13bSJean-Jacques Hiblot * Each interrupter (defined by a MSI-X vector) has an event ring and an Event 384*143fc13bSJean-Jacques Hiblot * Ring Segment Table (ERST) associated with it. 385*143fc13bSJean-Jacques Hiblot * The event ring is comprised of multiple segments of the same size. 386*143fc13bSJean-Jacques Hiblot * The HC places events on the ring and "updates the Cycle bit in the TRBs to 387*143fc13bSJean-Jacques Hiblot * indicate to software the current position of the Enqueue Pointer." 388*143fc13bSJean-Jacques Hiblot * The HCD (Linux) processes those events and updates the dequeue pointer. 389*143fc13bSJean-Jacques Hiblot */ 390*143fc13bSJean-Jacques Hiblot struct xhci_intr_reg { 391*143fc13bSJean-Jacques Hiblot volatile __le32 irq_pending; 392*143fc13bSJean-Jacques Hiblot volatile __le32 irq_control; 393*143fc13bSJean-Jacques Hiblot volatile __le32 erst_size; 394*143fc13bSJean-Jacques Hiblot volatile __le32 rsvd; 395*143fc13bSJean-Jacques Hiblot volatile __le64 erst_base; 396*143fc13bSJean-Jacques Hiblot volatile __le64 erst_dequeue; 397*143fc13bSJean-Jacques Hiblot }; 398*143fc13bSJean-Jacques Hiblot 399*143fc13bSJean-Jacques Hiblot /* irq_pending bitmasks */ 400*143fc13bSJean-Jacques Hiblot #define ER_IRQ_PENDING(p) ((p) & 0x1) 401*143fc13bSJean-Jacques Hiblot /* bits 2:31 need to be preserved */ 402*143fc13bSJean-Jacques Hiblot /* THIS IS BUGGY - FIXME - IP IS WRITE 1 TO CLEAR */ 403*143fc13bSJean-Jacques Hiblot #define ER_IRQ_CLEAR(p) ((p) & 0xfffffffe) 404*143fc13bSJean-Jacques Hiblot #define ER_IRQ_ENABLE(p) ((ER_IRQ_CLEAR(p)) | 0x2) 405*143fc13bSJean-Jacques Hiblot #define ER_IRQ_DISABLE(p) ((ER_IRQ_CLEAR(p)) & ~(0x2)) 406*143fc13bSJean-Jacques Hiblot 407*143fc13bSJean-Jacques Hiblot /* irq_control bitmasks */ 408*143fc13bSJean-Jacques Hiblot /* Minimum interval between interrupts (in 250ns intervals). The interval 409*143fc13bSJean-Jacques Hiblot * between interrupts will be longer if there are no events on the event ring. 410*143fc13bSJean-Jacques Hiblot * Default is 4000 (1 ms). 411*143fc13bSJean-Jacques Hiblot */ 412*143fc13bSJean-Jacques Hiblot #define ER_IRQ_INTERVAL_MASK (0xffff) 413*143fc13bSJean-Jacques Hiblot /* Counter used to count down the time to the next interrupt - HW use only */ 414*143fc13bSJean-Jacques Hiblot #define ER_IRQ_COUNTER_MASK (0xffff << 16) 415*143fc13bSJean-Jacques Hiblot 416*143fc13bSJean-Jacques Hiblot /* erst_size bitmasks */ 417*143fc13bSJean-Jacques Hiblot /* Preserve bits 16:31 of erst_size */ 418*143fc13bSJean-Jacques Hiblot #define ERST_SIZE_MASK (0xffff << 16) 419*143fc13bSJean-Jacques Hiblot 420*143fc13bSJean-Jacques Hiblot /* erst_dequeue bitmasks */ 421*143fc13bSJean-Jacques Hiblot /* Dequeue ERST Segment Index (DESI) - Segment number (or alias) 422*143fc13bSJean-Jacques Hiblot * where the current dequeue pointer lies. This is an optional HW hint. 423*143fc13bSJean-Jacques Hiblot */ 424*143fc13bSJean-Jacques Hiblot #define ERST_DESI_MASK (0x7) 425*143fc13bSJean-Jacques Hiblot /* Event Handler Busy (EHB) - is the event ring scheduled to be serviced by 426*143fc13bSJean-Jacques Hiblot * a work queue (or delayed service routine)? 427*143fc13bSJean-Jacques Hiblot */ 428*143fc13bSJean-Jacques Hiblot #define ERST_EHB (1 << 3) 429*143fc13bSJean-Jacques Hiblot #define ERST_PTR_MASK (0xf) 430*143fc13bSJean-Jacques Hiblot 431*143fc13bSJean-Jacques Hiblot /** 432*143fc13bSJean-Jacques Hiblot * struct xhci_run_regs 433*143fc13bSJean-Jacques Hiblot * @microframe_index: MFINDEX - current microframe number 434*143fc13bSJean-Jacques Hiblot * 435*143fc13bSJean-Jacques Hiblot * Section 5.5 Host Controller Runtime Registers: 436*143fc13bSJean-Jacques Hiblot * "Software should read and write these registers using only Dword (32 bit) 437*143fc13bSJean-Jacques Hiblot * or larger accesses" 438*143fc13bSJean-Jacques Hiblot */ 439*143fc13bSJean-Jacques Hiblot struct xhci_run_regs { 440*143fc13bSJean-Jacques Hiblot __le32 microframe_index; 441*143fc13bSJean-Jacques Hiblot __le32 rsvd[7]; 442*143fc13bSJean-Jacques Hiblot struct xhci_intr_reg ir_set[128]; 443*143fc13bSJean-Jacques Hiblot }; 444*143fc13bSJean-Jacques Hiblot 445*143fc13bSJean-Jacques Hiblot /** 446*143fc13bSJean-Jacques Hiblot * struct doorbell_array 447*143fc13bSJean-Jacques Hiblot * 448*143fc13bSJean-Jacques Hiblot * Bits 0 - 7: Endpoint target 449*143fc13bSJean-Jacques Hiblot * Bits 8 - 15: RsvdZ 450*143fc13bSJean-Jacques Hiblot * Bits 16 - 31: Stream ID 451*143fc13bSJean-Jacques Hiblot * 452*143fc13bSJean-Jacques Hiblot * Section 5.6 453*143fc13bSJean-Jacques Hiblot */ 454*143fc13bSJean-Jacques Hiblot struct xhci_doorbell_array { 455*143fc13bSJean-Jacques Hiblot volatile __le32 doorbell[256]; 456*143fc13bSJean-Jacques Hiblot }; 457*143fc13bSJean-Jacques Hiblot 458*143fc13bSJean-Jacques Hiblot #define DB_VALUE(ep, stream) ((((ep) + 1) & 0xff) | ((stream) << 16)) 459*143fc13bSJean-Jacques Hiblot #define DB_VALUE_HOST 0x00000000 460*143fc13bSJean-Jacques Hiblot 461*143fc13bSJean-Jacques Hiblot /** 462*143fc13bSJean-Jacques Hiblot * struct xhci_protocol_caps 463*143fc13bSJean-Jacques Hiblot * @revision: major revision, minor revision, capability ID, 464*143fc13bSJean-Jacques Hiblot * and next capability pointer. 465*143fc13bSJean-Jacques Hiblot * @name_string: Four ASCII characters to say which spec this xHC 466*143fc13bSJean-Jacques Hiblot * follows, typically "USB ". 467*143fc13bSJean-Jacques Hiblot * @port_info: Port offset, count, and protocol-defined information. 468*143fc13bSJean-Jacques Hiblot */ 469*143fc13bSJean-Jacques Hiblot struct xhci_protocol_caps { 470*143fc13bSJean-Jacques Hiblot u32 revision; 471*143fc13bSJean-Jacques Hiblot u32 name_string; 472*143fc13bSJean-Jacques Hiblot u32 port_info; 473*143fc13bSJean-Jacques Hiblot }; 474*143fc13bSJean-Jacques Hiblot 475*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_PORT_MAJOR(x) (((x) >> 24) & 0xff) 476*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_PORT_OFF(x) ((x) & 0xff) 477*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_PORT_COUNT(x) (((x) >> 8) & 0xff) 478*143fc13bSJean-Jacques Hiblot 479*143fc13bSJean-Jacques Hiblot /** 480*143fc13bSJean-Jacques Hiblot * struct xhci_container_ctx 481*143fc13bSJean-Jacques Hiblot * @type: Type of context. Used to calculated offsets to contained contexts. 482*143fc13bSJean-Jacques Hiblot * @size: Size of the context data 483*143fc13bSJean-Jacques Hiblot * @bytes: The raw context data given to HW 484*143fc13bSJean-Jacques Hiblot * 485*143fc13bSJean-Jacques Hiblot * Represents either a Device or Input context. Holds a pointer to the raw 486*143fc13bSJean-Jacques Hiblot * memory used for the context (bytes). 487*143fc13bSJean-Jacques Hiblot */ 488*143fc13bSJean-Jacques Hiblot struct xhci_container_ctx { 489*143fc13bSJean-Jacques Hiblot unsigned type; 490*143fc13bSJean-Jacques Hiblot #define XHCI_CTX_TYPE_DEVICE 0x1 491*143fc13bSJean-Jacques Hiblot #define XHCI_CTX_TYPE_INPUT 0x2 492*143fc13bSJean-Jacques Hiblot 493*143fc13bSJean-Jacques Hiblot int size; 494*143fc13bSJean-Jacques Hiblot u8 *bytes; 495*143fc13bSJean-Jacques Hiblot }; 496*143fc13bSJean-Jacques Hiblot 497*143fc13bSJean-Jacques Hiblot /** 498*143fc13bSJean-Jacques Hiblot * struct xhci_slot_ctx 499*143fc13bSJean-Jacques Hiblot * @dev_info: Route string, device speed, hub info, and last valid endpoint 500*143fc13bSJean-Jacques Hiblot * @dev_info2: Max exit latency for device number, root hub port number 501*143fc13bSJean-Jacques Hiblot * @tt_info: tt_info is used to construct split transaction tokens 502*143fc13bSJean-Jacques Hiblot * @dev_state: slot state and device address 503*143fc13bSJean-Jacques Hiblot * 504*143fc13bSJean-Jacques Hiblot * Slot Context - section 6.2.1.1. This assumes the HC uses 32-byte context 505*143fc13bSJean-Jacques Hiblot * structures. If the HC uses 64-byte contexts, there is an additional 32 bytes 506*143fc13bSJean-Jacques Hiblot * reserved at the end of the slot context for HC internal use. 507*143fc13bSJean-Jacques Hiblot */ 508*143fc13bSJean-Jacques Hiblot struct xhci_slot_ctx { 509*143fc13bSJean-Jacques Hiblot __le32 dev_info; 510*143fc13bSJean-Jacques Hiblot __le32 dev_info2; 511*143fc13bSJean-Jacques Hiblot __le32 tt_info; 512*143fc13bSJean-Jacques Hiblot __le32 dev_state; 513*143fc13bSJean-Jacques Hiblot /* offset 0x10 to 0x1f reserved for HC internal use */ 514*143fc13bSJean-Jacques Hiblot __le32 reserved[4]; 515*143fc13bSJean-Jacques Hiblot }; 516*143fc13bSJean-Jacques Hiblot 517*143fc13bSJean-Jacques Hiblot /* dev_info bitmasks */ 518*143fc13bSJean-Jacques Hiblot /* Route String - 0:19 */ 519*143fc13bSJean-Jacques Hiblot #define ROUTE_STRING_MASK (0xfffff) 520*143fc13bSJean-Jacques Hiblot /* Device speed - values defined by PORTSC Device Speed field - 20:23 */ 521*143fc13bSJean-Jacques Hiblot #define DEV_SPEED (0xf << 20) 522*143fc13bSJean-Jacques Hiblot /* bit 24 reserved */ 523*143fc13bSJean-Jacques Hiblot /* Is this LS/FS device connected through a HS hub? - bit 25 */ 524*143fc13bSJean-Jacques Hiblot #define DEV_MTT (0x1 << 25) 525*143fc13bSJean-Jacques Hiblot /* Set if the device is a hub - bit 26 */ 526*143fc13bSJean-Jacques Hiblot #define DEV_HUB (0x1 << 26) 527*143fc13bSJean-Jacques Hiblot /* Index of the last valid endpoint context in this device context - 27:31 */ 528*143fc13bSJean-Jacques Hiblot #define LAST_CTX_MASK (0x1f << 27) 529*143fc13bSJean-Jacques Hiblot #define LAST_CTX(p) ((p) << 27) 530*143fc13bSJean-Jacques Hiblot #define LAST_CTX_TO_EP_NUM(p) (((p) >> 27) - 1) 531*143fc13bSJean-Jacques Hiblot #define SLOT_FLAG (1 << 0) 532*143fc13bSJean-Jacques Hiblot #define EP0_FLAG (1 << 1) 533*143fc13bSJean-Jacques Hiblot 534*143fc13bSJean-Jacques Hiblot /* dev_info2 bitmasks */ 535*143fc13bSJean-Jacques Hiblot /* Max Exit Latency (ms) - worst case time to wake up all links in dev path */ 536*143fc13bSJean-Jacques Hiblot #define MAX_EXIT (0xffff) 537*143fc13bSJean-Jacques Hiblot /* Root hub port number that is needed to access the USB device */ 538*143fc13bSJean-Jacques Hiblot #define ROOT_HUB_PORT(p) (((p) & 0xff) << 16) 539*143fc13bSJean-Jacques Hiblot #define ROOT_HUB_PORT_MASK (0xff) 540*143fc13bSJean-Jacques Hiblot #define ROOT_HUB_PORT_SHIFT (16) 541*143fc13bSJean-Jacques Hiblot #define DEVINFO_TO_ROOT_HUB_PORT(p) (((p) >> 16) & 0xff) 542*143fc13bSJean-Jacques Hiblot /* Maximum number of ports under a hub device */ 543*143fc13bSJean-Jacques Hiblot #define XHCI_MAX_PORTS(p) (((p) & 0xff) << 24) 544*143fc13bSJean-Jacques Hiblot 545*143fc13bSJean-Jacques Hiblot /* tt_info bitmasks */ 546*143fc13bSJean-Jacques Hiblot /* 547*143fc13bSJean-Jacques Hiblot * TT Hub Slot ID - for low or full speed devices attached to a high-speed hub 548*143fc13bSJean-Jacques Hiblot * The Slot ID of the hub that isolates the high speed signaling from 549*143fc13bSJean-Jacques Hiblot * this low or full-speed device. '0' if attached to root hub port. 550*143fc13bSJean-Jacques Hiblot */ 551*143fc13bSJean-Jacques Hiblot #define TT_SLOT(p) (((p) & 0xff) << 0) 552*143fc13bSJean-Jacques Hiblot /* 553*143fc13bSJean-Jacques Hiblot * The number of the downstream facing port of the high-speed hub 554*143fc13bSJean-Jacques Hiblot * '0' if the device is not low or full speed. 555*143fc13bSJean-Jacques Hiblot */ 556*143fc13bSJean-Jacques Hiblot #define TT_PORT(p) (((p) & 0xff) << 8) 557*143fc13bSJean-Jacques Hiblot #define TT_THINK_TIME(p) (((p) & 0x3) << 16) 558*143fc13bSJean-Jacques Hiblot 559*143fc13bSJean-Jacques Hiblot /* dev_state bitmasks */ 560*143fc13bSJean-Jacques Hiblot /* USB device address - assigned by the HC */ 561*143fc13bSJean-Jacques Hiblot #define DEV_ADDR_MASK (0xff) 562*143fc13bSJean-Jacques Hiblot /* bits 8:26 reserved */ 563*143fc13bSJean-Jacques Hiblot /* Slot state */ 564*143fc13bSJean-Jacques Hiblot #define SLOT_STATE (0x1f << 27) 565*143fc13bSJean-Jacques Hiblot #define GET_SLOT_STATE(p) (((p) & (0x1f << 27)) >> 27) 566*143fc13bSJean-Jacques Hiblot 567*143fc13bSJean-Jacques Hiblot #define SLOT_STATE_DISABLED 0 568*143fc13bSJean-Jacques Hiblot #define SLOT_STATE_ENABLED SLOT_STATE_DISABLED 569*143fc13bSJean-Jacques Hiblot #define SLOT_STATE_DEFAULT 1 570*143fc13bSJean-Jacques Hiblot #define SLOT_STATE_ADDRESSED 2 571*143fc13bSJean-Jacques Hiblot #define SLOT_STATE_CONFIGURED 3 572*143fc13bSJean-Jacques Hiblot 573*143fc13bSJean-Jacques Hiblot /** 574*143fc13bSJean-Jacques Hiblot * struct xhci_ep_ctx 575*143fc13bSJean-Jacques Hiblot * @ep_info: endpoint state, streams, mult, and interval information. 576*143fc13bSJean-Jacques Hiblot * @ep_info2: information on endpoint type, max packet size, max burst size, 577*143fc13bSJean-Jacques Hiblot * error count, and whether the HC will force an event for all 578*143fc13bSJean-Jacques Hiblot * transactions. 579*143fc13bSJean-Jacques Hiblot * @deq: 64-bit ring dequeue pointer address. If the endpoint only 580*143fc13bSJean-Jacques Hiblot * defines one stream, this points to the endpoint transfer ring. 581*143fc13bSJean-Jacques Hiblot * Otherwise, it points to a stream context array, which has a 582*143fc13bSJean-Jacques Hiblot * ring pointer for each flow. 583*143fc13bSJean-Jacques Hiblot * @tx_info: 584*143fc13bSJean-Jacques Hiblot * Average TRB lengths for the endpoint ring and 585*143fc13bSJean-Jacques Hiblot * max payload within an Endpoint Service Interval Time (ESIT). 586*143fc13bSJean-Jacques Hiblot * 587*143fc13bSJean-Jacques Hiblot * Endpoint Context - section 6.2.1.2.This assumes the HC uses 32-byte context 588*143fc13bSJean-Jacques Hiblot * structures.If the HC uses 64-byte contexts, there is an additional 32 bytes 589*143fc13bSJean-Jacques Hiblot * reserved at the end of the endpoint context for HC internal use. 590*143fc13bSJean-Jacques Hiblot */ 591*143fc13bSJean-Jacques Hiblot struct xhci_ep_ctx { 592*143fc13bSJean-Jacques Hiblot __le32 ep_info; 593*143fc13bSJean-Jacques Hiblot __le32 ep_info2; 594*143fc13bSJean-Jacques Hiblot __le64 deq; 595*143fc13bSJean-Jacques Hiblot __le32 tx_info; 596*143fc13bSJean-Jacques Hiblot /* offset 0x14 - 0x1f reserved for HC internal use */ 597*143fc13bSJean-Jacques Hiblot __le32 reserved[3]; 598*143fc13bSJean-Jacques Hiblot }; 599*143fc13bSJean-Jacques Hiblot 600*143fc13bSJean-Jacques Hiblot /* ep_info bitmasks */ 601*143fc13bSJean-Jacques Hiblot /* 602*143fc13bSJean-Jacques Hiblot * Endpoint State - bits 0:2 603*143fc13bSJean-Jacques Hiblot * 0 - disabled 604*143fc13bSJean-Jacques Hiblot * 1 - running 605*143fc13bSJean-Jacques Hiblot * 2 - halted due to halt condition - ok to manipulate endpoint ring 606*143fc13bSJean-Jacques Hiblot * 3 - stopped 607*143fc13bSJean-Jacques Hiblot * 4 - TRB error 608*143fc13bSJean-Jacques Hiblot * 5-7 - reserved 609*143fc13bSJean-Jacques Hiblot */ 610*143fc13bSJean-Jacques Hiblot #define EP_STATE_MASK (0xf) 611*143fc13bSJean-Jacques Hiblot #define EP_STATE_DISABLED 0 612*143fc13bSJean-Jacques Hiblot #define EP_STATE_RUNNING 1 613*143fc13bSJean-Jacques Hiblot #define EP_STATE_HALTED 2 614*143fc13bSJean-Jacques Hiblot #define EP_STATE_STOPPED 3 615*143fc13bSJean-Jacques Hiblot #define EP_STATE_ERROR 4 616*143fc13bSJean-Jacques Hiblot /* Mult - Max number of burtst within an interval, in EP companion desc. */ 617*143fc13bSJean-Jacques Hiblot #define EP_MULT(p) (((p) & 0x3) << 8) 618*143fc13bSJean-Jacques Hiblot #define CTX_TO_EP_MULT(p) (((p) >> 8) & 0x3) 619*143fc13bSJean-Jacques Hiblot /* bits 10:14 are Max Primary Streams */ 620*143fc13bSJean-Jacques Hiblot /* bit 15 is Linear Stream Array */ 621*143fc13bSJean-Jacques Hiblot /* Interval - period between requests to an endpoint - 125u increments. */ 622*143fc13bSJean-Jacques Hiblot #define EP_INTERVAL(p) (((p) & 0xff) << 16) 623*143fc13bSJean-Jacques Hiblot #define EP_INTERVAL_TO_UFRAMES(p) (1 << (((p) >> 16) & 0xff)) 624*143fc13bSJean-Jacques Hiblot #define CTX_TO_EP_INTERVAL(p) (((p) >> 16) & 0xff) 625*143fc13bSJean-Jacques Hiblot #define EP_MAXPSTREAMS_MASK (0x1f << 10) 626*143fc13bSJean-Jacques Hiblot #define EP_MAXPSTREAMS(p) (((p) << 10) & EP_MAXPSTREAMS_MASK) 627*143fc13bSJean-Jacques Hiblot /* Endpoint is set up with a Linear Stream Array (vs. Secondary Stream Array) */ 628*143fc13bSJean-Jacques Hiblot #define EP_HAS_LSA (1 << 15) 629*143fc13bSJean-Jacques Hiblot 630*143fc13bSJean-Jacques Hiblot /* ep_info2 bitmasks */ 631*143fc13bSJean-Jacques Hiblot /* 632*143fc13bSJean-Jacques Hiblot * Force Event - generate transfer events for all TRBs for this endpoint 633*143fc13bSJean-Jacques Hiblot * This will tell the HC to ignore the IOC and ISP flags (for debugging only). 634*143fc13bSJean-Jacques Hiblot */ 635*143fc13bSJean-Jacques Hiblot #define FORCE_EVENT (0x1) 636*143fc13bSJean-Jacques Hiblot #define ERROR_COUNT(p) (((p) & 0x3) << 1) 637*143fc13bSJean-Jacques Hiblot #define ERROR_COUNT_SHIFT (1) 638*143fc13bSJean-Jacques Hiblot #define ERROR_COUNT_MASK (0x3) 639*143fc13bSJean-Jacques Hiblot #define CTX_TO_EP_TYPE(p) (((p) >> 3) & 0x7) 640*143fc13bSJean-Jacques Hiblot #define EP_TYPE(p) ((p) << 3) 641*143fc13bSJean-Jacques Hiblot #define EP_TYPE_SHIFT (3) 642*143fc13bSJean-Jacques Hiblot #define ISOC_OUT_EP 1 643*143fc13bSJean-Jacques Hiblot #define BULK_OUT_EP 2 644*143fc13bSJean-Jacques Hiblot #define INT_OUT_EP 3 645*143fc13bSJean-Jacques Hiblot #define CTRL_EP 4 646*143fc13bSJean-Jacques Hiblot #define ISOC_IN_EP 5 647*143fc13bSJean-Jacques Hiblot #define BULK_IN_EP 6 648*143fc13bSJean-Jacques Hiblot #define INT_IN_EP 7 649*143fc13bSJean-Jacques Hiblot /* bit 6 reserved */ 650*143fc13bSJean-Jacques Hiblot /* bit 7 is Host Initiate Disable - for disabling stream selection */ 651*143fc13bSJean-Jacques Hiblot #define MAX_BURST(p) (((p)&0xff) << 8) 652*143fc13bSJean-Jacques Hiblot #define MAX_BURST_MASK (0xff) 653*143fc13bSJean-Jacques Hiblot #define MAX_BURST_SHIFT (8) 654*143fc13bSJean-Jacques Hiblot #define CTX_TO_MAX_BURST(p) (((p) >> 8) & 0xff) 655*143fc13bSJean-Jacques Hiblot #define MAX_PACKET(p) (((p)&0xffff) << 16) 656*143fc13bSJean-Jacques Hiblot #define MAX_PACKET_MASK (0xffff) 657*143fc13bSJean-Jacques Hiblot #define MAX_PACKET_DECODED(p) (((p) >> 16) & 0xffff) 658*143fc13bSJean-Jacques Hiblot #define MAX_PACKET_SHIFT (16) 659*143fc13bSJean-Jacques Hiblot 660*143fc13bSJean-Jacques Hiblot /* Get max packet size from ep desc. Bit 10..0 specify the max packet size. 661*143fc13bSJean-Jacques Hiblot * USB2.0 spec 9.6.6. 662*143fc13bSJean-Jacques Hiblot */ 663*143fc13bSJean-Jacques Hiblot #define GET_MAX_PACKET(p) ((p) & 0x7ff) 664*143fc13bSJean-Jacques Hiblot 665*143fc13bSJean-Jacques Hiblot /* tx_info bitmasks */ 666*143fc13bSJean-Jacques Hiblot #define EP_AVG_TRB_LENGTH(p) ((p) & 0xffff) 667*143fc13bSJean-Jacques Hiblot #define EP_MAX_ESIT_PAYLOAD_LO(p) (((p) & 0xffff) << 16) 668*143fc13bSJean-Jacques Hiblot #define EP_MAX_ESIT_PAYLOAD_HI(p) ((((p) >> 16) & 0xff) << 24) 669*143fc13bSJean-Jacques Hiblot #define CTX_TO_MAX_ESIT_PAYLOAD(p) (((p) >> 16) & 0xffff) 670*143fc13bSJean-Jacques Hiblot 671*143fc13bSJean-Jacques Hiblot /* deq bitmasks */ 672*143fc13bSJean-Jacques Hiblot #define EP_CTX_CYCLE_MASK (1 << 0) 673*143fc13bSJean-Jacques Hiblot 674*143fc13bSJean-Jacques Hiblot 675*143fc13bSJean-Jacques Hiblot /** 676*143fc13bSJean-Jacques Hiblot * struct xhci_input_control_context 677*143fc13bSJean-Jacques Hiblot * Input control context; see section 6.2.5. 678*143fc13bSJean-Jacques Hiblot * 679*143fc13bSJean-Jacques Hiblot * @drop_context: set the bit of the endpoint context you want to disable 680*143fc13bSJean-Jacques Hiblot * @add_context: set the bit of the endpoint context you want to enable 681*143fc13bSJean-Jacques Hiblot */ 682*143fc13bSJean-Jacques Hiblot struct xhci_input_control_ctx { 683*143fc13bSJean-Jacques Hiblot volatile __le32 drop_flags; 684*143fc13bSJean-Jacques Hiblot volatile __le32 add_flags; 685*143fc13bSJean-Jacques Hiblot __le32 rsvd2[6]; 686*143fc13bSJean-Jacques Hiblot }; 687*143fc13bSJean-Jacques Hiblot 688*143fc13bSJean-Jacques Hiblot 689*143fc13bSJean-Jacques Hiblot /** 690*143fc13bSJean-Jacques Hiblot * struct xhci_device_context_array 691*143fc13bSJean-Jacques Hiblot * @dev_context_ptr array of 64-bit DMA addresses for device contexts 692*143fc13bSJean-Jacques Hiblot */ 693*143fc13bSJean-Jacques Hiblot struct xhci_device_context_array { 694*143fc13bSJean-Jacques Hiblot /* 64-bit device addresses; we only write 32-bit addresses */ 695*143fc13bSJean-Jacques Hiblot __le64 dev_context_ptrs[MAX_HC_SLOTS]; 696*143fc13bSJean-Jacques Hiblot }; 697*143fc13bSJean-Jacques Hiblot /* TODO: write function to set the 64-bit device DMA address */ 698*143fc13bSJean-Jacques Hiblot /* 699*143fc13bSJean-Jacques Hiblot * TODO: change this to be dynamically sized at HC mem init time since the HC 700*143fc13bSJean-Jacques Hiblot * might not be able to handle the maximum number of devices possible. 701*143fc13bSJean-Jacques Hiblot */ 702*143fc13bSJean-Jacques Hiblot 703*143fc13bSJean-Jacques Hiblot 704*143fc13bSJean-Jacques Hiblot struct xhci_transfer_event { 705*143fc13bSJean-Jacques Hiblot /* 64-bit buffer address, or immediate data */ 706*143fc13bSJean-Jacques Hiblot __le64 buffer; 707*143fc13bSJean-Jacques Hiblot __le32 transfer_len; 708*143fc13bSJean-Jacques Hiblot /* This field is interpreted differently based on the type of TRB */ 709*143fc13bSJean-Jacques Hiblot volatile __le32 flags; 710*143fc13bSJean-Jacques Hiblot }; 711*143fc13bSJean-Jacques Hiblot 712*143fc13bSJean-Jacques Hiblot /* Transfer event TRB length bit mask */ 713*143fc13bSJean-Jacques Hiblot /* bits 0:23 */ 714*143fc13bSJean-Jacques Hiblot #define EVENT_TRB_LEN(p) ((p) & 0xffffff) 715*143fc13bSJean-Jacques Hiblot 716*143fc13bSJean-Jacques Hiblot /** Transfer Event bit fields **/ 717*143fc13bSJean-Jacques Hiblot #define TRB_TO_EP_ID(p) (((p) >> 16) & 0x1f) 718*143fc13bSJean-Jacques Hiblot 719*143fc13bSJean-Jacques Hiblot /* Completion Code - only applicable for some types of TRBs */ 720*143fc13bSJean-Jacques Hiblot #define COMP_CODE_MASK (0xff << 24) 721*143fc13bSJean-Jacques Hiblot #define COMP_CODE_SHIFT (24) 722*143fc13bSJean-Jacques Hiblot #define GET_COMP_CODE(p) (((p) & COMP_CODE_MASK) >> 24) 723*143fc13bSJean-Jacques Hiblot 724*143fc13bSJean-Jacques Hiblot typedef enum { 725*143fc13bSJean-Jacques Hiblot COMP_SUCCESS = 1, 726*143fc13bSJean-Jacques Hiblot /* Data Buffer Error */ 727*143fc13bSJean-Jacques Hiblot COMP_DB_ERR, /* 2 */ 728*143fc13bSJean-Jacques Hiblot /* Babble Detected Error */ 729*143fc13bSJean-Jacques Hiblot COMP_BABBLE, /* 3 */ 730*143fc13bSJean-Jacques Hiblot /* USB Transaction Error */ 731*143fc13bSJean-Jacques Hiblot COMP_TX_ERR, /* 4 */ 732*143fc13bSJean-Jacques Hiblot /* TRB Error - some TRB field is invalid */ 733*143fc13bSJean-Jacques Hiblot COMP_TRB_ERR, /* 5 */ 734*143fc13bSJean-Jacques Hiblot /* Stall Error - USB device is stalled */ 735*143fc13bSJean-Jacques Hiblot COMP_STALL, /* 6 */ 736*143fc13bSJean-Jacques Hiblot /* Resource Error - HC doesn't have memory for that device configuration */ 737*143fc13bSJean-Jacques Hiblot COMP_ENOMEM, /* 7 */ 738*143fc13bSJean-Jacques Hiblot /* Bandwidth Error - not enough room in schedule for this dev config */ 739*143fc13bSJean-Jacques Hiblot COMP_BW_ERR, /* 8 */ 740*143fc13bSJean-Jacques Hiblot /* No Slots Available Error - HC ran out of device slots */ 741*143fc13bSJean-Jacques Hiblot COMP_ENOSLOTS, /* 9 */ 742*143fc13bSJean-Jacques Hiblot /* Invalid Stream Type Error */ 743*143fc13bSJean-Jacques Hiblot COMP_STREAM_ERR, /* 10 */ 744*143fc13bSJean-Jacques Hiblot /* Slot Not Enabled Error - doorbell rung for disabled device slot */ 745*143fc13bSJean-Jacques Hiblot COMP_EBADSLT, /* 11 */ 746*143fc13bSJean-Jacques Hiblot /* Endpoint Not Enabled Error */ 747*143fc13bSJean-Jacques Hiblot COMP_EBADEP,/* 12 */ 748*143fc13bSJean-Jacques Hiblot /* Short Packet */ 749*143fc13bSJean-Jacques Hiblot COMP_SHORT_TX, /* 13 */ 750*143fc13bSJean-Jacques Hiblot /* Ring Underrun - doorbell rung for an empty isoc OUT ep ring */ 751*143fc13bSJean-Jacques Hiblot COMP_UNDERRUN, /* 14 */ 752*143fc13bSJean-Jacques Hiblot /* Ring Overrun - isoc IN ep ring is empty when ep is scheduled to RX */ 753*143fc13bSJean-Jacques Hiblot COMP_OVERRUN, /* 15 */ 754*143fc13bSJean-Jacques Hiblot /* Virtual Function Event Ring Full Error */ 755*143fc13bSJean-Jacques Hiblot COMP_VF_FULL, /* 16 */ 756*143fc13bSJean-Jacques Hiblot /* Parameter Error - Context parameter is invalid */ 757*143fc13bSJean-Jacques Hiblot COMP_EINVAL, /* 17 */ 758*143fc13bSJean-Jacques Hiblot /* Bandwidth Overrun Error - isoc ep exceeded its allocated bandwidth */ 759*143fc13bSJean-Jacques Hiblot COMP_BW_OVER,/* 18 */ 760*143fc13bSJean-Jacques Hiblot /* Context State Error - illegal context state transition requested */ 761*143fc13bSJean-Jacques Hiblot COMP_CTX_STATE,/* 19 */ 762*143fc13bSJean-Jacques Hiblot /* No Ping Response Error - HC didn't get PING_RESPONSE in time to TX */ 763*143fc13bSJean-Jacques Hiblot COMP_PING_ERR,/* 20 */ 764*143fc13bSJean-Jacques Hiblot /* Event Ring is full */ 765*143fc13bSJean-Jacques Hiblot COMP_ER_FULL,/* 21 */ 766*143fc13bSJean-Jacques Hiblot /* Incompatible Device Error */ 767*143fc13bSJean-Jacques Hiblot COMP_DEV_ERR,/* 22 */ 768*143fc13bSJean-Jacques Hiblot /* Missed Service Error - HC couldn't service an isoc ep within interval */ 769*143fc13bSJean-Jacques Hiblot COMP_MISSED_INT,/* 23 */ 770*143fc13bSJean-Jacques Hiblot /* Successfully stopped command ring */ 771*143fc13bSJean-Jacques Hiblot COMP_CMD_STOP, /* 24 */ 772*143fc13bSJean-Jacques Hiblot /* Successfully aborted current command and stopped command ring */ 773*143fc13bSJean-Jacques Hiblot COMP_CMD_ABORT, /* 25 */ 774*143fc13bSJean-Jacques Hiblot /* Stopped - transfer was terminated by a stop endpoint command */ 775*143fc13bSJean-Jacques Hiblot COMP_STOP,/* 26 */ 776*143fc13bSJean-Jacques Hiblot /* Same as COMP_EP_STOPPED, but the transferred length in the event 777*143fc13bSJean-Jacques Hiblot * is invalid */ 778*143fc13bSJean-Jacques Hiblot COMP_STOP_INVAL, /* 27*/ 779*143fc13bSJean-Jacques Hiblot /* Control Abort Error - Debug Capability - control pipe aborted */ 780*143fc13bSJean-Jacques Hiblot COMP_DBG_ABORT, /* 28 */ 781*143fc13bSJean-Jacques Hiblot /* Max Exit Latency Too Large Error */ 782*143fc13bSJean-Jacques Hiblot COMP_MEL_ERR,/* 29 */ 783*143fc13bSJean-Jacques Hiblot /* TRB type 30 reserved */ 784*143fc13bSJean-Jacques Hiblot /* Isoc Buffer Overrun - an isoc IN ep sent more data than could fit in TD */ 785*143fc13bSJean-Jacques Hiblot COMP_BUFF_OVER = 31, 786*143fc13bSJean-Jacques Hiblot /* Event Lost Error - xHC has an "internal event overrun condition" */ 787*143fc13bSJean-Jacques Hiblot COMP_ISSUES, /* 32 */ 788*143fc13bSJean-Jacques Hiblot /* Undefined Error - reported when other error codes don't apply */ 789*143fc13bSJean-Jacques Hiblot COMP_UNKNOWN, /* 33 */ 790*143fc13bSJean-Jacques Hiblot /* Invalid Stream ID Error */ 791*143fc13bSJean-Jacques Hiblot COMP_STRID_ERR, /* 34 */ 792*143fc13bSJean-Jacques Hiblot /* Secondary Bandwidth Error - may be returned by a Configure Endpoint cmd */ 793*143fc13bSJean-Jacques Hiblot COMP_2ND_BW_ERR, /* 35 */ 794*143fc13bSJean-Jacques Hiblot /* Split Transaction Error */ 795*143fc13bSJean-Jacques Hiblot COMP_SPLIT_ERR /* 36 */ 796*143fc13bSJean-Jacques Hiblot 797*143fc13bSJean-Jacques Hiblot } xhci_comp_code; 798*143fc13bSJean-Jacques Hiblot 799*143fc13bSJean-Jacques Hiblot struct xhci_link_trb { 800*143fc13bSJean-Jacques Hiblot /* 64-bit segment pointer*/ 801*143fc13bSJean-Jacques Hiblot volatile __le64 segment_ptr; 802*143fc13bSJean-Jacques Hiblot volatile __le32 intr_target; 803*143fc13bSJean-Jacques Hiblot volatile __le32 control; 804*143fc13bSJean-Jacques Hiblot }; 805*143fc13bSJean-Jacques Hiblot 806*143fc13bSJean-Jacques Hiblot /* control bitfields */ 807*143fc13bSJean-Jacques Hiblot #define LINK_TOGGLE (0x1 << 1) 808*143fc13bSJean-Jacques Hiblot 809*143fc13bSJean-Jacques Hiblot /* Command completion event TRB */ 810*143fc13bSJean-Jacques Hiblot struct xhci_event_cmd { 811*143fc13bSJean-Jacques Hiblot /* Pointer to command TRB, or the value passed by the event data trb */ 812*143fc13bSJean-Jacques Hiblot volatile __le64 cmd_trb; 813*143fc13bSJean-Jacques Hiblot volatile __le32 status; 814*143fc13bSJean-Jacques Hiblot volatile __le32 flags; 815*143fc13bSJean-Jacques Hiblot }; 816*143fc13bSJean-Jacques Hiblot 817*143fc13bSJean-Jacques Hiblot /* flags bitmasks */ 818*143fc13bSJean-Jacques Hiblot /* bits 16:23 are the virtual function ID */ 819*143fc13bSJean-Jacques Hiblot /* bits 24:31 are the slot ID */ 820*143fc13bSJean-Jacques Hiblot #define TRB_TO_SLOT_ID(p) (((p) & (0xff << 24)) >> 24) 821*143fc13bSJean-Jacques Hiblot #define TRB_TO_SLOT_ID_SHIFT (24) 822*143fc13bSJean-Jacques Hiblot #define TRB_TO_SLOT_ID_MASK (0xff << TRB_TO_SLOT_ID_SHIFT) 823*143fc13bSJean-Jacques Hiblot #define SLOT_ID_FOR_TRB(p) (((p) & 0xff) << 24) 824*143fc13bSJean-Jacques Hiblot #define SLOT_ID_FOR_TRB_MASK (0xff) 825*143fc13bSJean-Jacques Hiblot #define SLOT_ID_FOR_TRB_SHIFT (24) 826*143fc13bSJean-Jacques Hiblot 827*143fc13bSJean-Jacques Hiblot /* Stop Endpoint TRB - ep_index to endpoint ID for this TRB */ 828*143fc13bSJean-Jacques Hiblot #define TRB_TO_EP_INDEX(p) ((((p) & (0x1f << 16)) >> 16) - 1) 829*143fc13bSJean-Jacques Hiblot #define EP_ID_FOR_TRB(p) ((((p) + 1) & 0x1f) << 16) 830*143fc13bSJean-Jacques Hiblot 831*143fc13bSJean-Jacques Hiblot #define SUSPEND_PORT_FOR_TRB(p) (((p) & 1) << 23) 832*143fc13bSJean-Jacques Hiblot #define TRB_TO_SUSPEND_PORT(p) (((p) & (1 << 23)) >> 23) 833*143fc13bSJean-Jacques Hiblot #define LAST_EP_INDEX 30 834*143fc13bSJean-Jacques Hiblot 835*143fc13bSJean-Jacques Hiblot /* Set TR Dequeue Pointer command TRB fields */ 836*143fc13bSJean-Jacques Hiblot #define TRB_TO_STREAM_ID(p) ((((p) & (0xffff << 16)) >> 16)) 837*143fc13bSJean-Jacques Hiblot #define STREAM_ID_FOR_TRB(p) ((((p)) & 0xffff) << 16) 838*143fc13bSJean-Jacques Hiblot 839*143fc13bSJean-Jacques Hiblot 840*143fc13bSJean-Jacques Hiblot /* Port Status Change Event TRB fields */ 841*143fc13bSJean-Jacques Hiblot /* Port ID - bits 31:24 */ 842*143fc13bSJean-Jacques Hiblot #define GET_PORT_ID(p) (((p) & (0xff << 24)) >> 24) 843*143fc13bSJean-Jacques Hiblot #define PORT_ID_SHIFT (24) 844*143fc13bSJean-Jacques Hiblot #define PORT_ID_MASK (0xff << PORT_ID_SHIFT) 845*143fc13bSJean-Jacques Hiblot 846*143fc13bSJean-Jacques Hiblot /* Normal TRB fields */ 847*143fc13bSJean-Jacques Hiblot /* transfer_len bitmasks - bits 0:16 */ 848*143fc13bSJean-Jacques Hiblot #define TRB_LEN(p) ((p) & 0x1ffff) 849*143fc13bSJean-Jacques Hiblot #define TRB_LEN_MASK (0x1ffff) 850*143fc13bSJean-Jacques Hiblot /* Interrupter Target - which MSI-X vector to target the completion event at */ 851*143fc13bSJean-Jacques Hiblot #define TRB_INTR_TARGET_SHIFT (22) 852*143fc13bSJean-Jacques Hiblot #define TRB_INTR_TARGET_MASK (0x3ff) 853*143fc13bSJean-Jacques Hiblot #define TRB_INTR_TARGET(p) (((p) & 0x3ff) << 22) 854*143fc13bSJean-Jacques Hiblot #define GET_INTR_TARGET(p) (((p) >> 22) & 0x3ff) 855*143fc13bSJean-Jacques Hiblot #define TRB_TBC(p) (((p) & 0x3) << 7) 856*143fc13bSJean-Jacques Hiblot #define TRB_TLBPC(p) (((p) & 0xf) << 16) 857*143fc13bSJean-Jacques Hiblot 858*143fc13bSJean-Jacques Hiblot /* Cycle bit - indicates TRB ownership by HC or HCD */ 859*143fc13bSJean-Jacques Hiblot #define TRB_CYCLE (1<<0) 860*143fc13bSJean-Jacques Hiblot /* 861*143fc13bSJean-Jacques Hiblot * Force next event data TRB to be evaluated before task switch. 862*143fc13bSJean-Jacques Hiblot * Used to pass OS data back after a TD completes. 863*143fc13bSJean-Jacques Hiblot */ 864*143fc13bSJean-Jacques Hiblot #define TRB_ENT (1<<1) 865*143fc13bSJean-Jacques Hiblot /* Interrupt on short packet */ 866*143fc13bSJean-Jacques Hiblot #define TRB_ISP (1<<2) 867*143fc13bSJean-Jacques Hiblot /* Set PCIe no snoop attribute */ 868*143fc13bSJean-Jacques Hiblot #define TRB_NO_SNOOP (1<<3) 869*143fc13bSJean-Jacques Hiblot /* Chain multiple TRBs into a TD */ 870*143fc13bSJean-Jacques Hiblot #define TRB_CHAIN (1<<4) 871*143fc13bSJean-Jacques Hiblot /* Interrupt on completion */ 872*143fc13bSJean-Jacques Hiblot #define TRB_IOC (1<<5) 873*143fc13bSJean-Jacques Hiblot /* The buffer pointer contains immediate data */ 874*143fc13bSJean-Jacques Hiblot #define TRB_IDT (1<<6) 875*143fc13bSJean-Jacques Hiblot 876*143fc13bSJean-Jacques Hiblot /* Block Event Interrupt */ 877*143fc13bSJean-Jacques Hiblot #define TRB_BEI (1<<9) 878*143fc13bSJean-Jacques Hiblot 879*143fc13bSJean-Jacques Hiblot /* Control transfer TRB specific fields */ 880*143fc13bSJean-Jacques Hiblot #define TRB_DIR_IN (1<<16) 881*143fc13bSJean-Jacques Hiblot #define TRB_TX_TYPE(p) ((p) << 16) 882*143fc13bSJean-Jacques Hiblot #define TRB_TX_TYPE_SHIFT (16) 883*143fc13bSJean-Jacques Hiblot #define TRB_DATA_OUT 2 884*143fc13bSJean-Jacques Hiblot #define TRB_DATA_IN 3 885*143fc13bSJean-Jacques Hiblot 886*143fc13bSJean-Jacques Hiblot /* Isochronous TRB specific fields */ 887*143fc13bSJean-Jacques Hiblot #define TRB_SIA (1 << 31) 888*143fc13bSJean-Jacques Hiblot 889*143fc13bSJean-Jacques Hiblot struct xhci_generic_trb { 890*143fc13bSJean-Jacques Hiblot volatile __le32 field[4]; 891*143fc13bSJean-Jacques Hiblot }; 892*143fc13bSJean-Jacques Hiblot 893*143fc13bSJean-Jacques Hiblot union xhci_trb { 894*143fc13bSJean-Jacques Hiblot struct xhci_link_trb link; 895*143fc13bSJean-Jacques Hiblot struct xhci_transfer_event trans_event; 896*143fc13bSJean-Jacques Hiblot struct xhci_event_cmd event_cmd; 897*143fc13bSJean-Jacques Hiblot struct xhci_generic_trb generic; 898*143fc13bSJean-Jacques Hiblot }; 899*143fc13bSJean-Jacques Hiblot 900*143fc13bSJean-Jacques Hiblot /* TRB bit mask */ 901*143fc13bSJean-Jacques Hiblot #define TRB_TYPE_BITMASK (0xfc00) 902*143fc13bSJean-Jacques Hiblot #define TRB_TYPE(p) ((p) << 10) 903*143fc13bSJean-Jacques Hiblot #define TRB_TYPE_SHIFT (10) 904*143fc13bSJean-Jacques Hiblot #define TRB_FIELD_TO_TYPE(p) (((p) & TRB_TYPE_BITMASK) >> 10) 905*143fc13bSJean-Jacques Hiblot 906*143fc13bSJean-Jacques Hiblot /* TRB type IDs */ 907*143fc13bSJean-Jacques Hiblot typedef enum { 908*143fc13bSJean-Jacques Hiblot /* bulk, interrupt, isoc scatter/gather, and control data stage */ 909*143fc13bSJean-Jacques Hiblot TRB_NORMAL = 1, 910*143fc13bSJean-Jacques Hiblot /* setup stage for control transfers */ 911*143fc13bSJean-Jacques Hiblot TRB_SETUP, /* 2 */ 912*143fc13bSJean-Jacques Hiblot /* data stage for control transfers */ 913*143fc13bSJean-Jacques Hiblot TRB_DATA, /* 3 */ 914*143fc13bSJean-Jacques Hiblot /* status stage for control transfers */ 915*143fc13bSJean-Jacques Hiblot TRB_STATUS, /* 4 */ 916*143fc13bSJean-Jacques Hiblot /* isoc transfers */ 917*143fc13bSJean-Jacques Hiblot TRB_ISOC, /* 5 */ 918*143fc13bSJean-Jacques Hiblot /* TRB for linking ring segments */ 919*143fc13bSJean-Jacques Hiblot TRB_LINK, /* 6 */ 920*143fc13bSJean-Jacques Hiblot /* TRB for EVENT DATA */ 921*143fc13bSJean-Jacques Hiblot TRB_EVENT_DATA, /* 7 */ 922*143fc13bSJean-Jacques Hiblot /* Transfer Ring No-op (not for the command ring) */ 923*143fc13bSJean-Jacques Hiblot TRB_TR_NOOP, /* 8 */ 924*143fc13bSJean-Jacques Hiblot /* Command TRBs */ 925*143fc13bSJean-Jacques Hiblot /* Enable Slot Command */ 926*143fc13bSJean-Jacques Hiblot TRB_ENABLE_SLOT, /* 9 */ 927*143fc13bSJean-Jacques Hiblot /* Disable Slot Command */ 928*143fc13bSJean-Jacques Hiblot TRB_DISABLE_SLOT, /* 10 */ 929*143fc13bSJean-Jacques Hiblot /* Address Device Command */ 930*143fc13bSJean-Jacques Hiblot TRB_ADDR_DEV, /* 11 */ 931*143fc13bSJean-Jacques Hiblot /* Configure Endpoint Command */ 932*143fc13bSJean-Jacques Hiblot TRB_CONFIG_EP, /* 12 */ 933*143fc13bSJean-Jacques Hiblot /* Evaluate Context Command */ 934*143fc13bSJean-Jacques Hiblot TRB_EVAL_CONTEXT, /* 13 */ 935*143fc13bSJean-Jacques Hiblot /* Reset Endpoint Command */ 936*143fc13bSJean-Jacques Hiblot TRB_RESET_EP, /* 14 */ 937*143fc13bSJean-Jacques Hiblot /* Stop Transfer Ring Command */ 938*143fc13bSJean-Jacques Hiblot TRB_STOP_RING, /* 15 */ 939*143fc13bSJean-Jacques Hiblot /* Set Transfer Ring Dequeue Pointer Command */ 940*143fc13bSJean-Jacques Hiblot TRB_SET_DEQ, /* 16 */ 941*143fc13bSJean-Jacques Hiblot /* Reset Device Command */ 942*143fc13bSJean-Jacques Hiblot TRB_RESET_DEV, /* 17 */ 943*143fc13bSJean-Jacques Hiblot /* Force Event Command (opt) */ 944*143fc13bSJean-Jacques Hiblot TRB_FORCE_EVENT, /* 18 */ 945*143fc13bSJean-Jacques Hiblot /* Negotiate Bandwidth Command (opt) */ 946*143fc13bSJean-Jacques Hiblot TRB_NEG_BANDWIDTH, /* 19 */ 947*143fc13bSJean-Jacques Hiblot /* Set Latency Tolerance Value Command (opt) */ 948*143fc13bSJean-Jacques Hiblot TRB_SET_LT, /* 20 */ 949*143fc13bSJean-Jacques Hiblot /* Get port bandwidth Command */ 950*143fc13bSJean-Jacques Hiblot TRB_GET_BW, /* 21 */ 951*143fc13bSJean-Jacques Hiblot /* Force Header Command - generate a transaction or link management packet */ 952*143fc13bSJean-Jacques Hiblot TRB_FORCE_HEADER, /* 22 */ 953*143fc13bSJean-Jacques Hiblot /* No-op Command - not for transfer rings */ 954*143fc13bSJean-Jacques Hiblot TRB_CMD_NOOP, /* 23 */ 955*143fc13bSJean-Jacques Hiblot /* TRB IDs 24-31 reserved */ 956*143fc13bSJean-Jacques Hiblot /* Event TRBS */ 957*143fc13bSJean-Jacques Hiblot /* Transfer Event */ 958*143fc13bSJean-Jacques Hiblot TRB_TRANSFER = 32, 959*143fc13bSJean-Jacques Hiblot /* Command Completion Event */ 960*143fc13bSJean-Jacques Hiblot TRB_COMPLETION, /* 33 */ 961*143fc13bSJean-Jacques Hiblot /* Port Status Change Event */ 962*143fc13bSJean-Jacques Hiblot TRB_PORT_STATUS, /* 34 */ 963*143fc13bSJean-Jacques Hiblot /* Bandwidth Request Event (opt) */ 964*143fc13bSJean-Jacques Hiblot TRB_BANDWIDTH_EVENT, /* 35 */ 965*143fc13bSJean-Jacques Hiblot /* Doorbell Event (opt) */ 966*143fc13bSJean-Jacques Hiblot TRB_DOORBELL, /* 36 */ 967*143fc13bSJean-Jacques Hiblot /* Host Controller Event */ 968*143fc13bSJean-Jacques Hiblot TRB_HC_EVENT, /* 37 */ 969*143fc13bSJean-Jacques Hiblot /* Device Notification Event - device sent function wake notification */ 970*143fc13bSJean-Jacques Hiblot TRB_DEV_NOTE, /* 38 */ 971*143fc13bSJean-Jacques Hiblot /* MFINDEX Wrap Event - microframe counter wrapped */ 972*143fc13bSJean-Jacques Hiblot TRB_MFINDEX_WRAP, /* 39 */ 973*143fc13bSJean-Jacques Hiblot /* TRB IDs 40-47 reserved, 48-63 is vendor-defined */ 974*143fc13bSJean-Jacques Hiblot /* Nec vendor-specific command completion event. */ 975*143fc13bSJean-Jacques Hiblot TRB_NEC_CMD_COMP = 48, /* 48 */ 976*143fc13bSJean-Jacques Hiblot /* Get NEC firmware revision. */ 977*143fc13bSJean-Jacques Hiblot TRB_NEC_GET_FW, /* 49 */ 978*143fc13bSJean-Jacques Hiblot } trb_type; 979*143fc13bSJean-Jacques Hiblot 980*143fc13bSJean-Jacques Hiblot #define TRB_TYPE_LINK(x) (((x) & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK)) 981*143fc13bSJean-Jacques Hiblot /* Above, but for __le32 types -- can avoid work by swapping constants: */ 982*143fc13bSJean-Jacques Hiblot #define TRB_TYPE_LINK_LE32(x) (((x) & cpu_to_le32(TRB_TYPE_BITMASK)) == \ 983*143fc13bSJean-Jacques Hiblot cpu_to_le32(TRB_TYPE(TRB_LINK))) 984*143fc13bSJean-Jacques Hiblot #define TRB_TYPE_NOOP_LE32(x) (((x) & cpu_to_le32(TRB_TYPE_BITMASK)) == \ 985*143fc13bSJean-Jacques Hiblot cpu_to_le32(TRB_TYPE(TRB_TR_NOOP))) 986*143fc13bSJean-Jacques Hiblot 987*143fc13bSJean-Jacques Hiblot /* 988*143fc13bSJean-Jacques Hiblot * TRBS_PER_SEGMENT must be a multiple of 4, 989*143fc13bSJean-Jacques Hiblot * since the command ring is 64-byte aligned. 990*143fc13bSJean-Jacques Hiblot * It must also be greater than 16. 991*143fc13bSJean-Jacques Hiblot */ 992*143fc13bSJean-Jacques Hiblot #define TRBS_PER_SEGMENT 64 993*143fc13bSJean-Jacques Hiblot /* Allow two commands + a link TRB, along with any reserved command TRBs */ 994*143fc13bSJean-Jacques Hiblot #define MAX_RSVD_CMD_TRBS (TRBS_PER_SEGMENT - 3) 995*143fc13bSJean-Jacques Hiblot #define SEGMENT_SIZE (TRBS_PER_SEGMENT*16) 996*143fc13bSJean-Jacques Hiblot /* SEGMENT_SHIFT should be log2(SEGMENT_SIZE). 997*143fc13bSJean-Jacques Hiblot * Change this if you change TRBS_PER_SEGMENT! 998*143fc13bSJean-Jacques Hiblot */ 999*143fc13bSJean-Jacques Hiblot #define SEGMENT_SHIFT 10 1000*143fc13bSJean-Jacques Hiblot /* TRB buffer pointers can't cross 64KB boundaries */ 1001*143fc13bSJean-Jacques Hiblot #define TRB_MAX_BUFF_SHIFT 16 1002*143fc13bSJean-Jacques Hiblot #define TRB_MAX_BUFF_SIZE (1 << TRB_MAX_BUFF_SHIFT) 1003*143fc13bSJean-Jacques Hiblot 1004*143fc13bSJean-Jacques Hiblot struct xhci_segment { 1005*143fc13bSJean-Jacques Hiblot union xhci_trb *trbs; 1006*143fc13bSJean-Jacques Hiblot /* private to HCD */ 1007*143fc13bSJean-Jacques Hiblot struct xhci_segment *next; 1008*143fc13bSJean-Jacques Hiblot }; 1009*143fc13bSJean-Jacques Hiblot 1010*143fc13bSJean-Jacques Hiblot struct xhci_ring { 1011*143fc13bSJean-Jacques Hiblot struct xhci_segment *first_seg; 1012*143fc13bSJean-Jacques Hiblot union xhci_trb *enqueue; 1013*143fc13bSJean-Jacques Hiblot struct xhci_segment *enq_seg; 1014*143fc13bSJean-Jacques Hiblot union xhci_trb *dequeue; 1015*143fc13bSJean-Jacques Hiblot struct xhci_segment *deq_seg; 1016*143fc13bSJean-Jacques Hiblot /* 1017*143fc13bSJean-Jacques Hiblot * Write the cycle state into the TRB cycle field to give ownership of 1018*143fc13bSJean-Jacques Hiblot * the TRB to the host controller (if we are the producer), or to check 1019*143fc13bSJean-Jacques Hiblot * if we own the TRB (if we are the consumer). See section 4.9.1. 1020*143fc13bSJean-Jacques Hiblot */ 1021*143fc13bSJean-Jacques Hiblot volatile u32 cycle_state; 1022*143fc13bSJean-Jacques Hiblot unsigned int num_segs; 1023*143fc13bSJean-Jacques Hiblot }; 1024*143fc13bSJean-Jacques Hiblot 1025*143fc13bSJean-Jacques Hiblot struct xhci_erst_entry { 1026*143fc13bSJean-Jacques Hiblot /* 64-bit event ring segment address */ 1027*143fc13bSJean-Jacques Hiblot __le64 seg_addr; 1028*143fc13bSJean-Jacques Hiblot __le32 seg_size; 1029*143fc13bSJean-Jacques Hiblot /* Set to zero */ 1030*143fc13bSJean-Jacques Hiblot __le32 rsvd; 1031*143fc13bSJean-Jacques Hiblot }; 1032*143fc13bSJean-Jacques Hiblot 1033*143fc13bSJean-Jacques Hiblot struct xhci_erst { 1034*143fc13bSJean-Jacques Hiblot struct xhci_erst_entry *entries; 1035*143fc13bSJean-Jacques Hiblot unsigned int num_entries; 1036*143fc13bSJean-Jacques Hiblot /* Num entries the ERST can contain */ 1037*143fc13bSJean-Jacques Hiblot unsigned int erst_size; 1038*143fc13bSJean-Jacques Hiblot }; 1039*143fc13bSJean-Jacques Hiblot 1040*143fc13bSJean-Jacques Hiblot struct xhci_scratchpad { 1041*143fc13bSJean-Jacques Hiblot u64 *sp_array; 1042*143fc13bSJean-Jacques Hiblot }; 1043*143fc13bSJean-Jacques Hiblot 1044*143fc13bSJean-Jacques Hiblot /* 1045*143fc13bSJean-Jacques Hiblot * Each segment table entry is 4*32bits long. 1K seems like an ok size: 1046*143fc13bSJean-Jacques Hiblot * (1K bytes * 8bytes/bit) / (4*32 bits) = 64 segment entries in the table, 1047*143fc13bSJean-Jacques Hiblot * meaning 64 ring segments. 1048*143fc13bSJean-Jacques Hiblot * Initial allocated size of the ERST, in number of entries */ 1049*143fc13bSJean-Jacques Hiblot #define ERST_NUM_SEGS 1 1050*143fc13bSJean-Jacques Hiblot /* Initial number of event segment rings allocated */ 1051*143fc13bSJean-Jacques Hiblot #define ERST_ENTRIES 1 1052*143fc13bSJean-Jacques Hiblot /* Initial allocated size of the ERST, in number of entries */ 1053*143fc13bSJean-Jacques Hiblot #define ERST_SIZE 64 1054*143fc13bSJean-Jacques Hiblot /* Poll every 60 seconds */ 1055*143fc13bSJean-Jacques Hiblot #define POLL_TIMEOUT 60 1056*143fc13bSJean-Jacques Hiblot /* Stop endpoint command timeout (secs) for URB cancellation watchdog timer */ 1057*143fc13bSJean-Jacques Hiblot #define XHCI_STOP_EP_CMD_TIMEOUT 5 1058*143fc13bSJean-Jacques Hiblot /* XXX: Make these module parameters */ 1059*143fc13bSJean-Jacques Hiblot 1060*143fc13bSJean-Jacques Hiblot struct xhci_virt_ep { 1061*143fc13bSJean-Jacques Hiblot struct xhci_ring *ring; 1062*143fc13bSJean-Jacques Hiblot unsigned int ep_state; 1063*143fc13bSJean-Jacques Hiblot #define SET_DEQ_PENDING (1 << 0) 1064*143fc13bSJean-Jacques Hiblot #define EP_HALTED (1 << 1) /* For stall handling */ 1065*143fc13bSJean-Jacques Hiblot #define EP_HALT_PENDING (1 << 2) /* For URB cancellation */ 1066*143fc13bSJean-Jacques Hiblot /* Transitioning the endpoint to using streams, don't enqueue URBs */ 1067*143fc13bSJean-Jacques Hiblot #define EP_GETTING_STREAMS (1 << 3) 1068*143fc13bSJean-Jacques Hiblot #define EP_HAS_STREAMS (1 << 4) 1069*143fc13bSJean-Jacques Hiblot /* Transitioning the endpoint to not using streams, don't enqueue URBs */ 1070*143fc13bSJean-Jacques Hiblot #define EP_GETTING_NO_STREAMS (1 << 5) 1071*143fc13bSJean-Jacques Hiblot }; 1072*143fc13bSJean-Jacques Hiblot 1073*143fc13bSJean-Jacques Hiblot #define CTX_SIZE(_hcc) (HCC_64BYTE_CONTEXT(_hcc) ? 64 : 32) 1074*143fc13bSJean-Jacques Hiblot 1075*143fc13bSJean-Jacques Hiblot struct xhci_virt_device { 1076*143fc13bSJean-Jacques Hiblot struct usb_device *udev; 1077*143fc13bSJean-Jacques Hiblot /* 1078*143fc13bSJean-Jacques Hiblot * Commands to the hardware are passed an "input context" that 1079*143fc13bSJean-Jacques Hiblot * tells the hardware what to change in its data structures. 1080*143fc13bSJean-Jacques Hiblot * The hardware will return changes in an "output context" that 1081*143fc13bSJean-Jacques Hiblot * software must allocate for the hardware. We need to keep 1082*143fc13bSJean-Jacques Hiblot * track of input and output contexts separately because 1083*143fc13bSJean-Jacques Hiblot * these commands might fail and we don't trust the hardware. 1084*143fc13bSJean-Jacques Hiblot */ 1085*143fc13bSJean-Jacques Hiblot struct xhci_container_ctx *out_ctx; 1086*143fc13bSJean-Jacques Hiblot /* Used for addressing devices and configuration changes */ 1087*143fc13bSJean-Jacques Hiblot struct xhci_container_ctx *in_ctx; 1088*143fc13bSJean-Jacques Hiblot /* Rings saved to ensure old alt settings can be re-instated */ 1089*143fc13bSJean-Jacques Hiblot #define XHCI_MAX_RINGS_CACHED 31 1090*143fc13bSJean-Jacques Hiblot struct xhci_virt_ep eps[31]; 1091*143fc13bSJean-Jacques Hiblot }; 1092*143fc13bSJean-Jacques Hiblot 1093*143fc13bSJean-Jacques Hiblot /* TODO: copied from ehci.h - can be refactored? */ 1094*143fc13bSJean-Jacques Hiblot /* xHCI spec says all registers are little endian */ 1095*143fc13bSJean-Jacques Hiblot static inline unsigned int xhci_readl(uint32_t volatile *regs) 1096*143fc13bSJean-Jacques Hiblot { 1097*143fc13bSJean-Jacques Hiblot return readl(regs); 1098*143fc13bSJean-Jacques Hiblot } 1099*143fc13bSJean-Jacques Hiblot 1100*143fc13bSJean-Jacques Hiblot static inline void xhci_writel(uint32_t volatile *regs, const unsigned int val) 1101*143fc13bSJean-Jacques Hiblot { 1102*143fc13bSJean-Jacques Hiblot writel(val, regs); 1103*143fc13bSJean-Jacques Hiblot } 1104*143fc13bSJean-Jacques Hiblot 1105*143fc13bSJean-Jacques Hiblot /* 1106*143fc13bSJean-Jacques Hiblot * Registers should always be accessed with double word or quad word accesses. 1107*143fc13bSJean-Jacques Hiblot * Some xHCI implementations may support 64-bit address pointers. Registers 1108*143fc13bSJean-Jacques Hiblot * with 64-bit address pointers should be written to with dword accesses by 1109*143fc13bSJean-Jacques Hiblot * writing the low dword first (ptr[0]), then the high dword (ptr[1]) second. 1110*143fc13bSJean-Jacques Hiblot * xHCI implementations that do not support 64-bit address pointers will ignore 1111*143fc13bSJean-Jacques Hiblot * the high dword, and write order is irrelevant. 1112*143fc13bSJean-Jacques Hiblot */ 1113*143fc13bSJean-Jacques Hiblot static inline u64 xhci_readq(__le64 volatile *regs) 1114*143fc13bSJean-Jacques Hiblot { 1115*143fc13bSJean-Jacques Hiblot #if BITS_PER_LONG == 64 1116*143fc13bSJean-Jacques Hiblot return readq(regs); 1117*143fc13bSJean-Jacques Hiblot #else 1118*143fc13bSJean-Jacques Hiblot __u32 *ptr = (__u32 *)regs; 1119*143fc13bSJean-Jacques Hiblot u64 val_lo = readl(ptr); 1120*143fc13bSJean-Jacques Hiblot u64 val_hi = readl(ptr + 1); 1121*143fc13bSJean-Jacques Hiblot return val_lo + (val_hi << 32); 1122*143fc13bSJean-Jacques Hiblot #endif 1123*143fc13bSJean-Jacques Hiblot } 1124*143fc13bSJean-Jacques Hiblot 1125*143fc13bSJean-Jacques Hiblot static inline void xhci_writeq(__le64 volatile *regs, const u64 val) 1126*143fc13bSJean-Jacques Hiblot { 1127*143fc13bSJean-Jacques Hiblot #if BITS_PER_LONG == 64 1128*143fc13bSJean-Jacques Hiblot writeq(val, regs); 1129*143fc13bSJean-Jacques Hiblot #else 1130*143fc13bSJean-Jacques Hiblot __u32 *ptr = (__u32 *)regs; 1131*143fc13bSJean-Jacques Hiblot u32 val_lo = lower_32_bits(val); 1132*143fc13bSJean-Jacques Hiblot /* FIXME */ 1133*143fc13bSJean-Jacques Hiblot u32 val_hi = upper_32_bits(val); 1134*143fc13bSJean-Jacques Hiblot writel(val_lo, ptr); 1135*143fc13bSJean-Jacques Hiblot writel(val_hi, ptr + 1); 1136*143fc13bSJean-Jacques Hiblot #endif 1137*143fc13bSJean-Jacques Hiblot } 1138*143fc13bSJean-Jacques Hiblot 1139*143fc13bSJean-Jacques Hiblot int xhci_hcd_init(int index, struct xhci_hccr **ret_hccr, 1140*143fc13bSJean-Jacques Hiblot struct xhci_hcor **ret_hcor); 1141*143fc13bSJean-Jacques Hiblot void xhci_hcd_stop(int index); 1142*143fc13bSJean-Jacques Hiblot 1143*143fc13bSJean-Jacques Hiblot 1144*143fc13bSJean-Jacques Hiblot /************************************************************* 1145*143fc13bSJean-Jacques Hiblot EXTENDED CAPABILITY DEFINITIONS 1146*143fc13bSJean-Jacques Hiblot *************************************************************/ 1147*143fc13bSJean-Jacques Hiblot /* Up to 16 ms to halt an HC */ 1148*143fc13bSJean-Jacques Hiblot #define XHCI_MAX_HALT_USEC (16*1000) 1149*143fc13bSJean-Jacques Hiblot /* HC not running - set to 1 when run/stop bit is cleared. */ 1150*143fc13bSJean-Jacques Hiblot #define XHCI_STS_HALT (1 << 0) 1151*143fc13bSJean-Jacques Hiblot 1152*143fc13bSJean-Jacques Hiblot /* HCCPARAMS offset from PCI base address */ 1153*143fc13bSJean-Jacques Hiblot #define XHCI_HCC_PARAMS_OFFSET 0x10 1154*143fc13bSJean-Jacques Hiblot /* HCCPARAMS contains the first extended capability pointer */ 1155*143fc13bSJean-Jacques Hiblot #define XHCI_HCC_EXT_CAPS(p) (((p)>>16)&0xffff) 1156*143fc13bSJean-Jacques Hiblot 1157*143fc13bSJean-Jacques Hiblot /* Command and Status registers offset from the Operational Registers address */ 1158*143fc13bSJean-Jacques Hiblot #define XHCI_CMD_OFFSET 0x00 1159*143fc13bSJean-Jacques Hiblot #define XHCI_STS_OFFSET 0x04 1160*143fc13bSJean-Jacques Hiblot 1161*143fc13bSJean-Jacques Hiblot #define XHCI_MAX_EXT_CAPS 50 1162*143fc13bSJean-Jacques Hiblot 1163*143fc13bSJean-Jacques Hiblot /* Capability Register */ 1164*143fc13bSJean-Jacques Hiblot /* bits 7:0 - how long is the Capabilities register */ 1165*143fc13bSJean-Jacques Hiblot #define XHCI_HC_LENGTH(p) (((p) >> 00) & 0x00ff) 1166*143fc13bSJean-Jacques Hiblot 1167*143fc13bSJean-Jacques Hiblot /* Extended capability register fields */ 1168*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_CAPS_ID(p) (((p) >> 0) & 0xff) 1169*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_CAPS_NEXT(p) (((p) >> 8) & 0xff) 1170*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_CAPS_VAL(p) ((p) >> 16) 1171*143fc13bSJean-Jacques Hiblot /* Extended capability IDs - ID 0 reserved */ 1172*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_CAPS_LEGACY 1 1173*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_CAPS_PROTOCOL 2 1174*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_CAPS_PM 3 1175*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_CAPS_VIRT 4 1176*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_CAPS_ROUTE 5 1177*143fc13bSJean-Jacques Hiblot /* IDs 6-9 reserved */ 1178*143fc13bSJean-Jacques Hiblot #define XHCI_EXT_CAPS_DEBUG 10 1179*143fc13bSJean-Jacques Hiblot /* USB Legacy Support Capability - section 7.1.1 */ 1180*143fc13bSJean-Jacques Hiblot #define XHCI_HC_BIOS_OWNED (1 << 16) 1181*143fc13bSJean-Jacques Hiblot #define XHCI_HC_OS_OWNED (1 << 24) 1182*143fc13bSJean-Jacques Hiblot 1183*143fc13bSJean-Jacques Hiblot /* USB Legacy Support Capability - section 7.1.1 */ 1184*143fc13bSJean-Jacques Hiblot /* Add this offset, plus the value of xECP in HCCPARAMS to the base address */ 1185*143fc13bSJean-Jacques Hiblot #define XHCI_LEGACY_SUPPORT_OFFSET (0x00) 1186*143fc13bSJean-Jacques Hiblot 1187*143fc13bSJean-Jacques Hiblot /* USB Legacy Support Control and Status Register - section 7.1.2 */ 1188*143fc13bSJean-Jacques Hiblot /* Add this offset, plus the value of xECP in HCCPARAMS to the base address */ 1189*143fc13bSJean-Jacques Hiblot #define XHCI_LEGACY_CONTROL_OFFSET (0x04) 1190*143fc13bSJean-Jacques Hiblot /* bits 1:2, 5:12, and 17:19 need to be preserved; bits 21:28 should be zero */ 1191*143fc13bSJean-Jacques Hiblot #define XHCI_LEGACY_DISABLE_SMI ((0x3 << 1) + (0xff << 5) + (0x7 << 17)) 1192*143fc13bSJean-Jacques Hiblot 1193*143fc13bSJean-Jacques Hiblot /* USB 2.0 xHCI 0.96 L1C capability - section 7.2.2.1.3.2 */ 1194*143fc13bSJean-Jacques Hiblot #define XHCI_L1C (1 << 16) 1195*143fc13bSJean-Jacques Hiblot 1196*143fc13bSJean-Jacques Hiblot /* USB 2.0 xHCI 1.0 hardware LMP capability - section 7.2.2.1.3.2 */ 1197*143fc13bSJean-Jacques Hiblot #define XHCI_HLC (1 << 19) 1198*143fc13bSJean-Jacques Hiblot 1199*143fc13bSJean-Jacques Hiblot /* command register values to disable interrupts and halt the HC */ 1200*143fc13bSJean-Jacques Hiblot /* start/stop HC execution - do not write unless HC is halted*/ 1201*143fc13bSJean-Jacques Hiblot #define XHCI_CMD_RUN (1 << 0) 1202*143fc13bSJean-Jacques Hiblot /* Event Interrupt Enable - get irq when EINT bit is set in USBSTS register */ 1203*143fc13bSJean-Jacques Hiblot #define XHCI_CMD_EIE (1 << 2) 1204*143fc13bSJean-Jacques Hiblot /* Host System Error Interrupt Enable - get irq when HSEIE bit set in USBSTS */ 1205*143fc13bSJean-Jacques Hiblot #define XHCI_CMD_HSEIE (1 << 3) 1206*143fc13bSJean-Jacques Hiblot /* Enable Wrap Event - '1' means xHC generates an event when MFINDEX wraps. */ 1207*143fc13bSJean-Jacques Hiblot #define XHCI_CMD_EWE (1 << 10) 1208*143fc13bSJean-Jacques Hiblot 1209*143fc13bSJean-Jacques Hiblot #define XHCI_IRQS (XHCI_CMD_EIE | XHCI_CMD_HSEIE | XHCI_CMD_EWE) 1210*143fc13bSJean-Jacques Hiblot 1211*143fc13bSJean-Jacques Hiblot /* true: Controller Not Ready to accept doorbell or op reg writes after reset */ 1212*143fc13bSJean-Jacques Hiblot #define XHCI_STS_CNR (1 << 11) 1213*143fc13bSJean-Jacques Hiblot 1214*143fc13bSJean-Jacques Hiblot struct xhci_ctrl { 1215*143fc13bSJean-Jacques Hiblot #if CONFIG_IS_ENABLED(DM_USB) 1216*143fc13bSJean-Jacques Hiblot struct udevice *dev; 1217*143fc13bSJean-Jacques Hiblot #endif 1218*143fc13bSJean-Jacques Hiblot struct xhci_hccr *hccr; /* R/O registers, not need for volatile */ 1219*143fc13bSJean-Jacques Hiblot struct xhci_hcor *hcor; 1220*143fc13bSJean-Jacques Hiblot struct xhci_doorbell_array *dba; 1221*143fc13bSJean-Jacques Hiblot struct xhci_run_regs *run_regs; 1222*143fc13bSJean-Jacques Hiblot struct xhci_device_context_array *dcbaa \ 1223*143fc13bSJean-Jacques Hiblot __attribute__ ((aligned(ARCH_DMA_MINALIGN))); 1224*143fc13bSJean-Jacques Hiblot struct xhci_ring *event_ring; 1225*143fc13bSJean-Jacques Hiblot struct xhci_ring *cmd_ring; 1226*143fc13bSJean-Jacques Hiblot struct xhci_ring *transfer_ring; 1227*143fc13bSJean-Jacques Hiblot struct xhci_segment *seg; 1228*143fc13bSJean-Jacques Hiblot struct xhci_intr_reg *ir_set; 1229*143fc13bSJean-Jacques Hiblot struct xhci_erst erst; 1230*143fc13bSJean-Jacques Hiblot struct xhci_erst_entry entry[ERST_NUM_SEGS]; 1231*143fc13bSJean-Jacques Hiblot struct xhci_scratchpad *scratchpad; 1232*143fc13bSJean-Jacques Hiblot struct xhci_virt_device *devs[MAX_HC_SLOTS]; 1233*143fc13bSJean-Jacques Hiblot int rootdev; 1234*143fc13bSJean-Jacques Hiblot }; 1235*143fc13bSJean-Jacques Hiblot 1236*143fc13bSJean-Jacques Hiblot unsigned long trb_addr(struct xhci_segment *seg, union xhci_trb *trb); 1237*143fc13bSJean-Jacques Hiblot struct xhci_input_control_ctx 1238*143fc13bSJean-Jacques Hiblot *xhci_get_input_control_ctx(struct xhci_container_ctx *ctx); 1239*143fc13bSJean-Jacques Hiblot struct xhci_slot_ctx *xhci_get_slot_ctx(struct xhci_ctrl *ctrl, 1240*143fc13bSJean-Jacques Hiblot struct xhci_container_ctx *ctx); 1241*143fc13bSJean-Jacques Hiblot struct xhci_ep_ctx *xhci_get_ep_ctx(struct xhci_ctrl *ctrl, 1242*143fc13bSJean-Jacques Hiblot struct xhci_container_ctx *ctx, 1243*143fc13bSJean-Jacques Hiblot unsigned int ep_index); 1244*143fc13bSJean-Jacques Hiblot void xhci_endpoint_copy(struct xhci_ctrl *ctrl, 1245*143fc13bSJean-Jacques Hiblot struct xhci_container_ctx *in_ctx, 1246*143fc13bSJean-Jacques Hiblot struct xhci_container_ctx *out_ctx, 1247*143fc13bSJean-Jacques Hiblot unsigned int ep_index); 1248*143fc13bSJean-Jacques Hiblot void xhci_slot_copy(struct xhci_ctrl *ctrl, 1249*143fc13bSJean-Jacques Hiblot struct xhci_container_ctx *in_ctx, 1250*143fc13bSJean-Jacques Hiblot struct xhci_container_ctx *out_ctx); 1251*143fc13bSJean-Jacques Hiblot void xhci_setup_addressable_virt_dev(struct xhci_ctrl *ctrl, 1252*143fc13bSJean-Jacques Hiblot struct usb_device *udev, int hop_portnr); 1253*143fc13bSJean-Jacques Hiblot void xhci_queue_command(struct xhci_ctrl *ctrl, u8 *ptr, 1254*143fc13bSJean-Jacques Hiblot u32 slot_id, u32 ep_index, trb_type cmd); 1255*143fc13bSJean-Jacques Hiblot void xhci_acknowledge_event(struct xhci_ctrl *ctrl); 1256*143fc13bSJean-Jacques Hiblot union xhci_trb *xhci_wait_for_event(struct xhci_ctrl *ctrl, trb_type expected); 1257*143fc13bSJean-Jacques Hiblot int xhci_bulk_tx(struct usb_device *udev, unsigned long pipe, 1258*143fc13bSJean-Jacques Hiblot int length, void *buffer); 1259*143fc13bSJean-Jacques Hiblot int xhci_ctrl_tx(struct usb_device *udev, unsigned long pipe, 1260*143fc13bSJean-Jacques Hiblot struct devrequest *req, int length, void *buffer); 1261*143fc13bSJean-Jacques Hiblot int xhci_check_maxpacket(struct usb_device *udev); 1262*143fc13bSJean-Jacques Hiblot void xhci_flush_cache(uintptr_t addr, u32 type_len); 1263*143fc13bSJean-Jacques Hiblot void xhci_inval_cache(uintptr_t addr, u32 type_len); 1264*143fc13bSJean-Jacques Hiblot void xhci_cleanup(struct xhci_ctrl *ctrl); 1265*143fc13bSJean-Jacques Hiblot struct xhci_ring *xhci_ring_alloc(unsigned int num_segs, bool link_trbs); 1266*143fc13bSJean-Jacques Hiblot int xhci_alloc_virt_device(struct xhci_ctrl *ctrl, unsigned int slot_id); 1267*143fc13bSJean-Jacques Hiblot int xhci_mem_init(struct xhci_ctrl *ctrl, struct xhci_hccr *hccr, 1268*143fc13bSJean-Jacques Hiblot struct xhci_hcor *hcor); 1269*143fc13bSJean-Jacques Hiblot 1270*143fc13bSJean-Jacques Hiblot /** 1271*143fc13bSJean-Jacques Hiblot * xhci_deregister() - Unregister an XHCI controller 1272*143fc13bSJean-Jacques Hiblot * 1273*143fc13bSJean-Jacques Hiblot * @dev: Controller device 1274*143fc13bSJean-Jacques Hiblot * @return 0 if registered, -ve on error 1275*143fc13bSJean-Jacques Hiblot */ 1276*143fc13bSJean-Jacques Hiblot int xhci_deregister(struct udevice *dev); 1277*143fc13bSJean-Jacques Hiblot 1278*143fc13bSJean-Jacques Hiblot /** 1279*143fc13bSJean-Jacques Hiblot * xhci_register() - Register a new XHCI controller 1280*143fc13bSJean-Jacques Hiblot * 1281*143fc13bSJean-Jacques Hiblot * @dev: Controller device 1282*143fc13bSJean-Jacques Hiblot * @hccr: Host controller control registers 1283*143fc13bSJean-Jacques Hiblot * @hcor: Not sure what this means 1284*143fc13bSJean-Jacques Hiblot * @return 0 if registered, -ve on error 1285*143fc13bSJean-Jacques Hiblot */ 1286*143fc13bSJean-Jacques Hiblot int xhci_register(struct udevice *dev, struct xhci_hccr *hccr, 1287*143fc13bSJean-Jacques Hiblot struct xhci_hcor *hcor); 1288*143fc13bSJean-Jacques Hiblot 1289*143fc13bSJean-Jacques Hiblot extern struct dm_usb_ops xhci_usb_ops; 1290*143fc13bSJean-Jacques Hiblot 1291*143fc13bSJean-Jacques Hiblot struct xhci_ctrl *xhci_get_ctrl(struct usb_device *udev); 1292*143fc13bSJean-Jacques Hiblot 1293*143fc13bSJean-Jacques Hiblot #endif /* HOST_XHCI_H_ */ 1294