1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * xHCI host controller driver 4 * 5 * Copyright (C) 2008 Intel Corp. 6 * 7 * Author: Sarah Sharp 8 * Some code borrowed from the Linux EHCI driver. 9 */ 10 11 /* 12 * Ring initialization rules: 13 * 1. Each segment is initialized to zero, except for link TRBs. 14 * 2. Ring cycle state = 0. This represents Producer Cycle State (PCS) or 15 * Consumer Cycle State (CCS), depending on ring function. 16 * 3. Enqueue pointer = dequeue pointer = address of first TRB in the segment. 17 * 18 * Ring behavior rules: 19 * 1. A ring is empty if enqueue == dequeue. This means there will always be at 20 * least one free TRB in the ring. This is useful if you want to turn that 21 * into a link TRB and expand the ring. 22 * 2. When incrementing an enqueue or dequeue pointer, if the next TRB is a 23 * link TRB, then load the pointer with the address in the link TRB. If the 24 * link TRB had its toggle bit set, you may need to update the ring cycle 25 * state (see cycle bit rules). You may have to do this multiple times 26 * until you reach a non-link TRB. 27 * 3. A ring is full if enqueue++ (for the definition of increment above) 28 * equals the dequeue pointer. 29 * 30 * Cycle bit rules: 31 * 1. When a consumer increments a dequeue pointer and encounters a toggle bit 32 * in a link TRB, it must toggle the ring cycle state. 33 * 2. When a producer increments an enqueue pointer and encounters a toggle bit 34 * in a link TRB, it must toggle the ring cycle state. 35 * 36 * Producer rules: 37 * 1. Check if ring is full before you enqueue. 38 * 2. Write the ring cycle state to the cycle bit in the TRB you're enqueuing. 39 * Update enqueue pointer between each write (which may update the ring 40 * cycle state). 41 * 3. Notify consumer. If SW is producer, it rings the doorbell for command 42 * and endpoint rings. If HC is the producer for the event ring, 43 * and it generates an interrupt according to interrupt modulation rules. 44 * 45 * Consumer rules: 46 * 1. Check if TRB belongs to you. If the cycle bit == your ring cycle state, 47 * the TRB is owned by the consumer. 48 * 2. Update dequeue pointer (which may update the ring cycle state) and 49 * continue processing TRBs until you reach a TRB which is not owned by you. 50 * 3. Notify the producer. SW is the consumer for the event ring, and it 51 * updates event ring dequeue pointer. HC is the consumer for the command and 52 * endpoint rings; it generates events on the event ring for these. 53 */ 54 55 #include <linux/scatterlist.h> 56 #include <linux/slab.h> 57 #include <linux/dma-mapping.h> 58 #include "xhci.h" 59 #include "xhci-trace.h" 60 61 static int queue_command(struct xhci_hcd *xhci, struct xhci_command *cmd, 62 u32 field1, u32 field2, 63 u32 field3, u32 field4, bool command_must_succeed); 64 65 /* 66 * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA 67 * address of the TRB. 68 */ 69 dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg, 70 union xhci_trb *trb) 71 { 72 unsigned long segment_offset; 73 74 if (!seg || !trb || trb < seg->trbs) 75 return 0; 76 /* offset in TRBs */ 77 segment_offset = trb - seg->trbs; 78 if (segment_offset >= TRBS_PER_SEGMENT) 79 return 0; 80 return seg->dma + (segment_offset * sizeof(*trb)); 81 } 82 83 static bool trb_is_noop(union xhci_trb *trb) 84 { 85 return TRB_TYPE_NOOP_LE32(trb->generic.field[3]); 86 } 87 88 static bool trb_is_link(union xhci_trb *trb) 89 { 90 return TRB_TYPE_LINK_LE32(trb->link.control); 91 } 92 93 static bool last_trb_on_seg(struct xhci_segment *seg, union xhci_trb *trb) 94 { 95 return trb == &seg->trbs[TRBS_PER_SEGMENT - 1]; 96 } 97 98 static bool last_trb_on_ring(struct xhci_ring *ring, 99 struct xhci_segment *seg, union xhci_trb *trb) 100 { 101 return last_trb_on_seg(seg, trb) && (seg->next == ring->first_seg); 102 } 103 104 static bool link_trb_toggles_cycle(union xhci_trb *trb) 105 { 106 return le32_to_cpu(trb->link.control) & LINK_TOGGLE; 107 } 108 109 static bool last_td_in_urb(struct xhci_td *td) 110 { 111 struct urb_priv *urb_priv = td->urb->hcpriv; 112 113 return urb_priv->num_tds_done == urb_priv->num_tds; 114 } 115 116 static void inc_td_cnt(struct urb *urb) 117 { 118 struct urb_priv *urb_priv = urb->hcpriv; 119 120 urb_priv->num_tds_done++; 121 } 122 123 static void trb_to_noop(union xhci_trb *trb, u32 noop_type) 124 { 125 if (trb_is_link(trb)) { 126 /* unchain chained link TRBs */ 127 trb->link.control &= cpu_to_le32(~TRB_CHAIN); 128 } else { 129 trb->generic.field[0] = 0; 130 trb->generic.field[1] = 0; 131 trb->generic.field[2] = 0; 132 /* Preserve only the cycle bit of this TRB */ 133 trb->generic.field[3] &= cpu_to_le32(TRB_CYCLE); 134 trb->generic.field[3] |= cpu_to_le32(TRB_TYPE(noop_type)); 135 } 136 } 137 138 /* Updates trb to point to the next TRB in the ring, and updates seg if the next 139 * TRB is in a new segment. This does not skip over link TRBs, and it does not 140 * effect the ring dequeue or enqueue pointers. 141 */ 142 static void next_trb(struct xhci_hcd *xhci, 143 struct xhci_ring *ring, 144 struct xhci_segment **seg, 145 union xhci_trb **trb) 146 { 147 if (trb_is_link(*trb)) { 148 *seg = (*seg)->next; 149 *trb = ((*seg)->trbs); 150 } else { 151 (*trb)++; 152 } 153 } 154 155 /* 156 * See Cycle bit rules. SW is the consumer for the event ring only. 157 */ 158 void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring) 159 { 160 unsigned int link_trb_count = 0; 161 162 /* event ring doesn't have link trbs, check for last trb */ 163 if (ring->type == TYPE_EVENT) { 164 if (!last_trb_on_seg(ring->deq_seg, ring->dequeue)) { 165 ring->dequeue++; 166 goto out; 167 } 168 if (last_trb_on_ring(ring, ring->deq_seg, ring->dequeue)) 169 ring->cycle_state ^= 1; 170 ring->deq_seg = ring->deq_seg->next; 171 ring->dequeue = ring->deq_seg->trbs; 172 goto out; 173 } 174 175 /* All other rings have link trbs */ 176 if (!trb_is_link(ring->dequeue)) { 177 if (last_trb_on_seg(ring->deq_seg, ring->dequeue)) 178 xhci_warn(xhci, "Missing link TRB at end of segment\n"); 179 else 180 ring->dequeue++; 181 } 182 183 while (trb_is_link(ring->dequeue)) { 184 ring->deq_seg = ring->deq_seg->next; 185 ring->dequeue = ring->deq_seg->trbs; 186 187 if (link_trb_count++ > ring->num_segs) { 188 xhci_warn(xhci, "Ring is an endless link TRB loop\n"); 189 break; 190 } 191 } 192 out: 193 trace_xhci_inc_deq(ring); 194 195 return; 196 } 197 198 /* 199 * See Cycle bit rules. SW is the consumer for the event ring only. 200 * 201 * If we've just enqueued a TRB that is in the middle of a TD (meaning the 202 * chain bit is set), then set the chain bit in all the following link TRBs. 203 * If we've enqueued the last TRB in a TD, make sure the following link TRBs 204 * have their chain bit cleared (so that each Link TRB is a separate TD). 205 * 206 * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit 207 * set, but other sections talk about dealing with the chain bit set. This was 208 * fixed in the 0.96 specification errata, but we have to assume that all 0.95 209 * xHCI hardware can't handle the chain bit being cleared on a link TRB. 210 * 211 * @more_trbs_coming: Will you enqueue more TRBs before calling 212 * prepare_transfer()? 213 */ 214 static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring, 215 bool more_trbs_coming) 216 { 217 u32 chain; 218 union xhci_trb *next; 219 unsigned int link_trb_count = 0; 220 221 chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN; 222 223 if (last_trb_on_seg(ring->enq_seg, ring->enqueue)) { 224 xhci_err(xhci, "Tried to move enqueue past ring segment\n"); 225 return; 226 } 227 228 next = ++(ring->enqueue); 229 230 /* Update the dequeue pointer further if that was a link TRB */ 231 while (trb_is_link(next)) { 232 233 /* 234 * If the caller doesn't plan on enqueueing more TDs before 235 * ringing the doorbell, then we don't want to give the link TRB 236 * to the hardware just yet. We'll give the link TRB back in 237 * prepare_ring() just before we enqueue the TD at the top of 238 * the ring. 239 */ 240 if (!chain && !more_trbs_coming) 241 break; 242 243 /* If we're not dealing with 0.95 hardware or isoc rings on 244 * AMD 0.96 host, carry over the chain bit of the previous TRB 245 * (which may mean the chain bit is cleared). 246 */ 247 if (!(ring->type == TYPE_ISOC && 248 (xhci->quirks & XHCI_AMD_0x96_HOST)) && 249 !xhci_link_trb_quirk(xhci)) { 250 next->link.control &= cpu_to_le32(~TRB_CHAIN); 251 next->link.control |= cpu_to_le32(chain); 252 } 253 /* Give this link TRB to the hardware */ 254 wmb(); 255 next->link.control ^= cpu_to_le32(TRB_CYCLE); 256 257 /* Toggle the cycle bit after the last ring segment. */ 258 if (link_trb_toggles_cycle(next)) 259 ring->cycle_state ^= 1; 260 261 ring->enq_seg = ring->enq_seg->next; 262 ring->enqueue = ring->enq_seg->trbs; 263 next = ring->enqueue; 264 265 if (link_trb_count++ > ring->num_segs) { 266 xhci_warn(xhci, "%s: Ring link TRB loop\n", __func__); 267 break; 268 } 269 } 270 271 trace_xhci_inc_enq(ring); 272 } 273 274 /* 275 * Return number of free normal TRBs from enqueue to dequeue pointer on ring. 276 * Not counting an assumed link TRB at end of each TRBS_PER_SEGMENT sized segment. 277 * Only for transfer and command rings where driver is the producer, not for 278 * event rings. 279 */ 280 static unsigned int xhci_num_trbs_free(struct xhci_hcd *xhci, struct xhci_ring *ring) 281 { 282 struct xhci_segment *enq_seg = ring->enq_seg; 283 union xhci_trb *enq = ring->enqueue; 284 union xhci_trb *last_on_seg; 285 unsigned int free = 0; 286 int i = 0; 287 288 /* Ring might be empty even if enq != deq if enq is left on a link trb */ 289 if (trb_is_link(enq)) { 290 enq_seg = enq_seg->next; 291 enq = enq_seg->trbs; 292 } 293 294 /* Empty ring, common case, don't walk the segments */ 295 if (enq == ring->dequeue) 296 return ring->num_segs * (TRBS_PER_SEGMENT - 1); 297 298 do { 299 if (ring->deq_seg == enq_seg && ring->dequeue >= enq) 300 return free + (ring->dequeue - enq); 301 last_on_seg = &enq_seg->trbs[TRBS_PER_SEGMENT - 1]; 302 free += last_on_seg - enq; 303 enq_seg = enq_seg->next; 304 enq = enq_seg->trbs; 305 } while (i++ <= ring->num_segs); 306 307 return free; 308 } 309 310 /* 311 * Check to see if there's room to enqueue num_trbs on the ring and make sure 312 * enqueue pointer will not advance into dequeue segment. See rules above. 313 * return number of new segments needed to ensure this. 314 */ 315 316 static unsigned int xhci_ring_expansion_needed(struct xhci_hcd *xhci, struct xhci_ring *ring, 317 unsigned int num_trbs) 318 { 319 struct xhci_segment *seg; 320 int trbs_past_seg; 321 int enq_used; 322 int new_segs; 323 324 enq_used = ring->enqueue - ring->enq_seg->trbs; 325 326 /* how many trbs will be queued past the enqueue segment? */ 327 trbs_past_seg = enq_used + num_trbs - (TRBS_PER_SEGMENT - 1); 328 329 if (trbs_past_seg <= 0) 330 return 0; 331 332 /* Empty ring special case, enqueue stuck on link trb while dequeue advanced */ 333 if (trb_is_link(ring->enqueue) && ring->enq_seg->next->trbs == ring->dequeue) 334 return 0; 335 336 new_segs = 1 + (trbs_past_seg / (TRBS_PER_SEGMENT - 1)); 337 seg = ring->enq_seg; 338 339 while (new_segs > 0) { 340 seg = seg->next; 341 if (seg == ring->deq_seg) { 342 xhci_dbg(xhci, "Ring expansion by %d segments needed\n", 343 new_segs); 344 xhci_dbg(xhci, "Adding %d trbs moves enq %d trbs into deq seg\n", 345 num_trbs, trbs_past_seg % TRBS_PER_SEGMENT); 346 return new_segs; 347 } 348 new_segs--; 349 } 350 351 return 0; 352 } 353 354 /* Ring the host controller doorbell after placing a command on the ring */ 355 void xhci_ring_cmd_db(struct xhci_hcd *xhci) 356 { 357 if (!(xhci->cmd_ring_state & CMD_RING_STATE_RUNNING)) 358 return; 359 360 xhci_dbg(xhci, "// Ding dong!\n"); 361 362 trace_xhci_ring_host_doorbell(0, DB_VALUE_HOST); 363 364 writel(DB_VALUE_HOST, &xhci->dba->doorbell[0]); 365 /* Flush PCI posted writes */ 366 readl(&xhci->dba->doorbell[0]); 367 } 368 369 static bool xhci_mod_cmd_timer(struct xhci_hcd *xhci, unsigned long delay) 370 { 371 return mod_delayed_work(system_wq, &xhci->cmd_timer, delay); 372 } 373 374 static struct xhci_command *xhci_next_queued_cmd(struct xhci_hcd *xhci) 375 { 376 return list_first_entry_or_null(&xhci->cmd_list, struct xhci_command, 377 cmd_list); 378 } 379 380 /* 381 * Turn all commands on command ring with status set to "aborted" to no-op trbs. 382 * If there are other commands waiting then restart the ring and kick the timer. 383 * This must be called with command ring stopped and xhci->lock held. 384 */ 385 static void xhci_handle_stopped_cmd_ring(struct xhci_hcd *xhci, 386 struct xhci_command *cur_cmd) 387 { 388 struct xhci_command *i_cmd; 389 390 /* Turn all aborted commands in list to no-ops, then restart */ 391 list_for_each_entry(i_cmd, &xhci->cmd_list, cmd_list) { 392 393 if (i_cmd->status != COMP_COMMAND_ABORTED) 394 continue; 395 396 i_cmd->status = COMP_COMMAND_RING_STOPPED; 397 398 xhci_dbg(xhci, "Turn aborted command %p to no-op\n", 399 i_cmd->command_trb); 400 401 trb_to_noop(i_cmd->command_trb, TRB_CMD_NOOP); 402 403 /* 404 * caller waiting for completion is called when command 405 * completion event is received for these no-op commands 406 */ 407 } 408 409 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING; 410 411 /* ring command ring doorbell to restart the command ring */ 412 if ((xhci->cmd_ring->dequeue != xhci->cmd_ring->enqueue) && 413 !(xhci->xhc_state & XHCI_STATE_DYING)) { 414 xhci->current_cmd = cur_cmd; 415 xhci_mod_cmd_timer(xhci, XHCI_CMD_DEFAULT_TIMEOUT); 416 xhci_ring_cmd_db(xhci); 417 } 418 } 419 420 /* Must be called with xhci->lock held, releases and aquires lock back */ 421 static int xhci_abort_cmd_ring(struct xhci_hcd *xhci, unsigned long flags) 422 { 423 struct xhci_segment *new_seg = xhci->cmd_ring->deq_seg; 424 union xhci_trb *new_deq = xhci->cmd_ring->dequeue; 425 u64 crcr; 426 int ret; 427 428 xhci_dbg(xhci, "Abort command ring\n"); 429 430 reinit_completion(&xhci->cmd_ring_stop_completion); 431 432 /* 433 * The control bits like command stop, abort are located in lower 434 * dword of the command ring control register. 435 * Some controllers require all 64 bits to be written to abort the ring. 436 * Make sure the upper dword is valid, pointing to the next command, 437 * avoiding corrupting the command ring pointer in case the command ring 438 * is stopped by the time the upper dword is written. 439 */ 440 next_trb(xhci, NULL, &new_seg, &new_deq); 441 if (trb_is_link(new_deq)) 442 next_trb(xhci, NULL, &new_seg, &new_deq); 443 444 crcr = xhci_trb_virt_to_dma(new_seg, new_deq); 445 xhci_write_64(xhci, crcr | CMD_RING_ABORT, &xhci->op_regs->cmd_ring); 446 447 /* Section 4.6.1.2 of xHCI 1.0 spec says software should also time the 448 * completion of the Command Abort operation. If CRR is not negated in 5 449 * seconds then driver handles it as if host died (-ENODEV). 450 * In the future we should distinguish between -ENODEV and -ETIMEDOUT 451 * and try to recover a -ETIMEDOUT with a host controller reset. 452 */ 453 ret = xhci_handshake(&xhci->op_regs->cmd_ring, 454 CMD_RING_RUNNING, 0, 5 * 1000 * 1000); 455 if (ret < 0) { 456 xhci_err(xhci, "Abort failed to stop command ring: %d\n", ret); 457 xhci_halt(xhci); 458 xhci_hc_died(xhci); 459 return ret; 460 } 461 /* 462 * Writing the CMD_RING_ABORT bit should cause a cmd completion event, 463 * however on some host hw the CMD_RING_RUNNING bit is correctly cleared 464 * but the completion event in never sent. Wait 2 secs (arbitrary 465 * number) to handle those cases after negation of CMD_RING_RUNNING. 466 */ 467 spin_unlock_irqrestore(&xhci->lock, flags); 468 ret = wait_for_completion_timeout(&xhci->cmd_ring_stop_completion, 469 msecs_to_jiffies(2000)); 470 spin_lock_irqsave(&xhci->lock, flags); 471 if (!ret) { 472 xhci_dbg(xhci, "No stop event for abort, ring start fail?\n"); 473 xhci_cleanup_command_queue(xhci); 474 } else { 475 xhci_handle_stopped_cmd_ring(xhci, xhci_next_queued_cmd(xhci)); 476 } 477 return 0; 478 } 479 480 void xhci_ring_ep_doorbell(struct xhci_hcd *xhci, 481 unsigned int slot_id, 482 unsigned int ep_index, 483 unsigned int stream_id) 484 { 485 __le32 __iomem *db_addr = &xhci->dba->doorbell[slot_id]; 486 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index]; 487 unsigned int ep_state = ep->ep_state; 488 489 /* Don't ring the doorbell for this endpoint if there are pending 490 * cancellations because we don't want to interrupt processing. 491 * We don't want to restart any stream rings if there's a set dequeue 492 * pointer command pending because the device can choose to start any 493 * stream once the endpoint is on the HW schedule. 494 */ 495 if ((ep_state & EP_STOP_CMD_PENDING) || (ep_state & SET_DEQ_PENDING) || 496 (ep_state & EP_HALTED) || (ep_state & EP_CLEARING_TT)) 497 return; 498 499 trace_xhci_ring_ep_doorbell(slot_id, DB_VALUE(ep_index, stream_id)); 500 501 writel(DB_VALUE(ep_index, stream_id), db_addr); 502 /* flush the write */ 503 readl(db_addr); 504 } 505 506 /* Ring the doorbell for any rings with pending URBs */ 507 static void ring_doorbell_for_active_rings(struct xhci_hcd *xhci, 508 unsigned int slot_id, 509 unsigned int ep_index) 510 { 511 unsigned int stream_id; 512 struct xhci_virt_ep *ep; 513 514 ep = &xhci->devs[slot_id]->eps[ep_index]; 515 516 /* A ring has pending URBs if its TD list is not empty */ 517 if (!(ep->ep_state & EP_HAS_STREAMS)) { 518 if (ep->ring && !(list_empty(&ep->ring->td_list))) 519 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, 0); 520 return; 521 } 522 523 for (stream_id = 1; stream_id < ep->stream_info->num_streams; 524 stream_id++) { 525 struct xhci_stream_info *stream_info = ep->stream_info; 526 if (!list_empty(&stream_info->stream_rings[stream_id]->td_list)) 527 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, 528 stream_id); 529 } 530 } 531 532 void xhci_ring_doorbell_for_active_rings(struct xhci_hcd *xhci, 533 unsigned int slot_id, 534 unsigned int ep_index) 535 { 536 ring_doorbell_for_active_rings(xhci, slot_id, ep_index); 537 } 538 539 static struct xhci_virt_ep *xhci_get_virt_ep(struct xhci_hcd *xhci, 540 unsigned int slot_id, 541 unsigned int ep_index) 542 { 543 if (slot_id == 0 || slot_id >= MAX_HC_SLOTS) { 544 xhci_warn(xhci, "Invalid slot_id %u\n", slot_id); 545 return NULL; 546 } 547 if (ep_index >= EP_CTX_PER_DEV) { 548 xhci_warn(xhci, "Invalid endpoint index %u\n", ep_index); 549 return NULL; 550 } 551 if (!xhci->devs[slot_id]) { 552 xhci_warn(xhci, "No xhci virt device for slot_id %u\n", slot_id); 553 return NULL; 554 } 555 556 return &xhci->devs[slot_id]->eps[ep_index]; 557 } 558 559 static struct xhci_ring *xhci_virt_ep_to_ring(struct xhci_hcd *xhci, 560 struct xhci_virt_ep *ep, 561 unsigned int stream_id) 562 { 563 /* common case, no streams */ 564 if (!(ep->ep_state & EP_HAS_STREAMS)) 565 return ep->ring; 566 567 if (!ep->stream_info) 568 return NULL; 569 570 if (stream_id == 0 || stream_id >= ep->stream_info->num_streams) { 571 xhci_warn(xhci, "Invalid stream_id %u request for slot_id %u ep_index %u\n", 572 stream_id, ep->vdev->slot_id, ep->ep_index); 573 return NULL; 574 } 575 576 return ep->stream_info->stream_rings[stream_id]; 577 } 578 579 /* Get the right ring for the given slot_id, ep_index and stream_id. 580 * If the endpoint supports streams, boundary check the URB's stream ID. 581 * If the endpoint doesn't support streams, return the singular endpoint ring. 582 */ 583 struct xhci_ring *xhci_triad_to_transfer_ring(struct xhci_hcd *xhci, 584 unsigned int slot_id, unsigned int ep_index, 585 unsigned int stream_id) 586 { 587 struct xhci_virt_ep *ep; 588 589 ep = xhci_get_virt_ep(xhci, slot_id, ep_index); 590 if (!ep) 591 return NULL; 592 593 return xhci_virt_ep_to_ring(xhci, ep, stream_id); 594 } 595 596 597 /* 598 * Get the hw dequeue pointer xHC stopped on, either directly from the 599 * endpoint context, or if streams are in use from the stream context. 600 * The returned hw_dequeue contains the lowest four bits with cycle state 601 * and possbile stream context type. 602 */ 603 static u64 xhci_get_hw_deq(struct xhci_hcd *xhci, struct xhci_virt_device *vdev, 604 unsigned int ep_index, unsigned int stream_id) 605 { 606 struct xhci_ep_ctx *ep_ctx; 607 struct xhci_stream_ctx *st_ctx; 608 struct xhci_virt_ep *ep; 609 610 ep = &vdev->eps[ep_index]; 611 612 if (ep->ep_state & EP_HAS_STREAMS) { 613 st_ctx = &ep->stream_info->stream_ctx_array[stream_id]; 614 return le64_to_cpu(st_ctx->stream_ring); 615 } 616 ep_ctx = xhci_get_ep_ctx(xhci, vdev->out_ctx, ep_index); 617 return le64_to_cpu(ep_ctx->deq); 618 } 619 620 static int xhci_move_dequeue_past_td(struct xhci_hcd *xhci, 621 unsigned int slot_id, unsigned int ep_index, 622 unsigned int stream_id, struct xhci_td *td) 623 { 624 struct xhci_virt_device *dev = xhci->devs[slot_id]; 625 struct xhci_virt_ep *ep = &dev->eps[ep_index]; 626 struct xhci_ring *ep_ring; 627 struct xhci_command *cmd; 628 struct xhci_segment *new_seg; 629 union xhci_trb *new_deq; 630 int new_cycle; 631 dma_addr_t addr; 632 u64 hw_dequeue; 633 bool cycle_found = false; 634 bool td_last_trb_found = false; 635 u32 trb_sct = 0; 636 int ret; 637 638 ep_ring = xhci_triad_to_transfer_ring(xhci, slot_id, 639 ep_index, stream_id); 640 if (!ep_ring) { 641 xhci_warn(xhci, "WARN can't find new dequeue, invalid stream ID %u\n", 642 stream_id); 643 return -ENODEV; 644 } 645 /* 646 * A cancelled TD can complete with a stall if HW cached the trb. 647 * In this case driver can't find td, but if the ring is empty we 648 * can move the dequeue pointer to the current enqueue position. 649 * We shouldn't hit this anymore as cached cancelled TRBs are given back 650 * after clearing the cache, but be on the safe side and keep it anyway 651 */ 652 if (!td) { 653 if (list_empty(&ep_ring->td_list)) { 654 new_seg = ep_ring->enq_seg; 655 new_deq = ep_ring->enqueue; 656 new_cycle = ep_ring->cycle_state; 657 xhci_dbg(xhci, "ep ring empty, Set new dequeue = enqueue"); 658 goto deq_found; 659 } else { 660 xhci_warn(xhci, "Can't find new dequeue state, missing td\n"); 661 return -EINVAL; 662 } 663 } 664 665 hw_dequeue = xhci_get_hw_deq(xhci, dev, ep_index, stream_id); 666 new_seg = ep_ring->deq_seg; 667 new_deq = ep_ring->dequeue; 668 new_cycle = hw_dequeue & 0x1; 669 670 /* 671 * We want to find the pointer, segment and cycle state of the new trb 672 * (the one after current TD's last_trb). We know the cycle state at 673 * hw_dequeue, so walk the ring until both hw_dequeue and last_trb are 674 * found. 675 */ 676 do { 677 if (!cycle_found && xhci_trb_virt_to_dma(new_seg, new_deq) 678 == (dma_addr_t)(hw_dequeue & ~0xf)) { 679 cycle_found = true; 680 if (td_last_trb_found) 681 break; 682 } 683 if (new_deq == td->last_trb) 684 td_last_trb_found = true; 685 686 if (cycle_found && trb_is_link(new_deq) && 687 link_trb_toggles_cycle(new_deq)) 688 new_cycle ^= 0x1; 689 690 next_trb(xhci, ep_ring, &new_seg, &new_deq); 691 692 /* Search wrapped around, bail out */ 693 if (new_deq == ep->ring->dequeue) { 694 xhci_err(xhci, "Error: Failed finding new dequeue state\n"); 695 return -EINVAL; 696 } 697 698 } while (!cycle_found || !td_last_trb_found); 699 700 deq_found: 701 702 /* Don't update the ring cycle state for the producer (us). */ 703 addr = xhci_trb_virt_to_dma(new_seg, new_deq); 704 if (addr == 0) { 705 xhci_warn(xhci, "Can't find dma of new dequeue ptr\n"); 706 xhci_warn(xhci, "deq seg = %p, deq ptr = %p\n", new_seg, new_deq); 707 return -EINVAL; 708 } 709 710 if ((ep->ep_state & SET_DEQ_PENDING)) { 711 xhci_warn(xhci, "Set TR Deq already pending, don't submit for 0x%pad\n", 712 &addr); 713 return -EBUSY; 714 } 715 716 /* This function gets called from contexts where it cannot sleep */ 717 cmd = xhci_alloc_command(xhci, false, GFP_ATOMIC); 718 if (!cmd) { 719 xhci_warn(xhci, "Can't alloc Set TR Deq cmd 0x%pad\n", &addr); 720 return -ENOMEM; 721 } 722 723 if (stream_id) 724 trb_sct = SCT_FOR_TRB(SCT_PRI_TR); 725 ret = queue_command(xhci, cmd, 726 lower_32_bits(addr) | trb_sct | new_cycle, 727 upper_32_bits(addr), 728 STREAM_ID_FOR_TRB(stream_id), SLOT_ID_FOR_TRB(slot_id) | 729 EP_ID_FOR_TRB(ep_index) | TRB_TYPE(TRB_SET_DEQ), false); 730 if (ret < 0) { 731 xhci_free_command(xhci, cmd); 732 return ret; 733 } 734 ep->queued_deq_seg = new_seg; 735 ep->queued_deq_ptr = new_deq; 736 737 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, 738 "Set TR Deq ptr 0x%llx, cycle %u\n", addr, new_cycle); 739 740 /* Stop the TD queueing code from ringing the doorbell until 741 * this command completes. The HC won't set the dequeue pointer 742 * if the ring is running, and ringing the doorbell starts the 743 * ring running. 744 */ 745 ep->ep_state |= SET_DEQ_PENDING; 746 xhci_ring_cmd_db(xhci); 747 return 0; 748 } 749 750 /* flip_cycle means flip the cycle bit of all but the first and last TRB. 751 * (The last TRB actually points to the ring enqueue pointer, which is not part 752 * of this TD.) This is used to remove partially enqueued isoc TDs from a ring. 753 */ 754 static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring, 755 struct xhci_td *td, bool flip_cycle) 756 { 757 struct xhci_segment *seg = td->start_seg; 758 union xhci_trb *trb = td->first_trb; 759 760 while (1) { 761 trb_to_noop(trb, TRB_TR_NOOP); 762 763 /* flip cycle if asked to */ 764 if (flip_cycle && trb != td->first_trb && trb != td->last_trb) 765 trb->generic.field[3] ^= cpu_to_le32(TRB_CYCLE); 766 767 if (trb == td->last_trb) 768 break; 769 770 next_trb(xhci, ep_ring, &seg, &trb); 771 } 772 } 773 774 /* 775 * Must be called with xhci->lock held in interrupt context, 776 * releases and re-acquires xhci->lock 777 */ 778 static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci, 779 struct xhci_td *cur_td, int status) 780 { 781 struct urb *urb = cur_td->urb; 782 struct urb_priv *urb_priv = urb->hcpriv; 783 struct usb_hcd *hcd = bus_to_hcd(urb->dev->bus); 784 785 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { 786 xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs--; 787 if (xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs == 0) { 788 if (xhci->quirks & XHCI_AMD_PLL_FIX) 789 usb_amd_quirk_pll_enable(); 790 } 791 } 792 xhci_urb_free_priv(urb_priv); 793 usb_hcd_unlink_urb_from_ep(hcd, urb); 794 trace_xhci_urb_giveback(urb); 795 usb_hcd_giveback_urb(hcd, urb, status); 796 } 797 798 static void xhci_unmap_td_bounce_buffer(struct xhci_hcd *xhci, 799 struct xhci_ring *ring, struct xhci_td *td) 800 { 801 struct device *dev = xhci_to_hcd(xhci)->self.sysdev; 802 struct xhci_segment *seg = td->bounce_seg; 803 struct urb *urb = td->urb; 804 size_t len; 805 806 if (!ring || !seg || !urb) 807 return; 808 809 if (usb_urb_dir_out(urb)) { 810 dma_unmap_single(dev, seg->bounce_dma, ring->bounce_buf_len, 811 DMA_TO_DEVICE); 812 return; 813 } 814 815 dma_unmap_single(dev, seg->bounce_dma, ring->bounce_buf_len, 816 DMA_FROM_DEVICE); 817 /* for in tranfers we need to copy the data from bounce to sg */ 818 if (urb->num_sgs) { 819 len = sg_pcopy_from_buffer(urb->sg, urb->num_sgs, seg->bounce_buf, 820 seg->bounce_len, seg->bounce_offs); 821 if (len != seg->bounce_len) 822 xhci_warn(xhci, "WARN Wrong bounce buffer read length: %zu != %d\n", 823 len, seg->bounce_len); 824 } else { 825 memcpy(urb->transfer_buffer + seg->bounce_offs, seg->bounce_buf, 826 seg->bounce_len); 827 } 828 seg->bounce_len = 0; 829 seg->bounce_offs = 0; 830 } 831 832 static int xhci_td_cleanup(struct xhci_hcd *xhci, struct xhci_td *td, 833 struct xhci_ring *ep_ring, int status) 834 { 835 struct urb *urb = NULL; 836 837 /* Clean up the endpoint's TD list */ 838 urb = td->urb; 839 840 /* if a bounce buffer was used to align this td then unmap it */ 841 xhci_unmap_td_bounce_buffer(xhci, ep_ring, td); 842 843 /* Do one last check of the actual transfer length. 844 * If the host controller said we transferred more data than the buffer 845 * length, urb->actual_length will be a very big number (since it's 846 * unsigned). Play it safe and say we didn't transfer anything. 847 */ 848 if (urb->actual_length > urb->transfer_buffer_length) { 849 xhci_warn(xhci, "URB req %u and actual %u transfer length mismatch\n", 850 urb->transfer_buffer_length, urb->actual_length); 851 urb->actual_length = 0; 852 status = 0; 853 } 854 /* TD might be removed from td_list if we are giving back a cancelled URB */ 855 if (!list_empty(&td->td_list)) 856 list_del_init(&td->td_list); 857 /* Giving back a cancelled URB, or if a slated TD completed anyway */ 858 if (!list_empty(&td->cancelled_td_list)) 859 list_del_init(&td->cancelled_td_list); 860 861 inc_td_cnt(urb); 862 /* Giveback the urb when all the tds are completed */ 863 if (last_td_in_urb(td)) { 864 if ((urb->actual_length != urb->transfer_buffer_length && 865 (urb->transfer_flags & URB_SHORT_NOT_OK)) || 866 (status != 0 && !usb_endpoint_xfer_isoc(&urb->ep->desc))) 867 xhci_dbg(xhci, "Giveback URB %p, len = %d, expected = %d, status = %d\n", 868 urb, urb->actual_length, 869 urb->transfer_buffer_length, status); 870 871 /* set isoc urb status to 0 just as EHCI, UHCI, and OHCI */ 872 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) 873 status = 0; 874 xhci_giveback_urb_in_irq(xhci, td, status); 875 } 876 877 return 0; 878 } 879 880 881 /* Complete the cancelled URBs we unlinked from td_list. */ 882 static void xhci_giveback_invalidated_tds(struct xhci_virt_ep *ep) 883 { 884 struct xhci_ring *ring; 885 struct xhci_td *td, *tmp_td; 886 887 list_for_each_entry_safe(td, tmp_td, &ep->cancelled_td_list, 888 cancelled_td_list) { 889 890 ring = xhci_urb_to_transfer_ring(ep->xhci, td->urb); 891 892 if (td->cancel_status == TD_CLEARED) { 893 xhci_dbg(ep->xhci, "%s: Giveback cancelled URB %p TD\n", 894 __func__, td->urb); 895 xhci_td_cleanup(ep->xhci, td, ring, td->status); 896 } else { 897 xhci_dbg(ep->xhci, "%s: Keep cancelled URB %p TD as cancel_status is %d\n", 898 __func__, td->urb, td->cancel_status); 899 } 900 if (ep->xhci->xhc_state & XHCI_STATE_DYING) 901 return; 902 } 903 } 904 905 static int xhci_reset_halted_ep(struct xhci_hcd *xhci, unsigned int slot_id, 906 unsigned int ep_index, enum xhci_ep_reset_type reset_type) 907 { 908 struct xhci_command *command; 909 int ret = 0; 910 911 command = xhci_alloc_command(xhci, false, GFP_ATOMIC); 912 if (!command) { 913 ret = -ENOMEM; 914 goto done; 915 } 916 917 xhci_dbg(xhci, "%s-reset ep %u, slot %u\n", 918 (reset_type == EP_HARD_RESET) ? "Hard" : "Soft", 919 ep_index, slot_id); 920 921 ret = xhci_queue_reset_ep(xhci, command, slot_id, ep_index, reset_type); 922 done: 923 if (ret) 924 xhci_err(xhci, "ERROR queuing reset endpoint for slot %d ep_index %d, %d\n", 925 slot_id, ep_index, ret); 926 return ret; 927 } 928 929 static int xhci_handle_halted_endpoint(struct xhci_hcd *xhci, 930 struct xhci_virt_ep *ep, 931 struct xhci_td *td, 932 enum xhci_ep_reset_type reset_type) 933 { 934 unsigned int slot_id = ep->vdev->slot_id; 935 int err; 936 937 /* 938 * Avoid resetting endpoint if link is inactive. Can cause host hang. 939 * Device will be reset soon to recover the link so don't do anything 940 */ 941 if (ep->vdev->flags & VDEV_PORT_ERROR) 942 return -ENODEV; 943 944 /* add td to cancelled list and let reset ep handler take care of it */ 945 if (reset_type == EP_HARD_RESET) { 946 ep->ep_state |= EP_HARD_CLEAR_TOGGLE; 947 if (td && list_empty(&td->cancelled_td_list)) { 948 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list); 949 td->cancel_status = TD_HALTED; 950 } 951 } 952 953 if (ep->ep_state & EP_HALTED) { 954 xhci_dbg(xhci, "Reset ep command for ep_index %d already pending\n", 955 ep->ep_index); 956 return 0; 957 } 958 959 err = xhci_reset_halted_ep(xhci, slot_id, ep->ep_index, reset_type); 960 if (err) 961 return err; 962 963 ep->ep_state |= EP_HALTED; 964 965 xhci_ring_cmd_db(xhci); 966 967 return 0; 968 } 969 970 /* 971 * Fix up the ep ring first, so HW stops executing cancelled TDs. 972 * We have the xHCI lock, so nothing can modify this list until we drop it. 973 * We're also in the event handler, so we can't get re-interrupted if another 974 * Stop Endpoint command completes. 975 * 976 * only call this when ring is not in a running state 977 */ 978 979 static int xhci_invalidate_cancelled_tds(struct xhci_virt_ep *ep) 980 { 981 struct xhci_hcd *xhci; 982 struct xhci_td *td = NULL; 983 struct xhci_td *tmp_td = NULL; 984 struct xhci_td *cached_td = NULL; 985 struct xhci_ring *ring; 986 u64 hw_deq; 987 unsigned int slot_id = ep->vdev->slot_id; 988 int err; 989 990 xhci = ep->xhci; 991 992 list_for_each_entry_safe(td, tmp_td, &ep->cancelled_td_list, cancelled_td_list) { 993 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, 994 "Removing canceled TD starting at 0x%llx (dma) in stream %u URB %p", 995 (unsigned long long)xhci_trb_virt_to_dma( 996 td->start_seg, td->first_trb), 997 td->urb->stream_id, td->urb); 998 list_del_init(&td->td_list); 999 ring = xhci_urb_to_transfer_ring(xhci, td->urb); 1000 if (!ring) { 1001 xhci_warn(xhci, "WARN Cancelled URB %p has invalid stream ID %u.\n", 1002 td->urb, td->urb->stream_id); 1003 continue; 1004 } 1005 /* 1006 * If a ring stopped on the TD we need to cancel then we have to 1007 * move the xHC endpoint ring dequeue pointer past this TD. 1008 * Rings halted due to STALL may show hw_deq is past the stalled 1009 * TD, but still require a set TR Deq command to flush xHC cache. 1010 */ 1011 hw_deq = xhci_get_hw_deq(xhci, ep->vdev, ep->ep_index, 1012 td->urb->stream_id); 1013 hw_deq &= ~0xf; 1014 1015 if (td->cancel_status == TD_HALTED || 1016 trb_in_td(xhci, td->start_seg, td->first_trb, td->last_trb, hw_deq, false)) { 1017 switch (td->cancel_status) { 1018 case TD_CLEARED: /* TD is already no-op */ 1019 case TD_CLEARING_CACHE: /* set TR deq command already queued */ 1020 break; 1021 case TD_DIRTY: /* TD is cached, clear it */ 1022 case TD_HALTED: 1023 td->cancel_status = TD_CLEARING_CACHE; 1024 if (cached_td) 1025 /* FIXME stream case, several stopped rings */ 1026 xhci_dbg(xhci, 1027 "Move dq past stream %u URB %p instead of stream %u URB %p\n", 1028 td->urb->stream_id, td->urb, 1029 cached_td->urb->stream_id, cached_td->urb); 1030 cached_td = td; 1031 break; 1032 } 1033 } else { 1034 td_to_noop(xhci, ring, td, false); 1035 td->cancel_status = TD_CLEARED; 1036 } 1037 } 1038 1039 /* If there's no need to move the dequeue pointer then we're done */ 1040 if (!cached_td) 1041 return 0; 1042 1043 err = xhci_move_dequeue_past_td(xhci, slot_id, ep->ep_index, 1044 cached_td->urb->stream_id, 1045 cached_td); 1046 if (err) { 1047 /* Failed to move past cached td, just set cached TDs to no-op */ 1048 list_for_each_entry_safe(td, tmp_td, &ep->cancelled_td_list, cancelled_td_list) { 1049 if (td->cancel_status != TD_CLEARING_CACHE) 1050 continue; 1051 xhci_dbg(xhci, "Failed to clear cancelled cached URB %p, mark clear anyway\n", 1052 td->urb); 1053 td_to_noop(xhci, ring, td, false); 1054 td->cancel_status = TD_CLEARED; 1055 } 1056 } 1057 return 0; 1058 } 1059 1060 /* 1061 * Returns the TD the endpoint ring halted on. 1062 * Only call for non-running rings without streams. 1063 */ 1064 static struct xhci_td *find_halted_td(struct xhci_virt_ep *ep) 1065 { 1066 struct xhci_td *td; 1067 u64 hw_deq; 1068 1069 if (!list_empty(&ep->ring->td_list)) { /* Not streams compatible */ 1070 hw_deq = xhci_get_hw_deq(ep->xhci, ep->vdev, ep->ep_index, 0); 1071 hw_deq &= ~0xf; 1072 td = list_first_entry(&ep->ring->td_list, struct xhci_td, td_list); 1073 if (trb_in_td(ep->xhci, td->start_seg, td->first_trb, 1074 td->last_trb, hw_deq, false)) 1075 return td; 1076 } 1077 return NULL; 1078 } 1079 1080 /* 1081 * When we get a command completion for a Stop Endpoint Command, we need to 1082 * unlink any cancelled TDs from the ring. There are two ways to do that: 1083 * 1084 * 1. If the HW was in the middle of processing the TD that needs to be 1085 * cancelled, then we must move the ring's dequeue pointer past the last TRB 1086 * in the TD with a Set Dequeue Pointer Command. 1087 * 2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain 1088 * bit cleared) so that the HW will skip over them. 1089 */ 1090 static void xhci_handle_cmd_stop_ep(struct xhci_hcd *xhci, int slot_id, 1091 union xhci_trb *trb, u32 comp_code) 1092 { 1093 unsigned int ep_index; 1094 struct xhci_virt_ep *ep; 1095 struct xhci_ep_ctx *ep_ctx; 1096 struct xhci_td *td = NULL; 1097 enum xhci_ep_reset_type reset_type; 1098 struct xhci_command *command; 1099 int err; 1100 1101 if (unlikely(TRB_TO_SUSPEND_PORT(le32_to_cpu(trb->generic.field[3])))) { 1102 if (!xhci->devs[slot_id]) 1103 xhci_warn(xhci, "Stop endpoint command completion for disabled slot %u\n", 1104 slot_id); 1105 return; 1106 } 1107 1108 ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3])); 1109 ep = xhci_get_virt_ep(xhci, slot_id, ep_index); 1110 if (!ep) 1111 return; 1112 1113 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep_index); 1114 1115 trace_xhci_handle_cmd_stop_ep(ep_ctx); 1116 1117 if (comp_code == COMP_CONTEXT_STATE_ERROR) { 1118 /* 1119 * If stop endpoint command raced with a halting endpoint we need to 1120 * reset the host side endpoint first. 1121 * If the TD we halted on isn't cancelled the TD should be given back 1122 * with a proper error code, and the ring dequeue moved past the TD. 1123 * If streams case we can't find hw_deq, or the TD we halted on so do a 1124 * soft reset. 1125 * 1126 * Proper error code is unknown here, it would be -EPIPE if device side 1127 * of enadpoit halted (aka STALL), and -EPROTO if not (transaction error) 1128 * We use -EPROTO, if device is stalled it should return a stall error on 1129 * next transfer, which then will return -EPIPE, and device side stall is 1130 * noted and cleared by class driver. 1131 */ 1132 switch (GET_EP_CTX_STATE(ep_ctx)) { 1133 case EP_STATE_HALTED: 1134 xhci_dbg(xhci, "Stop ep completion raced with stall, reset ep\n"); 1135 if (ep->ep_state & EP_HAS_STREAMS) { 1136 reset_type = EP_SOFT_RESET; 1137 } else { 1138 reset_type = EP_HARD_RESET; 1139 td = find_halted_td(ep); 1140 if (td) 1141 td->status = -EPROTO; 1142 } 1143 /* reset ep, reset handler cleans up cancelled tds */ 1144 err = xhci_handle_halted_endpoint(xhci, ep, td, reset_type); 1145 if (err) 1146 break; 1147 ep->ep_state &= ~EP_STOP_CMD_PENDING; 1148 return; 1149 case EP_STATE_RUNNING: 1150 /* Race, HW handled stop ep cmd before ep was running */ 1151 xhci_dbg(xhci, "Stop ep completion ctx error, ep is running\n"); 1152 1153 command = xhci_alloc_command(xhci, false, GFP_ATOMIC); 1154 if (!command) { 1155 ep->ep_state &= ~EP_STOP_CMD_PENDING; 1156 return; 1157 } 1158 xhci_queue_stop_endpoint(xhci, command, slot_id, ep_index, 0); 1159 xhci_ring_cmd_db(xhci); 1160 1161 return; 1162 default: 1163 break; 1164 } 1165 } 1166 1167 /* will queue a set TR deq if stopped on a cancelled, uncleared TD */ 1168 xhci_invalidate_cancelled_tds(ep); 1169 ep->ep_state &= ~EP_STOP_CMD_PENDING; 1170 1171 /* Otherwise ring the doorbell(s) to restart queued transfers */ 1172 xhci_giveback_invalidated_tds(ep); 1173 ring_doorbell_for_active_rings(xhci, slot_id, ep_index); 1174 } 1175 1176 static void xhci_kill_ring_urbs(struct xhci_hcd *xhci, struct xhci_ring *ring) 1177 { 1178 struct xhci_td *cur_td; 1179 struct xhci_td *tmp; 1180 1181 list_for_each_entry_safe(cur_td, tmp, &ring->td_list, td_list) { 1182 list_del_init(&cur_td->td_list); 1183 1184 if (!list_empty(&cur_td->cancelled_td_list)) 1185 list_del_init(&cur_td->cancelled_td_list); 1186 1187 xhci_unmap_td_bounce_buffer(xhci, ring, cur_td); 1188 1189 inc_td_cnt(cur_td->urb); 1190 if (last_td_in_urb(cur_td)) 1191 xhci_giveback_urb_in_irq(xhci, cur_td, -ESHUTDOWN); 1192 } 1193 } 1194 1195 static void xhci_kill_endpoint_urbs(struct xhci_hcd *xhci, 1196 int slot_id, int ep_index) 1197 { 1198 struct xhci_td *cur_td; 1199 struct xhci_td *tmp; 1200 struct xhci_virt_ep *ep; 1201 struct xhci_ring *ring; 1202 1203 ep = xhci_get_virt_ep(xhci, slot_id, ep_index); 1204 if (!ep) 1205 return; 1206 1207 if ((ep->ep_state & EP_HAS_STREAMS) || 1208 (ep->ep_state & EP_GETTING_NO_STREAMS)) { 1209 int stream_id; 1210 1211 for (stream_id = 1; stream_id < ep->stream_info->num_streams; 1212 stream_id++) { 1213 ring = ep->stream_info->stream_rings[stream_id]; 1214 if (!ring) 1215 continue; 1216 1217 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, 1218 "Killing URBs for slot ID %u, ep index %u, stream %u", 1219 slot_id, ep_index, stream_id); 1220 xhci_kill_ring_urbs(xhci, ring); 1221 } 1222 } else { 1223 ring = ep->ring; 1224 if (!ring) 1225 return; 1226 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, 1227 "Killing URBs for slot ID %u, ep index %u", 1228 slot_id, ep_index); 1229 xhci_kill_ring_urbs(xhci, ring); 1230 } 1231 1232 list_for_each_entry_safe(cur_td, tmp, &ep->cancelled_td_list, 1233 cancelled_td_list) { 1234 list_del_init(&cur_td->cancelled_td_list); 1235 inc_td_cnt(cur_td->urb); 1236 1237 if (last_td_in_urb(cur_td)) 1238 xhci_giveback_urb_in_irq(xhci, cur_td, -ESHUTDOWN); 1239 } 1240 } 1241 1242 /* 1243 * host controller died, register read returns 0xffffffff 1244 * Complete pending commands, mark them ABORTED. 1245 * URBs need to be given back as usb core might be waiting with device locks 1246 * held for the URBs to finish during device disconnect, blocking host remove. 1247 * 1248 * Call with xhci->lock held. 1249 * lock is relased and re-acquired while giving back urb. 1250 */ 1251 void xhci_hc_died(struct xhci_hcd *xhci) 1252 { 1253 int i, j; 1254 1255 if (xhci->xhc_state & XHCI_STATE_DYING) 1256 return; 1257 1258 xhci_err(xhci, "xHCI host controller not responding, assume dead\n"); 1259 xhci->xhc_state |= XHCI_STATE_DYING; 1260 1261 xhci_cleanup_command_queue(xhci); 1262 1263 /* return any pending urbs, remove may be waiting for them */ 1264 for (i = 0; i <= HCS_MAX_SLOTS(xhci->hcs_params1); i++) { 1265 if (!xhci->devs[i]) 1266 continue; 1267 for (j = 0; j < 31; j++) 1268 xhci_kill_endpoint_urbs(xhci, i, j); 1269 } 1270 1271 /* inform usb core hc died if PCI remove isn't already handling it */ 1272 if (!(xhci->xhc_state & XHCI_STATE_REMOVING)) 1273 usb_hc_died(xhci_to_hcd(xhci)); 1274 } 1275 1276 static void update_ring_for_set_deq_completion(struct xhci_hcd *xhci, 1277 struct xhci_virt_device *dev, 1278 struct xhci_ring *ep_ring, 1279 unsigned int ep_index) 1280 { 1281 union xhci_trb *dequeue_temp; 1282 1283 dequeue_temp = ep_ring->dequeue; 1284 1285 /* If we get two back-to-back stalls, and the first stalled transfer 1286 * ends just before a link TRB, the dequeue pointer will be left on 1287 * the link TRB by the code in the while loop. So we have to update 1288 * the dequeue pointer one segment further, or we'll jump off 1289 * the segment into la-la-land. 1290 */ 1291 if (trb_is_link(ep_ring->dequeue)) { 1292 ep_ring->deq_seg = ep_ring->deq_seg->next; 1293 ep_ring->dequeue = ep_ring->deq_seg->trbs; 1294 } 1295 1296 while (ep_ring->dequeue != dev->eps[ep_index].queued_deq_ptr) { 1297 /* We have more usable TRBs */ 1298 ep_ring->dequeue++; 1299 if (trb_is_link(ep_ring->dequeue)) { 1300 if (ep_ring->dequeue == 1301 dev->eps[ep_index].queued_deq_ptr) 1302 break; 1303 ep_ring->deq_seg = ep_ring->deq_seg->next; 1304 ep_ring->dequeue = ep_ring->deq_seg->trbs; 1305 } 1306 if (ep_ring->dequeue == dequeue_temp) { 1307 xhci_dbg(xhci, "Unable to find new dequeue pointer\n"); 1308 break; 1309 } 1310 } 1311 } 1312 1313 /* 1314 * When we get a completion for a Set Transfer Ring Dequeue Pointer command, 1315 * we need to clear the set deq pending flag in the endpoint ring state, so that 1316 * the TD queueing code can ring the doorbell again. We also need to ring the 1317 * endpoint doorbell to restart the ring, but only if there aren't more 1318 * cancellations pending. 1319 */ 1320 static void xhci_handle_cmd_set_deq(struct xhci_hcd *xhci, int slot_id, 1321 union xhci_trb *trb, u32 cmd_comp_code) 1322 { 1323 unsigned int ep_index; 1324 unsigned int stream_id; 1325 struct xhci_ring *ep_ring; 1326 struct xhci_virt_ep *ep; 1327 struct xhci_ep_ctx *ep_ctx; 1328 struct xhci_slot_ctx *slot_ctx; 1329 struct xhci_td *td, *tmp_td; 1330 1331 ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3])); 1332 stream_id = TRB_TO_STREAM_ID(le32_to_cpu(trb->generic.field[2])); 1333 ep = xhci_get_virt_ep(xhci, slot_id, ep_index); 1334 if (!ep) 1335 return; 1336 1337 ep_ring = xhci_virt_ep_to_ring(xhci, ep, stream_id); 1338 if (!ep_ring) { 1339 xhci_warn(xhci, "WARN Set TR deq ptr command for freed stream ID %u\n", 1340 stream_id); 1341 /* XXX: Harmless??? */ 1342 goto cleanup; 1343 } 1344 1345 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep_index); 1346 slot_ctx = xhci_get_slot_ctx(xhci, ep->vdev->out_ctx); 1347 trace_xhci_handle_cmd_set_deq(slot_ctx); 1348 trace_xhci_handle_cmd_set_deq_ep(ep_ctx); 1349 1350 if (cmd_comp_code != COMP_SUCCESS) { 1351 unsigned int ep_state; 1352 unsigned int slot_state; 1353 1354 switch (cmd_comp_code) { 1355 case COMP_TRB_ERROR: 1356 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because of stream ID configuration\n"); 1357 break; 1358 case COMP_CONTEXT_STATE_ERROR: 1359 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.\n"); 1360 ep_state = GET_EP_CTX_STATE(ep_ctx); 1361 slot_state = le32_to_cpu(slot_ctx->dev_state); 1362 slot_state = GET_SLOT_STATE(slot_state); 1363 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, 1364 "Slot state = %u, EP state = %u", 1365 slot_state, ep_state); 1366 break; 1367 case COMP_SLOT_NOT_ENABLED_ERROR: 1368 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because slot %u was not enabled.\n", 1369 slot_id); 1370 break; 1371 default: 1372 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown completion code of %u.\n", 1373 cmd_comp_code); 1374 break; 1375 } 1376 /* OK what do we do now? The endpoint state is hosed, and we 1377 * should never get to this point if the synchronization between 1378 * queueing, and endpoint state are correct. This might happen 1379 * if the device gets disconnected after we've finished 1380 * cancelling URBs, which might not be an error... 1381 */ 1382 } else { 1383 u64 deq; 1384 /* 4.6.10 deq ptr is written to the stream ctx for streams */ 1385 if (ep->ep_state & EP_HAS_STREAMS) { 1386 struct xhci_stream_ctx *ctx = 1387 &ep->stream_info->stream_ctx_array[stream_id]; 1388 deq = le64_to_cpu(ctx->stream_ring) & SCTX_DEQ_MASK; 1389 } else { 1390 deq = le64_to_cpu(ep_ctx->deq) & ~EP_CTX_CYCLE_MASK; 1391 } 1392 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, 1393 "Successful Set TR Deq Ptr cmd, deq = @%08llx", deq); 1394 if (xhci_trb_virt_to_dma(ep->queued_deq_seg, 1395 ep->queued_deq_ptr) == deq) { 1396 /* Update the ring's dequeue segment and dequeue pointer 1397 * to reflect the new position. 1398 */ 1399 update_ring_for_set_deq_completion(xhci, ep->vdev, 1400 ep_ring, ep_index); 1401 } else { 1402 xhci_warn(xhci, "Mismatch between completed Set TR Deq Ptr command & xHCI internal state.\n"); 1403 xhci_warn(xhci, "ep deq seg = %p, deq ptr = %p\n", 1404 ep->queued_deq_seg, ep->queued_deq_ptr); 1405 } 1406 } 1407 /* HW cached TDs cleared from cache, give them back */ 1408 list_for_each_entry_safe(td, tmp_td, &ep->cancelled_td_list, 1409 cancelled_td_list) { 1410 ep_ring = xhci_urb_to_transfer_ring(ep->xhci, td->urb); 1411 if (td->cancel_status == TD_CLEARING_CACHE) { 1412 td->cancel_status = TD_CLEARED; 1413 xhci_dbg(ep->xhci, "%s: Giveback cancelled URB %p TD\n", 1414 __func__, td->urb); 1415 xhci_td_cleanup(ep->xhci, td, ep_ring, td->status); 1416 } else { 1417 xhci_dbg(ep->xhci, "%s: Keep cancelled URB %p TD as cancel_status is %d\n", 1418 __func__, td->urb, td->cancel_status); 1419 } 1420 } 1421 cleanup: 1422 ep->ep_state &= ~SET_DEQ_PENDING; 1423 ep->queued_deq_seg = NULL; 1424 ep->queued_deq_ptr = NULL; 1425 /* Restart any rings with pending URBs */ 1426 ring_doorbell_for_active_rings(xhci, slot_id, ep_index); 1427 } 1428 1429 static void xhci_handle_cmd_reset_ep(struct xhci_hcd *xhci, int slot_id, 1430 union xhci_trb *trb, u32 cmd_comp_code) 1431 { 1432 struct xhci_virt_ep *ep; 1433 struct xhci_ep_ctx *ep_ctx; 1434 unsigned int ep_index; 1435 1436 ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3])); 1437 ep = xhci_get_virt_ep(xhci, slot_id, ep_index); 1438 if (!ep) 1439 return; 1440 1441 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep_index); 1442 trace_xhci_handle_cmd_reset_ep(ep_ctx); 1443 1444 /* This command will only fail if the endpoint wasn't halted, 1445 * but we don't care. 1446 */ 1447 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep, 1448 "Ignoring reset ep completion code of %u", cmd_comp_code); 1449 1450 /* Cleanup cancelled TDs as ep is stopped. May queue a Set TR Deq cmd */ 1451 xhci_invalidate_cancelled_tds(ep); 1452 1453 /* Clear our internal halted state */ 1454 ep->ep_state &= ~EP_HALTED; 1455 1456 xhci_giveback_invalidated_tds(ep); 1457 1458 /* if this was a soft reset, then restart */ 1459 if ((le32_to_cpu(trb->generic.field[3])) & TRB_TSP) 1460 ring_doorbell_for_active_rings(xhci, slot_id, ep_index); 1461 } 1462 1463 static void xhci_handle_cmd_enable_slot(struct xhci_hcd *xhci, int slot_id, 1464 struct xhci_command *command, u32 cmd_comp_code) 1465 { 1466 if (cmd_comp_code == COMP_SUCCESS) 1467 command->slot_id = slot_id; 1468 else 1469 command->slot_id = 0; 1470 } 1471 1472 static void xhci_handle_cmd_disable_slot(struct xhci_hcd *xhci, int slot_id) 1473 { 1474 struct xhci_virt_device *virt_dev; 1475 struct xhci_slot_ctx *slot_ctx; 1476 1477 virt_dev = xhci->devs[slot_id]; 1478 if (!virt_dev) 1479 return; 1480 1481 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx); 1482 trace_xhci_handle_cmd_disable_slot(slot_ctx); 1483 1484 if (xhci->quirks & XHCI_EP_LIMIT_QUIRK) 1485 /* Delete default control endpoint resources */ 1486 xhci_free_device_endpoint_resources(xhci, virt_dev, true); 1487 } 1488 1489 static void xhci_handle_cmd_config_ep(struct xhci_hcd *xhci, int slot_id, 1490 u32 cmd_comp_code) 1491 { 1492 struct xhci_virt_device *virt_dev; 1493 struct xhci_input_control_ctx *ctrl_ctx; 1494 struct xhci_ep_ctx *ep_ctx; 1495 unsigned int ep_index; 1496 u32 add_flags; 1497 1498 /* 1499 * Configure endpoint commands can come from the USB core configuration 1500 * or alt setting changes, or when streams were being configured. 1501 */ 1502 1503 virt_dev = xhci->devs[slot_id]; 1504 if (!virt_dev) 1505 return; 1506 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx); 1507 if (!ctrl_ctx) { 1508 xhci_warn(xhci, "Could not get input context, bad type.\n"); 1509 return; 1510 } 1511 1512 add_flags = le32_to_cpu(ctrl_ctx->add_flags); 1513 1514 /* Input ctx add_flags are the endpoint index plus one */ 1515 ep_index = xhci_last_valid_endpoint(add_flags) - 1; 1516 1517 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->out_ctx, ep_index); 1518 trace_xhci_handle_cmd_config_ep(ep_ctx); 1519 1520 return; 1521 } 1522 1523 static void xhci_handle_cmd_addr_dev(struct xhci_hcd *xhci, int slot_id) 1524 { 1525 struct xhci_virt_device *vdev; 1526 struct xhci_slot_ctx *slot_ctx; 1527 1528 vdev = xhci->devs[slot_id]; 1529 if (!vdev) 1530 return; 1531 slot_ctx = xhci_get_slot_ctx(xhci, vdev->out_ctx); 1532 trace_xhci_handle_cmd_addr_dev(slot_ctx); 1533 } 1534 1535 static void xhci_handle_cmd_reset_dev(struct xhci_hcd *xhci, int slot_id) 1536 { 1537 struct xhci_virt_device *vdev; 1538 struct xhci_slot_ctx *slot_ctx; 1539 1540 vdev = xhci->devs[slot_id]; 1541 if (!vdev) { 1542 xhci_warn(xhci, "Reset device command completion for disabled slot %u\n", 1543 slot_id); 1544 return; 1545 } 1546 slot_ctx = xhci_get_slot_ctx(xhci, vdev->out_ctx); 1547 trace_xhci_handle_cmd_reset_dev(slot_ctx); 1548 1549 xhci_dbg(xhci, "Completed reset device command.\n"); 1550 } 1551 1552 static void xhci_handle_cmd_nec_get_fw(struct xhci_hcd *xhci, 1553 struct xhci_event_cmd *event) 1554 { 1555 if (!(xhci->quirks & XHCI_NEC_HOST)) { 1556 xhci_warn(xhci, "WARN NEC_GET_FW command on non-NEC host\n"); 1557 return; 1558 } 1559 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks, 1560 "NEC firmware version %2x.%02x", 1561 NEC_FW_MAJOR(le32_to_cpu(event->status)), 1562 NEC_FW_MINOR(le32_to_cpu(event->status))); 1563 } 1564 1565 static void xhci_complete_del_and_free_cmd(struct xhci_command *cmd, u32 status) 1566 { 1567 list_del(&cmd->cmd_list); 1568 1569 if (cmd->completion) { 1570 cmd->status = status; 1571 complete(cmd->completion); 1572 } else { 1573 kfree(cmd); 1574 } 1575 } 1576 1577 void xhci_cleanup_command_queue(struct xhci_hcd *xhci) 1578 { 1579 struct xhci_command *cur_cmd, *tmp_cmd; 1580 xhci->current_cmd = NULL; 1581 list_for_each_entry_safe(cur_cmd, tmp_cmd, &xhci->cmd_list, cmd_list) 1582 xhci_complete_del_and_free_cmd(cur_cmd, COMP_COMMAND_ABORTED); 1583 } 1584 1585 void xhci_handle_command_timeout(struct work_struct *work) 1586 { 1587 struct xhci_hcd *xhci; 1588 unsigned long flags; 1589 char str[XHCI_MSG_MAX]; 1590 u64 hw_ring_state; 1591 u32 cmd_field3; 1592 u32 usbsts; 1593 1594 xhci = container_of(to_delayed_work(work), struct xhci_hcd, cmd_timer); 1595 1596 spin_lock_irqsave(&xhci->lock, flags); 1597 1598 /* 1599 * If timeout work is pending, or current_cmd is NULL, it means we 1600 * raced with command completion. Command is handled so just return. 1601 */ 1602 if (!xhci->current_cmd || delayed_work_pending(&xhci->cmd_timer)) { 1603 spin_unlock_irqrestore(&xhci->lock, flags); 1604 return; 1605 } 1606 1607 cmd_field3 = le32_to_cpu(xhci->current_cmd->command_trb->generic.field[3]); 1608 usbsts = readl(&xhci->op_regs->status); 1609 xhci_dbg(xhci, "Command timeout, USBSTS:%s\n", xhci_decode_usbsts(str, usbsts)); 1610 1611 /* Bail out and tear down xhci if a stop endpoint command failed */ 1612 if (TRB_FIELD_TO_TYPE(cmd_field3) == TRB_STOP_RING) { 1613 struct xhci_virt_ep *ep; 1614 1615 xhci_warn(xhci, "xHCI host not responding to stop endpoint command\n"); 1616 1617 ep = xhci_get_virt_ep(xhci, TRB_TO_SLOT_ID(cmd_field3), 1618 TRB_TO_EP_INDEX(cmd_field3)); 1619 if (ep) 1620 ep->ep_state &= ~EP_STOP_CMD_PENDING; 1621 1622 xhci_halt(xhci); 1623 xhci_hc_died(xhci); 1624 goto time_out_completed; 1625 } 1626 1627 /* mark this command to be cancelled */ 1628 xhci->current_cmd->status = COMP_COMMAND_ABORTED; 1629 1630 /* Make sure command ring is running before aborting it */ 1631 hw_ring_state = xhci_read_64(xhci, &xhci->op_regs->cmd_ring); 1632 if (hw_ring_state == ~(u64)0) { 1633 xhci_hc_died(xhci); 1634 goto time_out_completed; 1635 } 1636 1637 if ((xhci->cmd_ring_state & CMD_RING_STATE_RUNNING) && 1638 (hw_ring_state & CMD_RING_RUNNING)) { 1639 /* Prevent new doorbell, and start command abort */ 1640 xhci->cmd_ring_state = CMD_RING_STATE_ABORTED; 1641 xhci_dbg(xhci, "Command timeout\n"); 1642 xhci_abort_cmd_ring(xhci, flags); 1643 goto time_out_completed; 1644 } 1645 1646 /* host removed. Bail out */ 1647 if (xhci->xhc_state & XHCI_STATE_REMOVING) { 1648 xhci_dbg(xhci, "host removed, ring start fail?\n"); 1649 xhci_cleanup_command_queue(xhci); 1650 1651 goto time_out_completed; 1652 } 1653 1654 /* command timeout on stopped ring, ring can't be aborted */ 1655 xhci_dbg(xhci, "Command timeout on stopped ring\n"); 1656 xhci_handle_stopped_cmd_ring(xhci, xhci->current_cmd); 1657 1658 time_out_completed: 1659 spin_unlock_irqrestore(&xhci->lock, flags); 1660 return; 1661 } 1662 1663 static void handle_cmd_completion(struct xhci_hcd *xhci, 1664 struct xhci_event_cmd *event) 1665 { 1666 unsigned int slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->flags)); 1667 u64 cmd_dma; 1668 dma_addr_t cmd_dequeue_dma; 1669 u32 cmd_comp_code; 1670 union xhci_trb *cmd_trb; 1671 struct xhci_command *cmd; 1672 u32 cmd_type; 1673 1674 if (slot_id >= MAX_HC_SLOTS) { 1675 xhci_warn(xhci, "Invalid slot_id %u\n", slot_id); 1676 return; 1677 } 1678 1679 cmd_dma = le64_to_cpu(event->cmd_trb); 1680 cmd_trb = xhci->cmd_ring->dequeue; 1681 1682 trace_xhci_handle_command(xhci->cmd_ring, &cmd_trb->generic); 1683 1684 cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg, 1685 cmd_trb); 1686 /* 1687 * Check whether the completion event is for our internal kept 1688 * command. 1689 */ 1690 if (!cmd_dequeue_dma || cmd_dma != (u64)cmd_dequeue_dma) { 1691 xhci_warn(xhci, 1692 "ERROR mismatched command completion event\n"); 1693 return; 1694 } 1695 1696 cmd = list_first_entry(&xhci->cmd_list, struct xhci_command, cmd_list); 1697 1698 cancel_delayed_work(&xhci->cmd_timer); 1699 1700 cmd_comp_code = GET_COMP_CODE(le32_to_cpu(event->status)); 1701 1702 /* If CMD ring stopped we own the trbs between enqueue and dequeue */ 1703 if (cmd_comp_code == COMP_COMMAND_RING_STOPPED) { 1704 complete_all(&xhci->cmd_ring_stop_completion); 1705 return; 1706 } 1707 1708 if (cmd->command_trb != xhci->cmd_ring->dequeue) { 1709 xhci_err(xhci, 1710 "Command completion event does not match command\n"); 1711 return; 1712 } 1713 1714 /* 1715 * Host aborted the command ring, check if the current command was 1716 * supposed to be aborted, otherwise continue normally. 1717 * The command ring is stopped now, but the xHC will issue a Command 1718 * Ring Stopped event which will cause us to restart it. 1719 */ 1720 if (cmd_comp_code == COMP_COMMAND_ABORTED) { 1721 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED; 1722 if (cmd->status == COMP_COMMAND_ABORTED) { 1723 if (xhci->current_cmd == cmd) 1724 xhci->current_cmd = NULL; 1725 goto event_handled; 1726 } 1727 } 1728 1729 cmd_type = TRB_FIELD_TO_TYPE(le32_to_cpu(cmd_trb->generic.field[3])); 1730 switch (cmd_type) { 1731 case TRB_ENABLE_SLOT: 1732 xhci_handle_cmd_enable_slot(xhci, slot_id, cmd, cmd_comp_code); 1733 break; 1734 case TRB_DISABLE_SLOT: 1735 xhci_handle_cmd_disable_slot(xhci, slot_id); 1736 break; 1737 case TRB_CONFIG_EP: 1738 if (!cmd->completion) 1739 xhci_handle_cmd_config_ep(xhci, slot_id, cmd_comp_code); 1740 break; 1741 case TRB_EVAL_CONTEXT: 1742 break; 1743 case TRB_ADDR_DEV: 1744 xhci_handle_cmd_addr_dev(xhci, slot_id); 1745 break; 1746 case TRB_STOP_RING: 1747 WARN_ON(slot_id != TRB_TO_SLOT_ID( 1748 le32_to_cpu(cmd_trb->generic.field[3]))); 1749 if (!cmd->completion) 1750 xhci_handle_cmd_stop_ep(xhci, slot_id, cmd_trb, 1751 cmd_comp_code); 1752 break; 1753 case TRB_SET_DEQ: 1754 WARN_ON(slot_id != TRB_TO_SLOT_ID( 1755 le32_to_cpu(cmd_trb->generic.field[3]))); 1756 xhci_handle_cmd_set_deq(xhci, slot_id, cmd_trb, cmd_comp_code); 1757 break; 1758 case TRB_CMD_NOOP: 1759 /* Is this an aborted command turned to NO-OP? */ 1760 if (cmd->status == COMP_COMMAND_RING_STOPPED) 1761 cmd_comp_code = COMP_COMMAND_RING_STOPPED; 1762 break; 1763 case TRB_RESET_EP: 1764 WARN_ON(slot_id != TRB_TO_SLOT_ID( 1765 le32_to_cpu(cmd_trb->generic.field[3]))); 1766 xhci_handle_cmd_reset_ep(xhci, slot_id, cmd_trb, cmd_comp_code); 1767 break; 1768 case TRB_RESET_DEV: 1769 /* SLOT_ID field in reset device cmd completion event TRB is 0. 1770 * Use the SLOT_ID from the command TRB instead (xhci 4.6.11) 1771 */ 1772 slot_id = TRB_TO_SLOT_ID( 1773 le32_to_cpu(cmd_trb->generic.field[3])); 1774 xhci_handle_cmd_reset_dev(xhci, slot_id); 1775 break; 1776 case TRB_NEC_GET_FW: 1777 xhci_handle_cmd_nec_get_fw(xhci, event); 1778 break; 1779 default: 1780 /* Skip over unknown commands on the event ring */ 1781 xhci_info(xhci, "INFO unknown command type %d\n", cmd_type); 1782 break; 1783 } 1784 1785 /* restart timer if this wasn't the last command */ 1786 if (!list_is_singular(&xhci->cmd_list)) { 1787 xhci->current_cmd = list_first_entry(&cmd->cmd_list, 1788 struct xhci_command, cmd_list); 1789 xhci_mod_cmd_timer(xhci, XHCI_CMD_DEFAULT_TIMEOUT); 1790 } else if (xhci->current_cmd == cmd) { 1791 xhci->current_cmd = NULL; 1792 } 1793 1794 event_handled: 1795 xhci_complete_del_and_free_cmd(cmd, cmd_comp_code); 1796 1797 inc_deq(xhci, xhci->cmd_ring); 1798 } 1799 1800 static void handle_vendor_event(struct xhci_hcd *xhci, 1801 union xhci_trb *event, u32 trb_type) 1802 { 1803 xhci_dbg(xhci, "Vendor specific event TRB type = %u\n", trb_type); 1804 if (trb_type == TRB_NEC_CMD_COMP && (xhci->quirks & XHCI_NEC_HOST)) 1805 handle_cmd_completion(xhci, &event->event_cmd); 1806 } 1807 1808 static void handle_device_notification(struct xhci_hcd *xhci, 1809 union xhci_trb *event) 1810 { 1811 u32 slot_id; 1812 struct usb_device *udev; 1813 1814 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->generic.field[3])); 1815 if (!xhci->devs[slot_id]) { 1816 xhci_warn(xhci, "Device Notification event for " 1817 "unused slot %u\n", slot_id); 1818 return; 1819 } 1820 1821 xhci_dbg(xhci, "Device Wake Notification event for slot ID %u\n", 1822 slot_id); 1823 udev = xhci->devs[slot_id]->udev; 1824 if (udev && udev->parent) 1825 usb_wakeup_notification(udev->parent, udev->portnum); 1826 } 1827 1828 /* 1829 * Quirk hanlder for errata seen on Cavium ThunderX2 processor XHCI 1830 * Controller. 1831 * As per ThunderX2errata-129 USB 2 device may come up as USB 1 1832 * If a connection to a USB 1 device is followed by another connection 1833 * to a USB 2 device. 1834 * 1835 * Reset the PHY after the USB device is disconnected if device speed 1836 * is less than HCD_USB3. 1837 * Retry the reset sequence max of 4 times checking the PLL lock status. 1838 * 1839 */ 1840 static void xhci_cavium_reset_phy_quirk(struct xhci_hcd *xhci) 1841 { 1842 struct usb_hcd *hcd = xhci_to_hcd(xhci); 1843 u32 pll_lock_check; 1844 u32 retry_count = 4; 1845 1846 do { 1847 /* Assert PHY reset */ 1848 writel(0x6F, hcd->regs + 0x1048); 1849 udelay(10); 1850 /* De-assert the PHY reset */ 1851 writel(0x7F, hcd->regs + 0x1048); 1852 udelay(200); 1853 pll_lock_check = readl(hcd->regs + 0x1070); 1854 } while (!(pll_lock_check & 0x1) && --retry_count); 1855 } 1856 1857 static void handle_port_status(struct xhci_hcd *xhci, 1858 struct xhci_interrupter *ir, 1859 union xhci_trb *event) 1860 { 1861 struct usb_hcd *hcd; 1862 u32 port_id; 1863 u32 portsc, cmd_reg; 1864 int max_ports; 1865 int slot_id; 1866 unsigned int hcd_portnum; 1867 struct xhci_bus_state *bus_state; 1868 bool bogus_port_status = false; 1869 struct xhci_port *port; 1870 1871 /* Port status change events always have a successful completion code */ 1872 if (GET_COMP_CODE(le32_to_cpu(event->generic.field[2])) != COMP_SUCCESS) 1873 xhci_warn(xhci, 1874 "WARN: xHC returned failed port status event\n"); 1875 1876 port_id = GET_PORT_ID(le32_to_cpu(event->generic.field[0])); 1877 max_ports = HCS_MAX_PORTS(xhci->hcs_params1); 1878 1879 if ((port_id <= 0) || (port_id > max_ports)) { 1880 xhci_warn(xhci, "Port change event with invalid port ID %d\n", 1881 port_id); 1882 inc_deq(xhci, ir->event_ring); 1883 return; 1884 } 1885 1886 port = &xhci->hw_ports[port_id - 1]; 1887 if (!port || !port->rhub || port->hcd_portnum == DUPLICATE_ENTRY) { 1888 xhci_warn(xhci, "Port change event, no port for port ID %u\n", 1889 port_id); 1890 bogus_port_status = true; 1891 goto cleanup; 1892 } 1893 1894 /* We might get interrupts after shared_hcd is removed */ 1895 if (port->rhub == &xhci->usb3_rhub && xhci->shared_hcd == NULL) { 1896 xhci_dbg(xhci, "ignore port event for removed USB3 hcd\n"); 1897 bogus_port_status = true; 1898 goto cleanup; 1899 } 1900 1901 hcd = port->rhub->hcd; 1902 bus_state = &port->rhub->bus_state; 1903 hcd_portnum = port->hcd_portnum; 1904 portsc = readl(port->addr); 1905 1906 xhci_dbg(xhci, "Port change event, %d-%d, id %d, portsc: 0x%x\n", 1907 hcd->self.busnum, hcd_portnum + 1, port_id, portsc); 1908 1909 trace_xhci_handle_port_status(hcd_portnum, portsc); 1910 1911 if (hcd->state == HC_STATE_SUSPENDED) { 1912 xhci_dbg(xhci, "resume root hub\n"); 1913 usb_hcd_resume_root_hub(hcd); 1914 } 1915 1916 if (hcd->speed >= HCD_USB3 && 1917 (portsc & PORT_PLS_MASK) == XDEV_INACTIVE) { 1918 slot_id = xhci_find_slot_id_by_port(hcd, xhci, hcd_portnum + 1); 1919 if (slot_id && xhci->devs[slot_id]) 1920 xhci->devs[slot_id]->flags |= VDEV_PORT_ERROR; 1921 } 1922 1923 if ((portsc & PORT_PLC) && (portsc & PORT_PLS_MASK) == XDEV_RESUME) { 1924 xhci_dbg(xhci, "port resume event for port %d\n", port_id); 1925 1926 cmd_reg = readl(&xhci->op_regs->command); 1927 if (!(cmd_reg & CMD_RUN)) { 1928 xhci_warn(xhci, "xHC is not running.\n"); 1929 goto cleanup; 1930 } 1931 1932 if (DEV_SUPERSPEED_ANY(portsc)) { 1933 xhci_dbg(xhci, "remote wake SS port %d\n", port_id); 1934 /* Set a flag to say the port signaled remote wakeup, 1935 * so we can tell the difference between the end of 1936 * device and host initiated resume. 1937 */ 1938 bus_state->port_remote_wakeup |= 1 << hcd_portnum; 1939 xhci_test_and_clear_bit(xhci, port, PORT_PLC); 1940 usb_hcd_start_port_resume(&hcd->self, hcd_portnum); 1941 xhci_set_link_state(xhci, port, XDEV_U0); 1942 /* Need to wait until the next link state change 1943 * indicates the device is actually in U0. 1944 */ 1945 bogus_port_status = true; 1946 goto cleanup; 1947 } else if (!test_bit(hcd_portnum, &bus_state->resuming_ports)) { 1948 xhci_dbg(xhci, "resume HS port %d\n", port_id); 1949 port->resume_timestamp = jiffies + 1950 msecs_to_jiffies(USB_RESUME_TIMEOUT); 1951 set_bit(hcd_portnum, &bus_state->resuming_ports); 1952 /* Do the rest in GetPortStatus after resume time delay. 1953 * Avoid polling roothub status before that so that a 1954 * usb device auto-resume latency around ~40ms. 1955 */ 1956 set_bit(HCD_FLAG_POLL_RH, &hcd->flags); 1957 mod_timer(&hcd->rh_timer, 1958 port->resume_timestamp); 1959 usb_hcd_start_port_resume(&hcd->self, hcd_portnum); 1960 bogus_port_status = true; 1961 } 1962 } 1963 1964 if ((portsc & PORT_PLC) && 1965 DEV_SUPERSPEED_ANY(portsc) && 1966 ((portsc & PORT_PLS_MASK) == XDEV_U0 || 1967 (portsc & PORT_PLS_MASK) == XDEV_U1 || 1968 (portsc & PORT_PLS_MASK) == XDEV_U2)) { 1969 xhci_dbg(xhci, "resume SS port %d finished\n", port_id); 1970 complete(&port->u3exit_done); 1971 /* We've just brought the device into U0/1/2 through either the 1972 * Resume state after a device remote wakeup, or through the 1973 * U3Exit state after a host-initiated resume. If it's a device 1974 * initiated remote wake, don't pass up the link state change, 1975 * so the roothub behavior is consistent with external 1976 * USB 3.0 hub behavior. 1977 */ 1978 slot_id = xhci_find_slot_id_by_port(hcd, xhci, hcd_portnum + 1); 1979 if (slot_id && xhci->devs[slot_id]) 1980 xhci_ring_device(xhci, slot_id); 1981 if (bus_state->port_remote_wakeup & (1 << hcd_portnum)) { 1982 xhci_test_and_clear_bit(xhci, port, PORT_PLC); 1983 usb_wakeup_notification(hcd->self.root_hub, 1984 hcd_portnum + 1); 1985 bogus_port_status = true; 1986 goto cleanup; 1987 } 1988 } 1989 1990 /* 1991 * Check to see if xhci-hub.c is waiting on RExit to U0 transition (or 1992 * RExit to a disconnect state). If so, let the driver know it's 1993 * out of the RExit state. 1994 */ 1995 if (hcd->speed < HCD_USB3 && port->rexit_active) { 1996 complete(&port->rexit_done); 1997 port->rexit_active = false; 1998 bogus_port_status = true; 1999 goto cleanup; 2000 } 2001 2002 if (hcd->speed < HCD_USB3) { 2003 xhci_test_and_clear_bit(xhci, port, PORT_PLC); 2004 if ((xhci->quirks & XHCI_RESET_PLL_ON_DISCONNECT) && 2005 (portsc & PORT_CSC) && !(portsc & PORT_CONNECT)) 2006 xhci_cavium_reset_phy_quirk(xhci); 2007 } 2008 2009 cleanup: 2010 /* Update event ring dequeue pointer before dropping the lock */ 2011 inc_deq(xhci, ir->event_ring); 2012 2013 /* Don't make the USB core poll the roothub if we got a bad port status 2014 * change event. Besides, at that point we can't tell which roothub 2015 * (USB 2.0 or USB 3.0) to kick. 2016 */ 2017 if (bogus_port_status) 2018 return; 2019 2020 /* 2021 * xHCI port-status-change events occur when the "or" of all the 2022 * status-change bits in the portsc register changes from 0 to 1. 2023 * New status changes won't cause an event if any other change 2024 * bits are still set. When an event occurs, switch over to 2025 * polling to avoid losing status changes. 2026 */ 2027 xhci_dbg(xhci, "%s: starting usb%d port polling.\n", 2028 __func__, hcd->self.busnum); 2029 set_bit(HCD_FLAG_POLL_RH, &hcd->flags); 2030 spin_unlock(&xhci->lock); 2031 /* Pass this up to the core */ 2032 usb_hcd_poll_rh_status(hcd); 2033 spin_lock(&xhci->lock); 2034 } 2035 2036 /* 2037 * This TD is defined by the TRBs starting at start_trb in start_seg and ending 2038 * at end_trb, which may be in another segment. If the suspect DMA address is a 2039 * TRB in this TD, this function returns that TRB's segment. Otherwise it 2040 * returns 0. 2041 */ 2042 struct xhci_segment *trb_in_td(struct xhci_hcd *xhci, 2043 struct xhci_segment *start_seg, 2044 union xhci_trb *start_trb, 2045 union xhci_trb *end_trb, 2046 dma_addr_t suspect_dma, 2047 bool debug) 2048 { 2049 dma_addr_t start_dma; 2050 dma_addr_t end_seg_dma; 2051 dma_addr_t end_trb_dma; 2052 struct xhci_segment *cur_seg; 2053 2054 start_dma = xhci_trb_virt_to_dma(start_seg, start_trb); 2055 cur_seg = start_seg; 2056 2057 do { 2058 if (start_dma == 0) 2059 return NULL; 2060 /* We may get an event for a Link TRB in the middle of a TD */ 2061 end_seg_dma = xhci_trb_virt_to_dma(cur_seg, 2062 &cur_seg->trbs[TRBS_PER_SEGMENT - 1]); 2063 /* If the end TRB isn't in this segment, this is set to 0 */ 2064 end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb); 2065 2066 if (debug) 2067 xhci_warn(xhci, 2068 "Looking for event-dma %016llx trb-start %016llx trb-end %016llx seg-start %016llx seg-end %016llx\n", 2069 (unsigned long long)suspect_dma, 2070 (unsigned long long)start_dma, 2071 (unsigned long long)end_trb_dma, 2072 (unsigned long long)cur_seg->dma, 2073 (unsigned long long)end_seg_dma); 2074 2075 if (end_trb_dma > 0) { 2076 /* The end TRB is in this segment, so suspect should be here */ 2077 if (start_dma <= end_trb_dma) { 2078 if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma) 2079 return cur_seg; 2080 } else { 2081 /* Case for one segment with 2082 * a TD wrapped around to the top 2083 */ 2084 if ((suspect_dma >= start_dma && 2085 suspect_dma <= end_seg_dma) || 2086 (suspect_dma >= cur_seg->dma && 2087 suspect_dma <= end_trb_dma)) 2088 return cur_seg; 2089 } 2090 return NULL; 2091 } else { 2092 /* Might still be somewhere in this segment */ 2093 if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma) 2094 return cur_seg; 2095 } 2096 cur_seg = cur_seg->next; 2097 start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]); 2098 } while (cur_seg != start_seg); 2099 2100 return NULL; 2101 } 2102 2103 static void xhci_clear_hub_tt_buffer(struct xhci_hcd *xhci, struct xhci_td *td, 2104 struct xhci_virt_ep *ep) 2105 { 2106 /* 2107 * As part of low/full-speed endpoint-halt processing 2108 * we must clear the TT buffer (USB 2.0 specification 11.17.5). 2109 */ 2110 if (td->urb->dev->tt && !usb_pipeint(td->urb->pipe) && 2111 (td->urb->dev->tt->hub != xhci_to_hcd(xhci)->self.root_hub) && 2112 !(ep->ep_state & EP_CLEARING_TT)) { 2113 ep->ep_state |= EP_CLEARING_TT; 2114 td->urb->ep->hcpriv = td->urb->dev; 2115 if (usb_hub_clear_tt_buffer(td->urb)) 2116 ep->ep_state &= ~EP_CLEARING_TT; 2117 } 2118 } 2119 2120 /* Check if an error has halted the endpoint ring. The class driver will 2121 * cleanup the halt for a non-default control endpoint if we indicate a stall. 2122 * However, a babble and other errors also halt the endpoint ring, and the class 2123 * driver won't clear the halt in that case, so we need to issue a Set Transfer 2124 * Ring Dequeue Pointer command manually. 2125 */ 2126 static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci, 2127 struct xhci_ep_ctx *ep_ctx, 2128 unsigned int trb_comp_code) 2129 { 2130 /* TRB completion codes that may require a manual halt cleanup */ 2131 if (trb_comp_code == COMP_USB_TRANSACTION_ERROR || 2132 trb_comp_code == COMP_BABBLE_DETECTED_ERROR || 2133 trb_comp_code == COMP_SPLIT_TRANSACTION_ERROR) 2134 /* The 0.95 spec says a babbling control endpoint 2135 * is not halted. The 0.96 spec says it is. Some HW 2136 * claims to be 0.95 compliant, but it halts the control 2137 * endpoint anyway. Check if a babble halted the 2138 * endpoint. 2139 */ 2140 if (GET_EP_CTX_STATE(ep_ctx) == EP_STATE_HALTED) 2141 return 1; 2142 2143 return 0; 2144 } 2145 2146 int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code) 2147 { 2148 if (trb_comp_code >= 224 && trb_comp_code <= 255) { 2149 /* Vendor defined "informational" completion code, 2150 * treat as not-an-error. 2151 */ 2152 xhci_dbg(xhci, "Vendor defined info completion code %u\n", 2153 trb_comp_code); 2154 xhci_dbg(xhci, "Treating code as success.\n"); 2155 return 1; 2156 } 2157 return 0; 2158 } 2159 2160 static int finish_td(struct xhci_hcd *xhci, struct xhci_virt_ep *ep, 2161 struct xhci_ring *ep_ring, struct xhci_td *td, 2162 u32 trb_comp_code) 2163 { 2164 struct xhci_ep_ctx *ep_ctx; 2165 2166 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep->ep_index); 2167 2168 switch (trb_comp_code) { 2169 case COMP_STOPPED_LENGTH_INVALID: 2170 case COMP_STOPPED_SHORT_PACKET: 2171 case COMP_STOPPED: 2172 /* 2173 * The "Stop Endpoint" completion will take care of any 2174 * stopped TDs. A stopped TD may be restarted, so don't update 2175 * the ring dequeue pointer or take this TD off any lists yet. 2176 */ 2177 return 0; 2178 case COMP_USB_TRANSACTION_ERROR: 2179 case COMP_BABBLE_DETECTED_ERROR: 2180 case COMP_SPLIT_TRANSACTION_ERROR: 2181 /* 2182 * If endpoint context state is not halted we might be 2183 * racing with a reset endpoint command issued by a unsuccessful 2184 * stop endpoint completion (context error). In that case the 2185 * td should be on the cancelled list, and EP_HALTED flag set. 2186 * 2187 * Or then it's not halted due to the 0.95 spec stating that a 2188 * babbling control endpoint should not halt. The 0.96 spec 2189 * again says it should. Some HW claims to be 0.95 compliant, 2190 * but it halts the control endpoint anyway. 2191 */ 2192 if (GET_EP_CTX_STATE(ep_ctx) != EP_STATE_HALTED) { 2193 /* 2194 * If EP_HALTED is set and TD is on the cancelled list 2195 * the TD and dequeue pointer will be handled by reset 2196 * ep command completion 2197 */ 2198 if ((ep->ep_state & EP_HALTED) && 2199 !list_empty(&td->cancelled_td_list)) { 2200 xhci_dbg(xhci, "Already resolving halted ep for 0x%llx\n", 2201 (unsigned long long)xhci_trb_virt_to_dma( 2202 td->start_seg, td->first_trb)); 2203 return 0; 2204 } 2205 /* endpoint not halted, don't reset it */ 2206 break; 2207 } 2208 /* Almost same procedure as for STALL_ERROR below */ 2209 xhci_clear_hub_tt_buffer(xhci, td, ep); 2210 xhci_handle_halted_endpoint(xhci, ep, td, EP_HARD_RESET); 2211 return 0; 2212 case COMP_STALL_ERROR: 2213 /* 2214 * xhci internal endpoint state will go to a "halt" state for 2215 * any stall, including default control pipe protocol stall. 2216 * To clear the host side halt we need to issue a reset endpoint 2217 * command, followed by a set dequeue command to move past the 2218 * TD. 2219 * Class drivers clear the device side halt from a functional 2220 * stall later. Hub TT buffer should only be cleared for FS/LS 2221 * devices behind HS hubs for functional stalls. 2222 */ 2223 if (ep->ep_index != 0) 2224 xhci_clear_hub_tt_buffer(xhci, td, ep); 2225 2226 xhci_handle_halted_endpoint(xhci, ep, td, EP_HARD_RESET); 2227 2228 return 0; /* xhci_handle_halted_endpoint marked td cancelled */ 2229 default: 2230 break; 2231 } 2232 2233 /* Update ring dequeue pointer */ 2234 ep_ring->dequeue = td->last_trb; 2235 ep_ring->deq_seg = td->last_trb_seg; 2236 inc_deq(xhci, ep_ring); 2237 2238 return xhci_td_cleanup(xhci, td, ep_ring, td->status); 2239 } 2240 2241 /* sum trb lengths from ring dequeue up to stop_trb, _excluding_ stop_trb */ 2242 static int sum_trb_lengths(struct xhci_hcd *xhci, struct xhci_ring *ring, 2243 union xhci_trb *stop_trb) 2244 { 2245 u32 sum; 2246 union xhci_trb *trb = ring->dequeue; 2247 struct xhci_segment *seg = ring->deq_seg; 2248 2249 for (sum = 0; trb != stop_trb; next_trb(xhci, ring, &seg, &trb)) { 2250 if (!trb_is_noop(trb) && !trb_is_link(trb)) 2251 sum += TRB_LEN(le32_to_cpu(trb->generic.field[2])); 2252 } 2253 return sum; 2254 } 2255 2256 /* 2257 * Process control tds, update urb status and actual_length. 2258 */ 2259 static int process_ctrl_td(struct xhci_hcd *xhci, struct xhci_virt_ep *ep, 2260 struct xhci_ring *ep_ring, struct xhci_td *td, 2261 union xhci_trb *ep_trb, struct xhci_transfer_event *event) 2262 { 2263 struct xhci_ep_ctx *ep_ctx; 2264 u32 trb_comp_code; 2265 u32 remaining, requested; 2266 u32 trb_type; 2267 2268 trb_type = TRB_FIELD_TO_TYPE(le32_to_cpu(ep_trb->generic.field[3])); 2269 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep->ep_index); 2270 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len)); 2271 requested = td->urb->transfer_buffer_length; 2272 remaining = EVENT_TRB_LEN(le32_to_cpu(event->transfer_len)); 2273 2274 switch (trb_comp_code) { 2275 case COMP_SUCCESS: 2276 if (trb_type != TRB_STATUS) { 2277 xhci_warn(xhci, "WARN: Success on ctrl %s TRB without IOC set?\n", 2278 (trb_type == TRB_DATA) ? "data" : "setup"); 2279 td->status = -ESHUTDOWN; 2280 break; 2281 } 2282 td->status = 0; 2283 break; 2284 case COMP_SHORT_PACKET: 2285 td->status = 0; 2286 break; 2287 case COMP_STOPPED_SHORT_PACKET: 2288 if (trb_type == TRB_DATA || trb_type == TRB_NORMAL) 2289 td->urb->actual_length = remaining; 2290 else 2291 xhci_warn(xhci, "WARN: Stopped Short Packet on ctrl setup or status TRB\n"); 2292 goto finish_td; 2293 case COMP_STOPPED: 2294 switch (trb_type) { 2295 case TRB_SETUP: 2296 td->urb->actual_length = 0; 2297 goto finish_td; 2298 case TRB_DATA: 2299 case TRB_NORMAL: 2300 td->urb->actual_length = requested - remaining; 2301 goto finish_td; 2302 case TRB_STATUS: 2303 td->urb->actual_length = requested; 2304 goto finish_td; 2305 default: 2306 xhci_warn(xhci, "WARN: unexpected TRB Type %d\n", 2307 trb_type); 2308 goto finish_td; 2309 } 2310 case COMP_STOPPED_LENGTH_INVALID: 2311 goto finish_td; 2312 default: 2313 if (!xhci_requires_manual_halt_cleanup(xhci, 2314 ep_ctx, trb_comp_code)) 2315 break; 2316 xhci_dbg(xhci, "TRB error %u, halted endpoint index = %u\n", 2317 trb_comp_code, ep->ep_index); 2318 fallthrough; 2319 case COMP_STALL_ERROR: 2320 /* Did we transfer part of the data (middle) phase? */ 2321 if (trb_type == TRB_DATA || trb_type == TRB_NORMAL) 2322 td->urb->actual_length = requested - remaining; 2323 else if (!td->urb_length_set) 2324 td->urb->actual_length = 0; 2325 goto finish_td; 2326 } 2327 2328 /* stopped at setup stage, no data transferred */ 2329 if (trb_type == TRB_SETUP) 2330 goto finish_td; 2331 2332 /* 2333 * if on data stage then update the actual_length of the URB and flag it 2334 * as set, so it won't be overwritten in the event for the last TRB. 2335 */ 2336 if (trb_type == TRB_DATA || 2337 trb_type == TRB_NORMAL) { 2338 td->urb_length_set = true; 2339 td->urb->actual_length = requested - remaining; 2340 xhci_dbg(xhci, "Waiting for status stage event\n"); 2341 return 0; 2342 } 2343 2344 /* at status stage */ 2345 if (!td->urb_length_set) 2346 td->urb->actual_length = requested; 2347 2348 finish_td: 2349 return finish_td(xhci, ep, ep_ring, td, trb_comp_code); 2350 } 2351 2352 /* 2353 * Process isochronous tds, update urb packet status and actual_length. 2354 */ 2355 static int process_isoc_td(struct xhci_hcd *xhci, struct xhci_virt_ep *ep, 2356 struct xhci_ring *ep_ring, struct xhci_td *td, 2357 union xhci_trb *ep_trb, struct xhci_transfer_event *event) 2358 { 2359 struct urb_priv *urb_priv; 2360 int idx; 2361 struct usb_iso_packet_descriptor *frame; 2362 u32 trb_comp_code; 2363 bool sum_trbs_for_length = false; 2364 u32 remaining, requested, ep_trb_len; 2365 int short_framestatus; 2366 2367 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len)); 2368 urb_priv = td->urb->hcpriv; 2369 idx = urb_priv->num_tds_done; 2370 frame = &td->urb->iso_frame_desc[idx]; 2371 requested = frame->length; 2372 remaining = EVENT_TRB_LEN(le32_to_cpu(event->transfer_len)); 2373 ep_trb_len = TRB_LEN(le32_to_cpu(ep_trb->generic.field[2])); 2374 short_framestatus = td->urb->transfer_flags & URB_SHORT_NOT_OK ? 2375 -EREMOTEIO : 0; 2376 2377 /* handle completion code */ 2378 switch (trb_comp_code) { 2379 case COMP_SUCCESS: 2380 /* Don't overwrite status if TD had an error, see xHCI 4.9.1 */ 2381 if (td->error_mid_td) 2382 break; 2383 if (remaining) { 2384 frame->status = short_framestatus; 2385 if (xhci->quirks & XHCI_TRUST_TX_LENGTH) 2386 sum_trbs_for_length = true; 2387 break; 2388 } 2389 frame->status = 0; 2390 break; 2391 case COMP_SHORT_PACKET: 2392 frame->status = short_framestatus; 2393 sum_trbs_for_length = true; 2394 break; 2395 case COMP_BANDWIDTH_OVERRUN_ERROR: 2396 frame->status = -ECOMM; 2397 break; 2398 case COMP_BABBLE_DETECTED_ERROR: 2399 sum_trbs_for_length = true; 2400 fallthrough; 2401 case COMP_ISOCH_BUFFER_OVERRUN: 2402 frame->status = -EOVERFLOW; 2403 if (ep_trb != td->last_trb) 2404 td->error_mid_td = true; 2405 break; 2406 case COMP_INCOMPATIBLE_DEVICE_ERROR: 2407 case COMP_STALL_ERROR: 2408 frame->status = -EPROTO; 2409 break; 2410 case COMP_USB_TRANSACTION_ERROR: 2411 frame->status = -EPROTO; 2412 sum_trbs_for_length = true; 2413 if (ep_trb != td->last_trb) 2414 td->error_mid_td = true; 2415 break; 2416 case COMP_STOPPED: 2417 sum_trbs_for_length = true; 2418 break; 2419 case COMP_STOPPED_SHORT_PACKET: 2420 /* field normally containing residue now contains tranferred */ 2421 frame->status = short_framestatus; 2422 requested = remaining; 2423 break; 2424 case COMP_STOPPED_LENGTH_INVALID: 2425 requested = 0; 2426 remaining = 0; 2427 break; 2428 default: 2429 sum_trbs_for_length = true; 2430 frame->status = -1; 2431 break; 2432 } 2433 2434 if (td->urb_length_set) 2435 goto finish_td; 2436 2437 if (sum_trbs_for_length) 2438 frame->actual_length = sum_trb_lengths(xhci, ep->ring, ep_trb) + 2439 ep_trb_len - remaining; 2440 else 2441 frame->actual_length = requested; 2442 2443 td->urb->actual_length += frame->actual_length; 2444 2445 finish_td: 2446 /* Don't give back TD yet if we encountered an error mid TD */ 2447 if (td->error_mid_td && ep_trb != td->last_trb) { 2448 xhci_dbg(xhci, "Error mid isoc TD, wait for final completion event\n"); 2449 td->urb_length_set = true; 2450 return 0; 2451 } 2452 2453 return finish_td(xhci, ep, ep_ring, td, trb_comp_code); 2454 } 2455 2456 static int skip_isoc_td(struct xhci_hcd *xhci, struct xhci_td *td, 2457 struct xhci_virt_ep *ep, int status) 2458 { 2459 struct urb_priv *urb_priv; 2460 struct usb_iso_packet_descriptor *frame; 2461 int idx; 2462 2463 urb_priv = td->urb->hcpriv; 2464 idx = urb_priv->num_tds_done; 2465 frame = &td->urb->iso_frame_desc[idx]; 2466 2467 /* The transfer is partly done. */ 2468 frame->status = -EXDEV; 2469 2470 /* calc actual length */ 2471 frame->actual_length = 0; 2472 2473 /* Update ring dequeue pointer */ 2474 ep->ring->dequeue = td->last_trb; 2475 ep->ring->deq_seg = td->last_trb_seg; 2476 inc_deq(xhci, ep->ring); 2477 2478 return xhci_td_cleanup(xhci, td, ep->ring, status); 2479 } 2480 2481 /* 2482 * Process bulk and interrupt tds, update urb status and actual_length. 2483 */ 2484 static int process_bulk_intr_td(struct xhci_hcd *xhci, struct xhci_virt_ep *ep, 2485 struct xhci_ring *ep_ring, struct xhci_td *td, 2486 union xhci_trb *ep_trb, struct xhci_transfer_event *event) 2487 { 2488 struct xhci_slot_ctx *slot_ctx; 2489 u32 trb_comp_code; 2490 u32 remaining, requested, ep_trb_len; 2491 2492 slot_ctx = xhci_get_slot_ctx(xhci, ep->vdev->out_ctx); 2493 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len)); 2494 remaining = EVENT_TRB_LEN(le32_to_cpu(event->transfer_len)); 2495 ep_trb_len = TRB_LEN(le32_to_cpu(ep_trb->generic.field[2])); 2496 requested = td->urb->transfer_buffer_length; 2497 2498 switch (trb_comp_code) { 2499 case COMP_SUCCESS: 2500 ep->err_count = 0; 2501 /* handle success with untransferred data as short packet */ 2502 if (ep_trb != td->last_trb || remaining) { 2503 xhci_warn(xhci, "WARN Successful completion on short TX\n"); 2504 xhci_dbg(xhci, "ep %#x - asked for %d bytes, %d bytes untransferred\n", 2505 td->urb->ep->desc.bEndpointAddress, 2506 requested, remaining); 2507 } 2508 td->status = 0; 2509 break; 2510 case COMP_SHORT_PACKET: 2511 xhci_dbg(xhci, "ep %#x - asked for %d bytes, %d bytes untransferred\n", 2512 td->urb->ep->desc.bEndpointAddress, 2513 requested, remaining); 2514 td->status = 0; 2515 break; 2516 case COMP_STOPPED_SHORT_PACKET: 2517 td->urb->actual_length = remaining; 2518 goto finish_td; 2519 case COMP_STOPPED_LENGTH_INVALID: 2520 /* stopped on ep trb with invalid length, exclude it */ 2521 ep_trb_len = 0; 2522 remaining = 0; 2523 break; 2524 case COMP_USB_TRANSACTION_ERROR: 2525 if (xhci->quirks & XHCI_NO_SOFT_RETRY || 2526 (ep->err_count++ > MAX_SOFT_RETRY) || 2527 le32_to_cpu(slot_ctx->tt_info) & TT_SLOT) 2528 break; 2529 2530 td->status = 0; 2531 2532 xhci_handle_halted_endpoint(xhci, ep, td, EP_SOFT_RESET); 2533 return 0; 2534 default: 2535 /* do nothing */ 2536 break; 2537 } 2538 2539 if (ep_trb == td->last_trb) 2540 td->urb->actual_length = requested - remaining; 2541 else 2542 td->urb->actual_length = 2543 sum_trb_lengths(xhci, ep_ring, ep_trb) + 2544 ep_trb_len - remaining; 2545 finish_td: 2546 if (remaining > requested) { 2547 xhci_warn(xhci, "bad transfer trb length %d in event trb\n", 2548 remaining); 2549 td->urb->actual_length = 0; 2550 } 2551 2552 return finish_td(xhci, ep, ep_ring, td, trb_comp_code); 2553 } 2554 2555 /* 2556 * If this function returns an error condition, it means it got a Transfer 2557 * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address. 2558 * At this point, the host controller is probably hosed and should be reset. 2559 */ 2560 static int handle_tx_event(struct xhci_hcd *xhci, 2561 struct xhci_interrupter *ir, 2562 struct xhci_transfer_event *event) 2563 { 2564 struct xhci_virt_ep *ep; 2565 struct xhci_ring *ep_ring; 2566 unsigned int slot_id; 2567 int ep_index; 2568 struct xhci_td *td = NULL; 2569 dma_addr_t ep_trb_dma; 2570 struct xhci_segment *ep_seg; 2571 union xhci_trb *ep_trb; 2572 int status = -EINPROGRESS; 2573 struct xhci_ep_ctx *ep_ctx; 2574 u32 trb_comp_code; 2575 int td_num = 0; 2576 bool handling_skipped_tds = false; 2577 2578 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->flags)); 2579 ep_index = TRB_TO_EP_ID(le32_to_cpu(event->flags)) - 1; 2580 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len)); 2581 ep_trb_dma = le64_to_cpu(event->buffer); 2582 2583 ep = xhci_get_virt_ep(xhci, slot_id, ep_index); 2584 if (!ep) { 2585 xhci_err(xhci, "ERROR Invalid Transfer event\n"); 2586 goto err_out; 2587 } 2588 2589 ep_ring = xhci_dma_to_transfer_ring(ep, ep_trb_dma); 2590 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep_index); 2591 2592 if (GET_EP_CTX_STATE(ep_ctx) == EP_STATE_DISABLED) { 2593 xhci_err(xhci, 2594 "ERROR Transfer event for disabled endpoint slot %u ep %u\n", 2595 slot_id, ep_index); 2596 goto err_out; 2597 } 2598 2599 /* Some transfer events don't always point to a trb, see xhci 4.17.4 */ 2600 if (!ep_ring) { 2601 switch (trb_comp_code) { 2602 case COMP_STALL_ERROR: 2603 case COMP_USB_TRANSACTION_ERROR: 2604 case COMP_INVALID_STREAM_TYPE_ERROR: 2605 case COMP_INVALID_STREAM_ID_ERROR: 2606 xhci_dbg(xhci, "Stream transaction error ep %u no id\n", 2607 ep_index); 2608 if (ep->err_count++ > MAX_SOFT_RETRY) 2609 xhci_handle_halted_endpoint(xhci, ep, NULL, 2610 EP_HARD_RESET); 2611 else 2612 xhci_handle_halted_endpoint(xhci, ep, NULL, 2613 EP_SOFT_RESET); 2614 goto cleanup; 2615 case COMP_RING_UNDERRUN: 2616 case COMP_RING_OVERRUN: 2617 case COMP_STOPPED_LENGTH_INVALID: 2618 goto cleanup; 2619 default: 2620 xhci_err(xhci, "ERROR Transfer event for unknown stream ring slot %u ep %u\n", 2621 slot_id, ep_index); 2622 goto err_out; 2623 } 2624 } 2625 2626 /* Count current td numbers if ep->skip is set */ 2627 if (ep->skip) 2628 td_num += list_count_nodes(&ep_ring->td_list); 2629 2630 /* Look for common error cases */ 2631 switch (trb_comp_code) { 2632 /* Skip codes that require special handling depending on 2633 * transfer type 2634 */ 2635 case COMP_SUCCESS: 2636 if (EVENT_TRB_LEN(le32_to_cpu(event->transfer_len)) == 0) 2637 break; 2638 if (xhci->quirks & XHCI_TRUST_TX_LENGTH || 2639 ep_ring->last_td_was_short) 2640 trb_comp_code = COMP_SHORT_PACKET; 2641 else 2642 xhci_warn_ratelimited(xhci, 2643 "WARN Successful completion on short TX for slot %u ep %u: needs XHCI_TRUST_TX_LENGTH quirk?\n", 2644 slot_id, ep_index); 2645 break; 2646 case COMP_SHORT_PACKET: 2647 break; 2648 /* Completion codes for endpoint stopped state */ 2649 case COMP_STOPPED: 2650 xhci_dbg(xhci, "Stopped on Transfer TRB for slot %u ep %u\n", 2651 slot_id, ep_index); 2652 break; 2653 case COMP_STOPPED_LENGTH_INVALID: 2654 xhci_dbg(xhci, 2655 "Stopped on No-op or Link TRB for slot %u ep %u\n", 2656 slot_id, ep_index); 2657 break; 2658 case COMP_STOPPED_SHORT_PACKET: 2659 xhci_dbg(xhci, 2660 "Stopped with short packet transfer detected for slot %u ep %u\n", 2661 slot_id, ep_index); 2662 break; 2663 /* Completion codes for endpoint halted state */ 2664 case COMP_STALL_ERROR: 2665 xhci_dbg(xhci, "Stalled endpoint for slot %u ep %u\n", slot_id, 2666 ep_index); 2667 status = -EPIPE; 2668 break; 2669 case COMP_SPLIT_TRANSACTION_ERROR: 2670 xhci_dbg(xhci, "Split transaction error for slot %u ep %u\n", 2671 slot_id, ep_index); 2672 status = -EPROTO; 2673 break; 2674 case COMP_USB_TRANSACTION_ERROR: 2675 xhci_dbg(xhci, "Transfer error for slot %u ep %u on endpoint\n", 2676 slot_id, ep_index); 2677 status = -EPROTO; 2678 break; 2679 case COMP_BABBLE_DETECTED_ERROR: 2680 xhci_dbg(xhci, "Babble error for slot %u ep %u on endpoint\n", 2681 slot_id, ep_index); 2682 status = -EOVERFLOW; 2683 break; 2684 /* Completion codes for endpoint error state */ 2685 case COMP_TRB_ERROR: 2686 xhci_warn(xhci, 2687 "WARN: TRB error for slot %u ep %u on endpoint\n", 2688 slot_id, ep_index); 2689 status = -EILSEQ; 2690 break; 2691 /* completion codes not indicating endpoint state change */ 2692 case COMP_DATA_BUFFER_ERROR: 2693 xhci_warn(xhci, 2694 "WARN: HC couldn't access mem fast enough for slot %u ep %u\n", 2695 slot_id, ep_index); 2696 status = -ENOSR; 2697 break; 2698 case COMP_BANDWIDTH_OVERRUN_ERROR: 2699 xhci_warn(xhci, 2700 "WARN: bandwidth overrun event for slot %u ep %u on endpoint\n", 2701 slot_id, ep_index); 2702 break; 2703 case COMP_ISOCH_BUFFER_OVERRUN: 2704 xhci_warn(xhci, 2705 "WARN: buffer overrun event for slot %u ep %u on endpoint", 2706 slot_id, ep_index); 2707 break; 2708 case COMP_RING_UNDERRUN: 2709 /* 2710 * When the Isoch ring is empty, the xHC will generate 2711 * a Ring Overrun Event for IN Isoch endpoint or Ring 2712 * Underrun Event for OUT Isoch endpoint. 2713 */ 2714 xhci_dbg(xhci, "underrun event on endpoint\n"); 2715 if (!list_empty(&ep_ring->td_list)) 2716 xhci_dbg(xhci, "Underrun Event for slot %d ep %d " 2717 "still with TDs queued?\n", 2718 TRB_TO_SLOT_ID(le32_to_cpu(event->flags)), 2719 ep_index); 2720 goto cleanup; 2721 case COMP_RING_OVERRUN: 2722 xhci_dbg(xhci, "overrun event on endpoint\n"); 2723 if (!list_empty(&ep_ring->td_list)) 2724 xhci_dbg(xhci, "Overrun Event for slot %d ep %d " 2725 "still with TDs queued?\n", 2726 TRB_TO_SLOT_ID(le32_to_cpu(event->flags)), 2727 ep_index); 2728 goto cleanup; 2729 case COMP_MISSED_SERVICE_ERROR: 2730 /* 2731 * When encounter missed service error, one or more isoc tds 2732 * may be missed by xHC. 2733 * Set skip flag of the ep_ring; Complete the missed tds as 2734 * short transfer when process the ep_ring next time. 2735 */ 2736 ep->skip = true; 2737 xhci_dbg(xhci, 2738 "Miss service interval error for slot %u ep %u, set skip flag\n", 2739 slot_id, ep_index); 2740 goto cleanup; 2741 case COMP_NO_PING_RESPONSE_ERROR: 2742 ep->skip = true; 2743 xhci_dbg(xhci, 2744 "No Ping response error for slot %u ep %u, Skip one Isoc TD\n", 2745 slot_id, ep_index); 2746 goto cleanup; 2747 2748 case COMP_INCOMPATIBLE_DEVICE_ERROR: 2749 /* needs disable slot command to recover */ 2750 xhci_warn(xhci, 2751 "WARN: detect an incompatible device for slot %u ep %u", 2752 slot_id, ep_index); 2753 status = -EPROTO; 2754 break; 2755 default: 2756 if (xhci_is_vendor_info_code(xhci, trb_comp_code)) { 2757 status = 0; 2758 break; 2759 } 2760 xhci_warn(xhci, 2761 "ERROR Unknown event condition %u for slot %u ep %u , HC probably busted\n", 2762 trb_comp_code, slot_id, ep_index); 2763 goto cleanup; 2764 } 2765 2766 do { 2767 /* This TRB should be in the TD at the head of this ring's 2768 * TD list. 2769 */ 2770 if (list_empty(&ep_ring->td_list)) { 2771 /* 2772 * Don't print wanings if it's due to a stopped endpoint 2773 * generating an extra completion event if the device 2774 * was suspended. Or, a event for the last TRB of a 2775 * short TD we already got a short event for. 2776 * The short TD is already removed from the TD list. 2777 */ 2778 2779 if (!(trb_comp_code == COMP_STOPPED || 2780 trb_comp_code == COMP_STOPPED_LENGTH_INVALID || 2781 ep_ring->last_td_was_short)) { 2782 xhci_warn(xhci, "WARN Event TRB for slot %d ep %d with no TDs queued?\n", 2783 TRB_TO_SLOT_ID(le32_to_cpu(event->flags)), 2784 ep_index); 2785 } 2786 if (ep->skip) { 2787 ep->skip = false; 2788 xhci_dbg(xhci, "td_list is empty while skip flag set. Clear skip flag for slot %u ep %u.\n", 2789 slot_id, ep_index); 2790 } 2791 if (trb_comp_code == COMP_STALL_ERROR || 2792 xhci_requires_manual_halt_cleanup(xhci, ep_ctx, 2793 trb_comp_code)) { 2794 xhci_handle_halted_endpoint(xhci, ep, NULL, 2795 EP_HARD_RESET); 2796 } 2797 goto cleanup; 2798 } 2799 2800 /* We've skipped all the TDs on the ep ring when ep->skip set */ 2801 if (ep->skip && td_num == 0) { 2802 ep->skip = false; 2803 xhci_dbg(xhci, "All tds on the ep_ring skipped. Clear skip flag for slot %u ep %u.\n", 2804 slot_id, ep_index); 2805 goto cleanup; 2806 } 2807 2808 td = list_first_entry(&ep_ring->td_list, struct xhci_td, 2809 td_list); 2810 if (ep->skip) 2811 td_num--; 2812 2813 /* Is this a TRB in the currently executing TD? */ 2814 ep_seg = trb_in_td(xhci, ep_ring->deq_seg, ep_ring->dequeue, 2815 td->last_trb, ep_trb_dma, false); 2816 2817 /* 2818 * Skip the Force Stopped Event. The event_trb(event_dma) of FSE 2819 * is not in the current TD pointed by ep_ring->dequeue because 2820 * that the hardware dequeue pointer still at the previous TRB 2821 * of the current TD. The previous TRB maybe a Link TD or the 2822 * last TRB of the previous TD. The command completion handle 2823 * will take care the rest. 2824 */ 2825 if (!ep_seg && (trb_comp_code == COMP_STOPPED || 2826 trb_comp_code == COMP_STOPPED_LENGTH_INVALID)) { 2827 goto cleanup; 2828 } 2829 2830 if (!ep_seg) { 2831 2832 if (ep->skip && usb_endpoint_xfer_isoc(&td->urb->ep->desc)) { 2833 skip_isoc_td(xhci, td, ep, status); 2834 goto cleanup; 2835 } 2836 2837 /* 2838 * Some hosts give a spurious success event after a short 2839 * transfer. Ignore it. 2840 */ 2841 if ((xhci->quirks & XHCI_SPURIOUS_SUCCESS) && 2842 ep_ring->last_td_was_short) { 2843 ep_ring->last_td_was_short = false; 2844 goto cleanup; 2845 } 2846 2847 /* 2848 * xhci 4.10.2 states isoc endpoints should continue 2849 * processing the next TD if there was an error mid TD. 2850 * So host like NEC don't generate an event for the last 2851 * isoc TRB even if the IOC flag is set. 2852 * xhci 4.9.1 states that if there are errors in mult-TRB 2853 * TDs xHC should generate an error for that TRB, and if xHC 2854 * proceeds to the next TD it should genete an event for 2855 * any TRB with IOC flag on the way. Other host follow this. 2856 * So this event might be for the next TD. 2857 */ 2858 if (td->error_mid_td && 2859 !list_is_last(&td->td_list, &ep_ring->td_list)) { 2860 struct xhci_td *td_next = list_next_entry(td, td_list); 2861 2862 ep_seg = trb_in_td(xhci, td_next->start_seg, td_next->first_trb, 2863 td_next->last_trb, ep_trb_dma, false); 2864 if (ep_seg) { 2865 /* give back previous TD, start handling new */ 2866 xhci_dbg(xhci, "Missing TD completion event after mid TD error\n"); 2867 ep_ring->dequeue = td->last_trb; 2868 ep_ring->deq_seg = td->last_trb_seg; 2869 inc_deq(xhci, ep_ring); 2870 xhci_td_cleanup(xhci, td, ep_ring, td->status); 2871 td = td_next; 2872 } 2873 } 2874 2875 if (!ep_seg) { 2876 /* HC is busted, give up! */ 2877 xhci_err(xhci, 2878 "ERROR Transfer event TRB DMA ptr not " 2879 "part of current TD ep_index %d " 2880 "comp_code %u\n", ep_index, 2881 trb_comp_code); 2882 trb_in_td(xhci, ep_ring->deq_seg, 2883 ep_ring->dequeue, td->last_trb, 2884 ep_trb_dma, true); 2885 return -ESHUTDOWN; 2886 } 2887 } 2888 if (trb_comp_code == COMP_SHORT_PACKET) 2889 ep_ring->last_td_was_short = true; 2890 else 2891 ep_ring->last_td_was_short = false; 2892 2893 if (ep->skip) { 2894 xhci_dbg(xhci, 2895 "Found td. Clear skip flag for slot %u ep %u.\n", 2896 slot_id, ep_index); 2897 ep->skip = false; 2898 } 2899 2900 ep_trb = &ep_seg->trbs[(ep_trb_dma - ep_seg->dma) / 2901 sizeof(*ep_trb)]; 2902 2903 trace_xhci_handle_transfer(ep_ring, 2904 (struct xhci_generic_trb *) ep_trb); 2905 2906 /* 2907 * No-op TRB could trigger interrupts in a case where 2908 * a URB was killed and a STALL_ERROR happens right 2909 * after the endpoint ring stopped. Reset the halted 2910 * endpoint. Otherwise, the endpoint remains stalled 2911 * indefinitely. 2912 */ 2913 2914 if (trb_is_noop(ep_trb)) { 2915 if (trb_comp_code == COMP_STALL_ERROR || 2916 xhci_requires_manual_halt_cleanup(xhci, ep_ctx, 2917 trb_comp_code)) 2918 xhci_handle_halted_endpoint(xhci, ep, td, 2919 EP_HARD_RESET); 2920 goto cleanup; 2921 } 2922 2923 td->status = status; 2924 2925 /* update the urb's actual_length and give back to the core */ 2926 if (usb_endpoint_xfer_control(&td->urb->ep->desc)) 2927 process_ctrl_td(xhci, ep, ep_ring, td, ep_trb, event); 2928 else if (usb_endpoint_xfer_isoc(&td->urb->ep->desc)) 2929 process_isoc_td(xhci, ep, ep_ring, td, ep_trb, event); 2930 else 2931 process_bulk_intr_td(xhci, ep, ep_ring, td, ep_trb, event); 2932 cleanup: 2933 handling_skipped_tds = ep->skip && 2934 trb_comp_code != COMP_MISSED_SERVICE_ERROR && 2935 trb_comp_code != COMP_NO_PING_RESPONSE_ERROR; 2936 2937 /* 2938 * Do not update event ring dequeue pointer if we're in a loop 2939 * processing missed tds. 2940 */ 2941 if (!handling_skipped_tds) 2942 inc_deq(xhci, ir->event_ring); 2943 2944 /* 2945 * If ep->skip is set, it means there are missed tds on the 2946 * endpoint ring need to take care of. 2947 * Process them as short transfer until reach the td pointed by 2948 * the event. 2949 */ 2950 } while (handling_skipped_tds); 2951 2952 return 0; 2953 2954 err_out: 2955 xhci_err(xhci, "@%016llx %08x %08x %08x %08x\n", 2956 (unsigned long long) xhci_trb_virt_to_dma( 2957 ir->event_ring->deq_seg, 2958 ir->event_ring->dequeue), 2959 lower_32_bits(le64_to_cpu(event->buffer)), 2960 upper_32_bits(le64_to_cpu(event->buffer)), 2961 le32_to_cpu(event->transfer_len), 2962 le32_to_cpu(event->flags)); 2963 return -ENODEV; 2964 } 2965 2966 /* 2967 * This function handles all OS-owned events on the event ring. It may drop 2968 * xhci->lock between event processing (e.g. to pass up port status changes). 2969 * Returns >0 for "possibly more events to process" (caller should call again), 2970 * otherwise 0 if done. In future, <0 returns should indicate error code. 2971 */ 2972 static int xhci_handle_event(struct xhci_hcd *xhci, struct xhci_interrupter *ir) 2973 { 2974 union xhci_trb *event; 2975 int update_ptrs = 1; 2976 u32 trb_type; 2977 int ret; 2978 2979 /* Event ring hasn't been allocated yet. */ 2980 if (!ir || !ir->event_ring || !ir->event_ring->dequeue) { 2981 xhci_err(xhci, "ERROR interrupter not ready\n"); 2982 return -ENOMEM; 2983 } 2984 2985 event = ir->event_ring->dequeue; 2986 /* Does the HC or OS own the TRB? */ 2987 if ((le32_to_cpu(event->event_cmd.flags) & TRB_CYCLE) != 2988 ir->event_ring->cycle_state) 2989 return 0; 2990 2991 trace_xhci_handle_event(ir->event_ring, &event->generic); 2992 2993 /* 2994 * Barrier between reading the TRB_CYCLE (valid) flag above and any 2995 * speculative reads of the event's flags/data below. 2996 */ 2997 rmb(); 2998 trb_type = TRB_FIELD_TO_TYPE(le32_to_cpu(event->event_cmd.flags)); 2999 /* FIXME: Handle more event types. */ 3000 3001 switch (trb_type) { 3002 case TRB_COMPLETION: 3003 handle_cmd_completion(xhci, &event->event_cmd); 3004 break; 3005 case TRB_PORT_STATUS: 3006 handle_port_status(xhci, ir, event); 3007 update_ptrs = 0; 3008 break; 3009 case TRB_TRANSFER: 3010 ret = handle_tx_event(xhci, ir, &event->trans_event); 3011 if (ret >= 0) 3012 update_ptrs = 0; 3013 break; 3014 case TRB_DEV_NOTE: 3015 handle_device_notification(xhci, event); 3016 break; 3017 default: 3018 if (trb_type >= TRB_VENDOR_DEFINED_LOW) 3019 handle_vendor_event(xhci, event, trb_type); 3020 else 3021 xhci_warn(xhci, "ERROR unknown event type %d\n", trb_type); 3022 } 3023 /* Any of the above functions may drop and re-acquire the lock, so check 3024 * to make sure a watchdog timer didn't mark the host as non-responsive. 3025 */ 3026 if (xhci->xhc_state & XHCI_STATE_DYING) { 3027 xhci_dbg(xhci, "xHCI host dying, returning from " 3028 "event handler.\n"); 3029 return 0; 3030 } 3031 3032 if (update_ptrs) 3033 /* Update SW event ring dequeue pointer */ 3034 inc_deq(xhci, ir->event_ring); 3035 3036 /* Are there more items on the event ring? Caller will call us again to 3037 * check. 3038 */ 3039 return 1; 3040 } 3041 3042 /* 3043 * Update Event Ring Dequeue Pointer: 3044 * - When all events have finished 3045 * - To avoid "Event Ring Full Error" condition 3046 */ 3047 static void xhci_update_erst_dequeue(struct xhci_hcd *xhci, 3048 struct xhci_interrupter *ir, 3049 union xhci_trb *event_ring_deq, 3050 bool clear_ehb) 3051 { 3052 u64 temp_64; 3053 dma_addr_t deq; 3054 3055 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue); 3056 /* If necessary, update the HW's version of the event ring deq ptr. */ 3057 if (event_ring_deq != ir->event_ring->dequeue) { 3058 deq = xhci_trb_virt_to_dma(ir->event_ring->deq_seg, 3059 ir->event_ring->dequeue); 3060 if (deq == 0) 3061 xhci_warn(xhci, "WARN something wrong with SW event ring dequeue ptr\n"); 3062 /* 3063 * Per 4.9.4, Software writes to the ERDP register shall 3064 * always advance the Event Ring Dequeue Pointer value. 3065 */ 3066 if ((temp_64 & (u64) ~ERST_PTR_MASK) == 3067 ((u64) deq & (u64) ~ERST_PTR_MASK)) 3068 return; 3069 3070 /* Update HC event ring dequeue pointer */ 3071 temp_64 &= ERST_DESI_MASK; 3072 temp_64 |= ((u64) deq & (u64) ~ERST_PTR_MASK); 3073 } 3074 3075 /* Clear the event handler busy flag (RW1C) */ 3076 if (clear_ehb) 3077 temp_64 |= ERST_EHB; 3078 xhci_write_64(xhci, temp_64, &ir->ir_set->erst_dequeue); 3079 } 3080 3081 /* 3082 * xHCI spec says we can get an interrupt, and if the HC has an error condition, 3083 * we might get bad data out of the event ring. Section 4.10.2.7 has a list of 3084 * indicators of an event TRB error, but we check the status *first* to be safe. 3085 */ 3086 irqreturn_t xhci_irq(struct usb_hcd *hcd) 3087 { 3088 struct xhci_hcd *xhci = hcd_to_xhci(hcd); 3089 union xhci_trb *event_ring_deq; 3090 struct xhci_interrupter *ir; 3091 irqreturn_t ret = IRQ_NONE; 3092 u64 temp_64; 3093 u32 status; 3094 int event_loop = 0; 3095 3096 spin_lock(&xhci->lock); 3097 /* Check if the xHC generated the interrupt, or the irq is shared */ 3098 status = readl(&xhci->op_regs->status); 3099 if (status == ~(u32)0) { 3100 xhci_hc_died(xhci); 3101 ret = IRQ_HANDLED; 3102 goto out; 3103 } 3104 3105 if (!(status & STS_EINT)) 3106 goto out; 3107 3108 if (status & STS_HCE) { 3109 xhci_warn(xhci, "WARNING: Host Controller Error\n"); 3110 goto out; 3111 } 3112 3113 if (status & STS_FATAL) { 3114 xhci_warn(xhci, "WARNING: Host System Error\n"); 3115 xhci_halt(xhci); 3116 ret = IRQ_HANDLED; 3117 goto out; 3118 } 3119 3120 /* 3121 * Clear the op reg interrupt status first, 3122 * so we can receive interrupts from other MSI-X interrupters. 3123 * Write 1 to clear the interrupt status. 3124 */ 3125 status |= STS_EINT; 3126 writel(status, &xhci->op_regs->status); 3127 3128 /* This is the handler of the primary interrupter */ 3129 ir = xhci->interrupter; 3130 if (!hcd->msi_enabled) { 3131 u32 irq_pending; 3132 irq_pending = readl(&ir->ir_set->irq_pending); 3133 irq_pending |= IMAN_IP; 3134 writel(irq_pending, &ir->ir_set->irq_pending); 3135 } 3136 3137 if (xhci->xhc_state & XHCI_STATE_DYING || 3138 xhci->xhc_state & XHCI_STATE_HALTED) { 3139 xhci_dbg(xhci, "xHCI dying, ignoring interrupt. " 3140 "Shouldn't IRQs be disabled?\n"); 3141 /* Clear the event handler busy flag (RW1C); 3142 * the event ring should be empty. 3143 */ 3144 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue); 3145 xhci_write_64(xhci, temp_64 | ERST_EHB, 3146 &ir->ir_set->erst_dequeue); 3147 ret = IRQ_HANDLED; 3148 goto out; 3149 } 3150 3151 event_ring_deq = ir->event_ring->dequeue; 3152 /* FIXME this should be a delayed service routine 3153 * that clears the EHB. 3154 */ 3155 while (xhci_handle_event(xhci, ir) > 0) { 3156 if (event_loop++ < TRBS_PER_SEGMENT / 2) 3157 continue; 3158 xhci_update_erst_dequeue(xhci, ir, event_ring_deq, false); 3159 event_ring_deq = ir->event_ring->dequeue; 3160 3161 /* ring is half-full, force isoc trbs to interrupt more often */ 3162 if (xhci->isoc_bei_interval > AVOID_BEI_INTERVAL_MIN) 3163 xhci->isoc_bei_interval = xhci->isoc_bei_interval / 2; 3164 3165 event_loop = 0; 3166 } 3167 3168 xhci_update_erst_dequeue(xhci, ir, event_ring_deq, true); 3169 ret = IRQ_HANDLED; 3170 3171 out: 3172 spin_unlock(&xhci->lock); 3173 3174 return ret; 3175 } 3176 3177 irqreturn_t xhci_msi_irq(int irq, void *hcd) 3178 { 3179 return xhci_irq(hcd); 3180 } 3181 EXPORT_SYMBOL_GPL(xhci_msi_irq); 3182 3183 /**** Endpoint Ring Operations ****/ 3184 3185 /* 3186 * Generic function for queueing a TRB on a ring. 3187 * The caller must have checked to make sure there's room on the ring. 3188 * 3189 * @more_trbs_coming: Will you enqueue more TRBs before calling 3190 * prepare_transfer()? 3191 */ 3192 static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring, 3193 bool more_trbs_coming, 3194 u32 field1, u32 field2, u32 field3, u32 field4) 3195 { 3196 struct xhci_generic_trb *trb; 3197 3198 trb = &ring->enqueue->generic; 3199 trb->field[0] = cpu_to_le32(field1); 3200 trb->field[1] = cpu_to_le32(field2); 3201 trb->field[2] = cpu_to_le32(field3); 3202 /* make sure TRB is fully written before giving it to the controller */ 3203 wmb(); 3204 trb->field[3] = cpu_to_le32(field4); 3205 3206 trace_xhci_queue_trb(ring, trb); 3207 3208 inc_enq(xhci, ring, more_trbs_coming); 3209 } 3210 3211 /* 3212 * Does various checks on the endpoint ring, and makes it ready to queue num_trbs. 3213 * expand ring if it start to be full. 3214 */ 3215 static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring, 3216 u32 ep_state, unsigned int num_trbs, gfp_t mem_flags) 3217 { 3218 unsigned int link_trb_count = 0; 3219 unsigned int new_segs = 0; 3220 3221 /* Make sure the endpoint has been added to xHC schedule */ 3222 switch (ep_state) { 3223 case EP_STATE_DISABLED: 3224 /* 3225 * USB core changed config/interfaces without notifying us, 3226 * or hardware is reporting the wrong state. 3227 */ 3228 xhci_warn(xhci, "WARN urb submitted to disabled ep\n"); 3229 return -ENOENT; 3230 case EP_STATE_ERROR: 3231 xhci_warn(xhci, "WARN waiting for error on ep to be cleared\n"); 3232 /* FIXME event handling code for error needs to clear it */ 3233 /* XXX not sure if this should be -ENOENT or not */ 3234 return -EINVAL; 3235 case EP_STATE_HALTED: 3236 xhci_dbg(xhci, "WARN halted endpoint, queueing URB anyway.\n"); 3237 break; 3238 case EP_STATE_STOPPED: 3239 case EP_STATE_RUNNING: 3240 break; 3241 default: 3242 xhci_err(xhci, "ERROR unknown endpoint state for ep\n"); 3243 /* 3244 * FIXME issue Configure Endpoint command to try to get the HC 3245 * back into a known state. 3246 */ 3247 return -EINVAL; 3248 } 3249 3250 if (ep_ring != xhci->cmd_ring) { 3251 new_segs = xhci_ring_expansion_needed(xhci, ep_ring, num_trbs); 3252 } else if (xhci_num_trbs_free(xhci, ep_ring) <= num_trbs) { 3253 xhci_err(xhci, "Do not support expand command ring\n"); 3254 return -ENOMEM; 3255 } 3256 3257 if (new_segs) { 3258 xhci_dbg_trace(xhci, trace_xhci_dbg_ring_expansion, 3259 "ERROR no room on ep ring, try ring expansion"); 3260 if (xhci_ring_expansion(xhci, ep_ring, new_segs, mem_flags)) { 3261 xhci_err(xhci, "Ring expansion failed\n"); 3262 return -ENOMEM; 3263 } 3264 } 3265 3266 while (trb_is_link(ep_ring->enqueue)) { 3267 /* If we're not dealing with 0.95 hardware or isoc rings 3268 * on AMD 0.96 host, clear the chain bit. 3269 */ 3270 if (!xhci_link_trb_quirk(xhci) && 3271 !(ep_ring->type == TYPE_ISOC && 3272 (xhci->quirks & XHCI_AMD_0x96_HOST))) 3273 ep_ring->enqueue->link.control &= 3274 cpu_to_le32(~TRB_CHAIN); 3275 else 3276 ep_ring->enqueue->link.control |= 3277 cpu_to_le32(TRB_CHAIN); 3278 3279 wmb(); 3280 ep_ring->enqueue->link.control ^= cpu_to_le32(TRB_CYCLE); 3281 3282 /* Toggle the cycle bit after the last ring segment. */ 3283 if (link_trb_toggles_cycle(ep_ring->enqueue)) 3284 ep_ring->cycle_state ^= 1; 3285 3286 ep_ring->enq_seg = ep_ring->enq_seg->next; 3287 ep_ring->enqueue = ep_ring->enq_seg->trbs; 3288 3289 /* prevent infinite loop if all first trbs are link trbs */ 3290 if (link_trb_count++ > ep_ring->num_segs) { 3291 xhci_warn(xhci, "Ring is an endless link TRB loop\n"); 3292 return -EINVAL; 3293 } 3294 } 3295 3296 if (last_trb_on_seg(ep_ring->enq_seg, ep_ring->enqueue)) { 3297 xhci_warn(xhci, "Missing link TRB at end of ring segment\n"); 3298 return -EINVAL; 3299 } 3300 3301 return 0; 3302 } 3303 3304 static int prepare_transfer(struct xhci_hcd *xhci, 3305 struct xhci_virt_device *xdev, 3306 unsigned int ep_index, 3307 unsigned int stream_id, 3308 unsigned int num_trbs, 3309 struct urb *urb, 3310 unsigned int td_index, 3311 gfp_t mem_flags) 3312 { 3313 int ret; 3314 struct urb_priv *urb_priv; 3315 struct xhci_td *td; 3316 struct xhci_ring *ep_ring; 3317 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index); 3318 3319 ep_ring = xhci_triad_to_transfer_ring(xhci, xdev->slot_id, ep_index, 3320 stream_id); 3321 if (!ep_ring) { 3322 xhci_dbg(xhci, "Can't prepare ring for bad stream ID %u\n", 3323 stream_id); 3324 return -EINVAL; 3325 } 3326 3327 ret = prepare_ring(xhci, ep_ring, GET_EP_CTX_STATE(ep_ctx), 3328 num_trbs, mem_flags); 3329 if (ret) 3330 return ret; 3331 3332 urb_priv = urb->hcpriv; 3333 td = &urb_priv->td[td_index]; 3334 3335 INIT_LIST_HEAD(&td->td_list); 3336 INIT_LIST_HEAD(&td->cancelled_td_list); 3337 3338 if (td_index == 0) { 3339 ret = usb_hcd_link_urb_to_ep(bus_to_hcd(urb->dev->bus), urb); 3340 if (unlikely(ret)) 3341 return ret; 3342 } 3343 3344 td->urb = urb; 3345 /* Add this TD to the tail of the endpoint ring's TD list */ 3346 list_add_tail(&td->td_list, &ep_ring->td_list); 3347 td->start_seg = ep_ring->enq_seg; 3348 td->first_trb = ep_ring->enqueue; 3349 3350 return 0; 3351 } 3352 3353 unsigned int count_trbs(u64 addr, u64 len) 3354 { 3355 unsigned int num_trbs; 3356 3357 num_trbs = DIV_ROUND_UP(len + (addr & (TRB_MAX_BUFF_SIZE - 1)), 3358 TRB_MAX_BUFF_SIZE); 3359 if (num_trbs == 0) 3360 num_trbs++; 3361 3362 return num_trbs; 3363 } 3364 3365 static inline unsigned int count_trbs_needed(struct urb *urb) 3366 { 3367 return count_trbs(urb->transfer_dma, urb->transfer_buffer_length); 3368 } 3369 3370 static unsigned int count_sg_trbs_needed(struct urb *urb) 3371 { 3372 struct scatterlist *sg; 3373 unsigned int i, len, full_len, num_trbs = 0; 3374 3375 full_len = urb->transfer_buffer_length; 3376 3377 for_each_sg(urb->sg, sg, urb->num_mapped_sgs, i) { 3378 len = sg_dma_len(sg); 3379 num_trbs += count_trbs(sg_dma_address(sg), len); 3380 len = min_t(unsigned int, len, full_len); 3381 full_len -= len; 3382 if (full_len == 0) 3383 break; 3384 } 3385 3386 return num_trbs; 3387 } 3388 3389 static unsigned int count_isoc_trbs_needed(struct urb *urb, int i) 3390 { 3391 u64 addr, len; 3392 3393 addr = (u64) (urb->transfer_dma + urb->iso_frame_desc[i].offset); 3394 len = urb->iso_frame_desc[i].length; 3395 3396 return count_trbs(addr, len); 3397 } 3398 3399 static void check_trb_math(struct urb *urb, int running_total) 3400 { 3401 if (unlikely(running_total != urb->transfer_buffer_length)) 3402 dev_err(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, " 3403 "queued %#x (%d), asked for %#x (%d)\n", 3404 __func__, 3405 urb->ep->desc.bEndpointAddress, 3406 running_total, running_total, 3407 urb->transfer_buffer_length, 3408 urb->transfer_buffer_length); 3409 } 3410 3411 static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id, 3412 unsigned int ep_index, unsigned int stream_id, int start_cycle, 3413 struct xhci_generic_trb *start_trb) 3414 { 3415 /* 3416 * Pass all the TRBs to the hardware at once and make sure this write 3417 * isn't reordered. 3418 */ 3419 wmb(); 3420 if (start_cycle) 3421 start_trb->field[3] |= cpu_to_le32(start_cycle); 3422 else 3423 start_trb->field[3] &= cpu_to_le32(~TRB_CYCLE); 3424 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, stream_id); 3425 } 3426 3427 static void check_interval(struct xhci_hcd *xhci, struct urb *urb, 3428 struct xhci_ep_ctx *ep_ctx) 3429 { 3430 int xhci_interval; 3431 int ep_interval; 3432 3433 xhci_interval = EP_INTERVAL_TO_UFRAMES(le32_to_cpu(ep_ctx->ep_info)); 3434 ep_interval = urb->interval; 3435 3436 /* Convert to microframes */ 3437 if (urb->dev->speed == USB_SPEED_LOW || 3438 urb->dev->speed == USB_SPEED_FULL) 3439 ep_interval *= 8; 3440 3441 /* FIXME change this to a warning and a suggestion to use the new API 3442 * to set the polling interval (once the API is added). 3443 */ 3444 if (xhci_interval != ep_interval) { 3445 dev_dbg_ratelimited(&urb->dev->dev, 3446 "Driver uses different interval (%d microframe%s) than xHCI (%d microframe%s)\n", 3447 ep_interval, ep_interval == 1 ? "" : "s", 3448 xhci_interval, xhci_interval == 1 ? "" : "s"); 3449 urb->interval = xhci_interval; 3450 /* Convert back to frames for LS/FS devices */ 3451 if (urb->dev->speed == USB_SPEED_LOW || 3452 urb->dev->speed == USB_SPEED_FULL) 3453 urb->interval /= 8; 3454 } 3455 } 3456 3457 /* 3458 * xHCI uses normal TRBs for both bulk and interrupt. When the interrupt 3459 * endpoint is to be serviced, the xHC will consume (at most) one TD. A TD 3460 * (comprised of sg list entries) can take several service intervals to 3461 * transmit. 3462 */ 3463 int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags, 3464 struct urb *urb, int slot_id, unsigned int ep_index) 3465 { 3466 struct xhci_ep_ctx *ep_ctx; 3467 3468 ep_ctx = xhci_get_ep_ctx(xhci, xhci->devs[slot_id]->out_ctx, ep_index); 3469 check_interval(xhci, urb, ep_ctx); 3470 3471 return xhci_queue_bulk_tx(xhci, mem_flags, urb, slot_id, ep_index); 3472 } 3473 3474 /* 3475 * For xHCI 1.0 host controllers, TD size is the number of max packet sized 3476 * packets remaining in the TD (*not* including this TRB). 3477 * 3478 * Total TD packet count = total_packet_count = 3479 * DIV_ROUND_UP(TD size in bytes / wMaxPacketSize) 3480 * 3481 * Packets transferred up to and including this TRB = packets_transferred = 3482 * rounddown(total bytes transferred including this TRB / wMaxPacketSize) 3483 * 3484 * TD size = total_packet_count - packets_transferred 3485 * 3486 * For xHCI 0.96 and older, TD size field should be the remaining bytes 3487 * including this TRB, right shifted by 10 3488 * 3489 * For all hosts it must fit in bits 21:17, so it can't be bigger than 31. 3490 * This is taken care of in the TRB_TD_SIZE() macro 3491 * 3492 * The last TRB in a TD must have the TD size set to zero. 3493 */ 3494 static u32 xhci_td_remainder(struct xhci_hcd *xhci, int transferred, 3495 int trb_buff_len, unsigned int td_total_len, 3496 struct urb *urb, bool more_trbs_coming) 3497 { 3498 u32 maxp, total_packet_count; 3499 3500 /* MTK xHCI 0.96 contains some features from 1.0 */ 3501 if (xhci->hci_version < 0x100 && !(xhci->quirks & XHCI_MTK_HOST)) 3502 return ((td_total_len - transferred) >> 10); 3503 3504 /* One TRB with a zero-length data packet. */ 3505 if (!more_trbs_coming || (transferred == 0 && trb_buff_len == 0) || 3506 trb_buff_len == td_total_len) 3507 return 0; 3508 3509 /* for MTK xHCI 0.96, TD size include this TRB, but not in 1.x */ 3510 if ((xhci->quirks & XHCI_MTK_HOST) && (xhci->hci_version < 0x100)) 3511 trb_buff_len = 0; 3512 3513 maxp = usb_endpoint_maxp(&urb->ep->desc); 3514 total_packet_count = DIV_ROUND_UP(td_total_len, maxp); 3515 3516 /* Queueing functions don't count the current TRB into transferred */ 3517 return (total_packet_count - ((transferred + trb_buff_len) / maxp)); 3518 } 3519 3520 3521 static int xhci_align_td(struct xhci_hcd *xhci, struct urb *urb, u32 enqd_len, 3522 u32 *trb_buff_len, struct xhci_segment *seg) 3523 { 3524 struct device *dev = xhci_to_hcd(xhci)->self.sysdev; 3525 unsigned int unalign; 3526 unsigned int max_pkt; 3527 u32 new_buff_len; 3528 size_t len; 3529 3530 max_pkt = usb_endpoint_maxp(&urb->ep->desc); 3531 unalign = (enqd_len + *trb_buff_len) % max_pkt; 3532 3533 /* we got lucky, last normal TRB data on segment is packet aligned */ 3534 if (unalign == 0) 3535 return 0; 3536 3537 xhci_dbg(xhci, "Unaligned %d bytes, buff len %d\n", 3538 unalign, *trb_buff_len); 3539 3540 /* is the last nornal TRB alignable by splitting it */ 3541 if (*trb_buff_len > unalign) { 3542 *trb_buff_len -= unalign; 3543 xhci_dbg(xhci, "split align, new buff len %d\n", *trb_buff_len); 3544 return 0; 3545 } 3546 3547 /* 3548 * We want enqd_len + trb_buff_len to sum up to a number aligned to 3549 * number which is divisible by the endpoint's wMaxPacketSize. IOW: 3550 * (size of currently enqueued TRBs + remainder) % wMaxPacketSize == 0. 3551 */ 3552 new_buff_len = max_pkt - (enqd_len % max_pkt); 3553 3554 if (new_buff_len > (urb->transfer_buffer_length - enqd_len)) 3555 new_buff_len = (urb->transfer_buffer_length - enqd_len); 3556 3557 /* create a max max_pkt sized bounce buffer pointed to by last trb */ 3558 if (usb_urb_dir_out(urb)) { 3559 if (urb->num_sgs) { 3560 len = sg_pcopy_to_buffer(urb->sg, urb->num_sgs, 3561 seg->bounce_buf, new_buff_len, enqd_len); 3562 if (len != new_buff_len) 3563 xhci_warn(xhci, "WARN Wrong bounce buffer write length: %zu != %d\n", 3564 len, new_buff_len); 3565 } else { 3566 memcpy(seg->bounce_buf, urb->transfer_buffer + enqd_len, new_buff_len); 3567 } 3568 3569 seg->bounce_dma = dma_map_single(dev, seg->bounce_buf, 3570 max_pkt, DMA_TO_DEVICE); 3571 } else { 3572 seg->bounce_dma = dma_map_single(dev, seg->bounce_buf, 3573 max_pkt, DMA_FROM_DEVICE); 3574 } 3575 3576 if (dma_mapping_error(dev, seg->bounce_dma)) { 3577 /* try without aligning. Some host controllers survive */ 3578 xhci_warn(xhci, "Failed mapping bounce buffer, not aligning\n"); 3579 return 0; 3580 } 3581 *trb_buff_len = new_buff_len; 3582 seg->bounce_len = new_buff_len; 3583 seg->bounce_offs = enqd_len; 3584 3585 xhci_dbg(xhci, "Bounce align, new buff len %d\n", *trb_buff_len); 3586 3587 return 1; 3588 } 3589 3590 /* This is very similar to what ehci-q.c qtd_fill() does */ 3591 int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags, 3592 struct urb *urb, int slot_id, unsigned int ep_index) 3593 { 3594 struct xhci_ring *ring; 3595 struct urb_priv *urb_priv; 3596 struct xhci_td *td; 3597 struct xhci_generic_trb *start_trb; 3598 struct scatterlist *sg = NULL; 3599 bool more_trbs_coming = true; 3600 bool need_zero_pkt = false; 3601 bool first_trb = true; 3602 unsigned int num_trbs; 3603 unsigned int start_cycle, num_sgs = 0; 3604 unsigned int enqd_len, block_len, trb_buff_len, full_len; 3605 int sent_len, ret; 3606 u32 field, length_field, remainder; 3607 u64 addr, send_addr; 3608 3609 ring = xhci_urb_to_transfer_ring(xhci, urb); 3610 if (!ring) 3611 return -EINVAL; 3612 3613 full_len = urb->transfer_buffer_length; 3614 /* If we have scatter/gather list, we use it. */ 3615 if (urb->num_sgs && !(urb->transfer_flags & URB_DMA_MAP_SINGLE)) { 3616 num_sgs = urb->num_mapped_sgs; 3617 sg = urb->sg; 3618 addr = (u64) sg_dma_address(sg); 3619 block_len = sg_dma_len(sg); 3620 num_trbs = count_sg_trbs_needed(urb); 3621 } else { 3622 num_trbs = count_trbs_needed(urb); 3623 addr = (u64) urb->transfer_dma; 3624 block_len = full_len; 3625 } 3626 ret = prepare_transfer(xhci, xhci->devs[slot_id], 3627 ep_index, urb->stream_id, 3628 num_trbs, urb, 0, mem_flags); 3629 if (unlikely(ret < 0)) 3630 return ret; 3631 3632 urb_priv = urb->hcpriv; 3633 3634 /* Deal with URB_ZERO_PACKET - need one more td/trb */ 3635 if (urb->transfer_flags & URB_ZERO_PACKET && urb_priv->num_tds > 1) 3636 need_zero_pkt = true; 3637 3638 td = &urb_priv->td[0]; 3639 3640 /* 3641 * Don't give the first TRB to the hardware (by toggling the cycle bit) 3642 * until we've finished creating all the other TRBs. The ring's cycle 3643 * state may change as we enqueue the other TRBs, so save it too. 3644 */ 3645 start_trb = &ring->enqueue->generic; 3646 start_cycle = ring->cycle_state; 3647 send_addr = addr; 3648 3649 /* Queue the TRBs, even if they are zero-length */ 3650 for (enqd_len = 0; first_trb || enqd_len < full_len; 3651 enqd_len += trb_buff_len) { 3652 field = TRB_TYPE(TRB_NORMAL); 3653 3654 /* TRB buffer should not cross 64KB boundaries */ 3655 trb_buff_len = TRB_BUFF_LEN_UP_TO_BOUNDARY(addr); 3656 trb_buff_len = min_t(unsigned int, trb_buff_len, block_len); 3657 3658 if (enqd_len + trb_buff_len > full_len) 3659 trb_buff_len = full_len - enqd_len; 3660 3661 /* Don't change the cycle bit of the first TRB until later */ 3662 if (first_trb) { 3663 first_trb = false; 3664 if (start_cycle == 0) 3665 field |= TRB_CYCLE; 3666 } else 3667 field |= ring->cycle_state; 3668 3669 /* Chain all the TRBs together; clear the chain bit in the last 3670 * TRB to indicate it's the last TRB in the chain. 3671 */ 3672 if (enqd_len + trb_buff_len < full_len) { 3673 field |= TRB_CHAIN; 3674 if (trb_is_link(ring->enqueue + 1)) { 3675 if (xhci_align_td(xhci, urb, enqd_len, 3676 &trb_buff_len, 3677 ring->enq_seg)) { 3678 send_addr = ring->enq_seg->bounce_dma; 3679 /* assuming TD won't span 2 segs */ 3680 td->bounce_seg = ring->enq_seg; 3681 } 3682 } 3683 } 3684 if (enqd_len + trb_buff_len >= full_len) { 3685 field &= ~TRB_CHAIN; 3686 field |= TRB_IOC; 3687 more_trbs_coming = false; 3688 td->last_trb = ring->enqueue; 3689 td->last_trb_seg = ring->enq_seg; 3690 if (xhci_urb_suitable_for_idt(urb)) { 3691 memcpy(&send_addr, urb->transfer_buffer, 3692 trb_buff_len); 3693 le64_to_cpus(&send_addr); 3694 field |= TRB_IDT; 3695 } 3696 } 3697 3698 /* Only set interrupt on short packet for IN endpoints */ 3699 if (usb_urb_dir_in(urb)) 3700 field |= TRB_ISP; 3701 3702 /* Set the TRB length, TD size, and interrupter fields. */ 3703 remainder = xhci_td_remainder(xhci, enqd_len, trb_buff_len, 3704 full_len, urb, more_trbs_coming); 3705 3706 length_field = TRB_LEN(trb_buff_len) | 3707 TRB_TD_SIZE(remainder) | 3708 TRB_INTR_TARGET(0); 3709 3710 queue_trb(xhci, ring, more_trbs_coming | need_zero_pkt, 3711 lower_32_bits(send_addr), 3712 upper_32_bits(send_addr), 3713 length_field, 3714 field); 3715 td->num_trbs++; 3716 addr += trb_buff_len; 3717 sent_len = trb_buff_len; 3718 3719 while (sg && sent_len >= block_len) { 3720 /* New sg entry */ 3721 --num_sgs; 3722 sent_len -= block_len; 3723 sg = sg_next(sg); 3724 if (num_sgs != 0 && sg) { 3725 block_len = sg_dma_len(sg); 3726 addr = (u64) sg_dma_address(sg); 3727 addr += sent_len; 3728 } 3729 } 3730 block_len -= sent_len; 3731 send_addr = addr; 3732 } 3733 3734 if (need_zero_pkt) { 3735 ret = prepare_transfer(xhci, xhci->devs[slot_id], 3736 ep_index, urb->stream_id, 3737 1, urb, 1, mem_flags); 3738 urb_priv->td[1].last_trb = ring->enqueue; 3739 urb_priv->td[1].last_trb_seg = ring->enq_seg; 3740 field = TRB_TYPE(TRB_NORMAL) | ring->cycle_state | TRB_IOC; 3741 queue_trb(xhci, ring, 0, 0, 0, TRB_INTR_TARGET(0), field); 3742 urb_priv->td[1].num_trbs++; 3743 } 3744 3745 check_trb_math(urb, enqd_len); 3746 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id, 3747 start_cycle, start_trb); 3748 return 0; 3749 } 3750 3751 /* Caller must have locked xhci->lock */ 3752 int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags, 3753 struct urb *urb, int slot_id, unsigned int ep_index) 3754 { 3755 struct xhci_ring *ep_ring; 3756 int num_trbs; 3757 int ret; 3758 struct usb_ctrlrequest *setup; 3759 struct xhci_generic_trb *start_trb; 3760 int start_cycle; 3761 u32 field; 3762 struct urb_priv *urb_priv; 3763 struct xhci_td *td; 3764 3765 ep_ring = xhci_urb_to_transfer_ring(xhci, urb); 3766 if (!ep_ring) 3767 return -EINVAL; 3768 3769 /* 3770 * Need to copy setup packet into setup TRB, so we can't use the setup 3771 * DMA address. 3772 */ 3773 if (!urb->setup_packet) 3774 return -EINVAL; 3775 3776 /* 1 TRB for setup, 1 for status */ 3777 num_trbs = 2; 3778 /* 3779 * Don't need to check if we need additional event data and normal TRBs, 3780 * since data in control transfers will never get bigger than 16MB 3781 * XXX: can we get a buffer that crosses 64KB boundaries? 3782 */ 3783 if (urb->transfer_buffer_length > 0) 3784 num_trbs++; 3785 ret = prepare_transfer(xhci, xhci->devs[slot_id], 3786 ep_index, urb->stream_id, 3787 num_trbs, urb, 0, mem_flags); 3788 if (ret < 0) 3789 return ret; 3790 3791 urb_priv = urb->hcpriv; 3792 td = &urb_priv->td[0]; 3793 td->num_trbs = num_trbs; 3794 3795 /* 3796 * Don't give the first TRB to the hardware (by toggling the cycle bit) 3797 * until we've finished creating all the other TRBs. The ring's cycle 3798 * state may change as we enqueue the other TRBs, so save it too. 3799 */ 3800 start_trb = &ep_ring->enqueue->generic; 3801 start_cycle = ep_ring->cycle_state; 3802 3803 /* Queue setup TRB - see section 6.4.1.2.1 */ 3804 /* FIXME better way to translate setup_packet into two u32 fields? */ 3805 setup = (struct usb_ctrlrequest *) urb->setup_packet; 3806 field = 0; 3807 field |= TRB_IDT | TRB_TYPE(TRB_SETUP); 3808 if (start_cycle == 0) 3809 field |= 0x1; 3810 3811 /* xHCI 1.0/1.1 6.4.1.2.1: Transfer Type field */ 3812 if ((xhci->hci_version >= 0x100) || (xhci->quirks & XHCI_MTK_HOST)) { 3813 if (urb->transfer_buffer_length > 0) { 3814 if (setup->bRequestType & USB_DIR_IN) 3815 field |= TRB_TX_TYPE(TRB_DATA_IN); 3816 else 3817 field |= TRB_TX_TYPE(TRB_DATA_OUT); 3818 } 3819 } 3820 3821 queue_trb(xhci, ep_ring, true, 3822 setup->bRequestType | setup->bRequest << 8 | le16_to_cpu(setup->wValue) << 16, 3823 le16_to_cpu(setup->wIndex) | le16_to_cpu(setup->wLength) << 16, 3824 TRB_LEN(8) | TRB_INTR_TARGET(0), 3825 /* Immediate data in pointer */ 3826 field); 3827 3828 /* If there's data, queue data TRBs */ 3829 /* Only set interrupt on short packet for IN endpoints */ 3830 if (usb_urb_dir_in(urb)) 3831 field = TRB_ISP | TRB_TYPE(TRB_DATA); 3832 else 3833 field = TRB_TYPE(TRB_DATA); 3834 3835 if (urb->transfer_buffer_length > 0) { 3836 u32 length_field, remainder; 3837 u64 addr; 3838 3839 if (xhci_urb_suitable_for_idt(urb)) { 3840 memcpy(&addr, urb->transfer_buffer, 3841 urb->transfer_buffer_length); 3842 le64_to_cpus(&addr); 3843 field |= TRB_IDT; 3844 } else { 3845 addr = (u64) urb->transfer_dma; 3846 } 3847 3848 remainder = xhci_td_remainder(xhci, 0, 3849 urb->transfer_buffer_length, 3850 urb->transfer_buffer_length, 3851 urb, 1); 3852 length_field = TRB_LEN(urb->transfer_buffer_length) | 3853 TRB_TD_SIZE(remainder) | 3854 TRB_INTR_TARGET(0); 3855 if (setup->bRequestType & USB_DIR_IN) 3856 field |= TRB_DIR_IN; 3857 queue_trb(xhci, ep_ring, true, 3858 lower_32_bits(addr), 3859 upper_32_bits(addr), 3860 length_field, 3861 field | ep_ring->cycle_state); 3862 } 3863 3864 /* Save the DMA address of the last TRB in the TD */ 3865 td->last_trb = ep_ring->enqueue; 3866 td->last_trb_seg = ep_ring->enq_seg; 3867 3868 /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */ 3869 /* If the device sent data, the status stage is an OUT transfer */ 3870 if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN) 3871 field = 0; 3872 else 3873 field = TRB_DIR_IN; 3874 queue_trb(xhci, ep_ring, false, 3875 0, 3876 0, 3877 TRB_INTR_TARGET(0), 3878 /* Event on completion */ 3879 field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state); 3880 3881 giveback_first_trb(xhci, slot_id, ep_index, 0, 3882 start_cycle, start_trb); 3883 return 0; 3884 } 3885 3886 /* 3887 * The transfer burst count field of the isochronous TRB defines the number of 3888 * bursts that are required to move all packets in this TD. Only SuperSpeed 3889 * devices can burst up to bMaxBurst number of packets per service interval. 3890 * This field is zero based, meaning a value of zero in the field means one 3891 * burst. Basically, for everything but SuperSpeed devices, this field will be 3892 * zero. Only xHCI 1.0 host controllers support this field. 3893 */ 3894 static unsigned int xhci_get_burst_count(struct xhci_hcd *xhci, 3895 struct urb *urb, unsigned int total_packet_count) 3896 { 3897 unsigned int max_burst; 3898 3899 if (xhci->hci_version < 0x100 || urb->dev->speed < USB_SPEED_SUPER) 3900 return 0; 3901 3902 max_burst = urb->ep->ss_ep_comp.bMaxBurst; 3903 return DIV_ROUND_UP(total_packet_count, max_burst + 1) - 1; 3904 } 3905 3906 /* 3907 * Returns the number of packets in the last "burst" of packets. This field is 3908 * valid for all speeds of devices. USB 2.0 devices can only do one "burst", so 3909 * the last burst packet count is equal to the total number of packets in the 3910 * TD. SuperSpeed endpoints can have up to 3 bursts. All but the last burst 3911 * must contain (bMaxBurst + 1) number of packets, but the last burst can 3912 * contain 1 to (bMaxBurst + 1) packets. 3913 */ 3914 static unsigned int xhci_get_last_burst_packet_count(struct xhci_hcd *xhci, 3915 struct urb *urb, unsigned int total_packet_count) 3916 { 3917 unsigned int max_burst; 3918 unsigned int residue; 3919 3920 if (xhci->hci_version < 0x100) 3921 return 0; 3922 3923 if (urb->dev->speed >= USB_SPEED_SUPER) { 3924 /* bMaxBurst is zero based: 0 means 1 packet per burst */ 3925 max_burst = urb->ep->ss_ep_comp.bMaxBurst; 3926 residue = total_packet_count % (max_burst + 1); 3927 /* If residue is zero, the last burst contains (max_burst + 1) 3928 * number of packets, but the TLBPC field is zero-based. 3929 */ 3930 if (residue == 0) 3931 return max_burst; 3932 return residue - 1; 3933 } 3934 if (total_packet_count == 0) 3935 return 0; 3936 return total_packet_count - 1; 3937 } 3938 3939 /* 3940 * Calculates Frame ID field of the isochronous TRB identifies the 3941 * target frame that the Interval associated with this Isochronous 3942 * Transfer Descriptor will start on. Refer to 4.11.2.5 in 1.1 spec. 3943 * 3944 * Returns actual frame id on success, negative value on error. 3945 */ 3946 static int xhci_get_isoc_frame_id(struct xhci_hcd *xhci, 3947 struct urb *urb, int index) 3948 { 3949 int start_frame, ist, ret = 0; 3950 int start_frame_id, end_frame_id, current_frame_id; 3951 3952 if (urb->dev->speed == USB_SPEED_LOW || 3953 urb->dev->speed == USB_SPEED_FULL) 3954 start_frame = urb->start_frame + index * urb->interval; 3955 else 3956 start_frame = (urb->start_frame + index * urb->interval) >> 3; 3957 3958 /* Isochronous Scheduling Threshold (IST, bits 0~3 in HCSPARAMS2): 3959 * 3960 * If bit [3] of IST is cleared to '0', software can add a TRB no 3961 * later than IST[2:0] Microframes before that TRB is scheduled to 3962 * be executed. 3963 * If bit [3] of IST is set to '1', software can add a TRB no later 3964 * than IST[2:0] Frames before that TRB is scheduled to be executed. 3965 */ 3966 ist = HCS_IST(xhci->hcs_params2) & 0x7; 3967 if (HCS_IST(xhci->hcs_params2) & (1 << 3)) 3968 ist <<= 3; 3969 3970 /* Software shall not schedule an Isoch TD with a Frame ID value that 3971 * is less than the Start Frame ID or greater than the End Frame ID, 3972 * where: 3973 * 3974 * End Frame ID = (Current MFINDEX register value + 895 ms.) MOD 2048 3975 * Start Frame ID = (Current MFINDEX register value + IST + 1) MOD 2048 3976 * 3977 * Both the End Frame ID and Start Frame ID values are calculated 3978 * in microframes. When software determines the valid Frame ID value; 3979 * The End Frame ID value should be rounded down to the nearest Frame 3980 * boundary, and the Start Frame ID value should be rounded up to the 3981 * nearest Frame boundary. 3982 */ 3983 current_frame_id = readl(&xhci->run_regs->microframe_index); 3984 start_frame_id = roundup(current_frame_id + ist + 1, 8); 3985 end_frame_id = rounddown(current_frame_id + 895 * 8, 8); 3986 3987 start_frame &= 0x7ff; 3988 start_frame_id = (start_frame_id >> 3) & 0x7ff; 3989 end_frame_id = (end_frame_id >> 3) & 0x7ff; 3990 3991 xhci_dbg(xhci, "%s: index %d, reg 0x%x start_frame_id 0x%x, end_frame_id 0x%x, start_frame 0x%x\n", 3992 __func__, index, readl(&xhci->run_regs->microframe_index), 3993 start_frame_id, end_frame_id, start_frame); 3994 3995 if (start_frame_id < end_frame_id) { 3996 if (start_frame > end_frame_id || 3997 start_frame < start_frame_id) 3998 ret = -EINVAL; 3999 } else if (start_frame_id > end_frame_id) { 4000 if ((start_frame > end_frame_id && 4001 start_frame < start_frame_id)) 4002 ret = -EINVAL; 4003 } else { 4004 ret = -EINVAL; 4005 } 4006 4007 if (index == 0) { 4008 if (ret == -EINVAL || start_frame == start_frame_id) { 4009 start_frame = start_frame_id + 1; 4010 if (urb->dev->speed == USB_SPEED_LOW || 4011 urb->dev->speed == USB_SPEED_FULL) 4012 urb->start_frame = start_frame; 4013 else 4014 urb->start_frame = start_frame << 3; 4015 ret = 0; 4016 } 4017 } 4018 4019 if (ret) { 4020 xhci_warn(xhci, "Frame ID %d (reg %d, index %d) beyond range (%d, %d)\n", 4021 start_frame, current_frame_id, index, 4022 start_frame_id, end_frame_id); 4023 xhci_warn(xhci, "Ignore frame ID field, use SIA bit instead\n"); 4024 return ret; 4025 } 4026 4027 return start_frame; 4028 } 4029 4030 /* Check if we should generate event interrupt for a TD in an isoc URB */ 4031 static bool trb_block_event_intr(struct xhci_hcd *xhci, int num_tds, int i) 4032 { 4033 if (xhci->hci_version < 0x100) 4034 return false; 4035 /* always generate an event interrupt for the last TD */ 4036 if (i == num_tds - 1) 4037 return false; 4038 /* 4039 * If AVOID_BEI is set the host handles full event rings poorly, 4040 * generate an event at least every 8th TD to clear the event ring 4041 */ 4042 if (i && xhci->quirks & XHCI_AVOID_BEI) 4043 return !!(i % xhci->isoc_bei_interval); 4044 4045 return true; 4046 } 4047 4048 /* This is for isoc transfer */ 4049 static int xhci_queue_isoc_tx(struct xhci_hcd *xhci, gfp_t mem_flags, 4050 struct urb *urb, int slot_id, unsigned int ep_index) 4051 { 4052 struct xhci_ring *ep_ring; 4053 struct urb_priv *urb_priv; 4054 struct xhci_td *td; 4055 int num_tds, trbs_per_td; 4056 struct xhci_generic_trb *start_trb; 4057 bool first_trb; 4058 int start_cycle; 4059 u32 field, length_field; 4060 int running_total, trb_buff_len, td_len, td_remain_len, ret; 4061 u64 start_addr, addr; 4062 int i, j; 4063 bool more_trbs_coming; 4064 struct xhci_virt_ep *xep; 4065 int frame_id; 4066 4067 xep = &xhci->devs[slot_id]->eps[ep_index]; 4068 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring; 4069 4070 num_tds = urb->number_of_packets; 4071 if (num_tds < 1) { 4072 xhci_dbg(xhci, "Isoc URB with zero packets?\n"); 4073 return -EINVAL; 4074 } 4075 start_addr = (u64) urb->transfer_dma; 4076 start_trb = &ep_ring->enqueue->generic; 4077 start_cycle = ep_ring->cycle_state; 4078 4079 urb_priv = urb->hcpriv; 4080 /* Queue the TRBs for each TD, even if they are zero-length */ 4081 for (i = 0; i < num_tds; i++) { 4082 unsigned int total_pkt_count, max_pkt; 4083 unsigned int burst_count, last_burst_pkt_count; 4084 u32 sia_frame_id; 4085 4086 first_trb = true; 4087 running_total = 0; 4088 addr = start_addr + urb->iso_frame_desc[i].offset; 4089 td_len = urb->iso_frame_desc[i].length; 4090 td_remain_len = td_len; 4091 max_pkt = usb_endpoint_maxp(&urb->ep->desc); 4092 total_pkt_count = DIV_ROUND_UP(td_len, max_pkt); 4093 4094 /* A zero-length transfer still involves at least one packet. */ 4095 if (total_pkt_count == 0) 4096 total_pkt_count++; 4097 burst_count = xhci_get_burst_count(xhci, urb, total_pkt_count); 4098 last_burst_pkt_count = xhci_get_last_burst_packet_count(xhci, 4099 urb, total_pkt_count); 4100 4101 trbs_per_td = count_isoc_trbs_needed(urb, i); 4102 4103 ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index, 4104 urb->stream_id, trbs_per_td, urb, i, mem_flags); 4105 if (ret < 0) { 4106 if (i == 0) 4107 return ret; 4108 goto cleanup; 4109 } 4110 td = &urb_priv->td[i]; 4111 td->num_trbs = trbs_per_td; 4112 /* use SIA as default, if frame id is used overwrite it */ 4113 sia_frame_id = TRB_SIA; 4114 if (!(urb->transfer_flags & URB_ISO_ASAP) && 4115 HCC_CFC(xhci->hcc_params)) { 4116 frame_id = xhci_get_isoc_frame_id(xhci, urb, i); 4117 if (frame_id >= 0) 4118 sia_frame_id = TRB_FRAME_ID(frame_id); 4119 } 4120 /* 4121 * Set isoc specific data for the first TRB in a TD. 4122 * Prevent HW from getting the TRBs by keeping the cycle state 4123 * inverted in the first TDs isoc TRB. 4124 */ 4125 field = TRB_TYPE(TRB_ISOC) | 4126 TRB_TLBPC(last_burst_pkt_count) | 4127 sia_frame_id | 4128 (i ? ep_ring->cycle_state : !start_cycle); 4129 4130 /* xhci 1.1 with ETE uses TD_Size field for TBC, old is Rsvdz */ 4131 if (!xep->use_extended_tbc) 4132 field |= TRB_TBC(burst_count); 4133 4134 /* fill the rest of the TRB fields, and remaining normal TRBs */ 4135 for (j = 0; j < trbs_per_td; j++) { 4136 u32 remainder = 0; 4137 4138 /* only first TRB is isoc, overwrite otherwise */ 4139 if (!first_trb) 4140 field = TRB_TYPE(TRB_NORMAL) | 4141 ep_ring->cycle_state; 4142 4143 /* Only set interrupt on short packet for IN EPs */ 4144 if (usb_urb_dir_in(urb)) 4145 field |= TRB_ISP; 4146 4147 /* Set the chain bit for all except the last TRB */ 4148 if (j < trbs_per_td - 1) { 4149 more_trbs_coming = true; 4150 field |= TRB_CHAIN; 4151 } else { 4152 more_trbs_coming = false; 4153 td->last_trb = ep_ring->enqueue; 4154 td->last_trb_seg = ep_ring->enq_seg; 4155 field |= TRB_IOC; 4156 if (trb_block_event_intr(xhci, num_tds, i)) 4157 field |= TRB_BEI; 4158 } 4159 /* Calculate TRB length */ 4160 trb_buff_len = TRB_BUFF_LEN_UP_TO_BOUNDARY(addr); 4161 if (trb_buff_len > td_remain_len) 4162 trb_buff_len = td_remain_len; 4163 4164 /* Set the TRB length, TD size, & interrupter fields. */ 4165 remainder = xhci_td_remainder(xhci, running_total, 4166 trb_buff_len, td_len, 4167 urb, more_trbs_coming); 4168 4169 length_field = TRB_LEN(trb_buff_len) | 4170 TRB_INTR_TARGET(0); 4171 4172 /* xhci 1.1 with ETE uses TD Size field for TBC */ 4173 if (first_trb && xep->use_extended_tbc) 4174 length_field |= TRB_TD_SIZE_TBC(burst_count); 4175 else 4176 length_field |= TRB_TD_SIZE(remainder); 4177 first_trb = false; 4178 4179 queue_trb(xhci, ep_ring, more_trbs_coming, 4180 lower_32_bits(addr), 4181 upper_32_bits(addr), 4182 length_field, 4183 field); 4184 running_total += trb_buff_len; 4185 4186 addr += trb_buff_len; 4187 td_remain_len -= trb_buff_len; 4188 } 4189 4190 /* Check TD length */ 4191 if (running_total != td_len) { 4192 xhci_err(xhci, "ISOC TD length unmatch\n"); 4193 ret = -EINVAL; 4194 goto cleanup; 4195 } 4196 } 4197 4198 /* store the next frame id */ 4199 if (HCC_CFC(xhci->hcc_params)) 4200 xep->next_frame_id = urb->start_frame + num_tds * urb->interval; 4201 4202 if (xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs == 0) { 4203 if (xhci->quirks & XHCI_AMD_PLL_FIX) 4204 usb_amd_quirk_pll_disable(); 4205 } 4206 xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs++; 4207 4208 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id, 4209 start_cycle, start_trb); 4210 return 0; 4211 cleanup: 4212 /* Clean up a partially enqueued isoc transfer. */ 4213 4214 for (i--; i >= 0; i--) 4215 list_del_init(&urb_priv->td[i].td_list); 4216 4217 /* Use the first TD as a temporary variable to turn the TDs we've queued 4218 * into No-ops with a software-owned cycle bit. That way the hardware 4219 * won't accidentally start executing bogus TDs when we partially 4220 * overwrite them. td->first_trb and td->start_seg are already set. 4221 */ 4222 urb_priv->td[0].last_trb = ep_ring->enqueue; 4223 /* Every TRB except the first & last will have its cycle bit flipped. */ 4224 td_to_noop(xhci, ep_ring, &urb_priv->td[0], true); 4225 4226 /* Reset the ring enqueue back to the first TRB and its cycle bit. */ 4227 ep_ring->enqueue = urb_priv->td[0].first_trb; 4228 ep_ring->enq_seg = urb_priv->td[0].start_seg; 4229 ep_ring->cycle_state = start_cycle; 4230 usb_hcd_unlink_urb_from_ep(bus_to_hcd(urb->dev->bus), urb); 4231 return ret; 4232 } 4233 4234 /* 4235 * Check transfer ring to guarantee there is enough room for the urb. 4236 * Update ISO URB start_frame and interval. 4237 * Update interval as xhci_queue_intr_tx does. Use xhci frame_index to 4238 * update urb->start_frame if URB_ISO_ASAP is set in transfer_flags or 4239 * Contiguous Frame ID is not supported by HC. 4240 */ 4241 int xhci_queue_isoc_tx_prepare(struct xhci_hcd *xhci, gfp_t mem_flags, 4242 struct urb *urb, int slot_id, unsigned int ep_index) 4243 { 4244 struct xhci_virt_device *xdev; 4245 struct xhci_ring *ep_ring; 4246 struct xhci_ep_ctx *ep_ctx; 4247 int start_frame; 4248 int num_tds, num_trbs, i; 4249 int ret; 4250 struct xhci_virt_ep *xep; 4251 int ist; 4252 4253 xdev = xhci->devs[slot_id]; 4254 xep = &xhci->devs[slot_id]->eps[ep_index]; 4255 ep_ring = xdev->eps[ep_index].ring; 4256 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index); 4257 4258 num_trbs = 0; 4259 num_tds = urb->number_of_packets; 4260 for (i = 0; i < num_tds; i++) 4261 num_trbs += count_isoc_trbs_needed(urb, i); 4262 4263 /* Check the ring to guarantee there is enough room for the whole urb. 4264 * Do not insert any td of the urb to the ring if the check failed. 4265 */ 4266 ret = prepare_ring(xhci, ep_ring, GET_EP_CTX_STATE(ep_ctx), 4267 num_trbs, mem_flags); 4268 if (ret) 4269 return ret; 4270 4271 /* 4272 * Check interval value. This should be done before we start to 4273 * calculate the start frame value. 4274 */ 4275 check_interval(xhci, urb, ep_ctx); 4276 4277 /* Calculate the start frame and put it in urb->start_frame. */ 4278 if (HCC_CFC(xhci->hcc_params) && !list_empty(&ep_ring->td_list)) { 4279 if (GET_EP_CTX_STATE(ep_ctx) == EP_STATE_RUNNING) { 4280 urb->start_frame = xep->next_frame_id; 4281 goto skip_start_over; 4282 } 4283 } 4284 4285 start_frame = readl(&xhci->run_regs->microframe_index); 4286 start_frame &= 0x3fff; 4287 /* 4288 * Round up to the next frame and consider the time before trb really 4289 * gets scheduled by hardare. 4290 */ 4291 ist = HCS_IST(xhci->hcs_params2) & 0x7; 4292 if (HCS_IST(xhci->hcs_params2) & (1 << 3)) 4293 ist <<= 3; 4294 start_frame += ist + XHCI_CFC_DELAY; 4295 start_frame = roundup(start_frame, 8); 4296 4297 /* 4298 * Round up to the next ESIT (Endpoint Service Interval Time) if ESIT 4299 * is greate than 8 microframes. 4300 */ 4301 if (urb->dev->speed == USB_SPEED_LOW || 4302 urb->dev->speed == USB_SPEED_FULL) { 4303 start_frame = roundup(start_frame, urb->interval << 3); 4304 urb->start_frame = start_frame >> 3; 4305 } else { 4306 start_frame = roundup(start_frame, urb->interval); 4307 urb->start_frame = start_frame; 4308 } 4309 4310 skip_start_over: 4311 4312 return xhci_queue_isoc_tx(xhci, mem_flags, urb, slot_id, ep_index); 4313 } 4314 4315 /**** Command Ring Operations ****/ 4316 4317 /* Generic function for queueing a command TRB on the command ring. 4318 * Check to make sure there's room on the command ring for one command TRB. 4319 * Also check that there's room reserved for commands that must not fail. 4320 * If this is a command that must not fail, meaning command_must_succeed = TRUE, 4321 * then only check for the number of reserved spots. 4322 * Don't decrement xhci->cmd_ring_reserved_trbs after we've queued the TRB 4323 * because the command event handler may want to resubmit a failed command. 4324 */ 4325 static int queue_command(struct xhci_hcd *xhci, struct xhci_command *cmd, 4326 u32 field1, u32 field2, 4327 u32 field3, u32 field4, bool command_must_succeed) 4328 { 4329 int reserved_trbs = xhci->cmd_ring_reserved_trbs; 4330 int ret; 4331 4332 if ((xhci->xhc_state & XHCI_STATE_DYING) || 4333 (xhci->xhc_state & XHCI_STATE_HALTED)) { 4334 xhci_dbg(xhci, "xHCI dying or halted, can't queue_command\n"); 4335 return -ESHUTDOWN; 4336 } 4337 4338 if (!command_must_succeed) 4339 reserved_trbs++; 4340 4341 ret = prepare_ring(xhci, xhci->cmd_ring, EP_STATE_RUNNING, 4342 reserved_trbs, GFP_ATOMIC); 4343 if (ret < 0) { 4344 xhci_err(xhci, "ERR: No room for command on command ring\n"); 4345 if (command_must_succeed) 4346 xhci_err(xhci, "ERR: Reserved TRB counting for " 4347 "unfailable commands failed.\n"); 4348 return ret; 4349 } 4350 4351 cmd->command_trb = xhci->cmd_ring->enqueue; 4352 4353 /* if there are no other commands queued we start the timeout timer */ 4354 if (list_empty(&xhci->cmd_list)) { 4355 xhci->current_cmd = cmd; 4356 xhci_mod_cmd_timer(xhci, XHCI_CMD_DEFAULT_TIMEOUT); 4357 } 4358 4359 list_add_tail(&cmd->cmd_list, &xhci->cmd_list); 4360 4361 queue_trb(xhci, xhci->cmd_ring, false, field1, field2, field3, 4362 field4 | xhci->cmd_ring->cycle_state); 4363 return 0; 4364 } 4365 4366 /* Queue a slot enable or disable request on the command ring */ 4367 int xhci_queue_slot_control(struct xhci_hcd *xhci, struct xhci_command *cmd, 4368 u32 trb_type, u32 slot_id) 4369 { 4370 return queue_command(xhci, cmd, 0, 0, 0, 4371 TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id), false); 4372 } 4373 4374 /* Queue an address device command TRB */ 4375 int xhci_queue_address_device(struct xhci_hcd *xhci, struct xhci_command *cmd, 4376 dma_addr_t in_ctx_ptr, u32 slot_id, enum xhci_setup_dev setup) 4377 { 4378 return queue_command(xhci, cmd, lower_32_bits(in_ctx_ptr), 4379 upper_32_bits(in_ctx_ptr), 0, 4380 TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id) 4381 | (setup == SETUP_CONTEXT_ONLY ? TRB_BSR : 0), false); 4382 } 4383 4384 int xhci_queue_vendor_command(struct xhci_hcd *xhci, struct xhci_command *cmd, 4385 u32 field1, u32 field2, u32 field3, u32 field4) 4386 { 4387 return queue_command(xhci, cmd, field1, field2, field3, field4, false); 4388 } 4389 4390 /* Queue a reset device command TRB */ 4391 int xhci_queue_reset_device(struct xhci_hcd *xhci, struct xhci_command *cmd, 4392 u32 slot_id) 4393 { 4394 return queue_command(xhci, cmd, 0, 0, 0, 4395 TRB_TYPE(TRB_RESET_DEV) | SLOT_ID_FOR_TRB(slot_id), 4396 false); 4397 } 4398 4399 /* Queue a configure endpoint command TRB */ 4400 int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, 4401 struct xhci_command *cmd, dma_addr_t in_ctx_ptr, 4402 u32 slot_id, bool command_must_succeed) 4403 { 4404 return queue_command(xhci, cmd, lower_32_bits(in_ctx_ptr), 4405 upper_32_bits(in_ctx_ptr), 0, 4406 TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id), 4407 command_must_succeed); 4408 } 4409 4410 /* Queue an evaluate context command TRB */ 4411 int xhci_queue_evaluate_context(struct xhci_hcd *xhci, struct xhci_command *cmd, 4412 dma_addr_t in_ctx_ptr, u32 slot_id, bool command_must_succeed) 4413 { 4414 return queue_command(xhci, cmd, lower_32_bits(in_ctx_ptr), 4415 upper_32_bits(in_ctx_ptr), 0, 4416 TRB_TYPE(TRB_EVAL_CONTEXT) | SLOT_ID_FOR_TRB(slot_id), 4417 command_must_succeed); 4418 } 4419 4420 /* 4421 * Suspend is set to indicate "Stop Endpoint Command" is being issued to stop 4422 * activity on an endpoint that is about to be suspended. 4423 */ 4424 int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, struct xhci_command *cmd, 4425 int slot_id, unsigned int ep_index, int suspend) 4426 { 4427 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id); 4428 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index); 4429 u32 type = TRB_TYPE(TRB_STOP_RING); 4430 u32 trb_suspend = SUSPEND_PORT_FOR_TRB(suspend); 4431 4432 return queue_command(xhci, cmd, 0, 0, 0, 4433 trb_slot_id | trb_ep_index | type | trb_suspend, false); 4434 } 4435 4436 int xhci_queue_reset_ep(struct xhci_hcd *xhci, struct xhci_command *cmd, 4437 int slot_id, unsigned int ep_index, 4438 enum xhci_ep_reset_type reset_type) 4439 { 4440 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id); 4441 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index); 4442 u32 type = TRB_TYPE(TRB_RESET_EP); 4443 4444 if (reset_type == EP_SOFT_RESET) 4445 type |= TRB_TSP; 4446 4447 return queue_command(xhci, cmd, 0, 0, 0, 4448 trb_slot_id | trb_ep_index | type, false); 4449 } 4450