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