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