]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/usb/host/xhci-ring.c
USB: Disable auto-suspend for USB 3.0 hubs.
[mirror_ubuntu-artful-kernel.git] / drivers / usb / host / xhci-ring.c
CommitLineData
7f84eef0
SS
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
8a96c052 67#include <linux/scatterlist.h>
5a0e3ad6 68#include <linux/slab.h>
7f84eef0
SS
69#include "xhci.h"
70
be88fe4f
AX
71static int handle_cmd_in_cmd_wait_list(struct xhci_hcd *xhci,
72 struct xhci_virt_device *virt_dev,
73 struct xhci_event_cmd *event);
74
7f84eef0
SS
75/*
76 * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA
77 * address of the TRB.
78 */
23e3be11 79dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg,
7f84eef0
SS
80 union xhci_trb *trb)
81{
6071d836 82 unsigned long segment_offset;
7f84eef0 83
6071d836 84 if (!seg || !trb || trb < seg->trbs)
7f84eef0 85 return 0;
6071d836
SS
86 /* offset in TRBs */
87 segment_offset = trb - seg->trbs;
88 if (segment_offset > TRBS_PER_SEGMENT)
7f84eef0 89 return 0;
6071d836 90 return seg->dma + (segment_offset * sizeof(*trb));
7f84eef0
SS
91}
92
93/* Does this link TRB point to the first segment in a ring,
94 * or was the previous TRB the last TRB on the last segment in the ERST?
95 */
96static inline bool last_trb_on_last_seg(struct xhci_hcd *xhci, struct xhci_ring *ring,
97 struct xhci_segment *seg, union xhci_trb *trb)
98{
99 if (ring == xhci->event_ring)
100 return (trb == &seg->trbs[TRBS_PER_SEGMENT]) &&
101 (seg->next == xhci->event_ring->first_seg);
102 else
103 return trb->link.control & LINK_TOGGLE;
104}
105
106/* Is this TRB a link TRB or was the last TRB the last TRB in this event ring
107 * segment? I.e. would the updated event TRB pointer step off the end of the
108 * event seg?
109 */
110static inline int last_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
111 struct xhci_segment *seg, union xhci_trb *trb)
112{
113 if (ring == xhci->event_ring)
114 return trb == &seg->trbs[TRBS_PER_SEGMENT];
115 else
116 return (trb->link.control & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK);
117}
118
6c12db90
JY
119static inline int enqueue_is_link_trb(struct xhci_ring *ring)
120{
121 struct xhci_link_trb *link = &ring->enqueue->link;
122 return ((link->control & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK));
123}
124
ae636747
SS
125/* Updates trb to point to the next TRB in the ring, and updates seg if the next
126 * TRB is in a new segment. This does not skip over link TRBs, and it does not
127 * effect the ring dequeue or enqueue pointers.
128 */
129static void next_trb(struct xhci_hcd *xhci,
130 struct xhci_ring *ring,
131 struct xhci_segment **seg,
132 union xhci_trb **trb)
133{
134 if (last_trb(xhci, ring, *seg, *trb)) {
135 *seg = (*seg)->next;
136 *trb = ((*seg)->trbs);
137 } else {
a1669b2c 138 (*trb)++;
ae636747
SS
139 }
140}
141
7f84eef0
SS
142/*
143 * See Cycle bit rules. SW is the consumer for the event ring only.
144 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
145 */
146static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer)
147{
148 union xhci_trb *next = ++(ring->dequeue);
66e49d87 149 unsigned long long addr;
7f84eef0
SS
150
151 ring->deq_updates++;
152 /* Update the dequeue pointer further if that was a link TRB or we're at
153 * the end of an event ring segment (which doesn't have link TRBS)
154 */
155 while (last_trb(xhci, ring, ring->deq_seg, next)) {
156 if (consumer && last_trb_on_last_seg(xhci, ring, ring->deq_seg, next)) {
157 ring->cycle_state = (ring->cycle_state ? 0 : 1);
158 if (!in_interrupt())
700e2052
GKH
159 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
160 ring,
7f84eef0
SS
161 (unsigned int) ring->cycle_state);
162 }
163 ring->deq_seg = ring->deq_seg->next;
164 ring->dequeue = ring->deq_seg->trbs;
165 next = ring->dequeue;
166 }
66e49d87
SS
167 addr = (unsigned long long) xhci_trb_virt_to_dma(ring->deq_seg, ring->dequeue);
168 if (ring == xhci->event_ring)
169 xhci_dbg(xhci, "Event ring deq = 0x%llx (DMA)\n", addr);
170 else if (ring == xhci->cmd_ring)
171 xhci_dbg(xhci, "Command ring deq = 0x%llx (DMA)\n", addr);
172 else
173 xhci_dbg(xhci, "Ring deq = 0x%llx (DMA)\n", addr);
7f84eef0
SS
174}
175
176/*
177 * See Cycle bit rules. SW is the consumer for the event ring only.
178 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
179 *
180 * If we've just enqueued a TRB that is in the middle of a TD (meaning the
181 * chain bit is set), then set the chain bit in all the following link TRBs.
182 * If we've enqueued the last TRB in a TD, make sure the following link TRBs
183 * have their chain bit cleared (so that each Link TRB is a separate TD).
184 *
185 * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit
b0567b3f
SS
186 * set, but other sections talk about dealing with the chain bit set. This was
187 * fixed in the 0.96 specification errata, but we have to assume that all 0.95
188 * xHCI hardware can't handle the chain bit being cleared on a link TRB.
6cc30d85
SS
189 *
190 * @more_trbs_coming: Will you enqueue more TRBs before calling
191 * prepare_transfer()?
7f84eef0 192 */
6cc30d85
SS
193static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring,
194 bool consumer, bool more_trbs_coming)
7f84eef0
SS
195{
196 u32 chain;
197 union xhci_trb *next;
66e49d87 198 unsigned long long addr;
7f84eef0
SS
199
200 chain = ring->enqueue->generic.field[3] & TRB_CHAIN;
201 next = ++(ring->enqueue);
202
203 ring->enq_updates++;
204 /* Update the dequeue pointer further if that was a link TRB or we're at
205 * the end of an event ring segment (which doesn't have link TRBS)
206 */
207 while (last_trb(xhci, ring, ring->enq_seg, next)) {
208 if (!consumer) {
209 if (ring != xhci->event_ring) {
6cc30d85
SS
210 /*
211 * If the caller doesn't plan on enqueueing more
212 * TDs before ringing the doorbell, then we
213 * don't want to give the link TRB to the
214 * hardware just yet. We'll give the link TRB
215 * back in prepare_ring() just before we enqueue
216 * the TD at the top of the ring.
217 */
218 if (!chain && !more_trbs_coming)
6c12db90 219 break;
6cc30d85
SS
220
221 /* If we're not dealing with 0.95 hardware,
222 * carry over the chain bit of the previous TRB
223 * (which may mean the chain bit is cleared).
224 */
225 if (!xhci_link_trb_quirk(xhci)) {
226 next->link.control &= ~TRB_CHAIN;
227 next->link.control |= chain;
b0567b3f 228 }
6cc30d85
SS
229 /* Give this link TRB to the hardware */
230 wmb();
231 next->link.control ^= TRB_CYCLE;
7f84eef0
SS
232 }
233 /* Toggle the cycle bit after the last ring segment. */
234 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
235 ring->cycle_state = (ring->cycle_state ? 0 : 1);
236 if (!in_interrupt())
700e2052
GKH
237 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
238 ring,
7f84eef0
SS
239 (unsigned int) ring->cycle_state);
240 }
241 }
242 ring->enq_seg = ring->enq_seg->next;
243 ring->enqueue = ring->enq_seg->trbs;
244 next = ring->enqueue;
245 }
66e49d87
SS
246 addr = (unsigned long long) xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
247 if (ring == xhci->event_ring)
248 xhci_dbg(xhci, "Event ring enq = 0x%llx (DMA)\n", addr);
249 else if (ring == xhci->cmd_ring)
250 xhci_dbg(xhci, "Command ring enq = 0x%llx (DMA)\n", addr);
251 else
252 xhci_dbg(xhci, "Ring enq = 0x%llx (DMA)\n", addr);
7f84eef0
SS
253}
254
255/*
256 * Check to see if there's room to enqueue num_trbs on the ring. See rules
257 * above.
258 * FIXME: this would be simpler and faster if we just kept track of the number
259 * of free TRBs in a ring.
260 */
261static int room_on_ring(struct xhci_hcd *xhci, struct xhci_ring *ring,
262 unsigned int num_trbs)
263{
264 int i;
265 union xhci_trb *enq = ring->enqueue;
266 struct xhci_segment *enq_seg = ring->enq_seg;
44ebd037
SS
267 struct xhci_segment *cur_seg;
268 unsigned int left_on_ring;
7f84eef0 269
6c12db90
JY
270 /* If we are currently pointing to a link TRB, advance the
271 * enqueue pointer before checking for space */
272 while (last_trb(xhci, ring, enq_seg, enq)) {
273 enq_seg = enq_seg->next;
274 enq = enq_seg->trbs;
275 }
276
7f84eef0 277 /* Check if ring is empty */
44ebd037
SS
278 if (enq == ring->dequeue) {
279 /* Can't use link trbs */
280 left_on_ring = TRBS_PER_SEGMENT - 1;
281 for (cur_seg = enq_seg->next; cur_seg != enq_seg;
282 cur_seg = cur_seg->next)
283 left_on_ring += TRBS_PER_SEGMENT - 1;
284
285 /* Always need one TRB free in the ring. */
286 left_on_ring -= 1;
287 if (num_trbs > left_on_ring) {
288 xhci_warn(xhci, "Not enough room on ring; "
289 "need %u TRBs, %u TRBs left\n",
290 num_trbs, left_on_ring);
291 return 0;
292 }
7f84eef0 293 return 1;
44ebd037 294 }
7f84eef0
SS
295 /* Make sure there's an extra empty TRB available */
296 for (i = 0; i <= num_trbs; ++i) {
297 if (enq == ring->dequeue)
298 return 0;
299 enq++;
300 while (last_trb(xhci, ring, enq_seg, enq)) {
301 enq_seg = enq_seg->next;
302 enq = enq_seg->trbs;
303 }
304 }
305 return 1;
306}
307
7f84eef0 308/* Ring the host controller doorbell after placing a command on the ring */
23e3be11 309void xhci_ring_cmd_db(struct xhci_hcd *xhci)
7f84eef0 310{
7f84eef0 311 xhci_dbg(xhci, "// Ding dong!\n");
50d64676 312 xhci_writel(xhci, DB_VALUE_HOST, &xhci->dba->doorbell[0]);
7f84eef0
SS
313 /* Flush PCI posted writes */
314 xhci_readl(xhci, &xhci->dba->doorbell[0]);
315}
316
be88fe4f 317void xhci_ring_ep_doorbell(struct xhci_hcd *xhci,
ae636747 318 unsigned int slot_id,
e9df17eb
SS
319 unsigned int ep_index,
320 unsigned int stream_id)
ae636747 321{
ae636747 322 __u32 __iomem *db_addr = &xhci->dba->doorbell[slot_id];
50d64676
MW
323 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
324 unsigned int ep_state = ep->ep_state;
ae636747 325
ae636747 326 /* Don't ring the doorbell for this endpoint if there are pending
50d64676 327 * cancellations because we don't want to interrupt processing.
8df75f42
SS
328 * We don't want to restart any stream rings if there's a set dequeue
329 * pointer command pending because the device can choose to start any
330 * stream once the endpoint is on the HW schedule.
331 * FIXME - check all the stream rings for pending cancellations.
ae636747 332 */
50d64676
MW
333 if ((ep_state & EP_HALT_PENDING) || (ep_state & SET_DEQ_PENDING) ||
334 (ep_state & EP_HALTED))
335 return;
336 xhci_writel(xhci, DB_VALUE(ep_index, stream_id), db_addr);
337 /* The CPU has better things to do at this point than wait for a
338 * write-posting flush. It'll get there soon enough.
339 */
ae636747
SS
340}
341
e9df17eb
SS
342/* Ring the doorbell for any rings with pending URBs */
343static void ring_doorbell_for_active_rings(struct xhci_hcd *xhci,
344 unsigned int slot_id,
345 unsigned int ep_index)
346{
347 unsigned int stream_id;
348 struct xhci_virt_ep *ep;
349
350 ep = &xhci->devs[slot_id]->eps[ep_index];
351
352 /* A ring has pending URBs if its TD list is not empty */
353 if (!(ep->ep_state & EP_HAS_STREAMS)) {
354 if (!(list_empty(&ep->ring->td_list)))
be88fe4f 355 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, 0);
e9df17eb
SS
356 return;
357 }
358
359 for (stream_id = 1; stream_id < ep->stream_info->num_streams;
360 stream_id++) {
361 struct xhci_stream_info *stream_info = ep->stream_info;
362 if (!list_empty(&stream_info->stream_rings[stream_id]->td_list))
be88fe4f
AX
363 xhci_ring_ep_doorbell(xhci, slot_id, ep_index,
364 stream_id);
e9df17eb
SS
365 }
366}
367
ae636747
SS
368/*
369 * Find the segment that trb is in. Start searching in start_seg.
370 * If we must move past a segment that has a link TRB with a toggle cycle state
371 * bit set, then we will toggle the value pointed at by cycle_state.
372 */
373static struct xhci_segment *find_trb_seg(
374 struct xhci_segment *start_seg,
375 union xhci_trb *trb, int *cycle_state)
376{
377 struct xhci_segment *cur_seg = start_seg;
378 struct xhci_generic_trb *generic_trb;
379
380 while (cur_seg->trbs > trb ||
381 &cur_seg->trbs[TRBS_PER_SEGMENT - 1] < trb) {
382 generic_trb = &cur_seg->trbs[TRBS_PER_SEGMENT - 1].generic;
54b5acf3
AX
383 if ((generic_trb->field[3] & TRB_TYPE_BITMASK) ==
384 TRB_TYPE(TRB_LINK) &&
ae636747
SS
385 (generic_trb->field[3] & LINK_TOGGLE))
386 *cycle_state = ~(*cycle_state) & 0x1;
387 cur_seg = cur_seg->next;
388 if (cur_seg == start_seg)
389 /* Looped over the entire list. Oops! */
326b4810 390 return NULL;
ae636747
SS
391 }
392 return cur_seg;
393}
394
021bff91
SS
395
396static struct xhci_ring *xhci_triad_to_transfer_ring(struct xhci_hcd *xhci,
397 unsigned int slot_id, unsigned int ep_index,
398 unsigned int stream_id)
399{
400 struct xhci_virt_ep *ep;
401
402 ep = &xhci->devs[slot_id]->eps[ep_index];
403 /* Common case: no streams */
404 if (!(ep->ep_state & EP_HAS_STREAMS))
405 return ep->ring;
406
407 if (stream_id == 0) {
408 xhci_warn(xhci,
409 "WARN: Slot ID %u, ep index %u has streams, "
410 "but URB has no stream ID.\n",
411 slot_id, ep_index);
412 return NULL;
413 }
414
415 if (stream_id < ep->stream_info->num_streams)
416 return ep->stream_info->stream_rings[stream_id];
417
418 xhci_warn(xhci,
419 "WARN: Slot ID %u, ep index %u has "
420 "stream IDs 1 to %u allocated, "
421 "but stream ID %u is requested.\n",
422 slot_id, ep_index,
423 ep->stream_info->num_streams - 1,
424 stream_id);
425 return NULL;
426}
427
428/* Get the right ring for the given URB.
429 * If the endpoint supports streams, boundary check the URB's stream ID.
430 * If the endpoint doesn't support streams, return the singular endpoint ring.
431 */
432static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
433 struct urb *urb)
434{
435 return xhci_triad_to_transfer_ring(xhci, urb->dev->slot_id,
436 xhci_get_endpoint_index(&urb->ep->desc), urb->stream_id);
437}
438
ae636747
SS
439/*
440 * Move the xHC's endpoint ring dequeue pointer past cur_td.
441 * Record the new state of the xHC's endpoint ring dequeue segment,
442 * dequeue pointer, and new consumer cycle state in state.
443 * Update our internal representation of the ring's dequeue pointer.
444 *
445 * We do this in three jumps:
446 * - First we update our new ring state to be the same as when the xHC stopped.
447 * - Then we traverse the ring to find the segment that contains
448 * the last TRB in the TD. We toggle the xHC's new cycle state when we pass
449 * any link TRBs with the toggle cycle bit set.
450 * - Finally we move the dequeue state one TRB further, toggling the cycle bit
451 * if we've moved it past a link TRB with the toggle cycle bit set.
452 */
c92bcfa7 453void xhci_find_new_dequeue_state(struct xhci_hcd *xhci,
ae636747 454 unsigned int slot_id, unsigned int ep_index,
e9df17eb
SS
455 unsigned int stream_id, struct xhci_td *cur_td,
456 struct xhci_dequeue_state *state)
ae636747
SS
457{
458 struct xhci_virt_device *dev = xhci->devs[slot_id];
e9df17eb 459 struct xhci_ring *ep_ring;
ae636747 460 struct xhci_generic_trb *trb;
d115b048 461 struct xhci_ep_ctx *ep_ctx;
c92bcfa7 462 dma_addr_t addr;
ae636747 463
e9df17eb
SS
464 ep_ring = xhci_triad_to_transfer_ring(xhci, slot_id,
465 ep_index, stream_id);
466 if (!ep_ring) {
467 xhci_warn(xhci, "WARN can't find new dequeue state "
468 "for invalid stream ID %u.\n",
469 stream_id);
470 return;
471 }
ae636747 472 state->new_cycle_state = 0;
c92bcfa7 473 xhci_dbg(xhci, "Finding segment containing stopped TRB.\n");
ae636747 474 state->new_deq_seg = find_trb_seg(cur_td->start_seg,
63a0d9ab 475 dev->eps[ep_index].stopped_trb,
ae636747
SS
476 &state->new_cycle_state);
477 if (!state->new_deq_seg)
478 BUG();
479 /* Dig out the cycle state saved by the xHC during the stop ep cmd */
c92bcfa7 480 xhci_dbg(xhci, "Finding endpoint context\n");
d115b048
JY
481 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
482 state->new_cycle_state = 0x1 & ep_ctx->deq;
ae636747
SS
483
484 state->new_deq_ptr = cur_td->last_trb;
c92bcfa7 485 xhci_dbg(xhci, "Finding segment containing last TRB in TD.\n");
ae636747
SS
486 state->new_deq_seg = find_trb_seg(state->new_deq_seg,
487 state->new_deq_ptr,
488 &state->new_cycle_state);
489 if (!state->new_deq_seg)
490 BUG();
491
492 trb = &state->new_deq_ptr->generic;
54b5acf3 493 if ((trb->field[3] & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK) &&
ae636747
SS
494 (trb->field[3] & LINK_TOGGLE))
495 state->new_cycle_state = ~(state->new_cycle_state) & 0x1;
496 next_trb(xhci, ep_ring, &state->new_deq_seg, &state->new_deq_ptr);
497
498 /* Don't update the ring cycle state for the producer (us). */
c92bcfa7
SS
499 xhci_dbg(xhci, "New dequeue segment = %p (virtual)\n",
500 state->new_deq_seg);
501 addr = xhci_trb_virt_to_dma(state->new_deq_seg, state->new_deq_ptr);
502 xhci_dbg(xhci, "New dequeue pointer = 0x%llx (DMA)\n",
503 (unsigned long long) addr);
504 xhci_dbg(xhci, "Setting dequeue pointer in internal ring state.\n");
ae636747
SS
505 ep_ring->dequeue = state->new_deq_ptr;
506 ep_ring->deq_seg = state->new_deq_seg;
507}
508
23e3be11 509static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
ae636747
SS
510 struct xhci_td *cur_td)
511{
512 struct xhci_segment *cur_seg;
513 union xhci_trb *cur_trb;
514
515 for (cur_seg = cur_td->start_seg, cur_trb = cur_td->first_trb;
516 true;
517 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
518 if ((cur_trb->generic.field[3] & TRB_TYPE_BITMASK) ==
519 TRB_TYPE(TRB_LINK)) {
520 /* Unchain any chained Link TRBs, but
521 * leave the pointers intact.
522 */
523 cur_trb->generic.field[3] &= ~TRB_CHAIN;
524 xhci_dbg(xhci, "Cancel (unchain) link TRB\n");
700e2052
GKH
525 xhci_dbg(xhci, "Address = %p (0x%llx dma); "
526 "in seg %p (0x%llx dma)\n",
527 cur_trb,
23e3be11 528 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
700e2052
GKH
529 cur_seg,
530 (unsigned long long)cur_seg->dma);
ae636747
SS
531 } else {
532 cur_trb->generic.field[0] = 0;
533 cur_trb->generic.field[1] = 0;
534 cur_trb->generic.field[2] = 0;
535 /* Preserve only the cycle bit of this TRB */
536 cur_trb->generic.field[3] &= TRB_CYCLE;
537 cur_trb->generic.field[3] |= TRB_TYPE(TRB_TR_NOOP);
700e2052
GKH
538 xhci_dbg(xhci, "Cancel TRB %p (0x%llx dma) "
539 "in seg %p (0x%llx dma)\n",
540 cur_trb,
23e3be11 541 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
700e2052
GKH
542 cur_seg,
543 (unsigned long long)cur_seg->dma);
ae636747
SS
544 }
545 if (cur_trb == cur_td->last_trb)
546 break;
547 }
548}
549
550static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
e9df17eb
SS
551 unsigned int ep_index, unsigned int stream_id,
552 struct xhci_segment *deq_seg,
ae636747
SS
553 union xhci_trb *deq_ptr, u32 cycle_state);
554
c92bcfa7 555void xhci_queue_new_dequeue_state(struct xhci_hcd *xhci,
63a0d9ab 556 unsigned int slot_id, unsigned int ep_index,
e9df17eb 557 unsigned int stream_id,
63a0d9ab 558 struct xhci_dequeue_state *deq_state)
c92bcfa7 559{
63a0d9ab
SS
560 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
561
c92bcfa7
SS
562 xhci_dbg(xhci, "Set TR Deq Ptr cmd, new deq seg = %p (0x%llx dma), "
563 "new deq ptr = %p (0x%llx dma), new cycle = %u\n",
564 deq_state->new_deq_seg,
565 (unsigned long long)deq_state->new_deq_seg->dma,
566 deq_state->new_deq_ptr,
567 (unsigned long long)xhci_trb_virt_to_dma(deq_state->new_deq_seg, deq_state->new_deq_ptr),
568 deq_state->new_cycle_state);
e9df17eb 569 queue_set_tr_deq(xhci, slot_id, ep_index, stream_id,
c92bcfa7
SS
570 deq_state->new_deq_seg,
571 deq_state->new_deq_ptr,
572 (u32) deq_state->new_cycle_state);
573 /* Stop the TD queueing code from ringing the doorbell until
574 * this command completes. The HC won't set the dequeue pointer
575 * if the ring is running, and ringing the doorbell starts the
576 * ring running.
577 */
63a0d9ab 578 ep->ep_state |= SET_DEQ_PENDING;
c92bcfa7
SS
579}
580
6f5165cf
SS
581static inline void xhci_stop_watchdog_timer_in_irq(struct xhci_hcd *xhci,
582 struct xhci_virt_ep *ep)
583{
584 ep->ep_state &= ~EP_HALT_PENDING;
585 /* Can't del_timer_sync in interrupt, so we attempt to cancel. If the
586 * timer is running on another CPU, we don't decrement stop_cmds_pending
587 * (since we didn't successfully stop the watchdog timer).
588 */
589 if (del_timer(&ep->stop_cmd_timer))
590 ep->stop_cmds_pending--;
591}
592
593/* Must be called with xhci->lock held in interrupt context */
594static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci,
595 struct xhci_td *cur_td, int status, char *adjective)
596{
214f76f7 597 struct usb_hcd *hcd;
8e51adcc
AX
598 struct urb *urb;
599 struct urb_priv *urb_priv;
6f5165cf 600
8e51adcc
AX
601 urb = cur_td->urb;
602 urb_priv = urb->hcpriv;
603 urb_priv->td_cnt++;
214f76f7 604 hcd = bus_to_hcd(urb->dev->bus);
6f5165cf 605
8e51adcc
AX
606 /* Only giveback urb when this is the last td in urb */
607 if (urb_priv->td_cnt == urb_priv->length) {
608 usb_hcd_unlink_urb_from_ep(hcd, urb);
609 xhci_dbg(xhci, "Giveback %s URB %p\n", adjective, urb);
610
611 spin_unlock(&xhci->lock);
612 usb_hcd_giveback_urb(hcd, urb, status);
613 xhci_urb_free_priv(xhci, urb_priv);
614 spin_lock(&xhci->lock);
615 xhci_dbg(xhci, "%s URB given back\n", adjective);
616 }
6f5165cf
SS
617}
618
ae636747
SS
619/*
620 * When we get a command completion for a Stop Endpoint Command, we need to
621 * unlink any cancelled TDs from the ring. There are two ways to do that:
622 *
623 * 1. If the HW was in the middle of processing the TD that needs to be
624 * cancelled, then we must move the ring's dequeue pointer past the last TRB
625 * in the TD with a Set Dequeue Pointer Command.
626 * 2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain
627 * bit cleared) so that the HW will skip over them.
628 */
629static void handle_stopped_endpoint(struct xhci_hcd *xhci,
be88fe4f 630 union xhci_trb *trb, struct xhci_event_cmd *event)
ae636747
SS
631{
632 unsigned int slot_id;
633 unsigned int ep_index;
be88fe4f 634 struct xhci_virt_device *virt_dev;
ae636747 635 struct xhci_ring *ep_ring;
63a0d9ab 636 struct xhci_virt_ep *ep;
ae636747 637 struct list_head *entry;
326b4810 638 struct xhci_td *cur_td = NULL;
ae636747
SS
639 struct xhci_td *last_unlinked_td;
640
c92bcfa7 641 struct xhci_dequeue_state deq_state;
ae636747 642
be88fe4f
AX
643 if (unlikely(TRB_TO_SUSPEND_PORT(
644 xhci->cmd_ring->dequeue->generic.field[3]))) {
645 slot_id = TRB_TO_SLOT_ID(
646 xhci->cmd_ring->dequeue->generic.field[3]);
647 virt_dev = xhci->devs[slot_id];
648 if (virt_dev)
649 handle_cmd_in_cmd_wait_list(xhci, virt_dev,
650 event);
651 else
652 xhci_warn(xhci, "Stop endpoint command "
653 "completion for disabled slot %u\n",
654 slot_id);
655 return;
656 }
657
ae636747
SS
658 memset(&deq_state, 0, sizeof(deq_state));
659 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
660 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
63a0d9ab 661 ep = &xhci->devs[slot_id]->eps[ep_index];
ae636747 662
678539cf 663 if (list_empty(&ep->cancelled_td_list)) {
6f5165cf 664 xhci_stop_watchdog_timer_in_irq(xhci, ep);
e9df17eb 665 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
ae636747 666 return;
678539cf 667 }
ae636747
SS
668
669 /* Fix up the ep ring first, so HW stops executing cancelled TDs.
670 * We have the xHCI lock, so nothing can modify this list until we drop
671 * it. We're also in the event handler, so we can't get re-interrupted
672 * if another Stop Endpoint command completes
673 */
63a0d9ab 674 list_for_each(entry, &ep->cancelled_td_list) {
ae636747 675 cur_td = list_entry(entry, struct xhci_td, cancelled_td_list);
700e2052
GKH
676 xhci_dbg(xhci, "Cancelling TD starting at %p, 0x%llx (dma).\n",
677 cur_td->first_trb,
23e3be11 678 (unsigned long long)xhci_trb_virt_to_dma(cur_td->start_seg, cur_td->first_trb));
e9df17eb
SS
679 ep_ring = xhci_urb_to_transfer_ring(xhci, cur_td->urb);
680 if (!ep_ring) {
681 /* This shouldn't happen unless a driver is mucking
682 * with the stream ID after submission. This will
683 * leave the TD on the hardware ring, and the hardware
684 * will try to execute it, and may access a buffer
685 * that has already been freed. In the best case, the
686 * hardware will execute it, and the event handler will
687 * ignore the completion event for that TD, since it was
688 * removed from the td_list for that endpoint. In
689 * short, don't muck with the stream ID after
690 * submission.
691 */
692 xhci_warn(xhci, "WARN Cancelled URB %p "
693 "has invalid stream ID %u.\n",
694 cur_td->urb,
695 cur_td->urb->stream_id);
696 goto remove_finished_td;
697 }
ae636747
SS
698 /*
699 * If we stopped on the TD we need to cancel, then we have to
700 * move the xHC endpoint ring dequeue pointer past this TD.
701 */
63a0d9ab 702 if (cur_td == ep->stopped_td)
e9df17eb
SS
703 xhci_find_new_dequeue_state(xhci, slot_id, ep_index,
704 cur_td->urb->stream_id,
705 cur_td, &deq_state);
ae636747
SS
706 else
707 td_to_noop(xhci, ep_ring, cur_td);
e9df17eb 708remove_finished_td:
ae636747
SS
709 /*
710 * The event handler won't see a completion for this TD anymore,
711 * so remove it from the endpoint ring's TD list. Keep it in
712 * the cancelled TD list for URB completion later.
713 */
714 list_del(&cur_td->td_list);
ae636747
SS
715 }
716 last_unlinked_td = cur_td;
6f5165cf 717 xhci_stop_watchdog_timer_in_irq(xhci, ep);
ae636747
SS
718
719 /* If necessary, queue a Set Transfer Ring Dequeue Pointer command */
720 if (deq_state.new_deq_ptr && deq_state.new_deq_seg) {
63a0d9ab 721 xhci_queue_new_dequeue_state(xhci,
e9df17eb
SS
722 slot_id, ep_index,
723 ep->stopped_td->urb->stream_id,
724 &deq_state);
ac9d8fe7 725 xhci_ring_cmd_db(xhci);
ae636747 726 } else {
e9df17eb
SS
727 /* Otherwise ring the doorbell(s) to restart queued transfers */
728 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
ae636747 729 }
1624ae1c
SS
730 ep->stopped_td = NULL;
731 ep->stopped_trb = NULL;
ae636747
SS
732
733 /*
734 * Drop the lock and complete the URBs in the cancelled TD list.
735 * New TDs to be cancelled might be added to the end of the list before
736 * we can complete all the URBs for the TDs we already unlinked.
737 * So stop when we've completed the URB for the last TD we unlinked.
738 */
739 do {
63a0d9ab 740 cur_td = list_entry(ep->cancelled_td_list.next,
ae636747
SS
741 struct xhci_td, cancelled_td_list);
742 list_del(&cur_td->cancelled_td_list);
743
744 /* Clean up the cancelled URB */
ae636747
SS
745 /* Doesn't matter what we pass for status, since the core will
746 * just overwrite it (because the URB has been unlinked).
747 */
6f5165cf 748 xhci_giveback_urb_in_irq(xhci, cur_td, 0, "cancelled");
ae636747 749
6f5165cf
SS
750 /* Stop processing the cancelled list if the watchdog timer is
751 * running.
752 */
753 if (xhci->xhc_state & XHCI_STATE_DYING)
754 return;
ae636747
SS
755 } while (cur_td != last_unlinked_td);
756
757 /* Return to the event handler with xhci->lock re-acquired */
758}
759
6f5165cf
SS
760/* Watchdog timer function for when a stop endpoint command fails to complete.
761 * In this case, we assume the host controller is broken or dying or dead. The
762 * host may still be completing some other events, so we have to be careful to
763 * let the event ring handler and the URB dequeueing/enqueueing functions know
764 * through xhci->state.
765 *
766 * The timer may also fire if the host takes a very long time to respond to the
767 * command, and the stop endpoint command completion handler cannot delete the
768 * timer before the timer function is called. Another endpoint cancellation may
769 * sneak in before the timer function can grab the lock, and that may queue
770 * another stop endpoint command and add the timer back. So we cannot use a
771 * simple flag to say whether there is a pending stop endpoint command for a
772 * particular endpoint.
773 *
774 * Instead we use a combination of that flag and a counter for the number of
775 * pending stop endpoint commands. If the timer is the tail end of the last
776 * stop endpoint command, and the endpoint's command is still pending, we assume
777 * the host is dying.
778 */
779void xhci_stop_endpoint_command_watchdog(unsigned long arg)
780{
781 struct xhci_hcd *xhci;
782 struct xhci_virt_ep *ep;
783 struct xhci_virt_ep *temp_ep;
784 struct xhci_ring *ring;
785 struct xhci_td *cur_td;
786 int ret, i, j;
787
788 ep = (struct xhci_virt_ep *) arg;
789 xhci = ep->xhci;
790
791 spin_lock(&xhci->lock);
792
793 ep->stop_cmds_pending--;
794 if (xhci->xhc_state & XHCI_STATE_DYING) {
795 xhci_dbg(xhci, "Stop EP timer ran, but another timer marked "
796 "xHCI as DYING, exiting.\n");
797 spin_unlock(&xhci->lock);
798 return;
799 }
800 if (!(ep->stop_cmds_pending == 0 && (ep->ep_state & EP_HALT_PENDING))) {
801 xhci_dbg(xhci, "Stop EP timer ran, but no command pending, "
802 "exiting.\n");
803 spin_unlock(&xhci->lock);
804 return;
805 }
806
807 xhci_warn(xhci, "xHCI host not responding to stop endpoint command.\n");
808 xhci_warn(xhci, "Assuming host is dying, halting host.\n");
809 /* Oops, HC is dead or dying or at least not responding to the stop
810 * endpoint command.
811 */
812 xhci->xhc_state |= XHCI_STATE_DYING;
813 /* Disable interrupts from the host controller and start halting it */
814 xhci_quiesce(xhci);
815 spin_unlock(&xhci->lock);
816
817 ret = xhci_halt(xhci);
818
819 spin_lock(&xhci->lock);
820 if (ret < 0) {
821 /* This is bad; the host is not responding to commands and it's
822 * not allowing itself to be halted. At least interrupts are
ac04e6ff 823 * disabled. If we call usb_hc_died(), it will attempt to
6f5165cf
SS
824 * disconnect all device drivers under this host. Those
825 * disconnect() methods will wait for all URBs to be unlinked,
826 * so we must complete them.
827 */
828 xhci_warn(xhci, "Non-responsive xHCI host is not halting.\n");
829 xhci_warn(xhci, "Completing active URBs anyway.\n");
830 /* We could turn all TDs on the rings to no-ops. This won't
831 * help if the host has cached part of the ring, and is slow if
832 * we want to preserve the cycle bit. Skip it and hope the host
833 * doesn't touch the memory.
834 */
835 }
836 for (i = 0; i < MAX_HC_SLOTS; i++) {
837 if (!xhci->devs[i])
838 continue;
839 for (j = 0; j < 31; j++) {
840 temp_ep = &xhci->devs[i]->eps[j];
841 ring = temp_ep->ring;
842 if (!ring)
843 continue;
844 xhci_dbg(xhci, "Killing URBs for slot ID %u, "
845 "ep index %u\n", i, j);
846 while (!list_empty(&ring->td_list)) {
847 cur_td = list_first_entry(&ring->td_list,
848 struct xhci_td,
849 td_list);
850 list_del(&cur_td->td_list);
851 if (!list_empty(&cur_td->cancelled_td_list))
852 list_del(&cur_td->cancelled_td_list);
853 xhci_giveback_urb_in_irq(xhci, cur_td,
854 -ESHUTDOWN, "killed");
855 }
856 while (!list_empty(&temp_ep->cancelled_td_list)) {
857 cur_td = list_first_entry(
858 &temp_ep->cancelled_td_list,
859 struct xhci_td,
860 cancelled_td_list);
861 list_del(&cur_td->cancelled_td_list);
862 xhci_giveback_urb_in_irq(xhci, cur_td,
863 -ESHUTDOWN, "killed");
864 }
865 }
866 }
867 spin_unlock(&xhci->lock);
6f5165cf 868 xhci_dbg(xhci, "Calling usb_hc_died()\n");
f6ff0ac8 869 usb_hc_died(xhci_to_hcd(xhci)->primary_hcd);
6f5165cf
SS
870 xhci_dbg(xhci, "xHCI host controller is dead.\n");
871}
872
ae636747
SS
873/*
874 * When we get a completion for a Set Transfer Ring Dequeue Pointer command,
875 * we need to clear the set deq pending flag in the endpoint ring state, so that
876 * the TD queueing code can ring the doorbell again. We also need to ring the
877 * endpoint doorbell to restart the ring, but only if there aren't more
878 * cancellations pending.
879 */
880static void handle_set_deq_completion(struct xhci_hcd *xhci,
881 struct xhci_event_cmd *event,
882 union xhci_trb *trb)
883{
884 unsigned int slot_id;
885 unsigned int ep_index;
e9df17eb 886 unsigned int stream_id;
ae636747
SS
887 struct xhci_ring *ep_ring;
888 struct xhci_virt_device *dev;
d115b048
JY
889 struct xhci_ep_ctx *ep_ctx;
890 struct xhci_slot_ctx *slot_ctx;
ae636747
SS
891
892 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
893 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
e9df17eb 894 stream_id = TRB_TO_STREAM_ID(trb->generic.field[2]);
ae636747 895 dev = xhci->devs[slot_id];
e9df17eb
SS
896
897 ep_ring = xhci_stream_id_to_ring(dev, ep_index, stream_id);
898 if (!ep_ring) {
899 xhci_warn(xhci, "WARN Set TR deq ptr command for "
900 "freed stream ID %u\n",
901 stream_id);
902 /* XXX: Harmless??? */
903 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
904 return;
905 }
906
d115b048
JY
907 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
908 slot_ctx = xhci_get_slot_ctx(xhci, dev->out_ctx);
ae636747
SS
909
910 if (GET_COMP_CODE(event->status) != COMP_SUCCESS) {
911 unsigned int ep_state;
912 unsigned int slot_state;
913
914 switch (GET_COMP_CODE(event->status)) {
915 case COMP_TRB_ERR:
916 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because "
917 "of stream ID configuration\n");
918 break;
919 case COMP_CTX_STATE:
920 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due "
921 "to incorrect slot or ep state.\n");
d115b048 922 ep_state = ep_ctx->ep_info;
ae636747 923 ep_state &= EP_STATE_MASK;
d115b048 924 slot_state = slot_ctx->dev_state;
ae636747
SS
925 slot_state = GET_SLOT_STATE(slot_state);
926 xhci_dbg(xhci, "Slot state = %u, EP state = %u\n",
927 slot_state, ep_state);
928 break;
929 case COMP_EBADSLT:
930 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because "
931 "slot %u was not enabled.\n", slot_id);
932 break;
933 default:
934 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown "
935 "completion code of %u.\n",
936 GET_COMP_CODE(event->status));
937 break;
938 }
939 /* OK what do we do now? The endpoint state is hosed, and we
940 * should never get to this point if the synchronization between
941 * queueing, and endpoint state are correct. This might happen
942 * if the device gets disconnected after we've finished
943 * cancelling URBs, which might not be an error...
944 */
945 } else {
8e595a5d 946 xhci_dbg(xhci, "Successful Set TR Deq Ptr cmd, deq = @%08llx\n",
d115b048 947 ep_ctx->deq);
ae636747
SS
948 }
949
63a0d9ab 950 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
e9df17eb
SS
951 /* Restart any rings with pending URBs */
952 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
ae636747
SS
953}
954
a1587d97
SS
955static void handle_reset_ep_completion(struct xhci_hcd *xhci,
956 struct xhci_event_cmd *event,
957 union xhci_trb *trb)
958{
959 int slot_id;
960 unsigned int ep_index;
961
962 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
963 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
964 /* This command will only fail if the endpoint wasn't halted,
965 * but we don't care.
966 */
967 xhci_dbg(xhci, "Ignoring reset ep completion code of %u\n",
968 (unsigned int) GET_COMP_CODE(event->status));
969
ac9d8fe7
SS
970 /* HW with the reset endpoint quirk needs to have a configure endpoint
971 * command complete before the endpoint can be used. Queue that here
972 * because the HW can't handle two commands being queued in a row.
973 */
974 if (xhci->quirks & XHCI_RESET_EP_QUIRK) {
975 xhci_dbg(xhci, "Queueing configure endpoint command\n");
976 xhci_queue_configure_endpoint(xhci,
913a8a34
SS
977 xhci->devs[slot_id]->in_ctx->dma, slot_id,
978 false);
ac9d8fe7
SS
979 xhci_ring_cmd_db(xhci);
980 } else {
e9df17eb 981 /* Clear our internal halted state and restart the ring(s) */
63a0d9ab 982 xhci->devs[slot_id]->eps[ep_index].ep_state &= ~EP_HALTED;
e9df17eb 983 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
ac9d8fe7 984 }
a1587d97 985}
ae636747 986
a50c8aa9
SS
987/* Check to see if a command in the device's command queue matches this one.
988 * Signal the completion or free the command, and return 1. Return 0 if the
989 * completed command isn't at the head of the command list.
990 */
991static int handle_cmd_in_cmd_wait_list(struct xhci_hcd *xhci,
992 struct xhci_virt_device *virt_dev,
993 struct xhci_event_cmd *event)
994{
995 struct xhci_command *command;
996
997 if (list_empty(&virt_dev->cmd_list))
998 return 0;
999
1000 command = list_entry(virt_dev->cmd_list.next,
1001 struct xhci_command, cmd_list);
1002 if (xhci->cmd_ring->dequeue != command->command_trb)
1003 return 0;
1004
1005 command->status =
1006 GET_COMP_CODE(event->status);
1007 list_del(&command->cmd_list);
1008 if (command->completion)
1009 complete(command->completion);
1010 else
1011 xhci_free_command(xhci, command);
1012 return 1;
1013}
1014
7f84eef0
SS
1015static void handle_cmd_completion(struct xhci_hcd *xhci,
1016 struct xhci_event_cmd *event)
1017{
3ffbba95 1018 int slot_id = TRB_TO_SLOT_ID(event->flags);
7f84eef0
SS
1019 u64 cmd_dma;
1020 dma_addr_t cmd_dequeue_dma;
ac9d8fe7 1021 struct xhci_input_control_ctx *ctrl_ctx;
913a8a34 1022 struct xhci_virt_device *virt_dev;
ac9d8fe7
SS
1023 unsigned int ep_index;
1024 struct xhci_ring *ep_ring;
1025 unsigned int ep_state;
7f84eef0 1026
8e595a5d 1027 cmd_dma = event->cmd_trb;
23e3be11 1028 cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
7f84eef0
SS
1029 xhci->cmd_ring->dequeue);
1030 /* Is the command ring deq ptr out of sync with the deq seg ptr? */
1031 if (cmd_dequeue_dma == 0) {
1032 xhci->error_bitmask |= 1 << 4;
1033 return;
1034 }
1035 /* Does the DMA address match our internal dequeue pointer address? */
1036 if (cmd_dma != (u64) cmd_dequeue_dma) {
1037 xhci->error_bitmask |= 1 << 5;
1038 return;
1039 }
1040 switch (xhci->cmd_ring->dequeue->generic.field[3] & TRB_TYPE_BITMASK) {
3ffbba95
SS
1041 case TRB_TYPE(TRB_ENABLE_SLOT):
1042 if (GET_COMP_CODE(event->status) == COMP_SUCCESS)
1043 xhci->slot_id = slot_id;
1044 else
1045 xhci->slot_id = 0;
1046 complete(&xhci->addr_dev);
1047 break;
1048 case TRB_TYPE(TRB_DISABLE_SLOT):
1049 if (xhci->devs[slot_id])
1050 xhci_free_virt_device(xhci, slot_id);
1051 break;
f94e0186 1052 case TRB_TYPE(TRB_CONFIG_EP):
913a8a34 1053 virt_dev = xhci->devs[slot_id];
a50c8aa9 1054 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
913a8a34 1055 break;
ac9d8fe7
SS
1056 /*
1057 * Configure endpoint commands can come from the USB core
1058 * configuration or alt setting changes, or because the HW
1059 * needed an extra configure endpoint command after a reset
8df75f42
SS
1060 * endpoint command or streams were being configured.
1061 * If the command was for a halted endpoint, the xHCI driver
1062 * is not waiting on the configure endpoint command.
ac9d8fe7
SS
1063 */
1064 ctrl_ctx = xhci_get_input_control_ctx(xhci,
913a8a34 1065 virt_dev->in_ctx);
ac9d8fe7
SS
1066 /* Input ctx add_flags are the endpoint index plus one */
1067 ep_index = xhci_last_valid_endpoint(ctrl_ctx->add_flags) - 1;
06df5729 1068 /* A usb_set_interface() call directly after clearing a halted
e9df17eb
SS
1069 * condition may race on this quirky hardware. Not worth
1070 * worrying about, since this is prototype hardware. Not sure
1071 * if this will work for streams, but streams support was
1072 * untested on this prototype.
06df5729 1073 */
ac9d8fe7 1074 if (xhci->quirks & XHCI_RESET_EP_QUIRK &&
06df5729
SS
1075 ep_index != (unsigned int) -1 &&
1076 ctrl_ctx->add_flags - SLOT_FLAG ==
1077 ctrl_ctx->drop_flags) {
1078 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
1079 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1080 if (!(ep_state & EP_HALTED))
1081 goto bandwidth_change;
1082 xhci_dbg(xhci, "Completed config ep cmd - "
1083 "last ep index = %d, state = %d\n",
1084 ep_index, ep_state);
e9df17eb 1085 /* Clear internal halted state and restart ring(s) */
63a0d9ab 1086 xhci->devs[slot_id]->eps[ep_index].ep_state &=
ac9d8fe7 1087 ~EP_HALTED;
e9df17eb 1088 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
06df5729 1089 break;
ac9d8fe7 1090 }
06df5729
SS
1091bandwidth_change:
1092 xhci_dbg(xhci, "Completed config ep cmd\n");
1093 xhci->devs[slot_id]->cmd_status =
1094 GET_COMP_CODE(event->status);
1095 complete(&xhci->devs[slot_id]->cmd_completion);
f94e0186 1096 break;
2d3f1fac 1097 case TRB_TYPE(TRB_EVAL_CONTEXT):
ac1c1b7f
SS
1098 virt_dev = xhci->devs[slot_id];
1099 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
1100 break;
2d3f1fac
SS
1101 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
1102 complete(&xhci->devs[slot_id]->cmd_completion);
1103 break;
3ffbba95
SS
1104 case TRB_TYPE(TRB_ADDR_DEV):
1105 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
1106 complete(&xhci->addr_dev);
1107 break;
ae636747 1108 case TRB_TYPE(TRB_STOP_RING):
be88fe4f 1109 handle_stopped_endpoint(xhci, xhci->cmd_ring->dequeue, event);
ae636747
SS
1110 break;
1111 case TRB_TYPE(TRB_SET_DEQ):
1112 handle_set_deq_completion(xhci, event, xhci->cmd_ring->dequeue);
1113 break;
7f84eef0 1114 case TRB_TYPE(TRB_CMD_NOOP):
7f84eef0 1115 break;
a1587d97
SS
1116 case TRB_TYPE(TRB_RESET_EP):
1117 handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue);
1118 break;
2a8f82c4
SS
1119 case TRB_TYPE(TRB_RESET_DEV):
1120 xhci_dbg(xhci, "Completed reset device command.\n");
1121 slot_id = TRB_TO_SLOT_ID(
1122 xhci->cmd_ring->dequeue->generic.field[3]);
1123 virt_dev = xhci->devs[slot_id];
1124 if (virt_dev)
1125 handle_cmd_in_cmd_wait_list(xhci, virt_dev, event);
1126 else
1127 xhci_warn(xhci, "Reset device command completion "
1128 "for disabled slot %u\n", slot_id);
1129 break;
0238634d
SS
1130 case TRB_TYPE(TRB_NEC_GET_FW):
1131 if (!(xhci->quirks & XHCI_NEC_HOST)) {
1132 xhci->error_bitmask |= 1 << 6;
1133 break;
1134 }
1135 xhci_dbg(xhci, "NEC firmware version %2x.%02x\n",
1136 NEC_FW_MAJOR(event->status),
1137 NEC_FW_MINOR(event->status));
1138 break;
7f84eef0
SS
1139 default:
1140 /* Skip over unknown commands on the event ring */
1141 xhci->error_bitmask |= 1 << 6;
1142 break;
1143 }
1144 inc_deq(xhci, xhci->cmd_ring, false);
1145}
1146
0238634d
SS
1147static void handle_vendor_event(struct xhci_hcd *xhci,
1148 union xhci_trb *event)
1149{
1150 u32 trb_type;
1151
1152 trb_type = TRB_FIELD_TO_TYPE(event->generic.field[3]);
1153 xhci_dbg(xhci, "Vendor specific event TRB type = %u\n", trb_type);
1154 if (trb_type == TRB_NEC_CMD_COMP && (xhci->quirks & XHCI_NEC_HOST))
1155 handle_cmd_completion(xhci, &event->event_cmd);
1156}
1157
f6ff0ac8
SS
1158/* @port_id: the one-based port ID from the hardware (indexed from array of all
1159 * port registers -- USB 3.0 and USB 2.0).
1160 *
1161 * Returns a zero-based port number, which is suitable for indexing into each of
1162 * the split roothubs' port arrays and bus state arrays.
1163 */
1164static unsigned int find_faked_portnum_from_hw_portnum(struct usb_hcd *hcd,
1165 struct xhci_hcd *xhci, u32 port_id)
1166{
1167 unsigned int i;
1168 unsigned int num_similar_speed_ports = 0;
1169
1170 /* port_id from the hardware is 1-based, but port_array[], usb3_ports[],
1171 * and usb2_ports are 0-based indexes. Count the number of similar
1172 * speed ports, up to 1 port before this port.
1173 */
1174 for (i = 0; i < (port_id - 1); i++) {
1175 u8 port_speed = xhci->port_array[i];
1176
1177 /*
1178 * Skip ports that don't have known speeds, or have duplicate
1179 * Extended Capabilities port speed entries.
1180 */
1181 if (port_speed == 0 || port_speed == -1)
1182 continue;
1183
1184 /*
1185 * USB 3.0 ports are always under a USB 3.0 hub. USB 2.0 and
1186 * 1.1 ports are under the USB 2.0 hub. If the port speed
1187 * matches the device speed, it's a similar speed port.
1188 */
1189 if ((port_speed == 0x03) == (hcd->speed == HCD_USB3))
1190 num_similar_speed_ports++;
1191 }
1192 return num_similar_speed_ports;
1193}
1194
0f2a7930
SS
1195static void handle_port_status(struct xhci_hcd *xhci,
1196 union xhci_trb *event)
1197{
f6ff0ac8 1198 struct usb_hcd *hcd;
0f2a7930 1199 u32 port_id;
56192531 1200 u32 temp, temp1;
518e848e 1201 int max_ports;
56192531 1202 int slot_id;
5308a91b 1203 unsigned int faked_port_index;
f6ff0ac8 1204 u8 major_revision;
20b67cf5 1205 struct xhci_bus_state *bus_state;
f6ff0ac8 1206 u32 __iomem **port_array;
0f2a7930
SS
1207
1208 /* Port status change events always have a successful completion code */
1209 if (GET_COMP_CODE(event->generic.field[2]) != COMP_SUCCESS) {
1210 xhci_warn(xhci, "WARN: xHC returned failed port status event\n");
1211 xhci->error_bitmask |= 1 << 8;
1212 }
0f2a7930
SS
1213 port_id = GET_PORT_ID(event->generic.field[0]);
1214 xhci_dbg(xhci, "Port Status Change Event for port %d\n", port_id);
1215
518e848e
SS
1216 max_ports = HCS_MAX_PORTS(xhci->hcs_params1);
1217 if ((port_id <= 0) || (port_id > max_ports)) {
56192531
AX
1218 xhci_warn(xhci, "Invalid port id %d\n", port_id);
1219 goto cleanup;
1220 }
1221
f6ff0ac8
SS
1222 /* Figure out which usb_hcd this port is attached to:
1223 * is it a USB 3.0 port or a USB 2.0/1.1 port?
1224 */
1225 major_revision = xhci->port_array[port_id - 1];
1226 if (major_revision == 0) {
1227 xhci_warn(xhci, "Event for port %u not in "
1228 "Extended Capabilities, ignoring.\n",
1229 port_id);
1230 goto cleanup;
5308a91b 1231 }
f6ff0ac8
SS
1232 if (major_revision == (u8) -1) {
1233 xhci_warn(xhci, "Event for port %u duplicated in"
1234 "Extended Capabilities, ignoring.\n",
1235 port_id);
1236 goto cleanup;
1237 }
1238
1239 /*
1240 * Hardware port IDs reported by a Port Status Change Event include USB
1241 * 3.0 and USB 2.0 ports. We want to check if the port has reported a
1242 * resume event, but we first need to translate the hardware port ID
1243 * into the index into the ports on the correct split roothub, and the
1244 * correct bus_state structure.
1245 */
1246 /* Find the right roothub. */
1247 hcd = xhci_to_hcd(xhci);
1248 if ((major_revision == 0x03) != (hcd->speed == HCD_USB3))
1249 hcd = xhci->shared_hcd;
1250 bus_state = &xhci->bus_state[hcd_index(hcd)];
1251 if (hcd->speed == HCD_USB3)
1252 port_array = xhci->usb3_ports;
1253 else
1254 port_array = xhci->usb2_ports;
1255 /* Find the faked port hub number */
1256 faked_port_index = find_faked_portnum_from_hw_portnum(hcd, xhci,
1257 port_id);
5308a91b 1258
5308a91b 1259 temp = xhci_readl(xhci, port_array[faked_port_index]);
7111ebc9 1260 if (hcd->state == HC_STATE_SUSPENDED) {
56192531
AX
1261 xhci_dbg(xhci, "resume root hub\n");
1262 usb_hcd_resume_root_hub(hcd);
1263 }
1264
1265 if ((temp & PORT_PLC) && (temp & PORT_PLS_MASK) == XDEV_RESUME) {
1266 xhci_dbg(xhci, "port resume event for port %d\n", port_id);
1267
1268 temp1 = xhci_readl(xhci, &xhci->op_regs->command);
1269 if (!(temp1 & CMD_RUN)) {
1270 xhci_warn(xhci, "xHC is not running.\n");
1271 goto cleanup;
1272 }
1273
1274 if (DEV_SUPERSPEED(temp)) {
1275 xhci_dbg(xhci, "resume SS port %d\n", port_id);
1276 temp = xhci_port_state_to_neutral(temp);
1277 temp &= ~PORT_PLS_MASK;
1278 temp |= PORT_LINK_STROBE | XDEV_U0;
5308a91b 1279 xhci_writel(xhci, temp, port_array[faked_port_index]);
5233630f
SS
1280 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
1281 faked_port_index);
56192531
AX
1282 if (!slot_id) {
1283 xhci_dbg(xhci, "slot_id is zero\n");
1284 goto cleanup;
1285 }
1286 xhci_ring_device(xhci, slot_id);
1287 xhci_dbg(xhci, "resume SS port %d finished\n", port_id);
1288 /* Clear PORT_PLC */
5308a91b 1289 temp = xhci_readl(xhci, port_array[faked_port_index]);
56192531
AX
1290 temp = xhci_port_state_to_neutral(temp);
1291 temp |= PORT_PLC;
5308a91b 1292 xhci_writel(xhci, temp, port_array[faked_port_index]);
56192531
AX
1293 } else {
1294 xhci_dbg(xhci, "resume HS port %d\n", port_id);
f6ff0ac8 1295 bus_state->resume_done[faked_port_index] = jiffies +
56192531
AX
1296 msecs_to_jiffies(20);
1297 mod_timer(&hcd->rh_timer,
f6ff0ac8 1298 bus_state->resume_done[faked_port_index]);
56192531
AX
1299 /* Do the rest in GetPortStatus */
1300 }
1301 }
1302
1303cleanup:
0f2a7930
SS
1304 /* Update event ring dequeue pointer before dropping the lock */
1305 inc_deq(xhci, xhci->event_ring, true);
0f2a7930
SS
1306
1307 spin_unlock(&xhci->lock);
1308 /* Pass this up to the core */
f6ff0ac8 1309 usb_hcd_poll_rh_status(hcd);
0f2a7930
SS
1310 spin_lock(&xhci->lock);
1311}
1312
d0e96f5a
SS
1313/*
1314 * This TD is defined by the TRBs starting at start_trb in start_seg and ending
1315 * at end_trb, which may be in another segment. If the suspect DMA address is a
1316 * TRB in this TD, this function returns that TRB's segment. Otherwise it
1317 * returns 0.
1318 */
6648f29d 1319struct xhci_segment *trb_in_td(struct xhci_segment *start_seg,
d0e96f5a
SS
1320 union xhci_trb *start_trb,
1321 union xhci_trb *end_trb,
1322 dma_addr_t suspect_dma)
1323{
1324 dma_addr_t start_dma;
1325 dma_addr_t end_seg_dma;
1326 dma_addr_t end_trb_dma;
1327 struct xhci_segment *cur_seg;
1328
23e3be11 1329 start_dma = xhci_trb_virt_to_dma(start_seg, start_trb);
d0e96f5a
SS
1330 cur_seg = start_seg;
1331
1332 do {
2fa88daa 1333 if (start_dma == 0)
326b4810 1334 return NULL;
ae636747 1335 /* We may get an event for a Link TRB in the middle of a TD */
23e3be11 1336 end_seg_dma = xhci_trb_virt_to_dma(cur_seg,
2fa88daa 1337 &cur_seg->trbs[TRBS_PER_SEGMENT - 1]);
d0e96f5a 1338 /* If the end TRB isn't in this segment, this is set to 0 */
23e3be11 1339 end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb);
d0e96f5a
SS
1340
1341 if (end_trb_dma > 0) {
1342 /* The end TRB is in this segment, so suspect should be here */
1343 if (start_dma <= end_trb_dma) {
1344 if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma)
1345 return cur_seg;
1346 } else {
1347 /* Case for one segment with
1348 * a TD wrapped around to the top
1349 */
1350 if ((suspect_dma >= start_dma &&
1351 suspect_dma <= end_seg_dma) ||
1352 (suspect_dma >= cur_seg->dma &&
1353 suspect_dma <= end_trb_dma))
1354 return cur_seg;
1355 }
326b4810 1356 return NULL;
d0e96f5a
SS
1357 } else {
1358 /* Might still be somewhere in this segment */
1359 if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma)
1360 return cur_seg;
1361 }
1362 cur_seg = cur_seg->next;
23e3be11 1363 start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]);
2fa88daa 1364 } while (cur_seg != start_seg);
d0e96f5a 1365
326b4810 1366 return NULL;
d0e96f5a
SS
1367}
1368
bcef3fd5
SS
1369static void xhci_cleanup_halted_endpoint(struct xhci_hcd *xhci,
1370 unsigned int slot_id, unsigned int ep_index,
e9df17eb 1371 unsigned int stream_id,
bcef3fd5
SS
1372 struct xhci_td *td, union xhci_trb *event_trb)
1373{
1374 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
1375 ep->ep_state |= EP_HALTED;
1376 ep->stopped_td = td;
1377 ep->stopped_trb = event_trb;
e9df17eb 1378 ep->stopped_stream = stream_id;
1624ae1c 1379
bcef3fd5
SS
1380 xhci_queue_reset_ep(xhci, slot_id, ep_index);
1381 xhci_cleanup_stalled_ring(xhci, td->urb->dev, ep_index);
1624ae1c
SS
1382
1383 ep->stopped_td = NULL;
1384 ep->stopped_trb = NULL;
5e5cf6fc 1385 ep->stopped_stream = 0;
1624ae1c 1386
bcef3fd5
SS
1387 xhci_ring_cmd_db(xhci);
1388}
1389
1390/* Check if an error has halted the endpoint ring. The class driver will
1391 * cleanup the halt for a non-default control endpoint if we indicate a stall.
1392 * However, a babble and other errors also halt the endpoint ring, and the class
1393 * driver won't clear the halt in that case, so we need to issue a Set Transfer
1394 * Ring Dequeue Pointer command manually.
1395 */
1396static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci,
1397 struct xhci_ep_ctx *ep_ctx,
1398 unsigned int trb_comp_code)
1399{
1400 /* TRB completion codes that may require a manual halt cleanup */
1401 if (trb_comp_code == COMP_TX_ERR ||
1402 trb_comp_code == COMP_BABBLE ||
1403 trb_comp_code == COMP_SPLIT_ERR)
1404 /* The 0.96 spec says a babbling control endpoint
1405 * is not halted. The 0.96 spec says it is. Some HW
1406 * claims to be 0.95 compliant, but it halts the control
1407 * endpoint anyway. Check if a babble halted the
1408 * endpoint.
1409 */
1410 if ((ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_HALTED)
1411 return 1;
1412
1413 return 0;
1414}
1415
b45b5069
SS
1416int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code)
1417{
1418 if (trb_comp_code >= 224 && trb_comp_code <= 255) {
1419 /* Vendor defined "informational" completion code,
1420 * treat as not-an-error.
1421 */
1422 xhci_dbg(xhci, "Vendor defined info completion code %u\n",
1423 trb_comp_code);
1424 xhci_dbg(xhci, "Treating code as success.\n");
1425 return 1;
1426 }
1427 return 0;
1428}
1429
4422da61
AX
1430/*
1431 * Finish the td processing, remove the td from td list;
1432 * Return 1 if the urb can be given back.
1433 */
1434static int finish_td(struct xhci_hcd *xhci, struct xhci_td *td,
1435 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1436 struct xhci_virt_ep *ep, int *status, bool skip)
1437{
1438 struct xhci_virt_device *xdev;
1439 struct xhci_ring *ep_ring;
1440 unsigned int slot_id;
1441 int ep_index;
1442 struct urb *urb = NULL;
1443 struct xhci_ep_ctx *ep_ctx;
1444 int ret = 0;
8e51adcc 1445 struct urb_priv *urb_priv;
4422da61
AX
1446 u32 trb_comp_code;
1447
1448 slot_id = TRB_TO_SLOT_ID(event->flags);
1449 xdev = xhci->devs[slot_id];
1450 ep_index = TRB_TO_EP_ID(event->flags) - 1;
1451 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1452 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
1453 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1454
1455 if (skip)
1456 goto td_cleanup;
1457
1458 if (trb_comp_code == COMP_STOP_INVAL ||
1459 trb_comp_code == COMP_STOP) {
1460 /* The Endpoint Stop Command completion will take care of any
1461 * stopped TDs. A stopped TD may be restarted, so don't update
1462 * the ring dequeue pointer or take this TD off any lists yet.
1463 */
1464 ep->stopped_td = td;
1465 ep->stopped_trb = event_trb;
1466 return 0;
1467 } else {
1468 if (trb_comp_code == COMP_STALL) {
1469 /* The transfer is completed from the driver's
1470 * perspective, but we need to issue a set dequeue
1471 * command for this stalled endpoint to move the dequeue
1472 * pointer past the TD. We can't do that here because
1473 * the halt condition must be cleared first. Let the
1474 * USB class driver clear the stall later.
1475 */
1476 ep->stopped_td = td;
1477 ep->stopped_trb = event_trb;
1478 ep->stopped_stream = ep_ring->stream_id;
1479 } else if (xhci_requires_manual_halt_cleanup(xhci,
1480 ep_ctx, trb_comp_code)) {
1481 /* Other types of errors halt the endpoint, but the
1482 * class driver doesn't call usb_reset_endpoint() unless
1483 * the error is -EPIPE. Clear the halted status in the
1484 * xHCI hardware manually.
1485 */
1486 xhci_cleanup_halted_endpoint(xhci,
1487 slot_id, ep_index, ep_ring->stream_id,
1488 td, event_trb);
1489 } else {
1490 /* Update ring dequeue pointer */
1491 while (ep_ring->dequeue != td->last_trb)
1492 inc_deq(xhci, ep_ring, false);
1493 inc_deq(xhci, ep_ring, false);
1494 }
1495
1496td_cleanup:
1497 /* Clean up the endpoint's TD list */
1498 urb = td->urb;
8e51adcc 1499 urb_priv = urb->hcpriv;
4422da61
AX
1500
1501 /* Do one last check of the actual transfer length.
1502 * If the host controller said we transferred more data than
1503 * the buffer length, urb->actual_length will be a very big
1504 * number (since it's unsigned). Play it safe and say we didn't
1505 * transfer anything.
1506 */
1507 if (urb->actual_length > urb->transfer_buffer_length) {
1508 xhci_warn(xhci, "URB transfer length is wrong, "
1509 "xHC issue? req. len = %u, "
1510 "act. len = %u\n",
1511 urb->transfer_buffer_length,
1512 urb->actual_length);
1513 urb->actual_length = 0;
1514 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1515 *status = -EREMOTEIO;
1516 else
1517 *status = 0;
1518 }
1519 list_del(&td->td_list);
1520 /* Was this TD slated to be cancelled but completed anyway? */
1521 if (!list_empty(&td->cancelled_td_list))
1522 list_del(&td->cancelled_td_list);
1523
8e51adcc
AX
1524 urb_priv->td_cnt++;
1525 /* Giveback the urb when all the tds are completed */
1526 if (urb_priv->td_cnt == urb_priv->length)
1527 ret = 1;
4422da61
AX
1528 }
1529
1530 return ret;
1531}
1532
8af56be1
AX
1533/*
1534 * Process control tds, update urb status and actual_length.
1535 */
1536static int process_ctrl_td(struct xhci_hcd *xhci, struct xhci_td *td,
1537 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1538 struct xhci_virt_ep *ep, int *status)
1539{
1540 struct xhci_virt_device *xdev;
1541 struct xhci_ring *ep_ring;
1542 unsigned int slot_id;
1543 int ep_index;
1544 struct xhci_ep_ctx *ep_ctx;
1545 u32 trb_comp_code;
1546
1547 slot_id = TRB_TO_SLOT_ID(event->flags);
1548 xdev = xhci->devs[slot_id];
1549 ep_index = TRB_TO_EP_ID(event->flags) - 1;
1550 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1551 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
1552 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1553
1554 xhci_debug_trb(xhci, xhci->event_ring->dequeue);
1555 switch (trb_comp_code) {
1556 case COMP_SUCCESS:
1557 if (event_trb == ep_ring->dequeue) {
1558 xhci_warn(xhci, "WARN: Success on ctrl setup TRB "
1559 "without IOC set??\n");
1560 *status = -ESHUTDOWN;
1561 } else if (event_trb != td->last_trb) {
1562 xhci_warn(xhci, "WARN: Success on ctrl data TRB "
1563 "without IOC set??\n");
1564 *status = -ESHUTDOWN;
1565 } else {
1566 xhci_dbg(xhci, "Successful control transfer!\n");
1567 *status = 0;
1568 }
1569 break;
1570 case COMP_SHORT_TX:
1571 xhci_warn(xhci, "WARN: short transfer on control ep\n");
1572 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1573 *status = -EREMOTEIO;
1574 else
1575 *status = 0;
1576 break;
1577 default:
1578 if (!xhci_requires_manual_halt_cleanup(xhci,
1579 ep_ctx, trb_comp_code))
1580 break;
1581 xhci_dbg(xhci, "TRB error code %u, "
1582 "halted endpoint index = %u\n",
1583 trb_comp_code, ep_index);
1584 /* else fall through */
1585 case COMP_STALL:
1586 /* Did we transfer part of the data (middle) phase? */
1587 if (event_trb != ep_ring->dequeue &&
1588 event_trb != td->last_trb)
1589 td->urb->actual_length =
1590 td->urb->transfer_buffer_length
1591 - TRB_LEN(event->transfer_len);
1592 else
1593 td->urb->actual_length = 0;
1594
1595 xhci_cleanup_halted_endpoint(xhci,
1596 slot_id, ep_index, 0, td, event_trb);
1597 return finish_td(xhci, td, event_trb, event, ep, status, true);
1598 }
1599 /*
1600 * Did we transfer any data, despite the errors that might have
1601 * happened? I.e. did we get past the setup stage?
1602 */
1603 if (event_trb != ep_ring->dequeue) {
1604 /* The event was for the status stage */
1605 if (event_trb == td->last_trb) {
1606 if (td->urb->actual_length != 0) {
1607 /* Don't overwrite a previously set error code
1608 */
1609 if ((*status == -EINPROGRESS || *status == 0) &&
1610 (td->urb->transfer_flags
1611 & URB_SHORT_NOT_OK))
1612 /* Did we already see a short data
1613 * stage? */
1614 *status = -EREMOTEIO;
1615 } else {
1616 td->urb->actual_length =
1617 td->urb->transfer_buffer_length;
1618 }
1619 } else {
1620 /* Maybe the event was for the data stage? */
1621 if (trb_comp_code != COMP_STOP_INVAL) {
1622 /* We didn't stop on a link TRB in the middle */
1623 td->urb->actual_length =
1624 td->urb->transfer_buffer_length -
1625 TRB_LEN(event->transfer_len);
1626 xhci_dbg(xhci, "Waiting for status "
1627 "stage event\n");
1628 return 0;
1629 }
1630 }
1631 }
1632
1633 return finish_td(xhci, td, event_trb, event, ep, status, false);
1634}
1635
04e51901
AX
1636/*
1637 * Process isochronous tds, update urb packet status and actual_length.
1638 */
1639static int process_isoc_td(struct xhci_hcd *xhci, struct xhci_td *td,
1640 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1641 struct xhci_virt_ep *ep, int *status)
1642{
1643 struct xhci_ring *ep_ring;
1644 struct urb_priv *urb_priv;
1645 int idx;
1646 int len = 0;
1647 int skip_td = 0;
1648 union xhci_trb *cur_trb;
1649 struct xhci_segment *cur_seg;
1650 u32 trb_comp_code;
1651
1652 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1653 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1654 urb_priv = td->urb->hcpriv;
1655 idx = urb_priv->td_cnt;
1656
1657 if (ep->skip) {
1658 /* The transfer is partly done */
1659 *status = -EXDEV;
1660 td->urb->iso_frame_desc[idx].status = -EXDEV;
1661 } else {
1662 /* handle completion code */
1663 switch (trb_comp_code) {
1664 case COMP_SUCCESS:
1665 td->urb->iso_frame_desc[idx].status = 0;
1666 xhci_dbg(xhci, "Successful isoc transfer!\n");
1667 break;
1668 case COMP_SHORT_TX:
1669 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1670 td->urb->iso_frame_desc[idx].status =
1671 -EREMOTEIO;
1672 else
1673 td->urb->iso_frame_desc[idx].status = 0;
1674 break;
1675 case COMP_BW_OVER:
1676 td->urb->iso_frame_desc[idx].status = -ECOMM;
1677 skip_td = 1;
1678 break;
1679 case COMP_BUFF_OVER:
1680 case COMP_BABBLE:
1681 td->urb->iso_frame_desc[idx].status = -EOVERFLOW;
1682 skip_td = 1;
1683 break;
1684 case COMP_STALL:
1685 td->urb->iso_frame_desc[idx].status = -EPROTO;
1686 skip_td = 1;
1687 break;
1688 case COMP_STOP:
1689 case COMP_STOP_INVAL:
1690 break;
1691 default:
1692 td->urb->iso_frame_desc[idx].status = -1;
1693 break;
1694 }
1695 }
1696
1697 /* calc actual length */
1698 if (ep->skip) {
1699 td->urb->iso_frame_desc[idx].actual_length = 0;
14184f9b
AX
1700 /* Update ring dequeue pointer */
1701 while (ep_ring->dequeue != td->last_trb)
1702 inc_deq(xhci, ep_ring, false);
1703 inc_deq(xhci, ep_ring, false);
04e51901
AX
1704 return finish_td(xhci, td, event_trb, event, ep, status, true);
1705 }
1706
1707 if (trb_comp_code == COMP_SUCCESS || skip_td == 1) {
1708 td->urb->iso_frame_desc[idx].actual_length =
1709 td->urb->iso_frame_desc[idx].length;
1710 td->urb->actual_length +=
1711 td->urb->iso_frame_desc[idx].length;
1712 } else {
1713 for (cur_trb = ep_ring->dequeue,
1714 cur_seg = ep_ring->deq_seg; cur_trb != event_trb;
1715 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
1716 if ((cur_trb->generic.field[3] &
1717 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_TR_NOOP) &&
1718 (cur_trb->generic.field[3] &
1719 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_LINK))
1720 len +=
1721 TRB_LEN(cur_trb->generic.field[2]);
1722 }
1723 len += TRB_LEN(cur_trb->generic.field[2]) -
1724 TRB_LEN(event->transfer_len);
1725
1726 if (trb_comp_code != COMP_STOP_INVAL) {
1727 td->urb->iso_frame_desc[idx].actual_length = len;
1728 td->urb->actual_length += len;
1729 }
1730 }
1731
1732 if ((idx == urb_priv->length - 1) && *status == -EINPROGRESS)
1733 *status = 0;
1734
1735 return finish_td(xhci, td, event_trb, event, ep, status, false);
1736}
1737
22405ed2
AX
1738/*
1739 * Process bulk and interrupt tds, update urb status and actual_length.
1740 */
1741static int process_bulk_intr_td(struct xhci_hcd *xhci, struct xhci_td *td,
1742 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1743 struct xhci_virt_ep *ep, int *status)
1744{
1745 struct xhci_ring *ep_ring;
1746 union xhci_trb *cur_trb;
1747 struct xhci_segment *cur_seg;
1748 u32 trb_comp_code;
1749
1750 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1751 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1752
1753 switch (trb_comp_code) {
1754 case COMP_SUCCESS:
1755 /* Double check that the HW transferred everything. */
1756 if (event_trb != td->last_trb) {
1757 xhci_warn(xhci, "WARN Successful completion "
1758 "on short TX\n");
1759 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1760 *status = -EREMOTEIO;
1761 else
1762 *status = 0;
1763 } else {
1764 if (usb_endpoint_xfer_bulk(&td->urb->ep->desc))
1765 xhci_dbg(xhci, "Successful bulk "
1766 "transfer!\n");
1767 else
1768 xhci_dbg(xhci, "Successful interrupt "
1769 "transfer!\n");
1770 *status = 0;
1771 }
1772 break;
1773 case COMP_SHORT_TX:
1774 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1775 *status = -EREMOTEIO;
1776 else
1777 *status = 0;
1778 break;
1779 default:
1780 /* Others already handled above */
1781 break;
1782 }
f2c565e2 1783 xhci_dbg(xhci, "ep %#x - asked for %d bytes, "
22405ed2
AX
1784 "%d bytes untransferred\n",
1785 td->urb->ep->desc.bEndpointAddress,
1786 td->urb->transfer_buffer_length,
1787 TRB_LEN(event->transfer_len));
1788 /* Fast path - was this the last TRB in the TD for this URB? */
1789 if (event_trb == td->last_trb) {
1790 if (TRB_LEN(event->transfer_len) != 0) {
1791 td->urb->actual_length =
1792 td->urb->transfer_buffer_length -
1793 TRB_LEN(event->transfer_len);
1794 if (td->urb->transfer_buffer_length <
1795 td->urb->actual_length) {
1796 xhci_warn(xhci, "HC gave bad length "
1797 "of %d bytes left\n",
1798 TRB_LEN(event->transfer_len));
1799 td->urb->actual_length = 0;
1800 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1801 *status = -EREMOTEIO;
1802 else
1803 *status = 0;
1804 }
1805 /* Don't overwrite a previously set error code */
1806 if (*status == -EINPROGRESS) {
1807 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1808 *status = -EREMOTEIO;
1809 else
1810 *status = 0;
1811 }
1812 } else {
1813 td->urb->actual_length =
1814 td->urb->transfer_buffer_length;
1815 /* Ignore a short packet completion if the
1816 * untransferred length was zero.
1817 */
1818 if (*status == -EREMOTEIO)
1819 *status = 0;
1820 }
1821 } else {
1822 /* Slow path - walk the list, starting from the dequeue
1823 * pointer, to get the actual length transferred.
1824 */
1825 td->urb->actual_length = 0;
1826 for (cur_trb = ep_ring->dequeue, cur_seg = ep_ring->deq_seg;
1827 cur_trb != event_trb;
1828 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
1829 if ((cur_trb->generic.field[3] &
1830 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_TR_NOOP) &&
1831 (cur_trb->generic.field[3] &
1832 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_LINK))
1833 td->urb->actual_length +=
1834 TRB_LEN(cur_trb->generic.field[2]);
1835 }
1836 /* If the ring didn't stop on a Link or No-op TRB, add
1837 * in the actual bytes transferred from the Normal TRB
1838 */
1839 if (trb_comp_code != COMP_STOP_INVAL)
1840 td->urb->actual_length +=
1841 TRB_LEN(cur_trb->generic.field[2]) -
1842 TRB_LEN(event->transfer_len);
1843 }
1844
1845 return finish_td(xhci, td, event_trb, event, ep, status, false);
1846}
1847
d0e96f5a
SS
1848/*
1849 * If this function returns an error condition, it means it got a Transfer
1850 * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address.
1851 * At this point, the host controller is probably hosed and should be reset.
1852 */
1853static int handle_tx_event(struct xhci_hcd *xhci,
1854 struct xhci_transfer_event *event)
1855{
1856 struct xhci_virt_device *xdev;
63a0d9ab 1857 struct xhci_virt_ep *ep;
d0e96f5a 1858 struct xhci_ring *ep_ring;
82d1009f 1859 unsigned int slot_id;
d0e96f5a 1860 int ep_index;
326b4810 1861 struct xhci_td *td = NULL;
d0e96f5a
SS
1862 dma_addr_t event_dma;
1863 struct xhci_segment *event_seg;
1864 union xhci_trb *event_trb;
326b4810 1865 struct urb *urb = NULL;
d0e96f5a 1866 int status = -EINPROGRESS;
8e51adcc 1867 struct urb_priv *urb_priv;
d115b048 1868 struct xhci_ep_ctx *ep_ctx;
66d1eebc 1869 u32 trb_comp_code;
4422da61 1870 int ret = 0;
d0e96f5a 1871
82d1009f
SS
1872 slot_id = TRB_TO_SLOT_ID(event->flags);
1873 xdev = xhci->devs[slot_id];
d0e96f5a
SS
1874 if (!xdev) {
1875 xhci_err(xhci, "ERROR Transfer event pointed to bad slot\n");
1876 return -ENODEV;
1877 }
1878
1879 /* Endpoint ID is 1 based, our index is zero based */
1880 ep_index = TRB_TO_EP_ID(event->flags) - 1;
66e49d87 1881 xhci_dbg(xhci, "%s - ep index = %d\n", __func__, ep_index);
63a0d9ab 1882 ep = &xdev->eps[ep_index];
e9df17eb 1883 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
d115b048 1884 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
986a92d4
AX
1885 if (!ep_ring ||
1886 (ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_DISABLED) {
e9df17eb
SS
1887 xhci_err(xhci, "ERROR Transfer event for disabled endpoint "
1888 "or incorrect stream ring\n");
d0e96f5a
SS
1889 return -ENODEV;
1890 }
1891
8e595a5d 1892 event_dma = event->buffer;
66d1eebc 1893 trb_comp_code = GET_COMP_CODE(event->transfer_len);
986a92d4 1894 /* Look for common error cases */
66d1eebc 1895 switch (trb_comp_code) {
b10de142
SS
1896 /* Skip codes that require special handling depending on
1897 * transfer type
1898 */
1899 case COMP_SUCCESS:
1900 case COMP_SHORT_TX:
1901 break;
ae636747
SS
1902 case COMP_STOP:
1903 xhci_dbg(xhci, "Stopped on Transfer TRB\n");
1904 break;
1905 case COMP_STOP_INVAL:
1906 xhci_dbg(xhci, "Stopped on No-op or Link TRB\n");
1907 break;
b10de142
SS
1908 case COMP_STALL:
1909 xhci_warn(xhci, "WARN: Stalled endpoint\n");
63a0d9ab 1910 ep->ep_state |= EP_HALTED;
b10de142
SS
1911 status = -EPIPE;
1912 break;
1913 case COMP_TRB_ERR:
1914 xhci_warn(xhci, "WARN: TRB error on endpoint\n");
1915 status = -EILSEQ;
1916 break;
ec74e403 1917 case COMP_SPLIT_ERR:
b10de142
SS
1918 case COMP_TX_ERR:
1919 xhci_warn(xhci, "WARN: transfer error on endpoint\n");
1920 status = -EPROTO;
1921 break;
4a73143c
SS
1922 case COMP_BABBLE:
1923 xhci_warn(xhci, "WARN: babble error on endpoint\n");
1924 status = -EOVERFLOW;
1925 break;
b10de142
SS
1926 case COMP_DB_ERR:
1927 xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n");
1928 status = -ENOSR;
1929 break;
986a92d4
AX
1930 case COMP_BW_OVER:
1931 xhci_warn(xhci, "WARN: bandwidth overrun event on endpoint\n");
1932 break;
1933 case COMP_BUFF_OVER:
1934 xhci_warn(xhci, "WARN: buffer overrun event on endpoint\n");
1935 break;
1936 case COMP_UNDERRUN:
1937 /*
1938 * When the Isoch ring is empty, the xHC will generate
1939 * a Ring Overrun Event for IN Isoch endpoint or Ring
1940 * Underrun Event for OUT Isoch endpoint.
1941 */
1942 xhci_dbg(xhci, "underrun event on endpoint\n");
1943 if (!list_empty(&ep_ring->td_list))
1944 xhci_dbg(xhci, "Underrun Event for slot %d ep %d "
1945 "still with TDs queued?\n",
1946 TRB_TO_SLOT_ID(event->flags), ep_index);
1947 goto cleanup;
1948 case COMP_OVERRUN:
1949 xhci_dbg(xhci, "overrun event on endpoint\n");
1950 if (!list_empty(&ep_ring->td_list))
1951 xhci_dbg(xhci, "Overrun Event for slot %d ep %d "
1952 "still with TDs queued?\n",
1953 TRB_TO_SLOT_ID(event->flags), ep_index);
1954 goto cleanup;
d18240db
AX
1955 case COMP_MISSED_INT:
1956 /*
1957 * When encounter missed service error, one or more isoc tds
1958 * may be missed by xHC.
1959 * Set skip flag of the ep_ring; Complete the missed tds as
1960 * short transfer when process the ep_ring next time.
1961 */
1962 ep->skip = true;
1963 xhci_dbg(xhci, "Miss service interval error, set skip flag\n");
1964 goto cleanup;
b10de142 1965 default:
b45b5069 1966 if (xhci_is_vendor_info_code(xhci, trb_comp_code)) {
5ad6a529
SS
1967 status = 0;
1968 break;
1969 }
986a92d4
AX
1970 xhci_warn(xhci, "ERROR Unknown event condition, HC probably "
1971 "busted\n");
1972 goto cleanup;
1973 }
1974
d18240db
AX
1975 do {
1976 /* This TRB should be in the TD at the head of this ring's
1977 * TD list.
1978 */
1979 if (list_empty(&ep_ring->td_list)) {
1980 xhci_warn(xhci, "WARN Event TRB for slot %d ep %d "
1981 "with no TDs queued?\n",
1982 TRB_TO_SLOT_ID(event->flags), ep_index);
1983 xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
1984 (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10);
1985 xhci_print_trb_offsets(xhci, (union xhci_trb *) event);
1986 if (ep->skip) {
1987 ep->skip = false;
1988 xhci_dbg(xhci, "td_list is empty while skip "
1989 "flag set. Clear skip flag.\n");
1990 }
1991 ret = 0;
1992 goto cleanup;
1993 }
986a92d4 1994
d18240db
AX
1995 td = list_entry(ep_ring->td_list.next, struct xhci_td, td_list);
1996 /* Is this a TRB in the currently executing TD? */
1997 event_seg = trb_in_td(ep_ring->deq_seg, ep_ring->dequeue,
1998 td->last_trb, event_dma);
1999 if (event_seg && ep->skip) {
2000 xhci_dbg(xhci, "Found td. Clear skip flag.\n");
2001 ep->skip = false;
2002 }
2003 if (!event_seg &&
2004 (!ep->skip || !usb_endpoint_xfer_isoc(&td->urb->ep->desc))) {
2005 /* HC is busted, give up! */
2006 xhci_err(xhci, "ERROR Transfer event TRB DMA ptr not "
2007 "part of current TD\n");
2008 return -ESHUTDOWN;
2009 }
678539cf 2010
d18240db
AX
2011 if (event_seg) {
2012 event_trb = &event_seg->trbs[(event_dma -
2013 event_seg->dma) / sizeof(*event_trb)];
2014 /*
2015 * No-op TRB should not trigger interrupts.
2016 * If event_trb is a no-op TRB, it means the
2017 * corresponding TD has been cancelled. Just ignore
2018 * the TD.
2019 */
2020 if ((event_trb->generic.field[3] & TRB_TYPE_BITMASK)
2021 == TRB_TYPE(TRB_TR_NOOP)) {
2022 xhci_dbg(xhci, "event_trb is a no-op TRB. "
2023 "Skip it\n");
2024 goto cleanup;
2025 }
2026 }
4422da61 2027
d18240db
AX
2028 /* Now update the urb's actual_length and give back to
2029 * the core
82d1009f 2030 */
d18240db
AX
2031 if (usb_endpoint_xfer_control(&td->urb->ep->desc))
2032 ret = process_ctrl_td(xhci, td, event_trb, event, ep,
2033 &status);
04e51901
AX
2034 else if (usb_endpoint_xfer_isoc(&td->urb->ep->desc))
2035 ret = process_isoc_td(xhci, td, event_trb, event, ep,
2036 &status);
d18240db
AX
2037 else
2038 ret = process_bulk_intr_td(xhci, td, event_trb, event,
2039 ep, &status);
2040
2041cleanup:
2042 /*
2043 * Do not update event ring dequeue pointer if ep->skip is set.
2044 * Will roll back to continue process missed tds.
2045 */
2046 if (trb_comp_code == COMP_MISSED_INT || !ep->skip) {
2047 inc_deq(xhci, xhci->event_ring, true);
d18240db
AX
2048 }
2049
2050 if (ret) {
2051 urb = td->urb;
8e51adcc 2052 urb_priv = urb->hcpriv;
d18240db
AX
2053 /* Leave the TD around for the reset endpoint function
2054 * to use(but only if it's not a control endpoint,
2055 * since we already queued the Set TR dequeue pointer
2056 * command for stalled control endpoints).
2057 */
2058 if (usb_endpoint_xfer_control(&urb->ep->desc) ||
2059 (trb_comp_code != COMP_STALL &&
2060 trb_comp_code != COMP_BABBLE))
8e51adcc 2061 xhci_urb_free_priv(xhci, urb_priv);
d18240db 2062
214f76f7 2063 usb_hcd_unlink_urb_from_ep(bus_to_hcd(urb->dev->bus), urb);
d18240db
AX
2064 xhci_dbg(xhci, "Giveback URB %p, len = %d, "
2065 "status = %d\n",
2066 urb, urb->actual_length, status);
2067 spin_unlock(&xhci->lock);
214f76f7 2068 usb_hcd_giveback_urb(bus_to_hcd(urb->dev->bus), urb, status);
d18240db
AX
2069 spin_lock(&xhci->lock);
2070 }
2071
2072 /*
2073 * If ep->skip is set, it means there are missed tds on the
2074 * endpoint ring need to take care of.
2075 * Process them as short transfer until reach the td pointed by
2076 * the event.
2077 */
2078 } while (ep->skip && trb_comp_code != COMP_MISSED_INT);
2079
d0e96f5a
SS
2080 return 0;
2081}
2082
0f2a7930
SS
2083/*
2084 * This function handles all OS-owned events on the event ring. It may drop
2085 * xhci->lock between event processing (e.g. to pass up port status changes).
2086 */
d6d98a4d 2087static void xhci_handle_event(struct xhci_hcd *xhci)
7f84eef0
SS
2088{
2089 union xhci_trb *event;
0f2a7930 2090 int update_ptrs = 1;
d0e96f5a 2091 int ret;
7f84eef0 2092
66e49d87 2093 xhci_dbg(xhci, "In %s\n", __func__);
7f84eef0
SS
2094 if (!xhci->event_ring || !xhci->event_ring->dequeue) {
2095 xhci->error_bitmask |= 1 << 1;
2096 return;
2097 }
2098
2099 event = xhci->event_ring->dequeue;
2100 /* Does the HC or OS own the TRB? */
2101 if ((event->event_cmd.flags & TRB_CYCLE) !=
2102 xhci->event_ring->cycle_state) {
2103 xhci->error_bitmask |= 1 << 2;
2104 return;
2105 }
66e49d87 2106 xhci_dbg(xhci, "%s - OS owns TRB\n", __func__);
7f84eef0 2107
0f2a7930 2108 /* FIXME: Handle more event types. */
7f84eef0
SS
2109 switch ((event->event_cmd.flags & TRB_TYPE_BITMASK)) {
2110 case TRB_TYPE(TRB_COMPLETION):
66e49d87 2111 xhci_dbg(xhci, "%s - calling handle_cmd_completion\n", __func__);
7f84eef0 2112 handle_cmd_completion(xhci, &event->event_cmd);
66e49d87 2113 xhci_dbg(xhci, "%s - returned from handle_cmd_completion\n", __func__);
7f84eef0 2114 break;
0f2a7930 2115 case TRB_TYPE(TRB_PORT_STATUS):
66e49d87 2116 xhci_dbg(xhci, "%s - calling handle_port_status\n", __func__);
0f2a7930 2117 handle_port_status(xhci, event);
66e49d87 2118 xhci_dbg(xhci, "%s - returned from handle_port_status\n", __func__);
0f2a7930
SS
2119 update_ptrs = 0;
2120 break;
d0e96f5a 2121 case TRB_TYPE(TRB_TRANSFER):
66e49d87 2122 xhci_dbg(xhci, "%s - calling handle_tx_event\n", __func__);
d0e96f5a 2123 ret = handle_tx_event(xhci, &event->trans_event);
66e49d87 2124 xhci_dbg(xhci, "%s - returned from handle_tx_event\n", __func__);
d0e96f5a
SS
2125 if (ret < 0)
2126 xhci->error_bitmask |= 1 << 9;
2127 else
2128 update_ptrs = 0;
2129 break;
7f84eef0 2130 default:
0238634d
SS
2131 if ((event->event_cmd.flags & TRB_TYPE_BITMASK) >= TRB_TYPE(48))
2132 handle_vendor_event(xhci, event);
2133 else
2134 xhci->error_bitmask |= 1 << 3;
7f84eef0 2135 }
6f5165cf
SS
2136 /* Any of the above functions may drop and re-acquire the lock, so check
2137 * to make sure a watchdog timer didn't mark the host as non-responsive.
2138 */
2139 if (xhci->xhc_state & XHCI_STATE_DYING) {
2140 xhci_dbg(xhci, "xHCI host dying, returning from "
2141 "event handler.\n");
2142 return;
2143 }
7f84eef0 2144
c06d68b8
SS
2145 if (update_ptrs)
2146 /* Update SW event ring dequeue pointer */
0f2a7930 2147 inc_deq(xhci, xhci->event_ring, true);
c06d68b8 2148
7f84eef0 2149 /* Are there more items on the event ring? */
b7258a4a 2150 xhci_handle_event(xhci);
7f84eef0 2151}
9032cd52
SS
2152
2153/*
2154 * xHCI spec says we can get an interrupt, and if the HC has an error condition,
2155 * we might get bad data out of the event ring. Section 4.10.2.7 has a list of
2156 * indicators of an event TRB error, but we check the status *first* to be safe.
2157 */
2158irqreturn_t xhci_irq(struct usb_hcd *hcd)
2159{
2160 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
c21599a3 2161 u32 status;
9032cd52 2162 union xhci_trb *trb;
bda53145 2163 u64 temp_64;
c06d68b8
SS
2164 union xhci_trb *event_ring_deq;
2165 dma_addr_t deq;
9032cd52
SS
2166
2167 spin_lock(&xhci->lock);
2168 trb = xhci->event_ring->dequeue;
2169 /* Check if the xHC generated the interrupt, or the irq is shared */
27e0dd4d 2170 status = xhci_readl(xhci, &xhci->op_regs->status);
c21599a3 2171 if (status == 0xffffffff)
9032cd52
SS
2172 goto hw_died;
2173
c21599a3 2174 if (!(status & STS_EINT)) {
9032cd52 2175 spin_unlock(&xhci->lock);
9032cd52
SS
2176 return IRQ_NONE;
2177 }
27e0dd4d 2178 xhci_dbg(xhci, "op reg status = %08x\n", status);
9032cd52
SS
2179 xhci_dbg(xhci, "Event ring dequeue ptr:\n");
2180 xhci_dbg(xhci, "@%llx %08x %08x %08x %08x\n",
2181 (unsigned long long)
2182 xhci_trb_virt_to_dma(xhci->event_ring->deq_seg, trb),
2183 lower_32_bits(trb->link.segment_ptr),
2184 upper_32_bits(trb->link.segment_ptr),
2185 (unsigned int) trb->link.intr_target,
2186 (unsigned int) trb->link.control);
2187
27e0dd4d 2188 if (status & STS_FATAL) {
9032cd52
SS
2189 xhci_warn(xhci, "WARNING: Host System Error\n");
2190 xhci_halt(xhci);
2191hw_died:
9032cd52
SS
2192 spin_unlock(&xhci->lock);
2193 return -ESHUTDOWN;
2194 }
2195
bda53145
SS
2196 /*
2197 * Clear the op reg interrupt status first,
2198 * so we can receive interrupts from other MSI-X interrupters.
2199 * Write 1 to clear the interrupt status.
2200 */
27e0dd4d
SS
2201 status |= STS_EINT;
2202 xhci_writel(xhci, status, &xhci->op_regs->status);
bda53145
SS
2203 /* FIXME when MSI-X is supported and there are multiple vectors */
2204 /* Clear the MSI-X event interrupt status */
2205
c21599a3
SS
2206 if (hcd->irq != -1) {
2207 u32 irq_pending;
2208 /* Acknowledge the PCI interrupt */
2209 irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
2210 irq_pending |= 0x3;
2211 xhci_writel(xhci, irq_pending, &xhci->ir_set->irq_pending);
2212 }
bda53145 2213
c06d68b8 2214 if (xhci->xhc_state & XHCI_STATE_DYING) {
bda53145
SS
2215 xhci_dbg(xhci, "xHCI dying, ignoring interrupt. "
2216 "Shouldn't IRQs be disabled?\n");
c06d68b8
SS
2217 /* Clear the event handler busy flag (RW1C);
2218 * the event ring should be empty.
bda53145 2219 */
c06d68b8
SS
2220 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
2221 xhci_write_64(xhci, temp_64 | ERST_EHB,
2222 &xhci->ir_set->erst_dequeue);
2223 spin_unlock(&xhci->lock);
2224
2225 return IRQ_HANDLED;
2226 }
2227
2228 event_ring_deq = xhci->event_ring->dequeue;
2229 /* FIXME this should be a delayed service routine
2230 * that clears the EHB.
2231 */
2232 xhci_handle_event(xhci);
bda53145 2233
bda53145 2234 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
c06d68b8
SS
2235 /* If necessary, update the HW's version of the event ring deq ptr. */
2236 if (event_ring_deq != xhci->event_ring->dequeue) {
2237 deq = xhci_trb_virt_to_dma(xhci->event_ring->deq_seg,
2238 xhci->event_ring->dequeue);
2239 if (deq == 0)
2240 xhci_warn(xhci, "WARN something wrong with SW event "
2241 "ring dequeue ptr.\n");
2242 /* Update HC event ring dequeue pointer */
2243 temp_64 &= ERST_PTR_MASK;
2244 temp_64 |= ((u64) deq & (u64) ~ERST_PTR_MASK);
2245 }
2246
2247 /* Clear the event handler busy flag (RW1C); event ring is empty. */
2248 temp_64 |= ERST_EHB;
2249 xhci_write_64(xhci, temp_64, &xhci->ir_set->erst_dequeue);
2250
9032cd52
SS
2251 spin_unlock(&xhci->lock);
2252
2253 return IRQ_HANDLED;
2254}
2255
2256irqreturn_t xhci_msi_irq(int irq, struct usb_hcd *hcd)
2257{
2258 irqreturn_t ret;
b3209379 2259 struct xhci_hcd *xhci;
9032cd52 2260
b3209379 2261 xhci = hcd_to_xhci(hcd);
9032cd52 2262 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
b3209379
SS
2263 if (xhci->shared_hcd)
2264 set_bit(HCD_FLAG_SAW_IRQ, &xhci->shared_hcd->flags);
9032cd52
SS
2265
2266 ret = xhci_irq(hcd);
2267
2268 return ret;
2269}
7f84eef0 2270
d0e96f5a
SS
2271/**** Endpoint Ring Operations ****/
2272
7f84eef0
SS
2273/*
2274 * Generic function for queueing a TRB on a ring.
2275 * The caller must have checked to make sure there's room on the ring.
6cc30d85
SS
2276 *
2277 * @more_trbs_coming: Will you enqueue more TRBs before calling
2278 * prepare_transfer()?
7f84eef0
SS
2279 */
2280static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
6cc30d85 2281 bool consumer, bool more_trbs_coming,
7f84eef0
SS
2282 u32 field1, u32 field2, u32 field3, u32 field4)
2283{
2284 struct xhci_generic_trb *trb;
2285
2286 trb = &ring->enqueue->generic;
2287 trb->field[0] = field1;
2288 trb->field[1] = field2;
2289 trb->field[2] = field3;
2290 trb->field[3] = field4;
6cc30d85 2291 inc_enq(xhci, ring, consumer, more_trbs_coming);
7f84eef0
SS
2292}
2293
d0e96f5a
SS
2294/*
2295 * Does various checks on the endpoint ring, and makes it ready to queue num_trbs.
2296 * FIXME allocate segments if the ring is full.
2297 */
2298static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
2299 u32 ep_state, unsigned int num_trbs, gfp_t mem_flags)
2300{
2301 /* Make sure the endpoint has been added to xHC schedule */
2302 xhci_dbg(xhci, "Endpoint state = 0x%x\n", ep_state);
2303 switch (ep_state) {
2304 case EP_STATE_DISABLED:
2305 /*
2306 * USB core changed config/interfaces without notifying us,
2307 * or hardware is reporting the wrong state.
2308 */
2309 xhci_warn(xhci, "WARN urb submitted to disabled ep\n");
2310 return -ENOENT;
d0e96f5a 2311 case EP_STATE_ERROR:
c92bcfa7 2312 xhci_warn(xhci, "WARN waiting for error on ep to be cleared\n");
d0e96f5a
SS
2313 /* FIXME event handling code for error needs to clear it */
2314 /* XXX not sure if this should be -ENOENT or not */
2315 return -EINVAL;
c92bcfa7
SS
2316 case EP_STATE_HALTED:
2317 xhci_dbg(xhci, "WARN halted endpoint, queueing URB anyway.\n");
d0e96f5a
SS
2318 case EP_STATE_STOPPED:
2319 case EP_STATE_RUNNING:
2320 break;
2321 default:
2322 xhci_err(xhci, "ERROR unknown endpoint state for ep\n");
2323 /*
2324 * FIXME issue Configure Endpoint command to try to get the HC
2325 * back into a known state.
2326 */
2327 return -EINVAL;
2328 }
2329 if (!room_on_ring(xhci, ep_ring, num_trbs)) {
2330 /* FIXME allocate more room */
2331 xhci_err(xhci, "ERROR no room on ep ring\n");
2332 return -ENOMEM;
2333 }
6c12db90
JY
2334
2335 if (enqueue_is_link_trb(ep_ring)) {
2336 struct xhci_ring *ring = ep_ring;
2337 union xhci_trb *next;
6c12db90
JY
2338
2339 xhci_dbg(xhci, "prepare_ring: pointing to link trb\n");
2340 next = ring->enqueue;
2341
2342 while (last_trb(xhci, ring, ring->enq_seg, next)) {
2343
2344 /* If we're not dealing with 0.95 hardware,
2345 * clear the chain bit.
2346 */
2347 if (!xhci_link_trb_quirk(xhci))
2348 next->link.control &= ~TRB_CHAIN;
2349 else
2350 next->link.control |= TRB_CHAIN;
2351
2352 wmb();
2353 next->link.control ^= (u32) TRB_CYCLE;
2354
2355 /* Toggle the cycle bit after the last ring segment. */
2356 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
2357 ring->cycle_state = (ring->cycle_state ? 0 : 1);
2358 if (!in_interrupt()) {
2359 xhci_dbg(xhci, "queue_trb: Toggle cycle "
2360 "state for ring %p = %i\n",
2361 ring, (unsigned int)ring->cycle_state);
2362 }
2363 }
2364 ring->enq_seg = ring->enq_seg->next;
2365 ring->enqueue = ring->enq_seg->trbs;
2366 next = ring->enqueue;
2367 }
2368 }
2369
d0e96f5a
SS
2370 return 0;
2371}
2372
23e3be11 2373static int prepare_transfer(struct xhci_hcd *xhci,
d0e96f5a
SS
2374 struct xhci_virt_device *xdev,
2375 unsigned int ep_index,
e9df17eb 2376 unsigned int stream_id,
d0e96f5a
SS
2377 unsigned int num_trbs,
2378 struct urb *urb,
8e51adcc 2379 unsigned int td_index,
d0e96f5a
SS
2380 gfp_t mem_flags)
2381{
2382 int ret;
8e51adcc
AX
2383 struct urb_priv *urb_priv;
2384 struct xhci_td *td;
e9df17eb 2385 struct xhci_ring *ep_ring;
d115b048 2386 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
e9df17eb
SS
2387
2388 ep_ring = xhci_stream_id_to_ring(xdev, ep_index, stream_id);
2389 if (!ep_ring) {
2390 xhci_dbg(xhci, "Can't prepare ring for bad stream ID %u\n",
2391 stream_id);
2392 return -EINVAL;
2393 }
2394
2395 ret = prepare_ring(xhci, ep_ring,
d115b048 2396 ep_ctx->ep_info & EP_STATE_MASK,
d0e96f5a
SS
2397 num_trbs, mem_flags);
2398 if (ret)
2399 return ret;
d0e96f5a 2400
8e51adcc
AX
2401 urb_priv = urb->hcpriv;
2402 td = urb_priv->td[td_index];
2403
2404 INIT_LIST_HEAD(&td->td_list);
2405 INIT_LIST_HEAD(&td->cancelled_td_list);
2406
2407 if (td_index == 0) {
214f76f7 2408 ret = usb_hcd_link_urb_to_ep(bus_to_hcd(urb->dev->bus), urb);
8e51adcc
AX
2409 if (unlikely(ret)) {
2410 xhci_urb_free_priv(xhci, urb_priv);
2411 urb->hcpriv = NULL;
2412 return ret;
2413 }
d0e96f5a
SS
2414 }
2415
8e51adcc 2416 td->urb = urb;
d0e96f5a 2417 /* Add this TD to the tail of the endpoint ring's TD list */
8e51adcc
AX
2418 list_add_tail(&td->td_list, &ep_ring->td_list);
2419 td->start_seg = ep_ring->enq_seg;
2420 td->first_trb = ep_ring->enqueue;
2421
2422 urb_priv->td[td_index] = td;
d0e96f5a
SS
2423
2424 return 0;
2425}
2426
23e3be11 2427static unsigned int count_sg_trbs_needed(struct xhci_hcd *xhci, struct urb *urb)
8a96c052
SS
2428{
2429 int num_sgs, num_trbs, running_total, temp, i;
2430 struct scatterlist *sg;
2431
2432 sg = NULL;
2433 num_sgs = urb->num_sgs;
2434 temp = urb->transfer_buffer_length;
2435
2436 xhci_dbg(xhci, "count sg list trbs: \n");
2437 num_trbs = 0;
910f8d0c 2438 for_each_sg(urb->sg, sg, num_sgs, i) {
8a96c052
SS
2439 unsigned int previous_total_trbs = num_trbs;
2440 unsigned int len = sg_dma_len(sg);
2441
2442 /* Scatter gather list entries may cross 64KB boundaries */
2443 running_total = TRB_MAX_BUFF_SIZE -
2444 (sg_dma_address(sg) & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2445 if (running_total != 0)
2446 num_trbs++;
2447
2448 /* How many more 64KB chunks to transfer, how many more TRBs? */
2449 while (running_total < sg_dma_len(sg)) {
2450 num_trbs++;
2451 running_total += TRB_MAX_BUFF_SIZE;
2452 }
700e2052
GKH
2453 xhci_dbg(xhci, " sg #%d: dma = %#llx, len = %#x (%d), num_trbs = %d\n",
2454 i, (unsigned long long)sg_dma_address(sg),
2455 len, len, num_trbs - previous_total_trbs);
8a96c052
SS
2456
2457 len = min_t(int, len, temp);
2458 temp -= len;
2459 if (temp == 0)
2460 break;
2461 }
2462 xhci_dbg(xhci, "\n");
2463 if (!in_interrupt())
f2c565e2
AX
2464 xhci_dbg(xhci, "ep %#x - urb len = %d, sglist used, "
2465 "num_trbs = %d\n",
8a96c052
SS
2466 urb->ep->desc.bEndpointAddress,
2467 urb->transfer_buffer_length,
2468 num_trbs);
2469 return num_trbs;
2470}
2471
23e3be11 2472static void check_trb_math(struct urb *urb, int num_trbs, int running_total)
8a96c052
SS
2473{
2474 if (num_trbs != 0)
2475 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated number of "
2476 "TRBs, %d left\n", __func__,
2477 urb->ep->desc.bEndpointAddress, num_trbs);
2478 if (running_total != urb->transfer_buffer_length)
2479 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, "
2480 "queued %#x (%d), asked for %#x (%d)\n",
2481 __func__,
2482 urb->ep->desc.bEndpointAddress,
2483 running_total, running_total,
2484 urb->transfer_buffer_length,
2485 urb->transfer_buffer_length);
2486}
2487
23e3be11 2488static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id,
e9df17eb 2489 unsigned int ep_index, unsigned int stream_id, int start_cycle,
e1eab2e0 2490 struct xhci_generic_trb *start_trb)
8a96c052 2491{
8a96c052
SS
2492 /*
2493 * Pass all the TRBs to the hardware at once and make sure this write
2494 * isn't reordered.
2495 */
2496 wmb();
50f7b52a
AX
2497 if (start_cycle)
2498 start_trb->field[3] |= start_cycle;
2499 else
2500 start_trb->field[3] &= ~0x1;
be88fe4f 2501 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, stream_id);
8a96c052
SS
2502}
2503
624defa1
SS
2504/*
2505 * xHCI uses normal TRBs for both bulk and interrupt. When the interrupt
2506 * endpoint is to be serviced, the xHC will consume (at most) one TD. A TD
2507 * (comprised of sg list entries) can take several service intervals to
2508 * transmit.
2509 */
2510int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
2511 struct urb *urb, int slot_id, unsigned int ep_index)
2512{
2513 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci,
2514 xhci->devs[slot_id]->out_ctx, ep_index);
2515 int xhci_interval;
2516 int ep_interval;
2517
2518 xhci_interval = EP_INTERVAL_TO_UFRAMES(ep_ctx->ep_info);
2519 ep_interval = urb->interval;
2520 /* Convert to microframes */
2521 if (urb->dev->speed == USB_SPEED_LOW ||
2522 urb->dev->speed == USB_SPEED_FULL)
2523 ep_interval *= 8;
2524 /* FIXME change this to a warning and a suggestion to use the new API
2525 * to set the polling interval (once the API is added).
2526 */
2527 if (xhci_interval != ep_interval) {
7961acd7 2528 if (printk_ratelimit())
624defa1
SS
2529 dev_dbg(&urb->dev->dev, "Driver uses different interval"
2530 " (%d microframe%s) than xHCI "
2531 "(%d microframe%s)\n",
2532 ep_interval,
2533 ep_interval == 1 ? "" : "s",
2534 xhci_interval,
2535 xhci_interval == 1 ? "" : "s");
2536 urb->interval = xhci_interval;
2537 /* Convert back to frames for LS/FS devices */
2538 if (urb->dev->speed == USB_SPEED_LOW ||
2539 urb->dev->speed == USB_SPEED_FULL)
2540 urb->interval /= 8;
2541 }
2542 return xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
2543}
2544
04dd950d
SS
2545/*
2546 * The TD size is the number of bytes remaining in the TD (including this TRB),
2547 * right shifted by 10.
2548 * It must fit in bits 21:17, so it can't be bigger than 31.
2549 */
2550static u32 xhci_td_remainder(unsigned int remainder)
2551{
2552 u32 max = (1 << (21 - 17 + 1)) - 1;
2553
2554 if ((remainder >> 10) >= max)
2555 return max << 17;
2556 else
2557 return (remainder >> 10) << 17;
2558}
2559
23e3be11 2560static int queue_bulk_sg_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
8a96c052
SS
2561 struct urb *urb, int slot_id, unsigned int ep_index)
2562{
2563 struct xhci_ring *ep_ring;
2564 unsigned int num_trbs;
8e51adcc 2565 struct urb_priv *urb_priv;
8a96c052
SS
2566 struct xhci_td *td;
2567 struct scatterlist *sg;
2568 int num_sgs;
2569 int trb_buff_len, this_sg_len, running_total;
2570 bool first_trb;
2571 u64 addr;
6cc30d85 2572 bool more_trbs_coming;
8a96c052
SS
2573
2574 struct xhci_generic_trb *start_trb;
2575 int start_cycle;
2576
e9df17eb
SS
2577 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2578 if (!ep_ring)
2579 return -EINVAL;
2580
8a96c052
SS
2581 num_trbs = count_sg_trbs_needed(xhci, urb);
2582 num_sgs = urb->num_sgs;
2583
23e3be11 2584 trb_buff_len = prepare_transfer(xhci, xhci->devs[slot_id],
e9df17eb 2585 ep_index, urb->stream_id,
8e51adcc 2586 num_trbs, urb, 0, mem_flags);
8a96c052
SS
2587 if (trb_buff_len < 0)
2588 return trb_buff_len;
8e51adcc
AX
2589
2590 urb_priv = urb->hcpriv;
2591 td = urb_priv->td[0];
2592
8a96c052
SS
2593 /*
2594 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2595 * until we've finished creating all the other TRBs. The ring's cycle
2596 * state may change as we enqueue the other TRBs, so save it too.
2597 */
2598 start_trb = &ep_ring->enqueue->generic;
2599 start_cycle = ep_ring->cycle_state;
2600
2601 running_total = 0;
2602 /*
2603 * How much data is in the first TRB?
2604 *
2605 * There are three forces at work for TRB buffer pointers and lengths:
2606 * 1. We don't want to walk off the end of this sg-list entry buffer.
2607 * 2. The transfer length that the driver requested may be smaller than
2608 * the amount of memory allocated for this scatter-gather list.
2609 * 3. TRBs buffers can't cross 64KB boundaries.
2610 */
910f8d0c 2611 sg = urb->sg;
8a96c052
SS
2612 addr = (u64) sg_dma_address(sg);
2613 this_sg_len = sg_dma_len(sg);
2614 trb_buff_len = TRB_MAX_BUFF_SIZE -
2615 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2616 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2617 if (trb_buff_len > urb->transfer_buffer_length)
2618 trb_buff_len = urb->transfer_buffer_length;
2619 xhci_dbg(xhci, "First length to xfer from 1st sglist entry = %u\n",
2620 trb_buff_len);
2621
2622 first_trb = true;
2623 /* Queue the first TRB, even if it's zero-length */
2624 do {
2625 u32 field = 0;
f9dc68fe 2626 u32 length_field = 0;
04dd950d 2627 u32 remainder = 0;
8a96c052
SS
2628
2629 /* Don't change the cycle bit of the first TRB until later */
50f7b52a 2630 if (first_trb) {
8a96c052 2631 first_trb = false;
50f7b52a
AX
2632 if (start_cycle == 0)
2633 field |= 0x1;
2634 } else
8a96c052
SS
2635 field |= ep_ring->cycle_state;
2636
2637 /* Chain all the TRBs together; clear the chain bit in the last
2638 * TRB to indicate it's the last TRB in the chain.
2639 */
2640 if (num_trbs > 1) {
2641 field |= TRB_CHAIN;
2642 } else {
2643 /* FIXME - add check for ZERO_PACKET flag before this */
2644 td->last_trb = ep_ring->enqueue;
2645 field |= TRB_IOC;
2646 }
2647 xhci_dbg(xhci, " sg entry: dma = %#x, len = %#x (%d), "
2648 "64KB boundary at %#x, end dma = %#x\n",
2649 (unsigned int) addr, trb_buff_len, trb_buff_len,
2650 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2651 (unsigned int) addr + trb_buff_len);
2652 if (TRB_MAX_BUFF_SIZE -
2653 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1)) < trb_buff_len) {
2654 xhci_warn(xhci, "WARN: sg dma xfer crosses 64KB boundaries!\n");
2655 xhci_dbg(xhci, "Next boundary at %#x, end dma = %#x\n",
2656 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2657 (unsigned int) addr + trb_buff_len);
2658 }
04dd950d
SS
2659 remainder = xhci_td_remainder(urb->transfer_buffer_length -
2660 running_total) ;
f9dc68fe 2661 length_field = TRB_LEN(trb_buff_len) |
04dd950d 2662 remainder |
f9dc68fe 2663 TRB_INTR_TARGET(0);
6cc30d85
SS
2664 if (num_trbs > 1)
2665 more_trbs_coming = true;
2666 else
2667 more_trbs_coming = false;
2668 queue_trb(xhci, ep_ring, false, more_trbs_coming,
8e595a5d
SS
2669 lower_32_bits(addr),
2670 upper_32_bits(addr),
f9dc68fe 2671 length_field,
8a96c052
SS
2672 /* We always want to know if the TRB was short,
2673 * or we won't get an event when it completes.
2674 * (Unless we use event data TRBs, which are a
2675 * waste of space and HC resources.)
2676 */
2677 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
2678 --num_trbs;
2679 running_total += trb_buff_len;
2680
2681 /* Calculate length for next transfer --
2682 * Are we done queueing all the TRBs for this sg entry?
2683 */
2684 this_sg_len -= trb_buff_len;
2685 if (this_sg_len == 0) {
2686 --num_sgs;
2687 if (num_sgs == 0)
2688 break;
2689 sg = sg_next(sg);
2690 addr = (u64) sg_dma_address(sg);
2691 this_sg_len = sg_dma_len(sg);
2692 } else {
2693 addr += trb_buff_len;
2694 }
2695
2696 trb_buff_len = TRB_MAX_BUFF_SIZE -
2697 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2698 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2699 if (running_total + trb_buff_len > urb->transfer_buffer_length)
2700 trb_buff_len =
2701 urb->transfer_buffer_length - running_total;
2702 } while (running_total < urb->transfer_buffer_length);
2703
2704 check_trb_math(urb, num_trbs, running_total);
e9df17eb 2705 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
e1eab2e0 2706 start_cycle, start_trb);
8a96c052
SS
2707 return 0;
2708}
2709
b10de142 2710/* This is very similar to what ehci-q.c qtd_fill() does */
23e3be11 2711int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
b10de142
SS
2712 struct urb *urb, int slot_id, unsigned int ep_index)
2713{
2714 struct xhci_ring *ep_ring;
8e51adcc 2715 struct urb_priv *urb_priv;
b10de142
SS
2716 struct xhci_td *td;
2717 int num_trbs;
2718 struct xhci_generic_trb *start_trb;
2719 bool first_trb;
6cc30d85 2720 bool more_trbs_coming;
b10de142 2721 int start_cycle;
f9dc68fe 2722 u32 field, length_field;
b10de142
SS
2723
2724 int running_total, trb_buff_len, ret;
2725 u64 addr;
2726
ff9c895f 2727 if (urb->num_sgs)
8a96c052
SS
2728 return queue_bulk_sg_tx(xhci, mem_flags, urb, slot_id, ep_index);
2729
e9df17eb
SS
2730 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2731 if (!ep_ring)
2732 return -EINVAL;
b10de142
SS
2733
2734 num_trbs = 0;
2735 /* How much data is (potentially) left before the 64KB boundary? */
2736 running_total = TRB_MAX_BUFF_SIZE -
2737 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2738
2739 /* If there's some data on this 64KB chunk, or we have to send a
2740 * zero-length transfer, we need at least one TRB
2741 */
2742 if (running_total != 0 || urb->transfer_buffer_length == 0)
2743 num_trbs++;
2744 /* How many more 64KB chunks to transfer, how many more TRBs? */
2745 while (running_total < urb->transfer_buffer_length) {
2746 num_trbs++;
2747 running_total += TRB_MAX_BUFF_SIZE;
2748 }
2749 /* FIXME: this doesn't deal with URB_ZERO_PACKET - need one more */
2750
2751 if (!in_interrupt())
f2c565e2
AX
2752 xhci_dbg(xhci, "ep %#x - urb len = %#x (%d), "
2753 "addr = %#llx, num_trbs = %d\n",
b10de142 2754 urb->ep->desc.bEndpointAddress,
8a96c052
SS
2755 urb->transfer_buffer_length,
2756 urb->transfer_buffer_length,
700e2052 2757 (unsigned long long)urb->transfer_dma,
b10de142 2758 num_trbs);
8a96c052 2759
e9df17eb
SS
2760 ret = prepare_transfer(xhci, xhci->devs[slot_id],
2761 ep_index, urb->stream_id,
8e51adcc 2762 num_trbs, urb, 0, mem_flags);
b10de142
SS
2763 if (ret < 0)
2764 return ret;
2765
8e51adcc
AX
2766 urb_priv = urb->hcpriv;
2767 td = urb_priv->td[0];
2768
b10de142
SS
2769 /*
2770 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2771 * until we've finished creating all the other TRBs. The ring's cycle
2772 * state may change as we enqueue the other TRBs, so save it too.
2773 */
2774 start_trb = &ep_ring->enqueue->generic;
2775 start_cycle = ep_ring->cycle_state;
2776
2777 running_total = 0;
2778 /* How much data is in the first TRB? */
2779 addr = (u64) urb->transfer_dma;
2780 trb_buff_len = TRB_MAX_BUFF_SIZE -
2781 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2782 if (urb->transfer_buffer_length < trb_buff_len)
2783 trb_buff_len = urb->transfer_buffer_length;
2784
2785 first_trb = true;
2786
2787 /* Queue the first TRB, even if it's zero-length */
2788 do {
04dd950d 2789 u32 remainder = 0;
b10de142
SS
2790 field = 0;
2791
2792 /* Don't change the cycle bit of the first TRB until later */
50f7b52a 2793 if (first_trb) {
b10de142 2794 first_trb = false;
50f7b52a
AX
2795 if (start_cycle == 0)
2796 field |= 0x1;
2797 } else
b10de142
SS
2798 field |= ep_ring->cycle_state;
2799
2800 /* Chain all the TRBs together; clear the chain bit in the last
2801 * TRB to indicate it's the last TRB in the chain.
2802 */
2803 if (num_trbs > 1) {
2804 field |= TRB_CHAIN;
2805 } else {
2806 /* FIXME - add check for ZERO_PACKET flag before this */
2807 td->last_trb = ep_ring->enqueue;
2808 field |= TRB_IOC;
2809 }
04dd950d
SS
2810 remainder = xhci_td_remainder(urb->transfer_buffer_length -
2811 running_total);
f9dc68fe 2812 length_field = TRB_LEN(trb_buff_len) |
04dd950d 2813 remainder |
f9dc68fe 2814 TRB_INTR_TARGET(0);
6cc30d85
SS
2815 if (num_trbs > 1)
2816 more_trbs_coming = true;
2817 else
2818 more_trbs_coming = false;
2819 queue_trb(xhci, ep_ring, false, more_trbs_coming,
8e595a5d
SS
2820 lower_32_bits(addr),
2821 upper_32_bits(addr),
f9dc68fe 2822 length_field,
b10de142
SS
2823 /* We always want to know if the TRB was short,
2824 * or we won't get an event when it completes.
2825 * (Unless we use event data TRBs, which are a
2826 * waste of space and HC resources.)
2827 */
2828 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
2829 --num_trbs;
2830 running_total += trb_buff_len;
2831
2832 /* Calculate length for next transfer */
2833 addr += trb_buff_len;
2834 trb_buff_len = urb->transfer_buffer_length - running_total;
2835 if (trb_buff_len > TRB_MAX_BUFF_SIZE)
2836 trb_buff_len = TRB_MAX_BUFF_SIZE;
2837 } while (running_total < urb->transfer_buffer_length);
2838
8a96c052 2839 check_trb_math(urb, num_trbs, running_total);
e9df17eb 2840 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
e1eab2e0 2841 start_cycle, start_trb);
b10de142
SS
2842 return 0;
2843}
2844
d0e96f5a 2845/* Caller must have locked xhci->lock */
23e3be11 2846int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
d0e96f5a
SS
2847 struct urb *urb, int slot_id, unsigned int ep_index)
2848{
2849 struct xhci_ring *ep_ring;
2850 int num_trbs;
2851 int ret;
2852 struct usb_ctrlrequest *setup;
2853 struct xhci_generic_trb *start_trb;
2854 int start_cycle;
f9dc68fe 2855 u32 field, length_field;
8e51adcc 2856 struct urb_priv *urb_priv;
d0e96f5a
SS
2857 struct xhci_td *td;
2858
e9df17eb
SS
2859 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2860 if (!ep_ring)
2861 return -EINVAL;
d0e96f5a
SS
2862
2863 /*
2864 * Need to copy setup packet into setup TRB, so we can't use the setup
2865 * DMA address.
2866 */
2867 if (!urb->setup_packet)
2868 return -EINVAL;
2869
2870 if (!in_interrupt())
2871 xhci_dbg(xhci, "Queueing ctrl tx for slot id %d, ep %d\n",
2872 slot_id, ep_index);
2873 /* 1 TRB for setup, 1 for status */
2874 num_trbs = 2;
2875 /*
2876 * Don't need to check if we need additional event data and normal TRBs,
2877 * since data in control transfers will never get bigger than 16MB
2878 * XXX: can we get a buffer that crosses 64KB boundaries?
2879 */
2880 if (urb->transfer_buffer_length > 0)
2881 num_trbs++;
e9df17eb
SS
2882 ret = prepare_transfer(xhci, xhci->devs[slot_id],
2883 ep_index, urb->stream_id,
8e51adcc 2884 num_trbs, urb, 0, mem_flags);
d0e96f5a
SS
2885 if (ret < 0)
2886 return ret;
2887
8e51adcc
AX
2888 urb_priv = urb->hcpriv;
2889 td = urb_priv->td[0];
2890
d0e96f5a
SS
2891 /*
2892 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2893 * until we've finished creating all the other TRBs. The ring's cycle
2894 * state may change as we enqueue the other TRBs, so save it too.
2895 */
2896 start_trb = &ep_ring->enqueue->generic;
2897 start_cycle = ep_ring->cycle_state;
2898
2899 /* Queue setup TRB - see section 6.4.1.2.1 */
2900 /* FIXME better way to translate setup_packet into two u32 fields? */
2901 setup = (struct usb_ctrlrequest *) urb->setup_packet;
50f7b52a
AX
2902 field = 0;
2903 field |= TRB_IDT | TRB_TYPE(TRB_SETUP);
2904 if (start_cycle == 0)
2905 field |= 0x1;
6cc30d85 2906 queue_trb(xhci, ep_ring, false, true,
d0e96f5a
SS
2907 /* FIXME endianness is probably going to bite my ass here. */
2908 setup->bRequestType | setup->bRequest << 8 | setup->wValue << 16,
2909 setup->wIndex | setup->wLength << 16,
2910 TRB_LEN(8) | TRB_INTR_TARGET(0),
2911 /* Immediate data in pointer */
50f7b52a 2912 field);
d0e96f5a
SS
2913
2914 /* If there's data, queue data TRBs */
2915 field = 0;
f9dc68fe 2916 length_field = TRB_LEN(urb->transfer_buffer_length) |
04dd950d 2917 xhci_td_remainder(urb->transfer_buffer_length) |
f9dc68fe 2918 TRB_INTR_TARGET(0);
d0e96f5a
SS
2919 if (urb->transfer_buffer_length > 0) {
2920 if (setup->bRequestType & USB_DIR_IN)
2921 field |= TRB_DIR_IN;
6cc30d85 2922 queue_trb(xhci, ep_ring, false, true,
d0e96f5a
SS
2923 lower_32_bits(urb->transfer_dma),
2924 upper_32_bits(urb->transfer_dma),
f9dc68fe 2925 length_field,
d0e96f5a
SS
2926 /* Event on short tx */
2927 field | TRB_ISP | TRB_TYPE(TRB_DATA) | ep_ring->cycle_state);
2928 }
2929
2930 /* Save the DMA address of the last TRB in the TD */
2931 td->last_trb = ep_ring->enqueue;
2932
2933 /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */
2934 /* If the device sent data, the status stage is an OUT transfer */
2935 if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN)
2936 field = 0;
2937 else
2938 field = TRB_DIR_IN;
6cc30d85 2939 queue_trb(xhci, ep_ring, false, false,
d0e96f5a
SS
2940 0,
2941 0,
2942 TRB_INTR_TARGET(0),
2943 /* Event on completion */
2944 field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state);
2945
e9df17eb 2946 giveback_first_trb(xhci, slot_id, ep_index, 0,
e1eab2e0 2947 start_cycle, start_trb);
d0e96f5a
SS
2948 return 0;
2949}
2950
04e51901
AX
2951static int count_isoc_trbs_needed(struct xhci_hcd *xhci,
2952 struct urb *urb, int i)
2953{
2954 int num_trbs = 0;
2955 u64 addr, td_len, running_total;
2956
2957 addr = (u64) (urb->transfer_dma + urb->iso_frame_desc[i].offset);
2958 td_len = urb->iso_frame_desc[i].length;
2959
2960 running_total = TRB_MAX_BUFF_SIZE -
2961 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2962 if (running_total != 0)
2963 num_trbs++;
2964
2965 while (running_total < td_len) {
2966 num_trbs++;
2967 running_total += TRB_MAX_BUFF_SIZE;
2968 }
2969
2970 return num_trbs;
2971}
2972
2973/* This is for isoc transfer */
2974static int xhci_queue_isoc_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
2975 struct urb *urb, int slot_id, unsigned int ep_index)
2976{
2977 struct xhci_ring *ep_ring;
2978 struct urb_priv *urb_priv;
2979 struct xhci_td *td;
2980 int num_tds, trbs_per_td;
2981 struct xhci_generic_trb *start_trb;
2982 bool first_trb;
2983 int start_cycle;
2984 u32 field, length_field;
2985 int running_total, trb_buff_len, td_len, td_remain_len, ret;
2986 u64 start_addr, addr;
2987 int i, j;
47cbf692 2988 bool more_trbs_coming;
04e51901
AX
2989
2990 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
2991
2992 num_tds = urb->number_of_packets;
2993 if (num_tds < 1) {
2994 xhci_dbg(xhci, "Isoc URB with zero packets?\n");
2995 return -EINVAL;
2996 }
2997
2998 if (!in_interrupt())
f2c565e2 2999 xhci_dbg(xhci, "ep %#x - urb len = %#x (%d),"
04e51901
AX
3000 " addr = %#llx, num_tds = %d\n",
3001 urb->ep->desc.bEndpointAddress,
3002 urb->transfer_buffer_length,
3003 urb->transfer_buffer_length,
3004 (unsigned long long)urb->transfer_dma,
3005 num_tds);
3006
3007 start_addr = (u64) urb->transfer_dma;
3008 start_trb = &ep_ring->enqueue->generic;
3009 start_cycle = ep_ring->cycle_state;
3010
3011 /* Queue the first TRB, even if it's zero-length */
3012 for (i = 0; i < num_tds; i++) {
3013 first_trb = true;
3014
3015 running_total = 0;
3016 addr = start_addr + urb->iso_frame_desc[i].offset;
3017 td_len = urb->iso_frame_desc[i].length;
3018 td_remain_len = td_len;
3019
3020 trbs_per_td = count_isoc_trbs_needed(xhci, urb, i);
3021
3022 ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index,
3023 urb->stream_id, trbs_per_td, urb, i, mem_flags);
3024 if (ret < 0)
3025 return ret;
3026
3027 urb_priv = urb->hcpriv;
3028 td = urb_priv->td[i];
3029
3030 for (j = 0; j < trbs_per_td; j++) {
3031 u32 remainder = 0;
3032 field = 0;
3033
3034 if (first_trb) {
3035 /* Queue the isoc TRB */
3036 field |= TRB_TYPE(TRB_ISOC);
3037 /* Assume URB_ISO_ASAP is set */
3038 field |= TRB_SIA;
50f7b52a
AX
3039 if (i == 0) {
3040 if (start_cycle == 0)
3041 field |= 0x1;
3042 } else
04e51901
AX
3043 field |= ep_ring->cycle_state;
3044 first_trb = false;
3045 } else {
3046 /* Queue other normal TRBs */
3047 field |= TRB_TYPE(TRB_NORMAL);
3048 field |= ep_ring->cycle_state;
3049 }
3050
3051 /* Chain all the TRBs together; clear the chain bit in
3052 * the last TRB to indicate it's the last TRB in the
3053 * chain.
3054 */
3055 if (j < trbs_per_td - 1) {
3056 field |= TRB_CHAIN;
47cbf692 3057 more_trbs_coming = true;
04e51901
AX
3058 } else {
3059 td->last_trb = ep_ring->enqueue;
3060 field |= TRB_IOC;
47cbf692 3061 more_trbs_coming = false;
04e51901
AX
3062 }
3063
3064 /* Calculate TRB length */
3065 trb_buff_len = TRB_MAX_BUFF_SIZE -
3066 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
3067 if (trb_buff_len > td_remain_len)
3068 trb_buff_len = td_remain_len;
3069
3070 remainder = xhci_td_remainder(td_len - running_total);
3071 length_field = TRB_LEN(trb_buff_len) |
3072 remainder |
3073 TRB_INTR_TARGET(0);
47cbf692 3074 queue_trb(xhci, ep_ring, false, more_trbs_coming,
04e51901
AX
3075 lower_32_bits(addr),
3076 upper_32_bits(addr),
3077 length_field,
3078 /* We always want to know if the TRB was short,
3079 * or we won't get an event when it completes.
3080 * (Unless we use event data TRBs, which are a
3081 * waste of space and HC resources.)
3082 */
3083 field | TRB_ISP);
3084 running_total += trb_buff_len;
3085
3086 addr += trb_buff_len;
3087 td_remain_len -= trb_buff_len;
3088 }
3089
3090 /* Check TD length */
3091 if (running_total != td_len) {
3092 xhci_err(xhci, "ISOC TD length unmatch\n");
3093 return -EINVAL;
3094 }
3095 }
3096
e1eab2e0
AX
3097 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
3098 start_cycle, start_trb);
04e51901
AX
3099 return 0;
3100}
3101
3102/*
3103 * Check transfer ring to guarantee there is enough room for the urb.
3104 * Update ISO URB start_frame and interval.
3105 * Update interval as xhci_queue_intr_tx does. Just use xhci frame_index to
3106 * update the urb->start_frame by now.
3107 * Always assume URB_ISO_ASAP set, and NEVER use urb->start_frame as input.
3108 */
3109int xhci_queue_isoc_tx_prepare(struct xhci_hcd *xhci, gfp_t mem_flags,
3110 struct urb *urb, int slot_id, unsigned int ep_index)
3111{
3112 struct xhci_virt_device *xdev;
3113 struct xhci_ring *ep_ring;
3114 struct xhci_ep_ctx *ep_ctx;
3115 int start_frame;
3116 int xhci_interval;
3117 int ep_interval;
3118 int num_tds, num_trbs, i;
3119 int ret;
3120
3121 xdev = xhci->devs[slot_id];
3122 ep_ring = xdev->eps[ep_index].ring;
3123 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
3124
3125 num_trbs = 0;
3126 num_tds = urb->number_of_packets;
3127 for (i = 0; i < num_tds; i++)
3128 num_trbs += count_isoc_trbs_needed(xhci, urb, i);
3129
3130 /* Check the ring to guarantee there is enough room for the whole urb.
3131 * Do not insert any td of the urb to the ring if the check failed.
3132 */
3133 ret = prepare_ring(xhci, ep_ring, ep_ctx->ep_info & EP_STATE_MASK,
3134 num_trbs, mem_flags);
3135 if (ret)
3136 return ret;
3137
3138 start_frame = xhci_readl(xhci, &xhci->run_regs->microframe_index);
3139 start_frame &= 0x3fff;
3140
3141 urb->start_frame = start_frame;
3142 if (urb->dev->speed == USB_SPEED_LOW ||
3143 urb->dev->speed == USB_SPEED_FULL)
3144 urb->start_frame >>= 3;
3145
3146 xhci_interval = EP_INTERVAL_TO_UFRAMES(ep_ctx->ep_info);
3147 ep_interval = urb->interval;
3148 /* Convert to microframes */
3149 if (urb->dev->speed == USB_SPEED_LOW ||
3150 urb->dev->speed == USB_SPEED_FULL)
3151 ep_interval *= 8;
3152 /* FIXME change this to a warning and a suggestion to use the new API
3153 * to set the polling interval (once the API is added).
3154 */
3155 if (xhci_interval != ep_interval) {
7961acd7 3156 if (printk_ratelimit())
04e51901
AX
3157 dev_dbg(&urb->dev->dev, "Driver uses different interval"
3158 " (%d microframe%s) than xHCI "
3159 "(%d microframe%s)\n",
3160 ep_interval,
3161 ep_interval == 1 ? "" : "s",
3162 xhci_interval,
3163 xhci_interval == 1 ? "" : "s");
3164 urb->interval = xhci_interval;
3165 /* Convert back to frames for LS/FS devices */
3166 if (urb->dev->speed == USB_SPEED_LOW ||
3167 urb->dev->speed == USB_SPEED_FULL)
3168 urb->interval /= 8;
3169 }
3170 return xhci_queue_isoc_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
3171}
3172
d0e96f5a
SS
3173/**** Command Ring Operations ****/
3174
913a8a34
SS
3175/* Generic function for queueing a command TRB on the command ring.
3176 * Check to make sure there's room on the command ring for one command TRB.
3177 * Also check that there's room reserved for commands that must not fail.
3178 * If this is a command that must not fail, meaning command_must_succeed = TRUE,
3179 * then only check for the number of reserved spots.
3180 * Don't decrement xhci->cmd_ring_reserved_trbs after we've queued the TRB
3181 * because the command event handler may want to resubmit a failed command.
3182 */
3183static int queue_command(struct xhci_hcd *xhci, u32 field1, u32 field2,
3184 u32 field3, u32 field4, bool command_must_succeed)
7f84eef0 3185{
913a8a34 3186 int reserved_trbs = xhci->cmd_ring_reserved_trbs;
d1dc908a
SS
3187 int ret;
3188
913a8a34
SS
3189 if (!command_must_succeed)
3190 reserved_trbs++;
3191
d1dc908a
SS
3192 ret = prepare_ring(xhci, xhci->cmd_ring, EP_STATE_RUNNING,
3193 reserved_trbs, GFP_ATOMIC);
3194 if (ret < 0) {
3195 xhci_err(xhci, "ERR: No room for command on command ring\n");
913a8a34
SS
3196 if (command_must_succeed)
3197 xhci_err(xhci, "ERR: Reserved TRB counting for "
3198 "unfailable commands failed.\n");
d1dc908a 3199 return ret;
7f84eef0 3200 }
6cc30d85 3201 queue_trb(xhci, xhci->cmd_ring, false, false, field1, field2, field3,
7f84eef0
SS
3202 field4 | xhci->cmd_ring->cycle_state);
3203 return 0;
3204}
3205
3ffbba95 3206/* Queue a slot enable or disable request on the command ring */
23e3be11 3207int xhci_queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id)
3ffbba95
SS
3208{
3209 return queue_command(xhci, 0, 0, 0,
913a8a34 3210 TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id), false);
3ffbba95
SS
3211}
3212
3213/* Queue an address device command TRB */
23e3be11
SS
3214int xhci_queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
3215 u32 slot_id)
3ffbba95 3216{
8e595a5d
SS
3217 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
3218 upper_32_bits(in_ctx_ptr), 0,
913a8a34 3219 TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id),
2a8f82c4
SS
3220 false);
3221}
3222
0238634d
SS
3223int xhci_queue_vendor_command(struct xhci_hcd *xhci,
3224 u32 field1, u32 field2, u32 field3, u32 field4)
3225{
3226 return queue_command(xhci, field1, field2, field3, field4, false);
3227}
3228
2a8f82c4
SS
3229/* Queue a reset device command TRB */
3230int xhci_queue_reset_device(struct xhci_hcd *xhci, u32 slot_id)
3231{
3232 return queue_command(xhci, 0, 0, 0,
3233 TRB_TYPE(TRB_RESET_DEV) | SLOT_ID_FOR_TRB(slot_id),
913a8a34 3234 false);
3ffbba95 3235}
f94e0186
SS
3236
3237/* Queue a configure endpoint command TRB */
23e3be11 3238int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
913a8a34 3239 u32 slot_id, bool command_must_succeed)
f94e0186 3240{
8e595a5d
SS
3241 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
3242 upper_32_bits(in_ctx_ptr), 0,
913a8a34
SS
3243 TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id),
3244 command_must_succeed);
f94e0186 3245}
ae636747 3246
f2217e8e
SS
3247/* Queue an evaluate context command TRB */
3248int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
3249 u32 slot_id)
3250{
3251 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
3252 upper_32_bits(in_ctx_ptr), 0,
913a8a34
SS
3253 TRB_TYPE(TRB_EVAL_CONTEXT) | SLOT_ID_FOR_TRB(slot_id),
3254 false);
f2217e8e
SS
3255}
3256
be88fe4f
AX
3257/*
3258 * Suspend is set to indicate "Stop Endpoint Command" is being issued to stop
3259 * activity on an endpoint that is about to be suspended.
3260 */
23e3be11 3261int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, int slot_id,
be88fe4f 3262 unsigned int ep_index, int suspend)
ae636747
SS
3263{
3264 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3265 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
3266 u32 type = TRB_TYPE(TRB_STOP_RING);
be88fe4f 3267 u32 trb_suspend = SUSPEND_PORT_FOR_TRB(suspend);
ae636747
SS
3268
3269 return queue_command(xhci, 0, 0, 0,
be88fe4f 3270 trb_slot_id | trb_ep_index | type | trb_suspend, false);
ae636747
SS
3271}
3272
3273/* Set Transfer Ring Dequeue Pointer command.
3274 * This should not be used for endpoints that have streams enabled.
3275 */
3276static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
e9df17eb
SS
3277 unsigned int ep_index, unsigned int stream_id,
3278 struct xhci_segment *deq_seg,
ae636747
SS
3279 union xhci_trb *deq_ptr, u32 cycle_state)
3280{
3281 dma_addr_t addr;
3282 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3283 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
e9df17eb 3284 u32 trb_stream_id = STREAM_ID_FOR_TRB(stream_id);
ae636747
SS
3285 u32 type = TRB_TYPE(TRB_SET_DEQ);
3286
23e3be11 3287 addr = xhci_trb_virt_to_dma(deq_seg, deq_ptr);
c92bcfa7 3288 if (addr == 0) {
ae636747 3289 xhci_warn(xhci, "WARN Cannot submit Set TR Deq Ptr\n");
700e2052
GKH
3290 xhci_warn(xhci, "WARN deq seg = %p, deq pt = %p\n",
3291 deq_seg, deq_ptr);
c92bcfa7
SS
3292 return 0;
3293 }
8e595a5d 3294 return queue_command(xhci, lower_32_bits(addr) | cycle_state,
e9df17eb 3295 upper_32_bits(addr), trb_stream_id,
913a8a34 3296 trb_slot_id | trb_ep_index | type, false);
ae636747 3297}
a1587d97
SS
3298
3299int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id,
3300 unsigned int ep_index)
3301{
3302 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3303 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
3304 u32 type = TRB_TYPE(TRB_RESET_EP);
3305
913a8a34
SS
3306 return queue_command(xhci, 0, 0, 0, trb_slot_id | trb_ep_index | type,
3307 false);
a1587d97 3308}