1 // SPDX-License-Identifier: GPL-2.0
3 * xHCI host controller driver
5 * Copyright (C) 2008 Intel Corp.
8 * Some code borrowed from the Linux EHCI driver.
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.
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.
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.
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
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.
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.
55 #include <linux/scatterlist.h>
56 #include <linux/slab.h>
57 #include <linux/dma-mapping.h>
59 #include "xhci-trace.h"
61 static int queue_command(struct xhci_hcd *xhci, struct xhci_command *cmd,
62 u32 field1, u32 field2,
63 u32 field3, u32 field4, bool command_must_succeed);
66 * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA
69 dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg,
72 unsigned long segment_offset;
74 if (!seg || !trb || trb < seg->trbs)
77 segment_offset = trb - seg->trbs;
78 if (segment_offset >= TRBS_PER_SEGMENT)
80 return seg->dma + (segment_offset * sizeof(*trb));
83 static bool trb_is_noop(union xhci_trb *trb)
85 return TRB_TYPE_NOOP_LE32(trb->generic.field[3]);
88 static bool trb_is_link(union xhci_trb *trb)
90 return TRB_TYPE_LINK_LE32(trb->link.control);
93 static bool last_trb_on_seg(struct xhci_segment *seg, union xhci_trb *trb)
95 return trb == &seg->trbs[TRBS_PER_SEGMENT - 1];
98 static bool last_trb_on_ring(struct xhci_ring *ring,
99 struct xhci_segment *seg, union xhci_trb *trb)
101 return last_trb_on_seg(seg, trb) && (seg->next == ring->first_seg);
104 static bool link_trb_toggles_cycle(union xhci_trb *trb)
106 return le32_to_cpu(trb->link.control) & LINK_TOGGLE;
109 static bool last_td_in_urb(struct xhci_td *td)
111 struct urb_priv *urb_priv = td->urb->hcpriv;
113 return urb_priv->num_tds_done == urb_priv->num_tds;
116 static void inc_td_cnt(struct urb *urb)
118 struct urb_priv *urb_priv = urb->hcpriv;
120 urb_priv->num_tds_done++;
123 static void trb_to_noop(union xhci_trb *trb, u32 noop_type)
125 if (trb_is_link(trb)) {
126 /* unchain chained link TRBs */
127 trb->link.control &= cpu_to_le32(~TRB_CHAIN);
129 trb->generic.field[0] = 0;
130 trb->generic.field[1] = 0;
131 trb->generic.field[2] = 0;
132 /* Preserve only the cycle bit of this TRB */
133 trb->generic.field[3] &= cpu_to_le32(TRB_CYCLE);
134 trb->generic.field[3] |= cpu_to_le32(TRB_TYPE(noop_type));
138 /* Updates trb to point to the next TRB in the ring, and updates seg if the next
139 * TRB is in a new segment. This does not skip over link TRBs, and it does not
140 * effect the ring dequeue or enqueue pointers.
142 static void next_trb(struct xhci_hcd *xhci,
143 struct xhci_ring *ring,
144 struct xhci_segment **seg,
145 union xhci_trb **trb)
147 if (trb_is_link(*trb)) {
149 *trb = ((*seg)->trbs);
156 * See Cycle bit rules. SW is the consumer for the event ring only.
158 void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring)
160 unsigned int link_trb_count = 0;
162 /* event ring doesn't have link trbs, check for last trb */
163 if (ring->type == TYPE_EVENT) {
164 if (!last_trb_on_seg(ring->deq_seg, ring->dequeue)) {
168 if (last_trb_on_ring(ring, ring->deq_seg, ring->dequeue))
169 ring->cycle_state ^= 1;
170 ring->deq_seg = ring->deq_seg->next;
171 ring->dequeue = ring->deq_seg->trbs;
175 /* All other rings have link trbs */
176 if (!trb_is_link(ring->dequeue)) {
177 if (last_trb_on_seg(ring->deq_seg, ring->dequeue))
178 xhci_warn(xhci, "Missing link TRB at end of segment\n");
183 while (trb_is_link(ring->dequeue)) {
184 ring->deq_seg = ring->deq_seg->next;
185 ring->dequeue = ring->deq_seg->trbs;
187 if (link_trb_count++ > ring->num_segs) {
188 xhci_warn(xhci, "Ring is an endless link TRB loop\n");
193 trace_xhci_inc_deq(ring);
199 * See Cycle bit rules. SW is the consumer for the event ring only.
201 * If we've just enqueued a TRB that is in the middle of a TD (meaning the
202 * chain bit is set), then set the chain bit in all the following link TRBs.
203 * If we've enqueued the last TRB in a TD, make sure the following link TRBs
204 * have their chain bit cleared (so that each Link TRB is a separate TD).
206 * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit
207 * set, but other sections talk about dealing with the chain bit set. This was
208 * fixed in the 0.96 specification errata, but we have to assume that all 0.95
209 * xHCI hardware can't handle the chain bit being cleared on a link TRB.
211 * @more_trbs_coming: Will you enqueue more TRBs before calling
212 * prepare_transfer()?
214 static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring,
215 bool more_trbs_coming)
218 union xhci_trb *next;
219 unsigned int link_trb_count = 0;
221 chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
223 if (last_trb_on_seg(ring->enq_seg, ring->enqueue)) {
224 xhci_err(xhci, "Tried to move enqueue past ring segment\n");
228 next = ++(ring->enqueue);
230 /* Update the dequeue pointer further if that was a link TRB */
231 while (trb_is_link(next)) {
234 * If the caller doesn't plan on enqueueing more TDs before
235 * ringing the doorbell, then we don't want to give the link TRB
236 * to the hardware just yet. We'll give the link TRB back in
237 * prepare_ring() just before we enqueue the TD at the top of
240 if (!chain && !more_trbs_coming)
243 /* If we're not dealing with 0.95 hardware or isoc rings on
244 * AMD 0.96 host, carry over the chain bit of the previous TRB
245 * (which may mean the chain bit is cleared).
247 if (!(ring->type == TYPE_ISOC &&
248 (xhci->quirks & XHCI_AMD_0x96_HOST)) &&
249 !xhci_link_trb_quirk(xhci)) {
250 next->link.control &= cpu_to_le32(~TRB_CHAIN);
251 next->link.control |= cpu_to_le32(chain);
253 /* Give this link TRB to the hardware */
255 next->link.control ^= cpu_to_le32(TRB_CYCLE);
257 /* Toggle the cycle bit after the last ring segment. */
258 if (link_trb_toggles_cycle(next))
259 ring->cycle_state ^= 1;
261 ring->enq_seg = ring->enq_seg->next;
262 ring->enqueue = ring->enq_seg->trbs;
263 next = ring->enqueue;
265 if (link_trb_count++ > ring->num_segs) {
266 xhci_warn(xhci, "%s: Ring link TRB loop\n", __func__);
271 trace_xhci_inc_enq(ring);
275 * Return number of free normal TRBs from enqueue to dequeue pointer on ring.
276 * Not counting an assumed link TRB at end of each TRBS_PER_SEGMENT sized segment.
277 * Only for transfer and command rings where driver is the producer, not for
280 static unsigned int xhci_num_trbs_free(struct xhci_hcd *xhci, struct xhci_ring *ring)
282 struct xhci_segment *enq_seg = ring->enq_seg;
283 union xhci_trb *enq = ring->enqueue;
284 union xhci_trb *last_on_seg;
285 unsigned int free = 0;
288 /* Ring might be empty even if enq != deq if enq is left on a link trb */
289 if (trb_is_link(enq)) {
290 enq_seg = enq_seg->next;
294 /* Empty ring, common case, don't walk the segments */
295 if (enq == ring->dequeue)
296 return ring->num_segs * (TRBS_PER_SEGMENT - 1);
299 if (ring->deq_seg == enq_seg && ring->dequeue >= enq)
300 return free + (ring->dequeue - enq);
301 last_on_seg = &enq_seg->trbs[TRBS_PER_SEGMENT - 1];
302 free += last_on_seg - enq;
303 enq_seg = enq_seg->next;
305 } while (i++ <= ring->num_segs);
311 * Check to see if there's room to enqueue num_trbs on the ring and make sure
312 * enqueue pointer will not advance into dequeue segment. See rules above.
313 * return number of new segments needed to ensure this.
316 static unsigned int xhci_ring_expansion_needed(struct xhci_hcd *xhci, struct xhci_ring *ring,
317 unsigned int num_trbs)
319 struct xhci_segment *seg;
324 enq_used = ring->enqueue - ring->enq_seg->trbs;
326 /* how many trbs will be queued past the enqueue segment? */
327 trbs_past_seg = enq_used + num_trbs - (TRBS_PER_SEGMENT - 1);
329 if (trbs_past_seg <= 0)
332 /* Empty ring special case, enqueue stuck on link trb while dequeue advanced */
333 if (trb_is_link(ring->enqueue) && ring->enq_seg->next->trbs == ring->dequeue)
336 new_segs = 1 + (trbs_past_seg / (TRBS_PER_SEGMENT - 1));
339 while (new_segs > 0) {
341 if (seg == ring->deq_seg) {
342 xhci_dbg(xhci, "Ring expansion by %d segments needed\n",
344 xhci_dbg(xhci, "Adding %d trbs moves enq %d trbs into deq seg\n",
345 num_trbs, trbs_past_seg % TRBS_PER_SEGMENT);
354 /* Ring the host controller doorbell after placing a command on the ring */
355 void xhci_ring_cmd_db(struct xhci_hcd *xhci)
357 if (!(xhci->cmd_ring_state & CMD_RING_STATE_RUNNING))
360 xhci_dbg(xhci, "// Ding dong!\n");
362 trace_xhci_ring_host_doorbell(0, DB_VALUE_HOST);
364 writel(DB_VALUE_HOST, &xhci->dba->doorbell[0]);
365 /* Flush PCI posted writes */
366 readl(&xhci->dba->doorbell[0]);
369 static bool xhci_mod_cmd_timer(struct xhci_hcd *xhci, unsigned long delay)
371 return mod_delayed_work(system_wq, &xhci->cmd_timer, delay);
374 static struct xhci_command *xhci_next_queued_cmd(struct xhci_hcd *xhci)
376 return list_first_entry_or_null(&xhci->cmd_list, struct xhci_command,
381 * Turn all commands on command ring with status set to "aborted" to no-op trbs.
382 * If there are other commands waiting then restart the ring and kick the timer.
383 * This must be called with command ring stopped and xhci->lock held.
385 static void xhci_handle_stopped_cmd_ring(struct xhci_hcd *xhci,
386 struct xhci_command *cur_cmd)
388 struct xhci_command *i_cmd;
390 /* Turn all aborted commands in list to no-ops, then restart */
391 list_for_each_entry(i_cmd, &xhci->cmd_list, cmd_list) {
393 if (i_cmd->status != COMP_COMMAND_ABORTED)
396 i_cmd->status = COMP_COMMAND_RING_STOPPED;
398 xhci_dbg(xhci, "Turn aborted command %p to no-op\n",
401 trb_to_noop(i_cmd->command_trb, TRB_CMD_NOOP);
404 * caller waiting for completion is called when command
405 * completion event is received for these no-op commands
409 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING;
411 /* ring command ring doorbell to restart the command ring */
412 if ((xhci->cmd_ring->dequeue != xhci->cmd_ring->enqueue) &&
413 !(xhci->xhc_state & XHCI_STATE_DYING)) {
414 xhci->current_cmd = cur_cmd;
415 xhci_mod_cmd_timer(xhci, XHCI_CMD_DEFAULT_TIMEOUT);
416 xhci_ring_cmd_db(xhci);
420 /* Must be called with xhci->lock held, releases and aquires lock back */
421 static int xhci_abort_cmd_ring(struct xhci_hcd *xhci, unsigned long flags)
423 struct xhci_segment *new_seg = xhci->cmd_ring->deq_seg;
424 union xhci_trb *new_deq = xhci->cmd_ring->dequeue;
428 xhci_dbg(xhci, "Abort command ring\n");
430 reinit_completion(&xhci->cmd_ring_stop_completion);
433 * The control bits like command stop, abort are located in lower
434 * dword of the command ring control register.
435 * Some controllers require all 64 bits to be written to abort the ring.
436 * Make sure the upper dword is valid, pointing to the next command,
437 * avoiding corrupting the command ring pointer in case the command ring
438 * is stopped by the time the upper dword is written.
440 next_trb(xhci, NULL, &new_seg, &new_deq);
441 if (trb_is_link(new_deq))
442 next_trb(xhci, NULL, &new_seg, &new_deq);
444 crcr = xhci_trb_virt_to_dma(new_seg, new_deq);
445 xhci_write_64(xhci, crcr | CMD_RING_ABORT, &xhci->op_regs->cmd_ring);
447 /* Section 4.6.1.2 of xHCI 1.0 spec says software should also time the
448 * completion of the Command Abort operation. If CRR is not negated in 5
449 * seconds then driver handles it as if host died (-ENODEV).
450 * In the future we should distinguish between -ENODEV and -ETIMEDOUT
451 * and try to recover a -ETIMEDOUT with a host controller reset.
453 ret = xhci_handshake(&xhci->op_regs->cmd_ring,
454 CMD_RING_RUNNING, 0, 5 * 1000 * 1000);
456 xhci_err(xhci, "Abort failed to stop command ring: %d\n", ret);
462 * Writing the CMD_RING_ABORT bit should cause a cmd completion event,
463 * however on some host hw the CMD_RING_RUNNING bit is correctly cleared
464 * but the completion event in never sent. Wait 2 secs (arbitrary
465 * number) to handle those cases after negation of CMD_RING_RUNNING.
467 spin_unlock_irqrestore(&xhci->lock, flags);
468 ret = wait_for_completion_timeout(&xhci->cmd_ring_stop_completion,
469 msecs_to_jiffies(2000));
470 spin_lock_irqsave(&xhci->lock, flags);
472 xhci_dbg(xhci, "No stop event for abort, ring start fail?\n");
473 xhci_cleanup_command_queue(xhci);
475 xhci_handle_stopped_cmd_ring(xhci, xhci_next_queued_cmd(xhci));
480 void xhci_ring_ep_doorbell(struct xhci_hcd *xhci,
481 unsigned int slot_id,
482 unsigned int ep_index,
483 unsigned int stream_id)
485 __le32 __iomem *db_addr = &xhci->dba->doorbell[slot_id];
486 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
487 unsigned int ep_state = ep->ep_state;
489 /* Don't ring the doorbell for this endpoint if there are pending
490 * cancellations because we don't want to interrupt processing.
491 * We don't want to restart any stream rings if there's a set dequeue
492 * pointer command pending because the device can choose to start any
493 * stream once the endpoint is on the HW schedule.
495 if ((ep_state & EP_STOP_CMD_PENDING) || (ep_state & SET_DEQ_PENDING) ||
496 (ep_state & EP_HALTED) || (ep_state & EP_CLEARING_TT))
499 trace_xhci_ring_ep_doorbell(slot_id, DB_VALUE(ep_index, stream_id));
501 writel(DB_VALUE(ep_index, stream_id), db_addr);
502 /* flush the write */
506 /* Ring the doorbell for any rings with pending URBs */
507 static void ring_doorbell_for_active_rings(struct xhci_hcd *xhci,
508 unsigned int slot_id,
509 unsigned int ep_index)
511 unsigned int stream_id;
512 struct xhci_virt_ep *ep;
514 ep = &xhci->devs[slot_id]->eps[ep_index];
516 /* A ring has pending URBs if its TD list is not empty */
517 if (!(ep->ep_state & EP_HAS_STREAMS)) {
518 if (ep->ring && !(list_empty(&ep->ring->td_list)))
519 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, 0);
523 for (stream_id = 1; stream_id < ep->stream_info->num_streams;
525 struct xhci_stream_info *stream_info = ep->stream_info;
526 if (!list_empty(&stream_info->stream_rings[stream_id]->td_list))
527 xhci_ring_ep_doorbell(xhci, slot_id, ep_index,
532 void xhci_ring_doorbell_for_active_rings(struct xhci_hcd *xhci,
533 unsigned int slot_id,
534 unsigned int ep_index)
536 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
539 static struct xhci_virt_ep *xhci_get_virt_ep(struct xhci_hcd *xhci,
540 unsigned int slot_id,
541 unsigned int ep_index)
543 if (slot_id == 0 || slot_id >= MAX_HC_SLOTS) {
544 xhci_warn(xhci, "Invalid slot_id %u\n", slot_id);
547 if (ep_index >= EP_CTX_PER_DEV) {
548 xhci_warn(xhci, "Invalid endpoint index %u\n", ep_index);
551 if (!xhci->devs[slot_id]) {
552 xhci_warn(xhci, "No xhci virt device for slot_id %u\n", slot_id);
556 return &xhci->devs[slot_id]->eps[ep_index];
559 static struct xhci_ring *xhci_virt_ep_to_ring(struct xhci_hcd *xhci,
560 struct xhci_virt_ep *ep,
561 unsigned int stream_id)
563 /* common case, no streams */
564 if (!(ep->ep_state & EP_HAS_STREAMS))
567 if (!ep->stream_info)
570 if (stream_id == 0 || stream_id >= ep->stream_info->num_streams) {
571 xhci_warn(xhci, "Invalid stream_id %u request for slot_id %u ep_index %u\n",
572 stream_id, ep->vdev->slot_id, ep->ep_index);
576 return ep->stream_info->stream_rings[stream_id];
579 /* Get the right ring for the given slot_id, ep_index and stream_id.
580 * If the endpoint supports streams, boundary check the URB's stream ID.
581 * If the endpoint doesn't support streams, return the singular endpoint ring.
583 struct xhci_ring *xhci_triad_to_transfer_ring(struct xhci_hcd *xhci,
584 unsigned int slot_id, unsigned int ep_index,
585 unsigned int stream_id)
587 struct xhci_virt_ep *ep;
589 ep = xhci_get_virt_ep(xhci, slot_id, ep_index);
593 return xhci_virt_ep_to_ring(xhci, ep, stream_id);
598 * Get the hw dequeue pointer xHC stopped on, either directly from the
599 * endpoint context, or if streams are in use from the stream context.
600 * The returned hw_dequeue contains the lowest four bits with cycle state
601 * and possbile stream context type.
603 static u64 xhci_get_hw_deq(struct xhci_hcd *xhci, struct xhci_virt_device *vdev,
604 unsigned int ep_index, unsigned int stream_id)
606 struct xhci_ep_ctx *ep_ctx;
607 struct xhci_stream_ctx *st_ctx;
608 struct xhci_virt_ep *ep;
610 ep = &vdev->eps[ep_index];
612 if (ep->ep_state & EP_HAS_STREAMS) {
613 st_ctx = &ep->stream_info->stream_ctx_array[stream_id];
614 return le64_to_cpu(st_ctx->stream_ring);
616 ep_ctx = xhci_get_ep_ctx(xhci, vdev->out_ctx, ep_index);
617 return le64_to_cpu(ep_ctx->deq);
620 static int xhci_move_dequeue_past_td(struct xhci_hcd *xhci,
621 unsigned int slot_id, unsigned int ep_index,
622 unsigned int stream_id, struct xhci_td *td)
624 struct xhci_virt_device *dev = xhci->devs[slot_id];
625 struct xhci_virt_ep *ep = &dev->eps[ep_index];
626 struct xhci_ring *ep_ring;
627 struct xhci_command *cmd;
628 struct xhci_segment *new_seg;
629 struct xhci_segment *halted_seg = NULL;
630 union xhci_trb *new_deq;
632 union xhci_trb *halted_trb;
636 bool cycle_found = false;
637 bool td_last_trb_found = false;
641 ep_ring = xhci_triad_to_transfer_ring(xhci, slot_id,
642 ep_index, stream_id);
644 xhci_warn(xhci, "WARN can't find new dequeue, invalid stream ID %u\n",
649 * A cancelled TD can complete with a stall if HW cached the trb.
650 * In this case driver can't find td, but if the ring is empty we
651 * can move the dequeue pointer to the current enqueue position.
652 * We shouldn't hit this anymore as cached cancelled TRBs are given back
653 * after clearing the cache, but be on the safe side and keep it anyway
656 if (list_empty(&ep_ring->td_list)) {
657 new_seg = ep_ring->enq_seg;
658 new_deq = ep_ring->enqueue;
659 new_cycle = ep_ring->cycle_state;
660 xhci_dbg(xhci, "ep ring empty, Set new dequeue = enqueue");
663 xhci_warn(xhci, "Can't find new dequeue state, missing td\n");
668 hw_dequeue = xhci_get_hw_deq(xhci, dev, ep_index, stream_id);
669 new_seg = ep_ring->deq_seg;
670 new_deq = ep_ring->dequeue;
673 * Quirk: xHC write-back of the DCS field in the hardware dequeue
674 * pointer is wrong - use the cycle state of the TRB pointed to by
675 * the dequeue pointer.
677 if (xhci->quirks & XHCI_EP_CTX_BROKEN_DCS &&
678 !(ep->ep_state & EP_HAS_STREAMS))
679 halted_seg = trb_in_td(xhci, td->start_seg,
680 td->first_trb, td->last_trb,
681 hw_dequeue & ~0xf, false);
683 index = ((dma_addr_t)(hw_dequeue & ~0xf) - halted_seg->dma) /
685 halted_trb = &halted_seg->trbs[index];
686 new_cycle = halted_trb->generic.field[3] & 0x1;
687 xhci_dbg(xhci, "Endpoint DCS = %d TRB index = %d cycle = %d\n",
688 (u8)(hw_dequeue & 0x1), index, new_cycle);
690 new_cycle = hw_dequeue & 0x1;
694 * We want to find the pointer, segment and cycle state of the new trb
695 * (the one after current TD's last_trb). We know the cycle state at
696 * hw_dequeue, so walk the ring until both hw_dequeue and last_trb are
700 if (!cycle_found && xhci_trb_virt_to_dma(new_seg, new_deq)
701 == (dma_addr_t)(hw_dequeue & ~0xf)) {
703 if (td_last_trb_found)
706 if (new_deq == td->last_trb)
707 td_last_trb_found = true;
709 if (cycle_found && trb_is_link(new_deq) &&
710 link_trb_toggles_cycle(new_deq))
713 next_trb(xhci, ep_ring, &new_seg, &new_deq);
715 /* Search wrapped around, bail out */
716 if (new_deq == ep->ring->dequeue) {
717 xhci_err(xhci, "Error: Failed finding new dequeue state\n");
721 } while (!cycle_found || !td_last_trb_found);
725 /* Don't update the ring cycle state for the producer (us). */
726 addr = xhci_trb_virt_to_dma(new_seg, new_deq);
728 xhci_warn(xhci, "Can't find dma of new dequeue ptr\n");
729 xhci_warn(xhci, "deq seg = %p, deq ptr = %p\n", new_seg, new_deq);
733 if ((ep->ep_state & SET_DEQ_PENDING)) {
734 xhci_warn(xhci, "Set TR Deq already pending, don't submit for 0x%pad\n",
739 /* This function gets called from contexts where it cannot sleep */
740 cmd = xhci_alloc_command(xhci, false, GFP_ATOMIC);
742 xhci_warn(xhci, "Can't alloc Set TR Deq cmd 0x%pad\n", &addr);
747 trb_sct = SCT_FOR_TRB(SCT_PRI_TR);
748 ret = queue_command(xhci, cmd,
749 lower_32_bits(addr) | trb_sct | new_cycle,
751 STREAM_ID_FOR_TRB(stream_id), SLOT_ID_FOR_TRB(slot_id) |
752 EP_ID_FOR_TRB(ep_index) | TRB_TYPE(TRB_SET_DEQ), false);
754 xhci_free_command(xhci, cmd);
757 ep->queued_deq_seg = new_seg;
758 ep->queued_deq_ptr = new_deq;
760 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
761 "Set TR Deq ptr 0x%llx, cycle %u\n", addr, new_cycle);
763 /* Stop the TD queueing code from ringing the doorbell until
764 * this command completes. The HC won't set the dequeue pointer
765 * if the ring is running, and ringing the doorbell starts the
768 ep->ep_state |= SET_DEQ_PENDING;
769 xhci_ring_cmd_db(xhci);
773 /* flip_cycle means flip the cycle bit of all but the first and last TRB.
774 * (The last TRB actually points to the ring enqueue pointer, which is not part
775 * of this TD.) This is used to remove partially enqueued isoc TDs from a ring.
777 static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
778 struct xhci_td *td, bool flip_cycle)
780 struct xhci_segment *seg = td->start_seg;
781 union xhci_trb *trb = td->first_trb;
784 trb_to_noop(trb, TRB_TR_NOOP);
786 /* flip cycle if asked to */
787 if (flip_cycle && trb != td->first_trb && trb != td->last_trb)
788 trb->generic.field[3] ^= cpu_to_le32(TRB_CYCLE);
790 if (trb == td->last_trb)
793 next_trb(xhci, ep_ring, &seg, &trb);
798 * Must be called with xhci->lock held in interrupt context,
799 * releases and re-acquires xhci->lock
801 static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci,
802 struct xhci_td *cur_td, int status)
804 struct urb *urb = cur_td->urb;
805 struct urb_priv *urb_priv = urb->hcpriv;
806 struct usb_hcd *hcd = bus_to_hcd(urb->dev->bus);
808 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) {
809 xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs--;
810 if (xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs == 0) {
811 if (xhci->quirks & XHCI_AMD_PLL_FIX)
812 usb_amd_quirk_pll_enable();
815 xhci_urb_free_priv(urb_priv);
816 usb_hcd_unlink_urb_from_ep(hcd, urb);
817 trace_xhci_urb_giveback(urb);
818 usb_hcd_giveback_urb(hcd, urb, status);
821 static void xhci_unmap_td_bounce_buffer(struct xhci_hcd *xhci,
822 struct xhci_ring *ring, struct xhci_td *td)
824 struct device *dev = xhci_to_hcd(xhci)->self.controller;
825 struct xhci_segment *seg = td->bounce_seg;
826 struct urb *urb = td->urb;
829 if (!ring || !seg || !urb)
832 if (usb_urb_dir_out(urb)) {
833 dma_unmap_single(dev, seg->bounce_dma, ring->bounce_buf_len,
838 dma_unmap_single(dev, seg->bounce_dma, ring->bounce_buf_len,
840 /* for in tranfers we need to copy the data from bounce to sg */
842 len = sg_pcopy_from_buffer(urb->sg, urb->num_sgs, seg->bounce_buf,
843 seg->bounce_len, seg->bounce_offs);
844 if (len != seg->bounce_len)
845 xhci_warn(xhci, "WARN Wrong bounce buffer read length: %zu != %d\n",
846 len, seg->bounce_len);
848 memcpy(urb->transfer_buffer + seg->bounce_offs, seg->bounce_buf,
852 seg->bounce_offs = 0;
855 static int xhci_td_cleanup(struct xhci_hcd *xhci, struct xhci_td *td,
856 struct xhci_ring *ep_ring, int status)
858 struct urb *urb = NULL;
860 /* Clean up the endpoint's TD list */
863 /* if a bounce buffer was used to align this td then unmap it */
864 xhci_unmap_td_bounce_buffer(xhci, ep_ring, td);
866 /* Do one last check of the actual transfer length.
867 * If the host controller said we transferred more data than the buffer
868 * length, urb->actual_length will be a very big number (since it's
869 * unsigned). Play it safe and say we didn't transfer anything.
871 if (urb->actual_length > urb->transfer_buffer_length) {
872 xhci_warn(xhci, "URB req %u and actual %u transfer length mismatch\n",
873 urb->transfer_buffer_length, urb->actual_length);
874 urb->actual_length = 0;
877 /* TD might be removed from td_list if we are giving back a cancelled URB */
878 if (!list_empty(&td->td_list))
879 list_del_init(&td->td_list);
880 /* Giving back a cancelled URB, or if a slated TD completed anyway */
881 if (!list_empty(&td->cancelled_td_list))
882 list_del_init(&td->cancelled_td_list);
885 /* Giveback the urb when all the tds are completed */
886 if (last_td_in_urb(td)) {
887 if ((urb->actual_length != urb->transfer_buffer_length &&
888 (urb->transfer_flags & URB_SHORT_NOT_OK)) ||
889 (status != 0 && !usb_endpoint_xfer_isoc(&urb->ep->desc)))
890 xhci_dbg(xhci, "Giveback URB %p, len = %d, expected = %d, status = %d\n",
891 urb, urb->actual_length,
892 urb->transfer_buffer_length, status);
894 /* set isoc urb status to 0 just as EHCI, UHCI, and OHCI */
895 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS)
897 xhci_giveback_urb_in_irq(xhci, td, status);
904 /* Complete the cancelled URBs we unlinked from td_list. */
905 static void xhci_giveback_invalidated_tds(struct xhci_virt_ep *ep)
907 struct xhci_ring *ring;
908 struct xhci_td *td, *tmp_td;
910 list_for_each_entry_safe(td, tmp_td, &ep->cancelled_td_list,
913 ring = xhci_urb_to_transfer_ring(ep->xhci, td->urb);
915 if (td->cancel_status == TD_CLEARED) {
916 xhci_dbg(ep->xhci, "%s: Giveback cancelled URB %p TD\n",
918 xhci_td_cleanup(ep->xhci, td, ring, td->status);
920 xhci_dbg(ep->xhci, "%s: Keep cancelled URB %p TD as cancel_status is %d\n",
921 __func__, td->urb, td->cancel_status);
923 if (ep->xhci->xhc_state & XHCI_STATE_DYING)
928 static int xhci_reset_halted_ep(struct xhci_hcd *xhci, unsigned int slot_id,
929 unsigned int ep_index, enum xhci_ep_reset_type reset_type)
931 struct xhci_command *command;
934 command = xhci_alloc_command(xhci, false, GFP_ATOMIC);
940 xhci_dbg(xhci, "%s-reset ep %u, slot %u\n",
941 (reset_type == EP_HARD_RESET) ? "Hard" : "Soft",
944 ret = xhci_queue_reset_ep(xhci, command, slot_id, ep_index, reset_type);
947 xhci_err(xhci, "ERROR queuing reset endpoint for slot %d ep_index %d, %d\n",
948 slot_id, ep_index, ret);
952 static int xhci_handle_halted_endpoint(struct xhci_hcd *xhci,
953 struct xhci_virt_ep *ep,
955 enum xhci_ep_reset_type reset_type)
957 unsigned int slot_id = ep->vdev->slot_id;
961 * Avoid resetting endpoint if link is inactive. Can cause host hang.
962 * Device will be reset soon to recover the link so don't do anything
964 if (ep->vdev->flags & VDEV_PORT_ERROR)
967 /* add td to cancelled list and let reset ep handler take care of it */
968 if (reset_type == EP_HARD_RESET) {
969 ep->ep_state |= EP_HARD_CLEAR_TOGGLE;
970 if (td && list_empty(&td->cancelled_td_list)) {
971 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
972 td->cancel_status = TD_HALTED;
976 if (ep->ep_state & EP_HALTED) {
977 xhci_dbg(xhci, "Reset ep command for ep_index %d already pending\n",
982 err = xhci_reset_halted_ep(xhci, slot_id, ep->ep_index, reset_type);
986 ep->ep_state |= EP_HALTED;
988 xhci_ring_cmd_db(xhci);
994 * Fix up the ep ring first, so HW stops executing cancelled TDs.
995 * We have the xHCI lock, so nothing can modify this list until we drop it.
996 * We're also in the event handler, so we can't get re-interrupted if another
997 * Stop Endpoint command completes.
999 * only call this when ring is not in a running state
1002 static int xhci_invalidate_cancelled_tds(struct xhci_virt_ep *ep)
1004 struct xhci_hcd *xhci;
1005 struct xhci_td *td = NULL;
1006 struct xhci_td *tmp_td = NULL;
1007 struct xhci_td *cached_td = NULL;
1008 struct xhci_ring *ring;
1010 unsigned int slot_id = ep->vdev->slot_id;
1015 list_for_each_entry_safe(td, tmp_td, &ep->cancelled_td_list, cancelled_td_list) {
1016 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1017 "Removing canceled TD starting at 0x%llx (dma) in stream %u URB %p",
1018 (unsigned long long)xhci_trb_virt_to_dma(
1019 td->start_seg, td->first_trb),
1020 td->urb->stream_id, td->urb);
1021 list_del_init(&td->td_list);
1022 ring = xhci_urb_to_transfer_ring(xhci, td->urb);
1024 xhci_warn(xhci, "WARN Cancelled URB %p has invalid stream ID %u.\n",
1025 td->urb, td->urb->stream_id);
1029 * If a ring stopped on the TD we need to cancel then we have to
1030 * move the xHC endpoint ring dequeue pointer past this TD.
1031 * Rings halted due to STALL may show hw_deq is past the stalled
1032 * TD, but still require a set TR Deq command to flush xHC cache.
1034 hw_deq = xhci_get_hw_deq(xhci, ep->vdev, ep->ep_index,
1035 td->urb->stream_id);
1038 if (td->cancel_status == TD_HALTED ||
1039 trb_in_td(xhci, td->start_seg, td->first_trb, td->last_trb, hw_deq, false)) {
1040 switch (td->cancel_status) {
1041 case TD_CLEARED: /* TD is already no-op */
1042 case TD_CLEARING_CACHE: /* set TR deq command already queued */
1044 case TD_DIRTY: /* TD is cached, clear it */
1046 td->cancel_status = TD_CLEARING_CACHE;
1048 /* FIXME stream case, several stopped rings */
1050 "Move dq past stream %u URB %p instead of stream %u URB %p\n",
1051 td->urb->stream_id, td->urb,
1052 cached_td->urb->stream_id, cached_td->urb);
1057 td_to_noop(xhci, ring, td, false);
1058 td->cancel_status = TD_CLEARED;
1062 /* If there's no need to move the dequeue pointer then we're done */
1066 err = xhci_move_dequeue_past_td(xhci, slot_id, ep->ep_index,
1067 cached_td->urb->stream_id,
1070 /* Failed to move past cached td, just set cached TDs to no-op */
1071 list_for_each_entry_safe(td, tmp_td, &ep->cancelled_td_list, cancelled_td_list) {
1072 if (td->cancel_status != TD_CLEARING_CACHE)
1074 xhci_dbg(xhci, "Failed to clear cancelled cached URB %p, mark clear anyway\n",
1076 td_to_noop(xhci, ring, td, false);
1077 td->cancel_status = TD_CLEARED;
1084 * Returns the TD the endpoint ring halted on.
1085 * Only call for non-running rings without streams.
1087 static struct xhci_td *find_halted_td(struct xhci_virt_ep *ep)
1092 if (!list_empty(&ep->ring->td_list)) { /* Not streams compatible */
1093 hw_deq = xhci_get_hw_deq(ep->xhci, ep->vdev, ep->ep_index, 0);
1095 td = list_first_entry(&ep->ring->td_list, struct xhci_td, td_list);
1096 if (trb_in_td(ep->xhci, td->start_seg, td->first_trb,
1097 td->last_trb, hw_deq, false))
1104 * When we get a command completion for a Stop Endpoint Command, we need to
1105 * unlink any cancelled TDs from the ring. There are two ways to do that:
1107 * 1. If the HW was in the middle of processing the TD that needs to be
1108 * cancelled, then we must move the ring's dequeue pointer past the last TRB
1109 * in the TD with a Set Dequeue Pointer Command.
1110 * 2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain
1111 * bit cleared) so that the HW will skip over them.
1113 static void xhci_handle_cmd_stop_ep(struct xhci_hcd *xhci, int slot_id,
1114 union xhci_trb *trb, u32 comp_code)
1116 unsigned int ep_index;
1117 struct xhci_virt_ep *ep;
1118 struct xhci_ep_ctx *ep_ctx;
1119 struct xhci_td *td = NULL;
1120 enum xhci_ep_reset_type reset_type;
1121 struct xhci_command *command;
1124 if (unlikely(TRB_TO_SUSPEND_PORT(le32_to_cpu(trb->generic.field[3])))) {
1125 if (!xhci->devs[slot_id])
1126 xhci_warn(xhci, "Stop endpoint command completion for disabled slot %u\n",
1131 ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3]));
1132 ep = xhci_get_virt_ep(xhci, slot_id, ep_index);
1136 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep_index);
1138 trace_xhci_handle_cmd_stop_ep(ep_ctx);
1140 if (comp_code == COMP_CONTEXT_STATE_ERROR) {
1142 * If stop endpoint command raced with a halting endpoint we need to
1143 * reset the host side endpoint first.
1144 * If the TD we halted on isn't cancelled the TD should be given back
1145 * with a proper error code, and the ring dequeue moved past the TD.
1146 * If streams case we can't find hw_deq, or the TD we halted on so do a
1149 * Proper error code is unknown here, it would be -EPIPE if device side
1150 * of enadpoit halted (aka STALL), and -EPROTO if not (transaction error)
1151 * We use -EPROTO, if device is stalled it should return a stall error on
1152 * next transfer, which then will return -EPIPE, and device side stall is
1153 * noted and cleared by class driver.
1155 switch (GET_EP_CTX_STATE(ep_ctx)) {
1156 case EP_STATE_HALTED:
1157 xhci_dbg(xhci, "Stop ep completion raced with stall, reset ep\n");
1158 if (ep->ep_state & EP_HAS_STREAMS) {
1159 reset_type = EP_SOFT_RESET;
1161 reset_type = EP_HARD_RESET;
1162 td = find_halted_td(ep);
1164 td->status = -EPROTO;
1166 /* reset ep, reset handler cleans up cancelled tds */
1167 err = xhci_handle_halted_endpoint(xhci, ep, td, reset_type);
1170 ep->ep_state &= ~EP_STOP_CMD_PENDING;
1172 case EP_STATE_RUNNING:
1173 /* Race, HW handled stop ep cmd before ep was running */
1174 xhci_dbg(xhci, "Stop ep completion ctx error, ep is running\n");
1176 command = xhci_alloc_command(xhci, false, GFP_ATOMIC);
1178 ep->ep_state &= ~EP_STOP_CMD_PENDING;
1181 xhci_queue_stop_endpoint(xhci, command, slot_id, ep_index, 0);
1182 xhci_ring_cmd_db(xhci);
1190 /* will queue a set TR deq if stopped on a cancelled, uncleared TD */
1191 xhci_invalidate_cancelled_tds(ep);
1192 ep->ep_state &= ~EP_STOP_CMD_PENDING;
1194 /* Otherwise ring the doorbell(s) to restart queued transfers */
1195 xhci_giveback_invalidated_tds(ep);
1196 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
1199 static void xhci_kill_ring_urbs(struct xhci_hcd *xhci, struct xhci_ring *ring)
1201 struct xhci_td *cur_td;
1202 struct xhci_td *tmp;
1204 list_for_each_entry_safe(cur_td, tmp, &ring->td_list, td_list) {
1205 list_del_init(&cur_td->td_list);
1207 if (!list_empty(&cur_td->cancelled_td_list))
1208 list_del_init(&cur_td->cancelled_td_list);
1210 xhci_unmap_td_bounce_buffer(xhci, ring, cur_td);
1212 inc_td_cnt(cur_td->urb);
1213 if (last_td_in_urb(cur_td))
1214 xhci_giveback_urb_in_irq(xhci, cur_td, -ESHUTDOWN);
1218 static void xhci_kill_endpoint_urbs(struct xhci_hcd *xhci,
1219 int slot_id, int ep_index)
1221 struct xhci_td *cur_td;
1222 struct xhci_td *tmp;
1223 struct xhci_virt_ep *ep;
1224 struct xhci_ring *ring;
1226 ep = xhci_get_virt_ep(xhci, slot_id, ep_index);
1230 if ((ep->ep_state & EP_HAS_STREAMS) ||
1231 (ep->ep_state & EP_GETTING_NO_STREAMS)) {
1234 for (stream_id = 1; stream_id < ep->stream_info->num_streams;
1236 ring = ep->stream_info->stream_rings[stream_id];
1240 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1241 "Killing URBs for slot ID %u, ep index %u, stream %u",
1242 slot_id, ep_index, stream_id);
1243 xhci_kill_ring_urbs(xhci, ring);
1249 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1250 "Killing URBs for slot ID %u, ep index %u",
1252 xhci_kill_ring_urbs(xhci, ring);
1255 list_for_each_entry_safe(cur_td, tmp, &ep->cancelled_td_list,
1256 cancelled_td_list) {
1257 list_del_init(&cur_td->cancelled_td_list);
1258 inc_td_cnt(cur_td->urb);
1260 if (last_td_in_urb(cur_td))
1261 xhci_giveback_urb_in_irq(xhci, cur_td, -ESHUTDOWN);
1266 * host controller died, register read returns 0xffffffff
1267 * Complete pending commands, mark them ABORTED.
1268 * URBs need to be given back as usb core might be waiting with device locks
1269 * held for the URBs to finish during device disconnect, blocking host remove.
1271 * Call with xhci->lock held.
1272 * lock is relased and re-acquired while giving back urb.
1274 void xhci_hc_died(struct xhci_hcd *xhci)
1278 if (xhci->xhc_state & XHCI_STATE_DYING)
1281 xhci_err(xhci, "xHCI host controller not responding, assume dead\n");
1282 xhci->xhc_state |= XHCI_STATE_DYING;
1284 xhci_cleanup_command_queue(xhci);
1286 /* return any pending urbs, remove may be waiting for them */
1287 for (i = 0; i <= HCS_MAX_SLOTS(xhci->hcs_params1); i++) {
1290 for (j = 0; j < 31; j++)
1291 xhci_kill_endpoint_urbs(xhci, i, j);
1294 /* inform usb core hc died if PCI remove isn't already handling it */
1295 if (!(xhci->xhc_state & XHCI_STATE_REMOVING))
1296 usb_hc_died(xhci_to_hcd(xhci));
1299 static void update_ring_for_set_deq_completion(struct xhci_hcd *xhci,
1300 struct xhci_virt_device *dev,
1301 struct xhci_ring *ep_ring,
1302 unsigned int ep_index)
1304 union xhci_trb *dequeue_temp;
1306 dequeue_temp = ep_ring->dequeue;
1308 /* If we get two back-to-back stalls, and the first stalled transfer
1309 * ends just before a link TRB, the dequeue pointer will be left on
1310 * the link TRB by the code in the while loop. So we have to update
1311 * the dequeue pointer one segment further, or we'll jump off
1312 * the segment into la-la-land.
1314 if (trb_is_link(ep_ring->dequeue)) {
1315 ep_ring->deq_seg = ep_ring->deq_seg->next;
1316 ep_ring->dequeue = ep_ring->deq_seg->trbs;
1319 while (ep_ring->dequeue != dev->eps[ep_index].queued_deq_ptr) {
1320 /* We have more usable TRBs */
1322 if (trb_is_link(ep_ring->dequeue)) {
1323 if (ep_ring->dequeue ==
1324 dev->eps[ep_index].queued_deq_ptr)
1326 ep_ring->deq_seg = ep_ring->deq_seg->next;
1327 ep_ring->dequeue = ep_ring->deq_seg->trbs;
1329 if (ep_ring->dequeue == dequeue_temp) {
1330 xhci_dbg(xhci, "Unable to find new dequeue pointer\n");
1337 * When we get a completion for a Set Transfer Ring Dequeue Pointer command,
1338 * we need to clear the set deq pending flag in the endpoint ring state, so that
1339 * the TD queueing code can ring the doorbell again. We also need to ring the
1340 * endpoint doorbell to restart the ring, but only if there aren't more
1341 * cancellations pending.
1343 static void xhci_handle_cmd_set_deq(struct xhci_hcd *xhci, int slot_id,
1344 union xhci_trb *trb, u32 cmd_comp_code)
1346 unsigned int ep_index;
1347 unsigned int stream_id;
1348 struct xhci_ring *ep_ring;
1349 struct xhci_virt_ep *ep;
1350 struct xhci_ep_ctx *ep_ctx;
1351 struct xhci_slot_ctx *slot_ctx;
1352 struct xhci_td *td, *tmp_td;
1354 ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3]));
1355 stream_id = TRB_TO_STREAM_ID(le32_to_cpu(trb->generic.field[2]));
1356 ep = xhci_get_virt_ep(xhci, slot_id, ep_index);
1360 ep_ring = xhci_virt_ep_to_ring(xhci, ep, stream_id);
1362 xhci_warn(xhci, "WARN Set TR deq ptr command for freed stream ID %u\n",
1364 /* XXX: Harmless??? */
1368 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep_index);
1369 slot_ctx = xhci_get_slot_ctx(xhci, ep->vdev->out_ctx);
1370 trace_xhci_handle_cmd_set_deq(slot_ctx);
1371 trace_xhci_handle_cmd_set_deq_ep(ep_ctx);
1373 if (cmd_comp_code != COMP_SUCCESS) {
1374 unsigned int ep_state;
1375 unsigned int slot_state;
1377 switch (cmd_comp_code) {
1378 case COMP_TRB_ERROR:
1379 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because of stream ID configuration\n");
1381 case COMP_CONTEXT_STATE_ERROR:
1382 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.\n");
1383 ep_state = GET_EP_CTX_STATE(ep_ctx);
1384 slot_state = le32_to_cpu(slot_ctx->dev_state);
1385 slot_state = GET_SLOT_STATE(slot_state);
1386 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1387 "Slot state = %u, EP state = %u",
1388 slot_state, ep_state);
1390 case COMP_SLOT_NOT_ENABLED_ERROR:
1391 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because slot %u was not enabled.\n",
1395 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown completion code of %u.\n",
1399 /* OK what do we do now? The endpoint state is hosed, and we
1400 * should never get to this point if the synchronization between
1401 * queueing, and endpoint state are correct. This might happen
1402 * if the device gets disconnected after we've finished
1403 * cancelling URBs, which might not be an error...
1407 /* 4.6.10 deq ptr is written to the stream ctx for streams */
1408 if (ep->ep_state & EP_HAS_STREAMS) {
1409 struct xhci_stream_ctx *ctx =
1410 &ep->stream_info->stream_ctx_array[stream_id];
1411 deq = le64_to_cpu(ctx->stream_ring) & SCTX_DEQ_MASK;
1413 deq = le64_to_cpu(ep_ctx->deq) & ~EP_CTX_CYCLE_MASK;
1415 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1416 "Successful Set TR Deq Ptr cmd, deq = @%08llx", deq);
1417 if (xhci_trb_virt_to_dma(ep->queued_deq_seg,
1418 ep->queued_deq_ptr) == deq) {
1419 /* Update the ring's dequeue segment and dequeue pointer
1420 * to reflect the new position.
1422 update_ring_for_set_deq_completion(xhci, ep->vdev,
1425 xhci_warn(xhci, "Mismatch between completed Set TR Deq Ptr command & xHCI internal state.\n");
1426 xhci_warn(xhci, "ep deq seg = %p, deq ptr = %p\n",
1427 ep->queued_deq_seg, ep->queued_deq_ptr);
1430 /* HW cached TDs cleared from cache, give them back */
1431 list_for_each_entry_safe(td, tmp_td, &ep->cancelled_td_list,
1432 cancelled_td_list) {
1433 ep_ring = xhci_urb_to_transfer_ring(ep->xhci, td->urb);
1434 if (td->cancel_status == TD_CLEARING_CACHE) {
1435 td->cancel_status = TD_CLEARED;
1436 xhci_dbg(ep->xhci, "%s: Giveback cancelled URB %p TD\n",
1438 xhci_td_cleanup(ep->xhci, td, ep_ring, td->status);
1440 xhci_dbg(ep->xhci, "%s: Keep cancelled URB %p TD as cancel_status is %d\n",
1441 __func__, td->urb, td->cancel_status);
1445 ep->ep_state &= ~SET_DEQ_PENDING;
1446 ep->queued_deq_seg = NULL;
1447 ep->queued_deq_ptr = NULL;
1448 /* Restart any rings with pending URBs */
1449 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
1452 static void xhci_handle_cmd_reset_ep(struct xhci_hcd *xhci, int slot_id,
1453 union xhci_trb *trb, u32 cmd_comp_code)
1455 struct xhci_virt_ep *ep;
1456 struct xhci_ep_ctx *ep_ctx;
1457 unsigned int ep_index;
1459 ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3]));
1460 ep = xhci_get_virt_ep(xhci, slot_id, ep_index);
1464 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep_index);
1465 trace_xhci_handle_cmd_reset_ep(ep_ctx);
1467 /* This command will only fail if the endpoint wasn't halted,
1468 * but we don't care.
1470 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
1471 "Ignoring reset ep completion code of %u", cmd_comp_code);
1473 /* Cleanup cancelled TDs as ep is stopped. May queue a Set TR Deq cmd */
1474 xhci_invalidate_cancelled_tds(ep);
1476 /* Clear our internal halted state */
1477 ep->ep_state &= ~EP_HALTED;
1479 xhci_giveback_invalidated_tds(ep);
1481 /* if this was a soft reset, then restart */
1482 if ((le32_to_cpu(trb->generic.field[3])) & TRB_TSP)
1483 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
1486 static void xhci_handle_cmd_enable_slot(struct xhci_hcd *xhci, int slot_id,
1487 struct xhci_command *command, u32 cmd_comp_code)
1489 if (cmd_comp_code == COMP_SUCCESS)
1490 command->slot_id = slot_id;
1492 command->slot_id = 0;
1495 static void xhci_handle_cmd_disable_slot(struct xhci_hcd *xhci, int slot_id)
1497 struct xhci_virt_device *virt_dev;
1498 struct xhci_slot_ctx *slot_ctx;
1500 virt_dev = xhci->devs[slot_id];
1504 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
1505 trace_xhci_handle_cmd_disable_slot(slot_ctx);
1507 if (xhci->quirks & XHCI_EP_LIMIT_QUIRK)
1508 /* Delete default control endpoint resources */
1509 xhci_free_device_endpoint_resources(xhci, virt_dev, true);
1512 static void xhci_handle_cmd_config_ep(struct xhci_hcd *xhci, int slot_id,
1515 struct xhci_virt_device *virt_dev;
1516 struct xhci_input_control_ctx *ctrl_ctx;
1517 struct xhci_ep_ctx *ep_ctx;
1518 unsigned int ep_index;
1522 * Configure endpoint commands can come from the USB core configuration
1523 * or alt setting changes, or when streams were being configured.
1526 virt_dev = xhci->devs[slot_id];
1529 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx);
1531 xhci_warn(xhci, "Could not get input context, bad type.\n");
1535 add_flags = le32_to_cpu(ctrl_ctx->add_flags);
1537 /* Input ctx add_flags are the endpoint index plus one */
1538 ep_index = xhci_last_valid_endpoint(add_flags) - 1;
1540 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->out_ctx, ep_index);
1541 trace_xhci_handle_cmd_config_ep(ep_ctx);
1546 static void xhci_handle_cmd_addr_dev(struct xhci_hcd *xhci, int slot_id)
1548 struct xhci_virt_device *vdev;
1549 struct xhci_slot_ctx *slot_ctx;
1551 vdev = xhci->devs[slot_id];
1554 slot_ctx = xhci_get_slot_ctx(xhci, vdev->out_ctx);
1555 trace_xhci_handle_cmd_addr_dev(slot_ctx);
1558 static void xhci_handle_cmd_reset_dev(struct xhci_hcd *xhci, int slot_id)
1560 struct xhci_virt_device *vdev;
1561 struct xhci_slot_ctx *slot_ctx;
1563 vdev = xhci->devs[slot_id];
1565 xhci_warn(xhci, "Reset device command completion for disabled slot %u\n",
1569 slot_ctx = xhci_get_slot_ctx(xhci, vdev->out_ctx);
1570 trace_xhci_handle_cmd_reset_dev(slot_ctx);
1572 xhci_dbg(xhci, "Completed reset device command.\n");
1575 static void xhci_handle_cmd_nec_get_fw(struct xhci_hcd *xhci,
1576 struct xhci_event_cmd *event)
1578 if (!(xhci->quirks & XHCI_NEC_HOST)) {
1579 xhci_warn(xhci, "WARN NEC_GET_FW command on non-NEC host\n");
1582 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1583 "NEC firmware version %2x.%02x",
1584 NEC_FW_MAJOR(le32_to_cpu(event->status)),
1585 NEC_FW_MINOR(le32_to_cpu(event->status)));
1588 static void xhci_complete_del_and_free_cmd(struct xhci_command *cmd, u32 status)
1590 list_del(&cmd->cmd_list);
1592 if (cmd->completion) {
1593 cmd->status = status;
1594 complete(cmd->completion);
1600 void xhci_cleanup_command_queue(struct xhci_hcd *xhci)
1602 struct xhci_command *cur_cmd, *tmp_cmd;
1603 xhci->current_cmd = NULL;
1604 list_for_each_entry_safe(cur_cmd, tmp_cmd, &xhci->cmd_list, cmd_list)
1605 xhci_complete_del_and_free_cmd(cur_cmd, COMP_COMMAND_ABORTED);
1608 void xhci_handle_command_timeout(struct work_struct *work)
1610 struct xhci_hcd *xhci;
1611 unsigned long flags;
1612 char str[XHCI_MSG_MAX];
1617 xhci = container_of(to_delayed_work(work), struct xhci_hcd, cmd_timer);
1619 spin_lock_irqsave(&xhci->lock, flags);
1622 * If timeout work is pending, or current_cmd is NULL, it means we
1623 * raced with command completion. Command is handled so just return.
1625 if (!xhci->current_cmd || delayed_work_pending(&xhci->cmd_timer)) {
1626 spin_unlock_irqrestore(&xhci->lock, flags);
1630 cmd_field3 = le32_to_cpu(xhci->current_cmd->command_trb->generic.field[3]);
1631 usbsts = readl(&xhci->op_regs->status);
1632 xhci_dbg(xhci, "Command timeout, USBSTS:%s\n", xhci_decode_usbsts(str, usbsts));
1634 /* Bail out and tear down xhci if a stop endpoint command failed */
1635 if (TRB_FIELD_TO_TYPE(cmd_field3) == TRB_STOP_RING) {
1636 struct xhci_virt_ep *ep;
1638 xhci_warn(xhci, "xHCI host not responding to stop endpoint command\n");
1640 ep = xhci_get_virt_ep(xhci, TRB_TO_SLOT_ID(cmd_field3),
1641 TRB_TO_EP_INDEX(cmd_field3));
1643 ep->ep_state &= ~EP_STOP_CMD_PENDING;
1647 goto time_out_completed;
1650 /* mark this command to be cancelled */
1651 xhci->current_cmd->status = COMP_COMMAND_ABORTED;
1653 /* Make sure command ring is running before aborting it */
1654 hw_ring_state = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
1655 if (hw_ring_state == ~(u64)0) {
1657 goto time_out_completed;
1660 if ((xhci->cmd_ring_state & CMD_RING_STATE_RUNNING) &&
1661 (hw_ring_state & CMD_RING_RUNNING)) {
1662 /* Prevent new doorbell, and start command abort */
1663 xhci->cmd_ring_state = CMD_RING_STATE_ABORTED;
1664 xhci_dbg(xhci, "Command timeout\n");
1665 xhci_abort_cmd_ring(xhci, flags);
1666 goto time_out_completed;
1669 /* host removed. Bail out */
1670 if (xhci->xhc_state & XHCI_STATE_REMOVING) {
1671 xhci_dbg(xhci, "host removed, ring start fail?\n");
1672 xhci_cleanup_command_queue(xhci);
1674 goto time_out_completed;
1677 /* command timeout on stopped ring, ring can't be aborted */
1678 xhci_dbg(xhci, "Command timeout on stopped ring\n");
1679 xhci_handle_stopped_cmd_ring(xhci, xhci->current_cmd);
1682 spin_unlock_irqrestore(&xhci->lock, flags);
1686 static void handle_cmd_completion(struct xhci_hcd *xhci,
1687 struct xhci_event_cmd *event)
1689 unsigned int slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->flags));
1691 dma_addr_t cmd_dequeue_dma;
1693 union xhci_trb *cmd_trb;
1694 struct xhci_command *cmd;
1697 if (slot_id >= MAX_HC_SLOTS) {
1698 xhci_warn(xhci, "Invalid slot_id %u\n", slot_id);
1702 cmd_dma = le64_to_cpu(event->cmd_trb);
1703 cmd_trb = xhci->cmd_ring->dequeue;
1705 trace_xhci_handle_command(xhci->cmd_ring, &cmd_trb->generic);
1707 cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
1710 * Check whether the completion event is for our internal kept
1713 if (!cmd_dequeue_dma || cmd_dma != (u64)cmd_dequeue_dma) {
1715 "ERROR mismatched command completion event\n");
1719 cmd = list_first_entry(&xhci->cmd_list, struct xhci_command, cmd_list);
1721 cancel_delayed_work(&xhci->cmd_timer);
1723 cmd_comp_code = GET_COMP_CODE(le32_to_cpu(event->status));
1725 /* If CMD ring stopped we own the trbs between enqueue and dequeue */
1726 if (cmd_comp_code == COMP_COMMAND_RING_STOPPED) {
1727 complete_all(&xhci->cmd_ring_stop_completion);
1731 if (cmd->command_trb != xhci->cmd_ring->dequeue) {
1733 "Command completion event does not match command\n");
1738 * Host aborted the command ring, check if the current command was
1739 * supposed to be aborted, otherwise continue normally.
1740 * The command ring is stopped now, but the xHC will issue a Command
1741 * Ring Stopped event which will cause us to restart it.
1743 if (cmd_comp_code == COMP_COMMAND_ABORTED) {
1744 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
1745 if (cmd->status == COMP_COMMAND_ABORTED) {
1746 if (xhci->current_cmd == cmd)
1747 xhci->current_cmd = NULL;
1752 cmd_type = TRB_FIELD_TO_TYPE(le32_to_cpu(cmd_trb->generic.field[3]));
1754 case TRB_ENABLE_SLOT:
1755 xhci_handle_cmd_enable_slot(xhci, slot_id, cmd, cmd_comp_code);
1757 case TRB_DISABLE_SLOT:
1758 xhci_handle_cmd_disable_slot(xhci, slot_id);
1761 if (!cmd->completion)
1762 xhci_handle_cmd_config_ep(xhci, slot_id, cmd_comp_code);
1764 case TRB_EVAL_CONTEXT:
1767 xhci_handle_cmd_addr_dev(xhci, slot_id);
1770 WARN_ON(slot_id != TRB_TO_SLOT_ID(
1771 le32_to_cpu(cmd_trb->generic.field[3])));
1772 if (!cmd->completion)
1773 xhci_handle_cmd_stop_ep(xhci, slot_id, cmd_trb,
1777 WARN_ON(slot_id != TRB_TO_SLOT_ID(
1778 le32_to_cpu(cmd_trb->generic.field[3])));
1779 xhci_handle_cmd_set_deq(xhci, slot_id, cmd_trb, cmd_comp_code);
1782 /* Is this an aborted command turned to NO-OP? */
1783 if (cmd->status == COMP_COMMAND_RING_STOPPED)
1784 cmd_comp_code = COMP_COMMAND_RING_STOPPED;
1787 WARN_ON(slot_id != TRB_TO_SLOT_ID(
1788 le32_to_cpu(cmd_trb->generic.field[3])));
1789 xhci_handle_cmd_reset_ep(xhci, slot_id, cmd_trb, cmd_comp_code);
1792 /* SLOT_ID field in reset device cmd completion event TRB is 0.
1793 * Use the SLOT_ID from the command TRB instead (xhci 4.6.11)
1795 slot_id = TRB_TO_SLOT_ID(
1796 le32_to_cpu(cmd_trb->generic.field[3]));
1797 xhci_handle_cmd_reset_dev(xhci, slot_id);
1799 case TRB_NEC_GET_FW:
1800 xhci_handle_cmd_nec_get_fw(xhci, event);
1803 /* Skip over unknown commands on the event ring */
1804 xhci_info(xhci, "INFO unknown command type %d\n", cmd_type);
1808 /* restart timer if this wasn't the last command */
1809 if (!list_is_singular(&xhci->cmd_list)) {
1810 xhci->current_cmd = list_first_entry(&cmd->cmd_list,
1811 struct xhci_command, cmd_list);
1812 xhci_mod_cmd_timer(xhci, XHCI_CMD_DEFAULT_TIMEOUT);
1813 } else if (xhci->current_cmd == cmd) {
1814 xhci->current_cmd = NULL;
1818 xhci_complete_del_and_free_cmd(cmd, cmd_comp_code);
1820 inc_deq(xhci, xhci->cmd_ring);
1823 static void handle_vendor_event(struct xhci_hcd *xhci,
1824 union xhci_trb *event, u32 trb_type)
1826 xhci_dbg(xhci, "Vendor specific event TRB type = %u\n", trb_type);
1827 if (trb_type == TRB_NEC_CMD_COMP && (xhci->quirks & XHCI_NEC_HOST))
1828 handle_cmd_completion(xhci, &event->event_cmd);
1831 static void handle_device_notification(struct xhci_hcd *xhci,
1832 union xhci_trb *event)
1835 struct usb_device *udev;
1837 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->generic.field[3]));
1838 if (!xhci->devs[slot_id]) {
1839 xhci_warn(xhci, "Device Notification event for "
1840 "unused slot %u\n", slot_id);
1844 xhci_dbg(xhci, "Device Wake Notification event for slot ID %u\n",
1846 udev = xhci->devs[slot_id]->udev;
1847 if (udev && udev->parent)
1848 usb_wakeup_notification(udev->parent, udev->portnum);
1852 * Quirk hanlder for errata seen on Cavium ThunderX2 processor XHCI
1854 * As per ThunderX2errata-129 USB 2 device may come up as USB 1
1855 * If a connection to a USB 1 device is followed by another connection
1856 * to a USB 2 device.
1858 * Reset the PHY after the USB device is disconnected if device speed
1859 * is less than HCD_USB3.
1860 * Retry the reset sequence max of 4 times checking the PLL lock status.
1863 static void xhci_cavium_reset_phy_quirk(struct xhci_hcd *xhci)
1865 struct usb_hcd *hcd = xhci_to_hcd(xhci);
1867 u32 retry_count = 4;
1870 /* Assert PHY reset */
1871 writel(0x6F, hcd->regs + 0x1048);
1873 /* De-assert the PHY reset */
1874 writel(0x7F, hcd->regs + 0x1048);
1876 pll_lock_check = readl(hcd->regs + 0x1070);
1877 } while (!(pll_lock_check & 0x1) && --retry_count);
1880 static void handle_port_status(struct xhci_hcd *xhci,
1881 struct xhci_interrupter *ir,
1882 union xhci_trb *event)
1884 struct usb_hcd *hcd;
1886 u32 portsc, cmd_reg;
1889 unsigned int hcd_portnum;
1890 struct xhci_bus_state *bus_state;
1891 bool bogus_port_status = false;
1892 struct xhci_port *port;
1894 /* Port status change events always have a successful completion code */
1895 if (GET_COMP_CODE(le32_to_cpu(event->generic.field[2])) != COMP_SUCCESS)
1897 "WARN: xHC returned failed port status event\n");
1899 port_id = GET_PORT_ID(le32_to_cpu(event->generic.field[0]));
1900 max_ports = HCS_MAX_PORTS(xhci->hcs_params1);
1902 if ((port_id <= 0) || (port_id > max_ports)) {
1903 xhci_warn(xhci, "Port change event with invalid port ID %d\n",
1905 inc_deq(xhci, ir->event_ring);
1909 port = &xhci->hw_ports[port_id - 1];
1910 if (!port || !port->rhub || port->hcd_portnum == DUPLICATE_ENTRY) {
1911 xhci_warn(xhci, "Port change event, no port for port ID %u\n",
1913 bogus_port_status = true;
1917 /* We might get interrupts after shared_hcd is removed */
1918 if (port->rhub == &xhci->usb3_rhub && xhci->shared_hcd == NULL) {
1919 xhci_dbg(xhci, "ignore port event for removed USB3 hcd\n");
1920 bogus_port_status = true;
1924 hcd = port->rhub->hcd;
1925 bus_state = &port->rhub->bus_state;
1926 hcd_portnum = port->hcd_portnum;
1927 portsc = readl(port->addr);
1929 xhci_dbg(xhci, "Port change event, %d-%d, id %d, portsc: 0x%x\n",
1930 hcd->self.busnum, hcd_portnum + 1, port_id, portsc);
1932 trace_xhci_handle_port_status(hcd_portnum, portsc);
1934 if (hcd->state == HC_STATE_SUSPENDED) {
1935 xhci_dbg(xhci, "resume root hub\n");
1936 usb_hcd_resume_root_hub(hcd);
1939 if (hcd->speed >= HCD_USB3 &&
1940 (portsc & PORT_PLS_MASK) == XDEV_INACTIVE) {
1941 slot_id = xhci_find_slot_id_by_port(hcd, xhci, hcd_portnum + 1);
1942 if (slot_id && xhci->devs[slot_id])
1943 xhci->devs[slot_id]->flags |= VDEV_PORT_ERROR;
1946 if ((portsc & PORT_PLC) && (portsc & PORT_PLS_MASK) == XDEV_RESUME) {
1947 xhci_dbg(xhci, "port resume event for port %d\n", port_id);
1949 cmd_reg = readl(&xhci->op_regs->command);
1950 if (!(cmd_reg & CMD_RUN)) {
1951 xhci_warn(xhci, "xHC is not running.\n");
1955 if (DEV_SUPERSPEED_ANY(portsc)) {
1956 xhci_dbg(xhci, "remote wake SS port %d\n", port_id);
1957 /* Set a flag to say the port signaled remote wakeup,
1958 * so we can tell the difference between the end of
1959 * device and host initiated resume.
1961 bus_state->port_remote_wakeup |= 1 << hcd_portnum;
1962 xhci_test_and_clear_bit(xhci, port, PORT_PLC);
1963 usb_hcd_start_port_resume(&hcd->self, hcd_portnum);
1964 xhci_set_link_state(xhci, port, XDEV_U0);
1965 /* Need to wait until the next link state change
1966 * indicates the device is actually in U0.
1968 bogus_port_status = true;
1970 } else if (!test_bit(hcd_portnum, &bus_state->resuming_ports)) {
1971 xhci_dbg(xhci, "resume HS port %d\n", port_id);
1972 port->resume_timestamp = jiffies +
1973 msecs_to_jiffies(USB_RESUME_TIMEOUT);
1974 set_bit(hcd_portnum, &bus_state->resuming_ports);
1975 /* Do the rest in GetPortStatus after resume time delay.
1976 * Avoid polling roothub status before that so that a
1977 * usb device auto-resume latency around ~40ms.
1979 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
1980 mod_timer(&hcd->rh_timer,
1981 port->resume_timestamp);
1982 usb_hcd_start_port_resume(&hcd->self, hcd_portnum);
1983 bogus_port_status = true;
1987 if ((portsc & PORT_PLC) &&
1988 DEV_SUPERSPEED_ANY(portsc) &&
1989 ((portsc & PORT_PLS_MASK) == XDEV_U0 ||
1990 (portsc & PORT_PLS_MASK) == XDEV_U1 ||
1991 (portsc & PORT_PLS_MASK) == XDEV_U2)) {
1992 xhci_dbg(xhci, "resume SS port %d finished\n", port_id);
1993 complete(&port->u3exit_done);
1994 /* We've just brought the device into U0/1/2 through either the
1995 * Resume state after a device remote wakeup, or through the
1996 * U3Exit state after a host-initiated resume. If it's a device
1997 * initiated remote wake, don't pass up the link state change,
1998 * so the roothub behavior is consistent with external
1999 * USB 3.0 hub behavior.
2001 slot_id = xhci_find_slot_id_by_port(hcd, xhci, hcd_portnum + 1);
2002 if (slot_id && xhci->devs[slot_id])
2003 xhci_ring_device(xhci, slot_id);
2004 if (bus_state->port_remote_wakeup & (1 << hcd_portnum)) {
2005 xhci_test_and_clear_bit(xhci, port, PORT_PLC);
2006 usb_wakeup_notification(hcd->self.root_hub,
2008 bogus_port_status = true;
2014 * Check to see if xhci-hub.c is waiting on RExit to U0 transition (or
2015 * RExit to a disconnect state). If so, let the driver know it's
2016 * out of the RExit state.
2018 if (hcd->speed < HCD_USB3 && port->rexit_active) {
2019 complete(&port->rexit_done);
2020 port->rexit_active = false;
2021 bogus_port_status = true;
2025 if (hcd->speed < HCD_USB3) {
2026 xhci_test_and_clear_bit(xhci, port, PORT_PLC);
2027 if ((xhci->quirks & XHCI_RESET_PLL_ON_DISCONNECT) &&
2028 (portsc & PORT_CSC) && !(portsc & PORT_CONNECT))
2029 xhci_cavium_reset_phy_quirk(xhci);
2033 /* Update event ring dequeue pointer before dropping the lock */
2034 inc_deq(xhci, ir->event_ring);
2036 /* Don't make the USB core poll the roothub if we got a bad port status
2037 * change event. Besides, at that point we can't tell which roothub
2038 * (USB 2.0 or USB 3.0) to kick.
2040 if (bogus_port_status)
2044 * xHCI port-status-change events occur when the "or" of all the
2045 * status-change bits in the portsc register changes from 0 to 1.
2046 * New status changes won't cause an event if any other change
2047 * bits are still set. When an event occurs, switch over to
2048 * polling to avoid losing status changes.
2050 xhci_dbg(xhci, "%s: starting usb%d port polling.\n",
2051 __func__, hcd->self.busnum);
2052 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2053 spin_unlock(&xhci->lock);
2054 /* Pass this up to the core */
2055 usb_hcd_poll_rh_status(hcd);
2056 spin_lock(&xhci->lock);
2060 * This TD is defined by the TRBs starting at start_trb in start_seg and ending
2061 * at end_trb, which may be in another segment. If the suspect DMA address is a
2062 * TRB in this TD, this function returns that TRB's segment. Otherwise it
2065 struct xhci_segment *trb_in_td(struct xhci_hcd *xhci,
2066 struct xhci_segment *start_seg,
2067 union xhci_trb *start_trb,
2068 union xhci_trb *end_trb,
2069 dma_addr_t suspect_dma,
2072 dma_addr_t start_dma;
2073 dma_addr_t end_seg_dma;
2074 dma_addr_t end_trb_dma;
2075 struct xhci_segment *cur_seg;
2077 start_dma = xhci_trb_virt_to_dma(start_seg, start_trb);
2078 cur_seg = start_seg;
2083 /* We may get an event for a Link TRB in the middle of a TD */
2084 end_seg_dma = xhci_trb_virt_to_dma(cur_seg,
2085 &cur_seg->trbs[TRBS_PER_SEGMENT - 1]);
2086 /* If the end TRB isn't in this segment, this is set to 0 */
2087 end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb);
2091 "Looking for event-dma %016llx trb-start %016llx trb-end %016llx seg-start %016llx seg-end %016llx\n",
2092 (unsigned long long)suspect_dma,
2093 (unsigned long long)start_dma,
2094 (unsigned long long)end_trb_dma,
2095 (unsigned long long)cur_seg->dma,
2096 (unsigned long long)end_seg_dma);
2098 if (end_trb_dma > 0) {
2099 /* The end TRB is in this segment, so suspect should be here */
2100 if (start_dma <= end_trb_dma) {
2101 if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma)
2104 /* Case for one segment with
2105 * a TD wrapped around to the top
2107 if ((suspect_dma >= start_dma &&
2108 suspect_dma <= end_seg_dma) ||
2109 (suspect_dma >= cur_seg->dma &&
2110 suspect_dma <= end_trb_dma))
2115 /* Might still be somewhere in this segment */
2116 if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma)
2119 cur_seg = cur_seg->next;
2120 start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]);
2121 } while (cur_seg != start_seg);
2126 static void xhci_clear_hub_tt_buffer(struct xhci_hcd *xhci, struct xhci_td *td,
2127 struct xhci_virt_ep *ep)
2130 * As part of low/full-speed endpoint-halt processing
2131 * we must clear the TT buffer (USB 2.0 specification 11.17.5).
2133 if (td->urb->dev->tt && !usb_pipeint(td->urb->pipe) &&
2134 (td->urb->dev->tt->hub != xhci_to_hcd(xhci)->self.root_hub) &&
2135 !(ep->ep_state & EP_CLEARING_TT)) {
2136 ep->ep_state |= EP_CLEARING_TT;
2137 td->urb->ep->hcpriv = td->urb->dev;
2138 if (usb_hub_clear_tt_buffer(td->urb))
2139 ep->ep_state &= ~EP_CLEARING_TT;
2143 /* Check if an error has halted the endpoint ring. The class driver will
2144 * cleanup the halt for a non-default control endpoint if we indicate a stall.
2145 * However, a babble and other errors also halt the endpoint ring, and the class
2146 * driver won't clear the halt in that case, so we need to issue a Set Transfer
2147 * Ring Dequeue Pointer command manually.
2149 static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci,
2150 struct xhci_ep_ctx *ep_ctx,
2151 unsigned int trb_comp_code)
2153 /* TRB completion codes that may require a manual halt cleanup */
2154 if (trb_comp_code == COMP_USB_TRANSACTION_ERROR ||
2155 trb_comp_code == COMP_BABBLE_DETECTED_ERROR ||
2156 trb_comp_code == COMP_SPLIT_TRANSACTION_ERROR)
2157 /* The 0.95 spec says a babbling control endpoint
2158 * is not halted. The 0.96 spec says it is. Some HW
2159 * claims to be 0.95 compliant, but it halts the control
2160 * endpoint anyway. Check if a babble halted the
2163 if (GET_EP_CTX_STATE(ep_ctx) == EP_STATE_HALTED)
2169 int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code)
2171 if (trb_comp_code >= 224 && trb_comp_code <= 255) {
2172 /* Vendor defined "informational" completion code,
2173 * treat as not-an-error.
2175 xhci_dbg(xhci, "Vendor defined info completion code %u\n",
2177 xhci_dbg(xhci, "Treating code as success.\n");
2183 static int finish_td(struct xhci_hcd *xhci, struct xhci_virt_ep *ep,
2184 struct xhci_ring *ep_ring, struct xhci_td *td,
2187 struct xhci_ep_ctx *ep_ctx;
2189 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep->ep_index);
2191 switch (trb_comp_code) {
2192 case COMP_STOPPED_LENGTH_INVALID:
2193 case COMP_STOPPED_SHORT_PACKET:
2196 * The "Stop Endpoint" completion will take care of any
2197 * stopped TDs. A stopped TD may be restarted, so don't update
2198 * the ring dequeue pointer or take this TD off any lists yet.
2201 case COMP_USB_TRANSACTION_ERROR:
2202 case COMP_BABBLE_DETECTED_ERROR:
2203 case COMP_SPLIT_TRANSACTION_ERROR:
2205 * If endpoint context state is not halted we might be
2206 * racing with a reset endpoint command issued by a unsuccessful
2207 * stop endpoint completion (context error). In that case the
2208 * td should be on the cancelled list, and EP_HALTED flag set.
2210 * Or then it's not halted due to the 0.95 spec stating that a
2211 * babbling control endpoint should not halt. The 0.96 spec
2212 * again says it should. Some HW claims to be 0.95 compliant,
2213 * but it halts the control endpoint anyway.
2215 if (GET_EP_CTX_STATE(ep_ctx) != EP_STATE_HALTED) {
2217 * If EP_HALTED is set and TD is on the cancelled list
2218 * the TD and dequeue pointer will be handled by reset
2219 * ep command completion
2221 if ((ep->ep_state & EP_HALTED) &&
2222 !list_empty(&td->cancelled_td_list)) {
2223 xhci_dbg(xhci, "Already resolving halted ep for 0x%llx\n",
2224 (unsigned long long)xhci_trb_virt_to_dma(
2225 td->start_seg, td->first_trb));
2228 /* endpoint not halted, don't reset it */
2231 /* Almost same procedure as for STALL_ERROR below */
2232 xhci_clear_hub_tt_buffer(xhci, td, ep);
2233 xhci_handle_halted_endpoint(xhci, ep, td, EP_HARD_RESET);
2235 case COMP_STALL_ERROR:
2237 * xhci internal endpoint state will go to a "halt" state for
2238 * any stall, including default control pipe protocol stall.
2239 * To clear the host side halt we need to issue a reset endpoint
2240 * command, followed by a set dequeue command to move past the
2242 * Class drivers clear the device side halt from a functional
2243 * stall later. Hub TT buffer should only be cleared for FS/LS
2244 * devices behind HS hubs for functional stalls.
2246 if (ep->ep_index != 0)
2247 xhci_clear_hub_tt_buffer(xhci, td, ep);
2249 xhci_handle_halted_endpoint(xhci, ep, td, EP_HARD_RESET);
2251 return 0; /* xhci_handle_halted_endpoint marked td cancelled */
2256 /* Update ring dequeue pointer */
2257 ep_ring->dequeue = td->last_trb;
2258 ep_ring->deq_seg = td->last_trb_seg;
2259 inc_deq(xhci, ep_ring);
2261 return xhci_td_cleanup(xhci, td, ep_ring, td->status);
2264 /* sum trb lengths from ring dequeue up to stop_trb, _excluding_ stop_trb */
2265 static int sum_trb_lengths(struct xhci_hcd *xhci, struct xhci_ring *ring,
2266 union xhci_trb *stop_trb)
2269 union xhci_trb *trb = ring->dequeue;
2270 struct xhci_segment *seg = ring->deq_seg;
2272 for (sum = 0; trb != stop_trb; next_trb(xhci, ring, &seg, &trb)) {
2273 if (!trb_is_noop(trb) && !trb_is_link(trb))
2274 sum += TRB_LEN(le32_to_cpu(trb->generic.field[2]));
2280 * Process control tds, update urb status and actual_length.
2282 static int process_ctrl_td(struct xhci_hcd *xhci, struct xhci_virt_ep *ep,
2283 struct xhci_ring *ep_ring, struct xhci_td *td,
2284 union xhci_trb *ep_trb, struct xhci_transfer_event *event)
2286 struct xhci_ep_ctx *ep_ctx;
2288 u32 remaining, requested;
2291 trb_type = TRB_FIELD_TO_TYPE(le32_to_cpu(ep_trb->generic.field[3]));
2292 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep->ep_index);
2293 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
2294 requested = td->urb->transfer_buffer_length;
2295 remaining = EVENT_TRB_LEN(le32_to_cpu(event->transfer_len));
2297 switch (trb_comp_code) {
2299 if (trb_type != TRB_STATUS) {
2300 xhci_warn(xhci, "WARN: Success on ctrl %s TRB without IOC set?\n",
2301 (trb_type == TRB_DATA) ? "data" : "setup");
2302 td->status = -ESHUTDOWN;
2307 case COMP_SHORT_PACKET:
2310 case COMP_STOPPED_SHORT_PACKET:
2311 if (trb_type == TRB_DATA || trb_type == TRB_NORMAL)
2312 td->urb->actual_length = remaining;
2314 xhci_warn(xhci, "WARN: Stopped Short Packet on ctrl setup or status TRB\n");
2319 td->urb->actual_length = 0;
2323 td->urb->actual_length = requested - remaining;
2326 td->urb->actual_length = requested;
2329 xhci_warn(xhci, "WARN: unexpected TRB Type %d\n",
2333 case COMP_STOPPED_LENGTH_INVALID:
2336 if (!xhci_requires_manual_halt_cleanup(xhci,
2337 ep_ctx, trb_comp_code))
2339 xhci_dbg(xhci, "TRB error %u, halted endpoint index = %u\n",
2340 trb_comp_code, ep->ep_index);
2342 case COMP_STALL_ERROR:
2343 /* Did we transfer part of the data (middle) phase? */
2344 if (trb_type == TRB_DATA || trb_type == TRB_NORMAL)
2345 td->urb->actual_length = requested - remaining;
2346 else if (!td->urb_length_set)
2347 td->urb->actual_length = 0;
2351 /* stopped at setup stage, no data transferred */
2352 if (trb_type == TRB_SETUP)
2356 * if on data stage then update the actual_length of the URB and flag it
2357 * as set, so it won't be overwritten in the event for the last TRB.
2359 if (trb_type == TRB_DATA ||
2360 trb_type == TRB_NORMAL) {
2361 td->urb_length_set = true;
2362 td->urb->actual_length = requested - remaining;
2363 xhci_dbg(xhci, "Waiting for status stage event\n");
2367 /* at status stage */
2368 if (!td->urb_length_set)
2369 td->urb->actual_length = requested;
2372 return finish_td(xhci, ep, ep_ring, td, trb_comp_code);
2376 * Process isochronous tds, update urb packet status and actual_length.
2378 static int process_isoc_td(struct xhci_hcd *xhci, struct xhci_virt_ep *ep,
2379 struct xhci_ring *ep_ring, struct xhci_td *td,
2380 union xhci_trb *ep_trb, struct xhci_transfer_event *event)
2382 struct urb_priv *urb_priv;
2384 struct usb_iso_packet_descriptor *frame;
2386 bool sum_trbs_for_length = false;
2387 u32 remaining, requested, ep_trb_len;
2388 int short_framestatus;
2390 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
2391 urb_priv = td->urb->hcpriv;
2392 idx = urb_priv->num_tds_done;
2393 frame = &td->urb->iso_frame_desc[idx];
2394 requested = frame->length;
2395 remaining = EVENT_TRB_LEN(le32_to_cpu(event->transfer_len));
2396 ep_trb_len = TRB_LEN(le32_to_cpu(ep_trb->generic.field[2]));
2397 short_framestatus = td->urb->transfer_flags & URB_SHORT_NOT_OK ?
2400 /* handle completion code */
2401 switch (trb_comp_code) {
2404 frame->status = short_framestatus;
2405 if (xhci->quirks & XHCI_TRUST_TX_LENGTH)
2406 sum_trbs_for_length = true;
2411 case COMP_SHORT_PACKET:
2412 frame->status = short_framestatus;
2413 sum_trbs_for_length = true;
2415 case COMP_BANDWIDTH_OVERRUN_ERROR:
2416 frame->status = -ECOMM;
2418 case COMP_ISOCH_BUFFER_OVERRUN:
2419 case COMP_BABBLE_DETECTED_ERROR:
2420 frame->status = -EOVERFLOW;
2422 case COMP_INCOMPATIBLE_DEVICE_ERROR:
2423 case COMP_STALL_ERROR:
2424 frame->status = -EPROTO;
2426 case COMP_USB_TRANSACTION_ERROR:
2427 frame->status = -EPROTO;
2428 if (ep_trb != td->last_trb)
2432 sum_trbs_for_length = true;
2434 case COMP_STOPPED_SHORT_PACKET:
2435 /* field normally containing residue now contains tranferred */
2436 frame->status = short_framestatus;
2437 requested = remaining;
2439 case COMP_STOPPED_LENGTH_INVALID:
2444 sum_trbs_for_length = true;
2449 if (sum_trbs_for_length)
2450 frame->actual_length = sum_trb_lengths(xhci, ep->ring, ep_trb) +
2451 ep_trb_len - remaining;
2453 frame->actual_length = requested;
2455 td->urb->actual_length += frame->actual_length;
2457 return finish_td(xhci, ep, ep_ring, td, trb_comp_code);
2460 static int skip_isoc_td(struct xhci_hcd *xhci, struct xhci_td *td,
2461 struct xhci_virt_ep *ep, int status)
2463 struct urb_priv *urb_priv;
2464 struct usb_iso_packet_descriptor *frame;
2467 urb_priv = td->urb->hcpriv;
2468 idx = urb_priv->num_tds_done;
2469 frame = &td->urb->iso_frame_desc[idx];
2471 /* The transfer is partly done. */
2472 frame->status = -EXDEV;
2474 /* calc actual length */
2475 frame->actual_length = 0;
2477 /* Update ring dequeue pointer */
2478 ep->ring->dequeue = td->last_trb;
2479 ep->ring->deq_seg = td->last_trb_seg;
2480 inc_deq(xhci, ep->ring);
2482 return xhci_td_cleanup(xhci, td, ep->ring, status);
2486 * Process bulk and interrupt tds, update urb status and actual_length.
2488 static int process_bulk_intr_td(struct xhci_hcd *xhci, struct xhci_virt_ep *ep,
2489 struct xhci_ring *ep_ring, struct xhci_td *td,
2490 union xhci_trb *ep_trb, struct xhci_transfer_event *event)
2492 struct xhci_slot_ctx *slot_ctx;
2494 u32 remaining, requested, ep_trb_len;
2496 slot_ctx = xhci_get_slot_ctx(xhci, ep->vdev->out_ctx);
2497 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
2498 remaining = EVENT_TRB_LEN(le32_to_cpu(event->transfer_len));
2499 ep_trb_len = TRB_LEN(le32_to_cpu(ep_trb->generic.field[2]));
2500 requested = td->urb->transfer_buffer_length;
2502 switch (trb_comp_code) {
2505 /* handle success with untransferred data as short packet */
2506 if (ep_trb != td->last_trb || remaining) {
2507 xhci_warn(xhci, "WARN Successful completion on short TX\n");
2508 xhci_dbg(xhci, "ep %#x - asked for %d bytes, %d bytes untransferred\n",
2509 td->urb->ep->desc.bEndpointAddress,
2510 requested, remaining);
2514 case COMP_SHORT_PACKET:
2515 xhci_dbg(xhci, "ep %#x - asked for %d bytes, %d bytes untransferred\n",
2516 td->urb->ep->desc.bEndpointAddress,
2517 requested, remaining);
2520 case COMP_STOPPED_SHORT_PACKET:
2521 td->urb->actual_length = remaining;
2523 case COMP_STOPPED_LENGTH_INVALID:
2524 /* stopped on ep trb with invalid length, exclude it */
2528 case COMP_USB_TRANSACTION_ERROR:
2529 if (xhci->quirks & XHCI_NO_SOFT_RETRY ||
2530 (ep->err_count++ > MAX_SOFT_RETRY) ||
2531 le32_to_cpu(slot_ctx->tt_info) & TT_SLOT)
2536 xhci_handle_halted_endpoint(xhci, ep, td, EP_SOFT_RESET);
2543 if (ep_trb == td->last_trb)
2544 td->urb->actual_length = requested - remaining;
2546 td->urb->actual_length =
2547 sum_trb_lengths(xhci, ep_ring, ep_trb) +
2548 ep_trb_len - remaining;
2550 if (remaining > requested) {
2551 xhci_warn(xhci, "bad transfer trb length %d in event trb\n",
2553 td->urb->actual_length = 0;
2556 return finish_td(xhci, ep, ep_ring, td, trb_comp_code);
2560 * If this function returns an error condition, it means it got a Transfer
2561 * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address.
2562 * At this point, the host controller is probably hosed and should be reset.
2564 static int handle_tx_event(struct xhci_hcd *xhci,
2565 struct xhci_interrupter *ir,
2566 struct xhci_transfer_event *event)
2568 struct xhci_virt_ep *ep;
2569 struct xhci_ring *ep_ring;
2570 unsigned int slot_id;
2572 struct xhci_td *td = NULL;
2573 dma_addr_t ep_trb_dma;
2574 struct xhci_segment *ep_seg;
2575 union xhci_trb *ep_trb;
2576 int status = -EINPROGRESS;
2577 struct xhci_ep_ctx *ep_ctx;
2580 bool handling_skipped_tds = false;
2582 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->flags));
2583 ep_index = TRB_TO_EP_ID(le32_to_cpu(event->flags)) - 1;
2584 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
2585 ep_trb_dma = le64_to_cpu(event->buffer);
2587 ep = xhci_get_virt_ep(xhci, slot_id, ep_index);
2589 xhci_err(xhci, "ERROR Invalid Transfer event\n");
2593 ep_ring = xhci_dma_to_transfer_ring(ep, ep_trb_dma);
2594 ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep_index);
2596 if (GET_EP_CTX_STATE(ep_ctx) == EP_STATE_DISABLED) {
2598 "ERROR Transfer event for disabled endpoint slot %u ep %u\n",
2603 /* Some transfer events don't always point to a trb, see xhci 4.17.4 */
2605 switch (trb_comp_code) {
2606 case COMP_STALL_ERROR:
2607 case COMP_USB_TRANSACTION_ERROR:
2608 case COMP_INVALID_STREAM_TYPE_ERROR:
2609 case COMP_INVALID_STREAM_ID_ERROR:
2610 xhci_dbg(xhci, "Stream transaction error ep %u no id\n",
2612 if (ep->err_count++ > MAX_SOFT_RETRY)
2613 xhci_handle_halted_endpoint(xhci, ep, NULL,
2616 xhci_handle_halted_endpoint(xhci, ep, NULL,
2619 case COMP_RING_UNDERRUN:
2620 case COMP_RING_OVERRUN:
2621 case COMP_STOPPED_LENGTH_INVALID:
2624 xhci_err(xhci, "ERROR Transfer event for unknown stream ring slot %u ep %u\n",
2630 /* Count current td numbers if ep->skip is set */
2632 td_num += list_count_nodes(&ep_ring->td_list);
2634 /* Look for common error cases */
2635 switch (trb_comp_code) {
2636 /* Skip codes that require special handling depending on
2640 if (EVENT_TRB_LEN(le32_to_cpu(event->transfer_len)) == 0)
2642 if (xhci->quirks & XHCI_TRUST_TX_LENGTH ||
2643 ep_ring->last_td_was_short)
2644 trb_comp_code = COMP_SHORT_PACKET;
2646 xhci_warn_ratelimited(xhci,
2647 "WARN Successful completion on short TX for slot %u ep %u: needs XHCI_TRUST_TX_LENGTH quirk?\n",
2650 case COMP_SHORT_PACKET:
2652 /* Completion codes for endpoint stopped state */
2654 xhci_dbg(xhci, "Stopped on Transfer TRB for slot %u ep %u\n",
2657 case COMP_STOPPED_LENGTH_INVALID:
2659 "Stopped on No-op or Link TRB for slot %u ep %u\n",
2662 case COMP_STOPPED_SHORT_PACKET:
2664 "Stopped with short packet transfer detected for slot %u ep %u\n",
2667 /* Completion codes for endpoint halted state */
2668 case COMP_STALL_ERROR:
2669 xhci_dbg(xhci, "Stalled endpoint for slot %u ep %u\n", slot_id,
2673 case COMP_SPLIT_TRANSACTION_ERROR:
2674 xhci_dbg(xhci, "Split transaction error for slot %u ep %u\n",
2678 case COMP_USB_TRANSACTION_ERROR:
2679 xhci_dbg(xhci, "Transfer error for slot %u ep %u on endpoint\n",
2683 case COMP_BABBLE_DETECTED_ERROR:
2684 xhci_dbg(xhci, "Babble error for slot %u ep %u on endpoint\n",
2686 status = -EOVERFLOW;
2688 /* Completion codes for endpoint error state */
2689 case COMP_TRB_ERROR:
2691 "WARN: TRB error for slot %u ep %u on endpoint\n",
2695 /* completion codes not indicating endpoint state change */
2696 case COMP_DATA_BUFFER_ERROR:
2698 "WARN: HC couldn't access mem fast enough for slot %u ep %u\n",
2702 case COMP_BANDWIDTH_OVERRUN_ERROR:
2704 "WARN: bandwidth overrun event for slot %u ep %u on endpoint\n",
2707 case COMP_ISOCH_BUFFER_OVERRUN:
2709 "WARN: buffer overrun event for slot %u ep %u on endpoint",
2712 case COMP_RING_UNDERRUN:
2714 * When the Isoch ring is empty, the xHC will generate
2715 * a Ring Overrun Event for IN Isoch endpoint or Ring
2716 * Underrun Event for OUT Isoch endpoint.
2718 xhci_dbg(xhci, "underrun event on endpoint\n");
2719 if (!list_empty(&ep_ring->td_list))
2720 xhci_dbg(xhci, "Underrun Event for slot %d ep %d "
2721 "still with TDs queued?\n",
2722 TRB_TO_SLOT_ID(le32_to_cpu(event->flags)),
2725 case COMP_RING_OVERRUN:
2726 xhci_dbg(xhci, "overrun event on endpoint\n");
2727 if (!list_empty(&ep_ring->td_list))
2728 xhci_dbg(xhci, "Overrun Event for slot %d ep %d "
2729 "still with TDs queued?\n",
2730 TRB_TO_SLOT_ID(le32_to_cpu(event->flags)),
2733 case COMP_MISSED_SERVICE_ERROR:
2735 * When encounter missed service error, one or more isoc tds
2736 * may be missed by xHC.
2737 * Set skip flag of the ep_ring; Complete the missed tds as
2738 * short transfer when process the ep_ring next time.
2742 "Miss service interval error for slot %u ep %u, set skip flag\n",
2745 case COMP_NO_PING_RESPONSE_ERROR:
2748 "No Ping response error for slot %u ep %u, Skip one Isoc TD\n",
2752 case COMP_INCOMPATIBLE_DEVICE_ERROR:
2753 /* needs disable slot command to recover */
2755 "WARN: detect an incompatible device for slot %u ep %u",
2760 if (xhci_is_vendor_info_code(xhci, trb_comp_code)) {
2765 "ERROR Unknown event condition %u for slot %u ep %u , HC probably busted\n",
2766 trb_comp_code, slot_id, ep_index);
2771 /* This TRB should be in the TD at the head of this ring's
2774 if (list_empty(&ep_ring->td_list)) {
2776 * Don't print wanings if it's due to a stopped endpoint
2777 * generating an extra completion event if the device
2778 * was suspended. Or, a event for the last TRB of a
2779 * short TD we already got a short event for.
2780 * The short TD is already removed from the TD list.
2783 if (!(trb_comp_code == COMP_STOPPED ||
2784 trb_comp_code == COMP_STOPPED_LENGTH_INVALID ||
2785 ep_ring->last_td_was_short)) {
2786 xhci_warn(xhci, "WARN Event TRB for slot %d ep %d with no TDs queued?\n",
2787 TRB_TO_SLOT_ID(le32_to_cpu(event->flags)),
2792 xhci_dbg(xhci, "td_list is empty while skip flag set. Clear skip flag for slot %u ep %u.\n",
2795 if (trb_comp_code == COMP_STALL_ERROR ||
2796 xhci_requires_manual_halt_cleanup(xhci, ep_ctx,
2798 xhci_handle_halted_endpoint(xhci, ep, NULL,
2804 /* We've skipped all the TDs on the ep ring when ep->skip set */
2805 if (ep->skip && td_num == 0) {
2807 xhci_dbg(xhci, "All tds on the ep_ring skipped. Clear skip flag for slot %u ep %u.\n",
2812 td = list_first_entry(&ep_ring->td_list, struct xhci_td,
2817 /* Is this a TRB in the currently executing TD? */
2818 ep_seg = trb_in_td(xhci, ep_ring->deq_seg, ep_ring->dequeue,
2819 td->last_trb, ep_trb_dma, false);
2822 * Skip the Force Stopped Event. The event_trb(event_dma) of FSE
2823 * is not in the current TD pointed by ep_ring->dequeue because
2824 * that the hardware dequeue pointer still at the previous TRB
2825 * of the current TD. The previous TRB maybe a Link TD or the
2826 * last TRB of the previous TD. The command completion handle
2827 * will take care the rest.
2829 if (!ep_seg && (trb_comp_code == COMP_STOPPED ||
2830 trb_comp_code == COMP_STOPPED_LENGTH_INVALID)) {
2836 !usb_endpoint_xfer_isoc(&td->urb->ep->desc)) {
2837 /* Some host controllers give a spurious
2838 * successful event after a short transfer.
2841 if ((xhci->quirks & XHCI_SPURIOUS_SUCCESS) &&
2842 ep_ring->last_td_was_short) {
2843 ep_ring->last_td_was_short = false;
2846 /* HC is busted, give up! */
2848 "ERROR Transfer event TRB DMA ptr not "
2849 "part of current TD ep_index %d "
2850 "comp_code %u\n", ep_index,
2852 trb_in_td(xhci, ep_ring->deq_seg,
2853 ep_ring->dequeue, td->last_trb,
2858 skip_isoc_td(xhci, td, ep, status);
2861 if (trb_comp_code == COMP_SHORT_PACKET)
2862 ep_ring->last_td_was_short = true;
2864 ep_ring->last_td_was_short = false;
2868 "Found td. Clear skip flag for slot %u ep %u.\n",
2873 ep_trb = &ep_seg->trbs[(ep_trb_dma - ep_seg->dma) /
2876 trace_xhci_handle_transfer(ep_ring,
2877 (struct xhci_generic_trb *) ep_trb);
2880 * No-op TRB could trigger interrupts in a case where
2881 * a URB was killed and a STALL_ERROR happens right
2882 * after the endpoint ring stopped. Reset the halted
2883 * endpoint. Otherwise, the endpoint remains stalled
2887 if (trb_is_noop(ep_trb)) {
2888 if (trb_comp_code == COMP_STALL_ERROR ||
2889 xhci_requires_manual_halt_cleanup(xhci, ep_ctx,
2891 xhci_handle_halted_endpoint(xhci, ep, td,
2896 td->status = status;
2898 /* update the urb's actual_length and give back to the core */
2899 if (usb_endpoint_xfer_control(&td->urb->ep->desc))
2900 process_ctrl_td(xhci, ep, ep_ring, td, ep_trb, event);
2901 else if (usb_endpoint_xfer_isoc(&td->urb->ep->desc))
2902 process_isoc_td(xhci, ep, ep_ring, td, ep_trb, event);
2904 process_bulk_intr_td(xhci, ep, ep_ring, td, ep_trb, event);
2906 handling_skipped_tds = ep->skip &&
2907 trb_comp_code != COMP_MISSED_SERVICE_ERROR &&
2908 trb_comp_code != COMP_NO_PING_RESPONSE_ERROR;
2911 * Do not update event ring dequeue pointer if we're in a loop
2912 * processing missed tds.
2914 if (!handling_skipped_tds)
2915 inc_deq(xhci, ir->event_ring);
2918 * If ep->skip is set, it means there are missed tds on the
2919 * endpoint ring need to take care of.
2920 * Process them as short transfer until reach the td pointed by
2923 } while (handling_skipped_tds);
2928 xhci_err(xhci, "@%016llx %08x %08x %08x %08x\n",
2929 (unsigned long long) xhci_trb_virt_to_dma(
2930 ir->event_ring->deq_seg,
2931 ir->event_ring->dequeue),
2932 lower_32_bits(le64_to_cpu(event->buffer)),
2933 upper_32_bits(le64_to_cpu(event->buffer)),
2934 le32_to_cpu(event->transfer_len),
2935 le32_to_cpu(event->flags));
2940 * This function handles all OS-owned events on the event ring. It may drop
2941 * xhci->lock between event processing (e.g. to pass up port status changes).
2942 * Returns >0 for "possibly more events to process" (caller should call again),
2943 * otherwise 0 if done. In future, <0 returns should indicate error code.
2945 static int xhci_handle_event(struct xhci_hcd *xhci, struct xhci_interrupter *ir)
2947 union xhci_trb *event;
2948 int update_ptrs = 1;
2952 /* Event ring hasn't been allocated yet. */
2953 if (!ir || !ir->event_ring || !ir->event_ring->dequeue) {
2954 xhci_err(xhci, "ERROR interrupter not ready\n");
2958 event = ir->event_ring->dequeue;
2959 /* Does the HC or OS own the TRB? */
2960 if ((le32_to_cpu(event->event_cmd.flags) & TRB_CYCLE) !=
2961 ir->event_ring->cycle_state)
2964 trace_xhci_handle_event(ir->event_ring, &event->generic);
2967 * Barrier between reading the TRB_CYCLE (valid) flag above and any
2968 * speculative reads of the event's flags/data below.
2971 trb_type = TRB_FIELD_TO_TYPE(le32_to_cpu(event->event_cmd.flags));
2972 /* FIXME: Handle more event types. */
2975 case TRB_COMPLETION:
2976 handle_cmd_completion(xhci, &event->event_cmd);
2978 case TRB_PORT_STATUS:
2979 handle_port_status(xhci, ir, event);
2983 ret = handle_tx_event(xhci, ir, &event->trans_event);
2988 handle_device_notification(xhci, event);
2991 if (trb_type >= TRB_VENDOR_DEFINED_LOW)
2992 handle_vendor_event(xhci, event, trb_type);
2994 xhci_warn(xhci, "ERROR unknown event type %d\n", trb_type);
2996 /* Any of the above functions may drop and re-acquire the lock, so check
2997 * to make sure a watchdog timer didn't mark the host as non-responsive.
2999 if (xhci->xhc_state & XHCI_STATE_DYING) {
3000 xhci_dbg(xhci, "xHCI host dying, returning from "
3001 "event handler.\n");
3006 /* Update SW event ring dequeue pointer */
3007 inc_deq(xhci, ir->event_ring);
3009 /* Are there more items on the event ring? Caller will call us again to
3016 * Update Event Ring Dequeue Pointer:
3017 * - When all events have finished
3018 * - To avoid "Event Ring Full Error" condition
3020 static void xhci_update_erst_dequeue(struct xhci_hcd *xhci,
3021 struct xhci_interrupter *ir,
3022 union xhci_trb *event_ring_deq)
3027 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue);
3028 /* If necessary, update the HW's version of the event ring deq ptr. */
3029 if (event_ring_deq != ir->event_ring->dequeue) {
3030 deq = xhci_trb_virt_to_dma(ir->event_ring->deq_seg,
3031 ir->event_ring->dequeue);
3033 xhci_warn(xhci, "WARN something wrong with SW event ring dequeue ptr\n");
3035 * Per 4.9.4, Software writes to the ERDP register shall
3036 * always advance the Event Ring Dequeue Pointer value.
3038 if ((temp_64 & (u64) ~ERST_PTR_MASK) ==
3039 ((u64) deq & (u64) ~ERST_PTR_MASK))
3042 /* Update HC event ring dequeue pointer */
3043 temp_64 &= ERST_PTR_MASK;
3044 temp_64 |= ((u64) deq & (u64) ~ERST_PTR_MASK);
3047 /* Clear the event handler busy flag (RW1C) */
3048 temp_64 |= ERST_EHB;
3049 xhci_write_64(xhci, temp_64, &ir->ir_set->erst_dequeue);
3053 * xHCI spec says we can get an interrupt, and if the HC has an error condition,
3054 * we might get bad data out of the event ring. Section 4.10.2.7 has a list of
3055 * indicators of an event TRB error, but we check the status *first* to be safe.
3057 irqreturn_t xhci_irq(struct usb_hcd *hcd)
3059 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3060 union xhci_trb *event_ring_deq;
3061 struct xhci_interrupter *ir;
3062 irqreturn_t ret = IRQ_NONE;
3067 spin_lock(&xhci->lock);
3068 /* Check if the xHC generated the interrupt, or the irq is shared */
3069 status = readl(&xhci->op_regs->status);
3070 if (status == ~(u32)0) {
3076 if (!(status & STS_EINT))
3079 if (status & STS_HCE) {
3080 xhci_warn(xhci, "WARNING: Host Controller Error\n");
3084 if (status & STS_FATAL) {
3085 xhci_warn(xhci, "WARNING: Host System Error\n");
3092 * Clear the op reg interrupt status first,
3093 * so we can receive interrupts from other MSI-X interrupters.
3094 * Write 1 to clear the interrupt status.
3097 writel(status, &xhci->op_regs->status);
3099 /* This is the handler of the primary interrupter */
3100 ir = xhci->interrupter;
3101 if (!hcd->msi_enabled) {
3103 irq_pending = readl(&ir->ir_set->irq_pending);
3104 irq_pending |= IMAN_IP;
3105 writel(irq_pending, &ir->ir_set->irq_pending);
3108 if (xhci->xhc_state & XHCI_STATE_DYING ||
3109 xhci->xhc_state & XHCI_STATE_HALTED) {
3110 xhci_dbg(xhci, "xHCI dying, ignoring interrupt. "
3111 "Shouldn't IRQs be disabled?\n");
3112 /* Clear the event handler busy flag (RW1C);
3113 * the event ring should be empty.
3115 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue);
3116 xhci_write_64(xhci, temp_64 | ERST_EHB,
3117 &ir->ir_set->erst_dequeue);
3122 event_ring_deq = ir->event_ring->dequeue;
3123 /* FIXME this should be a delayed service routine
3124 * that clears the EHB.
3126 while (xhci_handle_event(xhci, ir) > 0) {
3127 if (event_loop++ < TRBS_PER_SEGMENT / 2)
3129 xhci_update_erst_dequeue(xhci, ir, event_ring_deq);
3130 event_ring_deq = ir->event_ring->dequeue;
3132 /* ring is half-full, force isoc trbs to interrupt more often */
3133 if (xhci->isoc_bei_interval > AVOID_BEI_INTERVAL_MIN)
3134 xhci->isoc_bei_interval = xhci->isoc_bei_interval / 2;
3139 xhci_update_erst_dequeue(xhci, ir, event_ring_deq);
3143 spin_unlock(&xhci->lock);
3148 irqreturn_t xhci_msi_irq(int irq, void *hcd)
3150 return xhci_irq(hcd);
3152 EXPORT_SYMBOL_GPL(xhci_msi_irq);
3154 /**** Endpoint Ring Operations ****/
3157 * Generic function for queueing a TRB on a ring.
3158 * The caller must have checked to make sure there's room on the ring.
3160 * @more_trbs_coming: Will you enqueue more TRBs before calling
3161 * prepare_transfer()?
3163 static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
3164 bool more_trbs_coming,
3165 u32 field1, u32 field2, u32 field3, u32 field4)
3167 struct xhci_generic_trb *trb;
3169 trb = &ring->enqueue->generic;
3170 trb->field[0] = cpu_to_le32(field1);
3171 trb->field[1] = cpu_to_le32(field2);
3172 trb->field[2] = cpu_to_le32(field3);
3173 /* make sure TRB is fully written before giving it to the controller */
3175 trb->field[3] = cpu_to_le32(field4);
3177 trace_xhci_queue_trb(ring, trb);
3179 inc_enq(xhci, ring, more_trbs_coming);
3183 * Does various checks on the endpoint ring, and makes it ready to queue num_trbs.
3184 * expand ring if it start to be full.
3186 static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
3187 u32 ep_state, unsigned int num_trbs, gfp_t mem_flags)
3189 unsigned int link_trb_count = 0;
3190 unsigned int new_segs = 0;
3192 /* Make sure the endpoint has been added to xHC schedule */
3194 case EP_STATE_DISABLED:
3196 * USB core changed config/interfaces without notifying us,
3197 * or hardware is reporting the wrong state.
3199 xhci_warn(xhci, "WARN urb submitted to disabled ep\n");
3201 case EP_STATE_ERROR:
3202 xhci_warn(xhci, "WARN waiting for error on ep to be cleared\n");
3203 /* FIXME event handling code for error needs to clear it */
3204 /* XXX not sure if this should be -ENOENT or not */
3206 case EP_STATE_HALTED:
3207 xhci_dbg(xhci, "WARN halted endpoint, queueing URB anyway.\n");
3209 case EP_STATE_STOPPED:
3210 case EP_STATE_RUNNING:
3213 xhci_err(xhci, "ERROR unknown endpoint state for ep\n");
3215 * FIXME issue Configure Endpoint command to try to get the HC
3216 * back into a known state.
3221 if (ep_ring != xhci->cmd_ring) {
3222 new_segs = xhci_ring_expansion_needed(xhci, ep_ring, num_trbs);
3223 } else if (xhci_num_trbs_free(xhci, ep_ring) <= num_trbs) {
3224 xhci_err(xhci, "Do not support expand command ring\n");
3229 xhci_dbg_trace(xhci, trace_xhci_dbg_ring_expansion,
3230 "ERROR no room on ep ring, try ring expansion");
3231 if (xhci_ring_expansion(xhci, ep_ring, new_segs, mem_flags)) {
3232 xhci_err(xhci, "Ring expansion failed\n");
3237 while (trb_is_link(ep_ring->enqueue)) {
3238 /* If we're not dealing with 0.95 hardware or isoc rings
3239 * on AMD 0.96 host, clear the chain bit.
3241 if (!xhci_link_trb_quirk(xhci) &&
3242 !(ep_ring->type == TYPE_ISOC &&
3243 (xhci->quirks & XHCI_AMD_0x96_HOST)))
3244 ep_ring->enqueue->link.control &=
3245 cpu_to_le32(~TRB_CHAIN);
3247 ep_ring->enqueue->link.control |=
3248 cpu_to_le32(TRB_CHAIN);
3251 ep_ring->enqueue->link.control ^= cpu_to_le32(TRB_CYCLE);
3253 /* Toggle the cycle bit after the last ring segment. */
3254 if (link_trb_toggles_cycle(ep_ring->enqueue))
3255 ep_ring->cycle_state ^= 1;
3257 ep_ring->enq_seg = ep_ring->enq_seg->next;
3258 ep_ring->enqueue = ep_ring->enq_seg->trbs;
3260 /* prevent infinite loop if all first trbs are link trbs */
3261 if (link_trb_count++ > ep_ring->num_segs) {
3262 xhci_warn(xhci, "Ring is an endless link TRB loop\n");
3267 if (last_trb_on_seg(ep_ring->enq_seg, ep_ring->enqueue)) {
3268 xhci_warn(xhci, "Missing link TRB at end of ring segment\n");
3275 static int prepare_transfer(struct xhci_hcd *xhci,
3276 struct xhci_virt_device *xdev,
3277 unsigned int ep_index,
3278 unsigned int stream_id,
3279 unsigned int num_trbs,
3281 unsigned int td_index,
3285 struct urb_priv *urb_priv;
3287 struct xhci_ring *ep_ring;
3288 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
3290 ep_ring = xhci_triad_to_transfer_ring(xhci, xdev->slot_id, ep_index,
3293 xhci_dbg(xhci, "Can't prepare ring for bad stream ID %u\n",
3298 ret = prepare_ring(xhci, ep_ring, GET_EP_CTX_STATE(ep_ctx),
3299 num_trbs, mem_flags);
3303 urb_priv = urb->hcpriv;
3304 td = &urb_priv->td[td_index];
3306 INIT_LIST_HEAD(&td->td_list);
3307 INIT_LIST_HEAD(&td->cancelled_td_list);
3309 if (td_index == 0) {
3310 ret = usb_hcd_link_urb_to_ep(bus_to_hcd(urb->dev->bus), urb);
3316 /* Add this TD to the tail of the endpoint ring's TD list */
3317 list_add_tail(&td->td_list, &ep_ring->td_list);
3318 td->start_seg = ep_ring->enq_seg;
3319 td->first_trb = ep_ring->enqueue;
3324 unsigned int count_trbs(u64 addr, u64 len)
3326 unsigned int num_trbs;
3328 num_trbs = DIV_ROUND_UP(len + (addr & (TRB_MAX_BUFF_SIZE - 1)),
3336 static inline unsigned int count_trbs_needed(struct urb *urb)
3338 return count_trbs(urb->transfer_dma, urb->transfer_buffer_length);
3341 static unsigned int count_sg_trbs_needed(struct urb *urb)
3343 struct scatterlist *sg;
3344 unsigned int i, len, full_len, num_trbs = 0;
3346 full_len = urb->transfer_buffer_length;
3348 for_each_sg(urb->sg, sg, urb->num_mapped_sgs, i) {
3349 len = sg_dma_len(sg);
3350 num_trbs += count_trbs(sg_dma_address(sg), len);
3351 len = min_t(unsigned int, len, full_len);
3360 static unsigned int count_isoc_trbs_needed(struct urb *urb, int i)
3364 addr = (u64) (urb->transfer_dma + urb->iso_frame_desc[i].offset);
3365 len = urb->iso_frame_desc[i].length;
3367 return count_trbs(addr, len);
3370 static void check_trb_math(struct urb *urb, int running_total)
3372 if (unlikely(running_total != urb->transfer_buffer_length))
3373 dev_err(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, "
3374 "queued %#x (%d), asked for %#x (%d)\n",
3376 urb->ep->desc.bEndpointAddress,
3377 running_total, running_total,
3378 urb->transfer_buffer_length,
3379 urb->transfer_buffer_length);
3382 static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id,
3383 unsigned int ep_index, unsigned int stream_id, int start_cycle,
3384 struct xhci_generic_trb *start_trb)
3387 * Pass all the TRBs to the hardware at once and make sure this write
3392 start_trb->field[3] |= cpu_to_le32(start_cycle);
3394 start_trb->field[3] &= cpu_to_le32(~TRB_CYCLE);
3395 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, stream_id);
3398 static void check_interval(struct xhci_hcd *xhci, struct urb *urb,
3399 struct xhci_ep_ctx *ep_ctx)
3404 xhci_interval = EP_INTERVAL_TO_UFRAMES(le32_to_cpu(ep_ctx->ep_info));
3405 ep_interval = urb->interval;
3407 /* Convert to microframes */
3408 if (urb->dev->speed == USB_SPEED_LOW ||
3409 urb->dev->speed == USB_SPEED_FULL)
3412 /* FIXME change this to a warning and a suggestion to use the new API
3413 * to set the polling interval (once the API is added).
3415 if (xhci_interval != ep_interval) {
3416 dev_dbg_ratelimited(&urb->dev->dev,
3417 "Driver uses different interval (%d microframe%s) than xHCI (%d microframe%s)\n",
3418 ep_interval, ep_interval == 1 ? "" : "s",
3419 xhci_interval, xhci_interval == 1 ? "" : "s");
3420 urb->interval = xhci_interval;
3421 /* Convert back to frames for LS/FS devices */
3422 if (urb->dev->speed == USB_SPEED_LOW ||
3423 urb->dev->speed == USB_SPEED_FULL)
3429 * xHCI uses normal TRBs for both bulk and interrupt. When the interrupt
3430 * endpoint is to be serviced, the xHC will consume (at most) one TD. A TD
3431 * (comprised of sg list entries) can take several service intervals to
3434 int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
3435 struct urb *urb, int slot_id, unsigned int ep_index)
3437 struct xhci_ep_ctx *ep_ctx;
3439 ep_ctx = xhci_get_ep_ctx(xhci, xhci->devs[slot_id]->out_ctx, ep_index);
3440 check_interval(xhci, urb, ep_ctx);
3442 return xhci_queue_bulk_tx(xhci, mem_flags, urb, slot_id, ep_index);
3446 * For xHCI 1.0 host controllers, TD size is the number of max packet sized
3447 * packets remaining in the TD (*not* including this TRB).
3449 * Total TD packet count = total_packet_count =
3450 * DIV_ROUND_UP(TD size in bytes / wMaxPacketSize)
3452 * Packets transferred up to and including this TRB = packets_transferred =
3453 * rounddown(total bytes transferred including this TRB / wMaxPacketSize)
3455 * TD size = total_packet_count - packets_transferred
3457 * For xHCI 0.96 and older, TD size field should be the remaining bytes
3458 * including this TRB, right shifted by 10
3460 * For all hosts it must fit in bits 21:17, so it can't be bigger than 31.
3461 * This is taken care of in the TRB_TD_SIZE() macro
3463 * The last TRB in a TD must have the TD size set to zero.
3465 static u32 xhci_td_remainder(struct xhci_hcd *xhci, int transferred,
3466 int trb_buff_len, unsigned int td_total_len,
3467 struct urb *urb, bool more_trbs_coming)
3469 u32 maxp, total_packet_count;
3471 /* MTK xHCI 0.96 contains some features from 1.0 */
3472 if (xhci->hci_version < 0x100 && !(xhci->quirks & XHCI_MTK_HOST))
3473 return ((td_total_len - transferred) >> 10);
3475 /* One TRB with a zero-length data packet. */
3476 if (!more_trbs_coming || (transferred == 0 && trb_buff_len == 0) ||
3477 trb_buff_len == td_total_len)
3480 /* for MTK xHCI 0.96, TD size include this TRB, but not in 1.x */
3481 if ((xhci->quirks & XHCI_MTK_HOST) && (xhci->hci_version < 0x100))
3484 maxp = usb_endpoint_maxp(&urb->ep->desc);
3485 total_packet_count = DIV_ROUND_UP(td_total_len, maxp);
3487 /* Queueing functions don't count the current TRB into transferred */
3488 return (total_packet_count - ((transferred + trb_buff_len) / maxp));
3492 static int xhci_align_td(struct xhci_hcd *xhci, struct urb *urb, u32 enqd_len,
3493 u32 *trb_buff_len, struct xhci_segment *seg)
3495 struct device *dev = xhci_to_hcd(xhci)->self.controller;
3496 unsigned int unalign;
3497 unsigned int max_pkt;
3501 max_pkt = usb_endpoint_maxp(&urb->ep->desc);
3502 unalign = (enqd_len + *trb_buff_len) % max_pkt;
3504 /* we got lucky, last normal TRB data on segment is packet aligned */
3508 xhci_dbg(xhci, "Unaligned %d bytes, buff len %d\n",
3509 unalign, *trb_buff_len);
3511 /* is the last nornal TRB alignable by splitting it */
3512 if (*trb_buff_len > unalign) {
3513 *trb_buff_len -= unalign;
3514 xhci_dbg(xhci, "split align, new buff len %d\n", *trb_buff_len);
3519 * We want enqd_len + trb_buff_len to sum up to a number aligned to
3520 * number which is divisible by the endpoint's wMaxPacketSize. IOW:
3521 * (size of currently enqueued TRBs + remainder) % wMaxPacketSize == 0.
3523 new_buff_len = max_pkt - (enqd_len % max_pkt);
3525 if (new_buff_len > (urb->transfer_buffer_length - enqd_len))
3526 new_buff_len = (urb->transfer_buffer_length - enqd_len);
3528 /* create a max max_pkt sized bounce buffer pointed to by last trb */
3529 if (usb_urb_dir_out(urb)) {
3531 len = sg_pcopy_to_buffer(urb->sg, urb->num_sgs,
3532 seg->bounce_buf, new_buff_len, enqd_len);
3533 if (len != new_buff_len)
3534 xhci_warn(xhci, "WARN Wrong bounce buffer write length: %zu != %d\n",
3537 memcpy(seg->bounce_buf, urb->transfer_buffer + enqd_len, new_buff_len);
3540 seg->bounce_dma = dma_map_single(dev, seg->bounce_buf,
3541 max_pkt, DMA_TO_DEVICE);
3543 seg->bounce_dma = dma_map_single(dev, seg->bounce_buf,
3544 max_pkt, DMA_FROM_DEVICE);
3547 if (dma_mapping_error(dev, seg->bounce_dma)) {
3548 /* try without aligning. Some host controllers survive */
3549 xhci_warn(xhci, "Failed mapping bounce buffer, not aligning\n");
3552 *trb_buff_len = new_buff_len;
3553 seg->bounce_len = new_buff_len;
3554 seg->bounce_offs = enqd_len;
3556 xhci_dbg(xhci, "Bounce align, new buff len %d\n", *trb_buff_len);
3561 /* This is very similar to what ehci-q.c qtd_fill() does */
3562 int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
3563 struct urb *urb, int slot_id, unsigned int ep_index)
3565 struct xhci_ring *ring;
3566 struct urb_priv *urb_priv;
3568 struct xhci_generic_trb *start_trb;
3569 struct scatterlist *sg = NULL;
3570 bool more_trbs_coming = true;
3571 bool need_zero_pkt = false;
3572 bool first_trb = true;
3573 unsigned int num_trbs;
3574 unsigned int start_cycle, num_sgs = 0;
3575 unsigned int enqd_len, block_len, trb_buff_len, full_len;
3577 u32 field, length_field, remainder;
3578 u64 addr, send_addr;
3580 ring = xhci_urb_to_transfer_ring(xhci, urb);
3584 full_len = urb->transfer_buffer_length;
3585 /* If we have scatter/gather list, we use it. */
3586 if (urb->num_sgs && !(urb->transfer_flags & URB_DMA_MAP_SINGLE)) {
3587 num_sgs = urb->num_mapped_sgs;
3589 addr = (u64) sg_dma_address(sg);
3590 block_len = sg_dma_len(sg);
3591 num_trbs = count_sg_trbs_needed(urb);
3593 num_trbs = count_trbs_needed(urb);
3594 addr = (u64) urb->transfer_dma;
3595 block_len = full_len;
3597 ret = prepare_transfer(xhci, xhci->devs[slot_id],
3598 ep_index, urb->stream_id,
3599 num_trbs, urb, 0, mem_flags);
3600 if (unlikely(ret < 0))
3603 urb_priv = urb->hcpriv;
3605 /* Deal with URB_ZERO_PACKET - need one more td/trb */
3606 if (urb->transfer_flags & URB_ZERO_PACKET && urb_priv->num_tds > 1)
3607 need_zero_pkt = true;
3609 td = &urb_priv->td[0];
3612 * Don't give the first TRB to the hardware (by toggling the cycle bit)
3613 * until we've finished creating all the other TRBs. The ring's cycle
3614 * state may change as we enqueue the other TRBs, so save it too.
3616 start_trb = &ring->enqueue->generic;
3617 start_cycle = ring->cycle_state;
3620 /* Queue the TRBs, even if they are zero-length */
3621 for (enqd_len = 0; first_trb || enqd_len < full_len;
3622 enqd_len += trb_buff_len) {
3623 field = TRB_TYPE(TRB_NORMAL);
3625 /* TRB buffer should not cross 64KB boundaries */
3626 trb_buff_len = TRB_BUFF_LEN_UP_TO_BOUNDARY(addr);
3627 trb_buff_len = min_t(unsigned int, trb_buff_len, block_len);
3629 if (enqd_len + trb_buff_len > full_len)
3630 trb_buff_len = full_len - enqd_len;
3632 /* Don't change the cycle bit of the first TRB until later */
3635 if (start_cycle == 0)
3638 field |= ring->cycle_state;
3640 /* Chain all the TRBs together; clear the chain bit in the last
3641 * TRB to indicate it's the last TRB in the chain.
3643 if (enqd_len + trb_buff_len < full_len) {
3645 if (trb_is_link(ring->enqueue + 1)) {
3646 if (xhci_align_td(xhci, urb, enqd_len,
3649 send_addr = ring->enq_seg->bounce_dma;
3650 /* assuming TD won't span 2 segs */
3651 td->bounce_seg = ring->enq_seg;
3655 if (enqd_len + trb_buff_len >= full_len) {
3656 field &= ~TRB_CHAIN;
3658 more_trbs_coming = false;
3659 td->last_trb = ring->enqueue;
3660 td->last_trb_seg = ring->enq_seg;
3661 if (xhci_urb_suitable_for_idt(urb)) {
3662 memcpy(&send_addr, urb->transfer_buffer,
3664 le64_to_cpus(&send_addr);
3669 /* Only set interrupt on short packet for IN endpoints */
3670 if (usb_urb_dir_in(urb))
3673 /* Set the TRB length, TD size, and interrupter fields. */
3674 remainder = xhci_td_remainder(xhci, enqd_len, trb_buff_len,
3675 full_len, urb, more_trbs_coming);
3677 length_field = TRB_LEN(trb_buff_len) |
3678 TRB_TD_SIZE(remainder) |
3681 queue_trb(xhci, ring, more_trbs_coming | need_zero_pkt,
3682 lower_32_bits(send_addr),
3683 upper_32_bits(send_addr),
3687 addr += trb_buff_len;
3688 sent_len = trb_buff_len;
3690 while (sg && sent_len >= block_len) {
3693 sent_len -= block_len;
3695 if (num_sgs != 0 && sg) {
3696 block_len = sg_dma_len(sg);
3697 addr = (u64) sg_dma_address(sg);
3701 block_len -= sent_len;
3705 if (need_zero_pkt) {
3706 ret = prepare_transfer(xhci, xhci->devs[slot_id],
3707 ep_index, urb->stream_id,
3708 1, urb, 1, mem_flags);
3709 urb_priv->td[1].last_trb = ring->enqueue;
3710 urb_priv->td[1].last_trb_seg = ring->enq_seg;
3711 field = TRB_TYPE(TRB_NORMAL) | ring->cycle_state | TRB_IOC;
3712 queue_trb(xhci, ring, 0, 0, 0, TRB_INTR_TARGET(0), field);
3713 urb_priv->td[1].num_trbs++;
3716 check_trb_math(urb, enqd_len);
3717 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
3718 start_cycle, start_trb);
3722 /* Caller must have locked xhci->lock */
3723 int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
3724 struct urb *urb, int slot_id, unsigned int ep_index)
3726 struct xhci_ring *ep_ring;
3729 struct usb_ctrlrequest *setup;
3730 struct xhci_generic_trb *start_trb;
3733 struct urb_priv *urb_priv;
3736 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
3741 * Need to copy setup packet into setup TRB, so we can't use the setup
3744 if (!urb->setup_packet)
3747 /* 1 TRB for setup, 1 for status */
3750 * Don't need to check if we need additional event data and normal TRBs,
3751 * since data in control transfers will never get bigger than 16MB
3752 * XXX: can we get a buffer that crosses 64KB boundaries?
3754 if (urb->transfer_buffer_length > 0)
3756 ret = prepare_transfer(xhci, xhci->devs[slot_id],
3757 ep_index, urb->stream_id,
3758 num_trbs, urb, 0, mem_flags);
3762 urb_priv = urb->hcpriv;
3763 td = &urb_priv->td[0];
3764 td->num_trbs = num_trbs;
3767 * Don't give the first TRB to the hardware (by toggling the cycle bit)
3768 * until we've finished creating all the other TRBs. The ring's cycle
3769 * state may change as we enqueue the other TRBs, so save it too.
3771 start_trb = &ep_ring->enqueue->generic;
3772 start_cycle = ep_ring->cycle_state;
3774 /* Queue setup TRB - see section 6.4.1.2.1 */
3775 /* FIXME better way to translate setup_packet into two u32 fields? */
3776 setup = (struct usb_ctrlrequest *) urb->setup_packet;
3778 field |= TRB_IDT | TRB_TYPE(TRB_SETUP);
3779 if (start_cycle == 0)
3782 /* xHCI 1.0/1.1 6.4.1.2.1: Transfer Type field */
3783 if ((xhci->hci_version >= 0x100) || (xhci->quirks & XHCI_MTK_HOST)) {
3784 if (urb->transfer_buffer_length > 0) {
3785 if (setup->bRequestType & USB_DIR_IN)
3786 field |= TRB_TX_TYPE(TRB_DATA_IN);
3788 field |= TRB_TX_TYPE(TRB_DATA_OUT);
3792 queue_trb(xhci, ep_ring, true,
3793 setup->bRequestType | setup->bRequest << 8 | le16_to_cpu(setup->wValue) << 16,
3794 le16_to_cpu(setup->wIndex) | le16_to_cpu(setup->wLength) << 16,
3795 TRB_LEN(8) | TRB_INTR_TARGET(0),
3796 /* Immediate data in pointer */
3799 /* If there's data, queue data TRBs */
3800 /* Only set interrupt on short packet for IN endpoints */
3801 if (usb_urb_dir_in(urb))
3802 field = TRB_ISP | TRB_TYPE(TRB_DATA);
3804 field = TRB_TYPE(TRB_DATA);
3806 if (urb->transfer_buffer_length > 0) {
3807 u32 length_field, remainder;
3810 if (xhci_urb_suitable_for_idt(urb)) {
3811 memcpy(&addr, urb->transfer_buffer,
3812 urb->transfer_buffer_length);
3813 le64_to_cpus(&addr);
3816 addr = (u64) urb->transfer_dma;
3819 remainder = xhci_td_remainder(xhci, 0,
3820 urb->transfer_buffer_length,
3821 urb->transfer_buffer_length,
3823 length_field = TRB_LEN(urb->transfer_buffer_length) |
3824 TRB_TD_SIZE(remainder) |
3826 if (setup->bRequestType & USB_DIR_IN)
3827 field |= TRB_DIR_IN;
3828 queue_trb(xhci, ep_ring, true,
3829 lower_32_bits(addr),
3830 upper_32_bits(addr),
3832 field | ep_ring->cycle_state);
3835 /* Save the DMA address of the last TRB in the TD */
3836 td->last_trb = ep_ring->enqueue;
3837 td->last_trb_seg = ep_ring->enq_seg;
3839 /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */
3840 /* If the device sent data, the status stage is an OUT transfer */
3841 if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN)
3845 queue_trb(xhci, ep_ring, false,
3849 /* Event on completion */
3850 field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state);
3852 giveback_first_trb(xhci, slot_id, ep_index, 0,
3853 start_cycle, start_trb);
3858 * The transfer burst count field of the isochronous TRB defines the number of
3859 * bursts that are required to move all packets in this TD. Only SuperSpeed
3860 * devices can burst up to bMaxBurst number of packets per service interval.
3861 * This field is zero based, meaning a value of zero in the field means one
3862 * burst. Basically, for everything but SuperSpeed devices, this field will be
3863 * zero. Only xHCI 1.0 host controllers support this field.
3865 static unsigned int xhci_get_burst_count(struct xhci_hcd *xhci,
3866 struct urb *urb, unsigned int total_packet_count)
3868 unsigned int max_burst;
3870 if (xhci->hci_version < 0x100 || urb->dev->speed < USB_SPEED_SUPER)
3873 max_burst = urb->ep->ss_ep_comp.bMaxBurst;
3874 return DIV_ROUND_UP(total_packet_count, max_burst + 1) - 1;
3878 * Returns the number of packets in the last "burst" of packets. This field is
3879 * valid for all speeds of devices. USB 2.0 devices can only do one "burst", so
3880 * the last burst packet count is equal to the total number of packets in the
3881 * TD. SuperSpeed endpoints can have up to 3 bursts. All but the last burst
3882 * must contain (bMaxBurst + 1) number of packets, but the last burst can
3883 * contain 1 to (bMaxBurst + 1) packets.
3885 static unsigned int xhci_get_last_burst_packet_count(struct xhci_hcd *xhci,
3886 struct urb *urb, unsigned int total_packet_count)
3888 unsigned int max_burst;
3889 unsigned int residue;
3891 if (xhci->hci_version < 0x100)
3894 if (urb->dev->speed >= USB_SPEED_SUPER) {
3895 /* bMaxBurst is zero based: 0 means 1 packet per burst */
3896 max_burst = urb->ep->ss_ep_comp.bMaxBurst;
3897 residue = total_packet_count % (max_burst + 1);
3898 /* If residue is zero, the last burst contains (max_burst + 1)
3899 * number of packets, but the TLBPC field is zero-based.
3905 if (total_packet_count == 0)
3907 return total_packet_count - 1;
3911 * Calculates Frame ID field of the isochronous TRB identifies the
3912 * target frame that the Interval associated with this Isochronous
3913 * Transfer Descriptor will start on. Refer to 4.11.2.5 in 1.1 spec.
3915 * Returns actual frame id on success, negative value on error.
3917 static int xhci_get_isoc_frame_id(struct xhci_hcd *xhci,
3918 struct urb *urb, int index)
3920 int start_frame, ist, ret = 0;
3921 int start_frame_id, end_frame_id, current_frame_id;
3923 if (urb->dev->speed == USB_SPEED_LOW ||
3924 urb->dev->speed == USB_SPEED_FULL)
3925 start_frame = urb->start_frame + index * urb->interval;
3927 start_frame = (urb->start_frame + index * urb->interval) >> 3;
3929 /* Isochronous Scheduling Threshold (IST, bits 0~3 in HCSPARAMS2):
3931 * If bit [3] of IST is cleared to '0', software can add a TRB no
3932 * later than IST[2:0] Microframes before that TRB is scheduled to
3934 * If bit [3] of IST is set to '1', software can add a TRB no later
3935 * than IST[2:0] Frames before that TRB is scheduled to be executed.
3937 ist = HCS_IST(xhci->hcs_params2) & 0x7;
3938 if (HCS_IST(xhci->hcs_params2) & (1 << 3))
3941 /* Software shall not schedule an Isoch TD with a Frame ID value that
3942 * is less than the Start Frame ID or greater than the End Frame ID,
3945 * End Frame ID = (Current MFINDEX register value + 895 ms.) MOD 2048
3946 * Start Frame ID = (Current MFINDEX register value + IST + 1) MOD 2048
3948 * Both the End Frame ID and Start Frame ID values are calculated
3949 * in microframes. When software determines the valid Frame ID value;
3950 * The End Frame ID value should be rounded down to the nearest Frame
3951 * boundary, and the Start Frame ID value should be rounded up to the
3952 * nearest Frame boundary.
3954 current_frame_id = readl(&xhci->run_regs->microframe_index);
3955 start_frame_id = roundup(current_frame_id + ist + 1, 8);
3956 end_frame_id = rounddown(current_frame_id + 895 * 8, 8);
3958 start_frame &= 0x7ff;
3959 start_frame_id = (start_frame_id >> 3) & 0x7ff;
3960 end_frame_id = (end_frame_id >> 3) & 0x7ff;
3962 xhci_dbg(xhci, "%s: index %d, reg 0x%x start_frame_id 0x%x, end_frame_id 0x%x, start_frame 0x%x\n",
3963 __func__, index, readl(&xhci->run_regs->microframe_index),
3964 start_frame_id, end_frame_id, start_frame);
3966 if (start_frame_id < end_frame_id) {
3967 if (start_frame > end_frame_id ||
3968 start_frame < start_frame_id)
3970 } else if (start_frame_id > end_frame_id) {
3971 if ((start_frame > end_frame_id &&
3972 start_frame < start_frame_id))
3979 if (ret == -EINVAL || start_frame == start_frame_id) {
3980 start_frame = start_frame_id + 1;
3981 if (urb->dev->speed == USB_SPEED_LOW ||
3982 urb->dev->speed == USB_SPEED_FULL)
3983 urb->start_frame = start_frame;
3985 urb->start_frame = start_frame << 3;
3991 xhci_warn(xhci, "Frame ID %d (reg %d, index %d) beyond range (%d, %d)\n",
3992 start_frame, current_frame_id, index,
3993 start_frame_id, end_frame_id);
3994 xhci_warn(xhci, "Ignore frame ID field, use SIA bit instead\n");
4001 /* Check if we should generate event interrupt for a TD in an isoc URB */
4002 static bool trb_block_event_intr(struct xhci_hcd *xhci, int num_tds, int i)
4004 if (xhci->hci_version < 0x100)
4006 /* always generate an event interrupt for the last TD */
4007 if (i == num_tds - 1)
4010 * If AVOID_BEI is set the host handles full event rings poorly,
4011 * generate an event at least every 8th TD to clear the event ring
4013 if (i && xhci->quirks & XHCI_AVOID_BEI)
4014 return !!(i % xhci->isoc_bei_interval);
4019 /* This is for isoc transfer */
4020 static int xhci_queue_isoc_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
4021 struct urb *urb, int slot_id, unsigned int ep_index)
4023 struct xhci_ring *ep_ring;
4024 struct urb_priv *urb_priv;
4026 int num_tds, trbs_per_td;
4027 struct xhci_generic_trb *start_trb;
4030 u32 field, length_field;
4031 int running_total, trb_buff_len, td_len, td_remain_len, ret;
4032 u64 start_addr, addr;
4034 bool more_trbs_coming;
4035 struct xhci_virt_ep *xep;
4038 xep = &xhci->devs[slot_id]->eps[ep_index];
4039 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
4041 num_tds = urb->number_of_packets;
4043 xhci_dbg(xhci, "Isoc URB with zero packets?\n");
4046 start_addr = (u64) urb->transfer_dma;
4047 start_trb = &ep_ring->enqueue->generic;
4048 start_cycle = ep_ring->cycle_state;
4050 urb_priv = urb->hcpriv;
4051 /* Queue the TRBs for each TD, even if they are zero-length */
4052 for (i = 0; i < num_tds; i++) {
4053 unsigned int total_pkt_count, max_pkt;
4054 unsigned int burst_count, last_burst_pkt_count;
4059 addr = start_addr + urb->iso_frame_desc[i].offset;
4060 td_len = urb->iso_frame_desc[i].length;
4061 td_remain_len = td_len;
4062 max_pkt = usb_endpoint_maxp(&urb->ep->desc);
4063 total_pkt_count = DIV_ROUND_UP(td_len, max_pkt);
4065 /* A zero-length transfer still involves at least one packet. */
4066 if (total_pkt_count == 0)
4068 burst_count = xhci_get_burst_count(xhci, urb, total_pkt_count);
4069 last_burst_pkt_count = xhci_get_last_burst_packet_count(xhci,
4070 urb, total_pkt_count);
4072 trbs_per_td = count_isoc_trbs_needed(urb, i);
4074 ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index,
4075 urb->stream_id, trbs_per_td, urb, i, mem_flags);
4081 td = &urb_priv->td[i];
4082 td->num_trbs = trbs_per_td;
4083 /* use SIA as default, if frame id is used overwrite it */
4084 sia_frame_id = TRB_SIA;
4085 if (!(urb->transfer_flags & URB_ISO_ASAP) &&
4086 HCC_CFC(xhci->hcc_params)) {
4087 frame_id = xhci_get_isoc_frame_id(xhci, urb, i);
4089 sia_frame_id = TRB_FRAME_ID(frame_id);
4092 * Set isoc specific data for the first TRB in a TD.
4093 * Prevent HW from getting the TRBs by keeping the cycle state
4094 * inverted in the first TDs isoc TRB.
4096 field = TRB_TYPE(TRB_ISOC) |
4097 TRB_TLBPC(last_burst_pkt_count) |
4099 (i ? ep_ring->cycle_state : !start_cycle);
4101 /* xhci 1.1 with ETE uses TD_Size field for TBC, old is Rsvdz */
4102 if (!xep->use_extended_tbc)
4103 field |= TRB_TBC(burst_count);
4105 /* fill the rest of the TRB fields, and remaining normal TRBs */
4106 for (j = 0; j < trbs_per_td; j++) {
4109 /* only first TRB is isoc, overwrite otherwise */
4111 field = TRB_TYPE(TRB_NORMAL) |
4112 ep_ring->cycle_state;
4114 /* Only set interrupt on short packet for IN EPs */
4115 if (usb_urb_dir_in(urb))
4118 /* Set the chain bit for all except the last TRB */
4119 if (j < trbs_per_td - 1) {
4120 more_trbs_coming = true;
4123 more_trbs_coming = false;
4124 td->last_trb = ep_ring->enqueue;
4125 td->last_trb_seg = ep_ring->enq_seg;
4127 if (trb_block_event_intr(xhci, num_tds, i))
4130 /* Calculate TRB length */
4131 trb_buff_len = TRB_BUFF_LEN_UP_TO_BOUNDARY(addr);
4132 if (trb_buff_len > td_remain_len)
4133 trb_buff_len = td_remain_len;
4135 /* Set the TRB length, TD size, & interrupter fields. */
4136 remainder = xhci_td_remainder(xhci, running_total,
4137 trb_buff_len, td_len,
4138 urb, more_trbs_coming);
4140 length_field = TRB_LEN(trb_buff_len) |
4143 /* xhci 1.1 with ETE uses TD Size field for TBC */
4144 if (first_trb && xep->use_extended_tbc)
4145 length_field |= TRB_TD_SIZE_TBC(burst_count);
4147 length_field |= TRB_TD_SIZE(remainder);
4150 queue_trb(xhci, ep_ring, more_trbs_coming,
4151 lower_32_bits(addr),
4152 upper_32_bits(addr),
4155 running_total += trb_buff_len;
4157 addr += trb_buff_len;
4158 td_remain_len -= trb_buff_len;
4161 /* Check TD length */
4162 if (running_total != td_len) {
4163 xhci_err(xhci, "ISOC TD length unmatch\n");
4169 /* store the next frame id */
4170 if (HCC_CFC(xhci->hcc_params))
4171 xep->next_frame_id = urb->start_frame + num_tds * urb->interval;
4173 if (xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs == 0) {
4174 if (xhci->quirks & XHCI_AMD_PLL_FIX)
4175 usb_amd_quirk_pll_disable();
4177 xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs++;
4179 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
4180 start_cycle, start_trb);
4183 /* Clean up a partially enqueued isoc transfer. */
4185 for (i--; i >= 0; i--)
4186 list_del_init(&urb_priv->td[i].td_list);
4188 /* Use the first TD as a temporary variable to turn the TDs we've queued
4189 * into No-ops with a software-owned cycle bit. That way the hardware
4190 * won't accidentally start executing bogus TDs when we partially
4191 * overwrite them. td->first_trb and td->start_seg are already set.
4193 urb_priv->td[0].last_trb = ep_ring->enqueue;
4194 /* Every TRB except the first & last will have its cycle bit flipped. */
4195 td_to_noop(xhci, ep_ring, &urb_priv->td[0], true);
4197 /* Reset the ring enqueue back to the first TRB and its cycle bit. */
4198 ep_ring->enqueue = urb_priv->td[0].first_trb;
4199 ep_ring->enq_seg = urb_priv->td[0].start_seg;
4200 ep_ring->cycle_state = start_cycle;
4201 usb_hcd_unlink_urb_from_ep(bus_to_hcd(urb->dev->bus), urb);
4206 * Check transfer ring to guarantee there is enough room for the urb.
4207 * Update ISO URB start_frame and interval.
4208 * Update interval as xhci_queue_intr_tx does. Use xhci frame_index to
4209 * update urb->start_frame if URB_ISO_ASAP is set in transfer_flags or
4210 * Contiguous Frame ID is not supported by HC.
4212 int xhci_queue_isoc_tx_prepare(struct xhci_hcd *xhci, gfp_t mem_flags,
4213 struct urb *urb, int slot_id, unsigned int ep_index)
4215 struct xhci_virt_device *xdev;
4216 struct xhci_ring *ep_ring;
4217 struct xhci_ep_ctx *ep_ctx;
4219 int num_tds, num_trbs, i;
4221 struct xhci_virt_ep *xep;
4224 xdev = xhci->devs[slot_id];
4225 xep = &xhci->devs[slot_id]->eps[ep_index];
4226 ep_ring = xdev->eps[ep_index].ring;
4227 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
4230 num_tds = urb->number_of_packets;
4231 for (i = 0; i < num_tds; i++)
4232 num_trbs += count_isoc_trbs_needed(urb, i);
4234 /* Check the ring to guarantee there is enough room for the whole urb.
4235 * Do not insert any td of the urb to the ring if the check failed.
4237 ret = prepare_ring(xhci, ep_ring, GET_EP_CTX_STATE(ep_ctx),
4238 num_trbs, mem_flags);
4243 * Check interval value. This should be done before we start to
4244 * calculate the start frame value.
4246 check_interval(xhci, urb, ep_ctx);
4248 /* Calculate the start frame and put it in urb->start_frame. */
4249 if (HCC_CFC(xhci->hcc_params) && !list_empty(&ep_ring->td_list)) {
4250 if (GET_EP_CTX_STATE(ep_ctx) == EP_STATE_RUNNING) {
4251 urb->start_frame = xep->next_frame_id;
4252 goto skip_start_over;
4256 start_frame = readl(&xhci->run_regs->microframe_index);
4257 start_frame &= 0x3fff;
4259 * Round up to the next frame and consider the time before trb really
4260 * gets scheduled by hardare.
4262 ist = HCS_IST(xhci->hcs_params2) & 0x7;
4263 if (HCS_IST(xhci->hcs_params2) & (1 << 3))
4265 start_frame += ist + XHCI_CFC_DELAY;
4266 start_frame = roundup(start_frame, 8);
4269 * Round up to the next ESIT (Endpoint Service Interval Time) if ESIT
4270 * is greate than 8 microframes.
4272 if (urb->dev->speed == USB_SPEED_LOW ||
4273 urb->dev->speed == USB_SPEED_FULL) {
4274 start_frame = roundup(start_frame, urb->interval << 3);
4275 urb->start_frame = start_frame >> 3;
4277 start_frame = roundup(start_frame, urb->interval);
4278 urb->start_frame = start_frame;
4283 return xhci_queue_isoc_tx(xhci, mem_flags, urb, slot_id, ep_index);
4286 /**** Command Ring Operations ****/
4288 /* Generic function for queueing a command TRB on the command ring.
4289 * Check to make sure there's room on the command ring for one command TRB.
4290 * Also check that there's room reserved for commands that must not fail.
4291 * If this is a command that must not fail, meaning command_must_succeed = TRUE,
4292 * then only check for the number of reserved spots.
4293 * Don't decrement xhci->cmd_ring_reserved_trbs after we've queued the TRB
4294 * because the command event handler may want to resubmit a failed command.
4296 static int queue_command(struct xhci_hcd *xhci, struct xhci_command *cmd,
4297 u32 field1, u32 field2,
4298 u32 field3, u32 field4, bool command_must_succeed)
4300 int reserved_trbs = xhci->cmd_ring_reserved_trbs;
4303 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
4304 (xhci->xhc_state & XHCI_STATE_HALTED)) {
4305 xhci_dbg(xhci, "xHCI dying or halted, can't queue_command\n");
4309 if (!command_must_succeed)
4312 ret = prepare_ring(xhci, xhci->cmd_ring, EP_STATE_RUNNING,
4313 reserved_trbs, GFP_ATOMIC);
4315 xhci_err(xhci, "ERR: No room for command on command ring\n");
4316 if (command_must_succeed)
4317 xhci_err(xhci, "ERR: Reserved TRB counting for "
4318 "unfailable commands failed.\n");
4322 cmd->command_trb = xhci->cmd_ring->enqueue;
4324 /* if there are no other commands queued we start the timeout timer */
4325 if (list_empty(&xhci->cmd_list)) {
4326 xhci->current_cmd = cmd;
4327 xhci_mod_cmd_timer(xhci, XHCI_CMD_DEFAULT_TIMEOUT);
4330 list_add_tail(&cmd->cmd_list, &xhci->cmd_list);
4332 queue_trb(xhci, xhci->cmd_ring, false, field1, field2, field3,
4333 field4 | xhci->cmd_ring->cycle_state);
4337 /* Queue a slot enable or disable request on the command ring */
4338 int xhci_queue_slot_control(struct xhci_hcd *xhci, struct xhci_command *cmd,
4339 u32 trb_type, u32 slot_id)
4341 return queue_command(xhci, cmd, 0, 0, 0,
4342 TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id), false);
4345 /* Queue an address device command TRB */
4346 int xhci_queue_address_device(struct xhci_hcd *xhci, struct xhci_command *cmd,
4347 dma_addr_t in_ctx_ptr, u32 slot_id, enum xhci_setup_dev setup)
4349 return queue_command(xhci, cmd, lower_32_bits(in_ctx_ptr),
4350 upper_32_bits(in_ctx_ptr), 0,
4351 TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id)
4352 | (setup == SETUP_CONTEXT_ONLY ? TRB_BSR : 0), false);
4355 int xhci_queue_vendor_command(struct xhci_hcd *xhci, struct xhci_command *cmd,
4356 u32 field1, u32 field2, u32 field3, u32 field4)
4358 return queue_command(xhci, cmd, field1, field2, field3, field4, false);
4361 /* Queue a reset device command TRB */
4362 int xhci_queue_reset_device(struct xhci_hcd *xhci, struct xhci_command *cmd,
4365 return queue_command(xhci, cmd, 0, 0, 0,
4366 TRB_TYPE(TRB_RESET_DEV) | SLOT_ID_FOR_TRB(slot_id),
4370 /* Queue a configure endpoint command TRB */
4371 int xhci_queue_configure_endpoint(struct xhci_hcd *xhci,
4372 struct xhci_command *cmd, dma_addr_t in_ctx_ptr,
4373 u32 slot_id, bool command_must_succeed)
4375 return queue_command(xhci, cmd, lower_32_bits(in_ctx_ptr),
4376 upper_32_bits(in_ctx_ptr), 0,
4377 TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id),
4378 command_must_succeed);
4381 /* Queue an evaluate context command TRB */
4382 int xhci_queue_evaluate_context(struct xhci_hcd *xhci, struct xhci_command *cmd,
4383 dma_addr_t in_ctx_ptr, u32 slot_id, bool command_must_succeed)
4385 return queue_command(xhci, cmd, lower_32_bits(in_ctx_ptr),
4386 upper_32_bits(in_ctx_ptr), 0,
4387 TRB_TYPE(TRB_EVAL_CONTEXT) | SLOT_ID_FOR_TRB(slot_id),
4388 command_must_succeed);
4392 * Suspend is set to indicate "Stop Endpoint Command" is being issued to stop
4393 * activity on an endpoint that is about to be suspended.
4395 int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, struct xhci_command *cmd,
4396 int slot_id, unsigned int ep_index, int suspend)
4398 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
4399 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
4400 u32 type = TRB_TYPE(TRB_STOP_RING);
4401 u32 trb_suspend = SUSPEND_PORT_FOR_TRB(suspend);
4403 return queue_command(xhci, cmd, 0, 0, 0,
4404 trb_slot_id | trb_ep_index | type | trb_suspend, false);
4407 int xhci_queue_reset_ep(struct xhci_hcd *xhci, struct xhci_command *cmd,
4408 int slot_id, unsigned int ep_index,
4409 enum xhci_ep_reset_type reset_type)
4411 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
4412 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
4413 u32 type = TRB_TYPE(TRB_RESET_EP);
4415 if (reset_type == EP_SOFT_RESET)
4418 return queue_command(xhci, cmd, 0, 0, 0,
4419 trb_slot_id | trb_ep_index | type, false);