blob: da3519e76e2bb990937008c38f5ed5b12eec2e48 [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 Sharp6cc30d82010-06-10 12:25:28 -0700185 *
186 * @more_trbs_coming: Will you enqueue more TRBs before calling
187 * prepare_transfer()?
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700188 */
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700189static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring,
190 bool consumer, bool more_trbs_coming)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700191{
192 u32 chain;
193 union xhci_trb *next;
Sarah Sharp66e49d82009-07-27 12:03:46 -0700194 unsigned long long addr;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700195
196 chain = ring->enqueue->generic.field[3] & TRB_CHAIN;
197 next = ++(ring->enqueue);
198
199 ring->enq_updates++;
200 /* Update the dequeue pointer further if that was a link TRB or we're at
201 * the end of an event ring segment (which doesn't have link TRBS)
202 */
203 while (last_trb(xhci, ring, ring->enq_seg, next)) {
204 if (!consumer) {
205 if (ring != xhci->event_ring) {
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700206 /*
207 * If the caller doesn't plan on enqueueing more
208 * TDs before ringing the doorbell, then we
209 * don't want to give the link TRB to the
210 * hardware just yet. We'll give the link TRB
211 * back in prepare_ring() just before we enqueue
212 * the TD at the top of the ring.
213 */
214 if (!chain && !more_trbs_coming)
John Youn6c12db92010-05-10 15:33:00 -0700215 break;
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700216
217 /* If we're not dealing with 0.95 hardware,
218 * carry over the chain bit of the previous TRB
219 * (which may mean the chain bit is cleared).
220 */
221 if (!xhci_link_trb_quirk(xhci)) {
222 next->link.control &= ~TRB_CHAIN;
223 next->link.control |= chain;
Sarah Sharpb0567b32009-08-07 14:04:36 -0700224 }
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700225 /* Give this link TRB to the hardware */
226 wmb();
227 next->link.control ^= TRB_CYCLE;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700228 }
229 /* Toggle the cycle bit after the last ring segment. */
230 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
231 ring->cycle_state = (ring->cycle_state ? 0 : 1);
232 if (!in_interrupt())
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700233 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
234 ring,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700235 (unsigned int) ring->cycle_state);
236 }
237 }
238 ring->enq_seg = ring->enq_seg->next;
239 ring->enqueue = ring->enq_seg->trbs;
240 next = ring->enqueue;
241 }
Sarah Sharp66e49d82009-07-27 12:03:46 -0700242 addr = (unsigned long long) xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
243 if (ring == xhci->event_ring)
244 xhci_dbg(xhci, "Event ring enq = 0x%llx (DMA)\n", addr);
245 else if (ring == xhci->cmd_ring)
246 xhci_dbg(xhci, "Command ring enq = 0x%llx (DMA)\n", addr);
247 else
248 xhci_dbg(xhci, "Ring enq = 0x%llx (DMA)\n", addr);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700249}
250
251/*
252 * Check to see if there's room to enqueue num_trbs on the ring. See rules
253 * above.
254 * FIXME: this would be simpler and faster if we just kept track of the number
255 * of free TRBs in a ring.
256 */
257static int room_on_ring(struct xhci_hcd *xhci, struct xhci_ring *ring,
258 unsigned int num_trbs)
259{
260 int i;
261 union xhci_trb *enq = ring->enqueue;
262 struct xhci_segment *enq_seg = ring->enq_seg;
Sarah Sharp44ebd032010-05-18 16:05:26 -0700263 struct xhci_segment *cur_seg;
264 unsigned int left_on_ring;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700265
John Youn6c12db92010-05-10 15:33:00 -0700266 /* If we are currently pointing to a link TRB, advance the
267 * enqueue pointer before checking for space */
268 while (last_trb(xhci, ring, enq_seg, enq)) {
269 enq_seg = enq_seg->next;
270 enq = enq_seg->trbs;
271 }
272
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700273 /* Check if ring is empty */
Sarah Sharp44ebd032010-05-18 16:05:26 -0700274 if (enq == ring->dequeue) {
275 /* Can't use link trbs */
276 left_on_ring = TRBS_PER_SEGMENT - 1;
277 for (cur_seg = enq_seg->next; cur_seg != enq_seg;
278 cur_seg = cur_seg->next)
279 left_on_ring += TRBS_PER_SEGMENT - 1;
280
281 /* Always need one TRB free in the ring. */
282 left_on_ring -= 1;
283 if (num_trbs > left_on_ring) {
284 xhci_warn(xhci, "Not enough room on ring; "
285 "need %u TRBs, %u TRBs left\n",
286 num_trbs, left_on_ring);
287 return 0;
288 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700289 return 1;
Sarah Sharp44ebd032010-05-18 16:05:26 -0700290 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700291 /* Make sure there's an extra empty TRB available */
292 for (i = 0; i <= num_trbs; ++i) {
293 if (enq == ring->dequeue)
294 return 0;
295 enq++;
296 while (last_trb(xhci, ring, enq_seg, enq)) {
297 enq_seg = enq_seg->next;
298 enq = enq_seg->trbs;
299 }
300 }
301 return 1;
302}
303
Sarah Sharp23e3be12009-04-29 19:05:20 -0700304void xhci_set_hc_event_deq(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700305{
Sarah Sharp8e595a52009-07-27 12:03:31 -0700306 u64 temp;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700307 dma_addr_t deq;
308
Sarah Sharp23e3be12009-04-29 19:05:20 -0700309 deq = xhci_trb_virt_to_dma(xhci->event_ring->deq_seg,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700310 xhci->event_ring->dequeue);
311 if (deq == 0 && !in_interrupt())
312 xhci_warn(xhci, "WARN something wrong with SW event ring "
313 "dequeue ptr.\n");
314 /* Update HC event ring dequeue pointer */
Sarah Sharp8e595a52009-07-27 12:03:31 -0700315 temp = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700316 temp &= ERST_PTR_MASK;
Sarah Sharp2d831092009-07-27 12:03:40 -0700317 /* Don't clear the EHB bit (which is RW1C) because
318 * there might be more events to service.
319 */
320 temp &= ~ERST_EHB;
Sarah Sharp66e49d82009-07-27 12:03:46 -0700321 xhci_dbg(xhci, "// Write event ring dequeue pointer, preserving EHB bit\n");
Sarah Sharp8e595a52009-07-27 12:03:31 -0700322 xhci_write_64(xhci, ((u64) deq & (u64) ~ERST_PTR_MASK) | temp,
323 &xhci->ir_set->erst_dequeue);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700324}
325
326/* Ring the host controller doorbell after placing a command on the ring */
Sarah Sharp23e3be12009-04-29 19:05:20 -0700327void xhci_ring_cmd_db(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700328{
329 u32 temp;
330
331 xhci_dbg(xhci, "// Ding dong!\n");
332 temp = xhci_readl(xhci, &xhci->dba->doorbell[0]) & DB_MASK;
333 xhci_writel(xhci, temp | DB_TARGET_HOST, &xhci->dba->doorbell[0]);
334 /* Flush PCI posted writes */
335 xhci_readl(xhci, &xhci->dba->doorbell[0]);
336}
337
Sarah Sharpae636742009-04-29 19:02:31 -0700338static void ring_ep_doorbell(struct xhci_hcd *xhci,
339 unsigned int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700340 unsigned int ep_index,
341 unsigned int stream_id)
Sarah Sharpae636742009-04-29 19:02:31 -0700342{
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700343 struct xhci_virt_ep *ep;
344 unsigned int ep_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700345 u32 field;
346 __u32 __iomem *db_addr = &xhci->dba->doorbell[slot_id];
347
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700348 ep = &xhci->devs[slot_id]->eps[ep_index];
349 ep_state = ep->ep_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700350 /* Don't ring the doorbell for this endpoint if there are pending
351 * cancellations because the we don't want to interrupt processing.
Sarah Sharp8df75f42010-04-02 15:34:16 -0700352 * We don't want to restart any stream rings if there's a set dequeue
353 * pointer command pending because the device can choose to start any
354 * stream once the endpoint is on the HW schedule.
355 * FIXME - check all the stream rings for pending cancellations.
Sarah Sharpae636742009-04-29 19:02:31 -0700356 */
Sarah Sharp678539c2009-10-27 10:55:52 -0700357 if (!(ep_state & EP_HALT_PENDING) && !(ep_state & SET_DEQ_PENDING)
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700358 && !(ep_state & EP_HALTED)) {
Sarah Sharpae636742009-04-29 19:02:31 -0700359 field = xhci_readl(xhci, db_addr) & DB_MASK;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700360 field |= EPI_TO_DB(ep_index) | STREAM_ID_TO_DB(stream_id);
361 xhci_writel(xhci, field, db_addr);
Sarah Sharpae636742009-04-29 19:02:31 -0700362 /* Flush PCI posted writes - FIXME Matthew Wilcox says this
363 * isn't time-critical and we shouldn't make the CPU wait for
364 * the flush.
365 */
366 xhci_readl(xhci, db_addr);
367 }
368}
369
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700370/* Ring the doorbell for any rings with pending URBs */
371static void ring_doorbell_for_active_rings(struct xhci_hcd *xhci,
372 unsigned int slot_id,
373 unsigned int ep_index)
374{
375 unsigned int stream_id;
376 struct xhci_virt_ep *ep;
377
378 ep = &xhci->devs[slot_id]->eps[ep_index];
379
380 /* A ring has pending URBs if its TD list is not empty */
381 if (!(ep->ep_state & EP_HAS_STREAMS)) {
382 if (!(list_empty(&ep->ring->td_list)))
383 ring_ep_doorbell(xhci, slot_id, ep_index, 0);
384 return;
385 }
386
387 for (stream_id = 1; stream_id < ep->stream_info->num_streams;
388 stream_id++) {
389 struct xhci_stream_info *stream_info = ep->stream_info;
390 if (!list_empty(&stream_info->stream_rings[stream_id]->td_list))
391 ring_ep_doorbell(xhci, slot_id, ep_index, stream_id);
392 }
393}
394
Sarah Sharpae636742009-04-29 19:02:31 -0700395/*
396 * Find the segment that trb is in. Start searching in start_seg.
397 * If we must move past a segment that has a link TRB with a toggle cycle state
398 * bit set, then we will toggle the value pointed at by cycle_state.
399 */
400static struct xhci_segment *find_trb_seg(
401 struct xhci_segment *start_seg,
402 union xhci_trb *trb, int *cycle_state)
403{
404 struct xhci_segment *cur_seg = start_seg;
405 struct xhci_generic_trb *generic_trb;
406
407 while (cur_seg->trbs > trb ||
408 &cur_seg->trbs[TRBS_PER_SEGMENT - 1] < trb) {
409 generic_trb = &cur_seg->trbs[TRBS_PER_SEGMENT - 1].generic;
Andiry Xu54b5acf2010-05-10 19:57:17 -0700410 if ((generic_trb->field[3] & TRB_TYPE_BITMASK) ==
411 TRB_TYPE(TRB_LINK) &&
Sarah Sharpae636742009-04-29 19:02:31 -0700412 (generic_trb->field[3] & LINK_TOGGLE))
413 *cycle_state = ~(*cycle_state) & 0x1;
414 cur_seg = cur_seg->next;
415 if (cur_seg == start_seg)
416 /* Looped over the entire list. Oops! */
Randy Dunlap326b4812010-04-19 08:53:50 -0700417 return NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700418 }
419 return cur_seg;
420}
421
Sarah Sharpae636742009-04-29 19:02:31 -0700422/*
423 * Move the xHC's endpoint ring dequeue pointer past cur_td.
424 * Record the new state of the xHC's endpoint ring dequeue segment,
425 * dequeue pointer, and new consumer cycle state in state.
426 * Update our internal representation of the ring's dequeue pointer.
427 *
428 * We do this in three jumps:
429 * - First we update our new ring state to be the same as when the xHC stopped.
430 * - Then we traverse the ring to find the segment that contains
431 * the last TRB in the TD. We toggle the xHC's new cycle state when we pass
432 * any link TRBs with the toggle cycle bit set.
433 * - Finally we move the dequeue state one TRB further, toggling the cycle bit
434 * if we've moved it past a link TRB with the toggle cycle bit set.
435 */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700436void xhci_find_new_dequeue_state(struct xhci_hcd *xhci,
Sarah Sharpae636742009-04-29 19:02:31 -0700437 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700438 unsigned int stream_id, struct xhci_td *cur_td,
439 struct xhci_dequeue_state *state)
Sarah Sharpae636742009-04-29 19:02:31 -0700440{
441 struct xhci_virt_device *dev = xhci->devs[slot_id];
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700442 struct xhci_ring *ep_ring;
Sarah Sharpae636742009-04-29 19:02:31 -0700443 struct xhci_generic_trb *trb;
John Yound115b042009-07-27 12:05:15 -0700444 struct xhci_ep_ctx *ep_ctx;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700445 dma_addr_t addr;
Sarah Sharpae636742009-04-29 19:02:31 -0700446
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700447 ep_ring = xhci_triad_to_transfer_ring(xhci, slot_id,
448 ep_index, stream_id);
449 if (!ep_ring) {
450 xhci_warn(xhci, "WARN can't find new dequeue state "
451 "for invalid stream ID %u.\n",
452 stream_id);
453 return;
454 }
Sarah Sharpae636742009-04-29 19:02:31 -0700455 state->new_cycle_state = 0;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700456 xhci_dbg(xhci, "Finding segment containing stopped TRB.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700457 state->new_deq_seg = find_trb_seg(cur_td->start_seg,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700458 dev->eps[ep_index].stopped_trb,
Sarah Sharpae636742009-04-29 19:02:31 -0700459 &state->new_cycle_state);
460 if (!state->new_deq_seg)
461 BUG();
462 /* Dig out the cycle state saved by the xHC during the stop ep cmd */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700463 xhci_dbg(xhci, "Finding endpoint context\n");
John Yound115b042009-07-27 12:05:15 -0700464 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
465 state->new_cycle_state = 0x1 & ep_ctx->deq;
Sarah Sharpae636742009-04-29 19:02:31 -0700466
467 state->new_deq_ptr = cur_td->last_trb;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700468 xhci_dbg(xhci, "Finding segment containing last TRB in TD.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700469 state->new_deq_seg = find_trb_seg(state->new_deq_seg,
470 state->new_deq_ptr,
471 &state->new_cycle_state);
472 if (!state->new_deq_seg)
473 BUG();
474
475 trb = &state->new_deq_ptr->generic;
Andiry Xu54b5acf2010-05-10 19:57:17 -0700476 if ((trb->field[3] & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK) &&
Sarah Sharpae636742009-04-29 19:02:31 -0700477 (trb->field[3] & LINK_TOGGLE))
478 state->new_cycle_state = ~(state->new_cycle_state) & 0x1;
479 next_trb(xhci, ep_ring, &state->new_deq_seg, &state->new_deq_ptr);
480
481 /* Don't update the ring cycle state for the producer (us). */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700482 xhci_dbg(xhci, "New dequeue segment = %p (virtual)\n",
483 state->new_deq_seg);
484 addr = xhci_trb_virt_to_dma(state->new_deq_seg, state->new_deq_ptr);
485 xhci_dbg(xhci, "New dequeue pointer = 0x%llx (DMA)\n",
486 (unsigned long long) addr);
487 xhci_dbg(xhci, "Setting dequeue pointer in internal ring state.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700488 ep_ring->dequeue = state->new_deq_ptr;
489 ep_ring->deq_seg = state->new_deq_seg;
490}
491
Sarah Sharp23e3be12009-04-29 19:05:20 -0700492static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
Sarah Sharpae636742009-04-29 19:02:31 -0700493 struct xhci_td *cur_td)
494{
495 struct xhci_segment *cur_seg;
496 union xhci_trb *cur_trb;
497
498 for (cur_seg = cur_td->start_seg, cur_trb = cur_td->first_trb;
499 true;
500 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
501 if ((cur_trb->generic.field[3] & TRB_TYPE_BITMASK) ==
502 TRB_TYPE(TRB_LINK)) {
503 /* Unchain any chained Link TRBs, but
504 * leave the pointers intact.
505 */
506 cur_trb->generic.field[3] &= ~TRB_CHAIN;
507 xhci_dbg(xhci, "Cancel (unchain) link TRB\n");
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700508 xhci_dbg(xhci, "Address = %p (0x%llx dma); "
509 "in seg %p (0x%llx dma)\n",
510 cur_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700511 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700512 cur_seg,
513 (unsigned long long)cur_seg->dma);
Sarah Sharpae636742009-04-29 19:02:31 -0700514 } else {
515 cur_trb->generic.field[0] = 0;
516 cur_trb->generic.field[1] = 0;
517 cur_trb->generic.field[2] = 0;
518 /* Preserve only the cycle bit of this TRB */
519 cur_trb->generic.field[3] &= TRB_CYCLE;
520 cur_trb->generic.field[3] |= TRB_TYPE(TRB_TR_NOOP);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700521 xhci_dbg(xhci, "Cancel TRB %p (0x%llx dma) "
522 "in seg %p (0x%llx dma)\n",
523 cur_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700524 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700525 cur_seg,
526 (unsigned long long)cur_seg->dma);
Sarah Sharpae636742009-04-29 19:02:31 -0700527 }
528 if (cur_trb == cur_td->last_trb)
529 break;
530 }
531}
532
533static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700534 unsigned int ep_index, unsigned int stream_id,
535 struct xhci_segment *deq_seg,
Sarah Sharpae636742009-04-29 19:02:31 -0700536 union xhci_trb *deq_ptr, u32 cycle_state);
537
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700538void xhci_queue_new_dequeue_state(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700539 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700540 unsigned int stream_id,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700541 struct xhci_dequeue_state *deq_state)
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700542{
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700543 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
544
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700545 xhci_dbg(xhci, "Set TR Deq Ptr cmd, new deq seg = %p (0x%llx dma), "
546 "new deq ptr = %p (0x%llx dma), new cycle = %u\n",
547 deq_state->new_deq_seg,
548 (unsigned long long)deq_state->new_deq_seg->dma,
549 deq_state->new_deq_ptr,
550 (unsigned long long)xhci_trb_virt_to_dma(deq_state->new_deq_seg, deq_state->new_deq_ptr),
551 deq_state->new_cycle_state);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700552 queue_set_tr_deq(xhci, slot_id, ep_index, stream_id,
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700553 deq_state->new_deq_seg,
554 deq_state->new_deq_ptr,
555 (u32) deq_state->new_cycle_state);
556 /* Stop the TD queueing code from ringing the doorbell until
557 * this command completes. The HC won't set the dequeue pointer
558 * if the ring is running, and ringing the doorbell starts the
559 * ring running.
560 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700561 ep->ep_state |= SET_DEQ_PENDING;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700562}
563
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700564static inline void xhci_stop_watchdog_timer_in_irq(struct xhci_hcd *xhci,
565 struct xhci_virt_ep *ep)
566{
567 ep->ep_state &= ~EP_HALT_PENDING;
568 /* Can't del_timer_sync in interrupt, so we attempt to cancel. If the
569 * timer is running on another CPU, we don't decrement stop_cmds_pending
570 * (since we didn't successfully stop the watchdog timer).
571 */
572 if (del_timer(&ep->stop_cmd_timer))
573 ep->stop_cmds_pending--;
574}
575
576/* Must be called with xhci->lock held in interrupt context */
577static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci,
578 struct xhci_td *cur_td, int status, char *adjective)
579{
580 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Andiry Xu8e51adc2010-07-22 15:23:31 -0700581 struct urb *urb;
582 struct urb_priv *urb_priv;
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700583
Andiry Xu8e51adc2010-07-22 15:23:31 -0700584 urb = cur_td->urb;
585 urb_priv = urb->hcpriv;
586 urb_priv->td_cnt++;
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700587
Andiry Xu8e51adc2010-07-22 15:23:31 -0700588 /* Only giveback urb when this is the last td in urb */
589 if (urb_priv->td_cnt == urb_priv->length) {
590 usb_hcd_unlink_urb_from_ep(hcd, urb);
591 xhci_dbg(xhci, "Giveback %s URB %p\n", adjective, urb);
592
593 spin_unlock(&xhci->lock);
594 usb_hcd_giveback_urb(hcd, urb, status);
595 xhci_urb_free_priv(xhci, urb_priv);
596 spin_lock(&xhci->lock);
597 xhci_dbg(xhci, "%s URB given back\n", adjective);
598 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700599}
600
Sarah Sharpae636742009-04-29 19:02:31 -0700601/*
602 * When we get a command completion for a Stop Endpoint Command, we need to
603 * unlink any cancelled TDs from the ring. There are two ways to do that:
604 *
605 * 1. If the HW was in the middle of processing the TD that needs to be
606 * cancelled, then we must move the ring's dequeue pointer past the last TRB
607 * in the TD with a Set Dequeue Pointer Command.
608 * 2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain
609 * bit cleared) so that the HW will skip over them.
610 */
611static void handle_stopped_endpoint(struct xhci_hcd *xhci,
612 union xhci_trb *trb)
613{
614 unsigned int slot_id;
615 unsigned int ep_index;
616 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700617 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -0700618 struct list_head *entry;
Randy Dunlap326b4812010-04-19 08:53:50 -0700619 struct xhci_td *cur_td = NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700620 struct xhci_td *last_unlinked_td;
621
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700622 struct xhci_dequeue_state deq_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700623
624 memset(&deq_state, 0, sizeof(deq_state));
625 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
626 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700627 ep = &xhci->devs[slot_id]->eps[ep_index];
Sarah Sharpae636742009-04-29 19:02:31 -0700628
Sarah Sharp678539c2009-10-27 10:55:52 -0700629 if (list_empty(&ep->cancelled_td_list)) {
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700630 xhci_stop_watchdog_timer_in_irq(xhci, ep);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700631 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700632 return;
Sarah Sharp678539c2009-10-27 10:55:52 -0700633 }
Sarah Sharpae636742009-04-29 19:02:31 -0700634
635 /* Fix up the ep ring first, so HW stops executing cancelled TDs.
636 * We have the xHCI lock, so nothing can modify this list until we drop
637 * it. We're also in the event handler, so we can't get re-interrupted
638 * if another Stop Endpoint command completes
639 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700640 list_for_each(entry, &ep->cancelled_td_list) {
Sarah Sharpae636742009-04-29 19:02:31 -0700641 cur_td = list_entry(entry, struct xhci_td, cancelled_td_list);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700642 xhci_dbg(xhci, "Cancelling TD starting at %p, 0x%llx (dma).\n",
643 cur_td->first_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700644 (unsigned long long)xhci_trb_virt_to_dma(cur_td->start_seg, cur_td->first_trb));
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700645 ep_ring = xhci_urb_to_transfer_ring(xhci, cur_td->urb);
646 if (!ep_ring) {
647 /* This shouldn't happen unless a driver is mucking
648 * with the stream ID after submission. This will
649 * leave the TD on the hardware ring, and the hardware
650 * will try to execute it, and may access a buffer
651 * that has already been freed. In the best case, the
652 * hardware will execute it, and the event handler will
653 * ignore the completion event for that TD, since it was
654 * removed from the td_list for that endpoint. In
655 * short, don't muck with the stream ID after
656 * submission.
657 */
658 xhci_warn(xhci, "WARN Cancelled URB %p "
659 "has invalid stream ID %u.\n",
660 cur_td->urb,
661 cur_td->urb->stream_id);
662 goto remove_finished_td;
663 }
Sarah Sharpae636742009-04-29 19:02:31 -0700664 /*
665 * If we stopped on the TD we need to cancel, then we have to
666 * move the xHC endpoint ring dequeue pointer past this TD.
667 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700668 if (cur_td == ep->stopped_td)
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700669 xhci_find_new_dequeue_state(xhci, slot_id, ep_index,
670 cur_td->urb->stream_id,
671 cur_td, &deq_state);
Sarah Sharpae636742009-04-29 19:02:31 -0700672 else
673 td_to_noop(xhci, ep_ring, cur_td);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700674remove_finished_td:
Sarah Sharpae636742009-04-29 19:02:31 -0700675 /*
676 * The event handler won't see a completion for this TD anymore,
677 * so remove it from the endpoint ring's TD list. Keep it in
678 * the cancelled TD list for URB completion later.
679 */
680 list_del(&cur_td->td_list);
Sarah Sharpae636742009-04-29 19:02:31 -0700681 }
682 last_unlinked_td = cur_td;
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700683 xhci_stop_watchdog_timer_in_irq(xhci, ep);
Sarah Sharpae636742009-04-29 19:02:31 -0700684
685 /* If necessary, queue a Set Transfer Ring Dequeue Pointer command */
686 if (deq_state.new_deq_ptr && deq_state.new_deq_seg) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700687 xhci_queue_new_dequeue_state(xhci,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700688 slot_id, ep_index,
689 ep->stopped_td->urb->stream_id,
690 &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700691 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -0700692 } else {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700693 /* Otherwise ring the doorbell(s) to restart queued transfers */
694 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700695 }
Sarah Sharp1624ae12010-05-06 13:40:08 -0700696 ep->stopped_td = NULL;
697 ep->stopped_trb = NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700698
699 /*
700 * Drop the lock and complete the URBs in the cancelled TD list.
701 * New TDs to be cancelled might be added to the end of the list before
702 * we can complete all the URBs for the TDs we already unlinked.
703 * So stop when we've completed the URB for the last TD we unlinked.
704 */
705 do {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700706 cur_td = list_entry(ep->cancelled_td_list.next,
Sarah Sharpae636742009-04-29 19:02:31 -0700707 struct xhci_td, cancelled_td_list);
708 list_del(&cur_td->cancelled_td_list);
709
710 /* Clean up the cancelled URB */
Sarah Sharpae636742009-04-29 19:02:31 -0700711 /* Doesn't matter what we pass for status, since the core will
712 * just overwrite it (because the URB has been unlinked).
713 */
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700714 xhci_giveback_urb_in_irq(xhci, cur_td, 0, "cancelled");
Sarah Sharpae636742009-04-29 19:02:31 -0700715
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700716 /* Stop processing the cancelled list if the watchdog timer is
717 * running.
718 */
719 if (xhci->xhc_state & XHCI_STATE_DYING)
720 return;
Sarah Sharpae636742009-04-29 19:02:31 -0700721 } while (cur_td != last_unlinked_td);
722
723 /* Return to the event handler with xhci->lock re-acquired */
724}
725
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700726/* Watchdog timer function for when a stop endpoint command fails to complete.
727 * In this case, we assume the host controller is broken or dying or dead. The
728 * host may still be completing some other events, so we have to be careful to
729 * let the event ring handler and the URB dequeueing/enqueueing functions know
730 * through xhci->state.
731 *
732 * The timer may also fire if the host takes a very long time to respond to the
733 * command, and the stop endpoint command completion handler cannot delete the
734 * timer before the timer function is called. Another endpoint cancellation may
735 * sneak in before the timer function can grab the lock, and that may queue
736 * another stop endpoint command and add the timer back. So we cannot use a
737 * simple flag to say whether there is a pending stop endpoint command for a
738 * particular endpoint.
739 *
740 * Instead we use a combination of that flag and a counter for the number of
741 * pending stop endpoint commands. If the timer is the tail end of the last
742 * stop endpoint command, and the endpoint's command is still pending, we assume
743 * the host is dying.
744 */
745void xhci_stop_endpoint_command_watchdog(unsigned long arg)
746{
747 struct xhci_hcd *xhci;
748 struct xhci_virt_ep *ep;
749 struct xhci_virt_ep *temp_ep;
750 struct xhci_ring *ring;
751 struct xhci_td *cur_td;
752 int ret, i, j;
753
754 ep = (struct xhci_virt_ep *) arg;
755 xhci = ep->xhci;
756
757 spin_lock(&xhci->lock);
758
759 ep->stop_cmds_pending--;
760 if (xhci->xhc_state & XHCI_STATE_DYING) {
761 xhci_dbg(xhci, "Stop EP timer ran, but another timer marked "
762 "xHCI as DYING, exiting.\n");
763 spin_unlock(&xhci->lock);
764 return;
765 }
766 if (!(ep->stop_cmds_pending == 0 && (ep->ep_state & EP_HALT_PENDING))) {
767 xhci_dbg(xhci, "Stop EP timer ran, but no command pending, "
768 "exiting.\n");
769 spin_unlock(&xhci->lock);
770 return;
771 }
772
773 xhci_warn(xhci, "xHCI host not responding to stop endpoint command.\n");
774 xhci_warn(xhci, "Assuming host is dying, halting host.\n");
775 /* Oops, HC is dead or dying or at least not responding to the stop
776 * endpoint command.
777 */
778 xhci->xhc_state |= XHCI_STATE_DYING;
779 /* Disable interrupts from the host controller and start halting it */
780 xhci_quiesce(xhci);
781 spin_unlock(&xhci->lock);
782
783 ret = xhci_halt(xhci);
784
785 spin_lock(&xhci->lock);
786 if (ret < 0) {
787 /* This is bad; the host is not responding to commands and it's
788 * not allowing itself to be halted. At least interrupts are
789 * disabled, so we can set HC_STATE_HALT and notify the
790 * USB core. But if we call usb_hc_died(), it will attempt to
791 * disconnect all device drivers under this host. Those
792 * disconnect() methods will wait for all URBs to be unlinked,
793 * so we must complete them.
794 */
795 xhci_warn(xhci, "Non-responsive xHCI host is not halting.\n");
796 xhci_warn(xhci, "Completing active URBs anyway.\n");
797 /* We could turn all TDs on the rings to no-ops. This won't
798 * help if the host has cached part of the ring, and is slow if
799 * we want to preserve the cycle bit. Skip it and hope the host
800 * doesn't touch the memory.
801 */
802 }
803 for (i = 0; i < MAX_HC_SLOTS; i++) {
804 if (!xhci->devs[i])
805 continue;
806 for (j = 0; j < 31; j++) {
807 temp_ep = &xhci->devs[i]->eps[j];
808 ring = temp_ep->ring;
809 if (!ring)
810 continue;
811 xhci_dbg(xhci, "Killing URBs for slot ID %u, "
812 "ep index %u\n", i, j);
813 while (!list_empty(&ring->td_list)) {
814 cur_td = list_first_entry(&ring->td_list,
815 struct xhci_td,
816 td_list);
817 list_del(&cur_td->td_list);
818 if (!list_empty(&cur_td->cancelled_td_list))
819 list_del(&cur_td->cancelled_td_list);
820 xhci_giveback_urb_in_irq(xhci, cur_td,
821 -ESHUTDOWN, "killed");
822 }
823 while (!list_empty(&temp_ep->cancelled_td_list)) {
824 cur_td = list_first_entry(
825 &temp_ep->cancelled_td_list,
826 struct xhci_td,
827 cancelled_td_list);
828 list_del(&cur_td->cancelled_td_list);
829 xhci_giveback_urb_in_irq(xhci, cur_td,
830 -ESHUTDOWN, "killed");
831 }
832 }
833 }
834 spin_unlock(&xhci->lock);
835 xhci_to_hcd(xhci)->state = HC_STATE_HALT;
836 xhci_dbg(xhci, "Calling usb_hc_died()\n");
837 usb_hc_died(xhci_to_hcd(xhci));
838 xhci_dbg(xhci, "xHCI host controller is dead.\n");
839}
840
Sarah Sharpae636742009-04-29 19:02:31 -0700841/*
842 * When we get a completion for a Set Transfer Ring Dequeue Pointer command,
843 * we need to clear the set deq pending flag in the endpoint ring state, so that
844 * the TD queueing code can ring the doorbell again. We also need to ring the
845 * endpoint doorbell to restart the ring, but only if there aren't more
846 * cancellations pending.
847 */
848static void handle_set_deq_completion(struct xhci_hcd *xhci,
849 struct xhci_event_cmd *event,
850 union xhci_trb *trb)
851{
852 unsigned int slot_id;
853 unsigned int ep_index;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700854 unsigned int stream_id;
Sarah Sharpae636742009-04-29 19:02:31 -0700855 struct xhci_ring *ep_ring;
856 struct xhci_virt_device *dev;
John Yound115b042009-07-27 12:05:15 -0700857 struct xhci_ep_ctx *ep_ctx;
858 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpae636742009-04-29 19:02:31 -0700859
860 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
861 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700862 stream_id = TRB_TO_STREAM_ID(trb->generic.field[2]);
Sarah Sharpae636742009-04-29 19:02:31 -0700863 dev = xhci->devs[slot_id];
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700864
865 ep_ring = xhci_stream_id_to_ring(dev, ep_index, stream_id);
866 if (!ep_ring) {
867 xhci_warn(xhci, "WARN Set TR deq ptr command for "
868 "freed stream ID %u\n",
869 stream_id);
870 /* XXX: Harmless??? */
871 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
872 return;
873 }
874
John Yound115b042009-07-27 12:05:15 -0700875 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
876 slot_ctx = xhci_get_slot_ctx(xhci, dev->out_ctx);
Sarah Sharpae636742009-04-29 19:02:31 -0700877
878 if (GET_COMP_CODE(event->status) != COMP_SUCCESS) {
879 unsigned int ep_state;
880 unsigned int slot_state;
881
882 switch (GET_COMP_CODE(event->status)) {
883 case COMP_TRB_ERR:
884 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because "
885 "of stream ID configuration\n");
886 break;
887 case COMP_CTX_STATE:
888 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due "
889 "to incorrect slot or ep state.\n");
John Yound115b042009-07-27 12:05:15 -0700890 ep_state = ep_ctx->ep_info;
Sarah Sharpae636742009-04-29 19:02:31 -0700891 ep_state &= EP_STATE_MASK;
John Yound115b042009-07-27 12:05:15 -0700892 slot_state = slot_ctx->dev_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700893 slot_state = GET_SLOT_STATE(slot_state);
894 xhci_dbg(xhci, "Slot state = %u, EP state = %u\n",
895 slot_state, ep_state);
896 break;
897 case COMP_EBADSLT:
898 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because "
899 "slot %u was not enabled.\n", slot_id);
900 break;
901 default:
902 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown "
903 "completion code of %u.\n",
904 GET_COMP_CODE(event->status));
905 break;
906 }
907 /* OK what do we do now? The endpoint state is hosed, and we
908 * should never get to this point if the synchronization between
909 * queueing, and endpoint state are correct. This might happen
910 * if the device gets disconnected after we've finished
911 * cancelling URBs, which might not be an error...
912 */
913 } else {
Sarah Sharp8e595a52009-07-27 12:03:31 -0700914 xhci_dbg(xhci, "Successful Set TR Deq Ptr cmd, deq = @%08llx\n",
John Yound115b042009-07-27 12:05:15 -0700915 ep_ctx->deq);
Sarah Sharpae636742009-04-29 19:02:31 -0700916 }
917
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700918 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700919 /* Restart any rings with pending URBs */
920 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700921}
922
Sarah Sharpa1587d92009-07-27 12:03:15 -0700923static void handle_reset_ep_completion(struct xhci_hcd *xhci,
924 struct xhci_event_cmd *event,
925 union xhci_trb *trb)
926{
927 int slot_id;
928 unsigned int ep_index;
929
930 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
931 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
932 /* This command will only fail if the endpoint wasn't halted,
933 * but we don't care.
934 */
935 xhci_dbg(xhci, "Ignoring reset ep completion code of %u\n",
936 (unsigned int) GET_COMP_CODE(event->status));
937
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700938 /* HW with the reset endpoint quirk needs to have a configure endpoint
939 * command complete before the endpoint can be used. Queue that here
940 * because the HW can't handle two commands being queued in a row.
941 */
942 if (xhci->quirks & XHCI_RESET_EP_QUIRK) {
943 xhci_dbg(xhci, "Queueing configure endpoint command\n");
944 xhci_queue_configure_endpoint(xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -0700945 xhci->devs[slot_id]->in_ctx->dma, slot_id,
946 false);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700947 xhci_ring_cmd_db(xhci);
948 } else {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700949 /* Clear our internal halted state and restart the ring(s) */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700950 xhci->devs[slot_id]->eps[ep_index].ep_state &= ~EP_HALTED;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700951 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700952 }
Sarah Sharpa1587d92009-07-27 12:03:15 -0700953}
Sarah Sharpae636742009-04-29 19:02:31 -0700954
Sarah Sharpa50c8aa2009-09-04 10:53:15 -0700955/* Check to see if a command in the device's command queue matches this one.
956 * Signal the completion or free the command, and return 1. Return 0 if the
957 * completed command isn't at the head of the command list.
958 */
959static int handle_cmd_in_cmd_wait_list(struct xhci_hcd *xhci,
960 struct xhci_virt_device *virt_dev,
961 struct xhci_event_cmd *event)
962{
963 struct xhci_command *command;
964
965 if (list_empty(&virt_dev->cmd_list))
966 return 0;
967
968 command = list_entry(virt_dev->cmd_list.next,
969 struct xhci_command, cmd_list);
970 if (xhci->cmd_ring->dequeue != command->command_trb)
971 return 0;
972
973 command->status =
974 GET_COMP_CODE(event->status);
975 list_del(&command->cmd_list);
976 if (command->completion)
977 complete(command->completion);
978 else
979 xhci_free_command(xhci, command);
980 return 1;
981}
982
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700983static void handle_cmd_completion(struct xhci_hcd *xhci,
984 struct xhci_event_cmd *event)
985{
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700986 int slot_id = TRB_TO_SLOT_ID(event->flags);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700987 u64 cmd_dma;
988 dma_addr_t cmd_dequeue_dma;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700989 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -0700990 struct xhci_virt_device *virt_dev;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700991 unsigned int ep_index;
992 struct xhci_ring *ep_ring;
993 unsigned int ep_state;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700994
Sarah Sharp8e595a52009-07-27 12:03:31 -0700995 cmd_dma = event->cmd_trb;
Sarah Sharp23e3be12009-04-29 19:05:20 -0700996 cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700997 xhci->cmd_ring->dequeue);
998 /* Is the command ring deq ptr out of sync with the deq seg ptr? */
999 if (cmd_dequeue_dma == 0) {
1000 xhci->error_bitmask |= 1 << 4;
1001 return;
1002 }
1003 /* Does the DMA address match our internal dequeue pointer address? */
1004 if (cmd_dma != (u64) cmd_dequeue_dma) {
1005 xhci->error_bitmask |= 1 << 5;
1006 return;
1007 }
1008 switch (xhci->cmd_ring->dequeue->generic.field[3] & TRB_TYPE_BITMASK) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001009 case TRB_TYPE(TRB_ENABLE_SLOT):
1010 if (GET_COMP_CODE(event->status) == COMP_SUCCESS)
1011 xhci->slot_id = slot_id;
1012 else
1013 xhci->slot_id = 0;
1014 complete(&xhci->addr_dev);
1015 break;
1016 case TRB_TYPE(TRB_DISABLE_SLOT):
1017 if (xhci->devs[slot_id])
1018 xhci_free_virt_device(xhci, slot_id);
1019 break;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001020 case TRB_TYPE(TRB_CONFIG_EP):
Sarah Sharp913a8a32009-09-04 10:53:13 -07001021 virt_dev = xhci->devs[slot_id];
Sarah Sharpa50c8aa2009-09-04 10:53:15 -07001022 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
Sarah Sharp913a8a32009-09-04 10:53:13 -07001023 break;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001024 /*
1025 * Configure endpoint commands can come from the USB core
1026 * configuration or alt setting changes, or because the HW
1027 * needed an extra configure endpoint command after a reset
Sarah Sharp8df75f42010-04-02 15:34:16 -07001028 * endpoint command or streams were being configured.
1029 * If the command was for a halted endpoint, the xHCI driver
1030 * is not waiting on the configure endpoint command.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001031 */
1032 ctrl_ctx = xhci_get_input_control_ctx(xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001033 virt_dev->in_ctx);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001034 /* Input ctx add_flags are the endpoint index plus one */
1035 ep_index = xhci_last_valid_endpoint(ctrl_ctx->add_flags) - 1;
Sarah Sharp06df5722009-12-03 09:44:31 -08001036 /* A usb_set_interface() call directly after clearing a halted
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001037 * condition may race on this quirky hardware. Not worth
1038 * worrying about, since this is prototype hardware. Not sure
1039 * if this will work for streams, but streams support was
1040 * untested on this prototype.
Sarah Sharp06df5722009-12-03 09:44:31 -08001041 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001042 if (xhci->quirks & XHCI_RESET_EP_QUIRK &&
Sarah Sharp06df5722009-12-03 09:44:31 -08001043 ep_index != (unsigned int) -1 &&
1044 ctrl_ctx->add_flags - SLOT_FLAG ==
1045 ctrl_ctx->drop_flags) {
1046 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
1047 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1048 if (!(ep_state & EP_HALTED))
1049 goto bandwidth_change;
1050 xhci_dbg(xhci, "Completed config ep cmd - "
1051 "last ep index = %d, state = %d\n",
1052 ep_index, ep_state);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001053 /* Clear internal halted state and restart ring(s) */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001054 xhci->devs[slot_id]->eps[ep_index].ep_state &=
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001055 ~EP_HALTED;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001056 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharp06df5722009-12-03 09:44:31 -08001057 break;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001058 }
Sarah Sharp06df5722009-12-03 09:44:31 -08001059bandwidth_change:
1060 xhci_dbg(xhci, "Completed config ep cmd\n");
1061 xhci->devs[slot_id]->cmd_status =
1062 GET_COMP_CODE(event->status);
1063 complete(&xhci->devs[slot_id]->cmd_completion);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001064 break;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001065 case TRB_TYPE(TRB_EVAL_CONTEXT):
Sarah Sharpac1c1b72009-09-04 10:53:20 -07001066 virt_dev = xhci->devs[slot_id];
1067 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
1068 break;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001069 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
1070 complete(&xhci->devs[slot_id]->cmd_completion);
1071 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001072 case TRB_TYPE(TRB_ADDR_DEV):
1073 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
1074 complete(&xhci->addr_dev);
1075 break;
Sarah Sharpae636742009-04-29 19:02:31 -07001076 case TRB_TYPE(TRB_STOP_RING):
1077 handle_stopped_endpoint(xhci, xhci->cmd_ring->dequeue);
1078 break;
1079 case TRB_TYPE(TRB_SET_DEQ):
1080 handle_set_deq_completion(xhci, event, xhci->cmd_ring->dequeue);
1081 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001082 case TRB_TYPE(TRB_CMD_NOOP):
1083 ++xhci->noops_handled;
1084 break;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001085 case TRB_TYPE(TRB_RESET_EP):
1086 handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue);
1087 break;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08001088 case TRB_TYPE(TRB_RESET_DEV):
1089 xhci_dbg(xhci, "Completed reset device command.\n");
1090 slot_id = TRB_TO_SLOT_ID(
1091 xhci->cmd_ring->dequeue->generic.field[3]);
1092 virt_dev = xhci->devs[slot_id];
1093 if (virt_dev)
1094 handle_cmd_in_cmd_wait_list(xhci, virt_dev, event);
1095 else
1096 xhci_warn(xhci, "Reset device command completion "
1097 "for disabled slot %u\n", slot_id);
1098 break;
Sarah Sharp02386342010-05-24 13:25:28 -07001099 case TRB_TYPE(TRB_NEC_GET_FW):
1100 if (!(xhci->quirks & XHCI_NEC_HOST)) {
1101 xhci->error_bitmask |= 1 << 6;
1102 break;
1103 }
1104 xhci_dbg(xhci, "NEC firmware version %2x.%02x\n",
1105 NEC_FW_MAJOR(event->status),
1106 NEC_FW_MINOR(event->status));
1107 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001108 default:
1109 /* Skip over unknown commands on the event ring */
1110 xhci->error_bitmask |= 1 << 6;
1111 break;
1112 }
1113 inc_deq(xhci, xhci->cmd_ring, false);
1114}
1115
Sarah Sharp02386342010-05-24 13:25:28 -07001116static void handle_vendor_event(struct xhci_hcd *xhci,
1117 union xhci_trb *event)
1118{
1119 u32 trb_type;
1120
1121 trb_type = TRB_FIELD_TO_TYPE(event->generic.field[3]);
1122 xhci_dbg(xhci, "Vendor specific event TRB type = %u\n", trb_type);
1123 if (trb_type == TRB_NEC_CMD_COMP && (xhci->quirks & XHCI_NEC_HOST))
1124 handle_cmd_completion(xhci, &event->event_cmd);
1125}
1126
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001127static void handle_port_status(struct xhci_hcd *xhci,
1128 union xhci_trb *event)
1129{
1130 u32 port_id;
1131
1132 /* Port status change events always have a successful completion code */
1133 if (GET_COMP_CODE(event->generic.field[2]) != COMP_SUCCESS) {
1134 xhci_warn(xhci, "WARN: xHC returned failed port status event\n");
1135 xhci->error_bitmask |= 1 << 8;
1136 }
1137 /* FIXME: core doesn't care about all port link state changes yet */
1138 port_id = GET_PORT_ID(event->generic.field[0]);
1139 xhci_dbg(xhci, "Port Status Change Event for port %d\n", port_id);
1140
1141 /* Update event ring dequeue pointer before dropping the lock */
1142 inc_deq(xhci, xhci->event_ring, true);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001143 xhci_set_hc_event_deq(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001144
1145 spin_unlock(&xhci->lock);
1146 /* Pass this up to the core */
1147 usb_hcd_poll_rh_status(xhci_to_hcd(xhci));
1148 spin_lock(&xhci->lock);
1149}
1150
1151/*
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001152 * This TD is defined by the TRBs starting at start_trb in start_seg and ending
1153 * at end_trb, which may be in another segment. If the suspect DMA address is a
1154 * TRB in this TD, this function returns that TRB's segment. Otherwise it
1155 * returns 0.
1156 */
Sarah Sharp6648f292009-11-09 13:35:23 -08001157struct xhci_segment *trb_in_td(struct xhci_segment *start_seg,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001158 union xhci_trb *start_trb,
1159 union xhci_trb *end_trb,
1160 dma_addr_t suspect_dma)
1161{
1162 dma_addr_t start_dma;
1163 dma_addr_t end_seg_dma;
1164 dma_addr_t end_trb_dma;
1165 struct xhci_segment *cur_seg;
1166
Sarah Sharp23e3be12009-04-29 19:05:20 -07001167 start_dma = xhci_trb_virt_to_dma(start_seg, start_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001168 cur_seg = start_seg;
1169
1170 do {
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001171 if (start_dma == 0)
Randy Dunlap326b4812010-04-19 08:53:50 -07001172 return NULL;
Sarah Sharpae636742009-04-29 19:02:31 -07001173 /* We may get an event for a Link TRB in the middle of a TD */
Sarah Sharp23e3be12009-04-29 19:05:20 -07001174 end_seg_dma = xhci_trb_virt_to_dma(cur_seg,
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001175 &cur_seg->trbs[TRBS_PER_SEGMENT - 1]);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001176 /* If the end TRB isn't in this segment, this is set to 0 */
Sarah Sharp23e3be12009-04-29 19:05:20 -07001177 end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001178
1179 if (end_trb_dma > 0) {
1180 /* The end TRB is in this segment, so suspect should be here */
1181 if (start_dma <= end_trb_dma) {
1182 if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma)
1183 return cur_seg;
1184 } else {
1185 /* Case for one segment with
1186 * a TD wrapped around to the top
1187 */
1188 if ((suspect_dma >= start_dma &&
1189 suspect_dma <= end_seg_dma) ||
1190 (suspect_dma >= cur_seg->dma &&
1191 suspect_dma <= end_trb_dma))
1192 return cur_seg;
1193 }
Randy Dunlap326b4812010-04-19 08:53:50 -07001194 return NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001195 } else {
1196 /* Might still be somewhere in this segment */
1197 if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma)
1198 return cur_seg;
1199 }
1200 cur_seg = cur_seg->next;
Sarah Sharp23e3be12009-04-29 19:05:20 -07001201 start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]);
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001202 } while (cur_seg != start_seg);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001203
Randy Dunlap326b4812010-04-19 08:53:50 -07001204 return NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001205}
1206
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001207static void xhci_cleanup_halted_endpoint(struct xhci_hcd *xhci,
1208 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001209 unsigned int stream_id,
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001210 struct xhci_td *td, union xhci_trb *event_trb)
1211{
1212 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
1213 ep->ep_state |= EP_HALTED;
1214 ep->stopped_td = td;
1215 ep->stopped_trb = event_trb;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001216 ep->stopped_stream = stream_id;
Sarah Sharp1624ae12010-05-06 13:40:08 -07001217
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001218 xhci_queue_reset_ep(xhci, slot_id, ep_index);
1219 xhci_cleanup_stalled_ring(xhci, td->urb->dev, ep_index);
Sarah Sharp1624ae12010-05-06 13:40:08 -07001220
1221 ep->stopped_td = NULL;
1222 ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07001223 ep->stopped_stream = 0;
Sarah Sharp1624ae12010-05-06 13:40:08 -07001224
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001225 xhci_ring_cmd_db(xhci);
1226}
1227
1228/* Check if an error has halted the endpoint ring. The class driver will
1229 * cleanup the halt for a non-default control endpoint if we indicate a stall.
1230 * However, a babble and other errors also halt the endpoint ring, and the class
1231 * driver won't clear the halt in that case, so we need to issue a Set Transfer
1232 * Ring Dequeue Pointer command manually.
1233 */
1234static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci,
1235 struct xhci_ep_ctx *ep_ctx,
1236 unsigned int trb_comp_code)
1237{
1238 /* TRB completion codes that may require a manual halt cleanup */
1239 if (trb_comp_code == COMP_TX_ERR ||
1240 trb_comp_code == COMP_BABBLE ||
1241 trb_comp_code == COMP_SPLIT_ERR)
1242 /* The 0.96 spec says a babbling control endpoint
1243 * is not halted. The 0.96 spec says it is. Some HW
1244 * claims to be 0.95 compliant, but it halts the control
1245 * endpoint anyway. Check if a babble halted the
1246 * endpoint.
1247 */
1248 if ((ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_HALTED)
1249 return 1;
1250
1251 return 0;
1252}
1253
Sarah Sharpb45b5062009-12-09 15:59:06 -08001254int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code)
1255{
1256 if (trb_comp_code >= 224 && trb_comp_code <= 255) {
1257 /* Vendor defined "informational" completion code,
1258 * treat as not-an-error.
1259 */
1260 xhci_dbg(xhci, "Vendor defined info completion code %u\n",
1261 trb_comp_code);
1262 xhci_dbg(xhci, "Treating code as success.\n");
1263 return 1;
1264 }
1265 return 0;
1266}
1267
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001268/*
Andiry Xu4422da62010-07-22 15:22:55 -07001269 * Finish the td processing, remove the td from td list;
1270 * Return 1 if the urb can be given back.
1271 */
1272static int finish_td(struct xhci_hcd *xhci, struct xhci_td *td,
1273 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1274 struct xhci_virt_ep *ep, int *status, bool skip)
1275{
1276 struct xhci_virt_device *xdev;
1277 struct xhci_ring *ep_ring;
1278 unsigned int slot_id;
1279 int ep_index;
1280 struct urb *urb = NULL;
1281 struct xhci_ep_ctx *ep_ctx;
1282 int ret = 0;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001283 struct urb_priv *urb_priv;
Andiry Xu4422da62010-07-22 15:22:55 -07001284 u32 trb_comp_code;
1285
1286 slot_id = TRB_TO_SLOT_ID(event->flags);
1287 xdev = xhci->devs[slot_id];
1288 ep_index = TRB_TO_EP_ID(event->flags) - 1;
1289 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1290 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
1291 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1292
1293 if (skip)
1294 goto td_cleanup;
1295
1296 if (trb_comp_code == COMP_STOP_INVAL ||
1297 trb_comp_code == COMP_STOP) {
1298 /* The Endpoint Stop Command completion will take care of any
1299 * stopped TDs. A stopped TD may be restarted, so don't update
1300 * the ring dequeue pointer or take this TD off any lists yet.
1301 */
1302 ep->stopped_td = td;
1303 ep->stopped_trb = event_trb;
1304 return 0;
1305 } else {
1306 if (trb_comp_code == COMP_STALL) {
1307 /* The transfer is completed from the driver's
1308 * perspective, but we need to issue a set dequeue
1309 * command for this stalled endpoint to move the dequeue
1310 * pointer past the TD. We can't do that here because
1311 * the halt condition must be cleared first. Let the
1312 * USB class driver clear the stall later.
1313 */
1314 ep->stopped_td = td;
1315 ep->stopped_trb = event_trb;
1316 ep->stopped_stream = ep_ring->stream_id;
1317 } else if (xhci_requires_manual_halt_cleanup(xhci,
1318 ep_ctx, trb_comp_code)) {
1319 /* Other types of errors halt the endpoint, but the
1320 * class driver doesn't call usb_reset_endpoint() unless
1321 * the error is -EPIPE. Clear the halted status in the
1322 * xHCI hardware manually.
1323 */
1324 xhci_cleanup_halted_endpoint(xhci,
1325 slot_id, ep_index, ep_ring->stream_id,
1326 td, event_trb);
1327 } else {
1328 /* Update ring dequeue pointer */
1329 while (ep_ring->dequeue != td->last_trb)
1330 inc_deq(xhci, ep_ring, false);
1331 inc_deq(xhci, ep_ring, false);
1332 }
1333
1334td_cleanup:
1335 /* Clean up the endpoint's TD list */
1336 urb = td->urb;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001337 urb_priv = urb->hcpriv;
Andiry Xu4422da62010-07-22 15:22:55 -07001338
1339 /* Do one last check of the actual transfer length.
1340 * If the host controller said we transferred more data than
1341 * the buffer length, urb->actual_length will be a very big
1342 * number (since it's unsigned). Play it safe and say we didn't
1343 * transfer anything.
1344 */
1345 if (urb->actual_length > urb->transfer_buffer_length) {
1346 xhci_warn(xhci, "URB transfer length is wrong, "
1347 "xHC issue? req. len = %u, "
1348 "act. len = %u\n",
1349 urb->transfer_buffer_length,
1350 urb->actual_length);
1351 urb->actual_length = 0;
1352 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1353 *status = -EREMOTEIO;
1354 else
1355 *status = 0;
1356 }
1357 list_del(&td->td_list);
1358 /* Was this TD slated to be cancelled but completed anyway? */
1359 if (!list_empty(&td->cancelled_td_list))
1360 list_del(&td->cancelled_td_list);
1361
Andiry Xu8e51adc2010-07-22 15:23:31 -07001362 urb_priv->td_cnt++;
1363 /* Giveback the urb when all the tds are completed */
1364 if (urb_priv->td_cnt == urb_priv->length)
1365 ret = 1;
Andiry Xu4422da62010-07-22 15:22:55 -07001366 }
1367
1368 return ret;
1369}
1370
1371/*
Andiry Xu8af56be2010-07-22 15:23:03 -07001372 * Process control tds, update urb status and actual_length.
1373 */
1374static int process_ctrl_td(struct xhci_hcd *xhci, struct xhci_td *td,
1375 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1376 struct xhci_virt_ep *ep, int *status)
1377{
1378 struct xhci_virt_device *xdev;
1379 struct xhci_ring *ep_ring;
1380 unsigned int slot_id;
1381 int ep_index;
1382 struct xhci_ep_ctx *ep_ctx;
1383 u32 trb_comp_code;
1384
1385 slot_id = TRB_TO_SLOT_ID(event->flags);
1386 xdev = xhci->devs[slot_id];
1387 ep_index = TRB_TO_EP_ID(event->flags) - 1;
1388 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1389 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
1390 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1391
1392 xhci_debug_trb(xhci, xhci->event_ring->dequeue);
1393 switch (trb_comp_code) {
1394 case COMP_SUCCESS:
1395 if (event_trb == ep_ring->dequeue) {
1396 xhci_warn(xhci, "WARN: Success on ctrl setup TRB "
1397 "without IOC set??\n");
1398 *status = -ESHUTDOWN;
1399 } else if (event_trb != td->last_trb) {
1400 xhci_warn(xhci, "WARN: Success on ctrl data TRB "
1401 "without IOC set??\n");
1402 *status = -ESHUTDOWN;
1403 } else {
1404 xhci_dbg(xhci, "Successful control transfer!\n");
1405 *status = 0;
1406 }
1407 break;
1408 case COMP_SHORT_TX:
1409 xhci_warn(xhci, "WARN: short transfer on control ep\n");
1410 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1411 *status = -EREMOTEIO;
1412 else
1413 *status = 0;
1414 break;
1415 default:
1416 if (!xhci_requires_manual_halt_cleanup(xhci,
1417 ep_ctx, trb_comp_code))
1418 break;
1419 xhci_dbg(xhci, "TRB error code %u, "
1420 "halted endpoint index = %u\n",
1421 trb_comp_code, ep_index);
1422 /* else fall through */
1423 case COMP_STALL:
1424 /* Did we transfer part of the data (middle) phase? */
1425 if (event_trb != ep_ring->dequeue &&
1426 event_trb != td->last_trb)
1427 td->urb->actual_length =
1428 td->urb->transfer_buffer_length
1429 - TRB_LEN(event->transfer_len);
1430 else
1431 td->urb->actual_length = 0;
1432
1433 xhci_cleanup_halted_endpoint(xhci,
1434 slot_id, ep_index, 0, td, event_trb);
1435 return finish_td(xhci, td, event_trb, event, ep, status, true);
1436 }
1437 /*
1438 * Did we transfer any data, despite the errors that might have
1439 * happened? I.e. did we get past the setup stage?
1440 */
1441 if (event_trb != ep_ring->dequeue) {
1442 /* The event was for the status stage */
1443 if (event_trb == td->last_trb) {
1444 if (td->urb->actual_length != 0) {
1445 /* Don't overwrite a previously set error code
1446 */
1447 if ((*status == -EINPROGRESS || *status == 0) &&
1448 (td->urb->transfer_flags
1449 & URB_SHORT_NOT_OK))
1450 /* Did we already see a short data
1451 * stage? */
1452 *status = -EREMOTEIO;
1453 } else {
1454 td->urb->actual_length =
1455 td->urb->transfer_buffer_length;
1456 }
1457 } else {
1458 /* Maybe the event was for the data stage? */
1459 if (trb_comp_code != COMP_STOP_INVAL) {
1460 /* We didn't stop on a link TRB in the middle */
1461 td->urb->actual_length =
1462 td->urb->transfer_buffer_length -
1463 TRB_LEN(event->transfer_len);
1464 xhci_dbg(xhci, "Waiting for status "
1465 "stage event\n");
1466 return 0;
1467 }
1468 }
1469 }
1470
1471 return finish_td(xhci, td, event_trb, event, ep, status, false);
1472}
1473
1474/*
Andiry Xu04e51902010-07-22 15:23:39 -07001475 * Process isochronous tds, update urb packet status and actual_length.
1476 */
1477static int process_isoc_td(struct xhci_hcd *xhci, struct xhci_td *td,
1478 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1479 struct xhci_virt_ep *ep, int *status)
1480{
1481 struct xhci_ring *ep_ring;
1482 struct urb_priv *urb_priv;
1483 int idx;
1484 int len = 0;
1485 int skip_td = 0;
1486 union xhci_trb *cur_trb;
1487 struct xhci_segment *cur_seg;
1488 u32 trb_comp_code;
1489
1490 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1491 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1492 urb_priv = td->urb->hcpriv;
1493 idx = urb_priv->td_cnt;
1494
1495 if (ep->skip) {
1496 /* The transfer is partly done */
1497 *status = -EXDEV;
1498 td->urb->iso_frame_desc[idx].status = -EXDEV;
1499 } else {
1500 /* handle completion code */
1501 switch (trb_comp_code) {
1502 case COMP_SUCCESS:
1503 td->urb->iso_frame_desc[idx].status = 0;
1504 xhci_dbg(xhci, "Successful isoc transfer!\n");
1505 break;
1506 case COMP_SHORT_TX:
1507 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1508 td->urb->iso_frame_desc[idx].status =
1509 -EREMOTEIO;
1510 else
1511 td->urb->iso_frame_desc[idx].status = 0;
1512 break;
1513 case COMP_BW_OVER:
1514 td->urb->iso_frame_desc[idx].status = -ECOMM;
1515 skip_td = 1;
1516 break;
1517 case COMP_BUFF_OVER:
1518 case COMP_BABBLE:
1519 td->urb->iso_frame_desc[idx].status = -EOVERFLOW;
1520 skip_td = 1;
1521 break;
1522 case COMP_STALL:
1523 td->urb->iso_frame_desc[idx].status = -EPROTO;
1524 skip_td = 1;
1525 break;
1526 case COMP_STOP:
1527 case COMP_STOP_INVAL:
1528 break;
1529 default:
1530 td->urb->iso_frame_desc[idx].status = -1;
1531 break;
1532 }
1533 }
1534
1535 /* calc actual length */
1536 if (ep->skip) {
1537 td->urb->iso_frame_desc[idx].actual_length = 0;
1538 return finish_td(xhci, td, event_trb, event, ep, status, true);
1539 }
1540
1541 if (trb_comp_code == COMP_SUCCESS || skip_td == 1) {
1542 td->urb->iso_frame_desc[idx].actual_length =
1543 td->urb->iso_frame_desc[idx].length;
1544 td->urb->actual_length +=
1545 td->urb->iso_frame_desc[idx].length;
1546 } else {
1547 for (cur_trb = ep_ring->dequeue,
1548 cur_seg = ep_ring->deq_seg; cur_trb != event_trb;
1549 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
1550 if ((cur_trb->generic.field[3] &
1551 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_TR_NOOP) &&
1552 (cur_trb->generic.field[3] &
1553 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_LINK))
1554 len +=
1555 TRB_LEN(cur_trb->generic.field[2]);
1556 }
1557 len += TRB_LEN(cur_trb->generic.field[2]) -
1558 TRB_LEN(event->transfer_len);
1559
1560 if (trb_comp_code != COMP_STOP_INVAL) {
1561 td->urb->iso_frame_desc[idx].actual_length = len;
1562 td->urb->actual_length += len;
1563 }
1564 }
1565
1566 if ((idx == urb_priv->length - 1) && *status == -EINPROGRESS)
1567 *status = 0;
1568
1569 return finish_td(xhci, td, event_trb, event, ep, status, false);
1570}
1571
1572/*
Andiry Xu22405ed2010-07-22 15:23:08 -07001573 * Process bulk and interrupt tds, update urb status and actual_length.
1574 */
1575static int process_bulk_intr_td(struct xhci_hcd *xhci, struct xhci_td *td,
1576 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1577 struct xhci_virt_ep *ep, int *status)
1578{
1579 struct xhci_ring *ep_ring;
1580 union xhci_trb *cur_trb;
1581 struct xhci_segment *cur_seg;
1582 u32 trb_comp_code;
1583
1584 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1585 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1586
1587 switch (trb_comp_code) {
1588 case COMP_SUCCESS:
1589 /* Double check that the HW transferred everything. */
1590 if (event_trb != td->last_trb) {
1591 xhci_warn(xhci, "WARN Successful completion "
1592 "on short TX\n");
1593 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1594 *status = -EREMOTEIO;
1595 else
1596 *status = 0;
1597 } else {
1598 if (usb_endpoint_xfer_bulk(&td->urb->ep->desc))
1599 xhci_dbg(xhci, "Successful bulk "
1600 "transfer!\n");
1601 else
1602 xhci_dbg(xhci, "Successful interrupt "
1603 "transfer!\n");
1604 *status = 0;
1605 }
1606 break;
1607 case COMP_SHORT_TX:
1608 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1609 *status = -EREMOTEIO;
1610 else
1611 *status = 0;
1612 break;
1613 default:
1614 /* Others already handled above */
1615 break;
1616 }
1617 dev_dbg(&td->urb->dev->dev,
1618 "ep %#x - asked for %d bytes, "
1619 "%d bytes untransferred\n",
1620 td->urb->ep->desc.bEndpointAddress,
1621 td->urb->transfer_buffer_length,
1622 TRB_LEN(event->transfer_len));
1623 /* Fast path - was this the last TRB in the TD for this URB? */
1624 if (event_trb == td->last_trb) {
1625 if (TRB_LEN(event->transfer_len) != 0) {
1626 td->urb->actual_length =
1627 td->urb->transfer_buffer_length -
1628 TRB_LEN(event->transfer_len);
1629 if (td->urb->transfer_buffer_length <
1630 td->urb->actual_length) {
1631 xhci_warn(xhci, "HC gave bad length "
1632 "of %d bytes left\n",
1633 TRB_LEN(event->transfer_len));
1634 td->urb->actual_length = 0;
1635 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1636 *status = -EREMOTEIO;
1637 else
1638 *status = 0;
1639 }
1640 /* Don't overwrite a previously set error code */
1641 if (*status == -EINPROGRESS) {
1642 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1643 *status = -EREMOTEIO;
1644 else
1645 *status = 0;
1646 }
1647 } else {
1648 td->urb->actual_length =
1649 td->urb->transfer_buffer_length;
1650 /* Ignore a short packet completion if the
1651 * untransferred length was zero.
1652 */
1653 if (*status == -EREMOTEIO)
1654 *status = 0;
1655 }
1656 } else {
1657 /* Slow path - walk the list, starting from the dequeue
1658 * pointer, to get the actual length transferred.
1659 */
1660 td->urb->actual_length = 0;
1661 for (cur_trb = ep_ring->dequeue, cur_seg = ep_ring->deq_seg;
1662 cur_trb != event_trb;
1663 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
1664 if ((cur_trb->generic.field[3] &
1665 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_TR_NOOP) &&
1666 (cur_trb->generic.field[3] &
1667 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_LINK))
1668 td->urb->actual_length +=
1669 TRB_LEN(cur_trb->generic.field[2]);
1670 }
1671 /* If the ring didn't stop on a Link or No-op TRB, add
1672 * in the actual bytes transferred from the Normal TRB
1673 */
1674 if (trb_comp_code != COMP_STOP_INVAL)
1675 td->urb->actual_length +=
1676 TRB_LEN(cur_trb->generic.field[2]) -
1677 TRB_LEN(event->transfer_len);
1678 }
1679
1680 return finish_td(xhci, td, event_trb, event, ep, status, false);
1681}
1682
1683/*
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001684 * If this function returns an error condition, it means it got a Transfer
1685 * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address.
1686 * At this point, the host controller is probably hosed and should be reset.
1687 */
1688static int handle_tx_event(struct xhci_hcd *xhci,
1689 struct xhci_transfer_event *event)
1690{
1691 struct xhci_virt_device *xdev;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001692 struct xhci_virt_ep *ep;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001693 struct xhci_ring *ep_ring;
Sarah Sharp82d10092009-08-07 14:04:52 -07001694 unsigned int slot_id;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001695 int ep_index;
Randy Dunlap326b4812010-04-19 08:53:50 -07001696 struct xhci_td *td = NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001697 dma_addr_t event_dma;
1698 struct xhci_segment *event_seg;
1699 union xhci_trb *event_trb;
Randy Dunlap326b4812010-04-19 08:53:50 -07001700 struct urb *urb = NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001701 int status = -EINPROGRESS;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001702 struct urb_priv *urb_priv;
John Yound115b042009-07-27 12:05:15 -07001703 struct xhci_ep_ctx *ep_ctx;
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001704 u32 trb_comp_code;
Andiry Xu4422da62010-07-22 15:22:55 -07001705 int ret = 0;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001706
Sarah Sharp82d10092009-08-07 14:04:52 -07001707 slot_id = TRB_TO_SLOT_ID(event->flags);
1708 xdev = xhci->devs[slot_id];
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001709 if (!xdev) {
1710 xhci_err(xhci, "ERROR Transfer event pointed to bad slot\n");
1711 return -ENODEV;
1712 }
1713
1714 /* Endpoint ID is 1 based, our index is zero based */
1715 ep_index = TRB_TO_EP_ID(event->flags) - 1;
Sarah Sharp66e49d82009-07-27 12:03:46 -07001716 xhci_dbg(xhci, "%s - ep index = %d\n", __func__, ep_index);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001717 ep = &xdev->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001718 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
John Yound115b042009-07-27 12:05:15 -07001719 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
Andiry Xu986a92d2010-07-22 15:23:20 -07001720 if (!ep_ring ||
1721 (ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_DISABLED) {
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001722 xhci_err(xhci, "ERROR Transfer event for disabled endpoint "
1723 "or incorrect stream ring\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001724 return -ENODEV;
1725 }
1726
Sarah Sharp8e595a52009-07-27 12:03:31 -07001727 event_dma = event->buffer;
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001728 trb_comp_code = GET_COMP_CODE(event->transfer_len);
Andiry Xu986a92d2010-07-22 15:23:20 -07001729 /* Look for common error cases */
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001730 switch (trb_comp_code) {
Sarah Sharpb10de142009-04-27 19:58:50 -07001731 /* Skip codes that require special handling depending on
1732 * transfer type
1733 */
1734 case COMP_SUCCESS:
1735 case COMP_SHORT_TX:
1736 break;
Sarah Sharpae636742009-04-29 19:02:31 -07001737 case COMP_STOP:
1738 xhci_dbg(xhci, "Stopped on Transfer TRB\n");
1739 break;
1740 case COMP_STOP_INVAL:
1741 xhci_dbg(xhci, "Stopped on No-op or Link TRB\n");
1742 break;
Sarah Sharpb10de142009-04-27 19:58:50 -07001743 case COMP_STALL:
1744 xhci_warn(xhci, "WARN: Stalled endpoint\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001745 ep->ep_state |= EP_HALTED;
Sarah Sharpb10de142009-04-27 19:58:50 -07001746 status = -EPIPE;
1747 break;
1748 case COMP_TRB_ERR:
1749 xhci_warn(xhci, "WARN: TRB error on endpoint\n");
1750 status = -EILSEQ;
1751 break;
Sarah Sharpec74e402009-11-11 10:28:36 -08001752 case COMP_SPLIT_ERR:
Sarah Sharpb10de142009-04-27 19:58:50 -07001753 case COMP_TX_ERR:
1754 xhci_warn(xhci, "WARN: transfer error on endpoint\n");
1755 status = -EPROTO;
1756 break;
Sarah Sharp4a731432009-07-27 12:04:32 -07001757 case COMP_BABBLE:
1758 xhci_warn(xhci, "WARN: babble error on endpoint\n");
1759 status = -EOVERFLOW;
1760 break;
Sarah Sharpb10de142009-04-27 19:58:50 -07001761 case COMP_DB_ERR:
1762 xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n");
1763 status = -ENOSR;
1764 break;
Andiry Xu986a92d2010-07-22 15:23:20 -07001765 case COMP_BW_OVER:
1766 xhci_warn(xhci, "WARN: bandwidth overrun event on endpoint\n");
1767 break;
1768 case COMP_BUFF_OVER:
1769 xhci_warn(xhci, "WARN: buffer overrun event on endpoint\n");
1770 break;
1771 case COMP_UNDERRUN:
1772 /*
1773 * When the Isoch ring is empty, the xHC will generate
1774 * a Ring Overrun Event for IN Isoch endpoint or Ring
1775 * Underrun Event for OUT Isoch endpoint.
1776 */
1777 xhci_dbg(xhci, "underrun event on endpoint\n");
1778 if (!list_empty(&ep_ring->td_list))
1779 xhci_dbg(xhci, "Underrun Event for slot %d ep %d "
1780 "still with TDs queued?\n",
1781 TRB_TO_SLOT_ID(event->flags), ep_index);
1782 goto cleanup;
1783 case COMP_OVERRUN:
1784 xhci_dbg(xhci, "overrun event on endpoint\n");
1785 if (!list_empty(&ep_ring->td_list))
1786 xhci_dbg(xhci, "Overrun Event for slot %d ep %d "
1787 "still with TDs queued?\n",
1788 TRB_TO_SLOT_ID(event->flags), ep_index);
1789 goto cleanup;
Andiry Xud18240d2010-07-22 15:23:25 -07001790 case COMP_MISSED_INT:
1791 /*
1792 * When encounter missed service error, one or more isoc tds
1793 * may be missed by xHC.
1794 * Set skip flag of the ep_ring; Complete the missed tds as
1795 * short transfer when process the ep_ring next time.
1796 */
1797 ep->skip = true;
1798 xhci_dbg(xhci, "Miss service interval error, set skip flag\n");
1799 goto cleanup;
Sarah Sharpb10de142009-04-27 19:58:50 -07001800 default:
Sarah Sharpb45b5062009-12-09 15:59:06 -08001801 if (xhci_is_vendor_info_code(xhci, trb_comp_code)) {
Sarah Sharp5ad6a522009-11-11 10:28:40 -08001802 status = 0;
1803 break;
1804 }
Andiry Xu986a92d2010-07-22 15:23:20 -07001805 xhci_warn(xhci, "ERROR Unknown event condition, HC probably "
1806 "busted\n");
Sarah Sharpb10de142009-04-27 19:58:50 -07001807 goto cleanup;
1808 }
Andiry Xu986a92d2010-07-22 15:23:20 -07001809
Andiry Xud18240d2010-07-22 15:23:25 -07001810 do {
1811 /* This TRB should be in the TD at the head of this ring's
1812 * TD list.
1813 */
1814 if (list_empty(&ep_ring->td_list)) {
1815 xhci_warn(xhci, "WARN Event TRB for slot %d ep %d "
1816 "with no TDs queued?\n",
1817 TRB_TO_SLOT_ID(event->flags), ep_index);
1818 xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
1819 (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10);
1820 xhci_print_trb_offsets(xhci, (union xhci_trb *) event);
1821 if (ep->skip) {
1822 ep->skip = false;
1823 xhci_dbg(xhci, "td_list is empty while skip "
1824 "flag set. Clear skip flag.\n");
1825 }
1826 ret = 0;
1827 goto cleanup;
1828 }
Andiry Xu986a92d2010-07-22 15:23:20 -07001829
Andiry Xud18240d2010-07-22 15:23:25 -07001830 td = list_entry(ep_ring->td_list.next, struct xhci_td, td_list);
1831 /* Is this a TRB in the currently executing TD? */
1832 event_seg = trb_in_td(ep_ring->deq_seg, ep_ring->dequeue,
1833 td->last_trb, event_dma);
1834 if (event_seg && ep->skip) {
1835 xhci_dbg(xhci, "Found td. Clear skip flag.\n");
1836 ep->skip = false;
1837 }
1838 if (!event_seg &&
1839 (!ep->skip || !usb_endpoint_xfer_isoc(&td->urb->ep->desc))) {
1840 /* HC is busted, give up! */
1841 xhci_err(xhci, "ERROR Transfer event TRB DMA ptr not "
1842 "part of current TD\n");
1843 return -ESHUTDOWN;
1844 }
Andiry Xu986a92d2010-07-22 15:23:20 -07001845
Andiry Xud18240d2010-07-22 15:23:25 -07001846 if (event_seg) {
1847 event_trb = &event_seg->trbs[(event_dma -
1848 event_seg->dma) / sizeof(*event_trb)];
1849 /*
1850 * No-op TRB should not trigger interrupts.
1851 * If event_trb is a no-op TRB, it means the
1852 * corresponding TD has been cancelled. Just ignore
1853 * the TD.
1854 */
1855 if ((event_trb->generic.field[3] & TRB_TYPE_BITMASK)
1856 == TRB_TYPE(TRB_TR_NOOP)) {
1857 xhci_dbg(xhci, "event_trb is a no-op TRB. "
1858 "Skip it\n");
1859 goto cleanup;
1860 }
1861 }
1862
1863 /* Now update the urb's actual_length and give back to
1864 * the core
1865 */
1866 if (usb_endpoint_xfer_control(&td->urb->ep->desc))
1867 ret = process_ctrl_td(xhci, td, event_trb, event, ep,
1868 &status);
Andiry Xu04e51902010-07-22 15:23:39 -07001869 else if (usb_endpoint_xfer_isoc(&td->urb->ep->desc))
1870 ret = process_isoc_td(xhci, td, event_trb, event, ep,
1871 &status);
Andiry Xud18240d2010-07-22 15:23:25 -07001872 else
1873 ret = process_bulk_intr_td(xhci, td, event_trb, event,
1874 ep, &status);
Andiry Xu4422da62010-07-22 15:22:55 -07001875
1876cleanup:
Andiry Xud18240d2010-07-22 15:23:25 -07001877 /*
1878 * Do not update event ring dequeue pointer if ep->skip is set.
1879 * Will roll back to continue process missed tds.
Sarah Sharp82d10092009-08-07 14:04:52 -07001880 */
Andiry Xud18240d2010-07-22 15:23:25 -07001881 if (trb_comp_code == COMP_MISSED_INT || !ep->skip) {
1882 inc_deq(xhci, xhci->event_ring, true);
1883 xhci_set_hc_event_deq(xhci);
1884 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001885
Andiry Xud18240d2010-07-22 15:23:25 -07001886 if (ret) {
1887 urb = td->urb;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001888 urb_priv = urb->hcpriv;
Andiry Xud18240d2010-07-22 15:23:25 -07001889 /* Leave the TD around for the reset endpoint function
1890 * to use(but only if it's not a control endpoint,
1891 * since we already queued the Set TR dequeue pointer
1892 * command for stalled control endpoints).
1893 */
1894 if (usb_endpoint_xfer_control(&urb->ep->desc) ||
1895 (trb_comp_code != COMP_STALL &&
1896 trb_comp_code != COMP_BABBLE))
Andiry Xu8e51adc2010-07-22 15:23:31 -07001897 xhci_urb_free_priv(xhci, urb_priv);
Andiry Xud18240d2010-07-22 15:23:25 -07001898
1899 usb_hcd_unlink_urb_from_ep(xhci_to_hcd(xhci), urb);
1900 xhci_dbg(xhci, "Giveback URB %p, len = %d, "
1901 "status = %d\n",
1902 urb, urb->actual_length, status);
1903 spin_unlock(&xhci->lock);
1904 usb_hcd_giveback_urb(xhci_to_hcd(xhci), urb, status);
1905 spin_lock(&xhci->lock);
1906 }
1907
1908 /*
1909 * If ep->skip is set, it means there are missed tds on the
1910 * endpoint ring need to take care of.
1911 * Process them as short transfer until reach the td pointed by
1912 * the event.
1913 */
1914 } while (ep->skip && trb_comp_code != COMP_MISSED_INT);
1915
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001916 return 0;
1917}
1918
1919/*
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001920 * This function handles all OS-owned events on the event ring. It may drop
1921 * xhci->lock between event processing (e.g. to pass up port status changes).
1922 */
Stephen Rothwellb7258a42009-04-29 19:02:47 -07001923void xhci_handle_event(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001924{
1925 union xhci_trb *event;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001926 int update_ptrs = 1;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001927 int ret;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001928
Sarah Sharp66e49d82009-07-27 12:03:46 -07001929 xhci_dbg(xhci, "In %s\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001930 if (!xhci->event_ring || !xhci->event_ring->dequeue) {
1931 xhci->error_bitmask |= 1 << 1;
1932 return;
1933 }
1934
1935 event = xhci->event_ring->dequeue;
1936 /* Does the HC or OS own the TRB? */
1937 if ((event->event_cmd.flags & TRB_CYCLE) !=
1938 xhci->event_ring->cycle_state) {
1939 xhci->error_bitmask |= 1 << 2;
1940 return;
1941 }
Sarah Sharp66e49d82009-07-27 12:03:46 -07001942 xhci_dbg(xhci, "%s - OS owns TRB\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001943
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001944 /* FIXME: Handle more event types. */
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001945 switch ((event->event_cmd.flags & TRB_TYPE_BITMASK)) {
1946 case TRB_TYPE(TRB_COMPLETION):
Sarah Sharp66e49d82009-07-27 12:03:46 -07001947 xhci_dbg(xhci, "%s - calling handle_cmd_completion\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001948 handle_cmd_completion(xhci, &event->event_cmd);
Sarah Sharp66e49d82009-07-27 12:03:46 -07001949 xhci_dbg(xhci, "%s - returned from handle_cmd_completion\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001950 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001951 case TRB_TYPE(TRB_PORT_STATUS):
Sarah Sharp66e49d82009-07-27 12:03:46 -07001952 xhci_dbg(xhci, "%s - calling handle_port_status\n", __func__);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001953 handle_port_status(xhci, event);
Sarah Sharp66e49d82009-07-27 12:03:46 -07001954 xhci_dbg(xhci, "%s - returned from handle_port_status\n", __func__);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001955 update_ptrs = 0;
1956 break;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001957 case TRB_TYPE(TRB_TRANSFER):
Sarah Sharp66e49d82009-07-27 12:03:46 -07001958 xhci_dbg(xhci, "%s - calling handle_tx_event\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001959 ret = handle_tx_event(xhci, &event->trans_event);
Sarah Sharp66e49d82009-07-27 12:03:46 -07001960 xhci_dbg(xhci, "%s - returned from handle_tx_event\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001961 if (ret < 0)
1962 xhci->error_bitmask |= 1 << 9;
1963 else
1964 update_ptrs = 0;
1965 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001966 default:
Sarah Sharp02386342010-05-24 13:25:28 -07001967 if ((event->event_cmd.flags & TRB_TYPE_BITMASK) >= TRB_TYPE(48))
1968 handle_vendor_event(xhci, event);
1969 else
1970 xhci->error_bitmask |= 1 << 3;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001971 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001972 /* Any of the above functions may drop and re-acquire the lock, so check
1973 * to make sure a watchdog timer didn't mark the host as non-responsive.
1974 */
1975 if (xhci->xhc_state & XHCI_STATE_DYING) {
1976 xhci_dbg(xhci, "xHCI host dying, returning from "
1977 "event handler.\n");
1978 return;
1979 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001980
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001981 if (update_ptrs) {
1982 /* Update SW and HC event ring dequeue pointer */
1983 inc_deq(xhci, xhci->event_ring, true);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001984 xhci_set_hc_event_deq(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001985 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001986 /* Are there more items on the event ring? */
Stephen Rothwellb7258a42009-04-29 19:02:47 -07001987 xhci_handle_event(xhci);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001988}
1989
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001990/**** Endpoint Ring Operations ****/
1991
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001992/*
1993 * Generic function for queueing a TRB on a ring.
1994 * The caller must have checked to make sure there's room on the ring.
Sarah Sharp6cc30d82010-06-10 12:25:28 -07001995 *
1996 * @more_trbs_coming: Will you enqueue more TRBs before calling
1997 * prepare_transfer()?
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001998 */
1999static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002000 bool consumer, bool more_trbs_coming,
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002001 u32 field1, u32 field2, u32 field3, u32 field4)
2002{
2003 struct xhci_generic_trb *trb;
2004
2005 trb = &ring->enqueue->generic;
2006 trb->field[0] = field1;
2007 trb->field[1] = field2;
2008 trb->field[2] = field3;
2009 trb->field[3] = field4;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002010 inc_enq(xhci, ring, consumer, more_trbs_coming);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002011}
2012
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002013/*
2014 * Does various checks on the endpoint ring, and makes it ready to queue num_trbs.
2015 * FIXME allocate segments if the ring is full.
2016 */
2017static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
2018 u32 ep_state, unsigned int num_trbs, gfp_t mem_flags)
2019{
2020 /* Make sure the endpoint has been added to xHC schedule */
2021 xhci_dbg(xhci, "Endpoint state = 0x%x\n", ep_state);
2022 switch (ep_state) {
2023 case EP_STATE_DISABLED:
2024 /*
2025 * USB core changed config/interfaces without notifying us,
2026 * or hardware is reporting the wrong state.
2027 */
2028 xhci_warn(xhci, "WARN urb submitted to disabled ep\n");
2029 return -ENOENT;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002030 case EP_STATE_ERROR:
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002031 xhci_warn(xhci, "WARN waiting for error on ep to be cleared\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002032 /* FIXME event handling code for error needs to clear it */
2033 /* XXX not sure if this should be -ENOENT or not */
2034 return -EINVAL;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002035 case EP_STATE_HALTED:
2036 xhci_dbg(xhci, "WARN halted endpoint, queueing URB anyway.\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002037 case EP_STATE_STOPPED:
2038 case EP_STATE_RUNNING:
2039 break;
2040 default:
2041 xhci_err(xhci, "ERROR unknown endpoint state for ep\n");
2042 /*
2043 * FIXME issue Configure Endpoint command to try to get the HC
2044 * back into a known state.
2045 */
2046 return -EINVAL;
2047 }
2048 if (!room_on_ring(xhci, ep_ring, num_trbs)) {
2049 /* FIXME allocate more room */
2050 xhci_err(xhci, "ERROR no room on ep ring\n");
2051 return -ENOMEM;
2052 }
John Youn6c12db92010-05-10 15:33:00 -07002053
2054 if (enqueue_is_link_trb(ep_ring)) {
2055 struct xhci_ring *ring = ep_ring;
2056 union xhci_trb *next;
John Youn6c12db92010-05-10 15:33:00 -07002057
2058 xhci_dbg(xhci, "prepare_ring: pointing to link trb\n");
2059 next = ring->enqueue;
2060
2061 while (last_trb(xhci, ring, ring->enq_seg, next)) {
2062
2063 /* If we're not dealing with 0.95 hardware,
2064 * clear the chain bit.
2065 */
2066 if (!xhci_link_trb_quirk(xhci))
2067 next->link.control &= ~TRB_CHAIN;
2068 else
2069 next->link.control |= TRB_CHAIN;
2070
2071 wmb();
2072 next->link.control ^= (u32) TRB_CYCLE;
2073
2074 /* Toggle the cycle bit after the last ring segment. */
2075 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
2076 ring->cycle_state = (ring->cycle_state ? 0 : 1);
2077 if (!in_interrupt()) {
2078 xhci_dbg(xhci, "queue_trb: Toggle cycle "
2079 "state for ring %p = %i\n",
2080 ring, (unsigned int)ring->cycle_state);
2081 }
2082 }
2083 ring->enq_seg = ring->enq_seg->next;
2084 ring->enqueue = ring->enq_seg->trbs;
2085 next = ring->enqueue;
2086 }
2087 }
2088
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002089 return 0;
2090}
2091
Sarah Sharp23e3be12009-04-29 19:05:20 -07002092static int prepare_transfer(struct xhci_hcd *xhci,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002093 struct xhci_virt_device *xdev,
2094 unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002095 unsigned int stream_id,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002096 unsigned int num_trbs,
2097 struct urb *urb,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002098 unsigned int td_index,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002099 gfp_t mem_flags)
2100{
2101 int ret;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002102 struct urb_priv *urb_priv;
2103 struct xhci_td *td;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002104 struct xhci_ring *ep_ring;
John Yound115b042009-07-27 12:05:15 -07002105 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002106
2107 ep_ring = xhci_stream_id_to_ring(xdev, ep_index, stream_id);
2108 if (!ep_ring) {
2109 xhci_dbg(xhci, "Can't prepare ring for bad stream ID %u\n",
2110 stream_id);
2111 return -EINVAL;
2112 }
2113
2114 ret = prepare_ring(xhci, ep_ring,
John Yound115b042009-07-27 12:05:15 -07002115 ep_ctx->ep_info & EP_STATE_MASK,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002116 num_trbs, mem_flags);
2117 if (ret)
2118 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002119
Andiry Xu8e51adc2010-07-22 15:23:31 -07002120 urb_priv = urb->hcpriv;
2121 td = urb_priv->td[td_index];
2122
2123 INIT_LIST_HEAD(&td->td_list);
2124 INIT_LIST_HEAD(&td->cancelled_td_list);
2125
2126 if (td_index == 0) {
2127 ret = usb_hcd_link_urb_to_ep(xhci_to_hcd(xhci), urb);
2128 if (unlikely(ret)) {
2129 xhci_urb_free_priv(xhci, urb_priv);
2130 urb->hcpriv = NULL;
2131 return ret;
2132 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002133 }
2134
Andiry Xu8e51adc2010-07-22 15:23:31 -07002135 td->urb = urb;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002136 /* Add this TD to the tail of the endpoint ring's TD list */
Andiry Xu8e51adc2010-07-22 15:23:31 -07002137 list_add_tail(&td->td_list, &ep_ring->td_list);
2138 td->start_seg = ep_ring->enq_seg;
2139 td->first_trb = ep_ring->enqueue;
2140
2141 urb_priv->td[td_index] = td;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002142
2143 return 0;
2144}
2145
Sarah Sharp23e3be12009-04-29 19:05:20 -07002146static unsigned int count_sg_trbs_needed(struct xhci_hcd *xhci, struct urb *urb)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002147{
2148 int num_sgs, num_trbs, running_total, temp, i;
2149 struct scatterlist *sg;
2150
2151 sg = NULL;
2152 num_sgs = urb->num_sgs;
2153 temp = urb->transfer_buffer_length;
2154
2155 xhci_dbg(xhci, "count sg list trbs: \n");
2156 num_trbs = 0;
Matthew Wilcox910f8d02010-05-01 12:20:01 -06002157 for_each_sg(urb->sg, sg, num_sgs, i) {
Sarah Sharp8a96c052009-04-27 19:59:19 -07002158 unsigned int previous_total_trbs = num_trbs;
2159 unsigned int len = sg_dma_len(sg);
2160
2161 /* Scatter gather list entries may cross 64KB boundaries */
2162 running_total = TRB_MAX_BUFF_SIZE -
2163 (sg_dma_address(sg) & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2164 if (running_total != 0)
2165 num_trbs++;
2166
2167 /* How many more 64KB chunks to transfer, how many more TRBs? */
2168 while (running_total < sg_dma_len(sg)) {
2169 num_trbs++;
2170 running_total += TRB_MAX_BUFF_SIZE;
2171 }
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002172 xhci_dbg(xhci, " sg #%d: dma = %#llx, len = %#x (%d), num_trbs = %d\n",
2173 i, (unsigned long long)sg_dma_address(sg),
2174 len, len, num_trbs - previous_total_trbs);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002175
2176 len = min_t(int, len, temp);
2177 temp -= len;
2178 if (temp == 0)
2179 break;
2180 }
2181 xhci_dbg(xhci, "\n");
2182 if (!in_interrupt())
2183 dev_dbg(&urb->dev->dev, "ep %#x - urb len = %d, sglist used, num_trbs = %d\n",
2184 urb->ep->desc.bEndpointAddress,
2185 urb->transfer_buffer_length,
2186 num_trbs);
2187 return num_trbs;
2188}
2189
Sarah Sharp23e3be12009-04-29 19:05:20 -07002190static void check_trb_math(struct urb *urb, int num_trbs, int running_total)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002191{
2192 if (num_trbs != 0)
2193 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated number of "
2194 "TRBs, %d left\n", __func__,
2195 urb->ep->desc.bEndpointAddress, num_trbs);
2196 if (running_total != urb->transfer_buffer_length)
2197 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, "
2198 "queued %#x (%d), asked for %#x (%d)\n",
2199 __func__,
2200 urb->ep->desc.bEndpointAddress,
2201 running_total, running_total,
2202 urb->transfer_buffer_length,
2203 urb->transfer_buffer_length);
2204}
2205
Sarah Sharp23e3be12009-04-29 19:05:20 -07002206static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002207 unsigned int ep_index, unsigned int stream_id, int start_cycle,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002208 struct xhci_generic_trb *start_trb, struct xhci_td *td)
2209{
Sarah Sharp8a96c052009-04-27 19:59:19 -07002210 /*
2211 * Pass all the TRBs to the hardware at once and make sure this write
2212 * isn't reordered.
2213 */
2214 wmb();
2215 start_trb->field[3] |= start_cycle;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002216 ring_ep_doorbell(xhci, slot_id, ep_index, stream_id);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002217}
2218
Sarah Sharp624defa2009-09-02 12:14:28 -07002219/*
2220 * xHCI uses normal TRBs for both bulk and interrupt. When the interrupt
2221 * endpoint is to be serviced, the xHC will consume (at most) one TD. A TD
2222 * (comprised of sg list entries) can take several service intervals to
2223 * transmit.
2224 */
2225int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
2226 struct urb *urb, int slot_id, unsigned int ep_index)
2227{
2228 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci,
2229 xhci->devs[slot_id]->out_ctx, ep_index);
2230 int xhci_interval;
2231 int ep_interval;
2232
2233 xhci_interval = EP_INTERVAL_TO_UFRAMES(ep_ctx->ep_info);
2234 ep_interval = urb->interval;
2235 /* Convert to microframes */
2236 if (urb->dev->speed == USB_SPEED_LOW ||
2237 urb->dev->speed == USB_SPEED_FULL)
2238 ep_interval *= 8;
2239 /* FIXME change this to a warning and a suggestion to use the new API
2240 * to set the polling interval (once the API is added).
2241 */
2242 if (xhci_interval != ep_interval) {
2243 if (!printk_ratelimit())
2244 dev_dbg(&urb->dev->dev, "Driver uses different interval"
2245 " (%d microframe%s) than xHCI "
2246 "(%d microframe%s)\n",
2247 ep_interval,
2248 ep_interval == 1 ? "" : "s",
2249 xhci_interval,
2250 xhci_interval == 1 ? "" : "s");
2251 urb->interval = xhci_interval;
2252 /* Convert back to frames for LS/FS devices */
2253 if (urb->dev->speed == USB_SPEED_LOW ||
2254 urb->dev->speed == USB_SPEED_FULL)
2255 urb->interval /= 8;
2256 }
2257 return xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
2258}
2259
Sarah Sharp04dd9502009-11-11 10:28:30 -08002260/*
2261 * The TD size is the number of bytes remaining in the TD (including this TRB),
2262 * right shifted by 10.
2263 * It must fit in bits 21:17, so it can't be bigger than 31.
2264 */
2265static u32 xhci_td_remainder(unsigned int remainder)
2266{
2267 u32 max = (1 << (21 - 17 + 1)) - 1;
2268
2269 if ((remainder >> 10) >= max)
2270 return max << 17;
2271 else
2272 return (remainder >> 10) << 17;
2273}
2274
Sarah Sharp23e3be12009-04-29 19:05:20 -07002275static int queue_bulk_sg_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002276 struct urb *urb, int slot_id, unsigned int ep_index)
2277{
2278 struct xhci_ring *ep_ring;
2279 unsigned int num_trbs;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002280 struct urb_priv *urb_priv;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002281 struct xhci_td *td;
2282 struct scatterlist *sg;
2283 int num_sgs;
2284 int trb_buff_len, this_sg_len, running_total;
2285 bool first_trb;
2286 u64 addr;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002287 bool more_trbs_coming;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002288
2289 struct xhci_generic_trb *start_trb;
2290 int start_cycle;
2291
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002292 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2293 if (!ep_ring)
2294 return -EINVAL;
2295
Sarah Sharp8a96c052009-04-27 19:59:19 -07002296 num_trbs = count_sg_trbs_needed(xhci, urb);
2297 num_sgs = urb->num_sgs;
2298
Sarah Sharp23e3be12009-04-29 19:05:20 -07002299 trb_buff_len = prepare_transfer(xhci, xhci->devs[slot_id],
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002300 ep_index, urb->stream_id,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002301 num_trbs, urb, 0, mem_flags);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002302 if (trb_buff_len < 0)
2303 return trb_buff_len;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002304
2305 urb_priv = urb->hcpriv;
2306 td = urb_priv->td[0];
2307
Sarah Sharp8a96c052009-04-27 19:59:19 -07002308 /*
2309 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2310 * until we've finished creating all the other TRBs. The ring's cycle
2311 * state may change as we enqueue the other TRBs, so save it too.
2312 */
2313 start_trb = &ep_ring->enqueue->generic;
2314 start_cycle = ep_ring->cycle_state;
2315
2316 running_total = 0;
2317 /*
2318 * How much data is in the first TRB?
2319 *
2320 * There are three forces at work for TRB buffer pointers and lengths:
2321 * 1. We don't want to walk off the end of this sg-list entry buffer.
2322 * 2. The transfer length that the driver requested may be smaller than
2323 * the amount of memory allocated for this scatter-gather list.
2324 * 3. TRBs buffers can't cross 64KB boundaries.
2325 */
Matthew Wilcox910f8d02010-05-01 12:20:01 -06002326 sg = urb->sg;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002327 addr = (u64) sg_dma_address(sg);
2328 this_sg_len = sg_dma_len(sg);
2329 trb_buff_len = TRB_MAX_BUFF_SIZE -
2330 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2331 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2332 if (trb_buff_len > urb->transfer_buffer_length)
2333 trb_buff_len = urb->transfer_buffer_length;
2334 xhci_dbg(xhci, "First length to xfer from 1st sglist entry = %u\n",
2335 trb_buff_len);
2336
2337 first_trb = true;
2338 /* Queue the first TRB, even if it's zero-length */
2339 do {
2340 u32 field = 0;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002341 u32 length_field = 0;
Sarah Sharp04dd9502009-11-11 10:28:30 -08002342 u32 remainder = 0;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002343
2344 /* Don't change the cycle bit of the first TRB until later */
2345 if (first_trb)
2346 first_trb = false;
2347 else
2348 field |= ep_ring->cycle_state;
2349
2350 /* Chain all the TRBs together; clear the chain bit in the last
2351 * TRB to indicate it's the last TRB in the chain.
2352 */
2353 if (num_trbs > 1) {
2354 field |= TRB_CHAIN;
2355 } else {
2356 /* FIXME - add check for ZERO_PACKET flag before this */
2357 td->last_trb = ep_ring->enqueue;
2358 field |= TRB_IOC;
2359 }
2360 xhci_dbg(xhci, " sg entry: dma = %#x, len = %#x (%d), "
2361 "64KB boundary at %#x, end dma = %#x\n",
2362 (unsigned int) addr, trb_buff_len, trb_buff_len,
2363 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2364 (unsigned int) addr + trb_buff_len);
2365 if (TRB_MAX_BUFF_SIZE -
2366 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1)) < trb_buff_len) {
2367 xhci_warn(xhci, "WARN: sg dma xfer crosses 64KB boundaries!\n");
2368 xhci_dbg(xhci, "Next boundary at %#x, end dma = %#x\n",
2369 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2370 (unsigned int) addr + trb_buff_len);
2371 }
Sarah Sharp04dd9502009-11-11 10:28:30 -08002372 remainder = xhci_td_remainder(urb->transfer_buffer_length -
2373 running_total) ;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002374 length_field = TRB_LEN(trb_buff_len) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002375 remainder |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002376 TRB_INTR_TARGET(0);
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002377 if (num_trbs > 1)
2378 more_trbs_coming = true;
2379 else
2380 more_trbs_coming = false;
2381 queue_trb(xhci, ep_ring, false, more_trbs_coming,
Sarah Sharp8e595a52009-07-27 12:03:31 -07002382 lower_32_bits(addr),
2383 upper_32_bits(addr),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002384 length_field,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002385 /* We always want to know if the TRB was short,
2386 * or we won't get an event when it completes.
2387 * (Unless we use event data TRBs, which are a
2388 * waste of space and HC resources.)
2389 */
2390 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
2391 --num_trbs;
2392 running_total += trb_buff_len;
2393
2394 /* Calculate length for next transfer --
2395 * Are we done queueing all the TRBs for this sg entry?
2396 */
2397 this_sg_len -= trb_buff_len;
2398 if (this_sg_len == 0) {
2399 --num_sgs;
2400 if (num_sgs == 0)
2401 break;
2402 sg = sg_next(sg);
2403 addr = (u64) sg_dma_address(sg);
2404 this_sg_len = sg_dma_len(sg);
2405 } else {
2406 addr += trb_buff_len;
2407 }
2408
2409 trb_buff_len = TRB_MAX_BUFF_SIZE -
2410 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2411 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2412 if (running_total + trb_buff_len > urb->transfer_buffer_length)
2413 trb_buff_len =
2414 urb->transfer_buffer_length - running_total;
2415 } while (running_total < urb->transfer_buffer_length);
2416
2417 check_trb_math(urb, num_trbs, running_total);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002418 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
2419 start_cycle, start_trb, td);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002420 return 0;
2421}
2422
Sarah Sharpb10de142009-04-27 19:58:50 -07002423/* This is very similar to what ehci-q.c qtd_fill() does */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002424int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharpb10de142009-04-27 19:58:50 -07002425 struct urb *urb, int slot_id, unsigned int ep_index)
2426{
2427 struct xhci_ring *ep_ring;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002428 struct urb_priv *urb_priv;
Sarah Sharpb10de142009-04-27 19:58:50 -07002429 struct xhci_td *td;
2430 int num_trbs;
2431 struct xhci_generic_trb *start_trb;
2432 bool first_trb;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002433 bool more_trbs_coming;
Sarah Sharpb10de142009-04-27 19:58:50 -07002434 int start_cycle;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002435 u32 field, length_field;
Sarah Sharpb10de142009-04-27 19:58:50 -07002436
2437 int running_total, trb_buff_len, ret;
2438 u64 addr;
2439
Alan Sternff9c8952010-04-02 13:27:28 -04002440 if (urb->num_sgs)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002441 return queue_bulk_sg_tx(xhci, mem_flags, urb, slot_id, ep_index);
2442
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002443 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2444 if (!ep_ring)
2445 return -EINVAL;
Sarah Sharpb10de142009-04-27 19:58:50 -07002446
2447 num_trbs = 0;
2448 /* How much data is (potentially) left before the 64KB boundary? */
2449 running_total = TRB_MAX_BUFF_SIZE -
2450 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2451
2452 /* If there's some data on this 64KB chunk, or we have to send a
2453 * zero-length transfer, we need at least one TRB
2454 */
2455 if (running_total != 0 || urb->transfer_buffer_length == 0)
2456 num_trbs++;
2457 /* How many more 64KB chunks to transfer, how many more TRBs? */
2458 while (running_total < urb->transfer_buffer_length) {
2459 num_trbs++;
2460 running_total += TRB_MAX_BUFF_SIZE;
2461 }
2462 /* FIXME: this doesn't deal with URB_ZERO_PACKET - need one more */
2463
2464 if (!in_interrupt())
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002465 dev_dbg(&urb->dev->dev, "ep %#x - urb len = %#x (%d), addr = %#llx, num_trbs = %d\n",
Sarah Sharpb10de142009-04-27 19:58:50 -07002466 urb->ep->desc.bEndpointAddress,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002467 urb->transfer_buffer_length,
2468 urb->transfer_buffer_length,
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002469 (unsigned long long)urb->transfer_dma,
Sarah Sharpb10de142009-04-27 19:58:50 -07002470 num_trbs);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002471
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002472 ret = prepare_transfer(xhci, xhci->devs[slot_id],
2473 ep_index, urb->stream_id,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002474 num_trbs, urb, 0, mem_flags);
Sarah Sharpb10de142009-04-27 19:58:50 -07002475 if (ret < 0)
2476 return ret;
2477
Andiry Xu8e51adc2010-07-22 15:23:31 -07002478 urb_priv = urb->hcpriv;
2479 td = urb_priv->td[0];
2480
Sarah Sharpb10de142009-04-27 19:58:50 -07002481 /*
2482 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2483 * until we've finished creating all the other TRBs. The ring's cycle
2484 * state may change as we enqueue the other TRBs, so save it too.
2485 */
2486 start_trb = &ep_ring->enqueue->generic;
2487 start_cycle = ep_ring->cycle_state;
2488
2489 running_total = 0;
2490 /* How much data is in the first TRB? */
2491 addr = (u64) urb->transfer_dma;
2492 trb_buff_len = TRB_MAX_BUFF_SIZE -
2493 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2494 if (urb->transfer_buffer_length < trb_buff_len)
2495 trb_buff_len = urb->transfer_buffer_length;
2496
2497 first_trb = true;
2498
2499 /* Queue the first TRB, even if it's zero-length */
2500 do {
Sarah Sharp04dd9502009-11-11 10:28:30 -08002501 u32 remainder = 0;
Sarah Sharpb10de142009-04-27 19:58:50 -07002502 field = 0;
2503
2504 /* Don't change the cycle bit of the first TRB until later */
2505 if (first_trb)
2506 first_trb = false;
2507 else
2508 field |= ep_ring->cycle_state;
2509
2510 /* Chain all the TRBs together; clear the chain bit in the last
2511 * TRB to indicate it's the last TRB in the chain.
2512 */
2513 if (num_trbs > 1) {
2514 field |= TRB_CHAIN;
2515 } else {
2516 /* FIXME - add check for ZERO_PACKET flag before this */
2517 td->last_trb = ep_ring->enqueue;
2518 field |= TRB_IOC;
2519 }
Sarah Sharp04dd9502009-11-11 10:28:30 -08002520 remainder = xhci_td_remainder(urb->transfer_buffer_length -
2521 running_total);
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002522 length_field = TRB_LEN(trb_buff_len) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002523 remainder |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002524 TRB_INTR_TARGET(0);
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002525 if (num_trbs > 1)
2526 more_trbs_coming = true;
2527 else
2528 more_trbs_coming = false;
2529 queue_trb(xhci, ep_ring, false, more_trbs_coming,
Sarah Sharp8e595a52009-07-27 12:03:31 -07002530 lower_32_bits(addr),
2531 upper_32_bits(addr),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002532 length_field,
Sarah Sharpb10de142009-04-27 19:58:50 -07002533 /* We always want to know if the TRB was short,
2534 * or we won't get an event when it completes.
2535 * (Unless we use event data TRBs, which are a
2536 * waste of space and HC resources.)
2537 */
2538 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
2539 --num_trbs;
2540 running_total += trb_buff_len;
2541
2542 /* Calculate length for next transfer */
2543 addr += trb_buff_len;
2544 trb_buff_len = urb->transfer_buffer_length - running_total;
2545 if (trb_buff_len > TRB_MAX_BUFF_SIZE)
2546 trb_buff_len = TRB_MAX_BUFF_SIZE;
2547 } while (running_total < urb->transfer_buffer_length);
2548
Sarah Sharp8a96c052009-04-27 19:59:19 -07002549 check_trb_math(urb, num_trbs, running_total);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002550 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
2551 start_cycle, start_trb, td);
Sarah Sharpb10de142009-04-27 19:58:50 -07002552 return 0;
2553}
2554
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002555/* Caller must have locked xhci->lock */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002556int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002557 struct urb *urb, int slot_id, unsigned int ep_index)
2558{
2559 struct xhci_ring *ep_ring;
2560 int num_trbs;
2561 int ret;
2562 struct usb_ctrlrequest *setup;
2563 struct xhci_generic_trb *start_trb;
2564 int start_cycle;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002565 u32 field, length_field;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002566 struct urb_priv *urb_priv;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002567 struct xhci_td *td;
2568
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002569 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2570 if (!ep_ring)
2571 return -EINVAL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002572
2573 /*
2574 * Need to copy setup packet into setup TRB, so we can't use the setup
2575 * DMA address.
2576 */
2577 if (!urb->setup_packet)
2578 return -EINVAL;
2579
2580 if (!in_interrupt())
2581 xhci_dbg(xhci, "Queueing ctrl tx for slot id %d, ep %d\n",
2582 slot_id, ep_index);
2583 /* 1 TRB for setup, 1 for status */
2584 num_trbs = 2;
2585 /*
2586 * Don't need to check if we need additional event data and normal TRBs,
2587 * since data in control transfers will never get bigger than 16MB
2588 * XXX: can we get a buffer that crosses 64KB boundaries?
2589 */
2590 if (urb->transfer_buffer_length > 0)
2591 num_trbs++;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002592 ret = prepare_transfer(xhci, xhci->devs[slot_id],
2593 ep_index, urb->stream_id,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002594 num_trbs, urb, 0, mem_flags);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002595 if (ret < 0)
2596 return ret;
2597
Andiry Xu8e51adc2010-07-22 15:23:31 -07002598 urb_priv = urb->hcpriv;
2599 td = urb_priv->td[0];
2600
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002601 /*
2602 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2603 * until we've finished creating all the other TRBs. The ring's cycle
2604 * state may change as we enqueue the other TRBs, so save it too.
2605 */
2606 start_trb = &ep_ring->enqueue->generic;
2607 start_cycle = ep_ring->cycle_state;
2608
2609 /* Queue setup TRB - see section 6.4.1.2.1 */
2610 /* FIXME better way to translate setup_packet into two u32 fields? */
2611 setup = (struct usb_ctrlrequest *) urb->setup_packet;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002612 queue_trb(xhci, ep_ring, false, true,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002613 /* FIXME endianness is probably going to bite my ass here. */
2614 setup->bRequestType | setup->bRequest << 8 | setup->wValue << 16,
2615 setup->wIndex | setup->wLength << 16,
2616 TRB_LEN(8) | TRB_INTR_TARGET(0),
2617 /* Immediate data in pointer */
2618 TRB_IDT | TRB_TYPE(TRB_SETUP));
2619
2620 /* If there's data, queue data TRBs */
2621 field = 0;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002622 length_field = TRB_LEN(urb->transfer_buffer_length) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002623 xhci_td_remainder(urb->transfer_buffer_length) |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002624 TRB_INTR_TARGET(0);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002625 if (urb->transfer_buffer_length > 0) {
2626 if (setup->bRequestType & USB_DIR_IN)
2627 field |= TRB_DIR_IN;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002628 queue_trb(xhci, ep_ring, false, true,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002629 lower_32_bits(urb->transfer_dma),
2630 upper_32_bits(urb->transfer_dma),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002631 length_field,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002632 /* Event on short tx */
2633 field | TRB_ISP | TRB_TYPE(TRB_DATA) | ep_ring->cycle_state);
2634 }
2635
2636 /* Save the DMA address of the last TRB in the TD */
2637 td->last_trb = ep_ring->enqueue;
2638
2639 /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */
2640 /* If the device sent data, the status stage is an OUT transfer */
2641 if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN)
2642 field = 0;
2643 else
2644 field = TRB_DIR_IN;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002645 queue_trb(xhci, ep_ring, false, false,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002646 0,
2647 0,
2648 TRB_INTR_TARGET(0),
2649 /* Event on completion */
2650 field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state);
2651
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002652 giveback_first_trb(xhci, slot_id, ep_index, 0,
2653 start_cycle, start_trb, td);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002654 return 0;
2655}
2656
Andiry Xu04e51902010-07-22 15:23:39 -07002657static int count_isoc_trbs_needed(struct xhci_hcd *xhci,
2658 struct urb *urb, int i)
2659{
2660 int num_trbs = 0;
2661 u64 addr, td_len, running_total;
2662
2663 addr = (u64) (urb->transfer_dma + urb->iso_frame_desc[i].offset);
2664 td_len = urb->iso_frame_desc[i].length;
2665
2666 running_total = TRB_MAX_BUFF_SIZE -
2667 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2668 if (running_total != 0)
2669 num_trbs++;
2670
2671 while (running_total < td_len) {
2672 num_trbs++;
2673 running_total += TRB_MAX_BUFF_SIZE;
2674 }
2675
2676 return num_trbs;
2677}
2678
2679/* This is for isoc transfer */
2680static int xhci_queue_isoc_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
2681 struct urb *urb, int slot_id, unsigned int ep_index)
2682{
2683 struct xhci_ring *ep_ring;
2684 struct urb_priv *urb_priv;
2685 struct xhci_td *td;
2686 int num_tds, trbs_per_td;
2687 struct xhci_generic_trb *start_trb;
2688 bool first_trb;
2689 int start_cycle;
2690 u32 field, length_field;
2691 int running_total, trb_buff_len, td_len, td_remain_len, ret;
2692 u64 start_addr, addr;
2693 int i, j;
2694
2695 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
2696
2697 num_tds = urb->number_of_packets;
2698 if (num_tds < 1) {
2699 xhci_dbg(xhci, "Isoc URB with zero packets?\n");
2700 return -EINVAL;
2701 }
2702
2703 if (!in_interrupt())
2704 dev_dbg(&urb->dev->dev, "ep %#x - urb len = %#x (%d),"
2705 " addr = %#llx, num_tds = %d\n",
2706 urb->ep->desc.bEndpointAddress,
2707 urb->transfer_buffer_length,
2708 urb->transfer_buffer_length,
2709 (unsigned long long)urb->transfer_dma,
2710 num_tds);
2711
2712 start_addr = (u64) urb->transfer_dma;
2713 start_trb = &ep_ring->enqueue->generic;
2714 start_cycle = ep_ring->cycle_state;
2715
2716 /* Queue the first TRB, even if it's zero-length */
2717 for (i = 0; i < num_tds; i++) {
2718 first_trb = true;
2719
2720 running_total = 0;
2721 addr = start_addr + urb->iso_frame_desc[i].offset;
2722 td_len = urb->iso_frame_desc[i].length;
2723 td_remain_len = td_len;
2724
2725 trbs_per_td = count_isoc_trbs_needed(xhci, urb, i);
2726
2727 ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index,
2728 urb->stream_id, trbs_per_td, urb, i, mem_flags);
2729 if (ret < 0)
2730 return ret;
2731
2732 urb_priv = urb->hcpriv;
2733 td = urb_priv->td[i];
2734
2735 for (j = 0; j < trbs_per_td; j++) {
2736 u32 remainder = 0;
2737 field = 0;
2738
2739 if (first_trb) {
2740 /* Queue the isoc TRB */
2741 field |= TRB_TYPE(TRB_ISOC);
2742 /* Assume URB_ISO_ASAP is set */
2743 field |= TRB_SIA;
2744 if (i > 0)
2745 field |= ep_ring->cycle_state;
2746 first_trb = false;
2747 } else {
2748 /* Queue other normal TRBs */
2749 field |= TRB_TYPE(TRB_NORMAL);
2750 field |= ep_ring->cycle_state;
2751 }
2752
2753 /* Chain all the TRBs together; clear the chain bit in
2754 * the last TRB to indicate it's the last TRB in the
2755 * chain.
2756 */
2757 if (j < trbs_per_td - 1) {
2758 field |= TRB_CHAIN;
2759 } else {
2760 td->last_trb = ep_ring->enqueue;
2761 field |= TRB_IOC;
2762 }
2763
2764 /* Calculate TRB length */
2765 trb_buff_len = TRB_MAX_BUFF_SIZE -
2766 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2767 if (trb_buff_len > td_remain_len)
2768 trb_buff_len = td_remain_len;
2769
2770 remainder = xhci_td_remainder(td_len - running_total);
2771 length_field = TRB_LEN(trb_buff_len) |
2772 remainder |
2773 TRB_INTR_TARGET(0);
2774 queue_trb(xhci, ep_ring, false, false,
2775 lower_32_bits(addr),
2776 upper_32_bits(addr),
2777 length_field,
2778 /* We always want to know if the TRB was short,
2779 * or we won't get an event when it completes.
2780 * (Unless we use event data TRBs, which are a
2781 * waste of space and HC resources.)
2782 */
2783 field | TRB_ISP);
2784 running_total += trb_buff_len;
2785
2786 addr += trb_buff_len;
2787 td_remain_len -= trb_buff_len;
2788 }
2789
2790 /* Check TD length */
2791 if (running_total != td_len) {
2792 xhci_err(xhci, "ISOC TD length unmatch\n");
2793 return -EINVAL;
2794 }
2795 }
2796
2797 wmb();
2798 start_trb->field[3] |= start_cycle;
2799
2800 ring_ep_doorbell(xhci, slot_id, ep_index, urb->stream_id);
2801 return 0;
2802}
2803
2804/*
2805 * Check transfer ring to guarantee there is enough room for the urb.
2806 * Update ISO URB start_frame and interval.
2807 * Update interval as xhci_queue_intr_tx does. Just use xhci frame_index to
2808 * update the urb->start_frame by now.
2809 * Always assume URB_ISO_ASAP set, and NEVER use urb->start_frame as input.
2810 */
2811int xhci_queue_isoc_tx_prepare(struct xhci_hcd *xhci, gfp_t mem_flags,
2812 struct urb *urb, int slot_id, unsigned int ep_index)
2813{
2814 struct xhci_virt_device *xdev;
2815 struct xhci_ring *ep_ring;
2816 struct xhci_ep_ctx *ep_ctx;
2817 int start_frame;
2818 int xhci_interval;
2819 int ep_interval;
2820 int num_tds, num_trbs, i;
2821 int ret;
2822
2823 xdev = xhci->devs[slot_id];
2824 ep_ring = xdev->eps[ep_index].ring;
2825 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
2826
2827 num_trbs = 0;
2828 num_tds = urb->number_of_packets;
2829 for (i = 0; i < num_tds; i++)
2830 num_trbs += count_isoc_trbs_needed(xhci, urb, i);
2831
2832 /* Check the ring to guarantee there is enough room for the whole urb.
2833 * Do not insert any td of the urb to the ring if the check failed.
2834 */
2835 ret = prepare_ring(xhci, ep_ring, ep_ctx->ep_info & EP_STATE_MASK,
2836 num_trbs, mem_flags);
2837 if (ret)
2838 return ret;
2839
2840 start_frame = xhci_readl(xhci, &xhci->run_regs->microframe_index);
2841 start_frame &= 0x3fff;
2842
2843 urb->start_frame = start_frame;
2844 if (urb->dev->speed == USB_SPEED_LOW ||
2845 urb->dev->speed == USB_SPEED_FULL)
2846 urb->start_frame >>= 3;
2847
2848 xhci_interval = EP_INTERVAL_TO_UFRAMES(ep_ctx->ep_info);
2849 ep_interval = urb->interval;
2850 /* Convert to microframes */
2851 if (urb->dev->speed == USB_SPEED_LOW ||
2852 urb->dev->speed == USB_SPEED_FULL)
2853 ep_interval *= 8;
2854 /* FIXME change this to a warning and a suggestion to use the new API
2855 * to set the polling interval (once the API is added).
2856 */
2857 if (xhci_interval != ep_interval) {
2858 if (!printk_ratelimit())
2859 dev_dbg(&urb->dev->dev, "Driver uses different interval"
2860 " (%d microframe%s) than xHCI "
2861 "(%d microframe%s)\n",
2862 ep_interval,
2863 ep_interval == 1 ? "" : "s",
2864 xhci_interval,
2865 xhci_interval == 1 ? "" : "s");
2866 urb->interval = xhci_interval;
2867 /* Convert back to frames for LS/FS devices */
2868 if (urb->dev->speed == USB_SPEED_LOW ||
2869 urb->dev->speed == USB_SPEED_FULL)
2870 urb->interval /= 8;
2871 }
2872 return xhci_queue_isoc_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
2873}
2874
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002875/**** Command Ring Operations ****/
2876
Sarah Sharp913a8a32009-09-04 10:53:13 -07002877/* Generic function for queueing a command TRB on the command ring.
2878 * Check to make sure there's room on the command ring for one command TRB.
2879 * Also check that there's room reserved for commands that must not fail.
2880 * If this is a command that must not fail, meaning command_must_succeed = TRUE,
2881 * then only check for the number of reserved spots.
2882 * Don't decrement xhci->cmd_ring_reserved_trbs after we've queued the TRB
2883 * because the command event handler may want to resubmit a failed command.
2884 */
2885static int queue_command(struct xhci_hcd *xhci, u32 field1, u32 field2,
2886 u32 field3, u32 field4, bool command_must_succeed)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002887{
Sarah Sharp913a8a32009-09-04 10:53:13 -07002888 int reserved_trbs = xhci->cmd_ring_reserved_trbs;
Sarah Sharpd1dc9082010-07-09 17:08:38 +02002889 int ret;
2890
Sarah Sharp913a8a32009-09-04 10:53:13 -07002891 if (!command_must_succeed)
2892 reserved_trbs++;
2893
Sarah Sharpd1dc9082010-07-09 17:08:38 +02002894 ret = prepare_ring(xhci, xhci->cmd_ring, EP_STATE_RUNNING,
2895 reserved_trbs, GFP_ATOMIC);
2896 if (ret < 0) {
2897 xhci_err(xhci, "ERR: No room for command on command ring\n");
Sarah Sharp913a8a32009-09-04 10:53:13 -07002898 if (command_must_succeed)
2899 xhci_err(xhci, "ERR: Reserved TRB counting for "
2900 "unfailable commands failed.\n");
Sarah Sharpd1dc9082010-07-09 17:08:38 +02002901 return ret;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002902 }
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002903 queue_trb(xhci, xhci->cmd_ring, false, false, field1, field2, field3,
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002904 field4 | xhci->cmd_ring->cycle_state);
2905 return 0;
2906}
2907
2908/* Queue a no-op command on the command ring */
2909static int queue_cmd_noop(struct xhci_hcd *xhci)
2910{
Sarah Sharp913a8a32009-09-04 10:53:13 -07002911 return queue_command(xhci, 0, 0, 0, TRB_TYPE(TRB_CMD_NOOP), false);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002912}
2913
2914/*
2915 * Place a no-op command on the command ring to test the command and
2916 * event ring.
2917 */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002918void *xhci_setup_one_noop(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002919{
2920 if (queue_cmd_noop(xhci) < 0)
2921 return NULL;
2922 xhci->noops_submitted++;
Sarah Sharp23e3be12009-04-29 19:05:20 -07002923 return xhci_ring_cmd_db;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002924}
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002925
2926/* Queue a slot enable or disable request on the command ring */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002927int xhci_queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002928{
2929 return queue_command(xhci, 0, 0, 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002930 TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id), false);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002931}
2932
2933/* Queue an address device command TRB */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002934int xhci_queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
2935 u32 slot_id)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002936{
Sarah Sharp8e595a52009-07-27 12:03:31 -07002937 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
2938 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002939 TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id),
2940 false);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002941}
Sarah Sharpf94e01862009-04-27 19:58:38 -07002942
Sarah Sharp02386342010-05-24 13:25:28 -07002943int xhci_queue_vendor_command(struct xhci_hcd *xhci,
2944 u32 field1, u32 field2, u32 field3, u32 field4)
2945{
2946 return queue_command(xhci, field1, field2, field3, field4, false);
2947}
2948
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08002949/* Queue a reset device command TRB */
2950int xhci_queue_reset_device(struct xhci_hcd *xhci, u32 slot_id)
2951{
2952 return queue_command(xhci, 0, 0, 0,
2953 TRB_TYPE(TRB_RESET_DEV) | SLOT_ID_FOR_TRB(slot_id),
2954 false);
2955}
2956
Sarah Sharpf94e01862009-04-27 19:58:38 -07002957/* Queue a configure endpoint command TRB */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002958int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002959 u32 slot_id, bool command_must_succeed)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002960{
Sarah Sharp8e595a52009-07-27 12:03:31 -07002961 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
2962 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002963 TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id),
2964 command_must_succeed);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002965}
Sarah Sharpae636742009-04-29 19:02:31 -07002966
Sarah Sharpf2217e82009-08-07 14:04:43 -07002967/* Queue an evaluate context command TRB */
2968int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
2969 u32 slot_id)
2970{
2971 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
2972 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002973 TRB_TYPE(TRB_EVAL_CONTEXT) | SLOT_ID_FOR_TRB(slot_id),
2974 false);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002975}
2976
Sarah Sharp23e3be12009-04-29 19:05:20 -07002977int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpae636742009-04-29 19:02:31 -07002978 unsigned int ep_index)
2979{
2980 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
2981 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
2982 u32 type = TRB_TYPE(TRB_STOP_RING);
2983
2984 return queue_command(xhci, 0, 0, 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002985 trb_slot_id | trb_ep_index | type, false);
Sarah Sharpae636742009-04-29 19:02:31 -07002986}
2987
2988/* Set Transfer Ring Dequeue Pointer command.
2989 * This should not be used for endpoints that have streams enabled.
2990 */
2991static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002992 unsigned int ep_index, unsigned int stream_id,
2993 struct xhci_segment *deq_seg,
Sarah Sharpae636742009-04-29 19:02:31 -07002994 union xhci_trb *deq_ptr, u32 cycle_state)
2995{
2996 dma_addr_t addr;
2997 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
2998 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002999 u32 trb_stream_id = STREAM_ID_FOR_TRB(stream_id);
Sarah Sharpae636742009-04-29 19:02:31 -07003000 u32 type = TRB_TYPE(TRB_SET_DEQ);
3001
Sarah Sharp23e3be12009-04-29 19:05:20 -07003002 addr = xhci_trb_virt_to_dma(deq_seg, deq_ptr);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07003003 if (addr == 0) {
Sarah Sharpae636742009-04-29 19:02:31 -07003004 xhci_warn(xhci, "WARN Cannot submit Set TR Deq Ptr\n");
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07003005 xhci_warn(xhci, "WARN deq seg = %p, deq pt = %p\n",
3006 deq_seg, deq_ptr);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07003007 return 0;
3008 }
Sarah Sharp8e595a52009-07-27 12:03:31 -07003009 return queue_command(xhci, lower_32_bits(addr) | cycle_state,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003010 upper_32_bits(addr), trb_stream_id,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003011 trb_slot_id | trb_ep_index | type, false);
Sarah Sharpae636742009-04-29 19:02:31 -07003012}
Sarah Sharpa1587d92009-07-27 12:03:15 -07003013
3014int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id,
3015 unsigned int ep_index)
3016{
3017 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3018 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
3019 u32 type = TRB_TYPE(TRB_RESET_EP);
3020
Sarah Sharp913a8a32009-09-04 10:53:13 -07003021 return queue_command(xhci, 0, 0, 0, trb_slot_id | trb_ep_index | type,
3022 false);
Sarah Sharpa1587d92009-07-27 12:03:15 -07003023}