blob: 9012098add6baefada9cd6155d57be8f9708afd7 [file] [log] [blame]
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001/*
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
Sarah Sharp8a96c052009-04-27 19:59:19 -070067#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090068#include <linux/slab.h>
Sarah Sharp7f84eef2009-04-27 19:53:56 -070069#include "xhci.h"
70
71/*
72 * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA
73 * address of the TRB.
74 */
Sarah Sharp23e3be12009-04-29 19:05:20 -070075dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg,
Sarah Sharp7f84eef2009-04-27 19:53:56 -070076 union xhci_trb *trb)
77{
Sarah Sharp6071d832009-05-14 11:44:14 -070078 unsigned long segment_offset;
Sarah Sharp7f84eef2009-04-27 19:53:56 -070079
Sarah Sharp6071d832009-05-14 11:44:14 -070080 if (!seg || !trb || trb < seg->trbs)
Sarah Sharp7f84eef2009-04-27 19:53:56 -070081 return 0;
Sarah Sharp6071d832009-05-14 11:44:14 -070082 /* offset in TRBs */
83 segment_offset = trb - seg->trbs;
84 if (segment_offset > TRBS_PER_SEGMENT)
Sarah Sharp7f84eef2009-04-27 19:53:56 -070085 return 0;
Sarah Sharp6071d832009-05-14 11:44:14 -070086 return seg->dma + (segment_offset * sizeof(*trb));
Sarah Sharp7f84eef2009-04-27 19:53:56 -070087}
88
89/* Does this link TRB point to the first segment in a ring,
90 * or was the previous TRB the last TRB on the last segment in the ERST?
91 */
92static inline bool last_trb_on_last_seg(struct xhci_hcd *xhci, struct xhci_ring *ring,
93 struct xhci_segment *seg, union xhci_trb *trb)
94{
95 if (ring == xhci->event_ring)
96 return (trb == &seg->trbs[TRBS_PER_SEGMENT]) &&
97 (seg->next == xhci->event_ring->first_seg);
98 else
99 return trb->link.control & LINK_TOGGLE;
100}
101
102/* Is this TRB a link TRB or was the last TRB the last TRB in this event ring
103 * segment? I.e. would the updated event TRB pointer step off the end of the
104 * event seg?
105 */
106static inline int last_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
107 struct xhci_segment *seg, union xhci_trb *trb)
108{
109 if (ring == xhci->event_ring)
110 return trb == &seg->trbs[TRBS_PER_SEGMENT];
111 else
112 return (trb->link.control & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK);
113}
114
John Youn6c12db92010-05-10 15:33:00 -0700115static inline int enqueue_is_link_trb(struct xhci_ring *ring)
116{
117 struct xhci_link_trb *link = &ring->enqueue->link;
118 return ((link->control & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK));
119}
120
Sarah Sharpae636742009-04-29 19:02:31 -0700121/* Updates trb to point to the next TRB in the ring, and updates seg if the next
122 * TRB is in a new segment. This does not skip over link TRBs, and it does not
123 * effect the ring dequeue or enqueue pointers.
124 */
125static void next_trb(struct xhci_hcd *xhci,
126 struct xhci_ring *ring,
127 struct xhci_segment **seg,
128 union xhci_trb **trb)
129{
130 if (last_trb(xhci, ring, *seg, *trb)) {
131 *seg = (*seg)->next;
132 *trb = ((*seg)->trbs);
133 } else {
134 *trb = (*trb)++;
135 }
136}
137
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700138/*
139 * See Cycle bit rules. SW is the consumer for the event ring only.
140 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
141 */
142static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer)
143{
144 union xhci_trb *next = ++(ring->dequeue);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700145 unsigned long long addr;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700146
147 ring->deq_updates++;
148 /* Update the dequeue pointer further if that was a link TRB or we're at
149 * the end of an event ring segment (which doesn't have link TRBS)
150 */
151 while (last_trb(xhci, ring, ring->deq_seg, next)) {
152 if (consumer && last_trb_on_last_seg(xhci, ring, ring->deq_seg, next)) {
153 ring->cycle_state = (ring->cycle_state ? 0 : 1);
154 if (!in_interrupt())
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700155 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
156 ring,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700157 (unsigned int) ring->cycle_state);
158 }
159 ring->deq_seg = ring->deq_seg->next;
160 ring->dequeue = ring->deq_seg->trbs;
161 next = ring->dequeue;
162 }
Sarah Sharp66e49d82009-07-27 12:03:46 -0700163 addr = (unsigned long long) xhci_trb_virt_to_dma(ring->deq_seg, ring->dequeue);
164 if (ring == xhci->event_ring)
165 xhci_dbg(xhci, "Event ring deq = 0x%llx (DMA)\n", addr);
166 else if (ring == xhci->cmd_ring)
167 xhci_dbg(xhci, "Command ring deq = 0x%llx (DMA)\n", addr);
168 else
169 xhci_dbg(xhci, "Ring deq = 0x%llx (DMA)\n", addr);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700170}
171
172/*
173 * See Cycle bit rules. SW is the consumer for the event ring only.
174 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
175 *
176 * If we've just enqueued a TRB that is in the middle of a TD (meaning the
177 * chain bit is set), then set the chain bit in all the following link TRBs.
178 * If we've enqueued the last TRB in a TD, make sure the following link TRBs
179 * have their chain bit cleared (so that each Link TRB is a separate TD).
180 *
181 * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit
Sarah Sharpb0567b32009-08-07 14:04:36 -0700182 * set, but other sections talk about dealing with the chain bit set. This was
183 * fixed in the 0.96 specification errata, but we have to assume that all 0.95
184 * xHCI hardware can't handle the chain bit being cleared on a link TRB.
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700185 */
186static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer)
187{
188 u32 chain;
189 union xhci_trb *next;
Sarah Sharp66e49d82009-07-27 12:03:46 -0700190 unsigned long long addr;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700191
192 chain = ring->enqueue->generic.field[3] & TRB_CHAIN;
193 next = ++(ring->enqueue);
194
195 ring->enq_updates++;
196 /* Update the dequeue pointer further if that was a link TRB or we're at
197 * the end of an event ring segment (which doesn't have link TRBS)
198 */
199 while (last_trb(xhci, ring, ring->enq_seg, next)) {
200 if (!consumer) {
201 if (ring != xhci->event_ring) {
John Youn6c12db92010-05-10 15:33:00 -0700202 if (chain) {
203 next->link.control |= TRB_CHAIN;
204
205 /* Give this link TRB to the hardware */
206 wmb();
207 next->link.control ^= TRB_CYCLE;
208 } else {
209 break;
Sarah Sharpb0567b32009-08-07 14:04:36 -0700210 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700211 }
212 /* Toggle the cycle bit after the last ring segment. */
213 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
214 ring->cycle_state = (ring->cycle_state ? 0 : 1);
215 if (!in_interrupt())
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700216 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
217 ring,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700218 (unsigned int) ring->cycle_state);
219 }
220 }
221 ring->enq_seg = ring->enq_seg->next;
222 ring->enqueue = ring->enq_seg->trbs;
223 next = ring->enqueue;
224 }
Sarah Sharp66e49d82009-07-27 12:03:46 -0700225 addr = (unsigned long long) xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
226 if (ring == xhci->event_ring)
227 xhci_dbg(xhci, "Event ring enq = 0x%llx (DMA)\n", addr);
228 else if (ring == xhci->cmd_ring)
229 xhci_dbg(xhci, "Command ring enq = 0x%llx (DMA)\n", addr);
230 else
231 xhci_dbg(xhci, "Ring enq = 0x%llx (DMA)\n", addr);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700232}
233
234/*
235 * Check to see if there's room to enqueue num_trbs on the ring. See rules
236 * above.
237 * FIXME: this would be simpler and faster if we just kept track of the number
238 * of free TRBs in a ring.
239 */
240static int room_on_ring(struct xhci_hcd *xhci, struct xhci_ring *ring,
241 unsigned int num_trbs)
242{
243 int i;
244 union xhci_trb *enq = ring->enqueue;
245 struct xhci_segment *enq_seg = ring->enq_seg;
Sarah Sharp44ebd032010-05-18 16:05:26 -0700246 struct xhci_segment *cur_seg;
247 unsigned int left_on_ring;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700248
John Youn6c12db92010-05-10 15:33:00 -0700249 /* If we are currently pointing to a link TRB, advance the
250 * enqueue pointer before checking for space */
251 while (last_trb(xhci, ring, enq_seg, enq)) {
252 enq_seg = enq_seg->next;
253 enq = enq_seg->trbs;
254 }
255
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700256 /* Check if ring is empty */
Sarah Sharp44ebd032010-05-18 16:05:26 -0700257 if (enq == ring->dequeue) {
258 /* Can't use link trbs */
259 left_on_ring = TRBS_PER_SEGMENT - 1;
260 for (cur_seg = enq_seg->next; cur_seg != enq_seg;
261 cur_seg = cur_seg->next)
262 left_on_ring += TRBS_PER_SEGMENT - 1;
263
264 /* Always need one TRB free in the ring. */
265 left_on_ring -= 1;
266 if (num_trbs > left_on_ring) {
267 xhci_warn(xhci, "Not enough room on ring; "
268 "need %u TRBs, %u TRBs left\n",
269 num_trbs, left_on_ring);
270 return 0;
271 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700272 return 1;
Sarah Sharp44ebd032010-05-18 16:05:26 -0700273 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700274 /* Make sure there's an extra empty TRB available */
275 for (i = 0; i <= num_trbs; ++i) {
276 if (enq == ring->dequeue)
277 return 0;
278 enq++;
279 while (last_trb(xhci, ring, enq_seg, enq)) {
280 enq_seg = enq_seg->next;
281 enq = enq_seg->trbs;
282 }
283 }
284 return 1;
285}
286
Sarah Sharp23e3be12009-04-29 19:05:20 -0700287void xhci_set_hc_event_deq(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700288{
Sarah Sharp8e595a52009-07-27 12:03:31 -0700289 u64 temp;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700290 dma_addr_t deq;
291
Sarah Sharp23e3be12009-04-29 19:05:20 -0700292 deq = xhci_trb_virt_to_dma(xhci->event_ring->deq_seg,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700293 xhci->event_ring->dequeue);
294 if (deq == 0 && !in_interrupt())
295 xhci_warn(xhci, "WARN something wrong with SW event ring "
296 "dequeue ptr.\n");
297 /* Update HC event ring dequeue pointer */
Sarah Sharp8e595a52009-07-27 12:03:31 -0700298 temp = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700299 temp &= ERST_PTR_MASK;
Sarah Sharp2d831092009-07-27 12:03:40 -0700300 /* Don't clear the EHB bit (which is RW1C) because
301 * there might be more events to service.
302 */
303 temp &= ~ERST_EHB;
Sarah Sharp66e49d82009-07-27 12:03:46 -0700304 xhci_dbg(xhci, "// Write event ring dequeue pointer, preserving EHB bit\n");
Sarah Sharp8e595a52009-07-27 12:03:31 -0700305 xhci_write_64(xhci, ((u64) deq & (u64) ~ERST_PTR_MASK) | temp,
306 &xhci->ir_set->erst_dequeue);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700307}
308
309/* Ring the host controller doorbell after placing a command on the ring */
Sarah Sharp23e3be12009-04-29 19:05:20 -0700310void xhci_ring_cmd_db(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700311{
312 u32 temp;
313
314 xhci_dbg(xhci, "// Ding dong!\n");
315 temp = xhci_readl(xhci, &xhci->dba->doorbell[0]) & DB_MASK;
316 xhci_writel(xhci, temp | DB_TARGET_HOST, &xhci->dba->doorbell[0]);
317 /* Flush PCI posted writes */
318 xhci_readl(xhci, &xhci->dba->doorbell[0]);
319}
320
Sarah Sharpae636742009-04-29 19:02:31 -0700321static void ring_ep_doorbell(struct xhci_hcd *xhci,
322 unsigned int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700323 unsigned int ep_index,
324 unsigned int stream_id)
Sarah Sharpae636742009-04-29 19:02:31 -0700325{
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700326 struct xhci_virt_ep *ep;
327 unsigned int ep_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700328 u32 field;
329 __u32 __iomem *db_addr = &xhci->dba->doorbell[slot_id];
330
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700331 ep = &xhci->devs[slot_id]->eps[ep_index];
332 ep_state = ep->ep_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700333 /* Don't ring the doorbell for this endpoint if there are pending
334 * cancellations because the we don't want to interrupt processing.
Sarah Sharp8df75f42010-04-02 15:34:16 -0700335 * We don't want to restart any stream rings if there's a set dequeue
336 * pointer command pending because the device can choose to start any
337 * stream once the endpoint is on the HW schedule.
338 * FIXME - check all the stream rings for pending cancellations.
Sarah Sharpae636742009-04-29 19:02:31 -0700339 */
Sarah Sharp678539c2009-10-27 10:55:52 -0700340 if (!(ep_state & EP_HALT_PENDING) && !(ep_state & SET_DEQ_PENDING)
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700341 && !(ep_state & EP_HALTED)) {
Sarah Sharpae636742009-04-29 19:02:31 -0700342 field = xhci_readl(xhci, db_addr) & DB_MASK;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700343 field |= EPI_TO_DB(ep_index) | STREAM_ID_TO_DB(stream_id);
344 xhci_writel(xhci, field, db_addr);
Sarah Sharpae636742009-04-29 19:02:31 -0700345 /* Flush PCI posted writes - FIXME Matthew Wilcox says this
346 * isn't time-critical and we shouldn't make the CPU wait for
347 * the flush.
348 */
349 xhci_readl(xhci, db_addr);
350 }
351}
352
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700353/* Ring the doorbell for any rings with pending URBs */
354static void ring_doorbell_for_active_rings(struct xhci_hcd *xhci,
355 unsigned int slot_id,
356 unsigned int ep_index)
357{
358 unsigned int stream_id;
359 struct xhci_virt_ep *ep;
360
361 ep = &xhci->devs[slot_id]->eps[ep_index];
362
363 /* A ring has pending URBs if its TD list is not empty */
364 if (!(ep->ep_state & EP_HAS_STREAMS)) {
365 if (!(list_empty(&ep->ring->td_list)))
366 ring_ep_doorbell(xhci, slot_id, ep_index, 0);
367 return;
368 }
369
370 for (stream_id = 1; stream_id < ep->stream_info->num_streams;
371 stream_id++) {
372 struct xhci_stream_info *stream_info = ep->stream_info;
373 if (!list_empty(&stream_info->stream_rings[stream_id]->td_list))
374 ring_ep_doorbell(xhci, slot_id, ep_index, stream_id);
375 }
376}
377
Sarah Sharpae636742009-04-29 19:02:31 -0700378/*
379 * Find the segment that trb is in. Start searching in start_seg.
380 * If we must move past a segment that has a link TRB with a toggle cycle state
381 * bit set, then we will toggle the value pointed at by cycle_state.
382 */
383static struct xhci_segment *find_trb_seg(
384 struct xhci_segment *start_seg,
385 union xhci_trb *trb, int *cycle_state)
386{
387 struct xhci_segment *cur_seg = start_seg;
388 struct xhci_generic_trb *generic_trb;
389
390 while (cur_seg->trbs > trb ||
391 &cur_seg->trbs[TRBS_PER_SEGMENT - 1] < trb) {
392 generic_trb = &cur_seg->trbs[TRBS_PER_SEGMENT - 1].generic;
Andiry Xu54b5acf2010-05-10 19:57:17 -0700393 if ((generic_trb->field[3] & TRB_TYPE_BITMASK) ==
394 TRB_TYPE(TRB_LINK) &&
Sarah Sharpae636742009-04-29 19:02:31 -0700395 (generic_trb->field[3] & LINK_TOGGLE))
396 *cycle_state = ~(*cycle_state) & 0x1;
397 cur_seg = cur_seg->next;
398 if (cur_seg == start_seg)
399 /* Looped over the entire list. Oops! */
Randy Dunlap326b4812010-04-19 08:53:50 -0700400 return NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700401 }
402 return cur_seg;
403}
404
Sarah Sharpae636742009-04-29 19:02:31 -0700405/*
406 * Move the xHC's endpoint ring dequeue pointer past cur_td.
407 * Record the new state of the xHC's endpoint ring dequeue segment,
408 * dequeue pointer, and new consumer cycle state in state.
409 * Update our internal representation of the ring's dequeue pointer.
410 *
411 * We do this in three jumps:
412 * - First we update our new ring state to be the same as when the xHC stopped.
413 * - Then we traverse the ring to find the segment that contains
414 * the last TRB in the TD. We toggle the xHC's new cycle state when we pass
415 * any link TRBs with the toggle cycle bit set.
416 * - Finally we move the dequeue state one TRB further, toggling the cycle bit
417 * if we've moved it past a link TRB with the toggle cycle bit set.
418 */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700419void xhci_find_new_dequeue_state(struct xhci_hcd *xhci,
Sarah Sharpae636742009-04-29 19:02:31 -0700420 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700421 unsigned int stream_id, struct xhci_td *cur_td,
422 struct xhci_dequeue_state *state)
Sarah Sharpae636742009-04-29 19:02:31 -0700423{
424 struct xhci_virt_device *dev = xhci->devs[slot_id];
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700425 struct xhci_ring *ep_ring;
Sarah Sharpae636742009-04-29 19:02:31 -0700426 struct xhci_generic_trb *trb;
John Yound115b042009-07-27 12:05:15 -0700427 struct xhci_ep_ctx *ep_ctx;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700428 dma_addr_t addr;
Sarah Sharpae636742009-04-29 19:02:31 -0700429
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700430 ep_ring = xhci_triad_to_transfer_ring(xhci, slot_id,
431 ep_index, stream_id);
432 if (!ep_ring) {
433 xhci_warn(xhci, "WARN can't find new dequeue state "
434 "for invalid stream ID %u.\n",
435 stream_id);
436 return;
437 }
Sarah Sharpae636742009-04-29 19:02:31 -0700438 state->new_cycle_state = 0;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700439 xhci_dbg(xhci, "Finding segment containing stopped TRB.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700440 state->new_deq_seg = find_trb_seg(cur_td->start_seg,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700441 dev->eps[ep_index].stopped_trb,
Sarah Sharpae636742009-04-29 19:02:31 -0700442 &state->new_cycle_state);
443 if (!state->new_deq_seg)
444 BUG();
445 /* Dig out the cycle state saved by the xHC during the stop ep cmd */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700446 xhci_dbg(xhci, "Finding endpoint context\n");
John Yound115b042009-07-27 12:05:15 -0700447 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
448 state->new_cycle_state = 0x1 & ep_ctx->deq;
Sarah Sharpae636742009-04-29 19:02:31 -0700449
450 state->new_deq_ptr = cur_td->last_trb;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700451 xhci_dbg(xhci, "Finding segment containing last TRB in TD.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700452 state->new_deq_seg = find_trb_seg(state->new_deq_seg,
453 state->new_deq_ptr,
454 &state->new_cycle_state);
455 if (!state->new_deq_seg)
456 BUG();
457
458 trb = &state->new_deq_ptr->generic;
Andiry Xu54b5acf2010-05-10 19:57:17 -0700459 if ((trb->field[3] & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK) &&
Sarah Sharpae636742009-04-29 19:02:31 -0700460 (trb->field[3] & LINK_TOGGLE))
461 state->new_cycle_state = ~(state->new_cycle_state) & 0x1;
462 next_trb(xhci, ep_ring, &state->new_deq_seg, &state->new_deq_ptr);
463
464 /* Don't update the ring cycle state for the producer (us). */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700465 xhci_dbg(xhci, "New dequeue segment = %p (virtual)\n",
466 state->new_deq_seg);
467 addr = xhci_trb_virt_to_dma(state->new_deq_seg, state->new_deq_ptr);
468 xhci_dbg(xhci, "New dequeue pointer = 0x%llx (DMA)\n",
469 (unsigned long long) addr);
470 xhci_dbg(xhci, "Setting dequeue pointer in internal ring state.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700471 ep_ring->dequeue = state->new_deq_ptr;
472 ep_ring->deq_seg = state->new_deq_seg;
473}
474
Sarah Sharp23e3be12009-04-29 19:05:20 -0700475static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
Sarah Sharpae636742009-04-29 19:02:31 -0700476 struct xhci_td *cur_td)
477{
478 struct xhci_segment *cur_seg;
479 union xhci_trb *cur_trb;
480
481 for (cur_seg = cur_td->start_seg, cur_trb = cur_td->first_trb;
482 true;
483 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
484 if ((cur_trb->generic.field[3] & TRB_TYPE_BITMASK) ==
485 TRB_TYPE(TRB_LINK)) {
486 /* Unchain any chained Link TRBs, but
487 * leave the pointers intact.
488 */
489 cur_trb->generic.field[3] &= ~TRB_CHAIN;
490 xhci_dbg(xhci, "Cancel (unchain) link TRB\n");
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700491 xhci_dbg(xhci, "Address = %p (0x%llx dma); "
492 "in seg %p (0x%llx dma)\n",
493 cur_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700494 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700495 cur_seg,
496 (unsigned long long)cur_seg->dma);
Sarah Sharpae636742009-04-29 19:02:31 -0700497 } else {
498 cur_trb->generic.field[0] = 0;
499 cur_trb->generic.field[1] = 0;
500 cur_trb->generic.field[2] = 0;
501 /* Preserve only the cycle bit of this TRB */
502 cur_trb->generic.field[3] &= TRB_CYCLE;
503 cur_trb->generic.field[3] |= TRB_TYPE(TRB_TR_NOOP);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700504 xhci_dbg(xhci, "Cancel TRB %p (0x%llx dma) "
505 "in seg %p (0x%llx dma)\n",
506 cur_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700507 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700508 cur_seg,
509 (unsigned long long)cur_seg->dma);
Sarah Sharpae636742009-04-29 19:02:31 -0700510 }
511 if (cur_trb == cur_td->last_trb)
512 break;
513 }
514}
515
516static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700517 unsigned int ep_index, unsigned int stream_id,
518 struct xhci_segment *deq_seg,
Sarah Sharpae636742009-04-29 19:02:31 -0700519 union xhci_trb *deq_ptr, u32 cycle_state);
520
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700521void xhci_queue_new_dequeue_state(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700522 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700523 unsigned int stream_id,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700524 struct xhci_dequeue_state *deq_state)
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700525{
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700526 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
527
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700528 xhci_dbg(xhci, "Set TR Deq Ptr cmd, new deq seg = %p (0x%llx dma), "
529 "new deq ptr = %p (0x%llx dma), new cycle = %u\n",
530 deq_state->new_deq_seg,
531 (unsigned long long)deq_state->new_deq_seg->dma,
532 deq_state->new_deq_ptr,
533 (unsigned long long)xhci_trb_virt_to_dma(deq_state->new_deq_seg, deq_state->new_deq_ptr),
534 deq_state->new_cycle_state);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700535 queue_set_tr_deq(xhci, slot_id, ep_index, stream_id,
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700536 deq_state->new_deq_seg,
537 deq_state->new_deq_ptr,
538 (u32) deq_state->new_cycle_state);
539 /* Stop the TD queueing code from ringing the doorbell until
540 * this command completes. The HC won't set the dequeue pointer
541 * if the ring is running, and ringing the doorbell starts the
542 * ring running.
543 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700544 ep->ep_state |= SET_DEQ_PENDING;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700545}
546
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700547static inline void xhci_stop_watchdog_timer_in_irq(struct xhci_hcd *xhci,
548 struct xhci_virt_ep *ep)
549{
550 ep->ep_state &= ~EP_HALT_PENDING;
551 /* Can't del_timer_sync in interrupt, so we attempt to cancel. If the
552 * timer is running on another CPU, we don't decrement stop_cmds_pending
553 * (since we didn't successfully stop the watchdog timer).
554 */
555 if (del_timer(&ep->stop_cmd_timer))
556 ep->stop_cmds_pending--;
557}
558
559/* Must be called with xhci->lock held in interrupt context */
560static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci,
561 struct xhci_td *cur_td, int status, char *adjective)
562{
563 struct usb_hcd *hcd = xhci_to_hcd(xhci);
564
565 cur_td->urb->hcpriv = NULL;
566 usb_hcd_unlink_urb_from_ep(hcd, cur_td->urb);
567 xhci_dbg(xhci, "Giveback %s URB %p\n", adjective, cur_td->urb);
568
569 spin_unlock(&xhci->lock);
570 usb_hcd_giveback_urb(hcd, cur_td->urb, status);
571 kfree(cur_td);
572 spin_lock(&xhci->lock);
573 xhci_dbg(xhci, "%s URB given back\n", adjective);
574}
575
Sarah Sharpae636742009-04-29 19:02:31 -0700576/*
577 * When we get a command completion for a Stop Endpoint Command, we need to
578 * unlink any cancelled TDs from the ring. There are two ways to do that:
579 *
580 * 1. If the HW was in the middle of processing the TD that needs to be
581 * cancelled, then we must move the ring's dequeue pointer past the last TRB
582 * in the TD with a Set Dequeue Pointer Command.
583 * 2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain
584 * bit cleared) so that the HW will skip over them.
585 */
586static void handle_stopped_endpoint(struct xhci_hcd *xhci,
587 union xhci_trb *trb)
588{
589 unsigned int slot_id;
590 unsigned int ep_index;
591 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700592 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -0700593 struct list_head *entry;
Randy Dunlap326b4812010-04-19 08:53:50 -0700594 struct xhci_td *cur_td = NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700595 struct xhci_td *last_unlinked_td;
596
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700597 struct xhci_dequeue_state deq_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700598
599 memset(&deq_state, 0, sizeof(deq_state));
600 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
601 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700602 ep = &xhci->devs[slot_id]->eps[ep_index];
Sarah Sharpae636742009-04-29 19:02:31 -0700603
Sarah Sharp678539c2009-10-27 10:55:52 -0700604 if (list_empty(&ep->cancelled_td_list)) {
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700605 xhci_stop_watchdog_timer_in_irq(xhci, ep);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700606 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700607 return;
Sarah Sharp678539c2009-10-27 10:55:52 -0700608 }
Sarah Sharpae636742009-04-29 19:02:31 -0700609
610 /* Fix up the ep ring first, so HW stops executing cancelled TDs.
611 * We have the xHCI lock, so nothing can modify this list until we drop
612 * it. We're also in the event handler, so we can't get re-interrupted
613 * if another Stop Endpoint command completes
614 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700615 list_for_each(entry, &ep->cancelled_td_list) {
Sarah Sharpae636742009-04-29 19:02:31 -0700616 cur_td = list_entry(entry, struct xhci_td, cancelled_td_list);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700617 xhci_dbg(xhci, "Cancelling TD starting at %p, 0x%llx (dma).\n",
618 cur_td->first_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700619 (unsigned long long)xhci_trb_virt_to_dma(cur_td->start_seg, cur_td->first_trb));
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700620 ep_ring = xhci_urb_to_transfer_ring(xhci, cur_td->urb);
621 if (!ep_ring) {
622 /* This shouldn't happen unless a driver is mucking
623 * with the stream ID after submission. This will
624 * leave the TD on the hardware ring, and the hardware
625 * will try to execute it, and may access a buffer
626 * that has already been freed. In the best case, the
627 * hardware will execute it, and the event handler will
628 * ignore the completion event for that TD, since it was
629 * removed from the td_list for that endpoint. In
630 * short, don't muck with the stream ID after
631 * submission.
632 */
633 xhci_warn(xhci, "WARN Cancelled URB %p "
634 "has invalid stream ID %u.\n",
635 cur_td->urb,
636 cur_td->urb->stream_id);
637 goto remove_finished_td;
638 }
Sarah Sharpae636742009-04-29 19:02:31 -0700639 /*
640 * If we stopped on the TD we need to cancel, then we have to
641 * move the xHC endpoint ring dequeue pointer past this TD.
642 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700643 if (cur_td == ep->stopped_td)
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700644 xhci_find_new_dequeue_state(xhci, slot_id, ep_index,
645 cur_td->urb->stream_id,
646 cur_td, &deq_state);
Sarah Sharpae636742009-04-29 19:02:31 -0700647 else
648 td_to_noop(xhci, ep_ring, cur_td);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700649remove_finished_td:
Sarah Sharpae636742009-04-29 19:02:31 -0700650 /*
651 * The event handler won't see a completion for this TD anymore,
652 * so remove it from the endpoint ring's TD list. Keep it in
653 * the cancelled TD list for URB completion later.
654 */
655 list_del(&cur_td->td_list);
Sarah Sharpae636742009-04-29 19:02:31 -0700656 }
657 last_unlinked_td = cur_td;
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700658 xhci_stop_watchdog_timer_in_irq(xhci, ep);
Sarah Sharpae636742009-04-29 19:02:31 -0700659
660 /* If necessary, queue a Set Transfer Ring Dequeue Pointer command */
661 if (deq_state.new_deq_ptr && deq_state.new_deq_seg) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700662 xhci_queue_new_dequeue_state(xhci,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700663 slot_id, ep_index,
664 ep->stopped_td->urb->stream_id,
665 &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700666 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -0700667 } else {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700668 /* Otherwise ring the doorbell(s) to restart queued transfers */
669 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700670 }
Sarah Sharp1624ae12010-05-06 13:40:08 -0700671 ep->stopped_td = NULL;
672 ep->stopped_trb = NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700673
674 /*
675 * Drop the lock and complete the URBs in the cancelled TD list.
676 * New TDs to be cancelled might be added to the end of the list before
677 * we can complete all the URBs for the TDs we already unlinked.
678 * So stop when we've completed the URB for the last TD we unlinked.
679 */
680 do {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700681 cur_td = list_entry(ep->cancelled_td_list.next,
Sarah Sharpae636742009-04-29 19:02:31 -0700682 struct xhci_td, cancelled_td_list);
683 list_del(&cur_td->cancelled_td_list);
684
685 /* Clean up the cancelled URB */
Sarah Sharpae636742009-04-29 19:02:31 -0700686 /* Doesn't matter what we pass for status, since the core will
687 * just overwrite it (because the URB has been unlinked).
688 */
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700689 xhci_giveback_urb_in_irq(xhci, cur_td, 0, "cancelled");
Sarah Sharpae636742009-04-29 19:02:31 -0700690
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700691 /* Stop processing the cancelled list if the watchdog timer is
692 * running.
693 */
694 if (xhci->xhc_state & XHCI_STATE_DYING)
695 return;
Sarah Sharpae636742009-04-29 19:02:31 -0700696 } while (cur_td != last_unlinked_td);
697
698 /* Return to the event handler with xhci->lock re-acquired */
699}
700
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700701/* Watchdog timer function for when a stop endpoint command fails to complete.
702 * In this case, we assume the host controller is broken or dying or dead. The
703 * host may still be completing some other events, so we have to be careful to
704 * let the event ring handler and the URB dequeueing/enqueueing functions know
705 * through xhci->state.
706 *
707 * The timer may also fire if the host takes a very long time to respond to the
708 * command, and the stop endpoint command completion handler cannot delete the
709 * timer before the timer function is called. Another endpoint cancellation may
710 * sneak in before the timer function can grab the lock, and that may queue
711 * another stop endpoint command and add the timer back. So we cannot use a
712 * simple flag to say whether there is a pending stop endpoint command for a
713 * particular endpoint.
714 *
715 * Instead we use a combination of that flag and a counter for the number of
716 * pending stop endpoint commands. If the timer is the tail end of the last
717 * stop endpoint command, and the endpoint's command is still pending, we assume
718 * the host is dying.
719 */
720void xhci_stop_endpoint_command_watchdog(unsigned long arg)
721{
722 struct xhci_hcd *xhci;
723 struct xhci_virt_ep *ep;
724 struct xhci_virt_ep *temp_ep;
725 struct xhci_ring *ring;
726 struct xhci_td *cur_td;
727 int ret, i, j;
728
729 ep = (struct xhci_virt_ep *) arg;
730 xhci = ep->xhci;
731
732 spin_lock(&xhci->lock);
733
734 ep->stop_cmds_pending--;
735 if (xhci->xhc_state & XHCI_STATE_DYING) {
736 xhci_dbg(xhci, "Stop EP timer ran, but another timer marked "
737 "xHCI as DYING, exiting.\n");
738 spin_unlock(&xhci->lock);
739 return;
740 }
741 if (!(ep->stop_cmds_pending == 0 && (ep->ep_state & EP_HALT_PENDING))) {
742 xhci_dbg(xhci, "Stop EP timer ran, but no command pending, "
743 "exiting.\n");
744 spin_unlock(&xhci->lock);
745 return;
746 }
747
748 xhci_warn(xhci, "xHCI host not responding to stop endpoint command.\n");
749 xhci_warn(xhci, "Assuming host is dying, halting host.\n");
750 /* Oops, HC is dead or dying or at least not responding to the stop
751 * endpoint command.
752 */
753 xhci->xhc_state |= XHCI_STATE_DYING;
754 /* Disable interrupts from the host controller and start halting it */
755 xhci_quiesce(xhci);
756 spin_unlock(&xhci->lock);
757
758 ret = xhci_halt(xhci);
759
760 spin_lock(&xhci->lock);
761 if (ret < 0) {
762 /* This is bad; the host is not responding to commands and it's
763 * not allowing itself to be halted. At least interrupts are
764 * disabled, so we can set HC_STATE_HALT and notify the
765 * USB core. But if we call usb_hc_died(), it will attempt to
766 * disconnect all device drivers under this host. Those
767 * disconnect() methods will wait for all URBs to be unlinked,
768 * so we must complete them.
769 */
770 xhci_warn(xhci, "Non-responsive xHCI host is not halting.\n");
771 xhci_warn(xhci, "Completing active URBs anyway.\n");
772 /* We could turn all TDs on the rings to no-ops. This won't
773 * help if the host has cached part of the ring, and is slow if
774 * we want to preserve the cycle bit. Skip it and hope the host
775 * doesn't touch the memory.
776 */
777 }
778 for (i = 0; i < MAX_HC_SLOTS; i++) {
779 if (!xhci->devs[i])
780 continue;
781 for (j = 0; j < 31; j++) {
782 temp_ep = &xhci->devs[i]->eps[j];
783 ring = temp_ep->ring;
784 if (!ring)
785 continue;
786 xhci_dbg(xhci, "Killing URBs for slot ID %u, "
787 "ep index %u\n", i, j);
788 while (!list_empty(&ring->td_list)) {
789 cur_td = list_first_entry(&ring->td_list,
790 struct xhci_td,
791 td_list);
792 list_del(&cur_td->td_list);
793 if (!list_empty(&cur_td->cancelled_td_list))
794 list_del(&cur_td->cancelled_td_list);
795 xhci_giveback_urb_in_irq(xhci, cur_td,
796 -ESHUTDOWN, "killed");
797 }
798 while (!list_empty(&temp_ep->cancelled_td_list)) {
799 cur_td = list_first_entry(
800 &temp_ep->cancelled_td_list,
801 struct xhci_td,
802 cancelled_td_list);
803 list_del(&cur_td->cancelled_td_list);
804 xhci_giveback_urb_in_irq(xhci, cur_td,
805 -ESHUTDOWN, "killed");
806 }
807 }
808 }
809 spin_unlock(&xhci->lock);
810 xhci_to_hcd(xhci)->state = HC_STATE_HALT;
811 xhci_dbg(xhci, "Calling usb_hc_died()\n");
812 usb_hc_died(xhci_to_hcd(xhci));
813 xhci_dbg(xhci, "xHCI host controller is dead.\n");
814}
815
Sarah Sharpae636742009-04-29 19:02:31 -0700816/*
817 * When we get a completion for a Set Transfer Ring Dequeue Pointer command,
818 * we need to clear the set deq pending flag in the endpoint ring state, so that
819 * the TD queueing code can ring the doorbell again. We also need to ring the
820 * endpoint doorbell to restart the ring, but only if there aren't more
821 * cancellations pending.
822 */
823static void handle_set_deq_completion(struct xhci_hcd *xhci,
824 struct xhci_event_cmd *event,
825 union xhci_trb *trb)
826{
827 unsigned int slot_id;
828 unsigned int ep_index;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700829 unsigned int stream_id;
Sarah Sharpae636742009-04-29 19:02:31 -0700830 struct xhci_ring *ep_ring;
831 struct xhci_virt_device *dev;
John Yound115b042009-07-27 12:05:15 -0700832 struct xhci_ep_ctx *ep_ctx;
833 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpae636742009-04-29 19:02:31 -0700834
835 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
836 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700837 stream_id = TRB_TO_STREAM_ID(trb->generic.field[2]);
Sarah Sharpae636742009-04-29 19:02:31 -0700838 dev = xhci->devs[slot_id];
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700839
840 ep_ring = xhci_stream_id_to_ring(dev, ep_index, stream_id);
841 if (!ep_ring) {
842 xhci_warn(xhci, "WARN Set TR deq ptr command for "
843 "freed stream ID %u\n",
844 stream_id);
845 /* XXX: Harmless??? */
846 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
847 return;
848 }
849
John Yound115b042009-07-27 12:05:15 -0700850 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
851 slot_ctx = xhci_get_slot_ctx(xhci, dev->out_ctx);
Sarah Sharpae636742009-04-29 19:02:31 -0700852
853 if (GET_COMP_CODE(event->status) != COMP_SUCCESS) {
854 unsigned int ep_state;
855 unsigned int slot_state;
856
857 switch (GET_COMP_CODE(event->status)) {
858 case COMP_TRB_ERR:
859 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because "
860 "of stream ID configuration\n");
861 break;
862 case COMP_CTX_STATE:
863 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due "
864 "to incorrect slot or ep state.\n");
John Yound115b042009-07-27 12:05:15 -0700865 ep_state = ep_ctx->ep_info;
Sarah Sharpae636742009-04-29 19:02:31 -0700866 ep_state &= EP_STATE_MASK;
John Yound115b042009-07-27 12:05:15 -0700867 slot_state = slot_ctx->dev_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700868 slot_state = GET_SLOT_STATE(slot_state);
869 xhci_dbg(xhci, "Slot state = %u, EP state = %u\n",
870 slot_state, ep_state);
871 break;
872 case COMP_EBADSLT:
873 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because "
874 "slot %u was not enabled.\n", slot_id);
875 break;
876 default:
877 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown "
878 "completion code of %u.\n",
879 GET_COMP_CODE(event->status));
880 break;
881 }
882 /* OK what do we do now? The endpoint state is hosed, and we
883 * should never get to this point if the synchronization between
884 * queueing, and endpoint state are correct. This might happen
885 * if the device gets disconnected after we've finished
886 * cancelling URBs, which might not be an error...
887 */
888 } else {
Sarah Sharp8e595a52009-07-27 12:03:31 -0700889 xhci_dbg(xhci, "Successful Set TR Deq Ptr cmd, deq = @%08llx\n",
John Yound115b042009-07-27 12:05:15 -0700890 ep_ctx->deq);
Sarah Sharpae636742009-04-29 19:02:31 -0700891 }
892
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700893 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700894 /* Restart any rings with pending URBs */
895 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700896}
897
Sarah Sharpa1587d92009-07-27 12:03:15 -0700898static void handle_reset_ep_completion(struct xhci_hcd *xhci,
899 struct xhci_event_cmd *event,
900 union xhci_trb *trb)
901{
902 int slot_id;
903 unsigned int ep_index;
904
905 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
906 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
907 /* This command will only fail if the endpoint wasn't halted,
908 * but we don't care.
909 */
910 xhci_dbg(xhci, "Ignoring reset ep completion code of %u\n",
911 (unsigned int) GET_COMP_CODE(event->status));
912
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700913 /* HW with the reset endpoint quirk needs to have a configure endpoint
914 * command complete before the endpoint can be used. Queue that here
915 * because the HW can't handle two commands being queued in a row.
916 */
917 if (xhci->quirks & XHCI_RESET_EP_QUIRK) {
918 xhci_dbg(xhci, "Queueing configure endpoint command\n");
919 xhci_queue_configure_endpoint(xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -0700920 xhci->devs[slot_id]->in_ctx->dma, slot_id,
921 false);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700922 xhci_ring_cmd_db(xhci);
923 } else {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700924 /* Clear our internal halted state and restart the ring(s) */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700925 xhci->devs[slot_id]->eps[ep_index].ep_state &= ~EP_HALTED;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700926 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700927 }
Sarah Sharpa1587d92009-07-27 12:03:15 -0700928}
Sarah Sharpae636742009-04-29 19:02:31 -0700929
Sarah Sharpa50c8aa2009-09-04 10:53:15 -0700930/* Check to see if a command in the device's command queue matches this one.
931 * Signal the completion or free the command, and return 1. Return 0 if the
932 * completed command isn't at the head of the command list.
933 */
934static int handle_cmd_in_cmd_wait_list(struct xhci_hcd *xhci,
935 struct xhci_virt_device *virt_dev,
936 struct xhci_event_cmd *event)
937{
938 struct xhci_command *command;
939
940 if (list_empty(&virt_dev->cmd_list))
941 return 0;
942
943 command = list_entry(virt_dev->cmd_list.next,
944 struct xhci_command, cmd_list);
945 if (xhci->cmd_ring->dequeue != command->command_trb)
946 return 0;
947
948 command->status =
949 GET_COMP_CODE(event->status);
950 list_del(&command->cmd_list);
951 if (command->completion)
952 complete(command->completion);
953 else
954 xhci_free_command(xhci, command);
955 return 1;
956}
957
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700958static void handle_cmd_completion(struct xhci_hcd *xhci,
959 struct xhci_event_cmd *event)
960{
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700961 int slot_id = TRB_TO_SLOT_ID(event->flags);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700962 u64 cmd_dma;
963 dma_addr_t cmd_dequeue_dma;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700964 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -0700965 struct xhci_virt_device *virt_dev;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700966 unsigned int ep_index;
967 struct xhci_ring *ep_ring;
968 unsigned int ep_state;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700969
Sarah Sharp8e595a52009-07-27 12:03:31 -0700970 cmd_dma = event->cmd_trb;
Sarah Sharp23e3be12009-04-29 19:05:20 -0700971 cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700972 xhci->cmd_ring->dequeue);
973 /* Is the command ring deq ptr out of sync with the deq seg ptr? */
974 if (cmd_dequeue_dma == 0) {
975 xhci->error_bitmask |= 1 << 4;
976 return;
977 }
978 /* Does the DMA address match our internal dequeue pointer address? */
979 if (cmd_dma != (u64) cmd_dequeue_dma) {
980 xhci->error_bitmask |= 1 << 5;
981 return;
982 }
983 switch (xhci->cmd_ring->dequeue->generic.field[3] & TRB_TYPE_BITMASK) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700984 case TRB_TYPE(TRB_ENABLE_SLOT):
985 if (GET_COMP_CODE(event->status) == COMP_SUCCESS)
986 xhci->slot_id = slot_id;
987 else
988 xhci->slot_id = 0;
989 complete(&xhci->addr_dev);
990 break;
991 case TRB_TYPE(TRB_DISABLE_SLOT):
992 if (xhci->devs[slot_id])
993 xhci_free_virt_device(xhci, slot_id);
994 break;
Sarah Sharpf94e01862009-04-27 19:58:38 -0700995 case TRB_TYPE(TRB_CONFIG_EP):
Sarah Sharp913a8a32009-09-04 10:53:13 -0700996 virt_dev = xhci->devs[slot_id];
Sarah Sharpa50c8aa2009-09-04 10:53:15 -0700997 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
Sarah Sharp913a8a32009-09-04 10:53:13 -0700998 break;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700999 /*
1000 * Configure endpoint commands can come from the USB core
1001 * configuration or alt setting changes, or because the HW
1002 * needed an extra configure endpoint command after a reset
Sarah Sharp8df75f42010-04-02 15:34:16 -07001003 * endpoint command or streams were being configured.
1004 * If the command was for a halted endpoint, the xHCI driver
1005 * is not waiting on the configure endpoint command.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001006 */
1007 ctrl_ctx = xhci_get_input_control_ctx(xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001008 virt_dev->in_ctx);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001009 /* Input ctx add_flags are the endpoint index plus one */
1010 ep_index = xhci_last_valid_endpoint(ctrl_ctx->add_flags) - 1;
Sarah Sharp06df5722009-12-03 09:44:31 -08001011 /* A usb_set_interface() call directly after clearing a halted
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001012 * condition may race on this quirky hardware. Not worth
1013 * worrying about, since this is prototype hardware. Not sure
1014 * if this will work for streams, but streams support was
1015 * untested on this prototype.
Sarah Sharp06df5722009-12-03 09:44:31 -08001016 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001017 if (xhci->quirks & XHCI_RESET_EP_QUIRK &&
Sarah Sharp06df5722009-12-03 09:44:31 -08001018 ep_index != (unsigned int) -1 &&
1019 ctrl_ctx->add_flags - SLOT_FLAG ==
1020 ctrl_ctx->drop_flags) {
1021 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
1022 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1023 if (!(ep_state & EP_HALTED))
1024 goto bandwidth_change;
1025 xhci_dbg(xhci, "Completed config ep cmd - "
1026 "last ep index = %d, state = %d\n",
1027 ep_index, ep_state);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001028 /* Clear internal halted state and restart ring(s) */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001029 xhci->devs[slot_id]->eps[ep_index].ep_state &=
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001030 ~EP_HALTED;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001031 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharp06df5722009-12-03 09:44:31 -08001032 break;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001033 }
Sarah Sharp06df5722009-12-03 09:44:31 -08001034bandwidth_change:
1035 xhci_dbg(xhci, "Completed config ep cmd\n");
1036 xhci->devs[slot_id]->cmd_status =
1037 GET_COMP_CODE(event->status);
1038 complete(&xhci->devs[slot_id]->cmd_completion);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001039 break;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001040 case TRB_TYPE(TRB_EVAL_CONTEXT):
Sarah Sharpac1c1b72009-09-04 10:53:20 -07001041 virt_dev = xhci->devs[slot_id];
1042 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
1043 break;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001044 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
1045 complete(&xhci->devs[slot_id]->cmd_completion);
1046 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001047 case TRB_TYPE(TRB_ADDR_DEV):
1048 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
1049 complete(&xhci->addr_dev);
1050 break;
Sarah Sharpae636742009-04-29 19:02:31 -07001051 case TRB_TYPE(TRB_STOP_RING):
1052 handle_stopped_endpoint(xhci, xhci->cmd_ring->dequeue);
1053 break;
1054 case TRB_TYPE(TRB_SET_DEQ):
1055 handle_set_deq_completion(xhci, event, xhci->cmd_ring->dequeue);
1056 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001057 case TRB_TYPE(TRB_CMD_NOOP):
1058 ++xhci->noops_handled;
1059 break;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001060 case TRB_TYPE(TRB_RESET_EP):
1061 handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue);
1062 break;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08001063 case TRB_TYPE(TRB_RESET_DEV):
1064 xhci_dbg(xhci, "Completed reset device command.\n");
1065 slot_id = TRB_TO_SLOT_ID(
1066 xhci->cmd_ring->dequeue->generic.field[3]);
1067 virt_dev = xhci->devs[slot_id];
1068 if (virt_dev)
1069 handle_cmd_in_cmd_wait_list(xhci, virt_dev, event);
1070 else
1071 xhci_warn(xhci, "Reset device command completion "
1072 "for disabled slot %u\n", slot_id);
1073 break;
Sarah Sharp02386342010-05-24 13:25:28 -07001074 case TRB_TYPE(TRB_NEC_GET_FW):
1075 if (!(xhci->quirks & XHCI_NEC_HOST)) {
1076 xhci->error_bitmask |= 1 << 6;
1077 break;
1078 }
1079 xhci_dbg(xhci, "NEC firmware version %2x.%02x\n",
1080 NEC_FW_MAJOR(event->status),
1081 NEC_FW_MINOR(event->status));
1082 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001083 default:
1084 /* Skip over unknown commands on the event ring */
1085 xhci->error_bitmask |= 1 << 6;
1086 break;
1087 }
1088 inc_deq(xhci, xhci->cmd_ring, false);
1089}
1090
Sarah Sharp02386342010-05-24 13:25:28 -07001091static void handle_vendor_event(struct xhci_hcd *xhci,
1092 union xhci_trb *event)
1093{
1094 u32 trb_type;
1095
1096 trb_type = TRB_FIELD_TO_TYPE(event->generic.field[3]);
1097 xhci_dbg(xhci, "Vendor specific event TRB type = %u\n", trb_type);
1098 if (trb_type == TRB_NEC_CMD_COMP && (xhci->quirks & XHCI_NEC_HOST))
1099 handle_cmd_completion(xhci, &event->event_cmd);
1100}
1101
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001102static void handle_port_status(struct xhci_hcd *xhci,
1103 union xhci_trb *event)
1104{
1105 u32 port_id;
1106
1107 /* Port status change events always have a successful completion code */
1108 if (GET_COMP_CODE(event->generic.field[2]) != COMP_SUCCESS) {
1109 xhci_warn(xhci, "WARN: xHC returned failed port status event\n");
1110 xhci->error_bitmask |= 1 << 8;
1111 }
1112 /* FIXME: core doesn't care about all port link state changes yet */
1113 port_id = GET_PORT_ID(event->generic.field[0]);
1114 xhci_dbg(xhci, "Port Status Change Event for port %d\n", port_id);
1115
1116 /* Update event ring dequeue pointer before dropping the lock */
1117 inc_deq(xhci, xhci->event_ring, true);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001118 xhci_set_hc_event_deq(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001119
1120 spin_unlock(&xhci->lock);
1121 /* Pass this up to the core */
1122 usb_hcd_poll_rh_status(xhci_to_hcd(xhci));
1123 spin_lock(&xhci->lock);
1124}
1125
1126/*
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001127 * This TD is defined by the TRBs starting at start_trb in start_seg and ending
1128 * at end_trb, which may be in another segment. If the suspect DMA address is a
1129 * TRB in this TD, this function returns that TRB's segment. Otherwise it
1130 * returns 0.
1131 */
Sarah Sharp6648f292009-11-09 13:35:23 -08001132struct xhci_segment *trb_in_td(struct xhci_segment *start_seg,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001133 union xhci_trb *start_trb,
1134 union xhci_trb *end_trb,
1135 dma_addr_t suspect_dma)
1136{
1137 dma_addr_t start_dma;
1138 dma_addr_t end_seg_dma;
1139 dma_addr_t end_trb_dma;
1140 struct xhci_segment *cur_seg;
1141
Sarah Sharp23e3be12009-04-29 19:05:20 -07001142 start_dma = xhci_trb_virt_to_dma(start_seg, start_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001143 cur_seg = start_seg;
1144
1145 do {
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001146 if (start_dma == 0)
Randy Dunlap326b4812010-04-19 08:53:50 -07001147 return NULL;
Sarah Sharpae636742009-04-29 19:02:31 -07001148 /* We may get an event for a Link TRB in the middle of a TD */
Sarah Sharp23e3be12009-04-29 19:05:20 -07001149 end_seg_dma = xhci_trb_virt_to_dma(cur_seg,
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001150 &cur_seg->trbs[TRBS_PER_SEGMENT - 1]);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001151 /* If the end TRB isn't in this segment, this is set to 0 */
Sarah Sharp23e3be12009-04-29 19:05:20 -07001152 end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001153
1154 if (end_trb_dma > 0) {
1155 /* The end TRB is in this segment, so suspect should be here */
1156 if (start_dma <= end_trb_dma) {
1157 if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma)
1158 return cur_seg;
1159 } else {
1160 /* Case for one segment with
1161 * a TD wrapped around to the top
1162 */
1163 if ((suspect_dma >= start_dma &&
1164 suspect_dma <= end_seg_dma) ||
1165 (suspect_dma >= cur_seg->dma &&
1166 suspect_dma <= end_trb_dma))
1167 return cur_seg;
1168 }
Randy Dunlap326b4812010-04-19 08:53:50 -07001169 return NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001170 } else {
1171 /* Might still be somewhere in this segment */
1172 if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma)
1173 return cur_seg;
1174 }
1175 cur_seg = cur_seg->next;
Sarah Sharp23e3be12009-04-29 19:05:20 -07001176 start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]);
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001177 } while (cur_seg != start_seg);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001178
Randy Dunlap326b4812010-04-19 08:53:50 -07001179 return NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001180}
1181
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001182static void xhci_cleanup_halted_endpoint(struct xhci_hcd *xhci,
1183 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001184 unsigned int stream_id,
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001185 struct xhci_td *td, union xhci_trb *event_trb)
1186{
1187 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
1188 ep->ep_state |= EP_HALTED;
1189 ep->stopped_td = td;
1190 ep->stopped_trb = event_trb;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001191 ep->stopped_stream = stream_id;
Sarah Sharp1624ae12010-05-06 13:40:08 -07001192
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001193 xhci_queue_reset_ep(xhci, slot_id, ep_index);
1194 xhci_cleanup_stalled_ring(xhci, td->urb->dev, ep_index);
Sarah Sharp1624ae12010-05-06 13:40:08 -07001195
1196 ep->stopped_td = NULL;
1197 ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07001198 ep->stopped_stream = 0;
Sarah Sharp1624ae12010-05-06 13:40:08 -07001199
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001200 xhci_ring_cmd_db(xhci);
1201}
1202
1203/* Check if an error has halted the endpoint ring. The class driver will
1204 * cleanup the halt for a non-default control endpoint if we indicate a stall.
1205 * However, a babble and other errors also halt the endpoint ring, and the class
1206 * driver won't clear the halt in that case, so we need to issue a Set Transfer
1207 * Ring Dequeue Pointer command manually.
1208 */
1209static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci,
1210 struct xhci_ep_ctx *ep_ctx,
1211 unsigned int trb_comp_code)
1212{
1213 /* TRB completion codes that may require a manual halt cleanup */
1214 if (trb_comp_code == COMP_TX_ERR ||
1215 trb_comp_code == COMP_BABBLE ||
1216 trb_comp_code == COMP_SPLIT_ERR)
1217 /* The 0.96 spec says a babbling control endpoint
1218 * is not halted. The 0.96 spec says it is. Some HW
1219 * claims to be 0.95 compliant, but it halts the control
1220 * endpoint anyway. Check if a babble halted the
1221 * endpoint.
1222 */
1223 if ((ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_HALTED)
1224 return 1;
1225
1226 return 0;
1227}
1228
Sarah Sharpb45b5062009-12-09 15:59:06 -08001229int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code)
1230{
1231 if (trb_comp_code >= 224 && trb_comp_code <= 255) {
1232 /* Vendor defined "informational" completion code,
1233 * treat as not-an-error.
1234 */
1235 xhci_dbg(xhci, "Vendor defined info completion code %u\n",
1236 trb_comp_code);
1237 xhci_dbg(xhci, "Treating code as success.\n");
1238 return 1;
1239 }
1240 return 0;
1241}
1242
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001243/*
1244 * If this function returns an error condition, it means it got a Transfer
1245 * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address.
1246 * At this point, the host controller is probably hosed and should be reset.
1247 */
1248static int handle_tx_event(struct xhci_hcd *xhci,
1249 struct xhci_transfer_event *event)
1250{
1251 struct xhci_virt_device *xdev;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001252 struct xhci_virt_ep *ep;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001253 struct xhci_ring *ep_ring;
Sarah Sharp82d10092009-08-07 14:04:52 -07001254 unsigned int slot_id;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001255 int ep_index;
Randy Dunlap326b4812010-04-19 08:53:50 -07001256 struct xhci_td *td = NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001257 dma_addr_t event_dma;
1258 struct xhci_segment *event_seg;
1259 union xhci_trb *event_trb;
Randy Dunlap326b4812010-04-19 08:53:50 -07001260 struct urb *urb = NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001261 int status = -EINPROGRESS;
John Yound115b042009-07-27 12:05:15 -07001262 struct xhci_ep_ctx *ep_ctx;
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001263 u32 trb_comp_code;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001264
Sarah Sharp66e49d82009-07-27 12:03:46 -07001265 xhci_dbg(xhci, "In %s\n", __func__);
Sarah Sharp82d10092009-08-07 14:04:52 -07001266 slot_id = TRB_TO_SLOT_ID(event->flags);
1267 xdev = xhci->devs[slot_id];
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001268 if (!xdev) {
1269 xhci_err(xhci, "ERROR Transfer event pointed to bad slot\n");
1270 return -ENODEV;
1271 }
1272
1273 /* Endpoint ID is 1 based, our index is zero based */
1274 ep_index = TRB_TO_EP_ID(event->flags) - 1;
Sarah Sharp66e49d82009-07-27 12:03:46 -07001275 xhci_dbg(xhci, "%s - ep index = %d\n", __func__, ep_index);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001276 ep = &xdev->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001277 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
John Yound115b042009-07-27 12:05:15 -07001278 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
1279 if (!ep_ring || (ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_DISABLED) {
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001280 xhci_err(xhci, "ERROR Transfer event for disabled endpoint "
1281 "or incorrect stream ring\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001282 return -ENODEV;
1283 }
1284
Sarah Sharp8e595a52009-07-27 12:03:31 -07001285 event_dma = event->buffer;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001286 /* This TRB should be in the TD at the head of this ring's TD list */
Sarah Sharp66e49d82009-07-27 12:03:46 -07001287 xhci_dbg(xhci, "%s - checking for list empty\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001288 if (list_empty(&ep_ring->td_list)) {
1289 xhci_warn(xhci, "WARN Event TRB for slot %d ep %d with no TDs queued?\n",
1290 TRB_TO_SLOT_ID(event->flags), ep_index);
1291 xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
1292 (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10);
1293 xhci_print_trb_offsets(xhci, (union xhci_trb *) event);
1294 urb = NULL;
1295 goto cleanup;
1296 }
Sarah Sharp66e49d82009-07-27 12:03:46 -07001297 xhci_dbg(xhci, "%s - getting list entry\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001298 td = list_entry(ep_ring->td_list.next, struct xhci_td, td_list);
1299
1300 /* Is this a TRB in the currently executing TD? */
Sarah Sharp66e49d82009-07-27 12:03:46 -07001301 xhci_dbg(xhci, "%s - looking for TD\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001302 event_seg = trb_in_td(ep_ring->deq_seg, ep_ring->dequeue,
1303 td->last_trb, event_dma);
Sarah Sharp66e49d82009-07-27 12:03:46 -07001304 xhci_dbg(xhci, "%s - found event_seg = %p\n", __func__, event_seg);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001305 if (!event_seg) {
1306 /* HC is busted, give up! */
1307 xhci_err(xhci, "ERROR Transfer event TRB DMA ptr not part of current TD\n");
1308 return -ESHUTDOWN;
1309 }
1310 event_trb = &event_seg->trbs[(event_dma - event_seg->dma) / sizeof(*event_trb)];
Sarah Sharpb10de142009-04-27 19:58:50 -07001311 xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
1312 (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10);
Sarah Sharp8e595a52009-07-27 12:03:31 -07001313 xhci_dbg(xhci, "Offset 0x00 (buffer lo) = 0x%x\n",
1314 lower_32_bits(event->buffer));
1315 xhci_dbg(xhci, "Offset 0x04 (buffer hi) = 0x%x\n",
1316 upper_32_bits(event->buffer));
Sarah Sharpb10de142009-04-27 19:58:50 -07001317 xhci_dbg(xhci, "Offset 0x08 (transfer length) = 0x%x\n",
1318 (unsigned int) event->transfer_len);
1319 xhci_dbg(xhci, "Offset 0x0C (flags) = 0x%x\n",
1320 (unsigned int) event->flags);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001321
Sarah Sharpb10de142009-04-27 19:58:50 -07001322 /* Look for common error cases */
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001323 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1324 switch (trb_comp_code) {
Sarah Sharpb10de142009-04-27 19:58:50 -07001325 /* Skip codes that require special handling depending on
1326 * transfer type
1327 */
1328 case COMP_SUCCESS:
1329 case COMP_SHORT_TX:
1330 break;
Sarah Sharpae636742009-04-29 19:02:31 -07001331 case COMP_STOP:
1332 xhci_dbg(xhci, "Stopped on Transfer TRB\n");
1333 break;
1334 case COMP_STOP_INVAL:
1335 xhci_dbg(xhci, "Stopped on No-op or Link TRB\n");
1336 break;
Sarah Sharpb10de142009-04-27 19:58:50 -07001337 case COMP_STALL:
1338 xhci_warn(xhci, "WARN: Stalled endpoint\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001339 ep->ep_state |= EP_HALTED;
Sarah Sharpb10de142009-04-27 19:58:50 -07001340 status = -EPIPE;
1341 break;
1342 case COMP_TRB_ERR:
1343 xhci_warn(xhci, "WARN: TRB error on endpoint\n");
1344 status = -EILSEQ;
1345 break;
Sarah Sharpec74e402009-11-11 10:28:36 -08001346 case COMP_SPLIT_ERR:
Sarah Sharpb10de142009-04-27 19:58:50 -07001347 case COMP_TX_ERR:
1348 xhci_warn(xhci, "WARN: transfer error on endpoint\n");
1349 status = -EPROTO;
1350 break;
Sarah Sharp4a731432009-07-27 12:04:32 -07001351 case COMP_BABBLE:
1352 xhci_warn(xhci, "WARN: babble error on endpoint\n");
1353 status = -EOVERFLOW;
1354 break;
Sarah Sharpb10de142009-04-27 19:58:50 -07001355 case COMP_DB_ERR:
1356 xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n");
1357 status = -ENOSR;
1358 break;
1359 default:
Sarah Sharpb45b5062009-12-09 15:59:06 -08001360 if (xhci_is_vendor_info_code(xhci, trb_comp_code)) {
Sarah Sharp5ad6a522009-11-11 10:28:40 -08001361 status = 0;
1362 break;
1363 }
Sarah Sharpb10de142009-04-27 19:58:50 -07001364 xhci_warn(xhci, "ERROR Unknown event condition, HC probably busted\n");
1365 urb = NULL;
1366 goto cleanup;
1367 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001368 /* Now update the urb's actual_length and give back to the core */
1369 /* Was this a control transfer? */
1370 if (usb_endpoint_xfer_control(&td->urb->ep->desc)) {
1371 xhci_debug_trb(xhci, xhci->event_ring->dequeue);
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001372 switch (trb_comp_code) {
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001373 case COMP_SUCCESS:
1374 if (event_trb == ep_ring->dequeue) {
1375 xhci_warn(xhci, "WARN: Success on ctrl setup TRB without IOC set??\n");
1376 status = -ESHUTDOWN;
1377 } else if (event_trb != td->last_trb) {
1378 xhci_warn(xhci, "WARN: Success on ctrl data TRB without IOC set??\n");
1379 status = -ESHUTDOWN;
1380 } else {
1381 xhci_dbg(xhci, "Successful control transfer!\n");
1382 status = 0;
1383 }
1384 break;
1385 case COMP_SHORT_TX:
1386 xhci_warn(xhci, "WARN: short transfer on control ep\n");
Sarah Sharp204970a2009-08-28 14:28:15 -07001387 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1388 status = -EREMOTEIO;
1389 else
1390 status = 0;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001391 break;
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001392
1393 default:
1394 if (!xhci_requires_manual_halt_cleanup(xhci,
1395 ep_ctx, trb_comp_code))
Sarah Sharp83fbcdc2009-08-27 14:36:03 -07001396 break;
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001397 xhci_dbg(xhci, "TRB error code %u, "
1398 "halted endpoint index = %u\n",
1399 trb_comp_code, ep_index);
Sarah Sharp83fbcdc2009-08-27 14:36:03 -07001400 /* else fall through */
Sarah Sharp82d10092009-08-07 14:04:52 -07001401 case COMP_STALL:
1402 /* Did we transfer part of the data (middle) phase? */
1403 if (event_trb != ep_ring->dequeue &&
1404 event_trb != td->last_trb)
1405 td->urb->actual_length =
1406 td->urb->transfer_buffer_length
1407 - TRB_LEN(event->transfer_len);
1408 else
1409 td->urb->actual_length = 0;
1410
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001411 xhci_cleanup_halted_endpoint(xhci,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001412 slot_id, ep_index, 0, td, event_trb);
Sarah Sharp82d10092009-08-07 14:04:52 -07001413 goto td_cleanup;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001414 }
1415 /*
1416 * Did we transfer any data, despite the errors that might have
1417 * happened? I.e. did we get past the setup stage?
1418 */
1419 if (event_trb != ep_ring->dequeue) {
1420 /* The event was for the status stage */
1421 if (event_trb == td->last_trb) {
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001422 if (td->urb->actual_length != 0) {
1423 /* Don't overwrite a previously set error code */
Sarah Sharp204970a2009-08-28 14:28:15 -07001424 if ((status == -EINPROGRESS ||
1425 status == 0) &&
1426 (td->urb->transfer_flags
1427 & URB_SHORT_NOT_OK))
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001428 /* Did we already see a short data stage? */
1429 status = -EREMOTEIO;
1430 } else {
Sarah Sharp62889612009-07-27 12:03:36 -07001431 td->urb->actual_length =
1432 td->urb->transfer_buffer_length;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001433 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001434 } else {
Sarah Sharpae636742009-04-29 19:02:31 -07001435 /* Maybe the event was for the data stage? */
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001436 if (trb_comp_code != COMP_STOP_INVAL) {
Sarah Sharpae636742009-04-29 19:02:31 -07001437 /* We didn't stop on a link TRB in the middle */
1438 td->urb->actual_length =
1439 td->urb->transfer_buffer_length -
1440 TRB_LEN(event->transfer_len);
Sarah Sharp62889612009-07-27 12:03:36 -07001441 xhci_dbg(xhci, "Waiting for status stage event\n");
1442 urb = NULL;
1443 goto cleanup;
1444 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001445 }
1446 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001447 } else {
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001448 switch (trb_comp_code) {
Sarah Sharpb10de142009-04-27 19:58:50 -07001449 case COMP_SUCCESS:
1450 /* Double check that the HW transferred everything. */
1451 if (event_trb != td->last_trb) {
1452 xhci_warn(xhci, "WARN Successful completion "
1453 "on short TX\n");
1454 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1455 status = -EREMOTEIO;
1456 else
1457 status = 0;
1458 } else {
Sarah Sharp624defa2009-09-02 12:14:28 -07001459 if (usb_endpoint_xfer_bulk(&td->urb->ep->desc))
1460 xhci_dbg(xhci, "Successful bulk "
1461 "transfer!\n");
1462 else
1463 xhci_dbg(xhci, "Successful interrupt "
1464 "transfer!\n");
Sarah Sharpb10de142009-04-27 19:58:50 -07001465 status = 0;
1466 }
1467 break;
1468 case COMP_SHORT_TX:
1469 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1470 status = -EREMOTEIO;
1471 else
1472 status = 0;
1473 break;
1474 default:
1475 /* Others already handled above */
1476 break;
1477 }
1478 dev_dbg(&td->urb->dev->dev,
1479 "ep %#x - asked for %d bytes, "
1480 "%d bytes untransferred\n",
1481 td->urb->ep->desc.bEndpointAddress,
1482 td->urb->transfer_buffer_length,
1483 TRB_LEN(event->transfer_len));
1484 /* Fast path - was this the last TRB in the TD for this URB? */
1485 if (event_trb == td->last_trb) {
1486 if (TRB_LEN(event->transfer_len) != 0) {
1487 td->urb->actual_length =
1488 td->urb->transfer_buffer_length -
1489 TRB_LEN(event->transfer_len);
Sarah Sharp99eb32d2009-08-27 14:36:24 -07001490 if (td->urb->transfer_buffer_length <
1491 td->urb->actual_length) {
Sarah Sharpb10de142009-04-27 19:58:50 -07001492 xhci_warn(xhci, "HC gave bad length "
1493 "of %d bytes left\n",
1494 TRB_LEN(event->transfer_len));
1495 td->urb->actual_length = 0;
Sarah Sharp2f697f62009-08-28 14:28:18 -07001496 if (td->urb->transfer_flags &
1497 URB_SHORT_NOT_OK)
1498 status = -EREMOTEIO;
1499 else
1500 status = 0;
Sarah Sharpb10de142009-04-27 19:58:50 -07001501 }
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001502 /* Don't overwrite a previously set error code */
1503 if (status == -EINPROGRESS) {
1504 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1505 status = -EREMOTEIO;
1506 else
1507 status = 0;
1508 }
Sarah Sharpb10de142009-04-27 19:58:50 -07001509 } else {
1510 td->urb->actual_length = td->urb->transfer_buffer_length;
1511 /* Ignore a short packet completion if the
1512 * untransferred length was zero.
1513 */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001514 if (status == -EREMOTEIO)
1515 status = 0;
Sarah Sharpb10de142009-04-27 19:58:50 -07001516 }
1517 } else {
Sarah Sharpae636742009-04-29 19:02:31 -07001518 /* Slow path - walk the list, starting from the dequeue
1519 * pointer, to get the actual length transferred.
Sarah Sharpb10de142009-04-27 19:58:50 -07001520 */
Sarah Sharpae636742009-04-29 19:02:31 -07001521 union xhci_trb *cur_trb;
1522 struct xhci_segment *cur_seg;
Sarah Sharpb10de142009-04-27 19:58:50 -07001523
Sarah Sharpae636742009-04-29 19:02:31 -07001524 td->urb->actual_length = 0;
1525 for (cur_trb = ep_ring->dequeue, cur_seg = ep_ring->deq_seg;
1526 cur_trb != event_trb;
1527 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
Andiry Xu54b5acf2010-05-10 19:57:17 -07001528 if ((cur_trb->generic.field[3] &
1529 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_TR_NOOP) &&
1530 (cur_trb->generic.field[3] &
1531 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_LINK))
Sarah Sharpae636742009-04-29 19:02:31 -07001532 td->urb->actual_length +=
1533 TRB_LEN(cur_trb->generic.field[2]);
1534 }
1535 /* If the ring didn't stop on a Link or No-op TRB, add
1536 * in the actual bytes transferred from the Normal TRB
1537 */
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001538 if (trb_comp_code != COMP_STOP_INVAL)
Sarah Sharpae636742009-04-29 19:02:31 -07001539 td->urb->actual_length +=
1540 TRB_LEN(cur_trb->generic.field[2]) -
1541 TRB_LEN(event->transfer_len);
Sarah Sharpb10de142009-04-27 19:58:50 -07001542 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001543 }
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001544 if (trb_comp_code == COMP_STOP_INVAL ||
1545 trb_comp_code == COMP_STOP) {
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001546 /* The Endpoint Stop Command completion will take care of any
1547 * stopped TDs. A stopped TD may be restarted, so don't update
1548 * the ring dequeue pointer or take this TD off any lists yet.
1549 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001550 ep->stopped_td = td;
1551 ep->stopped_trb = event_trb;
Sarah Sharpae636742009-04-29 19:02:31 -07001552 } else {
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001553 if (trb_comp_code == COMP_STALL) {
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001554 /* The transfer is completed from the driver's
1555 * perspective, but we need to issue a set dequeue
1556 * command for this stalled endpoint to move the dequeue
1557 * pointer past the TD. We can't do that here because
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001558 * the halt condition must be cleared first. Let the
1559 * USB class driver clear the stall later.
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001560 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001561 ep->stopped_td = td;
1562 ep->stopped_trb = event_trb;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001563 ep->stopped_stream = ep_ring->stream_id;
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001564 } else if (xhci_requires_manual_halt_cleanup(xhci,
1565 ep_ctx, trb_comp_code)) {
1566 /* Other types of errors halt the endpoint, but the
1567 * class driver doesn't call usb_reset_endpoint() unless
1568 * the error is -EPIPE. Clear the halted status in the
1569 * xHCI hardware manually.
1570 */
1571 xhci_cleanup_halted_endpoint(xhci,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001572 slot_id, ep_index, ep_ring->stream_id, td, event_trb);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001573 } else {
1574 /* Update ring dequeue pointer */
1575 while (ep_ring->dequeue != td->last_trb)
1576 inc_deq(xhci, ep_ring, false);
Sarah Sharpae636742009-04-29 19:02:31 -07001577 inc_deq(xhci, ep_ring, false);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001578 }
Sarah Sharpb10de142009-04-27 19:58:50 -07001579
Sarah Sharp82d10092009-08-07 14:04:52 -07001580td_cleanup:
Sarah Sharpae636742009-04-29 19:02:31 -07001581 /* Clean up the endpoint's TD list */
1582 urb = td->urb;
Sarah Sharp99eb32d2009-08-27 14:36:24 -07001583 /* Do one last check of the actual transfer length.
1584 * If the host controller said we transferred more data than
1585 * the buffer length, urb->actual_length will be a very big
1586 * number (since it's unsigned). Play it safe and say we didn't
1587 * transfer anything.
1588 */
1589 if (urb->actual_length > urb->transfer_buffer_length) {
1590 xhci_warn(xhci, "URB transfer length is wrong, "
1591 "xHC issue? req. len = %u, "
1592 "act. len = %u\n",
1593 urb->transfer_buffer_length,
1594 urb->actual_length);
1595 urb->actual_length = 0;
Sarah Sharp2f697f62009-08-28 14:28:18 -07001596 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1597 status = -EREMOTEIO;
1598 else
1599 status = 0;
Sarah Sharp99eb32d2009-08-27 14:36:24 -07001600 }
Sarah Sharpae636742009-04-29 19:02:31 -07001601 list_del(&td->td_list);
1602 /* Was this TD slated to be cancelled but completed anyway? */
Sarah Sharp678539c2009-10-27 10:55:52 -07001603 if (!list_empty(&td->cancelled_td_list))
Sarah Sharpae636742009-04-29 19:02:31 -07001604 list_del(&td->cancelled_td_list);
Sarah Sharp678539c2009-10-27 10:55:52 -07001605
Sarah Sharp82d10092009-08-07 14:04:52 -07001606 /* Leave the TD around for the reset endpoint function to use
1607 * (but only if it's not a control endpoint, since we already
1608 * queued the Set TR dequeue pointer command for stalled
1609 * control endpoints).
1610 */
1611 if (usb_endpoint_xfer_control(&urb->ep->desc) ||
Sarah Sharp83fbcdc2009-08-27 14:36:03 -07001612 (trb_comp_code != COMP_STALL &&
1613 trb_comp_code != COMP_BABBLE)) {
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001614 kfree(td);
1615 }
Sarah Sharpae636742009-04-29 19:02:31 -07001616 urb->hcpriv = NULL;
1617 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001618cleanup:
1619 inc_deq(xhci, xhci->event_ring, true);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001620 xhci_set_hc_event_deq(xhci);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001621
Sarah Sharpb10de142009-04-27 19:58:50 -07001622 /* FIXME for multi-TD URBs (who have buffers bigger than 64MB) */
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001623 if (urb) {
1624 usb_hcd_unlink_urb_from_ep(xhci_to_hcd(xhci), urb);
Sarah Sharp66e49d82009-07-27 12:03:46 -07001625 xhci_dbg(xhci, "Giveback URB %p, len = %d, status = %d\n",
Sarah Sharp9191eee2009-08-27 14:36:14 -07001626 urb, urb->actual_length, status);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001627 spin_unlock(&xhci->lock);
1628 usb_hcd_giveback_urb(xhci_to_hcd(xhci), urb, status);
1629 spin_lock(&xhci->lock);
1630 }
1631 return 0;
1632}
1633
1634/*
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001635 * This function handles all OS-owned events on the event ring. It may drop
1636 * xhci->lock between event processing (e.g. to pass up port status changes).
1637 */
Stephen Rothwellb7258a42009-04-29 19:02:47 -07001638void xhci_handle_event(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001639{
1640 union xhci_trb *event;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001641 int update_ptrs = 1;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001642 int ret;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001643
Sarah Sharp66e49d82009-07-27 12:03:46 -07001644 xhci_dbg(xhci, "In %s\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001645 if (!xhci->event_ring || !xhci->event_ring->dequeue) {
1646 xhci->error_bitmask |= 1 << 1;
1647 return;
1648 }
1649
1650 event = xhci->event_ring->dequeue;
1651 /* Does the HC or OS own the TRB? */
1652 if ((event->event_cmd.flags & TRB_CYCLE) !=
1653 xhci->event_ring->cycle_state) {
1654 xhci->error_bitmask |= 1 << 2;
1655 return;
1656 }
Sarah Sharp66e49d82009-07-27 12:03:46 -07001657 xhci_dbg(xhci, "%s - OS owns TRB\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001658
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001659 /* FIXME: Handle more event types. */
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001660 switch ((event->event_cmd.flags & TRB_TYPE_BITMASK)) {
1661 case TRB_TYPE(TRB_COMPLETION):
Sarah Sharp66e49d82009-07-27 12:03:46 -07001662 xhci_dbg(xhci, "%s - calling handle_cmd_completion\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001663 handle_cmd_completion(xhci, &event->event_cmd);
Sarah Sharp66e49d82009-07-27 12:03:46 -07001664 xhci_dbg(xhci, "%s - returned from handle_cmd_completion\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001665 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001666 case TRB_TYPE(TRB_PORT_STATUS):
Sarah Sharp66e49d82009-07-27 12:03:46 -07001667 xhci_dbg(xhci, "%s - calling handle_port_status\n", __func__);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001668 handle_port_status(xhci, event);
Sarah Sharp66e49d82009-07-27 12:03:46 -07001669 xhci_dbg(xhci, "%s - returned from handle_port_status\n", __func__);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001670 update_ptrs = 0;
1671 break;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001672 case TRB_TYPE(TRB_TRANSFER):
Sarah Sharp66e49d82009-07-27 12:03:46 -07001673 xhci_dbg(xhci, "%s - calling handle_tx_event\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001674 ret = handle_tx_event(xhci, &event->trans_event);
Sarah Sharp66e49d82009-07-27 12:03:46 -07001675 xhci_dbg(xhci, "%s - returned from handle_tx_event\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001676 if (ret < 0)
1677 xhci->error_bitmask |= 1 << 9;
1678 else
1679 update_ptrs = 0;
1680 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001681 default:
Sarah Sharp02386342010-05-24 13:25:28 -07001682 if ((event->event_cmd.flags & TRB_TYPE_BITMASK) >= TRB_TYPE(48))
1683 handle_vendor_event(xhci, event);
1684 else
1685 xhci->error_bitmask |= 1 << 3;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001686 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001687 /* Any of the above functions may drop and re-acquire the lock, so check
1688 * to make sure a watchdog timer didn't mark the host as non-responsive.
1689 */
1690 if (xhci->xhc_state & XHCI_STATE_DYING) {
1691 xhci_dbg(xhci, "xHCI host dying, returning from "
1692 "event handler.\n");
1693 return;
1694 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001695
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001696 if (update_ptrs) {
1697 /* Update SW and HC event ring dequeue pointer */
1698 inc_deq(xhci, xhci->event_ring, true);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001699 xhci_set_hc_event_deq(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001700 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001701 /* Are there more items on the event ring? */
Stephen Rothwellb7258a42009-04-29 19:02:47 -07001702 xhci_handle_event(xhci);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001703}
1704
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001705/**** Endpoint Ring Operations ****/
1706
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001707/*
1708 * Generic function for queueing a TRB on a ring.
1709 * The caller must have checked to make sure there's room on the ring.
1710 */
1711static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
1712 bool consumer,
1713 u32 field1, u32 field2, u32 field3, u32 field4)
1714{
1715 struct xhci_generic_trb *trb;
1716
1717 trb = &ring->enqueue->generic;
1718 trb->field[0] = field1;
1719 trb->field[1] = field2;
1720 trb->field[2] = field3;
1721 trb->field[3] = field4;
1722 inc_enq(xhci, ring, consumer);
1723}
1724
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001725/*
1726 * Does various checks on the endpoint ring, and makes it ready to queue num_trbs.
1727 * FIXME allocate segments if the ring is full.
1728 */
1729static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
1730 u32 ep_state, unsigned int num_trbs, gfp_t mem_flags)
1731{
1732 /* Make sure the endpoint has been added to xHC schedule */
1733 xhci_dbg(xhci, "Endpoint state = 0x%x\n", ep_state);
1734 switch (ep_state) {
1735 case EP_STATE_DISABLED:
1736 /*
1737 * USB core changed config/interfaces without notifying us,
1738 * or hardware is reporting the wrong state.
1739 */
1740 xhci_warn(xhci, "WARN urb submitted to disabled ep\n");
1741 return -ENOENT;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001742 case EP_STATE_ERROR:
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001743 xhci_warn(xhci, "WARN waiting for error on ep to be cleared\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001744 /* FIXME event handling code for error needs to clear it */
1745 /* XXX not sure if this should be -ENOENT or not */
1746 return -EINVAL;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07001747 case EP_STATE_HALTED:
1748 xhci_dbg(xhci, "WARN halted endpoint, queueing URB anyway.\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001749 case EP_STATE_STOPPED:
1750 case EP_STATE_RUNNING:
1751 break;
1752 default:
1753 xhci_err(xhci, "ERROR unknown endpoint state for ep\n");
1754 /*
1755 * FIXME issue Configure Endpoint command to try to get the HC
1756 * back into a known state.
1757 */
1758 return -EINVAL;
1759 }
1760 if (!room_on_ring(xhci, ep_ring, num_trbs)) {
1761 /* FIXME allocate more room */
1762 xhci_err(xhci, "ERROR no room on ep ring\n");
1763 return -ENOMEM;
1764 }
John Youn6c12db92010-05-10 15:33:00 -07001765
1766 if (enqueue_is_link_trb(ep_ring)) {
1767 struct xhci_ring *ring = ep_ring;
1768 union xhci_trb *next;
John Youn6c12db92010-05-10 15:33:00 -07001769
1770 xhci_dbg(xhci, "prepare_ring: pointing to link trb\n");
1771 next = ring->enqueue;
1772
1773 while (last_trb(xhci, ring, ring->enq_seg, next)) {
1774
1775 /* If we're not dealing with 0.95 hardware,
1776 * clear the chain bit.
1777 */
1778 if (!xhci_link_trb_quirk(xhci))
1779 next->link.control &= ~TRB_CHAIN;
1780 else
1781 next->link.control |= TRB_CHAIN;
1782
1783 wmb();
1784 next->link.control ^= (u32) TRB_CYCLE;
1785
1786 /* Toggle the cycle bit after the last ring segment. */
1787 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
1788 ring->cycle_state = (ring->cycle_state ? 0 : 1);
1789 if (!in_interrupt()) {
1790 xhci_dbg(xhci, "queue_trb: Toggle cycle "
1791 "state for ring %p = %i\n",
1792 ring, (unsigned int)ring->cycle_state);
1793 }
1794 }
1795 ring->enq_seg = ring->enq_seg->next;
1796 ring->enqueue = ring->enq_seg->trbs;
1797 next = ring->enqueue;
1798 }
1799 }
1800
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001801 return 0;
1802}
1803
Sarah Sharp23e3be12009-04-29 19:05:20 -07001804static int prepare_transfer(struct xhci_hcd *xhci,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001805 struct xhci_virt_device *xdev,
1806 unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001807 unsigned int stream_id,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001808 unsigned int num_trbs,
1809 struct urb *urb,
1810 struct xhci_td **td,
1811 gfp_t mem_flags)
1812{
1813 int ret;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001814 struct xhci_ring *ep_ring;
John Yound115b042009-07-27 12:05:15 -07001815 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001816
1817 ep_ring = xhci_stream_id_to_ring(xdev, ep_index, stream_id);
1818 if (!ep_ring) {
1819 xhci_dbg(xhci, "Can't prepare ring for bad stream ID %u\n",
1820 stream_id);
1821 return -EINVAL;
1822 }
1823
1824 ret = prepare_ring(xhci, ep_ring,
John Yound115b042009-07-27 12:05:15 -07001825 ep_ctx->ep_info & EP_STATE_MASK,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001826 num_trbs, mem_flags);
1827 if (ret)
1828 return ret;
1829 *td = kzalloc(sizeof(struct xhci_td), mem_flags);
1830 if (!*td)
1831 return -ENOMEM;
1832 INIT_LIST_HEAD(&(*td)->td_list);
Sarah Sharpae636742009-04-29 19:02:31 -07001833 INIT_LIST_HEAD(&(*td)->cancelled_td_list);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001834
1835 ret = usb_hcd_link_urb_to_ep(xhci_to_hcd(xhci), urb);
1836 if (unlikely(ret)) {
1837 kfree(*td);
1838 return ret;
1839 }
1840
1841 (*td)->urb = urb;
1842 urb->hcpriv = (void *) (*td);
1843 /* Add this TD to the tail of the endpoint ring's TD list */
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001844 list_add_tail(&(*td)->td_list, &ep_ring->td_list);
1845 (*td)->start_seg = ep_ring->enq_seg;
1846 (*td)->first_trb = ep_ring->enqueue;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001847
1848 return 0;
1849}
1850
Sarah Sharp23e3be12009-04-29 19:05:20 -07001851static unsigned int count_sg_trbs_needed(struct xhci_hcd *xhci, struct urb *urb)
Sarah Sharp8a96c052009-04-27 19:59:19 -07001852{
1853 int num_sgs, num_trbs, running_total, temp, i;
1854 struct scatterlist *sg;
1855
1856 sg = NULL;
1857 num_sgs = urb->num_sgs;
1858 temp = urb->transfer_buffer_length;
1859
1860 xhci_dbg(xhci, "count sg list trbs: \n");
1861 num_trbs = 0;
Matthew Wilcox910f8d02010-05-01 12:20:01 -06001862 for_each_sg(urb->sg, sg, num_sgs, i) {
Sarah Sharp8a96c052009-04-27 19:59:19 -07001863 unsigned int previous_total_trbs = num_trbs;
1864 unsigned int len = sg_dma_len(sg);
1865
1866 /* Scatter gather list entries may cross 64KB boundaries */
1867 running_total = TRB_MAX_BUFF_SIZE -
1868 (sg_dma_address(sg) & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1869 if (running_total != 0)
1870 num_trbs++;
1871
1872 /* How many more 64KB chunks to transfer, how many more TRBs? */
1873 while (running_total < sg_dma_len(sg)) {
1874 num_trbs++;
1875 running_total += TRB_MAX_BUFF_SIZE;
1876 }
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001877 xhci_dbg(xhci, " sg #%d: dma = %#llx, len = %#x (%d), num_trbs = %d\n",
1878 i, (unsigned long long)sg_dma_address(sg),
1879 len, len, num_trbs - previous_total_trbs);
Sarah Sharp8a96c052009-04-27 19:59:19 -07001880
1881 len = min_t(int, len, temp);
1882 temp -= len;
1883 if (temp == 0)
1884 break;
1885 }
1886 xhci_dbg(xhci, "\n");
1887 if (!in_interrupt())
1888 dev_dbg(&urb->dev->dev, "ep %#x - urb len = %d, sglist used, num_trbs = %d\n",
1889 urb->ep->desc.bEndpointAddress,
1890 urb->transfer_buffer_length,
1891 num_trbs);
1892 return num_trbs;
1893}
1894
Sarah Sharp23e3be12009-04-29 19:05:20 -07001895static void check_trb_math(struct urb *urb, int num_trbs, int running_total)
Sarah Sharp8a96c052009-04-27 19:59:19 -07001896{
1897 if (num_trbs != 0)
1898 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated number of "
1899 "TRBs, %d left\n", __func__,
1900 urb->ep->desc.bEndpointAddress, num_trbs);
1901 if (running_total != urb->transfer_buffer_length)
1902 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, "
1903 "queued %#x (%d), asked for %#x (%d)\n",
1904 __func__,
1905 urb->ep->desc.bEndpointAddress,
1906 running_total, running_total,
1907 urb->transfer_buffer_length,
1908 urb->transfer_buffer_length);
1909}
1910
Sarah Sharp23e3be12009-04-29 19:05:20 -07001911static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001912 unsigned int ep_index, unsigned int stream_id, int start_cycle,
Sarah Sharp8a96c052009-04-27 19:59:19 -07001913 struct xhci_generic_trb *start_trb, struct xhci_td *td)
1914{
Sarah Sharp8a96c052009-04-27 19:59:19 -07001915 /*
1916 * Pass all the TRBs to the hardware at once and make sure this write
1917 * isn't reordered.
1918 */
1919 wmb();
1920 start_trb->field[3] |= start_cycle;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001921 ring_ep_doorbell(xhci, slot_id, ep_index, stream_id);
Sarah Sharp8a96c052009-04-27 19:59:19 -07001922}
1923
Sarah Sharp624defa2009-09-02 12:14:28 -07001924/*
1925 * xHCI uses normal TRBs for both bulk and interrupt. When the interrupt
1926 * endpoint is to be serviced, the xHC will consume (at most) one TD. A TD
1927 * (comprised of sg list entries) can take several service intervals to
1928 * transmit.
1929 */
1930int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
1931 struct urb *urb, int slot_id, unsigned int ep_index)
1932{
1933 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci,
1934 xhci->devs[slot_id]->out_ctx, ep_index);
1935 int xhci_interval;
1936 int ep_interval;
1937
1938 xhci_interval = EP_INTERVAL_TO_UFRAMES(ep_ctx->ep_info);
1939 ep_interval = urb->interval;
1940 /* Convert to microframes */
1941 if (urb->dev->speed == USB_SPEED_LOW ||
1942 urb->dev->speed == USB_SPEED_FULL)
1943 ep_interval *= 8;
1944 /* FIXME change this to a warning and a suggestion to use the new API
1945 * to set the polling interval (once the API is added).
1946 */
1947 if (xhci_interval != ep_interval) {
1948 if (!printk_ratelimit())
1949 dev_dbg(&urb->dev->dev, "Driver uses different interval"
1950 " (%d microframe%s) than xHCI "
1951 "(%d microframe%s)\n",
1952 ep_interval,
1953 ep_interval == 1 ? "" : "s",
1954 xhci_interval,
1955 xhci_interval == 1 ? "" : "s");
1956 urb->interval = xhci_interval;
1957 /* Convert back to frames for LS/FS devices */
1958 if (urb->dev->speed == USB_SPEED_LOW ||
1959 urb->dev->speed == USB_SPEED_FULL)
1960 urb->interval /= 8;
1961 }
1962 return xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
1963}
1964
Sarah Sharp04dd9502009-11-11 10:28:30 -08001965/*
1966 * The TD size is the number of bytes remaining in the TD (including this TRB),
1967 * right shifted by 10.
1968 * It must fit in bits 21:17, so it can't be bigger than 31.
1969 */
1970static u32 xhci_td_remainder(unsigned int remainder)
1971{
1972 u32 max = (1 << (21 - 17 + 1)) - 1;
1973
1974 if ((remainder >> 10) >= max)
1975 return max << 17;
1976 else
1977 return (remainder >> 10) << 17;
1978}
1979
Sarah Sharp23e3be12009-04-29 19:05:20 -07001980static int queue_bulk_sg_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharp8a96c052009-04-27 19:59:19 -07001981 struct urb *urb, int slot_id, unsigned int ep_index)
1982{
1983 struct xhci_ring *ep_ring;
1984 unsigned int num_trbs;
1985 struct xhci_td *td;
1986 struct scatterlist *sg;
1987 int num_sgs;
1988 int trb_buff_len, this_sg_len, running_total;
1989 bool first_trb;
1990 u64 addr;
1991
1992 struct xhci_generic_trb *start_trb;
1993 int start_cycle;
1994
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001995 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1996 if (!ep_ring)
1997 return -EINVAL;
1998
Sarah Sharp8a96c052009-04-27 19:59:19 -07001999 num_trbs = count_sg_trbs_needed(xhci, urb);
2000 num_sgs = urb->num_sgs;
2001
Sarah Sharp23e3be12009-04-29 19:05:20 -07002002 trb_buff_len = prepare_transfer(xhci, xhci->devs[slot_id],
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002003 ep_index, urb->stream_id,
2004 num_trbs, urb, &td, mem_flags);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002005 if (trb_buff_len < 0)
2006 return trb_buff_len;
2007 /*
2008 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2009 * until we've finished creating all the other TRBs. The ring's cycle
2010 * state may change as we enqueue the other TRBs, so save it too.
2011 */
2012 start_trb = &ep_ring->enqueue->generic;
2013 start_cycle = ep_ring->cycle_state;
2014
2015 running_total = 0;
2016 /*
2017 * How much data is in the first TRB?
2018 *
2019 * There are three forces at work for TRB buffer pointers and lengths:
2020 * 1. We don't want to walk off the end of this sg-list entry buffer.
2021 * 2. The transfer length that the driver requested may be smaller than
2022 * the amount of memory allocated for this scatter-gather list.
2023 * 3. TRBs buffers can't cross 64KB boundaries.
2024 */
Matthew Wilcox910f8d02010-05-01 12:20:01 -06002025 sg = urb->sg;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002026 addr = (u64) sg_dma_address(sg);
2027 this_sg_len = sg_dma_len(sg);
2028 trb_buff_len = TRB_MAX_BUFF_SIZE -
2029 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2030 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2031 if (trb_buff_len > urb->transfer_buffer_length)
2032 trb_buff_len = urb->transfer_buffer_length;
2033 xhci_dbg(xhci, "First length to xfer from 1st sglist entry = %u\n",
2034 trb_buff_len);
2035
2036 first_trb = true;
2037 /* Queue the first TRB, even if it's zero-length */
2038 do {
2039 u32 field = 0;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002040 u32 length_field = 0;
Sarah Sharp04dd9502009-11-11 10:28:30 -08002041 u32 remainder = 0;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002042
2043 /* Don't change the cycle bit of the first TRB until later */
2044 if (first_trb)
2045 first_trb = false;
2046 else
2047 field |= ep_ring->cycle_state;
2048
2049 /* Chain all the TRBs together; clear the chain bit in the last
2050 * TRB to indicate it's the last TRB in the chain.
2051 */
2052 if (num_trbs > 1) {
2053 field |= TRB_CHAIN;
2054 } else {
2055 /* FIXME - add check for ZERO_PACKET flag before this */
2056 td->last_trb = ep_ring->enqueue;
2057 field |= TRB_IOC;
2058 }
2059 xhci_dbg(xhci, " sg entry: dma = %#x, len = %#x (%d), "
2060 "64KB boundary at %#x, end dma = %#x\n",
2061 (unsigned int) addr, trb_buff_len, trb_buff_len,
2062 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2063 (unsigned int) addr + trb_buff_len);
2064 if (TRB_MAX_BUFF_SIZE -
2065 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1)) < trb_buff_len) {
2066 xhci_warn(xhci, "WARN: sg dma xfer crosses 64KB boundaries!\n");
2067 xhci_dbg(xhci, "Next boundary at %#x, end dma = %#x\n",
2068 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2069 (unsigned int) addr + trb_buff_len);
2070 }
Sarah Sharp04dd9502009-11-11 10:28:30 -08002071 remainder = xhci_td_remainder(urb->transfer_buffer_length -
2072 running_total) ;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002073 length_field = TRB_LEN(trb_buff_len) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002074 remainder |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002075 TRB_INTR_TARGET(0);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002076 queue_trb(xhci, ep_ring, false,
Sarah Sharp8e595a52009-07-27 12:03:31 -07002077 lower_32_bits(addr),
2078 upper_32_bits(addr),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002079 length_field,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002080 /* We always want to know if the TRB was short,
2081 * or we won't get an event when it completes.
2082 * (Unless we use event data TRBs, which are a
2083 * waste of space and HC resources.)
2084 */
2085 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
2086 --num_trbs;
2087 running_total += trb_buff_len;
2088
2089 /* Calculate length for next transfer --
2090 * Are we done queueing all the TRBs for this sg entry?
2091 */
2092 this_sg_len -= trb_buff_len;
2093 if (this_sg_len == 0) {
2094 --num_sgs;
2095 if (num_sgs == 0)
2096 break;
2097 sg = sg_next(sg);
2098 addr = (u64) sg_dma_address(sg);
2099 this_sg_len = sg_dma_len(sg);
2100 } else {
2101 addr += trb_buff_len;
2102 }
2103
2104 trb_buff_len = TRB_MAX_BUFF_SIZE -
2105 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2106 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2107 if (running_total + trb_buff_len > urb->transfer_buffer_length)
2108 trb_buff_len =
2109 urb->transfer_buffer_length - running_total;
2110 } while (running_total < urb->transfer_buffer_length);
2111
2112 check_trb_math(urb, num_trbs, running_total);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002113 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
2114 start_cycle, start_trb, td);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002115 return 0;
2116}
2117
Sarah Sharpb10de142009-04-27 19:58:50 -07002118/* This is very similar to what ehci-q.c qtd_fill() does */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002119int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharpb10de142009-04-27 19:58:50 -07002120 struct urb *urb, int slot_id, unsigned int ep_index)
2121{
2122 struct xhci_ring *ep_ring;
2123 struct xhci_td *td;
2124 int num_trbs;
2125 struct xhci_generic_trb *start_trb;
2126 bool first_trb;
2127 int start_cycle;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002128 u32 field, length_field;
Sarah Sharpb10de142009-04-27 19:58:50 -07002129
2130 int running_total, trb_buff_len, ret;
2131 u64 addr;
2132
Alan Sternff9c8952010-04-02 13:27:28 -04002133 if (urb->num_sgs)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002134 return queue_bulk_sg_tx(xhci, mem_flags, urb, slot_id, ep_index);
2135
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002136 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2137 if (!ep_ring)
2138 return -EINVAL;
Sarah Sharpb10de142009-04-27 19:58:50 -07002139
2140 num_trbs = 0;
2141 /* How much data is (potentially) left before the 64KB boundary? */
2142 running_total = TRB_MAX_BUFF_SIZE -
2143 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2144
2145 /* If there's some data on this 64KB chunk, or we have to send a
2146 * zero-length transfer, we need at least one TRB
2147 */
2148 if (running_total != 0 || urb->transfer_buffer_length == 0)
2149 num_trbs++;
2150 /* How many more 64KB chunks to transfer, how many more TRBs? */
2151 while (running_total < urb->transfer_buffer_length) {
2152 num_trbs++;
2153 running_total += TRB_MAX_BUFF_SIZE;
2154 }
2155 /* FIXME: this doesn't deal with URB_ZERO_PACKET - need one more */
2156
2157 if (!in_interrupt())
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002158 dev_dbg(&urb->dev->dev, "ep %#x - urb len = %#x (%d), addr = %#llx, num_trbs = %d\n",
Sarah Sharpb10de142009-04-27 19:58:50 -07002159 urb->ep->desc.bEndpointAddress,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002160 urb->transfer_buffer_length,
2161 urb->transfer_buffer_length,
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002162 (unsigned long long)urb->transfer_dma,
Sarah Sharpb10de142009-04-27 19:58:50 -07002163 num_trbs);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002164
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002165 ret = prepare_transfer(xhci, xhci->devs[slot_id],
2166 ep_index, urb->stream_id,
Sarah Sharpb10de142009-04-27 19:58:50 -07002167 num_trbs, urb, &td, mem_flags);
2168 if (ret < 0)
2169 return ret;
2170
2171 /*
2172 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2173 * until we've finished creating all the other TRBs. The ring's cycle
2174 * state may change as we enqueue the other TRBs, so save it too.
2175 */
2176 start_trb = &ep_ring->enqueue->generic;
2177 start_cycle = ep_ring->cycle_state;
2178
2179 running_total = 0;
2180 /* How much data is in the first TRB? */
2181 addr = (u64) urb->transfer_dma;
2182 trb_buff_len = TRB_MAX_BUFF_SIZE -
2183 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2184 if (urb->transfer_buffer_length < trb_buff_len)
2185 trb_buff_len = urb->transfer_buffer_length;
2186
2187 first_trb = true;
2188
2189 /* Queue the first TRB, even if it's zero-length */
2190 do {
Sarah Sharp04dd9502009-11-11 10:28:30 -08002191 u32 remainder = 0;
Sarah Sharpb10de142009-04-27 19:58:50 -07002192 field = 0;
2193
2194 /* Don't change the cycle bit of the first TRB until later */
2195 if (first_trb)
2196 first_trb = false;
2197 else
2198 field |= ep_ring->cycle_state;
2199
2200 /* Chain all the TRBs together; clear the chain bit in the last
2201 * TRB to indicate it's the last TRB in the chain.
2202 */
2203 if (num_trbs > 1) {
2204 field |= TRB_CHAIN;
2205 } else {
2206 /* FIXME - add check for ZERO_PACKET flag before this */
2207 td->last_trb = ep_ring->enqueue;
2208 field |= TRB_IOC;
2209 }
Sarah Sharp04dd9502009-11-11 10:28:30 -08002210 remainder = xhci_td_remainder(urb->transfer_buffer_length -
2211 running_total);
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002212 length_field = TRB_LEN(trb_buff_len) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002213 remainder |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002214 TRB_INTR_TARGET(0);
Sarah Sharpb10de142009-04-27 19:58:50 -07002215 queue_trb(xhci, ep_ring, false,
Sarah Sharp8e595a52009-07-27 12:03:31 -07002216 lower_32_bits(addr),
2217 upper_32_bits(addr),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002218 length_field,
Sarah Sharpb10de142009-04-27 19:58:50 -07002219 /* We always want to know if the TRB was short,
2220 * or we won't get an event when it completes.
2221 * (Unless we use event data TRBs, which are a
2222 * waste of space and HC resources.)
2223 */
2224 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
2225 --num_trbs;
2226 running_total += trb_buff_len;
2227
2228 /* Calculate length for next transfer */
2229 addr += trb_buff_len;
2230 trb_buff_len = urb->transfer_buffer_length - running_total;
2231 if (trb_buff_len > TRB_MAX_BUFF_SIZE)
2232 trb_buff_len = TRB_MAX_BUFF_SIZE;
2233 } while (running_total < urb->transfer_buffer_length);
2234
Sarah Sharp8a96c052009-04-27 19:59:19 -07002235 check_trb_math(urb, num_trbs, running_total);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002236 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
2237 start_cycle, start_trb, td);
Sarah Sharpb10de142009-04-27 19:58:50 -07002238 return 0;
2239}
2240
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002241/* Caller must have locked xhci->lock */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002242int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002243 struct urb *urb, int slot_id, unsigned int ep_index)
2244{
2245 struct xhci_ring *ep_ring;
2246 int num_trbs;
2247 int ret;
2248 struct usb_ctrlrequest *setup;
2249 struct xhci_generic_trb *start_trb;
2250 int start_cycle;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002251 u32 field, length_field;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002252 struct xhci_td *td;
2253
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002254 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2255 if (!ep_ring)
2256 return -EINVAL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002257
2258 /*
2259 * Need to copy setup packet into setup TRB, so we can't use the setup
2260 * DMA address.
2261 */
2262 if (!urb->setup_packet)
2263 return -EINVAL;
2264
2265 if (!in_interrupt())
2266 xhci_dbg(xhci, "Queueing ctrl tx for slot id %d, ep %d\n",
2267 slot_id, ep_index);
2268 /* 1 TRB for setup, 1 for status */
2269 num_trbs = 2;
2270 /*
2271 * Don't need to check if we need additional event data and normal TRBs,
2272 * since data in control transfers will never get bigger than 16MB
2273 * XXX: can we get a buffer that crosses 64KB boundaries?
2274 */
2275 if (urb->transfer_buffer_length > 0)
2276 num_trbs++;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002277 ret = prepare_transfer(xhci, xhci->devs[slot_id],
2278 ep_index, urb->stream_id,
2279 num_trbs, urb, &td, mem_flags);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002280 if (ret < 0)
2281 return ret;
2282
2283 /*
2284 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2285 * until we've finished creating all the other TRBs. The ring's cycle
2286 * state may change as we enqueue the other TRBs, so save it too.
2287 */
2288 start_trb = &ep_ring->enqueue->generic;
2289 start_cycle = ep_ring->cycle_state;
2290
2291 /* Queue setup TRB - see section 6.4.1.2.1 */
2292 /* FIXME better way to translate setup_packet into two u32 fields? */
2293 setup = (struct usb_ctrlrequest *) urb->setup_packet;
2294 queue_trb(xhci, ep_ring, false,
2295 /* FIXME endianness is probably going to bite my ass here. */
2296 setup->bRequestType | setup->bRequest << 8 | setup->wValue << 16,
2297 setup->wIndex | setup->wLength << 16,
2298 TRB_LEN(8) | TRB_INTR_TARGET(0),
2299 /* Immediate data in pointer */
2300 TRB_IDT | TRB_TYPE(TRB_SETUP));
2301
2302 /* If there's data, queue data TRBs */
2303 field = 0;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002304 length_field = TRB_LEN(urb->transfer_buffer_length) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002305 xhci_td_remainder(urb->transfer_buffer_length) |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002306 TRB_INTR_TARGET(0);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002307 if (urb->transfer_buffer_length > 0) {
2308 if (setup->bRequestType & USB_DIR_IN)
2309 field |= TRB_DIR_IN;
2310 queue_trb(xhci, ep_ring, false,
2311 lower_32_bits(urb->transfer_dma),
2312 upper_32_bits(urb->transfer_dma),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002313 length_field,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002314 /* Event on short tx */
2315 field | TRB_ISP | TRB_TYPE(TRB_DATA) | ep_ring->cycle_state);
2316 }
2317
2318 /* Save the DMA address of the last TRB in the TD */
2319 td->last_trb = ep_ring->enqueue;
2320
2321 /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */
2322 /* If the device sent data, the status stage is an OUT transfer */
2323 if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN)
2324 field = 0;
2325 else
2326 field = TRB_DIR_IN;
2327 queue_trb(xhci, ep_ring, false,
2328 0,
2329 0,
2330 TRB_INTR_TARGET(0),
2331 /* Event on completion */
2332 field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state);
2333
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002334 giveback_first_trb(xhci, slot_id, ep_index, 0,
2335 start_cycle, start_trb, td);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002336 return 0;
2337}
2338
2339/**** Command Ring Operations ****/
2340
Sarah Sharp913a8a32009-09-04 10:53:13 -07002341/* Generic function for queueing a command TRB on the command ring.
2342 * Check to make sure there's room on the command ring for one command TRB.
2343 * Also check that there's room reserved for commands that must not fail.
2344 * If this is a command that must not fail, meaning command_must_succeed = TRUE,
2345 * then only check for the number of reserved spots.
2346 * Don't decrement xhci->cmd_ring_reserved_trbs after we've queued the TRB
2347 * because the command event handler may want to resubmit a failed command.
2348 */
2349static int queue_command(struct xhci_hcd *xhci, u32 field1, u32 field2,
2350 u32 field3, u32 field4, bool command_must_succeed)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002351{
Sarah Sharp913a8a32009-09-04 10:53:13 -07002352 int reserved_trbs = xhci->cmd_ring_reserved_trbs;
2353 if (!command_must_succeed)
2354 reserved_trbs++;
2355
2356 if (!room_on_ring(xhci, xhci->cmd_ring, reserved_trbs)) {
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002357 if (!in_interrupt())
2358 xhci_err(xhci, "ERR: No room for command on command ring\n");
Sarah Sharp913a8a32009-09-04 10:53:13 -07002359 if (command_must_succeed)
2360 xhci_err(xhci, "ERR: Reserved TRB counting for "
2361 "unfailable commands failed.\n");
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002362 return -ENOMEM;
2363 }
2364 queue_trb(xhci, xhci->cmd_ring, false, field1, field2, field3,
2365 field4 | xhci->cmd_ring->cycle_state);
2366 return 0;
2367}
2368
2369/* Queue a no-op command on the command ring */
2370static int queue_cmd_noop(struct xhci_hcd *xhci)
2371{
Sarah Sharp913a8a32009-09-04 10:53:13 -07002372 return queue_command(xhci, 0, 0, 0, TRB_TYPE(TRB_CMD_NOOP), false);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002373}
2374
2375/*
2376 * Place a no-op command on the command ring to test the command and
2377 * event ring.
2378 */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002379void *xhci_setup_one_noop(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002380{
2381 if (queue_cmd_noop(xhci) < 0)
2382 return NULL;
2383 xhci->noops_submitted++;
Sarah Sharp23e3be12009-04-29 19:05:20 -07002384 return xhci_ring_cmd_db;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002385}
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002386
2387/* Queue a slot enable or disable request on the command ring */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002388int xhci_queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002389{
2390 return queue_command(xhci, 0, 0, 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002391 TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id), false);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002392}
2393
2394/* Queue an address device command TRB */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002395int xhci_queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
2396 u32 slot_id)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002397{
Sarah Sharp8e595a52009-07-27 12:03:31 -07002398 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
2399 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002400 TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id),
2401 false);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002402}
Sarah Sharpf94e01862009-04-27 19:58:38 -07002403
Sarah Sharp02386342010-05-24 13:25:28 -07002404int xhci_queue_vendor_command(struct xhci_hcd *xhci,
2405 u32 field1, u32 field2, u32 field3, u32 field4)
2406{
2407 return queue_command(xhci, field1, field2, field3, field4, false);
2408}
2409
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08002410/* Queue a reset device command TRB */
2411int xhci_queue_reset_device(struct xhci_hcd *xhci, u32 slot_id)
2412{
2413 return queue_command(xhci, 0, 0, 0,
2414 TRB_TYPE(TRB_RESET_DEV) | SLOT_ID_FOR_TRB(slot_id),
2415 false);
2416}
2417
Sarah Sharpf94e01862009-04-27 19:58:38 -07002418/* Queue a configure endpoint command TRB */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002419int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002420 u32 slot_id, bool command_must_succeed)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002421{
Sarah Sharp8e595a52009-07-27 12:03:31 -07002422 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
2423 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002424 TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id),
2425 command_must_succeed);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002426}
Sarah Sharpae636742009-04-29 19:02:31 -07002427
Sarah Sharpf2217e82009-08-07 14:04:43 -07002428/* Queue an evaluate context command TRB */
2429int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
2430 u32 slot_id)
2431{
2432 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
2433 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002434 TRB_TYPE(TRB_EVAL_CONTEXT) | SLOT_ID_FOR_TRB(slot_id),
2435 false);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002436}
2437
Sarah Sharp23e3be12009-04-29 19:05:20 -07002438int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpae636742009-04-29 19:02:31 -07002439 unsigned int ep_index)
2440{
2441 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
2442 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
2443 u32 type = TRB_TYPE(TRB_STOP_RING);
2444
2445 return queue_command(xhci, 0, 0, 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002446 trb_slot_id | trb_ep_index | type, false);
Sarah Sharpae636742009-04-29 19:02:31 -07002447}
2448
2449/* Set Transfer Ring Dequeue Pointer command.
2450 * This should not be used for endpoints that have streams enabled.
2451 */
2452static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002453 unsigned int ep_index, unsigned int stream_id,
2454 struct xhci_segment *deq_seg,
Sarah Sharpae636742009-04-29 19:02:31 -07002455 union xhci_trb *deq_ptr, u32 cycle_state)
2456{
2457 dma_addr_t addr;
2458 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
2459 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002460 u32 trb_stream_id = STREAM_ID_FOR_TRB(stream_id);
Sarah Sharpae636742009-04-29 19:02:31 -07002461 u32 type = TRB_TYPE(TRB_SET_DEQ);
2462
Sarah Sharp23e3be12009-04-29 19:05:20 -07002463 addr = xhci_trb_virt_to_dma(deq_seg, deq_ptr);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002464 if (addr == 0) {
Sarah Sharpae636742009-04-29 19:02:31 -07002465 xhci_warn(xhci, "WARN Cannot submit Set TR Deq Ptr\n");
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002466 xhci_warn(xhci, "WARN deq seg = %p, deq pt = %p\n",
2467 deq_seg, deq_ptr);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002468 return 0;
2469 }
Sarah Sharp8e595a52009-07-27 12:03:31 -07002470 return queue_command(xhci, lower_32_bits(addr) | cycle_state,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002471 upper_32_bits(addr), trb_stream_id,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002472 trb_slot_id | trb_ep_index | type, false);
Sarah Sharpae636742009-04-29 19:02:31 -07002473}
Sarah Sharpa1587d92009-07-27 12:03:15 -07002474
2475int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id,
2476 unsigned int ep_index)
2477{
2478 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
2479 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
2480 u32 type = TRB_TYPE(TRB_RESET_EP);
2481
Sarah Sharp913a8a32009-09-04 10:53:13 -07002482 return queue_command(xhci, 0, 0, 0, trb_slot_id | trb_ep_index | type,
2483 false);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002484}