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