blob: 7cea2483e59326effcd67cfe7d544f40acd13175 [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
Andiry Xube88fe42010-10-14 07:22:57 -070071static int handle_cmd_in_cmd_wait_list(struct xhci_hcd *xhci,
72 struct xhci_virt_device *virt_dev,
73 struct xhci_event_cmd *event);
74
Sarah Sharp7f84eef2009-04-27 19:53:56 -070075/*
76 * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA
77 * address of the TRB.
78 */
Sarah Sharp23e3be12009-04-29 19:05:20 -070079dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg,
Sarah Sharp7f84eef2009-04-27 19:53:56 -070080 union xhci_trb *trb)
81{
Sarah Sharp6071d832009-05-14 11:44:14 -070082 unsigned long segment_offset;
Sarah Sharp7f84eef2009-04-27 19:53:56 -070083
Sarah Sharp6071d832009-05-14 11:44:14 -070084 if (!seg || !trb || trb < seg->trbs)
Sarah Sharp7f84eef2009-04-27 19:53:56 -070085 return 0;
Sarah Sharp6071d832009-05-14 11:44:14 -070086 /* offset in TRBs */
87 segment_offset = trb - seg->trbs;
88 if (segment_offset > TRBS_PER_SEGMENT)
Sarah Sharp7f84eef2009-04-27 19:53:56 -070089 return 0;
Sarah Sharp6071d832009-05-14 11:44:14 -070090 return seg->dma + (segment_offset * sizeof(*trb));
Sarah Sharp7f84eef2009-04-27 19:53:56 -070091}
92
93/* Does this link TRB point to the first segment in a ring,
94 * or was the previous TRB the last TRB on the last segment in the ERST?
95 */
96static inline bool last_trb_on_last_seg(struct xhci_hcd *xhci, struct xhci_ring *ring,
97 struct xhci_segment *seg, union xhci_trb *trb)
98{
99 if (ring == xhci->event_ring)
100 return (trb == &seg->trbs[TRBS_PER_SEGMENT]) &&
101 (seg->next == xhci->event_ring->first_seg);
102 else
103 return trb->link.control & LINK_TOGGLE;
104}
105
106/* Is this TRB a link TRB or was the last TRB the last TRB in this event ring
107 * segment? I.e. would the updated event TRB pointer step off the end of the
108 * event seg?
109 */
110static inline int last_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
111 struct xhci_segment *seg, union xhci_trb *trb)
112{
113 if (ring == xhci->event_ring)
114 return trb == &seg->trbs[TRBS_PER_SEGMENT];
115 else
116 return (trb->link.control & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK);
117}
118
John Youn6c12db92010-05-10 15:33:00 -0700119static inline int enqueue_is_link_trb(struct xhci_ring *ring)
120{
121 struct xhci_link_trb *link = &ring->enqueue->link;
122 return ((link->control & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK));
123}
124
Sarah Sharpae636742009-04-29 19:02:31 -0700125/* Updates trb to point to the next TRB in the ring, and updates seg if the next
126 * TRB is in a new segment. This does not skip over link TRBs, and it does not
127 * effect the ring dequeue or enqueue pointers.
128 */
129static void next_trb(struct xhci_hcd *xhci,
130 struct xhci_ring *ring,
131 struct xhci_segment **seg,
132 union xhci_trb **trb)
133{
134 if (last_trb(xhci, ring, *seg, *trb)) {
135 *seg = (*seg)->next;
136 *trb = ((*seg)->trbs);
137 } else {
John Youna1669b22010-08-09 13:56:11 -0700138 (*trb)++;
Sarah Sharpae636742009-04-29 19:02:31 -0700139 }
140}
141
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700142/*
143 * See Cycle bit rules. SW is the consumer for the event ring only.
144 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
145 */
146static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer)
147{
148 union xhci_trb *next = ++(ring->dequeue);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700149 unsigned long long addr;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700150
151 ring->deq_updates++;
152 /* Update the dequeue pointer further if that was a link TRB or we're at
153 * the end of an event ring segment (which doesn't have link TRBS)
154 */
155 while (last_trb(xhci, ring, ring->deq_seg, next)) {
156 if (consumer && last_trb_on_last_seg(xhci, ring, ring->deq_seg, next)) {
157 ring->cycle_state = (ring->cycle_state ? 0 : 1);
158 if (!in_interrupt())
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700159 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
160 ring,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700161 (unsigned int) ring->cycle_state);
162 }
163 ring->deq_seg = ring->deq_seg->next;
164 ring->dequeue = ring->deq_seg->trbs;
165 next = ring->dequeue;
166 }
Sarah Sharp66e49d82009-07-27 12:03:46 -0700167 addr = (unsigned long long) xhci_trb_virt_to_dma(ring->deq_seg, ring->dequeue);
168 if (ring == xhci->event_ring)
169 xhci_dbg(xhci, "Event ring deq = 0x%llx (DMA)\n", addr);
170 else if (ring == xhci->cmd_ring)
171 xhci_dbg(xhci, "Command ring deq = 0x%llx (DMA)\n", addr);
172 else
173 xhci_dbg(xhci, "Ring deq = 0x%llx (DMA)\n", addr);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700174}
175
176/*
177 * See Cycle bit rules. SW is the consumer for the event ring only.
178 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
179 *
180 * If we've just enqueued a TRB that is in the middle of a TD (meaning the
181 * chain bit is set), then set the chain bit in all the following link TRBs.
182 * If we've enqueued the last TRB in a TD, make sure the following link TRBs
183 * have their chain bit cleared (so that each Link TRB is a separate TD).
184 *
185 * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit
Sarah Sharpb0567b32009-08-07 14:04:36 -0700186 * set, but other sections talk about dealing with the chain bit set. This was
187 * fixed in the 0.96 specification errata, but we have to assume that all 0.95
188 * xHCI hardware can't handle the chain bit being cleared on a link TRB.
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700189 *
190 * @more_trbs_coming: Will you enqueue more TRBs before calling
191 * prepare_transfer()?
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700192 */
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700193static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring,
194 bool consumer, bool more_trbs_coming)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700195{
196 u32 chain;
197 union xhci_trb *next;
Sarah Sharp66e49d82009-07-27 12:03:46 -0700198 unsigned long long addr;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700199
200 chain = ring->enqueue->generic.field[3] & TRB_CHAIN;
201 next = ++(ring->enqueue);
202
203 ring->enq_updates++;
204 /* Update the dequeue pointer further if that was a link TRB or we're at
205 * the end of an event ring segment (which doesn't have link TRBS)
206 */
207 while (last_trb(xhci, ring, ring->enq_seg, next)) {
208 if (!consumer) {
209 if (ring != xhci->event_ring) {
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700210 /*
211 * If the caller doesn't plan on enqueueing more
212 * TDs before ringing the doorbell, then we
213 * don't want to give the link TRB to the
214 * hardware just yet. We'll give the link TRB
215 * back in prepare_ring() just before we enqueue
216 * the TD at the top of the ring.
217 */
218 if (!chain && !more_trbs_coming)
John Youn6c12db92010-05-10 15:33:00 -0700219 break;
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700220
221 /* If we're not dealing with 0.95 hardware,
222 * carry over the chain bit of the previous TRB
223 * (which may mean the chain bit is cleared).
224 */
225 if (!xhci_link_trb_quirk(xhci)) {
226 next->link.control &= ~TRB_CHAIN;
227 next->link.control |= chain;
Sarah Sharpb0567b32009-08-07 14:04:36 -0700228 }
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700229 /* Give this link TRB to the hardware */
230 wmb();
231 next->link.control ^= TRB_CYCLE;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700232 }
233 /* Toggle the cycle bit after the last ring segment. */
234 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
235 ring->cycle_state = (ring->cycle_state ? 0 : 1);
236 if (!in_interrupt())
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700237 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
238 ring,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700239 (unsigned int) ring->cycle_state);
240 }
241 }
242 ring->enq_seg = ring->enq_seg->next;
243 ring->enqueue = ring->enq_seg->trbs;
244 next = ring->enqueue;
245 }
Sarah Sharp66e49d82009-07-27 12:03:46 -0700246 addr = (unsigned long long) xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
247 if (ring == xhci->event_ring)
248 xhci_dbg(xhci, "Event ring enq = 0x%llx (DMA)\n", addr);
249 else if (ring == xhci->cmd_ring)
250 xhci_dbg(xhci, "Command ring enq = 0x%llx (DMA)\n", addr);
251 else
252 xhci_dbg(xhci, "Ring enq = 0x%llx (DMA)\n", addr);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700253}
254
255/*
256 * Check to see if there's room to enqueue num_trbs on the ring. See rules
257 * above.
258 * FIXME: this would be simpler and faster if we just kept track of the number
259 * of free TRBs in a ring.
260 */
261static int room_on_ring(struct xhci_hcd *xhci, struct xhci_ring *ring,
262 unsigned int num_trbs)
263{
264 int i;
265 union xhci_trb *enq = ring->enqueue;
266 struct xhci_segment *enq_seg = ring->enq_seg;
Sarah Sharp44ebd032010-05-18 16:05:26 -0700267 struct xhci_segment *cur_seg;
268 unsigned int left_on_ring;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700269
John Youn6c12db92010-05-10 15:33:00 -0700270 /* If we are currently pointing to a link TRB, advance the
271 * enqueue pointer before checking for space */
272 while (last_trb(xhci, ring, enq_seg, enq)) {
273 enq_seg = enq_seg->next;
274 enq = enq_seg->trbs;
275 }
276
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700277 /* Check if ring is empty */
Sarah Sharp44ebd032010-05-18 16:05:26 -0700278 if (enq == ring->dequeue) {
279 /* Can't use link trbs */
280 left_on_ring = TRBS_PER_SEGMENT - 1;
281 for (cur_seg = enq_seg->next; cur_seg != enq_seg;
282 cur_seg = cur_seg->next)
283 left_on_ring += TRBS_PER_SEGMENT - 1;
284
285 /* Always need one TRB free in the ring. */
286 left_on_ring -= 1;
287 if (num_trbs > left_on_ring) {
288 xhci_warn(xhci, "Not enough room on ring; "
289 "need %u TRBs, %u TRBs left\n",
290 num_trbs, left_on_ring);
291 return 0;
292 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700293 return 1;
Sarah Sharp44ebd032010-05-18 16:05:26 -0700294 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700295 /* Make sure there's an extra empty TRB available */
296 for (i = 0; i <= num_trbs; ++i) {
297 if (enq == ring->dequeue)
298 return 0;
299 enq++;
300 while (last_trb(xhci, ring, enq_seg, enq)) {
301 enq_seg = enq_seg->next;
302 enq = enq_seg->trbs;
303 }
304 }
305 return 1;
306}
307
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700308/* Ring the host controller doorbell after placing a command on the ring */
Sarah Sharp23e3be12009-04-29 19:05:20 -0700309void xhci_ring_cmd_db(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700310{
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700311 xhci_dbg(xhci, "// Ding dong!\n");
Matthew Wilcox50d64672010-12-15 14:18:11 -0500312 xhci_writel(xhci, DB_VALUE_HOST, &xhci->dba->doorbell[0]);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700313 /* Flush PCI posted writes */
314 xhci_readl(xhci, &xhci->dba->doorbell[0]);
315}
316
Andiry Xube88fe42010-10-14 07:22:57 -0700317void xhci_ring_ep_doorbell(struct xhci_hcd *xhci,
Sarah Sharpae636742009-04-29 19:02:31 -0700318 unsigned int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700319 unsigned int ep_index,
320 unsigned int stream_id)
Sarah Sharpae636742009-04-29 19:02:31 -0700321{
Sarah Sharpae636742009-04-29 19:02:31 -0700322 __u32 __iomem *db_addr = &xhci->dba->doorbell[slot_id];
Matthew Wilcox50d64672010-12-15 14:18:11 -0500323 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
324 unsigned int ep_state = ep->ep_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700325
Sarah Sharpae636742009-04-29 19:02:31 -0700326 /* Don't ring the doorbell for this endpoint if there are pending
Matthew Wilcox50d64672010-12-15 14:18:11 -0500327 * cancellations because we don't want to interrupt processing.
Sarah Sharp8df75f42010-04-02 15:34:16 -0700328 * We don't want to restart any stream rings if there's a set dequeue
329 * pointer command pending because the device can choose to start any
330 * stream once the endpoint is on the HW schedule.
331 * FIXME - check all the stream rings for pending cancellations.
Sarah Sharpae636742009-04-29 19:02:31 -0700332 */
Matthew Wilcox50d64672010-12-15 14:18:11 -0500333 if ((ep_state & EP_HALT_PENDING) || (ep_state & SET_DEQ_PENDING) ||
334 (ep_state & EP_HALTED))
335 return;
336 xhci_writel(xhci, DB_VALUE(ep_index, stream_id), db_addr);
337 /* The CPU has better things to do at this point than wait for a
338 * write-posting flush. It'll get there soon enough.
339 */
Sarah Sharpae636742009-04-29 19:02:31 -0700340}
341
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700342/* Ring the doorbell for any rings with pending URBs */
343static void ring_doorbell_for_active_rings(struct xhci_hcd *xhci,
344 unsigned int slot_id,
345 unsigned int ep_index)
346{
347 unsigned int stream_id;
348 struct xhci_virt_ep *ep;
349
350 ep = &xhci->devs[slot_id]->eps[ep_index];
351
352 /* A ring has pending URBs if its TD list is not empty */
353 if (!(ep->ep_state & EP_HAS_STREAMS)) {
354 if (!(list_empty(&ep->ring->td_list)))
Andiry Xube88fe42010-10-14 07:22:57 -0700355 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, 0);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700356 return;
357 }
358
359 for (stream_id = 1; stream_id < ep->stream_info->num_streams;
360 stream_id++) {
361 struct xhci_stream_info *stream_info = ep->stream_info;
362 if (!list_empty(&stream_info->stream_rings[stream_id]->td_list))
Andiry Xube88fe42010-10-14 07:22:57 -0700363 xhci_ring_ep_doorbell(xhci, slot_id, ep_index,
364 stream_id);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700365 }
366}
367
Sarah Sharpae636742009-04-29 19:02:31 -0700368/*
369 * Find the segment that trb is in. Start searching in start_seg.
370 * If we must move past a segment that has a link TRB with a toggle cycle state
371 * bit set, then we will toggle the value pointed at by cycle_state.
372 */
373static struct xhci_segment *find_trb_seg(
374 struct xhci_segment *start_seg,
375 union xhci_trb *trb, int *cycle_state)
376{
377 struct xhci_segment *cur_seg = start_seg;
378 struct xhci_generic_trb *generic_trb;
379
380 while (cur_seg->trbs > trb ||
381 &cur_seg->trbs[TRBS_PER_SEGMENT - 1] < trb) {
382 generic_trb = &cur_seg->trbs[TRBS_PER_SEGMENT - 1].generic;
Andiry Xu54b5acf2010-05-10 19:57:17 -0700383 if ((generic_trb->field[3] & TRB_TYPE_BITMASK) ==
384 TRB_TYPE(TRB_LINK) &&
Sarah Sharpae636742009-04-29 19:02:31 -0700385 (generic_trb->field[3] & LINK_TOGGLE))
386 *cycle_state = ~(*cycle_state) & 0x1;
387 cur_seg = cur_seg->next;
388 if (cur_seg == start_seg)
389 /* Looped over the entire list. Oops! */
Randy Dunlap326b4812010-04-19 08:53:50 -0700390 return NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700391 }
392 return cur_seg;
393}
394
Sarah Sharp021bff92010-07-29 22:12:20 -0700395
396static struct xhci_ring *xhci_triad_to_transfer_ring(struct xhci_hcd *xhci,
397 unsigned int slot_id, unsigned int ep_index,
398 unsigned int stream_id)
399{
400 struct xhci_virt_ep *ep;
401
402 ep = &xhci->devs[slot_id]->eps[ep_index];
403 /* Common case: no streams */
404 if (!(ep->ep_state & EP_HAS_STREAMS))
405 return ep->ring;
406
407 if (stream_id == 0) {
408 xhci_warn(xhci,
409 "WARN: Slot ID %u, ep index %u has streams, "
410 "but URB has no stream ID.\n",
411 slot_id, ep_index);
412 return NULL;
413 }
414
415 if (stream_id < ep->stream_info->num_streams)
416 return ep->stream_info->stream_rings[stream_id];
417
418 xhci_warn(xhci,
419 "WARN: Slot ID %u, ep index %u has "
420 "stream IDs 1 to %u allocated, "
421 "but stream ID %u is requested.\n",
422 slot_id, ep_index,
423 ep->stream_info->num_streams - 1,
424 stream_id);
425 return NULL;
426}
427
428/* Get the right ring for the given URB.
429 * If the endpoint supports streams, boundary check the URB's stream ID.
430 * If the endpoint doesn't support streams, return the singular endpoint ring.
431 */
432static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
433 struct urb *urb)
434{
435 return xhci_triad_to_transfer_ring(xhci, urb->dev->slot_id,
436 xhci_get_endpoint_index(&urb->ep->desc), urb->stream_id);
437}
438
Sarah Sharpae636742009-04-29 19:02:31 -0700439/*
440 * Move the xHC's endpoint ring dequeue pointer past cur_td.
441 * Record the new state of the xHC's endpoint ring dequeue segment,
442 * dequeue pointer, and new consumer cycle state in state.
443 * Update our internal representation of the ring's dequeue pointer.
444 *
445 * We do this in three jumps:
446 * - First we update our new ring state to be the same as when the xHC stopped.
447 * - Then we traverse the ring to find the segment that contains
448 * the last TRB in the TD. We toggle the xHC's new cycle state when we pass
449 * any link TRBs with the toggle cycle bit set.
450 * - Finally we move the dequeue state one TRB further, toggling the cycle bit
451 * if we've moved it past a link TRB with the toggle cycle bit set.
452 */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700453void xhci_find_new_dequeue_state(struct xhci_hcd *xhci,
Sarah Sharpae636742009-04-29 19:02:31 -0700454 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700455 unsigned int stream_id, struct xhci_td *cur_td,
456 struct xhci_dequeue_state *state)
Sarah Sharpae636742009-04-29 19:02:31 -0700457{
458 struct xhci_virt_device *dev = xhci->devs[slot_id];
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700459 struct xhci_ring *ep_ring;
Sarah Sharpae636742009-04-29 19:02:31 -0700460 struct xhci_generic_trb *trb;
John Yound115b042009-07-27 12:05:15 -0700461 struct xhci_ep_ctx *ep_ctx;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700462 dma_addr_t addr;
Sarah Sharpae636742009-04-29 19:02:31 -0700463
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700464 ep_ring = xhci_triad_to_transfer_ring(xhci, slot_id,
465 ep_index, stream_id);
466 if (!ep_ring) {
467 xhci_warn(xhci, "WARN can't find new dequeue state "
468 "for invalid stream ID %u.\n",
469 stream_id);
470 return;
471 }
Sarah Sharpae636742009-04-29 19:02:31 -0700472 state->new_cycle_state = 0;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700473 xhci_dbg(xhci, "Finding segment containing stopped TRB.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700474 state->new_deq_seg = find_trb_seg(cur_td->start_seg,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700475 dev->eps[ep_index].stopped_trb,
Sarah Sharpae636742009-04-29 19:02:31 -0700476 &state->new_cycle_state);
477 if (!state->new_deq_seg)
478 BUG();
479 /* Dig out the cycle state saved by the xHC during the stop ep cmd */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700480 xhci_dbg(xhci, "Finding endpoint context\n");
John Yound115b042009-07-27 12:05:15 -0700481 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
482 state->new_cycle_state = 0x1 & ep_ctx->deq;
Sarah Sharpae636742009-04-29 19:02:31 -0700483
484 state->new_deq_ptr = cur_td->last_trb;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700485 xhci_dbg(xhci, "Finding segment containing last TRB in TD.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700486 state->new_deq_seg = find_trb_seg(state->new_deq_seg,
487 state->new_deq_ptr,
488 &state->new_cycle_state);
489 if (!state->new_deq_seg)
490 BUG();
491
492 trb = &state->new_deq_ptr->generic;
Andiry Xu54b5acf2010-05-10 19:57:17 -0700493 if ((trb->field[3] & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK) &&
Sarah Sharpae636742009-04-29 19:02:31 -0700494 (trb->field[3] & LINK_TOGGLE))
495 state->new_cycle_state = ~(state->new_cycle_state) & 0x1;
496 next_trb(xhci, ep_ring, &state->new_deq_seg, &state->new_deq_ptr);
497
498 /* Don't update the ring cycle state for the producer (us). */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700499 xhci_dbg(xhci, "New dequeue segment = %p (virtual)\n",
500 state->new_deq_seg);
501 addr = xhci_trb_virt_to_dma(state->new_deq_seg, state->new_deq_ptr);
502 xhci_dbg(xhci, "New dequeue pointer = 0x%llx (DMA)\n",
503 (unsigned long long) addr);
504 xhci_dbg(xhci, "Setting dequeue pointer in internal ring state.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700505 ep_ring->dequeue = state->new_deq_ptr;
506 ep_ring->deq_seg = state->new_deq_seg;
507}
508
Sarah Sharp23e3be12009-04-29 19:05:20 -0700509static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
Sarah Sharpae636742009-04-29 19:02:31 -0700510 struct xhci_td *cur_td)
511{
512 struct xhci_segment *cur_seg;
513 union xhci_trb *cur_trb;
514
515 for (cur_seg = cur_td->start_seg, cur_trb = cur_td->first_trb;
516 true;
517 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
518 if ((cur_trb->generic.field[3] & TRB_TYPE_BITMASK) ==
519 TRB_TYPE(TRB_LINK)) {
520 /* Unchain any chained Link TRBs, but
521 * leave the pointers intact.
522 */
523 cur_trb->generic.field[3] &= ~TRB_CHAIN;
524 xhci_dbg(xhci, "Cancel (unchain) link TRB\n");
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700525 xhci_dbg(xhci, "Address = %p (0x%llx dma); "
526 "in seg %p (0x%llx dma)\n",
527 cur_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700528 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700529 cur_seg,
530 (unsigned long long)cur_seg->dma);
Sarah Sharpae636742009-04-29 19:02:31 -0700531 } else {
532 cur_trb->generic.field[0] = 0;
533 cur_trb->generic.field[1] = 0;
534 cur_trb->generic.field[2] = 0;
535 /* Preserve only the cycle bit of this TRB */
536 cur_trb->generic.field[3] &= TRB_CYCLE;
537 cur_trb->generic.field[3] |= TRB_TYPE(TRB_TR_NOOP);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700538 xhci_dbg(xhci, "Cancel TRB %p (0x%llx dma) "
539 "in seg %p (0x%llx dma)\n",
540 cur_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700541 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700542 cur_seg,
543 (unsigned long long)cur_seg->dma);
Sarah Sharpae636742009-04-29 19:02:31 -0700544 }
545 if (cur_trb == cur_td->last_trb)
546 break;
547 }
548}
549
550static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700551 unsigned int ep_index, unsigned int stream_id,
552 struct xhci_segment *deq_seg,
Sarah Sharpae636742009-04-29 19:02:31 -0700553 union xhci_trb *deq_ptr, u32 cycle_state);
554
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700555void xhci_queue_new_dequeue_state(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700556 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700557 unsigned int stream_id,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700558 struct xhci_dequeue_state *deq_state)
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700559{
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700560 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
561
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700562 xhci_dbg(xhci, "Set TR Deq Ptr cmd, new deq seg = %p (0x%llx dma), "
563 "new deq ptr = %p (0x%llx dma), new cycle = %u\n",
564 deq_state->new_deq_seg,
565 (unsigned long long)deq_state->new_deq_seg->dma,
566 deq_state->new_deq_ptr,
567 (unsigned long long)xhci_trb_virt_to_dma(deq_state->new_deq_seg, deq_state->new_deq_ptr),
568 deq_state->new_cycle_state);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700569 queue_set_tr_deq(xhci, slot_id, ep_index, stream_id,
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700570 deq_state->new_deq_seg,
571 deq_state->new_deq_ptr,
572 (u32) deq_state->new_cycle_state);
573 /* Stop the TD queueing code from ringing the doorbell until
574 * this command completes. The HC won't set the dequeue pointer
575 * if the ring is running, and ringing the doorbell starts the
576 * ring running.
577 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700578 ep->ep_state |= SET_DEQ_PENDING;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700579}
580
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700581static inline void xhci_stop_watchdog_timer_in_irq(struct xhci_hcd *xhci,
582 struct xhci_virt_ep *ep)
583{
584 ep->ep_state &= ~EP_HALT_PENDING;
585 /* Can't del_timer_sync in interrupt, so we attempt to cancel. If the
586 * timer is running on another CPU, we don't decrement stop_cmds_pending
587 * (since we didn't successfully stop the watchdog timer).
588 */
589 if (del_timer(&ep->stop_cmd_timer))
590 ep->stop_cmds_pending--;
591}
592
593/* Must be called with xhci->lock held in interrupt context */
594static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci,
595 struct xhci_td *cur_td, int status, char *adjective)
596{
Sarah Sharp214f76f2010-10-26 11:22:02 -0700597 struct usb_hcd *hcd;
Andiry Xu8e51adc2010-07-22 15:23:31 -0700598 struct urb *urb;
599 struct urb_priv *urb_priv;
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700600
Andiry Xu8e51adc2010-07-22 15:23:31 -0700601 urb = cur_td->urb;
602 urb_priv = urb->hcpriv;
603 urb_priv->td_cnt++;
Sarah Sharp214f76f2010-10-26 11:22:02 -0700604 hcd = bus_to_hcd(urb->dev->bus);
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700605
Andiry Xu8e51adc2010-07-22 15:23:31 -0700606 /* Only giveback urb when this is the last td in urb */
607 if (urb_priv->td_cnt == urb_priv->length) {
608 usb_hcd_unlink_urb_from_ep(hcd, urb);
609 xhci_dbg(xhci, "Giveback %s URB %p\n", adjective, urb);
610
611 spin_unlock(&xhci->lock);
612 usb_hcd_giveback_urb(hcd, urb, status);
613 xhci_urb_free_priv(xhci, urb_priv);
614 spin_lock(&xhci->lock);
615 xhci_dbg(xhci, "%s URB given back\n", adjective);
616 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700617}
618
Sarah Sharpae636742009-04-29 19:02:31 -0700619/*
620 * When we get a command completion for a Stop Endpoint Command, we need to
621 * unlink any cancelled TDs from the ring. There are two ways to do that:
622 *
623 * 1. If the HW was in the middle of processing the TD that needs to be
624 * cancelled, then we must move the ring's dequeue pointer past the last TRB
625 * in the TD with a Set Dequeue Pointer Command.
626 * 2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain
627 * bit cleared) so that the HW will skip over them.
628 */
629static void handle_stopped_endpoint(struct xhci_hcd *xhci,
Andiry Xube88fe42010-10-14 07:22:57 -0700630 union xhci_trb *trb, struct xhci_event_cmd *event)
Sarah Sharpae636742009-04-29 19:02:31 -0700631{
632 unsigned int slot_id;
633 unsigned int ep_index;
Andiry Xube88fe42010-10-14 07:22:57 -0700634 struct xhci_virt_device *virt_dev;
Sarah Sharpae636742009-04-29 19:02:31 -0700635 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700636 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -0700637 struct list_head *entry;
Randy Dunlap326b4812010-04-19 08:53:50 -0700638 struct xhci_td *cur_td = NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700639 struct xhci_td *last_unlinked_td;
640
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700641 struct xhci_dequeue_state deq_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700642
Andiry Xube88fe42010-10-14 07:22:57 -0700643 if (unlikely(TRB_TO_SUSPEND_PORT(
644 xhci->cmd_ring->dequeue->generic.field[3]))) {
645 slot_id = TRB_TO_SLOT_ID(
646 xhci->cmd_ring->dequeue->generic.field[3]);
647 virt_dev = xhci->devs[slot_id];
648 if (virt_dev)
649 handle_cmd_in_cmd_wait_list(xhci, virt_dev,
650 event);
651 else
652 xhci_warn(xhci, "Stop endpoint command "
653 "completion for disabled slot %u\n",
654 slot_id);
655 return;
656 }
657
Sarah Sharpae636742009-04-29 19:02:31 -0700658 memset(&deq_state, 0, sizeof(deq_state));
659 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
660 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700661 ep = &xhci->devs[slot_id]->eps[ep_index];
Sarah Sharpae636742009-04-29 19:02:31 -0700662
Sarah Sharp678539c2009-10-27 10:55:52 -0700663 if (list_empty(&ep->cancelled_td_list)) {
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700664 xhci_stop_watchdog_timer_in_irq(xhci, ep);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700665 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700666 return;
Sarah Sharp678539c2009-10-27 10:55:52 -0700667 }
Sarah Sharpae636742009-04-29 19:02:31 -0700668
669 /* Fix up the ep ring first, so HW stops executing cancelled TDs.
670 * We have the xHCI lock, so nothing can modify this list until we drop
671 * it. We're also in the event handler, so we can't get re-interrupted
672 * if another Stop Endpoint command completes
673 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700674 list_for_each(entry, &ep->cancelled_td_list) {
Sarah Sharpae636742009-04-29 19:02:31 -0700675 cur_td = list_entry(entry, struct xhci_td, cancelled_td_list);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700676 xhci_dbg(xhci, "Cancelling TD starting at %p, 0x%llx (dma).\n",
677 cur_td->first_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700678 (unsigned long long)xhci_trb_virt_to_dma(cur_td->start_seg, cur_td->first_trb));
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700679 ep_ring = xhci_urb_to_transfer_ring(xhci, cur_td->urb);
680 if (!ep_ring) {
681 /* This shouldn't happen unless a driver is mucking
682 * with the stream ID after submission. This will
683 * leave the TD on the hardware ring, and the hardware
684 * will try to execute it, and may access a buffer
685 * that has already been freed. In the best case, the
686 * hardware will execute it, and the event handler will
687 * ignore the completion event for that TD, since it was
688 * removed from the td_list for that endpoint. In
689 * short, don't muck with the stream ID after
690 * submission.
691 */
692 xhci_warn(xhci, "WARN Cancelled URB %p "
693 "has invalid stream ID %u.\n",
694 cur_td->urb,
695 cur_td->urb->stream_id);
696 goto remove_finished_td;
697 }
Sarah Sharpae636742009-04-29 19:02:31 -0700698 /*
699 * If we stopped on the TD we need to cancel, then we have to
700 * move the xHC endpoint ring dequeue pointer past this TD.
701 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700702 if (cur_td == ep->stopped_td)
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700703 xhci_find_new_dequeue_state(xhci, slot_id, ep_index,
704 cur_td->urb->stream_id,
705 cur_td, &deq_state);
Sarah Sharpae636742009-04-29 19:02:31 -0700706 else
707 td_to_noop(xhci, ep_ring, cur_td);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700708remove_finished_td:
Sarah Sharpae636742009-04-29 19:02:31 -0700709 /*
710 * The event handler won't see a completion for this TD anymore,
711 * so remove it from the endpoint ring's TD list. Keep it in
712 * the cancelled TD list for URB completion later.
713 */
714 list_del(&cur_td->td_list);
Sarah Sharpae636742009-04-29 19:02:31 -0700715 }
716 last_unlinked_td = cur_td;
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700717 xhci_stop_watchdog_timer_in_irq(xhci, ep);
Sarah Sharpae636742009-04-29 19:02:31 -0700718
719 /* If necessary, queue a Set Transfer Ring Dequeue Pointer command */
720 if (deq_state.new_deq_ptr && deq_state.new_deq_seg) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700721 xhci_queue_new_dequeue_state(xhci,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700722 slot_id, ep_index,
723 ep->stopped_td->urb->stream_id,
724 &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700725 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -0700726 } else {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700727 /* Otherwise ring the doorbell(s) to restart queued transfers */
728 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700729 }
Sarah Sharp1624ae12010-05-06 13:40:08 -0700730 ep->stopped_td = NULL;
731 ep->stopped_trb = NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700732
733 /*
734 * Drop the lock and complete the URBs in the cancelled TD list.
735 * New TDs to be cancelled might be added to the end of the list before
736 * we can complete all the URBs for the TDs we already unlinked.
737 * So stop when we've completed the URB for the last TD we unlinked.
738 */
739 do {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700740 cur_td = list_entry(ep->cancelled_td_list.next,
Sarah Sharpae636742009-04-29 19:02:31 -0700741 struct xhci_td, cancelled_td_list);
742 list_del(&cur_td->cancelled_td_list);
743
744 /* Clean up the cancelled URB */
Sarah Sharpae636742009-04-29 19:02:31 -0700745 /* Doesn't matter what we pass for status, since the core will
746 * just overwrite it (because the URB has been unlinked).
747 */
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700748 xhci_giveback_urb_in_irq(xhci, cur_td, 0, "cancelled");
Sarah Sharpae636742009-04-29 19:02:31 -0700749
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700750 /* Stop processing the cancelled list if the watchdog timer is
751 * running.
752 */
753 if (xhci->xhc_state & XHCI_STATE_DYING)
754 return;
Sarah Sharpae636742009-04-29 19:02:31 -0700755 } while (cur_td != last_unlinked_td);
756
757 /* Return to the event handler with xhci->lock re-acquired */
758}
759
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700760/* Watchdog timer function for when a stop endpoint command fails to complete.
761 * In this case, we assume the host controller is broken or dying or dead. The
762 * host may still be completing some other events, so we have to be careful to
763 * let the event ring handler and the URB dequeueing/enqueueing functions know
764 * through xhci->state.
765 *
766 * The timer may also fire if the host takes a very long time to respond to the
767 * command, and the stop endpoint command completion handler cannot delete the
768 * timer before the timer function is called. Another endpoint cancellation may
769 * sneak in before the timer function can grab the lock, and that may queue
770 * another stop endpoint command and add the timer back. So we cannot use a
771 * simple flag to say whether there is a pending stop endpoint command for a
772 * particular endpoint.
773 *
774 * Instead we use a combination of that flag and a counter for the number of
775 * pending stop endpoint commands. If the timer is the tail end of the last
776 * stop endpoint command, and the endpoint's command is still pending, we assume
777 * the host is dying.
778 */
779void xhci_stop_endpoint_command_watchdog(unsigned long arg)
780{
781 struct xhci_hcd *xhci;
782 struct xhci_virt_ep *ep;
783 struct xhci_virt_ep *temp_ep;
784 struct xhci_ring *ring;
785 struct xhci_td *cur_td;
786 int ret, i, j;
787
788 ep = (struct xhci_virt_ep *) arg;
789 xhci = ep->xhci;
790
791 spin_lock(&xhci->lock);
792
793 ep->stop_cmds_pending--;
794 if (xhci->xhc_state & XHCI_STATE_DYING) {
795 xhci_dbg(xhci, "Stop EP timer ran, but another timer marked "
796 "xHCI as DYING, exiting.\n");
797 spin_unlock(&xhci->lock);
798 return;
799 }
800 if (!(ep->stop_cmds_pending == 0 && (ep->ep_state & EP_HALT_PENDING))) {
801 xhci_dbg(xhci, "Stop EP timer ran, but no command pending, "
802 "exiting.\n");
803 spin_unlock(&xhci->lock);
804 return;
805 }
806
807 xhci_warn(xhci, "xHCI host not responding to stop endpoint command.\n");
808 xhci_warn(xhci, "Assuming host is dying, halting host.\n");
809 /* Oops, HC is dead or dying or at least not responding to the stop
810 * endpoint command.
811 */
812 xhci->xhc_state |= XHCI_STATE_DYING;
813 /* Disable interrupts from the host controller and start halting it */
814 xhci_quiesce(xhci);
815 spin_unlock(&xhci->lock);
816
817 ret = xhci_halt(xhci);
818
819 spin_lock(&xhci->lock);
820 if (ret < 0) {
821 /* This is bad; the host is not responding to commands and it's
822 * not allowing itself to be halted. At least interrupts are
Sarah Sharpac04e6f2011-03-11 08:47:33 -0800823 * disabled. If we call usb_hc_died(), it will attempt to
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700824 * disconnect all device drivers under this host. Those
825 * disconnect() methods will wait for all URBs to be unlinked,
826 * so we must complete them.
827 */
828 xhci_warn(xhci, "Non-responsive xHCI host is not halting.\n");
829 xhci_warn(xhci, "Completing active URBs anyway.\n");
830 /* We could turn all TDs on the rings to no-ops. This won't
831 * help if the host has cached part of the ring, and is slow if
832 * we want to preserve the cycle bit. Skip it and hope the host
833 * doesn't touch the memory.
834 */
835 }
836 for (i = 0; i < MAX_HC_SLOTS; i++) {
837 if (!xhci->devs[i])
838 continue;
839 for (j = 0; j < 31; j++) {
840 temp_ep = &xhci->devs[i]->eps[j];
841 ring = temp_ep->ring;
842 if (!ring)
843 continue;
844 xhci_dbg(xhci, "Killing URBs for slot ID %u, "
845 "ep index %u\n", i, j);
846 while (!list_empty(&ring->td_list)) {
847 cur_td = list_first_entry(&ring->td_list,
848 struct xhci_td,
849 td_list);
850 list_del(&cur_td->td_list);
851 if (!list_empty(&cur_td->cancelled_td_list))
852 list_del(&cur_td->cancelled_td_list);
853 xhci_giveback_urb_in_irq(xhci, cur_td,
854 -ESHUTDOWN, "killed");
855 }
856 while (!list_empty(&temp_ep->cancelled_td_list)) {
857 cur_td = list_first_entry(
858 &temp_ep->cancelled_td_list,
859 struct xhci_td,
860 cancelled_td_list);
861 list_del(&cur_td->cancelled_td_list);
862 xhci_giveback_urb_in_irq(xhci, cur_td,
863 -ESHUTDOWN, "killed");
864 }
865 }
866 }
867 spin_unlock(&xhci->lock);
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700868 xhci_dbg(xhci, "Calling usb_hc_died()\n");
869 usb_hc_died(xhci_to_hcd(xhci));
870 xhci_dbg(xhci, "xHCI host controller is dead.\n");
871}
872
Sarah Sharpae636742009-04-29 19:02:31 -0700873/*
874 * When we get a completion for a Set Transfer Ring Dequeue Pointer command,
875 * we need to clear the set deq pending flag in the endpoint ring state, so that
876 * the TD queueing code can ring the doorbell again. We also need to ring the
877 * endpoint doorbell to restart the ring, but only if there aren't more
878 * cancellations pending.
879 */
880static void handle_set_deq_completion(struct xhci_hcd *xhci,
881 struct xhci_event_cmd *event,
882 union xhci_trb *trb)
883{
884 unsigned int slot_id;
885 unsigned int ep_index;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700886 unsigned int stream_id;
Sarah Sharpae636742009-04-29 19:02:31 -0700887 struct xhci_ring *ep_ring;
888 struct xhci_virt_device *dev;
John Yound115b042009-07-27 12:05:15 -0700889 struct xhci_ep_ctx *ep_ctx;
890 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpae636742009-04-29 19:02:31 -0700891
892 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
893 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700894 stream_id = TRB_TO_STREAM_ID(trb->generic.field[2]);
Sarah Sharpae636742009-04-29 19:02:31 -0700895 dev = xhci->devs[slot_id];
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700896
897 ep_ring = xhci_stream_id_to_ring(dev, ep_index, stream_id);
898 if (!ep_ring) {
899 xhci_warn(xhci, "WARN Set TR deq ptr command for "
900 "freed stream ID %u\n",
901 stream_id);
902 /* XXX: Harmless??? */
903 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
904 return;
905 }
906
John Yound115b042009-07-27 12:05:15 -0700907 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
908 slot_ctx = xhci_get_slot_ctx(xhci, dev->out_ctx);
Sarah Sharpae636742009-04-29 19:02:31 -0700909
910 if (GET_COMP_CODE(event->status) != COMP_SUCCESS) {
911 unsigned int ep_state;
912 unsigned int slot_state;
913
914 switch (GET_COMP_CODE(event->status)) {
915 case COMP_TRB_ERR:
916 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because "
917 "of stream ID configuration\n");
918 break;
919 case COMP_CTX_STATE:
920 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due "
921 "to incorrect slot or ep state.\n");
John Yound115b042009-07-27 12:05:15 -0700922 ep_state = ep_ctx->ep_info;
Sarah Sharpae636742009-04-29 19:02:31 -0700923 ep_state &= EP_STATE_MASK;
John Yound115b042009-07-27 12:05:15 -0700924 slot_state = slot_ctx->dev_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700925 slot_state = GET_SLOT_STATE(slot_state);
926 xhci_dbg(xhci, "Slot state = %u, EP state = %u\n",
927 slot_state, ep_state);
928 break;
929 case COMP_EBADSLT:
930 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because "
931 "slot %u was not enabled.\n", slot_id);
932 break;
933 default:
934 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown "
935 "completion code of %u.\n",
936 GET_COMP_CODE(event->status));
937 break;
938 }
939 /* OK what do we do now? The endpoint state is hosed, and we
940 * should never get to this point if the synchronization between
941 * queueing, and endpoint state are correct. This might happen
942 * if the device gets disconnected after we've finished
943 * cancelling URBs, which might not be an error...
944 */
945 } else {
Sarah Sharp8e595a52009-07-27 12:03:31 -0700946 xhci_dbg(xhci, "Successful Set TR Deq Ptr cmd, deq = @%08llx\n",
John Yound115b042009-07-27 12:05:15 -0700947 ep_ctx->deq);
Sarah Sharpae636742009-04-29 19:02:31 -0700948 }
949
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700950 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700951 /* Restart any rings with pending URBs */
952 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700953}
954
Sarah Sharpa1587d92009-07-27 12:03:15 -0700955static void handle_reset_ep_completion(struct xhci_hcd *xhci,
956 struct xhci_event_cmd *event,
957 union xhci_trb *trb)
958{
959 int slot_id;
960 unsigned int ep_index;
961
962 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
963 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
964 /* This command will only fail if the endpoint wasn't halted,
965 * but we don't care.
966 */
967 xhci_dbg(xhci, "Ignoring reset ep completion code of %u\n",
968 (unsigned int) GET_COMP_CODE(event->status));
969
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700970 /* HW with the reset endpoint quirk needs to have a configure endpoint
971 * command complete before the endpoint can be used. Queue that here
972 * because the HW can't handle two commands being queued in a row.
973 */
974 if (xhci->quirks & XHCI_RESET_EP_QUIRK) {
975 xhci_dbg(xhci, "Queueing configure endpoint command\n");
976 xhci_queue_configure_endpoint(xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -0700977 xhci->devs[slot_id]->in_ctx->dma, slot_id,
978 false);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700979 xhci_ring_cmd_db(xhci);
980 } else {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700981 /* Clear our internal halted state and restart the ring(s) */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700982 xhci->devs[slot_id]->eps[ep_index].ep_state &= ~EP_HALTED;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700983 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700984 }
Sarah Sharpa1587d92009-07-27 12:03:15 -0700985}
Sarah Sharpae636742009-04-29 19:02:31 -0700986
Sarah Sharpa50c8aa2009-09-04 10:53:15 -0700987/* Check to see if a command in the device's command queue matches this one.
988 * Signal the completion or free the command, and return 1. Return 0 if the
989 * completed command isn't at the head of the command list.
990 */
991static int handle_cmd_in_cmd_wait_list(struct xhci_hcd *xhci,
992 struct xhci_virt_device *virt_dev,
993 struct xhci_event_cmd *event)
994{
995 struct xhci_command *command;
996
997 if (list_empty(&virt_dev->cmd_list))
998 return 0;
999
1000 command = list_entry(virt_dev->cmd_list.next,
1001 struct xhci_command, cmd_list);
1002 if (xhci->cmd_ring->dequeue != command->command_trb)
1003 return 0;
1004
1005 command->status =
1006 GET_COMP_CODE(event->status);
1007 list_del(&command->cmd_list);
1008 if (command->completion)
1009 complete(command->completion);
1010 else
1011 xhci_free_command(xhci, command);
1012 return 1;
1013}
1014
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001015static void handle_cmd_completion(struct xhci_hcd *xhci,
1016 struct xhci_event_cmd *event)
1017{
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001018 int slot_id = TRB_TO_SLOT_ID(event->flags);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001019 u64 cmd_dma;
1020 dma_addr_t cmd_dequeue_dma;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001021 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07001022 struct xhci_virt_device *virt_dev;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001023 unsigned int ep_index;
1024 struct xhci_ring *ep_ring;
1025 unsigned int ep_state;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001026
Sarah Sharp8e595a52009-07-27 12:03:31 -07001027 cmd_dma = event->cmd_trb;
Sarah Sharp23e3be12009-04-29 19:05:20 -07001028 cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001029 xhci->cmd_ring->dequeue);
1030 /* Is the command ring deq ptr out of sync with the deq seg ptr? */
1031 if (cmd_dequeue_dma == 0) {
1032 xhci->error_bitmask |= 1 << 4;
1033 return;
1034 }
1035 /* Does the DMA address match our internal dequeue pointer address? */
1036 if (cmd_dma != (u64) cmd_dequeue_dma) {
1037 xhci->error_bitmask |= 1 << 5;
1038 return;
1039 }
1040 switch (xhci->cmd_ring->dequeue->generic.field[3] & TRB_TYPE_BITMASK) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001041 case TRB_TYPE(TRB_ENABLE_SLOT):
1042 if (GET_COMP_CODE(event->status) == COMP_SUCCESS)
1043 xhci->slot_id = slot_id;
1044 else
1045 xhci->slot_id = 0;
1046 complete(&xhci->addr_dev);
1047 break;
1048 case TRB_TYPE(TRB_DISABLE_SLOT):
1049 if (xhci->devs[slot_id])
1050 xhci_free_virt_device(xhci, slot_id);
1051 break;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001052 case TRB_TYPE(TRB_CONFIG_EP):
Sarah Sharp913a8a32009-09-04 10:53:13 -07001053 virt_dev = xhci->devs[slot_id];
Sarah Sharpa50c8aa2009-09-04 10:53:15 -07001054 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
Sarah Sharp913a8a32009-09-04 10:53:13 -07001055 break;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001056 /*
1057 * Configure endpoint commands can come from the USB core
1058 * configuration or alt setting changes, or because the HW
1059 * needed an extra configure endpoint command after a reset
Sarah Sharp8df75f42010-04-02 15:34:16 -07001060 * endpoint command or streams were being configured.
1061 * If the command was for a halted endpoint, the xHCI driver
1062 * is not waiting on the configure endpoint command.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001063 */
1064 ctrl_ctx = xhci_get_input_control_ctx(xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001065 virt_dev->in_ctx);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001066 /* Input ctx add_flags are the endpoint index plus one */
1067 ep_index = xhci_last_valid_endpoint(ctrl_ctx->add_flags) - 1;
Sarah Sharp06df5722009-12-03 09:44:31 -08001068 /* A usb_set_interface() call directly after clearing a halted
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001069 * condition may race on this quirky hardware. Not worth
1070 * worrying about, since this is prototype hardware. Not sure
1071 * if this will work for streams, but streams support was
1072 * untested on this prototype.
Sarah Sharp06df5722009-12-03 09:44:31 -08001073 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001074 if (xhci->quirks & XHCI_RESET_EP_QUIRK &&
Sarah Sharp06df5722009-12-03 09:44:31 -08001075 ep_index != (unsigned int) -1 &&
1076 ctrl_ctx->add_flags - SLOT_FLAG ==
1077 ctrl_ctx->drop_flags) {
1078 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
1079 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1080 if (!(ep_state & EP_HALTED))
1081 goto bandwidth_change;
1082 xhci_dbg(xhci, "Completed config ep cmd - "
1083 "last ep index = %d, state = %d\n",
1084 ep_index, ep_state);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001085 /* Clear internal halted state and restart ring(s) */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001086 xhci->devs[slot_id]->eps[ep_index].ep_state &=
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001087 ~EP_HALTED;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001088 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharp06df5722009-12-03 09:44:31 -08001089 break;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001090 }
Sarah Sharp06df5722009-12-03 09:44:31 -08001091bandwidth_change:
1092 xhci_dbg(xhci, "Completed config ep cmd\n");
1093 xhci->devs[slot_id]->cmd_status =
1094 GET_COMP_CODE(event->status);
1095 complete(&xhci->devs[slot_id]->cmd_completion);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001096 break;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001097 case TRB_TYPE(TRB_EVAL_CONTEXT):
Sarah Sharpac1c1b72009-09-04 10:53:20 -07001098 virt_dev = xhci->devs[slot_id];
1099 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
1100 break;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001101 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
1102 complete(&xhci->devs[slot_id]->cmd_completion);
1103 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001104 case TRB_TYPE(TRB_ADDR_DEV):
1105 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
1106 complete(&xhci->addr_dev);
1107 break;
Sarah Sharpae636742009-04-29 19:02:31 -07001108 case TRB_TYPE(TRB_STOP_RING):
Andiry Xube88fe42010-10-14 07:22:57 -07001109 handle_stopped_endpoint(xhci, xhci->cmd_ring->dequeue, event);
Sarah Sharpae636742009-04-29 19:02:31 -07001110 break;
1111 case TRB_TYPE(TRB_SET_DEQ):
1112 handle_set_deq_completion(xhci, event, xhci->cmd_ring->dequeue);
1113 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001114 case TRB_TYPE(TRB_CMD_NOOP):
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001115 break;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001116 case TRB_TYPE(TRB_RESET_EP):
1117 handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue);
1118 break;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08001119 case TRB_TYPE(TRB_RESET_DEV):
1120 xhci_dbg(xhci, "Completed reset device command.\n");
1121 slot_id = TRB_TO_SLOT_ID(
1122 xhci->cmd_ring->dequeue->generic.field[3]);
1123 virt_dev = xhci->devs[slot_id];
1124 if (virt_dev)
1125 handle_cmd_in_cmd_wait_list(xhci, virt_dev, event);
1126 else
1127 xhci_warn(xhci, "Reset device command completion "
1128 "for disabled slot %u\n", slot_id);
1129 break;
Sarah Sharp02386342010-05-24 13:25:28 -07001130 case TRB_TYPE(TRB_NEC_GET_FW):
1131 if (!(xhci->quirks & XHCI_NEC_HOST)) {
1132 xhci->error_bitmask |= 1 << 6;
1133 break;
1134 }
1135 xhci_dbg(xhci, "NEC firmware version %2x.%02x\n",
1136 NEC_FW_MAJOR(event->status),
1137 NEC_FW_MINOR(event->status));
1138 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001139 default:
1140 /* Skip over unknown commands on the event ring */
1141 xhci->error_bitmask |= 1 << 6;
1142 break;
1143 }
1144 inc_deq(xhci, xhci->cmd_ring, false);
1145}
1146
Sarah Sharp02386342010-05-24 13:25:28 -07001147static void handle_vendor_event(struct xhci_hcd *xhci,
1148 union xhci_trb *event)
1149{
1150 u32 trb_type;
1151
1152 trb_type = TRB_FIELD_TO_TYPE(event->generic.field[3]);
1153 xhci_dbg(xhci, "Vendor specific event TRB type = %u\n", trb_type);
1154 if (trb_type == TRB_NEC_CMD_COMP && (xhci->quirks & XHCI_NEC_HOST))
1155 handle_cmd_completion(xhci, &event->event_cmd);
1156}
1157
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001158static void handle_port_status(struct xhci_hcd *xhci,
1159 union xhci_trb *event)
1160{
Andiry Xu56192532010-10-14 07:23:00 -07001161 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001162 u32 port_id;
Andiry Xu56192532010-10-14 07:23:00 -07001163 u32 temp, temp1;
Sarah Sharp518e8482010-12-15 11:56:29 -08001164 int max_ports;
Andiry Xu56192532010-10-14 07:23:00 -07001165 int slot_id;
Sarah Sharp5308a912010-12-01 11:34:59 -08001166 unsigned int faked_port_index;
1167 u32 __iomem *port_array[15 + USB_MAXCHILDREN];
1168 int i;
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001169 struct xhci_bus_state *bus_state;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001170
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001171 bus_state = &xhci->bus_state[0];
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001172 /* Port status change events always have a successful completion code */
1173 if (GET_COMP_CODE(event->generic.field[2]) != COMP_SUCCESS) {
1174 xhci_warn(xhci, "WARN: xHC returned failed port status event\n");
1175 xhci->error_bitmask |= 1 << 8;
1176 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001177 port_id = GET_PORT_ID(event->generic.field[0]);
1178 xhci_dbg(xhci, "Port Status Change Event for port %d\n", port_id);
1179
Sarah Sharp518e8482010-12-15 11:56:29 -08001180 max_ports = HCS_MAX_PORTS(xhci->hcs_params1);
1181 if ((port_id <= 0) || (port_id > max_ports)) {
Andiry Xu56192532010-10-14 07:23:00 -07001182 xhci_warn(xhci, "Invalid port id %d\n", port_id);
1183 goto cleanup;
1184 }
1185
Sarah Sharp5308a912010-12-01 11:34:59 -08001186 for (i = 0; i < max_ports; i++) {
1187 if (i < xhci->num_usb3_ports)
1188 port_array[i] = xhci->usb3_ports[i];
1189 else
1190 port_array[i] =
1191 xhci->usb2_ports[i - xhci->num_usb3_ports];
1192 }
1193
1194 faked_port_index = port_id;
1195 temp = xhci_readl(xhci, port_array[faked_port_index]);
Sarah Sharp7111ebc2010-12-14 13:24:55 -08001196 if (hcd->state == HC_STATE_SUSPENDED) {
Andiry Xu56192532010-10-14 07:23:00 -07001197 xhci_dbg(xhci, "resume root hub\n");
1198 usb_hcd_resume_root_hub(hcd);
1199 }
1200
1201 if ((temp & PORT_PLC) && (temp & PORT_PLS_MASK) == XDEV_RESUME) {
1202 xhci_dbg(xhci, "port resume event for port %d\n", port_id);
1203
1204 temp1 = xhci_readl(xhci, &xhci->op_regs->command);
1205 if (!(temp1 & CMD_RUN)) {
1206 xhci_warn(xhci, "xHC is not running.\n");
1207 goto cleanup;
1208 }
1209
1210 if (DEV_SUPERSPEED(temp)) {
1211 xhci_dbg(xhci, "resume SS port %d\n", port_id);
1212 temp = xhci_port_state_to_neutral(temp);
1213 temp &= ~PORT_PLS_MASK;
1214 temp |= PORT_LINK_STROBE | XDEV_U0;
Sarah Sharp5308a912010-12-01 11:34:59 -08001215 xhci_writel(xhci, temp, port_array[faked_port_index]);
Andiry Xu56192532010-10-14 07:23:00 -07001216 slot_id = xhci_find_slot_id_by_port(xhci, port_id);
1217 if (!slot_id) {
1218 xhci_dbg(xhci, "slot_id is zero\n");
1219 goto cleanup;
1220 }
1221 xhci_ring_device(xhci, slot_id);
1222 xhci_dbg(xhci, "resume SS port %d finished\n", port_id);
1223 /* Clear PORT_PLC */
Sarah Sharp5308a912010-12-01 11:34:59 -08001224 temp = xhci_readl(xhci, port_array[faked_port_index]);
Andiry Xu56192532010-10-14 07:23:00 -07001225 temp = xhci_port_state_to_neutral(temp);
1226 temp |= PORT_PLC;
Sarah Sharp5308a912010-12-01 11:34:59 -08001227 xhci_writel(xhci, temp, port_array[faked_port_index]);
Andiry Xu56192532010-10-14 07:23:00 -07001228 } else {
1229 xhci_dbg(xhci, "resume HS port %d\n", port_id);
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001230 bus_state->resume_done[port_id - 1] = jiffies +
Andiry Xu56192532010-10-14 07:23:00 -07001231 msecs_to_jiffies(20);
1232 mod_timer(&hcd->rh_timer,
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001233 bus_state->resume_done[port_id - 1]);
Andiry Xu56192532010-10-14 07:23:00 -07001234 /* Do the rest in GetPortStatus */
1235 }
1236 }
1237
1238cleanup:
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001239 /* Update event ring dequeue pointer before dropping the lock */
1240 inc_deq(xhci, xhci->event_ring, true);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001241
1242 spin_unlock(&xhci->lock);
1243 /* Pass this up to the core */
1244 usb_hcd_poll_rh_status(xhci_to_hcd(xhci));
1245 spin_lock(&xhci->lock);
1246}
1247
1248/*
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001249 * This TD is defined by the TRBs starting at start_trb in start_seg and ending
1250 * at end_trb, which may be in another segment. If the suspect DMA address is a
1251 * TRB in this TD, this function returns that TRB's segment. Otherwise it
1252 * returns 0.
1253 */
Sarah Sharp6648f292009-11-09 13:35:23 -08001254struct xhci_segment *trb_in_td(struct xhci_segment *start_seg,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001255 union xhci_trb *start_trb,
1256 union xhci_trb *end_trb,
1257 dma_addr_t suspect_dma)
1258{
1259 dma_addr_t start_dma;
1260 dma_addr_t end_seg_dma;
1261 dma_addr_t end_trb_dma;
1262 struct xhci_segment *cur_seg;
1263
Sarah Sharp23e3be12009-04-29 19:05:20 -07001264 start_dma = xhci_trb_virt_to_dma(start_seg, start_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001265 cur_seg = start_seg;
1266
1267 do {
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001268 if (start_dma == 0)
Randy Dunlap326b4812010-04-19 08:53:50 -07001269 return NULL;
Sarah Sharpae636742009-04-29 19:02:31 -07001270 /* We may get an event for a Link TRB in the middle of a TD */
Sarah Sharp23e3be12009-04-29 19:05:20 -07001271 end_seg_dma = xhci_trb_virt_to_dma(cur_seg,
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001272 &cur_seg->trbs[TRBS_PER_SEGMENT - 1]);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001273 /* If the end TRB isn't in this segment, this is set to 0 */
Sarah Sharp23e3be12009-04-29 19:05:20 -07001274 end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001275
1276 if (end_trb_dma > 0) {
1277 /* The end TRB is in this segment, so suspect should be here */
1278 if (start_dma <= end_trb_dma) {
1279 if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma)
1280 return cur_seg;
1281 } else {
1282 /* Case for one segment with
1283 * a TD wrapped around to the top
1284 */
1285 if ((suspect_dma >= start_dma &&
1286 suspect_dma <= end_seg_dma) ||
1287 (suspect_dma >= cur_seg->dma &&
1288 suspect_dma <= end_trb_dma))
1289 return cur_seg;
1290 }
Randy Dunlap326b4812010-04-19 08:53:50 -07001291 return NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001292 } else {
1293 /* Might still be somewhere in this segment */
1294 if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma)
1295 return cur_seg;
1296 }
1297 cur_seg = cur_seg->next;
Sarah Sharp23e3be12009-04-29 19:05:20 -07001298 start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]);
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001299 } while (cur_seg != start_seg);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001300
Randy Dunlap326b4812010-04-19 08:53:50 -07001301 return NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001302}
1303
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001304static void xhci_cleanup_halted_endpoint(struct xhci_hcd *xhci,
1305 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001306 unsigned int stream_id,
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001307 struct xhci_td *td, union xhci_trb *event_trb)
1308{
1309 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
1310 ep->ep_state |= EP_HALTED;
1311 ep->stopped_td = td;
1312 ep->stopped_trb = event_trb;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001313 ep->stopped_stream = stream_id;
Sarah Sharp1624ae12010-05-06 13:40:08 -07001314
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001315 xhci_queue_reset_ep(xhci, slot_id, ep_index);
1316 xhci_cleanup_stalled_ring(xhci, td->urb->dev, ep_index);
Sarah Sharp1624ae12010-05-06 13:40:08 -07001317
1318 ep->stopped_td = NULL;
1319 ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07001320 ep->stopped_stream = 0;
Sarah Sharp1624ae12010-05-06 13:40:08 -07001321
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001322 xhci_ring_cmd_db(xhci);
1323}
1324
1325/* Check if an error has halted the endpoint ring. The class driver will
1326 * cleanup the halt for a non-default control endpoint if we indicate a stall.
1327 * However, a babble and other errors also halt the endpoint ring, and the class
1328 * driver won't clear the halt in that case, so we need to issue a Set Transfer
1329 * Ring Dequeue Pointer command manually.
1330 */
1331static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci,
1332 struct xhci_ep_ctx *ep_ctx,
1333 unsigned int trb_comp_code)
1334{
1335 /* TRB completion codes that may require a manual halt cleanup */
1336 if (trb_comp_code == COMP_TX_ERR ||
1337 trb_comp_code == COMP_BABBLE ||
1338 trb_comp_code == COMP_SPLIT_ERR)
1339 /* The 0.96 spec says a babbling control endpoint
1340 * is not halted. The 0.96 spec says it is. Some HW
1341 * claims to be 0.95 compliant, but it halts the control
1342 * endpoint anyway. Check if a babble halted the
1343 * endpoint.
1344 */
1345 if ((ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_HALTED)
1346 return 1;
1347
1348 return 0;
1349}
1350
Sarah Sharpb45b5062009-12-09 15:59:06 -08001351int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code)
1352{
1353 if (trb_comp_code >= 224 && trb_comp_code <= 255) {
1354 /* Vendor defined "informational" completion code,
1355 * treat as not-an-error.
1356 */
1357 xhci_dbg(xhci, "Vendor defined info completion code %u\n",
1358 trb_comp_code);
1359 xhci_dbg(xhci, "Treating code as success.\n");
1360 return 1;
1361 }
1362 return 0;
1363}
1364
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001365/*
Andiry Xu4422da62010-07-22 15:22:55 -07001366 * Finish the td processing, remove the td from td list;
1367 * Return 1 if the urb can be given back.
1368 */
1369static int finish_td(struct xhci_hcd *xhci, struct xhci_td *td,
1370 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1371 struct xhci_virt_ep *ep, int *status, bool skip)
1372{
1373 struct xhci_virt_device *xdev;
1374 struct xhci_ring *ep_ring;
1375 unsigned int slot_id;
1376 int ep_index;
1377 struct urb *urb = NULL;
1378 struct xhci_ep_ctx *ep_ctx;
1379 int ret = 0;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001380 struct urb_priv *urb_priv;
Andiry Xu4422da62010-07-22 15:22:55 -07001381 u32 trb_comp_code;
1382
1383 slot_id = TRB_TO_SLOT_ID(event->flags);
1384 xdev = xhci->devs[slot_id];
1385 ep_index = TRB_TO_EP_ID(event->flags) - 1;
1386 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1387 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
1388 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1389
1390 if (skip)
1391 goto td_cleanup;
1392
1393 if (trb_comp_code == COMP_STOP_INVAL ||
1394 trb_comp_code == COMP_STOP) {
1395 /* The Endpoint Stop Command completion will take care of any
1396 * stopped TDs. A stopped TD may be restarted, so don't update
1397 * the ring dequeue pointer or take this TD off any lists yet.
1398 */
1399 ep->stopped_td = td;
1400 ep->stopped_trb = event_trb;
1401 return 0;
1402 } else {
1403 if (trb_comp_code == COMP_STALL) {
1404 /* The transfer is completed from the driver's
1405 * perspective, but we need to issue a set dequeue
1406 * command for this stalled endpoint to move the dequeue
1407 * pointer past the TD. We can't do that here because
1408 * the halt condition must be cleared first. Let the
1409 * USB class driver clear the stall later.
1410 */
1411 ep->stopped_td = td;
1412 ep->stopped_trb = event_trb;
1413 ep->stopped_stream = ep_ring->stream_id;
1414 } else if (xhci_requires_manual_halt_cleanup(xhci,
1415 ep_ctx, trb_comp_code)) {
1416 /* Other types of errors halt the endpoint, but the
1417 * class driver doesn't call usb_reset_endpoint() unless
1418 * the error is -EPIPE. Clear the halted status in the
1419 * xHCI hardware manually.
1420 */
1421 xhci_cleanup_halted_endpoint(xhci,
1422 slot_id, ep_index, ep_ring->stream_id,
1423 td, event_trb);
1424 } else {
1425 /* Update ring dequeue pointer */
1426 while (ep_ring->dequeue != td->last_trb)
1427 inc_deq(xhci, ep_ring, false);
1428 inc_deq(xhci, ep_ring, false);
1429 }
1430
1431td_cleanup:
1432 /* Clean up the endpoint's TD list */
1433 urb = td->urb;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001434 urb_priv = urb->hcpriv;
Andiry Xu4422da62010-07-22 15:22:55 -07001435
1436 /* Do one last check of the actual transfer length.
1437 * If the host controller said we transferred more data than
1438 * the buffer length, urb->actual_length will be a very big
1439 * number (since it's unsigned). Play it safe and say we didn't
1440 * transfer anything.
1441 */
1442 if (urb->actual_length > urb->transfer_buffer_length) {
1443 xhci_warn(xhci, "URB transfer length is wrong, "
1444 "xHC issue? req. len = %u, "
1445 "act. len = %u\n",
1446 urb->transfer_buffer_length,
1447 urb->actual_length);
1448 urb->actual_length = 0;
1449 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1450 *status = -EREMOTEIO;
1451 else
1452 *status = 0;
1453 }
1454 list_del(&td->td_list);
1455 /* Was this TD slated to be cancelled but completed anyway? */
1456 if (!list_empty(&td->cancelled_td_list))
1457 list_del(&td->cancelled_td_list);
1458
Andiry Xu8e51adc2010-07-22 15:23:31 -07001459 urb_priv->td_cnt++;
1460 /* Giveback the urb when all the tds are completed */
1461 if (urb_priv->td_cnt == urb_priv->length)
1462 ret = 1;
Andiry Xu4422da62010-07-22 15:22:55 -07001463 }
1464
1465 return ret;
1466}
1467
1468/*
Andiry Xu8af56be2010-07-22 15:23:03 -07001469 * Process control tds, update urb status and actual_length.
1470 */
1471static int process_ctrl_td(struct xhci_hcd *xhci, struct xhci_td *td,
1472 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1473 struct xhci_virt_ep *ep, int *status)
1474{
1475 struct xhci_virt_device *xdev;
1476 struct xhci_ring *ep_ring;
1477 unsigned int slot_id;
1478 int ep_index;
1479 struct xhci_ep_ctx *ep_ctx;
1480 u32 trb_comp_code;
1481
1482 slot_id = TRB_TO_SLOT_ID(event->flags);
1483 xdev = xhci->devs[slot_id];
1484 ep_index = TRB_TO_EP_ID(event->flags) - 1;
1485 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1486 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
1487 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1488
1489 xhci_debug_trb(xhci, xhci->event_ring->dequeue);
1490 switch (trb_comp_code) {
1491 case COMP_SUCCESS:
1492 if (event_trb == ep_ring->dequeue) {
1493 xhci_warn(xhci, "WARN: Success on ctrl setup TRB "
1494 "without IOC set??\n");
1495 *status = -ESHUTDOWN;
1496 } else if (event_trb != td->last_trb) {
1497 xhci_warn(xhci, "WARN: Success on ctrl data TRB "
1498 "without IOC set??\n");
1499 *status = -ESHUTDOWN;
1500 } else {
1501 xhci_dbg(xhci, "Successful control transfer!\n");
1502 *status = 0;
1503 }
1504 break;
1505 case COMP_SHORT_TX:
1506 xhci_warn(xhci, "WARN: short transfer on control ep\n");
1507 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1508 *status = -EREMOTEIO;
1509 else
1510 *status = 0;
1511 break;
1512 default:
1513 if (!xhci_requires_manual_halt_cleanup(xhci,
1514 ep_ctx, trb_comp_code))
1515 break;
1516 xhci_dbg(xhci, "TRB error code %u, "
1517 "halted endpoint index = %u\n",
1518 trb_comp_code, ep_index);
1519 /* else fall through */
1520 case COMP_STALL:
1521 /* Did we transfer part of the data (middle) phase? */
1522 if (event_trb != ep_ring->dequeue &&
1523 event_trb != td->last_trb)
1524 td->urb->actual_length =
1525 td->urb->transfer_buffer_length
1526 - TRB_LEN(event->transfer_len);
1527 else
1528 td->urb->actual_length = 0;
1529
1530 xhci_cleanup_halted_endpoint(xhci,
1531 slot_id, ep_index, 0, td, event_trb);
1532 return finish_td(xhci, td, event_trb, event, ep, status, true);
1533 }
1534 /*
1535 * Did we transfer any data, despite the errors that might have
1536 * happened? I.e. did we get past the setup stage?
1537 */
1538 if (event_trb != ep_ring->dequeue) {
1539 /* The event was for the status stage */
1540 if (event_trb == td->last_trb) {
1541 if (td->urb->actual_length != 0) {
1542 /* Don't overwrite a previously set error code
1543 */
1544 if ((*status == -EINPROGRESS || *status == 0) &&
1545 (td->urb->transfer_flags
1546 & URB_SHORT_NOT_OK))
1547 /* Did we already see a short data
1548 * stage? */
1549 *status = -EREMOTEIO;
1550 } else {
1551 td->urb->actual_length =
1552 td->urb->transfer_buffer_length;
1553 }
1554 } else {
1555 /* Maybe the event was for the data stage? */
1556 if (trb_comp_code != COMP_STOP_INVAL) {
1557 /* We didn't stop on a link TRB in the middle */
1558 td->urb->actual_length =
1559 td->urb->transfer_buffer_length -
1560 TRB_LEN(event->transfer_len);
1561 xhci_dbg(xhci, "Waiting for status "
1562 "stage event\n");
1563 return 0;
1564 }
1565 }
1566 }
1567
1568 return finish_td(xhci, td, event_trb, event, ep, status, false);
1569}
1570
1571/*
Andiry Xu04e51902010-07-22 15:23:39 -07001572 * Process isochronous tds, update urb packet status and actual_length.
1573 */
1574static int process_isoc_td(struct xhci_hcd *xhci, struct xhci_td *td,
1575 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1576 struct xhci_virt_ep *ep, int *status)
1577{
1578 struct xhci_ring *ep_ring;
1579 struct urb_priv *urb_priv;
1580 int idx;
1581 int len = 0;
1582 int skip_td = 0;
1583 union xhci_trb *cur_trb;
1584 struct xhci_segment *cur_seg;
1585 u32 trb_comp_code;
1586
1587 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1588 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1589 urb_priv = td->urb->hcpriv;
1590 idx = urb_priv->td_cnt;
1591
1592 if (ep->skip) {
1593 /* The transfer is partly done */
1594 *status = -EXDEV;
1595 td->urb->iso_frame_desc[idx].status = -EXDEV;
1596 } else {
1597 /* handle completion code */
1598 switch (trb_comp_code) {
1599 case COMP_SUCCESS:
1600 td->urb->iso_frame_desc[idx].status = 0;
1601 xhci_dbg(xhci, "Successful isoc transfer!\n");
1602 break;
1603 case COMP_SHORT_TX:
1604 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1605 td->urb->iso_frame_desc[idx].status =
1606 -EREMOTEIO;
1607 else
1608 td->urb->iso_frame_desc[idx].status = 0;
1609 break;
1610 case COMP_BW_OVER:
1611 td->urb->iso_frame_desc[idx].status = -ECOMM;
1612 skip_td = 1;
1613 break;
1614 case COMP_BUFF_OVER:
1615 case COMP_BABBLE:
1616 td->urb->iso_frame_desc[idx].status = -EOVERFLOW;
1617 skip_td = 1;
1618 break;
1619 case COMP_STALL:
1620 td->urb->iso_frame_desc[idx].status = -EPROTO;
1621 skip_td = 1;
1622 break;
1623 case COMP_STOP:
1624 case COMP_STOP_INVAL:
1625 break;
1626 default:
1627 td->urb->iso_frame_desc[idx].status = -1;
1628 break;
1629 }
1630 }
1631
1632 /* calc actual length */
1633 if (ep->skip) {
1634 td->urb->iso_frame_desc[idx].actual_length = 0;
Andiry Xu14184f92010-08-09 13:56:15 -07001635 /* Update ring dequeue pointer */
1636 while (ep_ring->dequeue != td->last_trb)
1637 inc_deq(xhci, ep_ring, false);
1638 inc_deq(xhci, ep_ring, false);
Andiry Xu04e51902010-07-22 15:23:39 -07001639 return finish_td(xhci, td, event_trb, event, ep, status, true);
1640 }
1641
1642 if (trb_comp_code == COMP_SUCCESS || skip_td == 1) {
1643 td->urb->iso_frame_desc[idx].actual_length =
1644 td->urb->iso_frame_desc[idx].length;
1645 td->urb->actual_length +=
1646 td->urb->iso_frame_desc[idx].length;
1647 } else {
1648 for (cur_trb = ep_ring->dequeue,
1649 cur_seg = ep_ring->deq_seg; cur_trb != event_trb;
1650 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
1651 if ((cur_trb->generic.field[3] &
1652 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_TR_NOOP) &&
1653 (cur_trb->generic.field[3] &
1654 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_LINK))
1655 len +=
1656 TRB_LEN(cur_trb->generic.field[2]);
1657 }
1658 len += TRB_LEN(cur_trb->generic.field[2]) -
1659 TRB_LEN(event->transfer_len);
1660
1661 if (trb_comp_code != COMP_STOP_INVAL) {
1662 td->urb->iso_frame_desc[idx].actual_length = len;
1663 td->urb->actual_length += len;
1664 }
1665 }
1666
1667 if ((idx == urb_priv->length - 1) && *status == -EINPROGRESS)
1668 *status = 0;
1669
1670 return finish_td(xhci, td, event_trb, event, ep, status, false);
1671}
1672
1673/*
Andiry Xu22405ed2010-07-22 15:23:08 -07001674 * Process bulk and interrupt tds, update urb status and actual_length.
1675 */
1676static int process_bulk_intr_td(struct xhci_hcd *xhci, struct xhci_td *td,
1677 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1678 struct xhci_virt_ep *ep, int *status)
1679{
1680 struct xhci_ring *ep_ring;
1681 union xhci_trb *cur_trb;
1682 struct xhci_segment *cur_seg;
1683 u32 trb_comp_code;
1684
1685 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1686 trb_comp_code = GET_COMP_CODE(event->transfer_len);
1687
1688 switch (trb_comp_code) {
1689 case COMP_SUCCESS:
1690 /* Double check that the HW transferred everything. */
1691 if (event_trb != td->last_trb) {
1692 xhci_warn(xhci, "WARN Successful completion "
1693 "on short TX\n");
1694 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1695 *status = -EREMOTEIO;
1696 else
1697 *status = 0;
1698 } else {
1699 if (usb_endpoint_xfer_bulk(&td->urb->ep->desc))
1700 xhci_dbg(xhci, "Successful bulk "
1701 "transfer!\n");
1702 else
1703 xhci_dbg(xhci, "Successful interrupt "
1704 "transfer!\n");
1705 *status = 0;
1706 }
1707 break;
1708 case COMP_SHORT_TX:
1709 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1710 *status = -EREMOTEIO;
1711 else
1712 *status = 0;
1713 break;
1714 default:
1715 /* Others already handled above */
1716 break;
1717 }
Andiry Xuf2c565e2010-12-20 17:12:24 +08001718 xhci_dbg(xhci, "ep %#x - asked for %d bytes, "
Andiry Xu22405ed2010-07-22 15:23:08 -07001719 "%d bytes untransferred\n",
1720 td->urb->ep->desc.bEndpointAddress,
1721 td->urb->transfer_buffer_length,
1722 TRB_LEN(event->transfer_len));
1723 /* Fast path - was this the last TRB in the TD for this URB? */
1724 if (event_trb == td->last_trb) {
1725 if (TRB_LEN(event->transfer_len) != 0) {
1726 td->urb->actual_length =
1727 td->urb->transfer_buffer_length -
1728 TRB_LEN(event->transfer_len);
1729 if (td->urb->transfer_buffer_length <
1730 td->urb->actual_length) {
1731 xhci_warn(xhci, "HC gave bad length "
1732 "of %d bytes left\n",
1733 TRB_LEN(event->transfer_len));
1734 td->urb->actual_length = 0;
1735 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1736 *status = -EREMOTEIO;
1737 else
1738 *status = 0;
1739 }
1740 /* Don't overwrite a previously set error code */
1741 if (*status == -EINPROGRESS) {
1742 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1743 *status = -EREMOTEIO;
1744 else
1745 *status = 0;
1746 }
1747 } else {
1748 td->urb->actual_length =
1749 td->urb->transfer_buffer_length;
1750 /* Ignore a short packet completion if the
1751 * untransferred length was zero.
1752 */
1753 if (*status == -EREMOTEIO)
1754 *status = 0;
1755 }
1756 } else {
1757 /* Slow path - walk the list, starting from the dequeue
1758 * pointer, to get the actual length transferred.
1759 */
1760 td->urb->actual_length = 0;
1761 for (cur_trb = ep_ring->dequeue, cur_seg = ep_ring->deq_seg;
1762 cur_trb != event_trb;
1763 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
1764 if ((cur_trb->generic.field[3] &
1765 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_TR_NOOP) &&
1766 (cur_trb->generic.field[3] &
1767 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_LINK))
1768 td->urb->actual_length +=
1769 TRB_LEN(cur_trb->generic.field[2]);
1770 }
1771 /* If the ring didn't stop on a Link or No-op TRB, add
1772 * in the actual bytes transferred from the Normal TRB
1773 */
1774 if (trb_comp_code != COMP_STOP_INVAL)
1775 td->urb->actual_length +=
1776 TRB_LEN(cur_trb->generic.field[2]) -
1777 TRB_LEN(event->transfer_len);
1778 }
1779
1780 return finish_td(xhci, td, event_trb, event, ep, status, false);
1781}
1782
1783/*
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001784 * If this function returns an error condition, it means it got a Transfer
1785 * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address.
1786 * At this point, the host controller is probably hosed and should be reset.
1787 */
1788static int handle_tx_event(struct xhci_hcd *xhci,
1789 struct xhci_transfer_event *event)
1790{
1791 struct xhci_virt_device *xdev;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001792 struct xhci_virt_ep *ep;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001793 struct xhci_ring *ep_ring;
Sarah Sharp82d10092009-08-07 14:04:52 -07001794 unsigned int slot_id;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001795 int ep_index;
Randy Dunlap326b4812010-04-19 08:53:50 -07001796 struct xhci_td *td = NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001797 dma_addr_t event_dma;
1798 struct xhci_segment *event_seg;
1799 union xhci_trb *event_trb;
Randy Dunlap326b4812010-04-19 08:53:50 -07001800 struct urb *urb = NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001801 int status = -EINPROGRESS;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001802 struct urb_priv *urb_priv;
John Yound115b042009-07-27 12:05:15 -07001803 struct xhci_ep_ctx *ep_ctx;
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001804 u32 trb_comp_code;
Andiry Xu4422da62010-07-22 15:22:55 -07001805 int ret = 0;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001806
Sarah Sharp82d10092009-08-07 14:04:52 -07001807 slot_id = TRB_TO_SLOT_ID(event->flags);
1808 xdev = xhci->devs[slot_id];
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001809 if (!xdev) {
1810 xhci_err(xhci, "ERROR Transfer event pointed to bad slot\n");
1811 return -ENODEV;
1812 }
1813
1814 /* Endpoint ID is 1 based, our index is zero based */
1815 ep_index = TRB_TO_EP_ID(event->flags) - 1;
Sarah Sharp66e49d82009-07-27 12:03:46 -07001816 xhci_dbg(xhci, "%s - ep index = %d\n", __func__, ep_index);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001817 ep = &xdev->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001818 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
John Yound115b042009-07-27 12:05:15 -07001819 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
Andiry Xu986a92d2010-07-22 15:23:20 -07001820 if (!ep_ring ||
1821 (ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_DISABLED) {
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001822 xhci_err(xhci, "ERROR Transfer event for disabled endpoint "
1823 "or incorrect stream ring\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001824 return -ENODEV;
1825 }
1826
Sarah Sharp8e595a52009-07-27 12:03:31 -07001827 event_dma = event->buffer;
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001828 trb_comp_code = GET_COMP_CODE(event->transfer_len);
Andiry Xu986a92d2010-07-22 15:23:20 -07001829 /* Look for common error cases */
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001830 switch (trb_comp_code) {
Sarah Sharpb10de142009-04-27 19:58:50 -07001831 /* Skip codes that require special handling depending on
1832 * transfer type
1833 */
1834 case COMP_SUCCESS:
1835 case COMP_SHORT_TX:
1836 break;
Sarah Sharpae636742009-04-29 19:02:31 -07001837 case COMP_STOP:
1838 xhci_dbg(xhci, "Stopped on Transfer TRB\n");
1839 break;
1840 case COMP_STOP_INVAL:
1841 xhci_dbg(xhci, "Stopped on No-op or Link TRB\n");
1842 break;
Sarah Sharpb10de142009-04-27 19:58:50 -07001843 case COMP_STALL:
1844 xhci_warn(xhci, "WARN: Stalled endpoint\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001845 ep->ep_state |= EP_HALTED;
Sarah Sharpb10de142009-04-27 19:58:50 -07001846 status = -EPIPE;
1847 break;
1848 case COMP_TRB_ERR:
1849 xhci_warn(xhci, "WARN: TRB error on endpoint\n");
1850 status = -EILSEQ;
1851 break;
Sarah Sharpec74e402009-11-11 10:28:36 -08001852 case COMP_SPLIT_ERR:
Sarah Sharpb10de142009-04-27 19:58:50 -07001853 case COMP_TX_ERR:
1854 xhci_warn(xhci, "WARN: transfer error on endpoint\n");
1855 status = -EPROTO;
1856 break;
Sarah Sharp4a731432009-07-27 12:04:32 -07001857 case COMP_BABBLE:
1858 xhci_warn(xhci, "WARN: babble error on endpoint\n");
1859 status = -EOVERFLOW;
1860 break;
Sarah Sharpb10de142009-04-27 19:58:50 -07001861 case COMP_DB_ERR:
1862 xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n");
1863 status = -ENOSR;
1864 break;
Andiry Xu986a92d2010-07-22 15:23:20 -07001865 case COMP_BW_OVER:
1866 xhci_warn(xhci, "WARN: bandwidth overrun event on endpoint\n");
1867 break;
1868 case COMP_BUFF_OVER:
1869 xhci_warn(xhci, "WARN: buffer overrun event on endpoint\n");
1870 break;
1871 case COMP_UNDERRUN:
1872 /*
1873 * When the Isoch ring is empty, the xHC will generate
1874 * a Ring Overrun Event for IN Isoch endpoint or Ring
1875 * Underrun Event for OUT Isoch endpoint.
1876 */
1877 xhci_dbg(xhci, "underrun event on endpoint\n");
1878 if (!list_empty(&ep_ring->td_list))
1879 xhci_dbg(xhci, "Underrun Event for slot %d ep %d "
1880 "still with TDs queued?\n",
1881 TRB_TO_SLOT_ID(event->flags), ep_index);
1882 goto cleanup;
1883 case COMP_OVERRUN:
1884 xhci_dbg(xhci, "overrun event on endpoint\n");
1885 if (!list_empty(&ep_ring->td_list))
1886 xhci_dbg(xhci, "Overrun Event for slot %d ep %d "
1887 "still with TDs queued?\n",
1888 TRB_TO_SLOT_ID(event->flags), ep_index);
1889 goto cleanup;
Andiry Xud18240d2010-07-22 15:23:25 -07001890 case COMP_MISSED_INT:
1891 /*
1892 * When encounter missed service error, one or more isoc tds
1893 * may be missed by xHC.
1894 * Set skip flag of the ep_ring; Complete the missed tds as
1895 * short transfer when process the ep_ring next time.
1896 */
1897 ep->skip = true;
1898 xhci_dbg(xhci, "Miss service interval error, set skip flag\n");
1899 goto cleanup;
Sarah Sharpb10de142009-04-27 19:58:50 -07001900 default:
Sarah Sharpb45b5062009-12-09 15:59:06 -08001901 if (xhci_is_vendor_info_code(xhci, trb_comp_code)) {
Sarah Sharp5ad6a522009-11-11 10:28:40 -08001902 status = 0;
1903 break;
1904 }
Andiry Xu986a92d2010-07-22 15:23:20 -07001905 xhci_warn(xhci, "ERROR Unknown event condition, HC probably "
1906 "busted\n");
Sarah Sharpb10de142009-04-27 19:58:50 -07001907 goto cleanup;
1908 }
Andiry Xu986a92d2010-07-22 15:23:20 -07001909
Andiry Xud18240d2010-07-22 15:23:25 -07001910 do {
1911 /* This TRB should be in the TD at the head of this ring's
1912 * TD list.
1913 */
1914 if (list_empty(&ep_ring->td_list)) {
1915 xhci_warn(xhci, "WARN Event TRB for slot %d ep %d "
1916 "with no TDs queued?\n",
1917 TRB_TO_SLOT_ID(event->flags), ep_index);
1918 xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
1919 (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10);
1920 xhci_print_trb_offsets(xhci, (union xhci_trb *) event);
1921 if (ep->skip) {
1922 ep->skip = false;
1923 xhci_dbg(xhci, "td_list is empty while skip "
1924 "flag set. Clear skip flag.\n");
1925 }
1926 ret = 0;
1927 goto cleanup;
1928 }
Andiry Xu986a92d2010-07-22 15:23:20 -07001929
Andiry Xud18240d2010-07-22 15:23:25 -07001930 td = list_entry(ep_ring->td_list.next, struct xhci_td, td_list);
1931 /* Is this a TRB in the currently executing TD? */
1932 event_seg = trb_in_td(ep_ring->deq_seg, ep_ring->dequeue,
1933 td->last_trb, event_dma);
1934 if (event_seg && ep->skip) {
1935 xhci_dbg(xhci, "Found td. Clear skip flag.\n");
1936 ep->skip = false;
1937 }
1938 if (!event_seg &&
1939 (!ep->skip || !usb_endpoint_xfer_isoc(&td->urb->ep->desc))) {
1940 /* HC is busted, give up! */
1941 xhci_err(xhci, "ERROR Transfer event TRB DMA ptr not "
1942 "part of current TD\n");
1943 return -ESHUTDOWN;
1944 }
Andiry Xu986a92d2010-07-22 15:23:20 -07001945
Andiry Xud18240d2010-07-22 15:23:25 -07001946 if (event_seg) {
1947 event_trb = &event_seg->trbs[(event_dma -
1948 event_seg->dma) / sizeof(*event_trb)];
1949 /*
1950 * No-op TRB should not trigger interrupts.
1951 * If event_trb is a no-op TRB, it means the
1952 * corresponding TD has been cancelled. Just ignore
1953 * the TD.
1954 */
1955 if ((event_trb->generic.field[3] & TRB_TYPE_BITMASK)
1956 == TRB_TYPE(TRB_TR_NOOP)) {
1957 xhci_dbg(xhci, "event_trb is a no-op TRB. "
1958 "Skip it\n");
1959 goto cleanup;
1960 }
1961 }
1962
1963 /* Now update the urb's actual_length and give back to
1964 * the core
1965 */
1966 if (usb_endpoint_xfer_control(&td->urb->ep->desc))
1967 ret = process_ctrl_td(xhci, td, event_trb, event, ep,
1968 &status);
Andiry Xu04e51902010-07-22 15:23:39 -07001969 else if (usb_endpoint_xfer_isoc(&td->urb->ep->desc))
1970 ret = process_isoc_td(xhci, td, event_trb, event, ep,
1971 &status);
Andiry Xud18240d2010-07-22 15:23:25 -07001972 else
1973 ret = process_bulk_intr_td(xhci, td, event_trb, event,
1974 ep, &status);
Andiry Xu4422da62010-07-22 15:22:55 -07001975
1976cleanup:
Andiry Xud18240d2010-07-22 15:23:25 -07001977 /*
1978 * Do not update event ring dequeue pointer if ep->skip is set.
1979 * Will roll back to continue process missed tds.
Sarah Sharp82d10092009-08-07 14:04:52 -07001980 */
Andiry Xud18240d2010-07-22 15:23:25 -07001981 if (trb_comp_code == COMP_MISSED_INT || !ep->skip) {
1982 inc_deq(xhci, xhci->event_ring, true);
Andiry Xud18240d2010-07-22 15:23:25 -07001983 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001984
Andiry Xud18240d2010-07-22 15:23:25 -07001985 if (ret) {
1986 urb = td->urb;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001987 urb_priv = urb->hcpriv;
Andiry Xud18240d2010-07-22 15:23:25 -07001988 /* Leave the TD around for the reset endpoint function
1989 * to use(but only if it's not a control endpoint,
1990 * since we already queued the Set TR dequeue pointer
1991 * command for stalled control endpoints).
1992 */
1993 if (usb_endpoint_xfer_control(&urb->ep->desc) ||
1994 (trb_comp_code != COMP_STALL &&
1995 trb_comp_code != COMP_BABBLE))
Andiry Xu8e51adc2010-07-22 15:23:31 -07001996 xhci_urb_free_priv(xhci, urb_priv);
Andiry Xud18240d2010-07-22 15:23:25 -07001997
Sarah Sharp214f76f2010-10-26 11:22:02 -07001998 usb_hcd_unlink_urb_from_ep(bus_to_hcd(urb->dev->bus), urb);
Andiry Xud18240d2010-07-22 15:23:25 -07001999 xhci_dbg(xhci, "Giveback URB %p, len = %d, "
2000 "status = %d\n",
2001 urb, urb->actual_length, status);
2002 spin_unlock(&xhci->lock);
Sarah Sharp214f76f2010-10-26 11:22:02 -07002003 usb_hcd_giveback_urb(bus_to_hcd(urb->dev->bus), urb, status);
Andiry Xud18240d2010-07-22 15:23:25 -07002004 spin_lock(&xhci->lock);
2005 }
2006
2007 /*
2008 * If ep->skip is set, it means there are missed tds on the
2009 * endpoint ring need to take care of.
2010 * Process them as short transfer until reach the td pointed by
2011 * the event.
2012 */
2013 } while (ep->skip && trb_comp_code != COMP_MISSED_INT);
2014
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002015 return 0;
2016}
2017
2018/*
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002019 * This function handles all OS-owned events on the event ring. It may drop
2020 * xhci->lock between event processing (e.g. to pass up port status changes).
2021 */
Sarah Sharpd6d98a42010-07-29 22:12:46 -07002022static void xhci_handle_event(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002023{
2024 union xhci_trb *event;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002025 int update_ptrs = 1;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002026 int ret;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002027
Sarah Sharp66e49d82009-07-27 12:03:46 -07002028 xhci_dbg(xhci, "In %s\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002029 if (!xhci->event_ring || !xhci->event_ring->dequeue) {
2030 xhci->error_bitmask |= 1 << 1;
2031 return;
2032 }
2033
2034 event = xhci->event_ring->dequeue;
2035 /* Does the HC or OS own the TRB? */
2036 if ((event->event_cmd.flags & TRB_CYCLE) !=
2037 xhci->event_ring->cycle_state) {
2038 xhci->error_bitmask |= 1 << 2;
2039 return;
2040 }
Sarah Sharp66e49d82009-07-27 12:03:46 -07002041 xhci_dbg(xhci, "%s - OS owns TRB\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002042
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002043 /* FIXME: Handle more event types. */
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002044 switch ((event->event_cmd.flags & TRB_TYPE_BITMASK)) {
2045 case TRB_TYPE(TRB_COMPLETION):
Sarah Sharp66e49d82009-07-27 12:03:46 -07002046 xhci_dbg(xhci, "%s - calling handle_cmd_completion\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002047 handle_cmd_completion(xhci, &event->event_cmd);
Sarah Sharp66e49d82009-07-27 12:03:46 -07002048 xhci_dbg(xhci, "%s - returned from handle_cmd_completion\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002049 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002050 case TRB_TYPE(TRB_PORT_STATUS):
Sarah Sharp66e49d82009-07-27 12:03:46 -07002051 xhci_dbg(xhci, "%s - calling handle_port_status\n", __func__);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002052 handle_port_status(xhci, event);
Sarah Sharp66e49d82009-07-27 12:03:46 -07002053 xhci_dbg(xhci, "%s - returned from handle_port_status\n", __func__);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002054 update_ptrs = 0;
2055 break;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002056 case TRB_TYPE(TRB_TRANSFER):
Sarah Sharp66e49d82009-07-27 12:03:46 -07002057 xhci_dbg(xhci, "%s - calling handle_tx_event\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002058 ret = handle_tx_event(xhci, &event->trans_event);
Sarah Sharp66e49d82009-07-27 12:03:46 -07002059 xhci_dbg(xhci, "%s - returned from handle_tx_event\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002060 if (ret < 0)
2061 xhci->error_bitmask |= 1 << 9;
2062 else
2063 update_ptrs = 0;
2064 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002065 default:
Sarah Sharp02386342010-05-24 13:25:28 -07002066 if ((event->event_cmd.flags & TRB_TYPE_BITMASK) >= TRB_TYPE(48))
2067 handle_vendor_event(xhci, event);
2068 else
2069 xhci->error_bitmask |= 1 << 3;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002070 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -07002071 /* Any of the above functions may drop and re-acquire the lock, so check
2072 * to make sure a watchdog timer didn't mark the host as non-responsive.
2073 */
2074 if (xhci->xhc_state & XHCI_STATE_DYING) {
2075 xhci_dbg(xhci, "xHCI host dying, returning from "
2076 "event handler.\n");
2077 return;
2078 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002079
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002080 if (update_ptrs)
2081 /* Update SW event ring dequeue pointer */
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002082 inc_deq(xhci, xhci->event_ring, true);
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002083
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002084 /* Are there more items on the event ring? */
Stephen Rothwellb7258a42009-04-29 19:02:47 -07002085 xhci_handle_event(xhci);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002086}
Sarah Sharp9032cd52010-07-29 22:12:29 -07002087
2088/*
2089 * xHCI spec says we can get an interrupt, and if the HC has an error condition,
2090 * we might get bad data out of the event ring. Section 4.10.2.7 has a list of
2091 * indicators of an event TRB error, but we check the status *first* to be safe.
2092 */
2093irqreturn_t xhci_irq(struct usb_hcd *hcd)
2094{
2095 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharpc21599a2010-07-29 22:13:00 -07002096 u32 status;
Sarah Sharp9032cd52010-07-29 22:12:29 -07002097 union xhci_trb *trb;
Sarah Sharpbda53142010-07-29 22:12:38 -07002098 u64 temp_64;
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002099 union xhci_trb *event_ring_deq;
2100 dma_addr_t deq;
Sarah Sharp9032cd52010-07-29 22:12:29 -07002101
2102 spin_lock(&xhci->lock);
2103 trb = xhci->event_ring->dequeue;
2104 /* Check if the xHC generated the interrupt, or the irq is shared */
Sarah Sharp27e0dd42010-07-29 22:12:43 -07002105 status = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpc21599a2010-07-29 22:13:00 -07002106 if (status == 0xffffffff)
Sarah Sharp9032cd52010-07-29 22:12:29 -07002107 goto hw_died;
2108
Sarah Sharpc21599a2010-07-29 22:13:00 -07002109 if (!(status & STS_EINT)) {
Sarah Sharp9032cd52010-07-29 22:12:29 -07002110 spin_unlock(&xhci->lock);
Sarah Sharp9032cd52010-07-29 22:12:29 -07002111 return IRQ_NONE;
2112 }
Sarah Sharp27e0dd42010-07-29 22:12:43 -07002113 xhci_dbg(xhci, "op reg status = %08x\n", status);
Sarah Sharp9032cd52010-07-29 22:12:29 -07002114 xhci_dbg(xhci, "Event ring dequeue ptr:\n");
2115 xhci_dbg(xhci, "@%llx %08x %08x %08x %08x\n",
2116 (unsigned long long)
2117 xhci_trb_virt_to_dma(xhci->event_ring->deq_seg, trb),
2118 lower_32_bits(trb->link.segment_ptr),
2119 upper_32_bits(trb->link.segment_ptr),
2120 (unsigned int) trb->link.intr_target,
2121 (unsigned int) trb->link.control);
2122
Sarah Sharp27e0dd42010-07-29 22:12:43 -07002123 if (status & STS_FATAL) {
Sarah Sharp9032cd52010-07-29 22:12:29 -07002124 xhci_warn(xhci, "WARNING: Host System Error\n");
2125 xhci_halt(xhci);
2126hw_died:
Sarah Sharp9032cd52010-07-29 22:12:29 -07002127 spin_unlock(&xhci->lock);
2128 return -ESHUTDOWN;
2129 }
2130
Sarah Sharpbda53142010-07-29 22:12:38 -07002131 /*
2132 * Clear the op reg interrupt status first,
2133 * so we can receive interrupts from other MSI-X interrupters.
2134 * Write 1 to clear the interrupt status.
2135 */
Sarah Sharp27e0dd42010-07-29 22:12:43 -07002136 status |= STS_EINT;
2137 xhci_writel(xhci, status, &xhci->op_regs->status);
Sarah Sharpbda53142010-07-29 22:12:38 -07002138 /* FIXME when MSI-X is supported and there are multiple vectors */
2139 /* Clear the MSI-X event interrupt status */
2140
Sarah Sharpc21599a2010-07-29 22:13:00 -07002141 if (hcd->irq != -1) {
2142 u32 irq_pending;
2143 /* Acknowledge the PCI interrupt */
2144 irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
2145 irq_pending |= 0x3;
2146 xhci_writel(xhci, irq_pending, &xhci->ir_set->irq_pending);
2147 }
Sarah Sharpbda53142010-07-29 22:12:38 -07002148
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002149 if (xhci->xhc_state & XHCI_STATE_DYING) {
Sarah Sharpbda53142010-07-29 22:12:38 -07002150 xhci_dbg(xhci, "xHCI dying, ignoring interrupt. "
2151 "Shouldn't IRQs be disabled?\n");
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002152 /* Clear the event handler busy flag (RW1C);
2153 * the event ring should be empty.
Sarah Sharpbda53142010-07-29 22:12:38 -07002154 */
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002155 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
2156 xhci_write_64(xhci, temp_64 | ERST_EHB,
2157 &xhci->ir_set->erst_dequeue);
2158 spin_unlock(&xhci->lock);
2159
2160 return IRQ_HANDLED;
2161 }
2162
2163 event_ring_deq = xhci->event_ring->dequeue;
2164 /* FIXME this should be a delayed service routine
2165 * that clears the EHB.
2166 */
2167 xhci_handle_event(xhci);
2168
2169 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
2170 /* If necessary, update the HW's version of the event ring deq ptr. */
2171 if (event_ring_deq != xhci->event_ring->dequeue) {
2172 deq = xhci_trb_virt_to_dma(xhci->event_ring->deq_seg,
2173 xhci->event_ring->dequeue);
2174 if (deq == 0)
2175 xhci_warn(xhci, "WARN something wrong with SW event "
2176 "ring dequeue ptr.\n");
2177 /* Update HC event ring dequeue pointer */
2178 temp_64 &= ERST_PTR_MASK;
2179 temp_64 |= ((u64) deq & (u64) ~ERST_PTR_MASK);
2180 }
Sarah Sharpbda53142010-07-29 22:12:38 -07002181
2182 /* Clear the event handler busy flag (RW1C); event ring is empty. */
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002183 temp_64 |= ERST_EHB;
2184 xhci_write_64(xhci, temp_64, &xhci->ir_set->erst_dequeue);
2185
Sarah Sharp9032cd52010-07-29 22:12:29 -07002186 spin_unlock(&xhci->lock);
2187
2188 return IRQ_HANDLED;
2189}
2190
2191irqreturn_t xhci_msi_irq(int irq, struct usb_hcd *hcd)
2192{
2193 irqreturn_t ret;
2194
2195 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
Sarah Sharpff9d78b2010-12-02 19:10:02 -08002196 if (hcd->shared_hcd)
2197 set_bit(HCD_FLAG_SAW_IRQ, &hcd->shared_hcd->flags);
Sarah Sharp9032cd52010-07-29 22:12:29 -07002198
2199 ret = xhci_irq(hcd);
2200
2201 return ret;
2202}
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002203
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002204/**** Endpoint Ring Operations ****/
2205
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002206/*
2207 * Generic function for queueing a TRB on a ring.
2208 * The caller must have checked to make sure there's room on the ring.
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002209 *
2210 * @more_trbs_coming: Will you enqueue more TRBs before calling
2211 * prepare_transfer()?
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002212 */
2213static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002214 bool consumer, bool more_trbs_coming,
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002215 u32 field1, u32 field2, u32 field3, u32 field4)
2216{
2217 struct xhci_generic_trb *trb;
2218
2219 trb = &ring->enqueue->generic;
2220 trb->field[0] = field1;
2221 trb->field[1] = field2;
2222 trb->field[2] = field3;
2223 trb->field[3] = field4;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002224 inc_enq(xhci, ring, consumer, more_trbs_coming);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002225}
2226
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002227/*
2228 * Does various checks on the endpoint ring, and makes it ready to queue num_trbs.
2229 * FIXME allocate segments if the ring is full.
2230 */
2231static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
2232 u32 ep_state, unsigned int num_trbs, gfp_t mem_flags)
2233{
2234 /* Make sure the endpoint has been added to xHC schedule */
2235 xhci_dbg(xhci, "Endpoint state = 0x%x\n", ep_state);
2236 switch (ep_state) {
2237 case EP_STATE_DISABLED:
2238 /*
2239 * USB core changed config/interfaces without notifying us,
2240 * or hardware is reporting the wrong state.
2241 */
2242 xhci_warn(xhci, "WARN urb submitted to disabled ep\n");
2243 return -ENOENT;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002244 case EP_STATE_ERROR:
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002245 xhci_warn(xhci, "WARN waiting for error on ep to be cleared\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002246 /* FIXME event handling code for error needs to clear it */
2247 /* XXX not sure if this should be -ENOENT or not */
2248 return -EINVAL;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002249 case EP_STATE_HALTED:
2250 xhci_dbg(xhci, "WARN halted endpoint, queueing URB anyway.\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002251 case EP_STATE_STOPPED:
2252 case EP_STATE_RUNNING:
2253 break;
2254 default:
2255 xhci_err(xhci, "ERROR unknown endpoint state for ep\n");
2256 /*
2257 * FIXME issue Configure Endpoint command to try to get the HC
2258 * back into a known state.
2259 */
2260 return -EINVAL;
2261 }
2262 if (!room_on_ring(xhci, ep_ring, num_trbs)) {
2263 /* FIXME allocate more room */
2264 xhci_err(xhci, "ERROR no room on ep ring\n");
2265 return -ENOMEM;
2266 }
John Youn6c12db92010-05-10 15:33:00 -07002267
2268 if (enqueue_is_link_trb(ep_ring)) {
2269 struct xhci_ring *ring = ep_ring;
2270 union xhci_trb *next;
John Youn6c12db92010-05-10 15:33:00 -07002271
2272 xhci_dbg(xhci, "prepare_ring: pointing to link trb\n");
2273 next = ring->enqueue;
2274
2275 while (last_trb(xhci, ring, ring->enq_seg, next)) {
2276
2277 /* If we're not dealing with 0.95 hardware,
2278 * clear the chain bit.
2279 */
2280 if (!xhci_link_trb_quirk(xhci))
2281 next->link.control &= ~TRB_CHAIN;
2282 else
2283 next->link.control |= TRB_CHAIN;
2284
2285 wmb();
2286 next->link.control ^= (u32) TRB_CYCLE;
2287
2288 /* Toggle the cycle bit after the last ring segment. */
2289 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
2290 ring->cycle_state = (ring->cycle_state ? 0 : 1);
2291 if (!in_interrupt()) {
2292 xhci_dbg(xhci, "queue_trb: Toggle cycle "
2293 "state for ring %p = %i\n",
2294 ring, (unsigned int)ring->cycle_state);
2295 }
2296 }
2297 ring->enq_seg = ring->enq_seg->next;
2298 ring->enqueue = ring->enq_seg->trbs;
2299 next = ring->enqueue;
2300 }
2301 }
2302
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002303 return 0;
2304}
2305
Sarah Sharp23e3be12009-04-29 19:05:20 -07002306static int prepare_transfer(struct xhci_hcd *xhci,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002307 struct xhci_virt_device *xdev,
2308 unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002309 unsigned int stream_id,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002310 unsigned int num_trbs,
2311 struct urb *urb,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002312 unsigned int td_index,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002313 gfp_t mem_flags)
2314{
2315 int ret;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002316 struct urb_priv *urb_priv;
2317 struct xhci_td *td;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002318 struct xhci_ring *ep_ring;
John Yound115b042009-07-27 12:05:15 -07002319 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002320
2321 ep_ring = xhci_stream_id_to_ring(xdev, ep_index, stream_id);
2322 if (!ep_ring) {
2323 xhci_dbg(xhci, "Can't prepare ring for bad stream ID %u\n",
2324 stream_id);
2325 return -EINVAL;
2326 }
2327
2328 ret = prepare_ring(xhci, ep_ring,
John Yound115b042009-07-27 12:05:15 -07002329 ep_ctx->ep_info & EP_STATE_MASK,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002330 num_trbs, mem_flags);
2331 if (ret)
2332 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002333
Andiry Xu8e51adc2010-07-22 15:23:31 -07002334 urb_priv = urb->hcpriv;
2335 td = urb_priv->td[td_index];
2336
2337 INIT_LIST_HEAD(&td->td_list);
2338 INIT_LIST_HEAD(&td->cancelled_td_list);
2339
2340 if (td_index == 0) {
Sarah Sharp214f76f2010-10-26 11:22:02 -07002341 ret = usb_hcd_link_urb_to_ep(bus_to_hcd(urb->dev->bus), urb);
Andiry Xu8e51adc2010-07-22 15:23:31 -07002342 if (unlikely(ret)) {
2343 xhci_urb_free_priv(xhci, urb_priv);
2344 urb->hcpriv = NULL;
2345 return ret;
2346 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002347 }
2348
Andiry Xu8e51adc2010-07-22 15:23:31 -07002349 td->urb = urb;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002350 /* Add this TD to the tail of the endpoint ring's TD list */
Andiry Xu8e51adc2010-07-22 15:23:31 -07002351 list_add_tail(&td->td_list, &ep_ring->td_list);
2352 td->start_seg = ep_ring->enq_seg;
2353 td->first_trb = ep_ring->enqueue;
2354
2355 urb_priv->td[td_index] = td;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002356
2357 return 0;
2358}
2359
Sarah Sharp23e3be12009-04-29 19:05:20 -07002360static unsigned int count_sg_trbs_needed(struct xhci_hcd *xhci, struct urb *urb)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002361{
2362 int num_sgs, num_trbs, running_total, temp, i;
2363 struct scatterlist *sg;
2364
2365 sg = NULL;
2366 num_sgs = urb->num_sgs;
2367 temp = urb->transfer_buffer_length;
2368
2369 xhci_dbg(xhci, "count sg list trbs: \n");
2370 num_trbs = 0;
Matthew Wilcox910f8d02010-05-01 12:20:01 -06002371 for_each_sg(urb->sg, sg, num_sgs, i) {
Sarah Sharp8a96c052009-04-27 19:59:19 -07002372 unsigned int previous_total_trbs = num_trbs;
2373 unsigned int len = sg_dma_len(sg);
2374
2375 /* Scatter gather list entries may cross 64KB boundaries */
2376 running_total = TRB_MAX_BUFF_SIZE -
2377 (sg_dma_address(sg) & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2378 if (running_total != 0)
2379 num_trbs++;
2380
2381 /* How many more 64KB chunks to transfer, how many more TRBs? */
2382 while (running_total < sg_dma_len(sg)) {
2383 num_trbs++;
2384 running_total += TRB_MAX_BUFF_SIZE;
2385 }
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002386 xhci_dbg(xhci, " sg #%d: dma = %#llx, len = %#x (%d), num_trbs = %d\n",
2387 i, (unsigned long long)sg_dma_address(sg),
2388 len, len, num_trbs - previous_total_trbs);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002389
2390 len = min_t(int, len, temp);
2391 temp -= len;
2392 if (temp == 0)
2393 break;
2394 }
2395 xhci_dbg(xhci, "\n");
2396 if (!in_interrupt())
Andiry Xuf2c565e2010-12-20 17:12:24 +08002397 xhci_dbg(xhci, "ep %#x - urb len = %d, sglist used, "
2398 "num_trbs = %d\n",
Sarah Sharp8a96c052009-04-27 19:59:19 -07002399 urb->ep->desc.bEndpointAddress,
2400 urb->transfer_buffer_length,
2401 num_trbs);
2402 return num_trbs;
2403}
2404
Sarah Sharp23e3be12009-04-29 19:05:20 -07002405static void check_trb_math(struct urb *urb, int num_trbs, int running_total)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002406{
2407 if (num_trbs != 0)
2408 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated number of "
2409 "TRBs, %d left\n", __func__,
2410 urb->ep->desc.bEndpointAddress, num_trbs);
2411 if (running_total != urb->transfer_buffer_length)
2412 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, "
2413 "queued %#x (%d), asked for %#x (%d)\n",
2414 __func__,
2415 urb->ep->desc.bEndpointAddress,
2416 running_total, running_total,
2417 urb->transfer_buffer_length,
2418 urb->transfer_buffer_length);
2419}
2420
Sarah Sharp23e3be12009-04-29 19:05:20 -07002421static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002422 unsigned int ep_index, unsigned int stream_id, int start_cycle,
Andiry Xue1eab2e2011-01-04 16:30:39 -08002423 struct xhci_generic_trb *start_trb)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002424{
Sarah Sharp8a96c052009-04-27 19:59:19 -07002425 /*
2426 * Pass all the TRBs to the hardware at once and make sure this write
2427 * isn't reordered.
2428 */
2429 wmb();
Andiry Xu50f7b522010-12-20 15:09:34 +08002430 if (start_cycle)
2431 start_trb->field[3] |= start_cycle;
2432 else
2433 start_trb->field[3] &= ~0x1;
Andiry Xube88fe42010-10-14 07:22:57 -07002434 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, stream_id);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002435}
2436
Sarah Sharp624defa2009-09-02 12:14:28 -07002437/*
2438 * xHCI uses normal TRBs for both bulk and interrupt. When the interrupt
2439 * endpoint is to be serviced, the xHC will consume (at most) one TD. A TD
2440 * (comprised of sg list entries) can take several service intervals to
2441 * transmit.
2442 */
2443int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
2444 struct urb *urb, int slot_id, unsigned int ep_index)
2445{
2446 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci,
2447 xhci->devs[slot_id]->out_ctx, ep_index);
2448 int xhci_interval;
2449 int ep_interval;
2450
2451 xhci_interval = EP_INTERVAL_TO_UFRAMES(ep_ctx->ep_info);
2452 ep_interval = urb->interval;
2453 /* Convert to microframes */
2454 if (urb->dev->speed == USB_SPEED_LOW ||
2455 urb->dev->speed == USB_SPEED_FULL)
2456 ep_interval *= 8;
2457 /* FIXME change this to a warning and a suggestion to use the new API
2458 * to set the polling interval (once the API is added).
2459 */
2460 if (xhci_interval != ep_interval) {
Andiry Xu7961acd2010-12-20 17:14:20 +08002461 if (printk_ratelimit())
Sarah Sharp624defa2009-09-02 12:14:28 -07002462 dev_dbg(&urb->dev->dev, "Driver uses different interval"
2463 " (%d microframe%s) than xHCI "
2464 "(%d microframe%s)\n",
2465 ep_interval,
2466 ep_interval == 1 ? "" : "s",
2467 xhci_interval,
2468 xhci_interval == 1 ? "" : "s");
2469 urb->interval = xhci_interval;
2470 /* Convert back to frames for LS/FS devices */
2471 if (urb->dev->speed == USB_SPEED_LOW ||
2472 urb->dev->speed == USB_SPEED_FULL)
2473 urb->interval /= 8;
2474 }
2475 return xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
2476}
2477
Sarah Sharp04dd9502009-11-11 10:28:30 -08002478/*
2479 * The TD size is the number of bytes remaining in the TD (including this TRB),
2480 * right shifted by 10.
2481 * It must fit in bits 21:17, so it can't be bigger than 31.
2482 */
2483static u32 xhci_td_remainder(unsigned int remainder)
2484{
2485 u32 max = (1 << (21 - 17 + 1)) - 1;
2486
2487 if ((remainder >> 10) >= max)
2488 return max << 17;
2489 else
2490 return (remainder >> 10) << 17;
2491}
2492
Sarah Sharp23e3be12009-04-29 19:05:20 -07002493static int queue_bulk_sg_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002494 struct urb *urb, int slot_id, unsigned int ep_index)
2495{
2496 struct xhci_ring *ep_ring;
2497 unsigned int num_trbs;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002498 struct urb_priv *urb_priv;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002499 struct xhci_td *td;
2500 struct scatterlist *sg;
2501 int num_sgs;
2502 int trb_buff_len, this_sg_len, running_total;
2503 bool first_trb;
2504 u64 addr;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002505 bool more_trbs_coming;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002506
2507 struct xhci_generic_trb *start_trb;
2508 int start_cycle;
2509
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002510 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2511 if (!ep_ring)
2512 return -EINVAL;
2513
Sarah Sharp8a96c052009-04-27 19:59:19 -07002514 num_trbs = count_sg_trbs_needed(xhci, urb);
2515 num_sgs = urb->num_sgs;
2516
Sarah Sharp23e3be12009-04-29 19:05:20 -07002517 trb_buff_len = prepare_transfer(xhci, xhci->devs[slot_id],
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002518 ep_index, urb->stream_id,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002519 num_trbs, urb, 0, mem_flags);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002520 if (trb_buff_len < 0)
2521 return trb_buff_len;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002522
2523 urb_priv = urb->hcpriv;
2524 td = urb_priv->td[0];
2525
Sarah Sharp8a96c052009-04-27 19:59:19 -07002526 /*
2527 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2528 * until we've finished creating all the other TRBs. The ring's cycle
2529 * state may change as we enqueue the other TRBs, so save it too.
2530 */
2531 start_trb = &ep_ring->enqueue->generic;
2532 start_cycle = ep_ring->cycle_state;
2533
2534 running_total = 0;
2535 /*
2536 * How much data is in the first TRB?
2537 *
2538 * There are three forces at work for TRB buffer pointers and lengths:
2539 * 1. We don't want to walk off the end of this sg-list entry buffer.
2540 * 2. The transfer length that the driver requested may be smaller than
2541 * the amount of memory allocated for this scatter-gather list.
2542 * 3. TRBs buffers can't cross 64KB boundaries.
2543 */
Matthew Wilcox910f8d02010-05-01 12:20:01 -06002544 sg = urb->sg;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002545 addr = (u64) sg_dma_address(sg);
2546 this_sg_len = sg_dma_len(sg);
2547 trb_buff_len = TRB_MAX_BUFF_SIZE -
2548 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2549 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2550 if (trb_buff_len > urb->transfer_buffer_length)
2551 trb_buff_len = urb->transfer_buffer_length;
2552 xhci_dbg(xhci, "First length to xfer from 1st sglist entry = %u\n",
2553 trb_buff_len);
2554
2555 first_trb = true;
2556 /* Queue the first TRB, even if it's zero-length */
2557 do {
2558 u32 field = 0;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002559 u32 length_field = 0;
Sarah Sharp04dd9502009-11-11 10:28:30 -08002560 u32 remainder = 0;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002561
2562 /* Don't change the cycle bit of the first TRB until later */
Andiry Xu50f7b522010-12-20 15:09:34 +08002563 if (first_trb) {
Sarah Sharp8a96c052009-04-27 19:59:19 -07002564 first_trb = false;
Andiry Xu50f7b522010-12-20 15:09:34 +08002565 if (start_cycle == 0)
2566 field |= 0x1;
2567 } else
Sarah Sharp8a96c052009-04-27 19:59:19 -07002568 field |= ep_ring->cycle_state;
2569
2570 /* Chain all the TRBs together; clear the chain bit in the last
2571 * TRB to indicate it's the last TRB in the chain.
2572 */
2573 if (num_trbs > 1) {
2574 field |= TRB_CHAIN;
2575 } else {
2576 /* FIXME - add check for ZERO_PACKET flag before this */
2577 td->last_trb = ep_ring->enqueue;
2578 field |= TRB_IOC;
2579 }
2580 xhci_dbg(xhci, " sg entry: dma = %#x, len = %#x (%d), "
2581 "64KB boundary at %#x, end dma = %#x\n",
2582 (unsigned int) addr, trb_buff_len, trb_buff_len,
2583 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2584 (unsigned int) addr + trb_buff_len);
2585 if (TRB_MAX_BUFF_SIZE -
2586 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1)) < trb_buff_len) {
2587 xhci_warn(xhci, "WARN: sg dma xfer crosses 64KB boundaries!\n");
2588 xhci_dbg(xhci, "Next boundary at %#x, end dma = %#x\n",
2589 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2590 (unsigned int) addr + trb_buff_len);
2591 }
Sarah Sharp04dd9502009-11-11 10:28:30 -08002592 remainder = xhci_td_remainder(urb->transfer_buffer_length -
2593 running_total) ;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002594 length_field = TRB_LEN(trb_buff_len) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002595 remainder |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002596 TRB_INTR_TARGET(0);
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002597 if (num_trbs > 1)
2598 more_trbs_coming = true;
2599 else
2600 more_trbs_coming = false;
2601 queue_trb(xhci, ep_ring, false, more_trbs_coming,
Sarah Sharp8e595a52009-07-27 12:03:31 -07002602 lower_32_bits(addr),
2603 upper_32_bits(addr),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002604 length_field,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002605 /* We always want to know if the TRB was short,
2606 * or we won't get an event when it completes.
2607 * (Unless we use event data TRBs, which are a
2608 * waste of space and HC resources.)
2609 */
2610 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
2611 --num_trbs;
2612 running_total += trb_buff_len;
2613
2614 /* Calculate length for next transfer --
2615 * Are we done queueing all the TRBs for this sg entry?
2616 */
2617 this_sg_len -= trb_buff_len;
2618 if (this_sg_len == 0) {
2619 --num_sgs;
2620 if (num_sgs == 0)
2621 break;
2622 sg = sg_next(sg);
2623 addr = (u64) sg_dma_address(sg);
2624 this_sg_len = sg_dma_len(sg);
2625 } else {
2626 addr += trb_buff_len;
2627 }
2628
2629 trb_buff_len = TRB_MAX_BUFF_SIZE -
2630 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2631 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2632 if (running_total + trb_buff_len > urb->transfer_buffer_length)
2633 trb_buff_len =
2634 urb->transfer_buffer_length - running_total;
2635 } while (running_total < urb->transfer_buffer_length);
2636
2637 check_trb_math(urb, num_trbs, running_total);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002638 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
Andiry Xue1eab2e2011-01-04 16:30:39 -08002639 start_cycle, start_trb);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002640 return 0;
2641}
2642
Sarah Sharpb10de142009-04-27 19:58:50 -07002643/* This is very similar to what ehci-q.c qtd_fill() does */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002644int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharpb10de142009-04-27 19:58:50 -07002645 struct urb *urb, int slot_id, unsigned int ep_index)
2646{
2647 struct xhci_ring *ep_ring;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002648 struct urb_priv *urb_priv;
Sarah Sharpb10de142009-04-27 19:58:50 -07002649 struct xhci_td *td;
2650 int num_trbs;
2651 struct xhci_generic_trb *start_trb;
2652 bool first_trb;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002653 bool more_trbs_coming;
Sarah Sharpb10de142009-04-27 19:58:50 -07002654 int start_cycle;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002655 u32 field, length_field;
Sarah Sharpb10de142009-04-27 19:58:50 -07002656
2657 int running_total, trb_buff_len, ret;
2658 u64 addr;
2659
Alan Sternff9c8952010-04-02 13:27:28 -04002660 if (urb->num_sgs)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002661 return queue_bulk_sg_tx(xhci, mem_flags, urb, slot_id, ep_index);
2662
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002663 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2664 if (!ep_ring)
2665 return -EINVAL;
Sarah Sharpb10de142009-04-27 19:58:50 -07002666
2667 num_trbs = 0;
2668 /* How much data is (potentially) left before the 64KB boundary? */
2669 running_total = TRB_MAX_BUFF_SIZE -
2670 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2671
2672 /* If there's some data on this 64KB chunk, or we have to send a
2673 * zero-length transfer, we need at least one TRB
2674 */
2675 if (running_total != 0 || urb->transfer_buffer_length == 0)
2676 num_trbs++;
2677 /* How many more 64KB chunks to transfer, how many more TRBs? */
2678 while (running_total < urb->transfer_buffer_length) {
2679 num_trbs++;
2680 running_total += TRB_MAX_BUFF_SIZE;
2681 }
2682 /* FIXME: this doesn't deal with URB_ZERO_PACKET - need one more */
2683
2684 if (!in_interrupt())
Andiry Xuf2c565e2010-12-20 17:12:24 +08002685 xhci_dbg(xhci, "ep %#x - urb len = %#x (%d), "
2686 "addr = %#llx, num_trbs = %d\n",
Sarah Sharpb10de142009-04-27 19:58:50 -07002687 urb->ep->desc.bEndpointAddress,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002688 urb->transfer_buffer_length,
2689 urb->transfer_buffer_length,
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002690 (unsigned long long)urb->transfer_dma,
Sarah Sharpb10de142009-04-27 19:58:50 -07002691 num_trbs);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002692
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002693 ret = prepare_transfer(xhci, xhci->devs[slot_id],
2694 ep_index, urb->stream_id,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002695 num_trbs, urb, 0, mem_flags);
Sarah Sharpb10de142009-04-27 19:58:50 -07002696 if (ret < 0)
2697 return ret;
2698
Andiry Xu8e51adc2010-07-22 15:23:31 -07002699 urb_priv = urb->hcpriv;
2700 td = urb_priv->td[0];
2701
Sarah Sharpb10de142009-04-27 19:58:50 -07002702 /*
2703 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2704 * until we've finished creating all the other TRBs. The ring's cycle
2705 * state may change as we enqueue the other TRBs, so save it too.
2706 */
2707 start_trb = &ep_ring->enqueue->generic;
2708 start_cycle = ep_ring->cycle_state;
2709
2710 running_total = 0;
2711 /* How much data is in the first TRB? */
2712 addr = (u64) urb->transfer_dma;
2713 trb_buff_len = TRB_MAX_BUFF_SIZE -
2714 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2715 if (urb->transfer_buffer_length < trb_buff_len)
2716 trb_buff_len = urb->transfer_buffer_length;
2717
2718 first_trb = true;
2719
2720 /* Queue the first TRB, even if it's zero-length */
2721 do {
Sarah Sharp04dd9502009-11-11 10:28:30 -08002722 u32 remainder = 0;
Sarah Sharpb10de142009-04-27 19:58:50 -07002723 field = 0;
2724
2725 /* Don't change the cycle bit of the first TRB until later */
Andiry Xu50f7b522010-12-20 15:09:34 +08002726 if (first_trb) {
Sarah Sharpb10de142009-04-27 19:58:50 -07002727 first_trb = false;
Andiry Xu50f7b522010-12-20 15:09:34 +08002728 if (start_cycle == 0)
2729 field |= 0x1;
2730 } else
Sarah Sharpb10de142009-04-27 19:58:50 -07002731 field |= ep_ring->cycle_state;
2732
2733 /* Chain all the TRBs together; clear the chain bit in the last
2734 * TRB to indicate it's the last TRB in the chain.
2735 */
2736 if (num_trbs > 1) {
2737 field |= TRB_CHAIN;
2738 } else {
2739 /* FIXME - add check for ZERO_PACKET flag before this */
2740 td->last_trb = ep_ring->enqueue;
2741 field |= TRB_IOC;
2742 }
Sarah Sharp04dd9502009-11-11 10:28:30 -08002743 remainder = xhci_td_remainder(urb->transfer_buffer_length -
2744 running_total);
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002745 length_field = TRB_LEN(trb_buff_len) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002746 remainder |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002747 TRB_INTR_TARGET(0);
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002748 if (num_trbs > 1)
2749 more_trbs_coming = true;
2750 else
2751 more_trbs_coming = false;
2752 queue_trb(xhci, ep_ring, false, more_trbs_coming,
Sarah Sharp8e595a52009-07-27 12:03:31 -07002753 lower_32_bits(addr),
2754 upper_32_bits(addr),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002755 length_field,
Sarah Sharpb10de142009-04-27 19:58:50 -07002756 /* We always want to know if the TRB was short,
2757 * or we won't get an event when it completes.
2758 * (Unless we use event data TRBs, which are a
2759 * waste of space and HC resources.)
2760 */
2761 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
2762 --num_trbs;
2763 running_total += trb_buff_len;
2764
2765 /* Calculate length for next transfer */
2766 addr += trb_buff_len;
2767 trb_buff_len = urb->transfer_buffer_length - running_total;
2768 if (trb_buff_len > TRB_MAX_BUFF_SIZE)
2769 trb_buff_len = TRB_MAX_BUFF_SIZE;
2770 } while (running_total < urb->transfer_buffer_length);
2771
Sarah Sharp8a96c052009-04-27 19:59:19 -07002772 check_trb_math(urb, num_trbs, running_total);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002773 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
Andiry Xue1eab2e2011-01-04 16:30:39 -08002774 start_cycle, start_trb);
Sarah Sharpb10de142009-04-27 19:58:50 -07002775 return 0;
2776}
2777
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002778/* Caller must have locked xhci->lock */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002779int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002780 struct urb *urb, int slot_id, unsigned int ep_index)
2781{
2782 struct xhci_ring *ep_ring;
2783 int num_trbs;
2784 int ret;
2785 struct usb_ctrlrequest *setup;
2786 struct xhci_generic_trb *start_trb;
2787 int start_cycle;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002788 u32 field, length_field;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002789 struct urb_priv *urb_priv;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002790 struct xhci_td *td;
2791
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002792 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2793 if (!ep_ring)
2794 return -EINVAL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002795
2796 /*
2797 * Need to copy setup packet into setup TRB, so we can't use the setup
2798 * DMA address.
2799 */
2800 if (!urb->setup_packet)
2801 return -EINVAL;
2802
2803 if (!in_interrupt())
2804 xhci_dbg(xhci, "Queueing ctrl tx for slot id %d, ep %d\n",
2805 slot_id, ep_index);
2806 /* 1 TRB for setup, 1 for status */
2807 num_trbs = 2;
2808 /*
2809 * Don't need to check if we need additional event data and normal TRBs,
2810 * since data in control transfers will never get bigger than 16MB
2811 * XXX: can we get a buffer that crosses 64KB boundaries?
2812 */
2813 if (urb->transfer_buffer_length > 0)
2814 num_trbs++;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002815 ret = prepare_transfer(xhci, xhci->devs[slot_id],
2816 ep_index, urb->stream_id,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002817 num_trbs, urb, 0, mem_flags);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002818 if (ret < 0)
2819 return ret;
2820
Andiry Xu8e51adc2010-07-22 15:23:31 -07002821 urb_priv = urb->hcpriv;
2822 td = urb_priv->td[0];
2823
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002824 /*
2825 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2826 * until we've finished creating all the other TRBs. The ring's cycle
2827 * state may change as we enqueue the other TRBs, so save it too.
2828 */
2829 start_trb = &ep_ring->enqueue->generic;
2830 start_cycle = ep_ring->cycle_state;
2831
2832 /* Queue setup TRB - see section 6.4.1.2.1 */
2833 /* FIXME better way to translate setup_packet into two u32 fields? */
2834 setup = (struct usb_ctrlrequest *) urb->setup_packet;
Andiry Xu50f7b522010-12-20 15:09:34 +08002835 field = 0;
2836 field |= TRB_IDT | TRB_TYPE(TRB_SETUP);
2837 if (start_cycle == 0)
2838 field |= 0x1;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002839 queue_trb(xhci, ep_ring, false, true,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002840 /* FIXME endianness is probably going to bite my ass here. */
2841 setup->bRequestType | setup->bRequest << 8 | setup->wValue << 16,
2842 setup->wIndex | setup->wLength << 16,
2843 TRB_LEN(8) | TRB_INTR_TARGET(0),
2844 /* Immediate data in pointer */
Andiry Xu50f7b522010-12-20 15:09:34 +08002845 field);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002846
2847 /* If there's data, queue data TRBs */
2848 field = 0;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002849 length_field = TRB_LEN(urb->transfer_buffer_length) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002850 xhci_td_remainder(urb->transfer_buffer_length) |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002851 TRB_INTR_TARGET(0);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002852 if (urb->transfer_buffer_length > 0) {
2853 if (setup->bRequestType & USB_DIR_IN)
2854 field |= TRB_DIR_IN;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002855 queue_trb(xhci, ep_ring, false, true,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002856 lower_32_bits(urb->transfer_dma),
2857 upper_32_bits(urb->transfer_dma),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002858 length_field,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002859 /* Event on short tx */
2860 field | TRB_ISP | TRB_TYPE(TRB_DATA) | ep_ring->cycle_state);
2861 }
2862
2863 /* Save the DMA address of the last TRB in the TD */
2864 td->last_trb = ep_ring->enqueue;
2865
2866 /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */
2867 /* If the device sent data, the status stage is an OUT transfer */
2868 if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN)
2869 field = 0;
2870 else
2871 field = TRB_DIR_IN;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002872 queue_trb(xhci, ep_ring, false, false,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002873 0,
2874 0,
2875 TRB_INTR_TARGET(0),
2876 /* Event on completion */
2877 field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state);
2878
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002879 giveback_first_trb(xhci, slot_id, ep_index, 0,
Andiry Xue1eab2e2011-01-04 16:30:39 -08002880 start_cycle, start_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002881 return 0;
2882}
2883
Andiry Xu04e51902010-07-22 15:23:39 -07002884static int count_isoc_trbs_needed(struct xhci_hcd *xhci,
2885 struct urb *urb, int i)
2886{
2887 int num_trbs = 0;
2888 u64 addr, td_len, running_total;
2889
2890 addr = (u64) (urb->transfer_dma + urb->iso_frame_desc[i].offset);
2891 td_len = urb->iso_frame_desc[i].length;
2892
2893 running_total = TRB_MAX_BUFF_SIZE -
2894 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
2895 if (running_total != 0)
2896 num_trbs++;
2897
2898 while (running_total < td_len) {
2899 num_trbs++;
2900 running_total += TRB_MAX_BUFF_SIZE;
2901 }
2902
2903 return num_trbs;
2904}
2905
2906/* This is for isoc transfer */
2907static int xhci_queue_isoc_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
2908 struct urb *urb, int slot_id, unsigned int ep_index)
2909{
2910 struct xhci_ring *ep_ring;
2911 struct urb_priv *urb_priv;
2912 struct xhci_td *td;
2913 int num_tds, trbs_per_td;
2914 struct xhci_generic_trb *start_trb;
2915 bool first_trb;
2916 int start_cycle;
2917 u32 field, length_field;
2918 int running_total, trb_buff_len, td_len, td_remain_len, ret;
2919 u64 start_addr, addr;
2920 int i, j;
Andiry Xu47cbf692010-12-20 14:49:48 +08002921 bool more_trbs_coming;
Andiry Xu04e51902010-07-22 15:23:39 -07002922
2923 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
2924
2925 num_tds = urb->number_of_packets;
2926 if (num_tds < 1) {
2927 xhci_dbg(xhci, "Isoc URB with zero packets?\n");
2928 return -EINVAL;
2929 }
2930
2931 if (!in_interrupt())
Andiry Xuf2c565e2010-12-20 17:12:24 +08002932 xhci_dbg(xhci, "ep %#x - urb len = %#x (%d),"
Andiry Xu04e51902010-07-22 15:23:39 -07002933 " addr = %#llx, num_tds = %d\n",
2934 urb->ep->desc.bEndpointAddress,
2935 urb->transfer_buffer_length,
2936 urb->transfer_buffer_length,
2937 (unsigned long long)urb->transfer_dma,
2938 num_tds);
2939
2940 start_addr = (u64) urb->transfer_dma;
2941 start_trb = &ep_ring->enqueue->generic;
2942 start_cycle = ep_ring->cycle_state;
2943
2944 /* Queue the first TRB, even if it's zero-length */
2945 for (i = 0; i < num_tds; i++) {
2946 first_trb = true;
2947
2948 running_total = 0;
2949 addr = start_addr + urb->iso_frame_desc[i].offset;
2950 td_len = urb->iso_frame_desc[i].length;
2951 td_remain_len = td_len;
2952
2953 trbs_per_td = count_isoc_trbs_needed(xhci, urb, i);
2954
2955 ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index,
2956 urb->stream_id, trbs_per_td, urb, i, mem_flags);
2957 if (ret < 0)
2958 return ret;
2959
2960 urb_priv = urb->hcpriv;
2961 td = urb_priv->td[i];
2962
2963 for (j = 0; j < trbs_per_td; j++) {
2964 u32 remainder = 0;
2965 field = 0;
2966
2967 if (first_trb) {
2968 /* Queue the isoc TRB */
2969 field |= TRB_TYPE(TRB_ISOC);
2970 /* Assume URB_ISO_ASAP is set */
2971 field |= TRB_SIA;
Andiry Xu50f7b522010-12-20 15:09:34 +08002972 if (i == 0) {
2973 if (start_cycle == 0)
2974 field |= 0x1;
2975 } else
Andiry Xu04e51902010-07-22 15:23:39 -07002976 field |= ep_ring->cycle_state;
2977 first_trb = false;
2978 } else {
2979 /* Queue other normal TRBs */
2980 field |= TRB_TYPE(TRB_NORMAL);
2981 field |= ep_ring->cycle_state;
2982 }
2983
2984 /* Chain all the TRBs together; clear the chain bit in
2985 * the last TRB to indicate it's the last TRB in the
2986 * chain.
2987 */
2988 if (j < trbs_per_td - 1) {
2989 field |= TRB_CHAIN;
Andiry Xu47cbf692010-12-20 14:49:48 +08002990 more_trbs_coming = true;
Andiry Xu04e51902010-07-22 15:23:39 -07002991 } else {
2992 td->last_trb = ep_ring->enqueue;
2993 field |= TRB_IOC;
Andiry Xu47cbf692010-12-20 14:49:48 +08002994 more_trbs_coming = false;
Andiry Xu04e51902010-07-22 15:23:39 -07002995 }
2996
2997 /* Calculate TRB length */
2998 trb_buff_len = TRB_MAX_BUFF_SIZE -
2999 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
3000 if (trb_buff_len > td_remain_len)
3001 trb_buff_len = td_remain_len;
3002
3003 remainder = xhci_td_remainder(td_len - running_total);
3004 length_field = TRB_LEN(trb_buff_len) |
3005 remainder |
3006 TRB_INTR_TARGET(0);
Andiry Xu47cbf692010-12-20 14:49:48 +08003007 queue_trb(xhci, ep_ring, false, more_trbs_coming,
Andiry Xu04e51902010-07-22 15:23:39 -07003008 lower_32_bits(addr),
3009 upper_32_bits(addr),
3010 length_field,
3011 /* We always want to know if the TRB was short,
3012 * or we won't get an event when it completes.
3013 * (Unless we use event data TRBs, which are a
3014 * waste of space and HC resources.)
3015 */
3016 field | TRB_ISP);
3017 running_total += trb_buff_len;
3018
3019 addr += trb_buff_len;
3020 td_remain_len -= trb_buff_len;
3021 }
3022
3023 /* Check TD length */
3024 if (running_total != td_len) {
3025 xhci_err(xhci, "ISOC TD length unmatch\n");
3026 return -EINVAL;
3027 }
3028 }
3029
Andiry Xue1eab2e2011-01-04 16:30:39 -08003030 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
3031 start_cycle, start_trb);
Andiry Xu04e51902010-07-22 15:23:39 -07003032 return 0;
3033}
3034
3035/*
3036 * Check transfer ring to guarantee there is enough room for the urb.
3037 * Update ISO URB start_frame and interval.
3038 * Update interval as xhci_queue_intr_tx does. Just use xhci frame_index to
3039 * update the urb->start_frame by now.
3040 * Always assume URB_ISO_ASAP set, and NEVER use urb->start_frame as input.
3041 */
3042int xhci_queue_isoc_tx_prepare(struct xhci_hcd *xhci, gfp_t mem_flags,
3043 struct urb *urb, int slot_id, unsigned int ep_index)
3044{
3045 struct xhci_virt_device *xdev;
3046 struct xhci_ring *ep_ring;
3047 struct xhci_ep_ctx *ep_ctx;
3048 int start_frame;
3049 int xhci_interval;
3050 int ep_interval;
3051 int num_tds, num_trbs, i;
3052 int ret;
3053
3054 xdev = xhci->devs[slot_id];
3055 ep_ring = xdev->eps[ep_index].ring;
3056 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
3057
3058 num_trbs = 0;
3059 num_tds = urb->number_of_packets;
3060 for (i = 0; i < num_tds; i++)
3061 num_trbs += count_isoc_trbs_needed(xhci, urb, i);
3062
3063 /* Check the ring to guarantee there is enough room for the whole urb.
3064 * Do not insert any td of the urb to the ring if the check failed.
3065 */
3066 ret = prepare_ring(xhci, ep_ring, ep_ctx->ep_info & EP_STATE_MASK,
3067 num_trbs, mem_flags);
3068 if (ret)
3069 return ret;
3070
3071 start_frame = xhci_readl(xhci, &xhci->run_regs->microframe_index);
3072 start_frame &= 0x3fff;
3073
3074 urb->start_frame = start_frame;
3075 if (urb->dev->speed == USB_SPEED_LOW ||
3076 urb->dev->speed == USB_SPEED_FULL)
3077 urb->start_frame >>= 3;
3078
3079 xhci_interval = EP_INTERVAL_TO_UFRAMES(ep_ctx->ep_info);
3080 ep_interval = urb->interval;
3081 /* Convert to microframes */
3082 if (urb->dev->speed == USB_SPEED_LOW ||
3083 urb->dev->speed == USB_SPEED_FULL)
3084 ep_interval *= 8;
3085 /* FIXME change this to a warning and a suggestion to use the new API
3086 * to set the polling interval (once the API is added).
3087 */
3088 if (xhci_interval != ep_interval) {
Andiry Xu7961acd2010-12-20 17:14:20 +08003089 if (printk_ratelimit())
Andiry Xu04e51902010-07-22 15:23:39 -07003090 dev_dbg(&urb->dev->dev, "Driver uses different interval"
3091 " (%d microframe%s) than xHCI "
3092 "(%d microframe%s)\n",
3093 ep_interval,
3094 ep_interval == 1 ? "" : "s",
3095 xhci_interval,
3096 xhci_interval == 1 ? "" : "s");
3097 urb->interval = xhci_interval;
3098 /* Convert back to frames for LS/FS devices */
3099 if (urb->dev->speed == USB_SPEED_LOW ||
3100 urb->dev->speed == USB_SPEED_FULL)
3101 urb->interval /= 8;
3102 }
3103 return xhci_queue_isoc_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
3104}
3105
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003106/**** Command Ring Operations ****/
3107
Sarah Sharp913a8a32009-09-04 10:53:13 -07003108/* Generic function for queueing a command TRB on the command ring.
3109 * Check to make sure there's room on the command ring for one command TRB.
3110 * Also check that there's room reserved for commands that must not fail.
3111 * If this is a command that must not fail, meaning command_must_succeed = TRUE,
3112 * then only check for the number of reserved spots.
3113 * Don't decrement xhci->cmd_ring_reserved_trbs after we've queued the TRB
3114 * because the command event handler may want to resubmit a failed command.
3115 */
3116static int queue_command(struct xhci_hcd *xhci, u32 field1, u32 field2,
3117 u32 field3, u32 field4, bool command_must_succeed)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07003118{
Sarah Sharp913a8a32009-09-04 10:53:13 -07003119 int reserved_trbs = xhci->cmd_ring_reserved_trbs;
Sarah Sharpd1dc9082010-07-09 17:08:38 +02003120 int ret;
3121
Sarah Sharp913a8a32009-09-04 10:53:13 -07003122 if (!command_must_succeed)
3123 reserved_trbs++;
3124
Sarah Sharpd1dc9082010-07-09 17:08:38 +02003125 ret = prepare_ring(xhci, xhci->cmd_ring, EP_STATE_RUNNING,
3126 reserved_trbs, GFP_ATOMIC);
3127 if (ret < 0) {
3128 xhci_err(xhci, "ERR: No room for command on command ring\n");
Sarah Sharp913a8a32009-09-04 10:53:13 -07003129 if (command_must_succeed)
3130 xhci_err(xhci, "ERR: Reserved TRB counting for "
3131 "unfailable commands failed.\n");
Sarah Sharpd1dc9082010-07-09 17:08:38 +02003132 return ret;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07003133 }
Sarah Sharp6cc30d82010-06-10 12:25:28 -07003134 queue_trb(xhci, xhci->cmd_ring, false, false, field1, field2, field3,
Sarah Sharp7f84eef2009-04-27 19:53:56 -07003135 field4 | xhci->cmd_ring->cycle_state);
3136 return 0;
3137}
3138
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003139/* Queue a slot enable or disable request on the command ring */
Sarah Sharp23e3be12009-04-29 19:05:20 -07003140int xhci_queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003141{
3142 return queue_command(xhci, 0, 0, 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003143 TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id), false);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003144}
3145
3146/* Queue an address device command TRB */
Sarah Sharp23e3be12009-04-29 19:05:20 -07003147int xhci_queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
3148 u32 slot_id)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003149{
Sarah Sharp8e595a52009-07-27 12:03:31 -07003150 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
3151 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003152 TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id),
3153 false);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003154}
Sarah Sharpf94e01862009-04-27 19:58:38 -07003155
Sarah Sharp02386342010-05-24 13:25:28 -07003156int xhci_queue_vendor_command(struct xhci_hcd *xhci,
3157 u32 field1, u32 field2, u32 field3, u32 field4)
3158{
3159 return queue_command(xhci, field1, field2, field3, field4, false);
3160}
3161
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003162/* Queue a reset device command TRB */
3163int xhci_queue_reset_device(struct xhci_hcd *xhci, u32 slot_id)
3164{
3165 return queue_command(xhci, 0, 0, 0,
3166 TRB_TYPE(TRB_RESET_DEV) | SLOT_ID_FOR_TRB(slot_id),
3167 false);
3168}
3169
Sarah Sharpf94e01862009-04-27 19:58:38 -07003170/* Queue a configure endpoint command TRB */
Sarah Sharp23e3be12009-04-29 19:05:20 -07003171int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003172 u32 slot_id, bool command_must_succeed)
Sarah Sharpf94e01862009-04-27 19:58:38 -07003173{
Sarah Sharp8e595a52009-07-27 12:03:31 -07003174 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
3175 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003176 TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id),
3177 command_must_succeed);
Sarah Sharpf94e01862009-04-27 19:58:38 -07003178}
Sarah Sharpae636742009-04-29 19:02:31 -07003179
Sarah Sharpf2217e82009-08-07 14:04:43 -07003180/* Queue an evaluate context command TRB */
3181int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
3182 u32 slot_id)
3183{
3184 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
3185 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003186 TRB_TYPE(TRB_EVAL_CONTEXT) | SLOT_ID_FOR_TRB(slot_id),
3187 false);
Sarah Sharpf2217e82009-08-07 14:04:43 -07003188}
3189
Andiry Xube88fe42010-10-14 07:22:57 -07003190/*
3191 * Suspend is set to indicate "Stop Endpoint Command" is being issued to stop
3192 * activity on an endpoint that is about to be suspended.
3193 */
Sarah Sharp23e3be12009-04-29 19:05:20 -07003194int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, int slot_id,
Andiry Xube88fe42010-10-14 07:22:57 -07003195 unsigned int ep_index, int suspend)
Sarah Sharpae636742009-04-29 19:02:31 -07003196{
3197 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3198 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
3199 u32 type = TRB_TYPE(TRB_STOP_RING);
Andiry Xube88fe42010-10-14 07:22:57 -07003200 u32 trb_suspend = SUSPEND_PORT_FOR_TRB(suspend);
Sarah Sharpae636742009-04-29 19:02:31 -07003201
3202 return queue_command(xhci, 0, 0, 0,
Andiry Xube88fe42010-10-14 07:22:57 -07003203 trb_slot_id | trb_ep_index | type | trb_suspend, false);
Sarah Sharpae636742009-04-29 19:02:31 -07003204}
3205
3206/* Set Transfer Ring Dequeue Pointer command.
3207 * This should not be used for endpoints that have streams enabled.
3208 */
3209static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003210 unsigned int ep_index, unsigned int stream_id,
3211 struct xhci_segment *deq_seg,
Sarah Sharpae636742009-04-29 19:02:31 -07003212 union xhci_trb *deq_ptr, u32 cycle_state)
3213{
3214 dma_addr_t addr;
3215 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3216 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003217 u32 trb_stream_id = STREAM_ID_FOR_TRB(stream_id);
Sarah Sharpae636742009-04-29 19:02:31 -07003218 u32 type = TRB_TYPE(TRB_SET_DEQ);
3219
Sarah Sharp23e3be12009-04-29 19:05:20 -07003220 addr = xhci_trb_virt_to_dma(deq_seg, deq_ptr);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07003221 if (addr == 0) {
Sarah Sharpae636742009-04-29 19:02:31 -07003222 xhci_warn(xhci, "WARN Cannot submit Set TR Deq Ptr\n");
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07003223 xhci_warn(xhci, "WARN deq seg = %p, deq pt = %p\n",
3224 deq_seg, deq_ptr);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07003225 return 0;
3226 }
Sarah Sharp8e595a52009-07-27 12:03:31 -07003227 return queue_command(xhci, lower_32_bits(addr) | cycle_state,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003228 upper_32_bits(addr), trb_stream_id,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003229 trb_slot_id | trb_ep_index | type, false);
Sarah Sharpae636742009-04-29 19:02:31 -07003230}
Sarah Sharpa1587d92009-07-27 12:03:15 -07003231
3232int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id,
3233 unsigned int ep_index)
3234{
3235 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3236 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
3237 u32 type = TRB_TYPE(TRB_RESET_EP);
3238
Sarah Sharp913a8a32009-09-04 10:53:13 -07003239 return queue_command(xhci, 0, 0, 0, trb_slot_id | trb_ep_index | type,
3240 false);
Sarah Sharpa1587d92009-07-27 12:03:15 -07003241}