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