Kevin O'Connor | 347f363 | 2013-12-27 18:30:02 -0500 | [diff] [blame] | 1 | #include "biosvar.h" // GET_LOWFLAT |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 2 | #include "config.h" // CONFIG_* |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 3 | #include "malloc.h" // memalign_low |
Kevin O'Connor | 347f363 | 2013-12-27 18:30:02 -0500 | [diff] [blame] | 4 | #include "memmap.h" // PAGE_SIZE |
| 5 | #include "output.h" // dprintf |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 6 | #include "pci.h" // pci_bdf_to_bus |
Kevin O'Connor | ec443ff | 2013-12-05 18:43:20 -0500 | [diff] [blame] | 7 | #include "pci_ids.h" // PCI_CLASS_SERIAL_USB_XHCI |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 8 | #include "pci_regs.h" // PCI_BASE_ADDRESS_0 |
Kevin O'Connor | 347f363 | 2013-12-27 18:30:02 -0500 | [diff] [blame] | 9 | #include "string.h" // memcpy_fl |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 10 | #include "usb.h" // struct usb_s |
| 11 | #include "usb-xhci.h" // struct ehci_qh |
Kevin O'Connor | 347f363 | 2013-12-27 18:30:02 -0500 | [diff] [blame] | 12 | #include "util.h" // timer_calc |
| 13 | #include "x86.h" // readl |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 14 | |
| 15 | // -------------------------------------------------------------- |
| 16 | // configuration |
| 17 | |
| 18 | #define XHCI_RING_ITEMS 16 |
| 19 | #define XHCI_RING_SIZE (XHCI_RING_ITEMS*sizeof(struct xhci_trb)) |
| 20 | |
| 21 | /* |
| 22 | * xhci_ring structs are allocated with XHCI_RING_SIZE alignment, |
| 23 | * then we can get it from a trb pointer (provided by evt ring). |
| 24 | */ |
| 25 | #define XHCI_RING(_trb) \ |
| 26 | ((struct xhci_ring*)((u32)(_trb) & ~(XHCI_RING_SIZE-1))) |
| 27 | |
| 28 | // -------------------------------------------------------------- |
| 29 | // bit definitions |
| 30 | |
| 31 | #define XHCI_CMD_RS (1<<0) |
| 32 | #define XHCI_CMD_HCRST (1<<1) |
| 33 | #define XHCI_CMD_INTE (1<<2) |
| 34 | #define XHCI_CMD_HSEE (1<<3) |
| 35 | #define XHCI_CMD_LHCRST (1<<7) |
| 36 | #define XHCI_CMD_CSS (1<<8) |
| 37 | #define XHCI_CMD_CRS (1<<9) |
| 38 | #define XHCI_CMD_EWE (1<<10) |
| 39 | #define XHCI_CMD_EU3S (1<<11) |
| 40 | |
| 41 | #define XHCI_STS_HCH (1<<0) |
| 42 | #define XHCI_STS_HSE (1<<2) |
| 43 | #define XHCI_STS_EINT (1<<3) |
| 44 | #define XHCI_STS_PCD (1<<4) |
| 45 | #define XHCI_STS_SSS (1<<8) |
| 46 | #define XHCI_STS_RSS (1<<9) |
| 47 | #define XHCI_STS_SRE (1<<10) |
| 48 | #define XHCI_STS_CNR (1<<11) |
| 49 | #define XHCI_STS_HCE (1<<12) |
| 50 | |
| 51 | #define XHCI_PORTSC_CCS (1<<0) |
| 52 | #define XHCI_PORTSC_PED (1<<1) |
| 53 | #define XHCI_PORTSC_OCA (1<<3) |
| 54 | #define XHCI_PORTSC_PR (1<<4) |
| 55 | #define XHCI_PORTSC_PLS_SHIFT 5 |
| 56 | #define XHCI_PORTSC_PLS_MASK 0xf |
| 57 | #define XHCI_PORTSC_PP (1<<9) |
| 58 | #define XHCI_PORTSC_SPEED_SHIFT 10 |
| 59 | #define XHCI_PORTSC_SPEED_MASK 0xf |
| 60 | #define XHCI_PORTSC_SPEED_FULL (1<<10) |
| 61 | #define XHCI_PORTSC_SPEED_LOW (2<<10) |
| 62 | #define XHCI_PORTSC_SPEED_HIGH (3<<10) |
| 63 | #define XHCI_PORTSC_SPEED_SUPER (4<<10) |
| 64 | #define XHCI_PORTSC_PIC_SHIFT 14 |
| 65 | #define XHCI_PORTSC_PIC_MASK 0x3 |
| 66 | #define XHCI_PORTSC_LWS (1<<16) |
| 67 | #define XHCI_PORTSC_CSC (1<<17) |
| 68 | #define XHCI_PORTSC_PEC (1<<18) |
| 69 | #define XHCI_PORTSC_WRC (1<<19) |
| 70 | #define XHCI_PORTSC_OCC (1<<20) |
| 71 | #define XHCI_PORTSC_PRC (1<<21) |
| 72 | #define XHCI_PORTSC_PLC (1<<22) |
| 73 | #define XHCI_PORTSC_CEC (1<<23) |
| 74 | #define XHCI_PORTSC_CAS (1<<24) |
| 75 | #define XHCI_PORTSC_WCE (1<<25) |
| 76 | #define XHCI_PORTSC_WDE (1<<26) |
| 77 | #define XHCI_PORTSC_WOE (1<<27) |
| 78 | #define XHCI_PORTSC_DR (1<<30) |
| 79 | #define XHCI_PORTSC_WPR (1<<31) |
| 80 | |
| 81 | #define TRB_C (1<<0) |
| 82 | #define TRB_TYPE_SHIFT 10 |
| 83 | #define TRB_TYPE_MASK 0x3f |
| 84 | #define TRB_TYPE(t) (((t) >> TRB_TYPE_SHIFT) & TRB_TYPE_MASK) |
| 85 | |
| 86 | #define TRB_EV_ED (1<<2) |
| 87 | |
| 88 | #define TRB_TR_ENT (1<<1) |
| 89 | #define TRB_TR_ISP (1<<2) |
| 90 | #define TRB_TR_NS (1<<3) |
| 91 | #define TRB_TR_CH (1<<4) |
| 92 | #define TRB_TR_IOC (1<<5) |
| 93 | #define TRB_TR_IDT (1<<6) |
| 94 | #define TRB_TR_TBC_SHIFT 7 |
| 95 | #define TRB_TR_TBC_MASK 0x3 |
| 96 | #define TRB_TR_BEI (1<<9) |
| 97 | #define TRB_TR_TLBPC_SHIFT 16 |
| 98 | #define TRB_TR_TLBPC_MASK 0xf |
| 99 | #define TRB_TR_FRAMEID_SHIFT 20 |
| 100 | #define TRB_TR_FRAMEID_MASK 0x7ff |
| 101 | #define TRB_TR_SIA (1<<31) |
| 102 | |
| 103 | #define TRB_TR_DIR (1<<16) |
| 104 | |
| 105 | #define TRB_CR_SLOTID_SHIFT 24 |
| 106 | #define TRB_CR_SLOTID_MASK 0xff |
| 107 | #define TRB_CR_EPID_SHIFT 16 |
| 108 | #define TRB_CR_EPID_MASK 0x1f |
| 109 | |
| 110 | #define TRB_CR_BSR (1<<9) |
| 111 | #define TRB_CR_DC (1<<9) |
| 112 | |
| 113 | #define TRB_LK_TC (1<<1) |
| 114 | |
| 115 | #define TRB_INTR_SHIFT 22 |
| 116 | #define TRB_INTR_MASK 0x3ff |
| 117 | #define TRB_INTR(t) (((t).status >> TRB_INTR_SHIFT) & TRB_INTR_MASK) |
| 118 | |
| 119 | typedef enum TRBType { |
| 120 | TRB_RESERVED = 0, |
| 121 | TR_NORMAL, |
| 122 | TR_SETUP, |
| 123 | TR_DATA, |
| 124 | TR_STATUS, |
| 125 | TR_ISOCH, |
| 126 | TR_LINK, |
| 127 | TR_EVDATA, |
| 128 | TR_NOOP, |
| 129 | CR_ENABLE_SLOT, |
| 130 | CR_DISABLE_SLOT, |
| 131 | CR_ADDRESS_DEVICE, |
| 132 | CR_CONFIGURE_ENDPOINT, |
| 133 | CR_EVALUATE_CONTEXT, |
| 134 | CR_RESET_ENDPOINT, |
| 135 | CR_STOP_ENDPOINT, |
| 136 | CR_SET_TR_DEQUEUE, |
| 137 | CR_RESET_DEVICE, |
| 138 | CR_FORCE_EVENT, |
| 139 | CR_NEGOTIATE_BW, |
| 140 | CR_SET_LATENCY_TOLERANCE, |
| 141 | CR_GET_PORT_BANDWIDTH, |
| 142 | CR_FORCE_HEADER, |
| 143 | CR_NOOP, |
| 144 | ER_TRANSFER = 32, |
| 145 | ER_COMMAND_COMPLETE, |
| 146 | ER_PORT_STATUS_CHANGE, |
| 147 | ER_BANDWIDTH_REQUEST, |
| 148 | ER_DOORBELL, |
| 149 | ER_HOST_CONTROLLER, |
| 150 | ER_DEVICE_NOTIFICATION, |
| 151 | ER_MFINDEX_WRAP, |
| 152 | } TRBType; |
| 153 | |
| 154 | typedef enum TRBCCode { |
| 155 | CC_INVALID = 0, |
| 156 | CC_SUCCESS, |
| 157 | CC_DATA_BUFFER_ERROR, |
| 158 | CC_BABBLE_DETECTED, |
| 159 | CC_USB_TRANSACTION_ERROR, |
| 160 | CC_TRB_ERROR, |
| 161 | CC_STALL_ERROR, |
| 162 | CC_RESOURCE_ERROR, |
| 163 | CC_BANDWIDTH_ERROR, |
| 164 | CC_NO_SLOTS_ERROR, |
| 165 | CC_INVALID_STREAM_TYPE_ERROR, |
| 166 | CC_SLOT_NOT_ENABLED_ERROR, |
| 167 | CC_EP_NOT_ENABLED_ERROR, |
| 168 | CC_SHORT_PACKET, |
| 169 | CC_RING_UNDERRUN, |
| 170 | CC_RING_OVERRUN, |
| 171 | CC_VF_ER_FULL, |
| 172 | CC_PARAMETER_ERROR, |
| 173 | CC_BANDWIDTH_OVERRUN, |
| 174 | CC_CONTEXT_STATE_ERROR, |
| 175 | CC_NO_PING_RESPONSE_ERROR, |
| 176 | CC_EVENT_RING_FULL_ERROR, |
| 177 | CC_INCOMPATIBLE_DEVICE_ERROR, |
| 178 | CC_MISSED_SERVICE_ERROR, |
| 179 | CC_COMMAND_RING_STOPPED, |
| 180 | CC_COMMAND_ABORTED, |
| 181 | CC_STOPPED, |
| 182 | CC_STOPPED_LENGTH_INVALID, |
| 183 | CC_MAX_EXIT_LATENCY_TOO_LARGE_ERROR = 29, |
| 184 | CC_ISOCH_BUFFER_OVERRUN = 31, |
| 185 | CC_EVENT_LOST_ERROR, |
| 186 | CC_UNDEFINED_ERROR, |
| 187 | CC_INVALID_STREAM_ID_ERROR, |
| 188 | CC_SECONDARY_BANDWIDTH_ERROR, |
| 189 | CC_SPLIT_TRANSACTION_ERROR |
| 190 | } TRBCCode; |
| 191 | |
| 192 | enum { |
| 193 | PLS_U0 = 0, |
| 194 | PLS_U1 = 1, |
| 195 | PLS_U2 = 2, |
| 196 | PLS_U3 = 3, |
| 197 | PLS_DISABLED = 4, |
| 198 | PLS_RX_DETECT = 5, |
| 199 | PLS_INACTIVE = 6, |
| 200 | PLS_POLLING = 7, |
| 201 | PLS_RECOVERY = 8, |
| 202 | PLS_HOT_RESET = 9, |
| 203 | PLS_COMPILANCE_MODE = 10, |
| 204 | PLS_TEST_MODE = 11, |
| 205 | PLS_RESUME = 15, |
| 206 | }; |
| 207 | |
| 208 | #define xhci_get_field(data, field) \ |
| 209 | (((data) >> field##_SHIFT) & field##_MASK) |
| 210 | |
| 211 | // -------------------------------------------------------------- |
| 212 | // state structs |
| 213 | |
| 214 | struct xhci_ring { |
| 215 | struct xhci_trb ring[XHCI_RING_ITEMS]; |
| 216 | struct xhci_trb evt; |
| 217 | u32 eidx; |
| 218 | u32 nidx; |
| 219 | u32 cs; |
| 220 | struct mutex_s lock; |
| 221 | }; |
| 222 | |
| 223 | struct usb_xhci_s { |
| 224 | struct usb_s usb; |
| 225 | struct usbhub_s hub; |
| 226 | |
| 227 | /* devinfo */ |
| 228 | u32 baseaddr; |
| 229 | u32 xcap; |
| 230 | u32 ports; |
| 231 | u32 slots; |
| 232 | |
| 233 | /* xhci registers */ |
| 234 | struct xhci_caps *caps; |
| 235 | struct xhci_op *op; |
| 236 | struct xhci_pr *pr; |
| 237 | struct xhci_ir *ir; |
| 238 | struct xhci_db *db; |
| 239 | |
| 240 | /* xhci data structures */ |
| 241 | struct xhci_devlist *devs; |
| 242 | struct xhci_ring *cmds; |
| 243 | struct xhci_ring *evts; |
| 244 | struct xhci_er_seg *eseg; |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 245 | }; |
| 246 | |
| 247 | struct xhci_pipe { |
| 248 | struct xhci_ring reqs; |
| 249 | |
| 250 | struct usb_pipe pipe; |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 251 | u32 slotid; |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 252 | u32 epid; |
| 253 | void *buf; |
| 254 | int bufused; |
| 255 | }; |
| 256 | |
| 257 | // -------------------------------------------------------------- |
| 258 | // tables |
| 259 | |
| 260 | static const char *speed_name[16] = { |
| 261 | [ 0 ] = " - ", |
| 262 | [ 1 ] = "Full", |
| 263 | [ 2 ] = "Low", |
| 264 | [ 3 ] = "High", |
| 265 | [ 4 ] = "Super", |
| 266 | }; |
| 267 | |
| 268 | static const int speed_from_xhci[16] = { |
Paul Menzel | f08e847 | 2013-10-03 11:55:48 +0200 | [diff] [blame] | 269 | [ 0 ] = -1, |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 270 | [ 1 ] = USB_FULLSPEED, |
| 271 | [ 2 ] = USB_LOWSPEED, |
| 272 | [ 3 ] = USB_HIGHSPEED, |
| 273 | [ 4 ] = USB_SUPERSPEED, |
Paul Menzel | f08e847 | 2013-10-03 11:55:48 +0200 | [diff] [blame] | 274 | [ 5 ... 15 ] = -1, |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 275 | }; |
| 276 | |
| 277 | static const int speed_to_xhci[] = { |
| 278 | [ USB_FULLSPEED ] = 1, |
| 279 | [ USB_LOWSPEED ] = 2, |
| 280 | [ USB_HIGHSPEED ] = 3, |
| 281 | [ USB_SUPERSPEED ] = 4, |
| 282 | }; |
| 283 | |
| 284 | static const int speed_to_ctlsize[] = { |
| 285 | [ USB_FULLSPEED ] = 8, |
| 286 | [ USB_LOWSPEED ] = 8, |
| 287 | [ USB_HIGHSPEED ] = 64, |
| 288 | [ USB_SUPERSPEED ] = 256, |
| 289 | }; |
| 290 | |
| 291 | static const int eptype_to_xhci_in[] = { |
| 292 | [ USB_ENDPOINT_XFER_CONTROL] = 4, |
| 293 | [ USB_ENDPOINT_XFER_ISOC ] = 5, |
| 294 | [ USB_ENDPOINT_XFER_BULK ] = 6, |
| 295 | [ USB_ENDPOINT_XFER_INT ] = 7, |
| 296 | }; |
| 297 | |
| 298 | static const int eptype_to_xhci_out[] = { |
| 299 | [ USB_ENDPOINT_XFER_CONTROL] = 4, |
| 300 | [ USB_ENDPOINT_XFER_ISOC ] = 1, |
| 301 | [ USB_ENDPOINT_XFER_BULK ] = 2, |
| 302 | [ USB_ENDPOINT_XFER_INT ] = 3, |
| 303 | }; |
| 304 | |
| 305 | // -------------------------------------------------------------- |
| 306 | // internal functions, 16bit + 32bit |
| 307 | |
| 308 | static void xhci_doorbell(struct usb_xhci_s *xhci, u32 slotid, u32 value) |
| 309 | { |
| 310 | struct xhci_db *db = GET_LOWFLAT(xhci->db); |
| 311 | u32 addr = (u32)(&db[slotid].doorbell); |
| 312 | pci_writel(addr, value); |
| 313 | } |
| 314 | |
| 315 | static void xhci_process_events(struct usb_xhci_s *xhci) |
| 316 | { |
| 317 | struct xhci_ring *evts = GET_LOWFLAT(xhci->evts); |
| 318 | |
| 319 | for (;;) { |
| 320 | /* check for event */ |
| 321 | u32 nidx = GET_LOWFLAT(evts->nidx); |
| 322 | u32 cs = GET_LOWFLAT(evts->cs); |
| 323 | struct xhci_trb *etrb = evts->ring + nidx; |
| 324 | u32 control = GET_LOWFLAT(etrb->control); |
| 325 | if ((control & TRB_C) != (cs ? 1 : 0)) |
| 326 | return; |
| 327 | |
| 328 | /* process event */ |
| 329 | u32 evt_type = TRB_TYPE(control); |
| 330 | u32 evt_cc = (GET_LOWFLAT(etrb->status) >> 24) & 0xff; |
| 331 | switch (evt_type) { |
| 332 | case ER_TRANSFER: |
| 333 | case ER_COMMAND_COMPLETE: |
| 334 | { |
| 335 | struct xhci_trb *rtrb = (void*)GET_LOWFLAT(etrb->ptr_low); |
| 336 | struct xhci_ring *ring = XHCI_RING(rtrb); |
| 337 | struct xhci_trb *evt = &ring->evt; |
| 338 | u32 eidx = rtrb - ring->ring + 1; |
| 339 | dprintf(5, "%s: ring %p [trb %p, evt %p, type %d, eidx %d, cc %d]\n", |
| 340 | __func__, ring, rtrb, evt, evt_type, eidx, evt_cc); |
| 341 | memcpy_fl(evt, etrb, sizeof(*etrb)); |
| 342 | SET_LOWFLAT(ring->eidx, eidx); |
| 343 | break; |
| 344 | } |
| 345 | case ER_PORT_STATUS_CHANGE: |
| 346 | { |
| 347 | u32 portid = (GET_LOWFLAT(etrb->ptr_low) >> 24) & 0xff; |
| 348 | dprintf(3, "%s: status change port #%d\n", |
| 349 | __func__, portid); |
| 350 | break; |
| 351 | } |
| 352 | default: |
| 353 | dprintf(1, "%s: unknown event, type %d, cc %d\n", |
| 354 | __func__, evt_type, evt_cc); |
| 355 | break; |
| 356 | } |
| 357 | |
| 358 | /* move ring index, notify xhci */ |
| 359 | nidx++; |
| 360 | if (nidx == XHCI_RING_ITEMS) { |
| 361 | nidx = 0; |
| 362 | cs = cs ? 0 : 1; |
| 363 | SET_LOWFLAT(evts->cs, cs); |
| 364 | } |
| 365 | SET_LOWFLAT(evts->nidx, nidx); |
| 366 | struct xhci_ir *ir = GET_LOWFLAT(xhci->ir); |
| 367 | u32 addr = (u32)(&ir->erdp_low); |
| 368 | u32 erdp = (u32)(evts->ring + nidx); |
| 369 | pci_writel(addr, erdp); |
Kevin O'Connor | 6bdc59f | 2013-12-27 13:34:55 -0500 | [diff] [blame] | 370 | pci_writel((u32)(&ir->erdp_high), 0); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 371 | } |
| 372 | } |
| 373 | |
| 374 | static int xhci_ring_busy(struct xhci_ring *ring) |
| 375 | { |
| 376 | u32 eidx = GET_LOWFLAT(ring->eidx); |
| 377 | u32 nidx = GET_LOWFLAT(ring->nidx); |
| 378 | return (eidx != nidx); |
| 379 | } |
| 380 | |
| 381 | static int xhci_event_wait(struct usb_xhci_s *xhci, |
| 382 | struct xhci_ring *ring, |
| 383 | u32 timeout) |
| 384 | { |
| 385 | u32 end = timer_calc(timeout); |
| 386 | |
| 387 | for (;;) { |
| 388 | xhci_process_events(xhci); |
| 389 | if (!xhci_ring_busy(ring)) { |
| 390 | u32 status = GET_LOWFLAT(ring->evt.status); |
| 391 | return (status >> 24) & 0xff; |
| 392 | } |
| 393 | if (timer_check(end)) { |
| 394 | warn_timeout(); |
| 395 | return -1; |
| 396 | } |
| 397 | yield(); |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | static void xhci_trb_queue(struct xhci_ring *ring, |
| 402 | struct xhci_trb *trb) |
| 403 | { |
| 404 | u32 nidx = GET_LOWFLAT(ring->nidx); |
| 405 | u32 cs = GET_LOWFLAT(ring->cs); |
| 406 | struct xhci_trb *dst; |
| 407 | u32 control; |
| 408 | |
| 409 | if (nidx == XHCI_RING_ITEMS-1) { |
| 410 | dst = ring->ring + nidx; |
| 411 | control = (TR_LINK << 10); // trb type |
| 412 | control |= TRB_LK_TC; |
| 413 | control |= (cs ? TRB_C : 0); |
| 414 | SET_LOWFLAT(dst->ptr_low, (u32)&ring[0]); |
| 415 | SET_LOWFLAT(dst->ptr_high, 0); |
| 416 | SET_LOWFLAT(dst->status, 0); |
| 417 | SET_LOWFLAT(dst->control, control); |
| 418 | nidx = 0; |
| 419 | cs = cs ? 0 : 1; |
| 420 | SET_LOWFLAT(ring->nidx, nidx); |
| 421 | SET_LOWFLAT(ring->cs, cs); |
| 422 | |
| 423 | dprintf(5, "%s: ring %p [linked]\n", __func__, ring); |
| 424 | } |
| 425 | |
| 426 | dst = ring->ring + nidx; |
| 427 | control = GET_LOWFLAT(trb->control) | (cs ? TRB_C : 0); |
| 428 | |
| 429 | SET_LOWFLAT(dst->ptr_low, GET_LOWFLAT(trb->ptr_low)); |
| 430 | SET_LOWFLAT(dst->ptr_high, GET_LOWFLAT(trb->ptr_high)); |
| 431 | SET_LOWFLAT(dst->status, GET_LOWFLAT(trb->status)); |
| 432 | SET_LOWFLAT(dst->control, control); |
| 433 | nidx++; |
| 434 | SET_LOWFLAT(ring->nidx, nidx); |
| 435 | |
| 436 | dprintf(5, "%s: ring %p [nidx %d, len %d]\n", |
| 437 | __func__, ring, nidx, |
| 438 | GET_LOWFLAT(trb->status) & 0xffff); |
| 439 | } |
| 440 | |
| 441 | static void xhci_xfer_queue(struct xhci_pipe *pipe, |
| 442 | struct xhci_trb *trb) |
| 443 | { |
| 444 | xhci_trb_queue(&pipe->reqs, trb); |
| 445 | } |
| 446 | |
| 447 | static void xhci_xfer_kick(struct xhci_pipe *pipe) |
| 448 | { |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 449 | struct usb_xhci_s *xhci = container_of( |
| 450 | GET_LOWFLAT(pipe->pipe.cntl), struct usb_xhci_s, usb); |
| 451 | u32 slotid = GET_LOWFLAT(pipe->slotid); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 452 | u32 epid = GET_LOWFLAT(pipe->epid); |
| 453 | |
| 454 | dprintf(5, "%s: ring %p, slotid %d, epid %d\n", |
| 455 | __func__, &pipe->reqs, slotid, epid); |
| 456 | xhci_doorbell(xhci, slotid, epid); |
| 457 | } |
| 458 | |
| 459 | static void xhci_xfer_normal(struct xhci_pipe *pipe, |
| 460 | void *data, int datalen) |
| 461 | { |
| 462 | struct xhci_trb trb; |
| 463 | |
| 464 | memset(&trb, 0, sizeof(trb)); |
| 465 | trb.ptr_low = (u32)data; |
| 466 | trb.status = datalen; |
| 467 | trb.control |= (TR_NORMAL << 10); // trb type |
| 468 | trb.control |= TRB_TR_IOC; |
| 469 | |
| 470 | xhci_xfer_queue(pipe, MAKE_FLATPTR(GET_SEG(SS), &trb)); |
| 471 | xhci_xfer_kick(pipe); |
| 472 | } |
| 473 | |
| 474 | // -------------------------------------------------------------- |
| 475 | // internal functions, pure 32bit |
| 476 | |
| 477 | static int wait_bit(u32 *reg, u32 mask, int value, u32 timeout) |
| 478 | { |
| 479 | ASSERT32FLAT(); |
| 480 | u32 end = timer_calc(timeout); |
| 481 | |
| 482 | while ((readl(reg) & mask) != value) { |
| 483 | if (timer_check(end)) { |
| 484 | warn_timeout(); |
| 485 | return -1; |
| 486 | } |
| 487 | yield(); |
| 488 | } |
| 489 | return 0; |
| 490 | } |
| 491 | |
| 492 | static int xhci_cmd_submit(struct usb_xhci_s *xhci, |
| 493 | struct xhci_trb *cmd) |
| 494 | { |
| 495 | ASSERT32FLAT(); |
| 496 | int rc; |
| 497 | |
| 498 | mutex_lock(&xhci->cmds->lock); |
| 499 | xhci_trb_queue(xhci->cmds, cmd); |
| 500 | xhci_doorbell(xhci, 0, 0); |
| 501 | rc = xhci_event_wait(xhci, xhci->cmds, 1000); |
| 502 | mutex_unlock(&xhci->cmds->lock); |
| 503 | return rc; |
| 504 | } |
| 505 | |
| 506 | static int xhci_cmd_enable_slot(struct usb_xhci_s *xhci) |
| 507 | { |
| 508 | ASSERT32FLAT(); |
| 509 | struct xhci_trb cmd = { |
| 510 | .ptr_low = 0, |
| 511 | .ptr_high = 0, |
| 512 | .status = 0, |
| 513 | .control = (CR_ENABLE_SLOT << 10) |
| 514 | }; |
| 515 | dprintf(3, "%s:\n", __func__); |
| 516 | int cc = xhci_cmd_submit(xhci, &cmd); |
| 517 | if (cc != CC_SUCCESS) |
| 518 | return -1; |
| 519 | return (xhci->cmds->evt.control >> 24) & 0xff; |
| 520 | } |
| 521 | |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 522 | #if 0 |
| 523 | static int xhci_cmd_disable_slot(struct usb_xhci_s *xhci, u32 slotid) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 524 | { |
| 525 | ASSERT32FLAT(); |
| 526 | struct xhci_trb cmd = { |
| 527 | .ptr_low = 0, |
| 528 | .ptr_high = 0, |
| 529 | .status = 0, |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 530 | .control = (slotid << 24) | (CR_DISABLE_SLOT << 10) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 531 | }; |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 532 | dprintf(3, "%s: slotid %d\n", __func__, slotid); |
| 533 | return xhci_cmd_submit(xhci, &cmd); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 534 | } |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 535 | #endif |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 536 | |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 537 | static int xhci_cmd_address_device(struct usb_xhci_s *xhci, u32 slotid |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 538 | , struct xhci_inctx *inctx) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 539 | { |
| 540 | ASSERT32FLAT(); |
| 541 | struct xhci_trb cmd = { |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 542 | .ptr_low = (u32)inctx, |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 543 | .ptr_high = 0, |
| 544 | .status = 0, |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 545 | .control = (slotid << 24) | (CR_ADDRESS_DEVICE << 10) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 546 | }; |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 547 | dprintf(3, "%s: slotid %d\n", __func__, slotid); |
| 548 | return xhci_cmd_submit(xhci, &cmd); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 549 | } |
| 550 | |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 551 | static int xhci_cmd_configure_endpoint(struct usb_xhci_s *xhci, u32 slotid |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 552 | , struct xhci_inctx *inctx) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 553 | { |
| 554 | ASSERT32FLAT(); |
| 555 | struct xhci_trb cmd = { |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 556 | .ptr_low = (u32)inctx, |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 557 | .ptr_high = 0, |
| 558 | .status = 0, |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 559 | .control = (slotid << 24) | (CR_CONFIGURE_ENDPOINT << 10) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 560 | }; |
| 561 | dprintf(3, "%s: slotid %d, add 0x%x, del 0x%x\n", __func__, |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 562 | slotid, inctx->add, inctx->del); |
| 563 | return xhci_cmd_submit(xhci, &cmd); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 564 | } |
| 565 | |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 566 | static int xhci_cmd_evaluate_context(struct usb_xhci_s *xhci, u32 slotid |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 567 | , struct xhci_inctx *inctx) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 568 | { |
| 569 | ASSERT32FLAT(); |
| 570 | struct xhci_trb cmd = { |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 571 | .ptr_low = (u32)inctx, |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 572 | .ptr_high = 0, |
| 573 | .status = 0, |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 574 | .control = (slotid << 24) | (CR_EVALUATE_CONTEXT << 10) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 575 | }; |
| 576 | dprintf(3, "%s: slotid %d, add 0x%x, del 0x%x\n", __func__, |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 577 | slotid, inctx->add, inctx->del); |
| 578 | return xhci_cmd_submit(xhci, &cmd); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | static void xhci_xfer_setup(struct xhci_pipe *pipe, |
| 582 | const struct usb_ctrlrequest *req, |
| 583 | int dir, int datalen) |
| 584 | { |
| 585 | ASSERT32FLAT(); |
| 586 | struct xhci_trb trb; |
| 587 | |
| 588 | memset(&trb, 0, sizeof(trb)); |
| 589 | trb.ptr_low |= req->bRequestType; |
| 590 | trb.ptr_low |= (req->bRequest) << 8; |
| 591 | trb.ptr_low |= (req->wValue) << 16; |
| 592 | trb.ptr_high |= req->wIndex; |
| 593 | trb.ptr_high |= (req->wLength) << 16; |
| 594 | trb.status |= 8; // length |
| 595 | trb.control |= (TR_SETUP << 10); // trb type |
| 596 | trb.control |= TRB_TR_IDT; |
| 597 | if (datalen) |
| 598 | trb.control |= (dir ? 3 : 2) << 16; // transfer type |
| 599 | xhci_xfer_queue(pipe, &trb); |
| 600 | } |
| 601 | |
| 602 | static void xhci_xfer_data(struct xhci_pipe *pipe, |
| 603 | int dir, void *data, int datalen) |
| 604 | { |
| 605 | ASSERT32FLAT(); |
| 606 | struct xhci_trb trb; |
| 607 | |
| 608 | memset(&trb, 0, sizeof(trb)); |
| 609 | trb.ptr_low = (u32)data; |
| 610 | trb.status = datalen; |
| 611 | trb.control |= (TR_DATA << 10); // trb type |
| 612 | if (dir) |
| 613 | trb.control |= (1 << 16); |
| 614 | xhci_xfer_queue(pipe, &trb); |
| 615 | } |
| 616 | |
Kevin O'Connor | 1b830fe | 2013-12-27 13:41:28 -0500 | [diff] [blame] | 617 | static void xhci_xfer_status(struct xhci_pipe *pipe, int dir, int datalen) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 618 | { |
| 619 | ASSERT32FLAT(); |
| 620 | struct xhci_trb trb; |
| 621 | |
| 622 | memset(&trb, 0, sizeof(trb)); |
| 623 | trb.control |= (TR_STATUS << 10); // trb type |
| 624 | trb.control |= TRB_TR_IOC; |
Kevin O'Connor | 1b830fe | 2013-12-27 13:41:28 -0500 | [diff] [blame] | 625 | if (!datalen || !dir) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 626 | trb.control |= (1 << 16); |
| 627 | |
| 628 | xhci_xfer_queue(pipe, &trb); |
| 629 | xhci_xfer_kick(pipe); |
| 630 | } |
| 631 | |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 632 | static void |
| 633 | configure_xhci(void *data) |
| 634 | { |
| 635 | ASSERT32FLAT(); |
| 636 | struct usb_xhci_s *xhci = data; |
| 637 | u32 reg; |
| 638 | |
| 639 | xhci->devs = memalign_high(64, sizeof(*xhci->devs) * (xhci->slots + 1)); |
| 640 | xhci->eseg = memalign_high(64, sizeof(*xhci->eseg)); |
| 641 | xhci->cmds = memalign_high(XHCI_RING_SIZE, sizeof(*xhci->cmds)); |
| 642 | xhci->evts = memalign_low(XHCI_RING_SIZE, sizeof(*xhci->evts)); |
| 643 | if (!xhci->devs || !xhci->cmds || !xhci->evts || !xhci->eseg) { |
| 644 | warn_noalloc(); |
| 645 | goto fail; |
| 646 | } |
| 647 | memset(xhci->devs, 0, sizeof(*xhci->devs) * (xhci->slots + 1)); |
| 648 | memset(xhci->cmds, 0, sizeof(*xhci->cmds)); |
| 649 | memset(xhci->evts, 0, sizeof(*xhci->evts)); |
| 650 | memset(xhci->eseg, 0, sizeof(*xhci->eseg)); |
| 651 | |
| 652 | reg = readl(&xhci->op->usbcmd); |
| 653 | if (reg & XHCI_CMD_RS) { |
| 654 | reg &= ~XHCI_CMD_RS; |
| 655 | writel(&xhci->op->usbcmd, reg); |
| 656 | if (wait_bit(&xhci->op->usbsts, XHCI_STS_HCH, XHCI_STS_HCH, 32) != 0) |
| 657 | goto fail; |
| 658 | } |
| 659 | |
| 660 | dprintf(3, "%s: resetting\n", __func__); |
| 661 | writel(&xhci->op->usbcmd, XHCI_CMD_HCRST); |
| 662 | if (wait_bit(&xhci->op->usbcmd, XHCI_CMD_HCRST, 0, 100) != 0) |
| 663 | goto fail; |
| 664 | if (wait_bit(&xhci->op->usbsts, XHCI_STS_CNR, 0, 100) != 0) |
| 665 | goto fail; |
| 666 | |
| 667 | writel(&xhci->op->config, xhci->slots); |
| 668 | writel(&xhci->op->dcbaap_low, (u32)xhci->devs); |
| 669 | writel(&xhci->op->dcbaap_high, 0); |
| 670 | writel(&xhci->op->crcr_low, (u32)xhci->cmds | 1); |
| 671 | writel(&xhci->op->crcr_high, 0); |
| 672 | xhci->cmds->cs = 1; |
| 673 | |
| 674 | xhci->eseg->ptr_low = (u32)xhci->evts; |
| 675 | xhci->eseg->ptr_high = 0; |
| 676 | xhci->eseg->size = XHCI_RING_ITEMS; |
| 677 | writel(&xhci->ir->erstsz, 1); |
| 678 | writel(&xhci->ir->erdp_low, (u32)xhci->evts); |
| 679 | writel(&xhci->ir->erdp_high, 0); |
| 680 | writel(&xhci->ir->erstba_low, (u32)xhci->eseg); |
| 681 | writel(&xhci->ir->erstba_high, 0); |
| 682 | xhci->evts->cs = 1; |
| 683 | |
Gerd Hoffmann | d42b795 | 2013-12-06 16:08:01 +0100 | [diff] [blame] | 684 | reg = readl(&xhci->caps->hcsparams2); |
| 685 | u32 spb = reg >> 27; |
| 686 | if (spb) { |
| 687 | dprintf(3, "%s: setup %d scratch pad buffers\n", __func__, spb); |
| 688 | u64 *spba = memalign_high(64, sizeof(*spba) * spb); |
Kevin O'Connor | 347f363 | 2013-12-27 18:30:02 -0500 | [diff] [blame] | 689 | void *pad = memalign_high(PAGE_SIZE, PAGE_SIZE * spb); |
Gerd Hoffmann | d42b795 | 2013-12-06 16:08:01 +0100 | [diff] [blame] | 690 | int i; |
| 691 | for (i = 0; i < spb; i++) |
Kevin O'Connor | 347f363 | 2013-12-27 18:30:02 -0500 | [diff] [blame] | 692 | spba[i] = (u32)pad + (i * PAGE_SIZE); |
Gerd Hoffmann | d42b795 | 2013-12-06 16:08:01 +0100 | [diff] [blame] | 693 | xhci->devs[0].ptr_low = (u32)spba; |
| 694 | xhci->devs[0].ptr_high = 0; |
| 695 | } |
| 696 | |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 697 | reg = readl(&xhci->op->usbcmd); |
| 698 | reg |= XHCI_CMD_RS; |
| 699 | writel(&xhci->op->usbcmd, reg); |
| 700 | |
| 701 | // FIXME: try find a more elegant way than a fixed delay |
| 702 | mdelay(100); |
| 703 | |
| 704 | usb_enumerate(&xhci->hub); |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 705 | // XXX - should walk list of pipes and free unused pipes. |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 706 | if (xhci->hub.devcount) |
| 707 | return; |
| 708 | |
| 709 | // No devices found - shutdown and free controller. |
| 710 | dprintf(1, "XHCI no devices found\n"); |
| 711 | reg = readl(&xhci->op->usbcmd); |
| 712 | reg &= ~XHCI_CMD_RS; |
| 713 | writel(&xhci->op->usbcmd, reg); |
| 714 | wait_bit(&xhci->op->usbsts, XHCI_STS_HCH, XHCI_STS_HCH, 32); |
| 715 | |
| 716 | fail: |
| 717 | free(xhci->eseg); |
| 718 | free(xhci->evts); |
| 719 | free(xhci->cmds); |
| 720 | free(xhci->devs); |
| 721 | free(xhci); |
| 722 | } |
| 723 | |
| 724 | // -------------------------------------------------------------- |
| 725 | // xhci root hub |
| 726 | |
| 727 | // Check if device attached to port |
| 728 | static void |
| 729 | xhci_print_port_state(int loglevel, const char *prefix, u32 port, u32 portsc) |
| 730 | { |
| 731 | ASSERT32FLAT(); |
| 732 | u32 pls = xhci_get_field(portsc, XHCI_PORTSC_PLS); |
| 733 | u32 speed = xhci_get_field(portsc, XHCI_PORTSC_SPEED); |
| 734 | |
| 735 | dprintf(loglevel, "%s port #%d: 0x%08x,%s%s pls %d, speed %d [%s]\n", |
| 736 | prefix, port + 1, portsc, |
| 737 | (portsc & XHCI_PORTSC_PP) ? " powered," : "", |
| 738 | (portsc & XHCI_PORTSC_PED) ? " enabled," : "", |
| 739 | pls, speed, speed_name[speed]); |
| 740 | } |
| 741 | |
| 742 | static int |
| 743 | xhci_hub_detect(struct usbhub_s *hub, u32 port) |
| 744 | { |
| 745 | ASSERT32FLAT(); |
| 746 | struct usb_xhci_s *xhci = container_of(hub->cntl, struct usb_xhci_s, usb); |
| 747 | u32 portsc = readl(&xhci->pr[port].portsc); |
| 748 | |
| 749 | xhci_print_port_state(3, __func__, port, portsc); |
| 750 | switch (xhci_get_field(portsc, XHCI_PORTSC_PLS)) { |
| 751 | case PLS_U0: |
| 752 | case PLS_POLLING: |
| 753 | return 0; |
| 754 | default: |
| 755 | return -1; |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | // Reset device on port |
| 760 | static int |
| 761 | xhci_hub_reset(struct usbhub_s *hub, u32 port) |
| 762 | { |
| 763 | ASSERT32FLAT(); |
| 764 | struct usb_xhci_s *xhci = container_of(hub->cntl, struct usb_xhci_s, usb); |
| 765 | u32 portsc = readl(&xhci->pr[port].portsc); |
| 766 | int rc; |
| 767 | |
| 768 | switch (xhci_get_field(portsc, XHCI_PORTSC_PLS)) { |
| 769 | case PLS_U0: |
| 770 | rc = speed_from_xhci[xhci_get_field(portsc, XHCI_PORTSC_SPEED)]; |
| 771 | break; |
| 772 | case PLS_POLLING: |
| 773 | xhci_print_port_state(3, __func__, port, portsc); |
| 774 | portsc |= XHCI_PORTSC_PR; |
| 775 | writel(&xhci->pr[port].portsc, portsc); |
| 776 | if (wait_bit(&xhci->pr[port].portsc, XHCI_PORTSC_PED, XHCI_PORTSC_PED, 100) != 0) |
| 777 | return -1; |
| 778 | portsc = readl(&xhci->pr[port].portsc); |
| 779 | rc = speed_from_xhci[xhci_get_field(portsc, XHCI_PORTSC_SPEED)]; |
| 780 | break; |
| 781 | default: |
| 782 | rc = -1; |
| 783 | break; |
| 784 | } |
| 785 | |
| 786 | xhci_print_port_state(1, "XHCI", port, portsc); |
| 787 | return rc; |
| 788 | } |
| 789 | |
| 790 | static void |
| 791 | xhci_hub_disconnect(struct usbhub_s *hub, u32 port) |
| 792 | { |
| 793 | ASSERT32FLAT(); |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 794 | // XXX - should turn the port power off. |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | static struct usbhub_op_s xhci_hub_ops = { |
| 798 | .detect = xhci_hub_detect, |
| 799 | .reset = xhci_hub_reset, |
| 800 | .disconnect = xhci_hub_disconnect, |
| 801 | }; |
| 802 | |
| 803 | // -------------------------------------------------------------- |
| 804 | // external interface |
| 805 | |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 806 | |
| 807 | static struct xhci_inctx * |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 808 | xhci_alloc_inctx(struct usbdevice_s *usbdev) |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 809 | { |
| 810 | struct xhci_inctx *in = memalign_tmphigh(4096, sizeof(*in)); |
| 811 | if (!in) { |
| 812 | warn_noalloc(); |
| 813 | return NULL; |
| 814 | } |
| 815 | memset(in, 0, sizeof(*in)); |
| 816 | |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 817 | u32 route = 0; |
| 818 | while (usbdev->hub->usbdev) { |
| 819 | route <<= 4; |
| 820 | route |= (usbdev->port+1) & 0xf; |
| 821 | usbdev = usbdev->hub->usbdev; |
| 822 | } |
| 823 | |
| 824 | in->add = 0x01; |
| 825 | in->slot.ctx[0] |= (1 << 27); // context entries |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 826 | in->slot.ctx[0] |= speed_to_xhci[usbdev->speed] << 20; |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 827 | in->slot.ctx[0] |= route; |
| 828 | in->slot.ctx[1] |= (usbdev->port+1) << 16; |
| 829 | /* TODO ctx0: hub bit */ |
| 830 | /* TODO ctx1: hub ports */ |
| 831 | return in; |
| 832 | } |
| 833 | |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 834 | struct usb_pipe * |
| 835 | xhci_alloc_pipe(struct usbdevice_s *usbdev |
| 836 | , struct usb_endpoint_descriptor *epdesc) |
| 837 | { |
| 838 | ASSERT32FLAT(); |
| 839 | if (!CONFIG_USB_XHCI) |
| 840 | return NULL; |
| 841 | u8 eptype = epdesc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK; |
| 842 | struct usb_xhci_s *xhci = container_of( |
| 843 | usbdev->hub->cntl, struct usb_xhci_s, usb); |
| 844 | struct xhci_pipe *pipe; |
| 845 | u32 epid; |
| 846 | |
| 847 | if (epdesc->bEndpointAddress == 0) { |
| 848 | epid = 1; |
| 849 | } else { |
| 850 | epid = (epdesc->bEndpointAddress & 0x0f) * 2; |
| 851 | epid += (epdesc->bEndpointAddress & USB_DIR_IN) ? 1 : 0; |
| 852 | } |
| 853 | |
| 854 | if (eptype == USB_ENDPOINT_XFER_CONTROL) |
| 855 | pipe = memalign_high(XHCI_RING_SIZE, sizeof(*pipe)); |
| 856 | else |
| 857 | pipe = memalign_low(XHCI_RING_SIZE, sizeof(*pipe)); |
| 858 | if (!pipe) { |
| 859 | warn_noalloc(); |
| 860 | return NULL; |
| 861 | } |
| 862 | memset(pipe, 0, sizeof(*pipe)); |
| 863 | |
| 864 | usb_desc2pipe(&pipe->pipe, usbdev, epdesc); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 865 | pipe->epid = epid; |
| 866 | pipe->reqs.cs = 1; |
| 867 | if (eptype == USB_ENDPOINT_XFER_INT) |
| 868 | pipe->buf = malloc_low(pipe->pipe.maxpacket); |
| 869 | |
| 870 | dprintf(3, "%s: usbdev %p, ring %p, slotid %d, epid %d\n", __func__, |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 871 | usbdev, &pipe->reqs, pipe->slotid, pipe->epid); |
Kevin O'Connor | 4ea2fa9 | 2013-12-27 19:25:46 -0500 | [diff] [blame] | 872 | if (pipe->epid == 1) { |
| 873 | // Enable slot and send set_address command. |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 874 | struct xhci_slotctx *dev = memalign_high(2048, sizeof(*dev)); |
| 875 | if (!dev) { |
| 876 | warn_noalloc(); |
| 877 | goto fail; |
| 878 | } |
Kevin O'Connor | 4ea2fa9 | 2013-12-27 19:25:46 -0500 | [diff] [blame] | 879 | int slotid = xhci_cmd_enable_slot(xhci); |
| 880 | if (slotid < 0) { |
| 881 | dprintf(1, "%s: enable slot: failed\n", __func__); |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 882 | free(dev); |
Kevin O'Connor | 4ea2fa9 | 2013-12-27 19:25:46 -0500 | [diff] [blame] | 883 | goto fail; |
| 884 | } |
| 885 | dprintf(3, "%s: enable slot: got slotid %d\n", __func__, slotid); |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 886 | |
| 887 | memset(dev, 0, sizeof(*dev)); |
| 888 | pipe->slotid = usbdev->slotid = slotid; |
| 889 | xhci->devs[slotid].ptr_low = (u32)dev; |
Kevin O'Connor | 4ea2fa9 | 2013-12-27 19:25:46 -0500 | [diff] [blame] | 890 | xhci->devs[slotid].ptr_high = 0; |
| 891 | |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 892 | struct xhci_inctx *in = xhci_alloc_inctx(usbdev); |
| 893 | if (!in) |
| 894 | goto fail; |
Kevin O'Connor | 4ea2fa9 | 2013-12-27 19:25:46 -0500 | [diff] [blame] | 895 | in->add |= (1 << 1); |
| 896 | |
| 897 | in->ep[0].ctx[0] |= (3 << 16); // interval: 1ms |
| 898 | in->ep[0].ctx[1] |= (4 << 3); // control pipe |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 899 | in->ep[0].ctx[1] |= (speed_to_ctlsize[usbdev->speed] << 16); |
Kevin O'Connor | 4ea2fa9 | 2013-12-27 19:25:46 -0500 | [diff] [blame] | 900 | |
| 901 | in->ep[0].deq_low = (u32)&pipe->reqs.ring[0]; |
| 902 | in->ep[0].deq_low |= 1; // dcs |
| 903 | in->ep[0].deq_high = 0; |
| 904 | in->ep[0].length = 8; |
| 905 | |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 906 | int cc = xhci_cmd_address_device(xhci, slotid, in); |
Kevin O'Connor | 4ea2fa9 | 2013-12-27 19:25:46 -0500 | [diff] [blame] | 907 | free(in); |
| 908 | if (cc != CC_SUCCESS) { |
| 909 | dprintf(1, "%s: address device: failed (cc %d)\n", __func__, cc); |
| 910 | goto fail; |
| 911 | } |
| 912 | } else { |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 913 | struct xhci_inctx *in = xhci_alloc_inctx(usbdev); |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 914 | if (!in) |
| 915 | goto fail; |
| 916 | in->add |= (1 << pipe->epid); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 917 | in->slot.ctx[0] |= (31 << 27); // context entries |
| 918 | |
| 919 | int e = pipe->epid-1; |
Kevin O'Connor | b6a4065 | 2013-12-27 13:37:11 -0500 | [diff] [blame] | 920 | if (eptype == USB_ENDPOINT_XFER_INT) |
| 921 | in->ep[e].ctx[0] = (usb_getFrameExp(usbdev, epdesc) + 3) << 16; |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 922 | in->ep[e].ctx[1] |= (eptype << 3); |
| 923 | if (epdesc->bEndpointAddress & USB_DIR_IN) |
| 924 | in->ep[e].ctx[1] |= (1 << 5); |
| 925 | in->ep[e].ctx[1] |= (pipe->pipe.maxpacket << 16); |
| 926 | in->ep[e].deq_low = (u32)&pipe->reqs.ring[0]; |
| 927 | in->ep[e].deq_low |= 1; // dcs |
| 928 | in->ep[e].deq_high = 0; |
| 929 | in->ep[e].length = pipe->pipe.maxpacket; |
| 930 | |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 931 | pipe->slotid = usbdev->slotid; |
| 932 | int cc = xhci_cmd_configure_endpoint(xhci, pipe->slotid, in); |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 933 | free(in); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 934 | if (cc != CC_SUCCESS) { |
| 935 | dprintf(1, "%s: configure endpoint: failed (cc %d)\n", __func__, cc); |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 936 | goto fail; |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 937 | } |
| 938 | } |
| 939 | |
| 940 | return &pipe->pipe; |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 941 | fail: |
| 942 | free(pipe); |
| 943 | return NULL; |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 944 | } |
| 945 | |
| 946 | struct usb_pipe * |
| 947 | xhci_update_pipe(struct usbdevice_s *usbdev, struct usb_pipe *upipe |
| 948 | , struct usb_endpoint_descriptor *epdesc) |
| 949 | { |
| 950 | ASSERT32FLAT(); |
| 951 | if (!CONFIG_USB_XHCI) |
| 952 | return NULL; |
| 953 | u8 eptype = epdesc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK; |
| 954 | struct xhci_pipe *pipe = container_of(upipe, struct xhci_pipe, pipe); |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 955 | struct usb_xhci_s *xhci = container_of( |
| 956 | pipe->pipe.cntl, struct usb_xhci_s, usb); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 957 | dprintf(3, "%s: usbdev %p, ring %p, slotid %d, epid %d\n", __func__, |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 958 | usbdev, &pipe->reqs, pipe->slotid, pipe->epid); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 959 | if (eptype == USB_ENDPOINT_XFER_CONTROL && |
| 960 | pipe->pipe.maxpacket != epdesc->wMaxPacketSize) { |
| 961 | dprintf(1, "%s: reconf ctl endpoint pkt size: %d -> %d\n", |
| 962 | __func__, pipe->pipe.maxpacket, epdesc->wMaxPacketSize); |
| 963 | pipe->pipe.maxpacket = epdesc->wMaxPacketSize; |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 964 | struct xhci_inctx *in = xhci_alloc_inctx(usbdev); |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 965 | if (!in) |
| 966 | return upipe; |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 967 | in->add = (1 << 1); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 968 | in->ep[0].ctx[1] |= (pipe->pipe.maxpacket << 16); |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 969 | int cc = xhci_cmd_evaluate_context(xhci, pipe->slotid, in); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 970 | if (cc != CC_SUCCESS) { |
| 971 | dprintf(1, "%s: reconf ctl endpoint: failed (cc %d)\n", |
| 972 | __func__, cc); |
| 973 | } |
Kevin O'Connor | d477d55 | 2013-12-27 18:09:16 -0500 | [diff] [blame] | 974 | free(in); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 975 | } |
| 976 | return upipe; |
| 977 | } |
| 978 | |
| 979 | int |
| 980 | xhci_control(struct usb_pipe *p, int dir, const void *cmd, int cmdsize |
| 981 | , void *data, int datalen) |
| 982 | { |
| 983 | ASSERT32FLAT(); |
| 984 | if (!CONFIG_USB_XHCI) |
| 985 | return -1; |
| 986 | const struct usb_ctrlrequest *req = cmd; |
| 987 | struct xhci_pipe *pipe = container_of(p, struct xhci_pipe, pipe); |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 988 | struct usb_xhci_s *xhci = container_of( |
| 989 | pipe->pipe.cntl, struct usb_xhci_s, usb); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 990 | |
Kevin O'Connor | 4ea2fa9 | 2013-12-27 19:25:46 -0500 | [diff] [blame] | 991 | if (req->bRequest == USB_REQ_SET_ADDRESS) |
| 992 | // Set address command sent during xhci_alloc_pipe. |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 993 | return 0; |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 994 | |
| 995 | xhci_xfer_setup(pipe, req, dir, datalen); |
| 996 | if (datalen) |
| 997 | xhci_xfer_data(pipe, dir, data, datalen); |
Kevin O'Connor | 1b830fe | 2013-12-27 13:41:28 -0500 | [diff] [blame] | 998 | xhci_xfer_status(pipe, dir, datalen); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 999 | |
Kevin O'Connor | 4ea2fa9 | 2013-12-27 19:25:46 -0500 | [diff] [blame] | 1000 | int cc = xhci_event_wait(xhci, &pipe->reqs, 1000); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1001 | if (cc != CC_SUCCESS) { |
| 1002 | dprintf(1, "%s: control xfer failed (cc %d)\n", __func__, cc); |
| 1003 | return -1; |
| 1004 | } |
| 1005 | |
| 1006 | return 0; |
| 1007 | } |
| 1008 | |
| 1009 | int |
| 1010 | xhci_send_bulk(struct usb_pipe *p, int dir, void *data, int datalen) |
| 1011 | { |
| 1012 | if (!CONFIG_USB_XHCI) |
| 1013 | return -1; |
| 1014 | |
| 1015 | struct xhci_pipe *pipe = container_of(p, struct xhci_pipe, pipe); |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 1016 | struct usb_xhci_s *xhci = container_of( |
| 1017 | GET_LOWFLAT(pipe->pipe.cntl), struct usb_xhci_s, usb); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1018 | |
| 1019 | xhci_xfer_normal(pipe, data, datalen); |
| 1020 | int cc = xhci_event_wait(xhci, &pipe->reqs, 1000); |
| 1021 | if (cc != CC_SUCCESS) { |
| 1022 | dprintf(1, "%s: bulk xfer failed (cc %d)\n", __func__, cc); |
| 1023 | return -1; |
| 1024 | } |
| 1025 | return 0; |
| 1026 | } |
| 1027 | |
| 1028 | int |
| 1029 | xhci_poll_intr(struct usb_pipe *p, void *data) |
| 1030 | { |
| 1031 | if (!CONFIG_USB_XHCI) |
| 1032 | return -1; |
| 1033 | |
| 1034 | struct xhci_pipe *pipe = container_of(p, struct xhci_pipe, pipe); |
Kevin O'Connor | 81ee3bb | 2013-12-27 21:09:53 -0500 | [diff] [blame^] | 1035 | struct usb_xhci_s *xhci = container_of( |
| 1036 | GET_LOWFLAT(pipe->pipe.cntl), struct usb_xhci_s, usb); |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1037 | u32 len = GET_LOWFLAT(pipe->pipe.maxpacket); |
| 1038 | void *buf = GET_LOWFLAT(pipe->buf); |
| 1039 | int bufused = GET_LOWFLAT(pipe->bufused); |
| 1040 | |
| 1041 | if (!bufused) { |
| 1042 | xhci_xfer_normal(pipe, buf, len); |
| 1043 | bufused = 1; |
| 1044 | SET_LOWFLAT(pipe->bufused, bufused); |
| 1045 | return -1; |
| 1046 | } |
| 1047 | |
| 1048 | xhci_process_events(xhci); |
| 1049 | if (xhci_ring_busy(&pipe->reqs)) |
| 1050 | return -1; |
| 1051 | dprintf(5, "%s: st %x ct %x [ %p <= %p / %d ]\n", __func__, |
| 1052 | GET_LOWFLAT(pipe->reqs.evt.status), |
| 1053 | GET_LOWFLAT(pipe->reqs.evt.control), |
| 1054 | MAKE_FLATPTR(GET_SEG(SS), data), buf, len); |
| 1055 | memcpy_fl(MAKE_FLATPTR(GET_SEG(SS), data), buf, len); |
| 1056 | xhci_xfer_normal(pipe, buf, len); |
| 1057 | return 0; |
| 1058 | } |
| 1059 | |
Kevin O'Connor | ec443ff | 2013-12-05 18:43:20 -0500 | [diff] [blame] | 1060 | static void |
| 1061 | xhci_controller_setup(struct pci_device *pci) |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1062 | { |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1063 | struct usb_xhci_s *xhci = malloc_low(sizeof(*xhci)); |
| 1064 | if (!xhci) { |
| 1065 | warn_noalloc(); |
Kevin O'Connor | ec443ff | 2013-12-05 18:43:20 -0500 | [diff] [blame] | 1066 | return; |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1067 | } |
| 1068 | memset(xhci, 0, sizeof(*xhci)); |
| 1069 | |
Kevin O'Connor | ec443ff | 2013-12-05 18:43:20 -0500 | [diff] [blame] | 1070 | wait_preempt(); // Avoid pci_config_readl when preempting |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1071 | xhci->baseaddr = pci_config_readl(pci->bdf, PCI_BASE_ADDRESS_0) |
| 1072 | & PCI_BASE_ADDRESS_MEM_MASK; |
| 1073 | xhci->caps = (void*)(xhci->baseaddr); |
| 1074 | xhci->op = (void*)(xhci->baseaddr + readb(&xhci->caps->caplength)); |
| 1075 | xhci->pr = (void*)(xhci->baseaddr + readb(&xhci->caps->caplength) + 0x400); |
| 1076 | xhci->db = (void*)(xhci->baseaddr + readl(&xhci->caps->dboff)); |
| 1077 | xhci->ir = (void*)(xhci->baseaddr + readl(&xhci->caps->rtsoff) + 0x20); |
| 1078 | |
| 1079 | u32 hcs1 = readl(&xhci->caps->hcsparams1); |
| 1080 | u32 hcc = readl(&xhci->caps->hccparams); |
| 1081 | xhci->ports = (hcs1 >> 24) & 0xff; |
| 1082 | xhci->slots = hcs1 & 0xff; |
| 1083 | xhci->xcap = ((hcc >> 16) & 0xffff) << 2; |
| 1084 | |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1085 | xhci->usb.pci = pci; |
| 1086 | xhci->usb.type = USB_TYPE_XHCI; |
| 1087 | xhci->hub.cntl = &xhci->usb; |
| 1088 | xhci->hub.portcount = xhci->ports; |
| 1089 | xhci->hub.op = &xhci_hub_ops; |
| 1090 | |
| 1091 | dprintf(1, "XHCI init on dev %02x:%02x.%x: regs @ %p, %d ports, %d slots\n" |
| 1092 | , pci_bdf_to_bus(pci->bdf), pci_bdf_to_dev(pci->bdf) |
| 1093 | , pci_bdf_to_fn(pci->bdf), xhci->caps |
| 1094 | , xhci->ports, xhci->slots); |
| 1095 | |
| 1096 | if (xhci->xcap) { |
| 1097 | u32 off, addr = xhci->baseaddr + xhci->xcap; |
| 1098 | do { |
| 1099 | struct xhci_xcap *xcap = (void*)addr; |
| 1100 | u32 ports, name, cap = readl(&xcap->cap); |
| 1101 | switch (cap & 0xff) { |
| 1102 | case 0x02: |
| 1103 | name = readl(&xcap->data[0]); |
| 1104 | ports = readl(&xcap->data[1]); |
| 1105 | dprintf(1, "XHCI protocol %c%c%c%c %x.%02x, %d ports (offset %d)\n" |
| 1106 | , (name >> 0) & 0xff |
| 1107 | , (name >> 8) & 0xff |
| 1108 | , (name >> 16) & 0xff |
| 1109 | , (name >> 24) & 0xff |
| 1110 | , (cap >> 24) & 0xff |
| 1111 | , (cap >> 16) & 0xff |
| 1112 | , (ports >> 8) & 0xff |
| 1113 | , (ports >> 0) & 0xff); |
| 1114 | break; |
| 1115 | default: |
| 1116 | dprintf(1, "XHCI extcap 0x%x @ %x\n", cap & 0xff, addr); |
| 1117 | break; |
| 1118 | } |
| 1119 | off = (cap >> 8) & 0xff; |
| 1120 | addr += off << 2; |
| 1121 | } while (off > 0); |
| 1122 | } |
| 1123 | |
Kevin O'Connor | 347f363 | 2013-12-27 18:30:02 -0500 | [diff] [blame] | 1124 | u32 pagesize = readl(&xhci->op->pagesize); |
| 1125 | if (PAGE_SIZE != (pagesize<<12)) { |
| 1126 | dprintf(1, "XHCI driver does not support page size code %d\n" |
| 1127 | , pagesize<<12); |
| 1128 | free(xhci); |
| 1129 | return; |
| 1130 | } |
| 1131 | |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1132 | pci_config_maskw(pci->bdf, PCI_COMMAND, 0, PCI_COMMAND_MASTER); |
| 1133 | |
| 1134 | run_thread(configure_xhci, xhci); |
Kevin O'Connor | ec443ff | 2013-12-05 18:43:20 -0500 | [diff] [blame] | 1135 | } |
| 1136 | |
| 1137 | void |
| 1138 | xhci_setup(void) |
| 1139 | { |
| 1140 | if (! CONFIG_USB_XHCI) |
| 1141 | return; |
| 1142 | struct pci_device *pci; |
| 1143 | foreachpci(pci) { |
| 1144 | if (pci_classprog(pci) == PCI_CLASS_SERIAL_USB_XHCI) |
| 1145 | xhci_controller_setup(pci); |
| 1146 | } |
Gerd Hoffmann | e144bb7 | 2013-06-03 16:30:18 +0200 | [diff] [blame] | 1147 | } |