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