9541e88df68f626351386da891a5e8c017554f8c
[safe/jmp/linux-2.6] / 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 "xhci.h"
69
70 /*
71  * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA
72  * address of the TRB.
73  */
74 dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg,
75                 union xhci_trb *trb)
76 {
77         unsigned long segment_offset;
78
79         if (!seg || !trb || trb < seg->trbs)
80                 return 0;
81         /* offset in TRBs */
82         segment_offset = trb - seg->trbs;
83         if (segment_offset > TRBS_PER_SEGMENT)
84                 return 0;
85         return seg->dma + (segment_offset * sizeof(*trb));
86 }
87
88 /* Does this link TRB point to the first segment in a ring,
89  * or was the previous TRB the last TRB on the last segment in the ERST?
90  */
91 static inline bool last_trb_on_last_seg(struct xhci_hcd *xhci, struct xhci_ring *ring,
92                 struct xhci_segment *seg, union xhci_trb *trb)
93 {
94         if (ring == xhci->event_ring)
95                 return (trb == &seg->trbs[TRBS_PER_SEGMENT]) &&
96                         (seg->next == xhci->event_ring->first_seg);
97         else
98                 return trb->link.control & LINK_TOGGLE;
99 }
100
101 /* Is this TRB a link TRB or was the last TRB the last TRB in this event ring
102  * segment?  I.e. would the updated event TRB pointer step off the end of the
103  * event seg?
104  */
105 static inline int last_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
106                 struct xhci_segment *seg, union xhci_trb *trb)
107 {
108         if (ring == xhci->event_ring)
109                 return trb == &seg->trbs[TRBS_PER_SEGMENT];
110         else
111                 return (trb->link.control & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK);
112 }
113
114 /* Updates trb to point to the next TRB in the ring, and updates seg if the next
115  * TRB is in a new segment.  This does not skip over link TRBs, and it does not
116  * effect the ring dequeue or enqueue pointers.
117  */
118 static void next_trb(struct xhci_hcd *xhci,
119                 struct xhci_ring *ring,
120                 struct xhci_segment **seg,
121                 union xhci_trb **trb)
122 {
123         if (last_trb(xhci, ring, *seg, *trb)) {
124                 *seg = (*seg)->next;
125                 *trb = ((*seg)->trbs);
126         } else {
127                 *trb = (*trb)++;
128         }
129 }
130
131 /*
132  * See Cycle bit rules. SW is the consumer for the event ring only.
133  * Don't make a ring full of link TRBs.  That would be dumb and this would loop.
134  */
135 static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer)
136 {
137         union xhci_trb *next = ++(ring->dequeue);
138         unsigned long long addr;
139
140         ring->deq_updates++;
141         /* Update the dequeue pointer further if that was a link TRB or we're at
142          * the end of an event ring segment (which doesn't have link TRBS)
143          */
144         while (last_trb(xhci, ring, ring->deq_seg, next)) {
145                 if (consumer && last_trb_on_last_seg(xhci, ring, ring->deq_seg, next)) {
146                         ring->cycle_state = (ring->cycle_state ? 0 : 1);
147                         if (!in_interrupt())
148                                 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
149                                                 ring,
150                                                 (unsigned int) ring->cycle_state);
151                 }
152                 ring->deq_seg = ring->deq_seg->next;
153                 ring->dequeue = ring->deq_seg->trbs;
154                 next = ring->dequeue;
155         }
156         addr = (unsigned long long) xhci_trb_virt_to_dma(ring->deq_seg, ring->dequeue);
157         if (ring == xhci->event_ring)
158                 xhci_dbg(xhci, "Event ring deq = 0x%llx (DMA)\n", addr);
159         else if (ring == xhci->cmd_ring)
160                 xhci_dbg(xhci, "Command ring deq = 0x%llx (DMA)\n", addr);
161         else
162                 xhci_dbg(xhci, "Ring deq = 0x%llx (DMA)\n", addr);
163 }
164
165 /*
166  * See Cycle bit rules. SW is the consumer for the event ring only.
167  * Don't make a ring full of link TRBs.  That would be dumb and this would loop.
168  *
169  * If we've just enqueued a TRB that is in the middle of a TD (meaning the
170  * chain bit is set), then set the chain bit in all the following link TRBs.
171  * If we've enqueued the last TRB in a TD, make sure the following link TRBs
172  * have their chain bit cleared (so that each Link TRB is a separate TD).
173  *
174  * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit
175  * set, but other sections talk about dealing with the chain bit set.  This was
176  * fixed in the 0.96 specification errata, but we have to assume that all 0.95
177  * xHCI hardware can't handle the chain bit being cleared on a link TRB.
178  */
179 static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer)
180 {
181         u32 chain;
182         union xhci_trb *next;
183         unsigned long long addr;
184
185         chain = ring->enqueue->generic.field[3] & TRB_CHAIN;
186         next = ++(ring->enqueue);
187
188         ring->enq_updates++;
189         /* Update the dequeue pointer further if that was a link TRB or we're at
190          * the end of an event ring segment (which doesn't have link TRBS)
191          */
192         while (last_trb(xhci, ring, ring->enq_seg, next)) {
193                 if (!consumer) {
194                         if (ring != xhci->event_ring) {
195                                 /* If we're not dealing with 0.95 hardware,
196                                  * carry over the chain bit of the previous TRB
197                                  * (which may mean the chain bit is cleared).
198                                  */
199                                 if (!xhci_link_trb_quirk(xhci)) {
200                                         next->link.control &= ~TRB_CHAIN;
201                                         next->link.control |= chain;
202                                 }
203                                 /* Give this link TRB to the hardware */
204                                 wmb();
205                                 if (next->link.control & TRB_CYCLE)
206                                         next->link.control &= (u32) ~TRB_CYCLE;
207                                 else
208                                         next->link.control |= (u32) TRB_CYCLE;
209                         }
210                         /* Toggle the cycle bit after the last ring segment. */
211                         if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
212                                 ring->cycle_state = (ring->cycle_state ? 0 : 1);
213                                 if (!in_interrupt())
214                                         xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
215                                                         ring,
216                                                         (unsigned int) ring->cycle_state);
217                         }
218                 }
219                 ring->enq_seg = ring->enq_seg->next;
220                 ring->enqueue = ring->enq_seg->trbs;
221                 next = ring->enqueue;
222         }
223         addr = (unsigned long long) xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
224         if (ring == xhci->event_ring)
225                 xhci_dbg(xhci, "Event ring enq = 0x%llx (DMA)\n", addr);
226         else if (ring == xhci->cmd_ring)
227                 xhci_dbg(xhci, "Command ring enq = 0x%llx (DMA)\n", addr);
228         else
229                 xhci_dbg(xhci, "Ring enq = 0x%llx (DMA)\n", addr);
230 }
231
232 /*
233  * Check to see if there's room to enqueue num_trbs on the ring.  See rules
234  * above.
235  * FIXME: this would be simpler and faster if we just kept track of the number
236  * of free TRBs in a ring.
237  */
238 static int room_on_ring(struct xhci_hcd *xhci, struct xhci_ring *ring,
239                 unsigned int num_trbs)
240 {
241         int i;
242         union xhci_trb *enq = ring->enqueue;
243         struct xhci_segment *enq_seg = ring->enq_seg;
244
245         /* Check if ring is empty */
246         if (enq == ring->dequeue)
247                 return 1;
248         /* Make sure there's an extra empty TRB available */
249         for (i = 0; i <= num_trbs; ++i) {
250                 if (enq == ring->dequeue)
251                         return 0;
252                 enq++;
253                 while (last_trb(xhci, ring, enq_seg, enq)) {
254                         enq_seg = enq_seg->next;
255                         enq = enq_seg->trbs;
256                 }
257         }
258         return 1;
259 }
260
261 void xhci_set_hc_event_deq(struct xhci_hcd *xhci)
262 {
263         u64 temp;
264         dma_addr_t deq;
265
266         deq = xhci_trb_virt_to_dma(xhci->event_ring->deq_seg,
267                         xhci->event_ring->dequeue);
268         if (deq == 0 && !in_interrupt())
269                 xhci_warn(xhci, "WARN something wrong with SW event ring "
270                                 "dequeue ptr.\n");
271         /* Update HC event ring dequeue pointer */
272         temp = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
273         temp &= ERST_PTR_MASK;
274         /* Don't clear the EHB bit (which is RW1C) because
275          * there might be more events to service.
276          */
277         temp &= ~ERST_EHB;
278         xhci_dbg(xhci, "// Write event ring dequeue pointer, preserving EHB bit\n");
279         xhci_write_64(xhci, ((u64) deq & (u64) ~ERST_PTR_MASK) | temp,
280                         &xhci->ir_set->erst_dequeue);
281 }
282
283 /* Ring the host controller doorbell after placing a command on the ring */
284 void xhci_ring_cmd_db(struct xhci_hcd *xhci)
285 {
286         u32 temp;
287
288         xhci_dbg(xhci, "// Ding dong!\n");
289         temp = xhci_readl(xhci, &xhci->dba->doorbell[0]) & DB_MASK;
290         xhci_writel(xhci, temp | DB_TARGET_HOST, &xhci->dba->doorbell[0]);
291         /* Flush PCI posted writes */
292         xhci_readl(xhci, &xhci->dba->doorbell[0]);
293 }
294
295 static void ring_ep_doorbell(struct xhci_hcd *xhci,
296                 unsigned int slot_id,
297                 unsigned int ep_index)
298 {
299         struct xhci_virt_ep *ep;
300         unsigned int ep_state;
301         u32 field;
302         __u32 __iomem *db_addr = &xhci->dba->doorbell[slot_id];
303
304         ep = &xhci->devs[slot_id]->eps[ep_index];
305         ep_state = ep->ep_state;
306         /* Don't ring the doorbell for this endpoint if there are pending
307          * cancellations because the we don't want to interrupt processing.
308          */
309         if (!(ep_state & EP_HALT_PENDING) && !(ep_state & SET_DEQ_PENDING)
310                         && !(ep_state & EP_HALTED)) {
311                 field = xhci_readl(xhci, db_addr) & DB_MASK;
312                 xhci_writel(xhci, field | EPI_TO_DB(ep_index), db_addr);
313                 /* Flush PCI posted writes - FIXME Matthew Wilcox says this
314                  * isn't time-critical and we shouldn't make the CPU wait for
315                  * the flush.
316                  */
317                 xhci_readl(xhci, db_addr);
318         }
319 }
320
321 /*
322  * Find the segment that trb is in.  Start searching in start_seg.
323  * If we must move past a segment that has a link TRB with a toggle cycle state
324  * bit set, then we will toggle the value pointed at by cycle_state.
325  */
326 static struct xhci_segment *find_trb_seg(
327                 struct xhci_segment *start_seg,
328                 union xhci_trb  *trb, int *cycle_state)
329 {
330         struct xhci_segment *cur_seg = start_seg;
331         struct xhci_generic_trb *generic_trb;
332
333         while (cur_seg->trbs > trb ||
334                         &cur_seg->trbs[TRBS_PER_SEGMENT - 1] < trb) {
335                 generic_trb = &cur_seg->trbs[TRBS_PER_SEGMENT - 1].generic;
336                 if (TRB_TYPE(generic_trb->field[3]) == TRB_LINK &&
337                                 (generic_trb->field[3] & LINK_TOGGLE))
338                         *cycle_state = ~(*cycle_state) & 0x1;
339                 cur_seg = cur_seg->next;
340                 if (cur_seg == start_seg)
341                         /* Looped over the entire list.  Oops! */
342                         return 0;
343         }
344         return cur_seg;
345 }
346
347 /*
348  * Move the xHC's endpoint ring dequeue pointer past cur_td.
349  * Record the new state of the xHC's endpoint ring dequeue segment,
350  * dequeue pointer, and new consumer cycle state in state.
351  * Update our internal representation of the ring's dequeue pointer.
352  *
353  * We do this in three jumps:
354  *  - First we update our new ring state to be the same as when the xHC stopped.
355  *  - Then we traverse the ring to find the segment that contains
356  *    the last TRB in the TD.  We toggle the xHC's new cycle state when we pass
357  *    any link TRBs with the toggle cycle bit set.
358  *  - Finally we move the dequeue state one TRB further, toggling the cycle bit
359  *    if we've moved it past a link TRB with the toggle cycle bit set.
360  */
361 void xhci_find_new_dequeue_state(struct xhci_hcd *xhci,
362                 unsigned int slot_id, unsigned int ep_index,
363                 struct xhci_td *cur_td, struct xhci_dequeue_state *state)
364 {
365         struct xhci_virt_device *dev = xhci->devs[slot_id];
366         struct xhci_ring *ep_ring = dev->eps[ep_index].ring;
367         struct xhci_generic_trb *trb;
368         struct xhci_ep_ctx *ep_ctx;
369         dma_addr_t addr;
370
371         state->new_cycle_state = 0;
372         xhci_dbg(xhci, "Finding segment containing stopped TRB.\n");
373         state->new_deq_seg = find_trb_seg(cur_td->start_seg,
374                         dev->eps[ep_index].stopped_trb,
375                         &state->new_cycle_state);
376         if (!state->new_deq_seg)
377                 BUG();
378         /* Dig out the cycle state saved by the xHC during the stop ep cmd */
379         xhci_dbg(xhci, "Finding endpoint context\n");
380         ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
381         state->new_cycle_state = 0x1 & ep_ctx->deq;
382
383         state->new_deq_ptr = cur_td->last_trb;
384         xhci_dbg(xhci, "Finding segment containing last TRB in TD.\n");
385         state->new_deq_seg = find_trb_seg(state->new_deq_seg,
386                         state->new_deq_ptr,
387                         &state->new_cycle_state);
388         if (!state->new_deq_seg)
389                 BUG();
390
391         trb = &state->new_deq_ptr->generic;
392         if (TRB_TYPE(trb->field[3]) == TRB_LINK &&
393                                 (trb->field[3] & LINK_TOGGLE))
394                 state->new_cycle_state = ~(state->new_cycle_state) & 0x1;
395         next_trb(xhci, ep_ring, &state->new_deq_seg, &state->new_deq_ptr);
396
397         /* Don't update the ring cycle state for the producer (us). */
398         xhci_dbg(xhci, "New dequeue segment = %p (virtual)\n",
399                         state->new_deq_seg);
400         addr = xhci_trb_virt_to_dma(state->new_deq_seg, state->new_deq_ptr);
401         xhci_dbg(xhci, "New dequeue pointer = 0x%llx (DMA)\n",
402                         (unsigned long long) addr);
403         xhci_dbg(xhci, "Setting dequeue pointer in internal ring state.\n");
404         ep_ring->dequeue = state->new_deq_ptr;
405         ep_ring->deq_seg = state->new_deq_seg;
406 }
407
408 static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
409                 struct xhci_td *cur_td)
410 {
411         struct xhci_segment *cur_seg;
412         union xhci_trb *cur_trb;
413
414         for (cur_seg = cur_td->start_seg, cur_trb = cur_td->first_trb;
415                         true;
416                         next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
417                 if ((cur_trb->generic.field[3] & TRB_TYPE_BITMASK) ==
418                                 TRB_TYPE(TRB_LINK)) {
419                         /* Unchain any chained Link TRBs, but
420                          * leave the pointers intact.
421                          */
422                         cur_trb->generic.field[3] &= ~TRB_CHAIN;
423                         xhci_dbg(xhci, "Cancel (unchain) link TRB\n");
424                         xhci_dbg(xhci, "Address = %p (0x%llx dma); "
425                                         "in seg %p (0x%llx dma)\n",
426                                         cur_trb,
427                                         (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
428                                         cur_seg,
429                                         (unsigned long long)cur_seg->dma);
430                 } else {
431                         cur_trb->generic.field[0] = 0;
432                         cur_trb->generic.field[1] = 0;
433                         cur_trb->generic.field[2] = 0;
434                         /* Preserve only the cycle bit of this TRB */
435                         cur_trb->generic.field[3] &= TRB_CYCLE;
436                         cur_trb->generic.field[3] |= TRB_TYPE(TRB_TR_NOOP);
437                         xhci_dbg(xhci, "Cancel TRB %p (0x%llx dma) "
438                                         "in seg %p (0x%llx dma)\n",
439                                         cur_trb,
440                                         (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
441                                         cur_seg,
442                                         (unsigned long long)cur_seg->dma);
443                 }
444                 if (cur_trb == cur_td->last_trb)
445                         break;
446         }
447 }
448
449 static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
450                 unsigned int ep_index, struct xhci_segment *deq_seg,
451                 union xhci_trb *deq_ptr, u32 cycle_state);
452
453 void xhci_queue_new_dequeue_state(struct xhci_hcd *xhci,
454                 unsigned int slot_id, unsigned int ep_index,
455                 struct xhci_dequeue_state *deq_state)
456 {
457         struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
458
459         xhci_dbg(xhci, "Set TR Deq Ptr cmd, new deq seg = %p (0x%llx dma), "
460                         "new deq ptr = %p (0x%llx dma), new cycle = %u\n",
461                         deq_state->new_deq_seg,
462                         (unsigned long long)deq_state->new_deq_seg->dma,
463                         deq_state->new_deq_ptr,
464                         (unsigned long long)xhci_trb_virt_to_dma(deq_state->new_deq_seg, deq_state->new_deq_ptr),
465                         deq_state->new_cycle_state);
466         queue_set_tr_deq(xhci, slot_id, ep_index,
467                         deq_state->new_deq_seg,
468                         deq_state->new_deq_ptr,
469                         (u32) deq_state->new_cycle_state);
470         /* Stop the TD queueing code from ringing the doorbell until
471          * this command completes.  The HC won't set the dequeue pointer
472          * if the ring is running, and ringing the doorbell starts the
473          * ring running.
474          */
475         ep->ep_state |= SET_DEQ_PENDING;
476 }
477
478 static inline void xhci_stop_watchdog_timer_in_irq(struct xhci_hcd *xhci,
479                 struct xhci_virt_ep *ep)
480 {
481         ep->ep_state &= ~EP_HALT_PENDING;
482         /* Can't del_timer_sync in interrupt, so we attempt to cancel.  If the
483          * timer is running on another CPU, we don't decrement stop_cmds_pending
484          * (since we didn't successfully stop the watchdog timer).
485          */
486         if (del_timer(&ep->stop_cmd_timer))
487                 ep->stop_cmds_pending--;
488 }
489
490 /* Must be called with xhci->lock held in interrupt context */
491 static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci,
492                 struct xhci_td *cur_td, int status, char *adjective)
493 {
494         struct usb_hcd *hcd = xhci_to_hcd(xhci);
495
496         cur_td->urb->hcpriv = NULL;
497         usb_hcd_unlink_urb_from_ep(hcd, cur_td->urb);
498         xhci_dbg(xhci, "Giveback %s URB %p\n", adjective, cur_td->urb);
499
500         spin_unlock(&xhci->lock);
501         usb_hcd_giveback_urb(hcd, cur_td->urb, status);
502         kfree(cur_td);
503         spin_lock(&xhci->lock);
504         xhci_dbg(xhci, "%s URB given back\n", adjective);
505 }
506
507 /*
508  * When we get a command completion for a Stop Endpoint Command, we need to
509  * unlink any cancelled TDs from the ring.  There are two ways to do that:
510  *
511  *  1. If the HW was in the middle of processing the TD that needs to be
512  *     cancelled, then we must move the ring's dequeue pointer past the last TRB
513  *     in the TD with a Set Dequeue Pointer Command.
514  *  2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain
515  *     bit cleared) so that the HW will skip over them.
516  */
517 static void handle_stopped_endpoint(struct xhci_hcd *xhci,
518                 union xhci_trb *trb)
519 {
520         unsigned int slot_id;
521         unsigned int ep_index;
522         struct xhci_ring *ep_ring;
523         struct xhci_virt_ep *ep;
524         struct list_head *entry;
525         struct xhci_td *cur_td = 0;
526         struct xhci_td *last_unlinked_td;
527
528         struct xhci_dequeue_state deq_state;
529 #ifdef CONFIG_USB_HCD_STAT
530         ktime_t stop_time = ktime_get();
531 #endif
532
533         memset(&deq_state, 0, sizeof(deq_state));
534         slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
535         ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
536         ep = &xhci->devs[slot_id]->eps[ep_index];
537         ep_ring = ep->ring;
538
539         if (list_empty(&ep->cancelled_td_list)) {
540                 xhci_stop_watchdog_timer_in_irq(xhci, ep);
541                 ring_ep_doorbell(xhci, slot_id, ep_index);
542                 return;
543         }
544
545         /* Fix up the ep ring first, so HW stops executing cancelled TDs.
546          * We have the xHCI lock, so nothing can modify this list until we drop
547          * it.  We're also in the event handler, so we can't get re-interrupted
548          * if another Stop Endpoint command completes
549          */
550         list_for_each(entry, &ep->cancelled_td_list) {
551                 cur_td = list_entry(entry, struct xhci_td, cancelled_td_list);
552                 xhci_dbg(xhci, "Cancelling TD starting at %p, 0x%llx (dma).\n",
553                                 cur_td->first_trb,
554                                 (unsigned long long)xhci_trb_virt_to_dma(cur_td->start_seg, cur_td->first_trb));
555                 /*
556                  * If we stopped on the TD we need to cancel, then we have to
557                  * move the xHC endpoint ring dequeue pointer past this TD.
558                  */
559                 if (cur_td == ep->stopped_td)
560                         xhci_find_new_dequeue_state(xhci, slot_id, ep_index, cur_td,
561                                         &deq_state);
562                 else
563                         td_to_noop(xhci, ep_ring, cur_td);
564                 /*
565                  * The event handler won't see a completion for this TD anymore,
566                  * so remove it from the endpoint ring's TD list.  Keep it in
567                  * the cancelled TD list for URB completion later.
568                  */
569                 list_del(&cur_td->td_list);
570         }
571         last_unlinked_td = cur_td;
572         xhci_stop_watchdog_timer_in_irq(xhci, ep);
573
574         /* If necessary, queue a Set Transfer Ring Dequeue Pointer command */
575         if (deq_state.new_deq_ptr && deq_state.new_deq_seg) {
576                 xhci_queue_new_dequeue_state(xhci,
577                                 slot_id, ep_index, &deq_state);
578                 xhci_ring_cmd_db(xhci);
579         } else {
580                 /* Otherwise just ring the doorbell to restart the ring */
581                 ring_ep_doorbell(xhci, slot_id, ep_index);
582         }
583
584         /*
585          * Drop the lock and complete the URBs in the cancelled TD list.
586          * New TDs to be cancelled might be added to the end of the list before
587          * we can complete all the URBs for the TDs we already unlinked.
588          * So stop when we've completed the URB for the last TD we unlinked.
589          */
590         do {
591                 cur_td = list_entry(ep->cancelled_td_list.next,
592                                 struct xhci_td, cancelled_td_list);
593                 list_del(&cur_td->cancelled_td_list);
594
595                 /* Clean up the cancelled URB */
596 #ifdef CONFIG_USB_HCD_STAT
597                 hcd_stat_update(xhci->tp_stat, cur_td->urb->actual_length,
598                                 ktime_sub(stop_time, cur_td->start_time));
599 #endif
600                 /* Doesn't matter what we pass for status, since the core will
601                  * just overwrite it (because the URB has been unlinked).
602                  */
603                 xhci_giveback_urb_in_irq(xhci, cur_td, 0, "cancelled");
604
605                 /* Stop processing the cancelled list if the watchdog timer is
606                  * running.
607                  */
608                 if (xhci->xhc_state & XHCI_STATE_DYING)
609                         return;
610         } while (cur_td != last_unlinked_td);
611
612         /* Return to the event handler with xhci->lock re-acquired */
613 }
614
615 /* Watchdog timer function for when a stop endpoint command fails to complete.
616  * In this case, we assume the host controller is broken or dying or dead.  The
617  * host may still be completing some other events, so we have to be careful to
618  * let the event ring handler and the URB dequeueing/enqueueing functions know
619  * through xhci->state.
620  *
621  * The timer may also fire if the host takes a very long time to respond to the
622  * command, and the stop endpoint command completion handler cannot delete the
623  * timer before the timer function is called.  Another endpoint cancellation may
624  * sneak in before the timer function can grab the lock, and that may queue
625  * another stop endpoint command and add the timer back.  So we cannot use a
626  * simple flag to say whether there is a pending stop endpoint command for a
627  * particular endpoint.
628  *
629  * Instead we use a combination of that flag and a counter for the number of
630  * pending stop endpoint commands.  If the timer is the tail end of the last
631  * stop endpoint command, and the endpoint's command is still pending, we assume
632  * the host is dying.
633  */
634 void xhci_stop_endpoint_command_watchdog(unsigned long arg)
635 {
636         struct xhci_hcd *xhci;
637         struct xhci_virt_ep *ep;
638         struct xhci_virt_ep *temp_ep;
639         struct xhci_ring *ring;
640         struct xhci_td *cur_td;
641         int ret, i, j;
642
643         ep = (struct xhci_virt_ep *) arg;
644         xhci = ep->xhci;
645
646         spin_lock(&xhci->lock);
647
648         ep->stop_cmds_pending--;
649         if (xhci->xhc_state & XHCI_STATE_DYING) {
650                 xhci_dbg(xhci, "Stop EP timer ran, but another timer marked "
651                                 "xHCI as DYING, exiting.\n");
652                 spin_unlock(&xhci->lock);
653                 return;
654         }
655         if (!(ep->stop_cmds_pending == 0 && (ep->ep_state & EP_HALT_PENDING))) {
656                 xhci_dbg(xhci, "Stop EP timer ran, but no command pending, "
657                                 "exiting.\n");
658                 spin_unlock(&xhci->lock);
659                 return;
660         }
661
662         xhci_warn(xhci, "xHCI host not responding to stop endpoint command.\n");
663         xhci_warn(xhci, "Assuming host is dying, halting host.\n");
664         /* Oops, HC is dead or dying or at least not responding to the stop
665          * endpoint command.
666          */
667         xhci->xhc_state |= XHCI_STATE_DYING;
668         /* Disable interrupts from the host controller and start halting it */
669         xhci_quiesce(xhci);
670         spin_unlock(&xhci->lock);
671
672         ret = xhci_halt(xhci);
673
674         spin_lock(&xhci->lock);
675         if (ret < 0) {
676                 /* This is bad; the host is not responding to commands and it's
677                  * not allowing itself to be halted.  At least interrupts are
678                  * disabled, so we can set HC_STATE_HALT and notify the
679                  * USB core.  But if we call usb_hc_died(), it will attempt to
680                  * disconnect all device drivers under this host.  Those
681                  * disconnect() methods will wait for all URBs to be unlinked,
682                  * so we must complete them.
683                  */
684                 xhci_warn(xhci, "Non-responsive xHCI host is not halting.\n");
685                 xhci_warn(xhci, "Completing active URBs anyway.\n");
686                 /* We could turn all TDs on the rings to no-ops.  This won't
687                  * help if the host has cached part of the ring, and is slow if
688                  * we want to preserve the cycle bit.  Skip it and hope the host
689                  * doesn't touch the memory.
690                  */
691         }
692         for (i = 0; i < MAX_HC_SLOTS; i++) {
693                 if (!xhci->devs[i])
694                         continue;
695                 for (j = 0; j < 31; j++) {
696                         temp_ep = &xhci->devs[i]->eps[j];
697                         ring = temp_ep->ring;
698                         if (!ring)
699                                 continue;
700                         xhci_dbg(xhci, "Killing URBs for slot ID %u, "
701                                         "ep index %u\n", i, j);
702                         while (!list_empty(&ring->td_list)) {
703                                 cur_td = list_first_entry(&ring->td_list,
704                                                 struct xhci_td,
705                                                 td_list);
706                                 list_del(&cur_td->td_list);
707                                 if (!list_empty(&cur_td->cancelled_td_list))
708                                         list_del(&cur_td->cancelled_td_list);
709                                 xhci_giveback_urb_in_irq(xhci, cur_td,
710                                                 -ESHUTDOWN, "killed");
711                         }
712                         while (!list_empty(&temp_ep->cancelled_td_list)) {
713                                 cur_td = list_first_entry(
714                                                 &temp_ep->cancelled_td_list,
715                                                 struct xhci_td,
716                                                 cancelled_td_list);
717                                 list_del(&cur_td->cancelled_td_list);
718                                 xhci_giveback_urb_in_irq(xhci, cur_td,
719                                                 -ESHUTDOWN, "killed");
720                         }
721                 }
722         }
723         spin_unlock(&xhci->lock);
724         xhci_to_hcd(xhci)->state = HC_STATE_HALT;
725         xhci_dbg(xhci, "Calling usb_hc_died()\n");
726         usb_hc_died(xhci_to_hcd(xhci));
727         xhci_dbg(xhci, "xHCI host controller is dead.\n");
728 }
729
730 /*
731  * When we get a completion for a Set Transfer Ring Dequeue Pointer command,
732  * we need to clear the set deq pending flag in the endpoint ring state, so that
733  * the TD queueing code can ring the doorbell again.  We also need to ring the
734  * endpoint doorbell to restart the ring, but only if there aren't more
735  * cancellations pending.
736  */
737 static void handle_set_deq_completion(struct xhci_hcd *xhci,
738                 struct xhci_event_cmd *event,
739                 union xhci_trb *trb)
740 {
741         unsigned int slot_id;
742         unsigned int ep_index;
743         struct xhci_ring *ep_ring;
744         struct xhci_virt_device *dev;
745         struct xhci_ep_ctx *ep_ctx;
746         struct xhci_slot_ctx *slot_ctx;
747
748         slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
749         ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
750         dev = xhci->devs[slot_id];
751         ep_ring = dev->eps[ep_index].ring;
752         ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
753         slot_ctx = xhci_get_slot_ctx(xhci, dev->out_ctx);
754
755         if (GET_COMP_CODE(event->status) != COMP_SUCCESS) {
756                 unsigned int ep_state;
757                 unsigned int slot_state;
758
759                 switch (GET_COMP_CODE(event->status)) {
760                 case COMP_TRB_ERR:
761                         xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because "
762                                         "of stream ID configuration\n");
763                         break;
764                 case COMP_CTX_STATE:
765                         xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due "
766                                         "to incorrect slot or ep state.\n");
767                         ep_state = ep_ctx->ep_info;
768                         ep_state &= EP_STATE_MASK;
769                         slot_state = slot_ctx->dev_state;
770                         slot_state = GET_SLOT_STATE(slot_state);
771                         xhci_dbg(xhci, "Slot state = %u, EP state = %u\n",
772                                         slot_state, ep_state);
773                         break;
774                 case COMP_EBADSLT:
775                         xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because "
776                                         "slot %u was not enabled.\n", slot_id);
777                         break;
778                 default:
779                         xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown "
780                                         "completion code of %u.\n",
781                                         GET_COMP_CODE(event->status));
782                         break;
783                 }
784                 /* OK what do we do now?  The endpoint state is hosed, and we
785                  * should never get to this point if the synchronization between
786                  * queueing, and endpoint state are correct.  This might happen
787                  * if the device gets disconnected after we've finished
788                  * cancelling URBs, which might not be an error...
789                  */
790         } else {
791                 xhci_dbg(xhci, "Successful Set TR Deq Ptr cmd, deq = @%08llx\n",
792                                 ep_ctx->deq);
793         }
794
795         dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
796         ring_ep_doorbell(xhci, slot_id, ep_index);
797 }
798
799 static void handle_reset_ep_completion(struct xhci_hcd *xhci,
800                 struct xhci_event_cmd *event,
801                 union xhci_trb *trb)
802 {
803         int slot_id;
804         unsigned int ep_index;
805         struct xhci_ring *ep_ring;
806
807         slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
808         ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
809         ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
810         /* This command will only fail if the endpoint wasn't halted,
811          * but we don't care.
812          */
813         xhci_dbg(xhci, "Ignoring reset ep completion code of %u\n",
814                         (unsigned int) GET_COMP_CODE(event->status));
815
816         /* HW with the reset endpoint quirk needs to have a configure endpoint
817          * command complete before the endpoint can be used.  Queue that here
818          * because the HW can't handle two commands being queued in a row.
819          */
820         if (xhci->quirks & XHCI_RESET_EP_QUIRK) {
821                 xhci_dbg(xhci, "Queueing configure endpoint command\n");
822                 xhci_queue_configure_endpoint(xhci,
823                                 xhci->devs[slot_id]->in_ctx->dma, slot_id,
824                                 false);
825                 xhci_ring_cmd_db(xhci);
826         } else {
827                 /* Clear our internal halted state and restart the ring */
828                 xhci->devs[slot_id]->eps[ep_index].ep_state &= ~EP_HALTED;
829                 ring_ep_doorbell(xhci, slot_id, ep_index);
830         }
831 }
832
833 /* Check to see if a command in the device's command queue matches this one.
834  * Signal the completion or free the command, and return 1.  Return 0 if the
835  * completed command isn't at the head of the command list.
836  */
837 static int handle_cmd_in_cmd_wait_list(struct xhci_hcd *xhci,
838                 struct xhci_virt_device *virt_dev,
839                 struct xhci_event_cmd *event)
840 {
841         struct xhci_command *command;
842
843         if (list_empty(&virt_dev->cmd_list))
844                 return 0;
845
846         command = list_entry(virt_dev->cmd_list.next,
847                         struct xhci_command, cmd_list);
848         if (xhci->cmd_ring->dequeue != command->command_trb)
849                 return 0;
850
851         command->status =
852                 GET_COMP_CODE(event->status);
853         list_del(&command->cmd_list);
854         if (command->completion)
855                 complete(command->completion);
856         else
857                 xhci_free_command(xhci, command);
858         return 1;
859 }
860
861 static void handle_cmd_completion(struct xhci_hcd *xhci,
862                 struct xhci_event_cmd *event)
863 {
864         int slot_id = TRB_TO_SLOT_ID(event->flags);
865         u64 cmd_dma;
866         dma_addr_t cmd_dequeue_dma;
867         struct xhci_input_control_ctx *ctrl_ctx;
868         struct xhci_virt_device *virt_dev;
869         unsigned int ep_index;
870         struct xhci_ring *ep_ring;
871         unsigned int ep_state;
872
873         cmd_dma = event->cmd_trb;
874         cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
875                         xhci->cmd_ring->dequeue);
876         /* Is the command ring deq ptr out of sync with the deq seg ptr? */
877         if (cmd_dequeue_dma == 0) {
878                 xhci->error_bitmask |= 1 << 4;
879                 return;
880         }
881         /* Does the DMA address match our internal dequeue pointer address? */
882         if (cmd_dma != (u64) cmd_dequeue_dma) {
883                 xhci->error_bitmask |= 1 << 5;
884                 return;
885         }
886         switch (xhci->cmd_ring->dequeue->generic.field[3] & TRB_TYPE_BITMASK) {
887         case TRB_TYPE(TRB_ENABLE_SLOT):
888                 if (GET_COMP_CODE(event->status) == COMP_SUCCESS)
889                         xhci->slot_id = slot_id;
890                 else
891                         xhci->slot_id = 0;
892                 complete(&xhci->addr_dev);
893                 break;
894         case TRB_TYPE(TRB_DISABLE_SLOT):
895                 if (xhci->devs[slot_id])
896                         xhci_free_virt_device(xhci, slot_id);
897                 break;
898         case TRB_TYPE(TRB_CONFIG_EP):
899                 virt_dev = xhci->devs[slot_id];
900                 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
901                         break;
902                 /*
903                  * Configure endpoint commands can come from the USB core
904                  * configuration or alt setting changes, or because the HW
905                  * needed an extra configure endpoint command after a reset
906                  * endpoint command.  In the latter case, the xHCI driver is
907                  * not waiting on the configure endpoint command.
908                  */
909                 ctrl_ctx = xhci_get_input_control_ctx(xhci,
910                                 virt_dev->in_ctx);
911                 /* Input ctx add_flags are the endpoint index plus one */
912                 ep_index = xhci_last_valid_endpoint(ctrl_ctx->add_flags) - 1;
913                 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
914                 if (!ep_ring) {
915                         /* This must have been an initial configure endpoint */
916                         xhci->devs[slot_id]->cmd_status =
917                                 GET_COMP_CODE(event->status);
918                         complete(&xhci->devs[slot_id]->cmd_completion);
919                         break;
920                 }
921                 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
922                 xhci_dbg(xhci, "Completed config ep cmd - last ep index = %d, "
923                                 "state = %d\n", ep_index, ep_state);
924                 if (xhci->quirks & XHCI_RESET_EP_QUIRK &&
925                                 ep_state & EP_HALTED) {
926                         /* Clear our internal halted state and restart ring */
927                         xhci->devs[slot_id]->eps[ep_index].ep_state &=
928                                 ~EP_HALTED;
929                         ring_ep_doorbell(xhci, slot_id, ep_index);
930                 } else {
931                         xhci->devs[slot_id]->cmd_status =
932                                 GET_COMP_CODE(event->status);
933                         complete(&xhci->devs[slot_id]->cmd_completion);
934                 }
935                 break;
936         case TRB_TYPE(TRB_EVAL_CONTEXT):
937                 virt_dev = xhci->devs[slot_id];
938                 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
939                         break;
940                 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
941                 complete(&xhci->devs[slot_id]->cmd_completion);
942                 break;
943         case TRB_TYPE(TRB_ADDR_DEV):
944                 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
945                 complete(&xhci->addr_dev);
946                 break;
947         case TRB_TYPE(TRB_STOP_RING):
948                 handle_stopped_endpoint(xhci, xhci->cmd_ring->dequeue);
949                 break;
950         case TRB_TYPE(TRB_SET_DEQ):
951                 handle_set_deq_completion(xhci, event, xhci->cmd_ring->dequeue);
952                 break;
953         case TRB_TYPE(TRB_CMD_NOOP):
954                 ++xhci->noops_handled;
955                 break;
956         case TRB_TYPE(TRB_RESET_EP):
957                 handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue);
958                 break;
959         default:
960                 /* Skip over unknown commands on the event ring */
961                 xhci->error_bitmask |= 1 << 6;
962                 break;
963         }
964         inc_deq(xhci, xhci->cmd_ring, false);
965 }
966
967 static void handle_port_status(struct xhci_hcd *xhci,
968                 union xhci_trb *event)
969 {
970         u32 port_id;
971
972         /* Port status change events always have a successful completion code */
973         if (GET_COMP_CODE(event->generic.field[2]) != COMP_SUCCESS) {
974                 xhci_warn(xhci, "WARN: xHC returned failed port status event\n");
975                 xhci->error_bitmask |= 1 << 8;
976         }
977         /* FIXME: core doesn't care about all port link state changes yet */
978         port_id = GET_PORT_ID(event->generic.field[0]);
979         xhci_dbg(xhci, "Port Status Change Event for port %d\n", port_id);
980
981         /* Update event ring dequeue pointer before dropping the lock */
982         inc_deq(xhci, xhci->event_ring, true);
983         xhci_set_hc_event_deq(xhci);
984
985         spin_unlock(&xhci->lock);
986         /* Pass this up to the core */
987         usb_hcd_poll_rh_status(xhci_to_hcd(xhci));
988         spin_lock(&xhci->lock);
989 }
990
991 /*
992  * This TD is defined by the TRBs starting at start_trb in start_seg and ending
993  * at end_trb, which may be in another segment.  If the suspect DMA address is a
994  * TRB in this TD, this function returns that TRB's segment.  Otherwise it
995  * returns 0.
996  */
997 static struct xhci_segment *trb_in_td(
998                 struct xhci_segment *start_seg,
999                 union xhci_trb  *start_trb,
1000                 union xhci_trb  *end_trb,
1001                 dma_addr_t      suspect_dma)
1002 {
1003         dma_addr_t start_dma;
1004         dma_addr_t end_seg_dma;
1005         dma_addr_t end_trb_dma;
1006         struct xhci_segment *cur_seg;
1007
1008         start_dma = xhci_trb_virt_to_dma(start_seg, start_trb);
1009         cur_seg = start_seg;
1010
1011         do {
1012                 if (start_dma == 0)
1013                         return 0;
1014                 /* We may get an event for a Link TRB in the middle of a TD */
1015                 end_seg_dma = xhci_trb_virt_to_dma(cur_seg,
1016                                 &cur_seg->trbs[TRBS_PER_SEGMENT - 1]);
1017                 /* If the end TRB isn't in this segment, this is set to 0 */
1018                 end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb);
1019
1020                 if (end_trb_dma > 0) {
1021                         /* The end TRB is in this segment, so suspect should be here */
1022                         if (start_dma <= end_trb_dma) {
1023                                 if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma)
1024                                         return cur_seg;
1025                         } else {
1026                                 /* Case for one segment with
1027                                  * a TD wrapped around to the top
1028                                  */
1029                                 if ((suspect_dma >= start_dma &&
1030                                                         suspect_dma <= end_seg_dma) ||
1031                                                 (suspect_dma >= cur_seg->dma &&
1032                                                  suspect_dma <= end_trb_dma))
1033                                         return cur_seg;
1034                         }
1035                         return 0;
1036                 } else {
1037                         /* Might still be somewhere in this segment */
1038                         if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma)
1039                                 return cur_seg;
1040                 }
1041                 cur_seg = cur_seg->next;
1042                 start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]);
1043         } while (cur_seg != start_seg);
1044
1045         return 0;
1046 }
1047
1048 /*
1049  * If this function returns an error condition, it means it got a Transfer
1050  * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address.
1051  * At this point, the host controller is probably hosed and should be reset.
1052  */
1053 static int handle_tx_event(struct xhci_hcd *xhci,
1054                 struct xhci_transfer_event *event)
1055 {
1056         struct xhci_virt_device *xdev;
1057         struct xhci_virt_ep *ep;
1058         struct xhci_ring *ep_ring;
1059         unsigned int slot_id;
1060         int ep_index;
1061         struct xhci_td *td = 0;
1062         dma_addr_t event_dma;
1063         struct xhci_segment *event_seg;
1064         union xhci_trb *event_trb;
1065         struct urb *urb = 0;
1066         int status = -EINPROGRESS;
1067         struct xhci_ep_ctx *ep_ctx;
1068         u32 trb_comp_code;
1069
1070         xhci_dbg(xhci, "In %s\n", __func__);
1071         slot_id = TRB_TO_SLOT_ID(event->flags);
1072         xdev = xhci->devs[slot_id];
1073         if (!xdev) {
1074                 xhci_err(xhci, "ERROR Transfer event pointed to bad slot\n");
1075                 return -ENODEV;
1076         }
1077
1078         /* Endpoint ID is 1 based, our index is zero based */
1079         ep_index = TRB_TO_EP_ID(event->flags) - 1;
1080         xhci_dbg(xhci, "%s - ep index = %d\n", __func__, ep_index);
1081         ep = &xdev->eps[ep_index];
1082         ep_ring = ep->ring;
1083         ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
1084         if (!ep_ring || (ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_DISABLED) {
1085                 xhci_err(xhci, "ERROR Transfer event pointed to disabled endpoint\n");
1086                 return -ENODEV;
1087         }
1088
1089         event_dma = event->buffer;
1090         /* This TRB should be in the TD at the head of this ring's TD list */
1091         xhci_dbg(xhci, "%s - checking for list empty\n", __func__);
1092         if (list_empty(&ep_ring->td_list)) {
1093                 xhci_warn(xhci, "WARN Event TRB for slot %d ep %d with no TDs queued?\n",
1094                                 TRB_TO_SLOT_ID(event->flags), ep_index);
1095                 xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
1096                                 (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10);
1097                 xhci_print_trb_offsets(xhci, (union xhci_trb *) event);
1098                 urb = NULL;
1099                 goto cleanup;
1100         }
1101         xhci_dbg(xhci, "%s - getting list entry\n", __func__);
1102         td = list_entry(ep_ring->td_list.next, struct xhci_td, td_list);
1103
1104         /* Is this a TRB in the currently executing TD? */
1105         xhci_dbg(xhci, "%s - looking for TD\n", __func__);
1106         event_seg = trb_in_td(ep_ring->deq_seg, ep_ring->dequeue,
1107                         td->last_trb, event_dma);
1108         xhci_dbg(xhci, "%s - found event_seg = %p\n", __func__, event_seg);
1109         if (!event_seg) {
1110                 /* HC is busted, give up! */
1111                 xhci_err(xhci, "ERROR Transfer event TRB DMA ptr not part of current TD\n");
1112                 return -ESHUTDOWN;
1113         }
1114         event_trb = &event_seg->trbs[(event_dma - event_seg->dma) / sizeof(*event_trb)];
1115         xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
1116                         (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10);
1117         xhci_dbg(xhci, "Offset 0x00 (buffer lo) = 0x%x\n",
1118                         lower_32_bits(event->buffer));
1119         xhci_dbg(xhci, "Offset 0x04 (buffer hi) = 0x%x\n",
1120                         upper_32_bits(event->buffer));
1121         xhci_dbg(xhci, "Offset 0x08 (transfer length) = 0x%x\n",
1122                         (unsigned int) event->transfer_len);
1123         xhci_dbg(xhci, "Offset 0x0C (flags) = 0x%x\n",
1124                         (unsigned int) event->flags);
1125
1126         /* Look for common error cases */
1127         trb_comp_code = GET_COMP_CODE(event->transfer_len);
1128         switch (trb_comp_code) {
1129         /* Skip codes that require special handling depending on
1130          * transfer type
1131          */
1132         case COMP_SUCCESS:
1133         case COMP_SHORT_TX:
1134                 break;
1135         case COMP_STOP:
1136                 xhci_dbg(xhci, "Stopped on Transfer TRB\n");
1137                 break;
1138         case COMP_STOP_INVAL:
1139                 xhci_dbg(xhci, "Stopped on No-op or Link TRB\n");
1140                 break;
1141         case COMP_STALL:
1142                 xhci_warn(xhci, "WARN: Stalled endpoint\n");
1143                 ep->ep_state |= EP_HALTED;
1144                 status = -EPIPE;
1145                 break;
1146         case COMP_TRB_ERR:
1147                 xhci_warn(xhci, "WARN: TRB error on endpoint\n");
1148                 status = -EILSEQ;
1149                 break;
1150         case COMP_TX_ERR:
1151                 xhci_warn(xhci, "WARN: transfer error on endpoint\n");
1152                 status = -EPROTO;
1153                 break;
1154         case COMP_BABBLE:
1155                 xhci_warn(xhci, "WARN: babble error on endpoint\n");
1156                 status = -EOVERFLOW;
1157                 break;
1158         case COMP_DB_ERR:
1159                 xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n");
1160                 status = -ENOSR;
1161                 break;
1162         default:
1163                 xhci_warn(xhci, "ERROR Unknown event condition, HC probably busted\n");
1164                 urb = NULL;
1165                 goto cleanup;
1166         }
1167         /* Now update the urb's actual_length and give back to the core */
1168         /* Was this a control transfer? */
1169         if (usb_endpoint_xfer_control(&td->urb->ep->desc)) {
1170                 xhci_debug_trb(xhci, xhci->event_ring->dequeue);
1171                 switch (trb_comp_code) {
1172                 case COMP_SUCCESS:
1173                         if (event_trb == ep_ring->dequeue) {
1174                                 xhci_warn(xhci, "WARN: Success on ctrl setup TRB without IOC set??\n");
1175                                 status = -ESHUTDOWN;
1176                         } else if (event_trb != td->last_trb) {
1177                                 xhci_warn(xhci, "WARN: Success on ctrl data TRB without IOC set??\n");
1178                                 status = -ESHUTDOWN;
1179                         } else {
1180                                 xhci_dbg(xhci, "Successful control transfer!\n");
1181                                 status = 0;
1182                         }
1183                         break;
1184                 case COMP_SHORT_TX:
1185                         xhci_warn(xhci, "WARN: short transfer on control ep\n");
1186                         if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1187                                 status = -EREMOTEIO;
1188                         else
1189                                 status = 0;
1190                         break;
1191                 case COMP_BABBLE:
1192                         /* The 0.96 spec says a babbling control endpoint
1193                          * is not halted. The 0.96 spec says it is.  Some HW
1194                          * claims to be 0.95 compliant, but it halts the control
1195                          * endpoint anyway.  Check if a babble halted the
1196                          * endpoint.
1197                          */
1198                         if (ep_ctx->ep_info != EP_STATE_HALTED)
1199                                 break;
1200                         /* else fall through */
1201                 case COMP_STALL:
1202                         /* Did we transfer part of the data (middle) phase? */
1203                         if (event_trb != ep_ring->dequeue &&
1204                                         event_trb != td->last_trb)
1205                                 td->urb->actual_length =
1206                                         td->urb->transfer_buffer_length
1207                                         - TRB_LEN(event->transfer_len);
1208                         else
1209                                 td->urb->actual_length = 0;
1210
1211                         ep->stopped_td = td;
1212                         ep->stopped_trb = event_trb;
1213                         xhci_queue_reset_ep(xhci, slot_id, ep_index);
1214                         xhci_cleanup_stalled_ring(xhci, td->urb->dev, ep_index);
1215                         xhci_ring_cmd_db(xhci);
1216                         goto td_cleanup;
1217                 default:
1218                         /* Others already handled above */
1219                         break;
1220                 }
1221                 /*
1222                  * Did we transfer any data, despite the errors that might have
1223                  * happened?  I.e. did we get past the setup stage?
1224                  */
1225                 if (event_trb != ep_ring->dequeue) {
1226                         /* The event was for the status stage */
1227                         if (event_trb == td->last_trb) {
1228                                 if (td->urb->actual_length != 0) {
1229                                         /* Don't overwrite a previously set error code */
1230                                         if ((status == -EINPROGRESS ||
1231                                                                 status == 0) &&
1232                                                         (td->urb->transfer_flags
1233                                                          & URB_SHORT_NOT_OK))
1234                                                 /* Did we already see a short data stage? */
1235                                                 status = -EREMOTEIO;
1236                                 } else {
1237                                         td->urb->actual_length =
1238                                                 td->urb->transfer_buffer_length;
1239                                 }
1240                         } else {
1241                         /* Maybe the event was for the data stage? */
1242                                 if (trb_comp_code != COMP_STOP_INVAL) {
1243                                         /* We didn't stop on a link TRB in the middle */
1244                                         td->urb->actual_length =
1245                                                 td->urb->transfer_buffer_length -
1246                                                 TRB_LEN(event->transfer_len);
1247                                         xhci_dbg(xhci, "Waiting for status stage event\n");
1248                                         urb = NULL;
1249                                         goto cleanup;
1250                                 }
1251                         }
1252                 }
1253         } else {
1254                 switch (trb_comp_code) {
1255                 case COMP_SUCCESS:
1256                         /* Double check that the HW transferred everything. */
1257                         if (event_trb != td->last_trb) {
1258                                 xhci_warn(xhci, "WARN Successful completion "
1259                                                 "on short TX\n");
1260                                 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1261                                         status = -EREMOTEIO;
1262                                 else
1263                                         status = 0;
1264                         } else {
1265                                 if (usb_endpoint_xfer_bulk(&td->urb->ep->desc))
1266                                         xhci_dbg(xhci, "Successful bulk "
1267                                                         "transfer!\n");
1268                                 else
1269                                         xhci_dbg(xhci, "Successful interrupt "
1270                                                         "transfer!\n");
1271                                 status = 0;
1272                         }
1273                         break;
1274                 case COMP_SHORT_TX:
1275                         if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1276                                 status = -EREMOTEIO;
1277                         else
1278                                 status = 0;
1279                         break;
1280                 default:
1281                         /* Others already handled above */
1282                         break;
1283                 }
1284                 dev_dbg(&td->urb->dev->dev,
1285                                 "ep %#x - asked for %d bytes, "
1286                                 "%d bytes untransferred\n",
1287                                 td->urb->ep->desc.bEndpointAddress,
1288                                 td->urb->transfer_buffer_length,
1289                                 TRB_LEN(event->transfer_len));
1290                 /* Fast path - was this the last TRB in the TD for this URB? */
1291                 if (event_trb == td->last_trb) {
1292                         if (TRB_LEN(event->transfer_len) != 0) {
1293                                 td->urb->actual_length =
1294                                         td->urb->transfer_buffer_length -
1295                                         TRB_LEN(event->transfer_len);
1296                                 if (td->urb->transfer_buffer_length <
1297                                                 td->urb->actual_length) {
1298                                         xhci_warn(xhci, "HC gave bad length "
1299                                                         "of %d bytes left\n",
1300                                                         TRB_LEN(event->transfer_len));
1301                                         td->urb->actual_length = 0;
1302                                         if (td->urb->transfer_flags &
1303                                                         URB_SHORT_NOT_OK)
1304                                                 status = -EREMOTEIO;
1305                                         else
1306                                                 status = 0;
1307                                 }
1308                                 /* Don't overwrite a previously set error code */
1309                                 if (status == -EINPROGRESS) {
1310                                         if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1311                                                 status = -EREMOTEIO;
1312                                         else
1313                                                 status = 0;
1314                                 }
1315                         } else {
1316                                 td->urb->actual_length = td->urb->transfer_buffer_length;
1317                                 /* Ignore a short packet completion if the
1318                                  * untransferred length was zero.
1319                                  */
1320                                 if (status == -EREMOTEIO)
1321                                         status = 0;
1322                         }
1323                 } else {
1324                         /* Slow path - walk the list, starting from the dequeue
1325                          * pointer, to get the actual length transferred.
1326                          */
1327                         union xhci_trb *cur_trb;
1328                         struct xhci_segment *cur_seg;
1329
1330                         td->urb->actual_length = 0;
1331                         for (cur_trb = ep_ring->dequeue, cur_seg = ep_ring->deq_seg;
1332                                         cur_trb != event_trb;
1333                                         next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
1334                                 if (TRB_TYPE(cur_trb->generic.field[3]) != TRB_TR_NOOP &&
1335                                                 TRB_TYPE(cur_trb->generic.field[3]) != TRB_LINK)
1336                                         td->urb->actual_length +=
1337                                                 TRB_LEN(cur_trb->generic.field[2]);
1338                         }
1339                         /* If the ring didn't stop on a Link or No-op TRB, add
1340                          * in the actual bytes transferred from the Normal TRB
1341                          */
1342                         if (trb_comp_code != COMP_STOP_INVAL)
1343                                 td->urb->actual_length +=
1344                                         TRB_LEN(cur_trb->generic.field[2]) -
1345                                         TRB_LEN(event->transfer_len);
1346                 }
1347         }
1348         if (trb_comp_code == COMP_STOP_INVAL ||
1349                         trb_comp_code == COMP_STOP) {
1350                 /* The Endpoint Stop Command completion will take care of any
1351                  * stopped TDs.  A stopped TD may be restarted, so don't update
1352                  * the ring dequeue pointer or take this TD off any lists yet.
1353                  */
1354                 ep->stopped_td = td;
1355                 ep->stopped_trb = event_trb;
1356         } else {
1357                 if (trb_comp_code == COMP_STALL ||
1358                                 trb_comp_code == COMP_BABBLE) {
1359                         /* The transfer is completed from the driver's
1360                          * perspective, but we need to issue a set dequeue
1361                          * command for this stalled endpoint to move the dequeue
1362                          * pointer past the TD.  We can't do that here because
1363                          * the halt condition must be cleared first.
1364                          */
1365                         ep->stopped_td = td;
1366                         ep->stopped_trb = event_trb;
1367                 } else {
1368                         /* Update ring dequeue pointer */
1369                         while (ep_ring->dequeue != td->last_trb)
1370                                 inc_deq(xhci, ep_ring, false);
1371                         inc_deq(xhci, ep_ring, false);
1372                 }
1373
1374 td_cleanup:
1375                 /* Clean up the endpoint's TD list */
1376                 urb = td->urb;
1377                 /* Do one last check of the actual transfer length.
1378                  * If the host controller said we transferred more data than
1379                  * the buffer length, urb->actual_length will be a very big
1380                  * number (since it's unsigned).  Play it safe and say we didn't
1381                  * transfer anything.
1382                  */
1383                 if (urb->actual_length > urb->transfer_buffer_length) {
1384                         xhci_warn(xhci, "URB transfer length is wrong, "
1385                                         "xHC issue? req. len = %u, "
1386                                         "act. len = %u\n",
1387                                         urb->transfer_buffer_length,
1388                                         urb->actual_length);
1389                         urb->actual_length = 0;
1390                         if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1391                                 status = -EREMOTEIO;
1392                         else
1393                                 status = 0;
1394                 }
1395                 list_del(&td->td_list);
1396                 /* Was this TD slated to be cancelled but completed anyway? */
1397                 if (!list_empty(&td->cancelled_td_list))
1398                         list_del(&td->cancelled_td_list);
1399
1400                 /* Leave the TD around for the reset endpoint function to use
1401                  * (but only if it's not a control endpoint, since we already
1402                  * queued the Set TR dequeue pointer command for stalled
1403                  * control endpoints).
1404                  */
1405                 if (usb_endpoint_xfer_control(&urb->ep->desc) ||
1406                         (trb_comp_code != COMP_STALL &&
1407                                 trb_comp_code != COMP_BABBLE)) {
1408                         kfree(td);
1409                 }
1410                 urb->hcpriv = NULL;
1411         }
1412 cleanup:
1413         inc_deq(xhci, xhci->event_ring, true);
1414         xhci_set_hc_event_deq(xhci);
1415
1416         /* FIXME for multi-TD URBs (who have buffers bigger than 64MB) */
1417         if (urb) {
1418                 usb_hcd_unlink_urb_from_ep(xhci_to_hcd(xhci), urb);
1419                 xhci_dbg(xhci, "Giveback URB %p, len = %d, status = %d\n",
1420                                 urb, urb->actual_length, status);
1421                 spin_unlock(&xhci->lock);
1422                 usb_hcd_giveback_urb(xhci_to_hcd(xhci), urb, status);
1423                 spin_lock(&xhci->lock);
1424         }
1425         return 0;
1426 }
1427
1428 /*
1429  * This function handles all OS-owned events on the event ring.  It may drop
1430  * xhci->lock between event processing (e.g. to pass up port status changes).
1431  */
1432 void xhci_handle_event(struct xhci_hcd *xhci)
1433 {
1434         union xhci_trb *event;
1435         int update_ptrs = 1;
1436         int ret;
1437
1438         xhci_dbg(xhci, "In %s\n", __func__);
1439         if (!xhci->event_ring || !xhci->event_ring->dequeue) {
1440                 xhci->error_bitmask |= 1 << 1;
1441                 return;
1442         }
1443
1444         event = xhci->event_ring->dequeue;
1445         /* Does the HC or OS own the TRB? */
1446         if ((event->event_cmd.flags & TRB_CYCLE) !=
1447                         xhci->event_ring->cycle_state) {
1448                 xhci->error_bitmask |= 1 << 2;
1449                 return;
1450         }
1451         xhci_dbg(xhci, "%s - OS owns TRB\n", __func__);
1452
1453         /* FIXME: Handle more event types. */
1454         switch ((event->event_cmd.flags & TRB_TYPE_BITMASK)) {
1455         case TRB_TYPE(TRB_COMPLETION):
1456                 xhci_dbg(xhci, "%s - calling handle_cmd_completion\n", __func__);
1457                 handle_cmd_completion(xhci, &event->event_cmd);
1458                 xhci_dbg(xhci, "%s - returned from handle_cmd_completion\n", __func__);
1459                 break;
1460         case TRB_TYPE(TRB_PORT_STATUS):
1461                 xhci_dbg(xhci, "%s - calling handle_port_status\n", __func__);
1462                 handle_port_status(xhci, event);
1463                 xhci_dbg(xhci, "%s - returned from handle_port_status\n", __func__);
1464                 update_ptrs = 0;
1465                 break;
1466         case TRB_TYPE(TRB_TRANSFER):
1467                 xhci_dbg(xhci, "%s - calling handle_tx_event\n", __func__);
1468                 ret = handle_tx_event(xhci, &event->trans_event);
1469                 xhci_dbg(xhci, "%s - returned from handle_tx_event\n", __func__);
1470                 if (ret < 0)
1471                         xhci->error_bitmask |= 1 << 9;
1472                 else
1473                         update_ptrs = 0;
1474                 break;
1475         default:
1476                 xhci->error_bitmask |= 1 << 3;
1477         }
1478         /* Any of the above functions may drop and re-acquire the lock, so check
1479          * to make sure a watchdog timer didn't mark the host as non-responsive.
1480          */
1481         if (xhci->xhc_state & XHCI_STATE_DYING) {
1482                 xhci_dbg(xhci, "xHCI host dying, returning from "
1483                                 "event handler.\n");
1484                 return;
1485         }
1486
1487         if (update_ptrs) {
1488                 /* Update SW and HC event ring dequeue pointer */
1489                 inc_deq(xhci, xhci->event_ring, true);
1490                 xhci_set_hc_event_deq(xhci);
1491         }
1492         /* Are there more items on the event ring? */
1493         xhci_handle_event(xhci);
1494 }
1495
1496 /****           Endpoint Ring Operations        ****/
1497
1498 /*
1499  * Generic function for queueing a TRB on a ring.
1500  * The caller must have checked to make sure there's room on the ring.
1501  */
1502 static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
1503                 bool consumer,
1504                 u32 field1, u32 field2, u32 field3, u32 field4)
1505 {
1506         struct xhci_generic_trb *trb;
1507
1508         trb = &ring->enqueue->generic;
1509         trb->field[0] = field1;
1510         trb->field[1] = field2;
1511         trb->field[2] = field3;
1512         trb->field[3] = field4;
1513         inc_enq(xhci, ring, consumer);
1514 }
1515
1516 /*
1517  * Does various checks on the endpoint ring, and makes it ready to queue num_trbs.
1518  * FIXME allocate segments if the ring is full.
1519  */
1520 static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
1521                 u32 ep_state, unsigned int num_trbs, gfp_t mem_flags)
1522 {
1523         /* Make sure the endpoint has been added to xHC schedule */
1524         xhci_dbg(xhci, "Endpoint state = 0x%x\n", ep_state);
1525         switch (ep_state) {
1526         case EP_STATE_DISABLED:
1527                 /*
1528                  * USB core changed config/interfaces without notifying us,
1529                  * or hardware is reporting the wrong state.
1530                  */
1531                 xhci_warn(xhci, "WARN urb submitted to disabled ep\n");
1532                 return -ENOENT;
1533         case EP_STATE_ERROR:
1534                 xhci_warn(xhci, "WARN waiting for error on ep to be cleared\n");
1535                 /* FIXME event handling code for error needs to clear it */
1536                 /* XXX not sure if this should be -ENOENT or not */
1537                 return -EINVAL;
1538         case EP_STATE_HALTED:
1539                 xhci_dbg(xhci, "WARN halted endpoint, queueing URB anyway.\n");
1540         case EP_STATE_STOPPED:
1541         case EP_STATE_RUNNING:
1542                 break;
1543         default:
1544                 xhci_err(xhci, "ERROR unknown endpoint state for ep\n");
1545                 /*
1546                  * FIXME issue Configure Endpoint command to try to get the HC
1547                  * back into a known state.
1548                  */
1549                 return -EINVAL;
1550         }
1551         if (!room_on_ring(xhci, ep_ring, num_trbs)) {
1552                 /* FIXME allocate more room */
1553                 xhci_err(xhci, "ERROR no room on ep ring\n");
1554                 return -ENOMEM;
1555         }
1556         return 0;
1557 }
1558
1559 static int prepare_transfer(struct xhci_hcd *xhci,
1560                 struct xhci_virt_device *xdev,
1561                 unsigned int ep_index,
1562                 unsigned int num_trbs,
1563                 struct urb *urb,
1564                 struct xhci_td **td,
1565                 gfp_t mem_flags)
1566 {
1567         int ret;
1568         struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
1569         ret = prepare_ring(xhci, xdev->eps[ep_index].ring,
1570                         ep_ctx->ep_info & EP_STATE_MASK,
1571                         num_trbs, mem_flags);
1572         if (ret)
1573                 return ret;
1574         *td = kzalloc(sizeof(struct xhci_td), mem_flags);
1575         if (!*td)
1576                 return -ENOMEM;
1577         INIT_LIST_HEAD(&(*td)->td_list);
1578         INIT_LIST_HEAD(&(*td)->cancelled_td_list);
1579
1580         ret = usb_hcd_link_urb_to_ep(xhci_to_hcd(xhci), urb);
1581         if (unlikely(ret)) {
1582                 kfree(*td);
1583                 return ret;
1584         }
1585
1586         (*td)->urb = urb;
1587         urb->hcpriv = (void *) (*td);
1588         /* Add this TD to the tail of the endpoint ring's TD list */
1589         list_add_tail(&(*td)->td_list, &xdev->eps[ep_index].ring->td_list);
1590         (*td)->start_seg = xdev->eps[ep_index].ring->enq_seg;
1591         (*td)->first_trb = xdev->eps[ep_index].ring->enqueue;
1592
1593         return 0;
1594 }
1595
1596 static unsigned int count_sg_trbs_needed(struct xhci_hcd *xhci, struct urb *urb)
1597 {
1598         int num_sgs, num_trbs, running_total, temp, i;
1599         struct scatterlist *sg;
1600
1601         sg = NULL;
1602         num_sgs = urb->num_sgs;
1603         temp = urb->transfer_buffer_length;
1604
1605         xhci_dbg(xhci, "count sg list trbs: \n");
1606         num_trbs = 0;
1607         for_each_sg(urb->sg->sg, sg, num_sgs, i) {
1608                 unsigned int previous_total_trbs = num_trbs;
1609                 unsigned int len = sg_dma_len(sg);
1610
1611                 /* Scatter gather list entries may cross 64KB boundaries */
1612                 running_total = TRB_MAX_BUFF_SIZE -
1613                         (sg_dma_address(sg) & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1614                 if (running_total != 0)
1615                         num_trbs++;
1616
1617                 /* How many more 64KB chunks to transfer, how many more TRBs? */
1618                 while (running_total < sg_dma_len(sg)) {
1619                         num_trbs++;
1620                         running_total += TRB_MAX_BUFF_SIZE;
1621                 }
1622                 xhci_dbg(xhci, " sg #%d: dma = %#llx, len = %#x (%d), num_trbs = %d\n",
1623                                 i, (unsigned long long)sg_dma_address(sg),
1624                                 len, len, num_trbs - previous_total_trbs);
1625
1626                 len = min_t(int, len, temp);
1627                 temp -= len;
1628                 if (temp == 0)
1629                         break;
1630         }
1631         xhci_dbg(xhci, "\n");
1632         if (!in_interrupt())
1633                 dev_dbg(&urb->dev->dev, "ep %#x - urb len = %d, sglist used, num_trbs = %d\n",
1634                                 urb->ep->desc.bEndpointAddress,
1635                                 urb->transfer_buffer_length,
1636                                 num_trbs);
1637         return num_trbs;
1638 }
1639
1640 static void check_trb_math(struct urb *urb, int num_trbs, int running_total)
1641 {
1642         if (num_trbs != 0)
1643                 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated number of "
1644                                 "TRBs, %d left\n", __func__,
1645                                 urb->ep->desc.bEndpointAddress, num_trbs);
1646         if (running_total != urb->transfer_buffer_length)
1647                 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, "
1648                                 "queued %#x (%d), asked for %#x (%d)\n",
1649                                 __func__,
1650                                 urb->ep->desc.bEndpointAddress,
1651                                 running_total, running_total,
1652                                 urb->transfer_buffer_length,
1653                                 urb->transfer_buffer_length);
1654 }
1655
1656 static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id,
1657                 unsigned int ep_index, int start_cycle,
1658                 struct xhci_generic_trb *start_trb, struct xhci_td *td)
1659 {
1660         /*
1661          * Pass all the TRBs to the hardware at once and make sure this write
1662          * isn't reordered.
1663          */
1664         wmb();
1665         start_trb->field[3] |= start_cycle;
1666         ring_ep_doorbell(xhci, slot_id, ep_index);
1667 }
1668
1669 /*
1670  * xHCI uses normal TRBs for both bulk and interrupt.  When the interrupt
1671  * endpoint is to be serviced, the xHC will consume (at most) one TD.  A TD
1672  * (comprised of sg list entries) can take several service intervals to
1673  * transmit.
1674  */
1675 int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
1676                 struct urb *urb, int slot_id, unsigned int ep_index)
1677 {
1678         struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci,
1679                         xhci->devs[slot_id]->out_ctx, ep_index);
1680         int xhci_interval;
1681         int ep_interval;
1682
1683         xhci_interval = EP_INTERVAL_TO_UFRAMES(ep_ctx->ep_info);
1684         ep_interval = urb->interval;
1685         /* Convert to microframes */
1686         if (urb->dev->speed == USB_SPEED_LOW ||
1687                         urb->dev->speed == USB_SPEED_FULL)
1688                 ep_interval *= 8;
1689         /* FIXME change this to a warning and a suggestion to use the new API
1690          * to set the polling interval (once the API is added).
1691          */
1692         if (xhci_interval != ep_interval) {
1693                 if (!printk_ratelimit())
1694                         dev_dbg(&urb->dev->dev, "Driver uses different interval"
1695                                         " (%d microframe%s) than xHCI "
1696                                         "(%d microframe%s)\n",
1697                                         ep_interval,
1698                                         ep_interval == 1 ? "" : "s",
1699                                         xhci_interval,
1700                                         xhci_interval == 1 ? "" : "s");
1701                 urb->interval = xhci_interval;
1702                 /* Convert back to frames for LS/FS devices */
1703                 if (urb->dev->speed == USB_SPEED_LOW ||
1704                                 urb->dev->speed == USB_SPEED_FULL)
1705                         urb->interval /= 8;
1706         }
1707         return xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
1708 }
1709
1710 static int queue_bulk_sg_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
1711                 struct urb *urb, int slot_id, unsigned int ep_index)
1712 {
1713         struct xhci_ring *ep_ring;
1714         unsigned int num_trbs;
1715         struct xhci_td *td;
1716         struct scatterlist *sg;
1717         int num_sgs;
1718         int trb_buff_len, this_sg_len, running_total;
1719         bool first_trb;
1720         u64 addr;
1721
1722         struct xhci_generic_trb *start_trb;
1723         int start_cycle;
1724
1725         ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
1726         num_trbs = count_sg_trbs_needed(xhci, urb);
1727         num_sgs = urb->num_sgs;
1728
1729         trb_buff_len = prepare_transfer(xhci, xhci->devs[slot_id],
1730                         ep_index, num_trbs, urb, &td, mem_flags);
1731         if (trb_buff_len < 0)
1732                 return trb_buff_len;
1733         /*
1734          * Don't give the first TRB to the hardware (by toggling the cycle bit)
1735          * until we've finished creating all the other TRBs.  The ring's cycle
1736          * state may change as we enqueue the other TRBs, so save it too.
1737          */
1738         start_trb = &ep_ring->enqueue->generic;
1739         start_cycle = ep_ring->cycle_state;
1740
1741         running_total = 0;
1742         /*
1743          * How much data is in the first TRB?
1744          *
1745          * There are three forces at work for TRB buffer pointers and lengths:
1746          * 1. We don't want to walk off the end of this sg-list entry buffer.
1747          * 2. The transfer length that the driver requested may be smaller than
1748          *    the amount of memory allocated for this scatter-gather list.
1749          * 3. TRBs buffers can't cross 64KB boundaries.
1750          */
1751         sg = urb->sg->sg;
1752         addr = (u64) sg_dma_address(sg);
1753         this_sg_len = sg_dma_len(sg);
1754         trb_buff_len = TRB_MAX_BUFF_SIZE -
1755                 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1756         trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
1757         if (trb_buff_len > urb->transfer_buffer_length)
1758                 trb_buff_len = urb->transfer_buffer_length;
1759         xhci_dbg(xhci, "First length to xfer from 1st sglist entry = %u\n",
1760                         trb_buff_len);
1761
1762         first_trb = true;
1763         /* Queue the first TRB, even if it's zero-length */
1764         do {
1765                 u32 field = 0;
1766                 u32 length_field = 0;
1767
1768                 /* Don't change the cycle bit of the first TRB until later */
1769                 if (first_trb)
1770                         first_trb = false;
1771                 else
1772                         field |= ep_ring->cycle_state;
1773
1774                 /* Chain all the TRBs together; clear the chain bit in the last
1775                  * TRB to indicate it's the last TRB in the chain.
1776                  */
1777                 if (num_trbs > 1) {
1778                         field |= TRB_CHAIN;
1779                 } else {
1780                         /* FIXME - add check for ZERO_PACKET flag before this */
1781                         td->last_trb = ep_ring->enqueue;
1782                         field |= TRB_IOC;
1783                 }
1784                 xhci_dbg(xhci, " sg entry: dma = %#x, len = %#x (%d), "
1785                                 "64KB boundary at %#x, end dma = %#x\n",
1786                                 (unsigned int) addr, trb_buff_len, trb_buff_len,
1787                                 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
1788                                 (unsigned int) addr + trb_buff_len);
1789                 if (TRB_MAX_BUFF_SIZE -
1790                                 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1)) < trb_buff_len) {
1791                         xhci_warn(xhci, "WARN: sg dma xfer crosses 64KB boundaries!\n");
1792                         xhci_dbg(xhci, "Next boundary at %#x, end dma = %#x\n",
1793                                         (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
1794                                         (unsigned int) addr + trb_buff_len);
1795                 }
1796                 length_field = TRB_LEN(trb_buff_len) |
1797                         TD_REMAINDER(urb->transfer_buffer_length - running_total) |
1798                         TRB_INTR_TARGET(0);
1799                 queue_trb(xhci, ep_ring, false,
1800                                 lower_32_bits(addr),
1801                                 upper_32_bits(addr),
1802                                 length_field,
1803                                 /* We always want to know if the TRB was short,
1804                                  * or we won't get an event when it completes.
1805                                  * (Unless we use event data TRBs, which are a
1806                                  * waste of space and HC resources.)
1807                                  */
1808                                 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
1809                 --num_trbs;
1810                 running_total += trb_buff_len;
1811
1812                 /* Calculate length for next transfer --
1813                  * Are we done queueing all the TRBs for this sg entry?
1814                  */
1815                 this_sg_len -= trb_buff_len;
1816                 if (this_sg_len == 0) {
1817                         --num_sgs;
1818                         if (num_sgs == 0)
1819                                 break;
1820                         sg = sg_next(sg);
1821                         addr = (u64) sg_dma_address(sg);
1822                         this_sg_len = sg_dma_len(sg);
1823                 } else {
1824                         addr += trb_buff_len;
1825                 }
1826
1827                 trb_buff_len = TRB_MAX_BUFF_SIZE -
1828                         (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1829                 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
1830                 if (running_total + trb_buff_len > urb->transfer_buffer_length)
1831                         trb_buff_len =
1832                                 urb->transfer_buffer_length - running_total;
1833         } while (running_total < urb->transfer_buffer_length);
1834
1835         check_trb_math(urb, num_trbs, running_total);
1836         giveback_first_trb(xhci, slot_id, ep_index, start_cycle, start_trb, td);
1837         return 0;
1838 }
1839
1840 /* This is very similar to what ehci-q.c qtd_fill() does */
1841 int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
1842                 struct urb *urb, int slot_id, unsigned int ep_index)
1843 {
1844         struct xhci_ring *ep_ring;
1845         struct xhci_td *td;
1846         int num_trbs;
1847         struct xhci_generic_trb *start_trb;
1848         bool first_trb;
1849         int start_cycle;
1850         u32 field, length_field;
1851
1852         int running_total, trb_buff_len, ret;
1853         u64 addr;
1854
1855         if (urb->sg)
1856                 return queue_bulk_sg_tx(xhci, mem_flags, urb, slot_id, ep_index);
1857
1858         ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
1859
1860         num_trbs = 0;
1861         /* How much data is (potentially) left before the 64KB boundary? */
1862         running_total = TRB_MAX_BUFF_SIZE -
1863                 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1864
1865         /* If there's some data on this 64KB chunk, or we have to send a
1866          * zero-length transfer, we need at least one TRB
1867          */
1868         if (running_total != 0 || urb->transfer_buffer_length == 0)
1869                 num_trbs++;
1870         /* How many more 64KB chunks to transfer, how many more TRBs? */
1871         while (running_total < urb->transfer_buffer_length) {
1872                 num_trbs++;
1873                 running_total += TRB_MAX_BUFF_SIZE;
1874         }
1875         /* FIXME: this doesn't deal with URB_ZERO_PACKET - need one more */
1876
1877         if (!in_interrupt())
1878                 dev_dbg(&urb->dev->dev, "ep %#x - urb len = %#x (%d), addr = %#llx, num_trbs = %d\n",
1879                                 urb->ep->desc.bEndpointAddress,
1880                                 urb->transfer_buffer_length,
1881                                 urb->transfer_buffer_length,
1882                                 (unsigned long long)urb->transfer_dma,
1883                                 num_trbs);
1884
1885         ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index,
1886                         num_trbs, urb, &td, mem_flags);
1887         if (ret < 0)
1888                 return ret;
1889
1890         /*
1891          * Don't give the first TRB to the hardware (by toggling the cycle bit)
1892          * until we've finished creating all the other TRBs.  The ring's cycle
1893          * state may change as we enqueue the other TRBs, so save it too.
1894          */
1895         start_trb = &ep_ring->enqueue->generic;
1896         start_cycle = ep_ring->cycle_state;
1897
1898         running_total = 0;
1899         /* How much data is in the first TRB? */
1900         addr = (u64) urb->transfer_dma;
1901         trb_buff_len = TRB_MAX_BUFF_SIZE -
1902                 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1903         if (urb->transfer_buffer_length < trb_buff_len)
1904                 trb_buff_len = urb->transfer_buffer_length;
1905
1906         first_trb = true;
1907
1908         /* Queue the first TRB, even if it's zero-length */
1909         do {
1910                 field = 0;
1911
1912                 /* Don't change the cycle bit of the first TRB until later */
1913                 if (first_trb)
1914                         first_trb = false;
1915                 else
1916                         field |= ep_ring->cycle_state;
1917
1918                 /* Chain all the TRBs together; clear the chain bit in the last
1919                  * TRB to indicate it's the last TRB in the chain.
1920                  */
1921                 if (num_trbs > 1) {
1922                         field |= TRB_CHAIN;
1923                 } else {
1924                         /* FIXME - add check for ZERO_PACKET flag before this */
1925                         td->last_trb = ep_ring->enqueue;
1926                         field |= TRB_IOC;
1927                 }
1928                 length_field = TRB_LEN(trb_buff_len) |
1929                         TD_REMAINDER(urb->transfer_buffer_length - running_total) |
1930                         TRB_INTR_TARGET(0);
1931                 queue_trb(xhci, ep_ring, false,
1932                                 lower_32_bits(addr),
1933                                 upper_32_bits(addr),
1934                                 length_field,
1935                                 /* We always want to know if the TRB was short,
1936                                  * or we won't get an event when it completes.
1937                                  * (Unless we use event data TRBs, which are a
1938                                  * waste of space and HC resources.)
1939                                  */
1940                                 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
1941                 --num_trbs;
1942                 running_total += trb_buff_len;
1943
1944                 /* Calculate length for next transfer */
1945                 addr += trb_buff_len;
1946                 trb_buff_len = urb->transfer_buffer_length - running_total;
1947                 if (trb_buff_len > TRB_MAX_BUFF_SIZE)
1948                         trb_buff_len = TRB_MAX_BUFF_SIZE;
1949         } while (running_total < urb->transfer_buffer_length);
1950
1951         check_trb_math(urb, num_trbs, running_total);
1952         giveback_first_trb(xhci, slot_id, ep_index, start_cycle, start_trb, td);
1953         return 0;
1954 }
1955
1956 /* Caller must have locked xhci->lock */
1957 int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
1958                 struct urb *urb, int slot_id, unsigned int ep_index)
1959 {
1960         struct xhci_ring *ep_ring;
1961         int num_trbs;
1962         int ret;
1963         struct usb_ctrlrequest *setup;
1964         struct xhci_generic_trb *start_trb;
1965         int start_cycle;
1966         u32 field, length_field;
1967         struct xhci_td *td;
1968
1969         ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
1970
1971         /*
1972          * Need to copy setup packet into setup TRB, so we can't use the setup
1973          * DMA address.
1974          */
1975         if (!urb->setup_packet)
1976                 return -EINVAL;
1977
1978         if (!in_interrupt())
1979                 xhci_dbg(xhci, "Queueing ctrl tx for slot id %d, ep %d\n",
1980                                 slot_id, ep_index);
1981         /* 1 TRB for setup, 1 for status */
1982         num_trbs = 2;
1983         /*
1984          * Don't need to check if we need additional event data and normal TRBs,
1985          * since data in control transfers will never get bigger than 16MB
1986          * XXX: can we get a buffer that crosses 64KB boundaries?
1987          */
1988         if (urb->transfer_buffer_length > 0)
1989                 num_trbs++;
1990         ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index, num_trbs,
1991                         urb, &td, mem_flags);
1992         if (ret < 0)
1993                 return ret;
1994
1995         /*
1996          * Don't give the first TRB to the hardware (by toggling the cycle bit)
1997          * until we've finished creating all the other TRBs.  The ring's cycle
1998          * state may change as we enqueue the other TRBs, so save it too.
1999          */
2000         start_trb = &ep_ring->enqueue->generic;
2001         start_cycle = ep_ring->cycle_state;
2002
2003         /* Queue setup TRB - see section 6.4.1.2.1 */
2004         /* FIXME better way to translate setup_packet into two u32 fields? */
2005         setup = (struct usb_ctrlrequest *) urb->setup_packet;
2006         queue_trb(xhci, ep_ring, false,
2007                         /* FIXME endianness is probably going to bite my ass here. */
2008                         setup->bRequestType | setup->bRequest << 8 | setup->wValue << 16,
2009                         setup->wIndex | setup->wLength << 16,
2010                         TRB_LEN(8) | TRB_INTR_TARGET(0),
2011                         /* Immediate data in pointer */
2012                         TRB_IDT | TRB_TYPE(TRB_SETUP));
2013
2014         /* If there's data, queue data TRBs */
2015         field = 0;
2016         length_field = TRB_LEN(urb->transfer_buffer_length) |
2017                 TD_REMAINDER(urb->transfer_buffer_length) |
2018                 TRB_INTR_TARGET(0);
2019         if (urb->transfer_buffer_length > 0) {
2020                 if (setup->bRequestType & USB_DIR_IN)
2021                         field |= TRB_DIR_IN;
2022                 queue_trb(xhci, ep_ring, false,
2023                                 lower_32_bits(urb->transfer_dma),
2024                                 upper_32_bits(urb->transfer_dma),
2025                                 length_field,
2026                                 /* Event on short tx */
2027                                 field | TRB_ISP | TRB_TYPE(TRB_DATA) | ep_ring->cycle_state);
2028         }
2029
2030         /* Save the DMA address of the last TRB in the TD */
2031         td->last_trb = ep_ring->enqueue;
2032
2033         /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */
2034         /* If the device sent data, the status stage is an OUT transfer */
2035         if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN)
2036                 field = 0;
2037         else
2038                 field = TRB_DIR_IN;
2039         queue_trb(xhci, ep_ring, false,
2040                         0,
2041                         0,
2042                         TRB_INTR_TARGET(0),
2043                         /* Event on completion */
2044                         field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state);
2045
2046         giveback_first_trb(xhci, slot_id, ep_index, start_cycle, start_trb, td);
2047         return 0;
2048 }
2049
2050 /****           Command Ring Operations         ****/
2051
2052 /* Generic function for queueing a command TRB on the command ring.
2053  * Check to make sure there's room on the command ring for one command TRB.
2054  * Also check that there's room reserved for commands that must not fail.
2055  * If this is a command that must not fail, meaning command_must_succeed = TRUE,
2056  * then only check for the number of reserved spots.
2057  * Don't decrement xhci->cmd_ring_reserved_trbs after we've queued the TRB
2058  * because the command event handler may want to resubmit a failed command.
2059  */
2060 static int queue_command(struct xhci_hcd *xhci, u32 field1, u32 field2,
2061                 u32 field3, u32 field4, bool command_must_succeed)
2062 {
2063         int reserved_trbs = xhci->cmd_ring_reserved_trbs;
2064         if (!command_must_succeed)
2065                 reserved_trbs++;
2066
2067         if (!room_on_ring(xhci, xhci->cmd_ring, reserved_trbs)) {
2068                 if (!in_interrupt())
2069                         xhci_err(xhci, "ERR: No room for command on command ring\n");
2070                 if (command_must_succeed)
2071                         xhci_err(xhci, "ERR: Reserved TRB counting for "
2072                                         "unfailable commands failed.\n");
2073                 return -ENOMEM;
2074         }
2075         queue_trb(xhci, xhci->cmd_ring, false, field1, field2, field3,
2076                         field4 | xhci->cmd_ring->cycle_state);
2077         return 0;
2078 }
2079
2080 /* Queue a no-op command on the command ring */
2081 static int queue_cmd_noop(struct xhci_hcd *xhci)
2082 {
2083         return queue_command(xhci, 0, 0, 0, TRB_TYPE(TRB_CMD_NOOP), false);
2084 }
2085
2086 /*
2087  * Place a no-op command on the command ring to test the command and
2088  * event ring.
2089  */
2090 void *xhci_setup_one_noop(struct xhci_hcd *xhci)
2091 {
2092         if (queue_cmd_noop(xhci) < 0)
2093                 return NULL;
2094         xhci->noops_submitted++;
2095         return xhci_ring_cmd_db;
2096 }
2097
2098 /* Queue a slot enable or disable request on the command ring */
2099 int xhci_queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id)
2100 {
2101         return queue_command(xhci, 0, 0, 0,
2102                         TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id), false);
2103 }
2104
2105 /* Queue an address device command TRB */
2106 int xhci_queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
2107                 u32 slot_id)
2108 {
2109         return queue_command(xhci, lower_32_bits(in_ctx_ptr),
2110                         upper_32_bits(in_ctx_ptr), 0,
2111                         TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id),
2112                         false);
2113 }
2114
2115 /* Queue a configure endpoint command TRB */
2116 int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
2117                 u32 slot_id, bool command_must_succeed)
2118 {
2119         return queue_command(xhci, lower_32_bits(in_ctx_ptr),
2120                         upper_32_bits(in_ctx_ptr), 0,
2121                         TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id),
2122                         command_must_succeed);
2123 }
2124
2125 /* Queue an evaluate context command TRB */
2126 int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
2127                 u32 slot_id)
2128 {
2129         return queue_command(xhci, lower_32_bits(in_ctx_ptr),
2130                         upper_32_bits(in_ctx_ptr), 0,
2131                         TRB_TYPE(TRB_EVAL_CONTEXT) | SLOT_ID_FOR_TRB(slot_id),
2132                         false);
2133 }
2134
2135 int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, int slot_id,
2136                 unsigned int ep_index)
2137 {
2138         u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
2139         u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
2140         u32 type = TRB_TYPE(TRB_STOP_RING);
2141
2142         return queue_command(xhci, 0, 0, 0,
2143                         trb_slot_id | trb_ep_index | type, false);
2144 }
2145
2146 /* Set Transfer Ring Dequeue Pointer command.
2147  * This should not be used for endpoints that have streams enabled.
2148  */
2149 static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
2150                 unsigned int ep_index, struct xhci_segment *deq_seg,
2151                 union xhci_trb *deq_ptr, u32 cycle_state)
2152 {
2153         dma_addr_t addr;
2154         u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
2155         u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
2156         u32 type = TRB_TYPE(TRB_SET_DEQ);
2157
2158         addr = xhci_trb_virt_to_dma(deq_seg, deq_ptr);
2159         if (addr == 0) {
2160                 xhci_warn(xhci, "WARN Cannot submit Set TR Deq Ptr\n");
2161                 xhci_warn(xhci, "WARN deq seg = %p, deq pt = %p\n",
2162                                 deq_seg, deq_ptr);
2163                 return 0;
2164         }
2165         return queue_command(xhci, lower_32_bits(addr) | cycle_state,
2166                         upper_32_bits(addr), 0,
2167                         trb_slot_id | trb_ep_index | type, false);
2168 }
2169
2170 int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id,
2171                 unsigned int ep_index)
2172 {
2173         u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
2174         u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
2175         u32 type = TRB_TYPE(TRB_RESET_EP);
2176
2177         return queue_command(xhci, 0, 0, 0, trb_slot_id | trb_ep_index | type,
2178                         false);
2179 }