blob: ba551239d28b849025f74edcac3b28272288ffae [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 */
Dmitry Torokhov575688e2011-03-20 02:15:16 -070096static bool last_trb_on_last_seg(struct xhci_hcd *xhci, struct xhci_ring *ring,
Sarah Sharp7f84eef2009-04-27 19:53:56 -070097 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
Matt Evans28ccd292011-03-29 13:40:46 +1100103 return le32_to_cpu(trb->link.control) & LINK_TOGGLE;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700104}
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 */
Dmitry Torokhov575688e2011-03-20 02:15:16 -0700110static int last_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700111 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
Matt Evans28ccd292011-03-29 13:40:46 +1100116 return (le32_to_cpu(trb->link.control) & TRB_TYPE_BITMASK)
117 == TRB_TYPE(TRB_LINK);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700118}
119
Dmitry Torokhov575688e2011-03-20 02:15:16 -0700120static int enqueue_is_link_trb(struct xhci_ring *ring)
John Youn6c12db92010-05-10 15:33:00 -0700121{
122 struct xhci_link_trb *link = &ring->enqueue->link;
Matt Evans28ccd292011-03-29 13:40:46 +1100123 return ((le32_to_cpu(link->control) & TRB_TYPE_BITMASK) ==
124 TRB_TYPE(TRB_LINK));
John Youn6c12db92010-05-10 15:33:00 -0700125}
126
Sarah Sharpae636742009-04-29 19:02:31 -0700127/* Updates trb to point to the next TRB in the ring, and updates seg if the next
128 * TRB is in a new segment. This does not skip over link TRBs, and it does not
129 * effect the ring dequeue or enqueue pointers.
130 */
131static void next_trb(struct xhci_hcd *xhci,
132 struct xhci_ring *ring,
133 struct xhci_segment **seg,
134 union xhci_trb **trb)
135{
136 if (last_trb(xhci, ring, *seg, *trb)) {
137 *seg = (*seg)->next;
138 *trb = ((*seg)->trbs);
139 } else {
John Youna1669b22010-08-09 13:56:11 -0700140 (*trb)++;
Sarah Sharpae636742009-04-29 19:02:31 -0700141 }
142}
143
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700144/*
145 * See Cycle bit rules. SW is the consumer for the event ring only.
146 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
147 */
148static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer)
149{
150 union xhci_trb *next = ++(ring->dequeue);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700151 unsigned long long addr;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700152
153 ring->deq_updates++;
154 /* Update the dequeue pointer further if that was a link TRB or we're at
155 * the end of an event ring segment (which doesn't have link TRBS)
156 */
157 while (last_trb(xhci, ring, ring->deq_seg, next)) {
158 if (consumer && last_trb_on_last_seg(xhci, ring, ring->deq_seg, next)) {
159 ring->cycle_state = (ring->cycle_state ? 0 : 1);
160 if (!in_interrupt())
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700161 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
162 ring,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700163 (unsigned int) ring->cycle_state);
164 }
165 ring->deq_seg = ring->deq_seg->next;
166 ring->dequeue = ring->deq_seg->trbs;
167 next = ring->dequeue;
168 }
Sarah Sharp66e49d82009-07-27 12:03:46 -0700169 addr = (unsigned long long) xhci_trb_virt_to_dma(ring->deq_seg, ring->dequeue);
170 if (ring == xhci->event_ring)
171 xhci_dbg(xhci, "Event ring deq = 0x%llx (DMA)\n", addr);
172 else if (ring == xhci->cmd_ring)
173 xhci_dbg(xhci, "Command ring deq = 0x%llx (DMA)\n", addr);
174 else
175 xhci_dbg(xhci, "Ring deq = 0x%llx (DMA)\n", addr);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700176}
177
178/*
179 * See Cycle bit rules. SW is the consumer for the event ring only.
180 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
181 *
182 * If we've just enqueued a TRB that is in the middle of a TD (meaning the
183 * chain bit is set), then set the chain bit in all the following link TRBs.
184 * If we've enqueued the last TRB in a TD, make sure the following link TRBs
185 * have their chain bit cleared (so that each Link TRB is a separate TD).
186 *
187 * 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 -0700188 * set, but other sections talk about dealing with the chain bit set. This was
189 * fixed in the 0.96 specification errata, but we have to assume that all 0.95
190 * xHCI hardware can't handle the chain bit being cleared on a link TRB.
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700191 *
192 * @more_trbs_coming: Will you enqueue more TRBs before calling
193 * prepare_transfer()?
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700194 */
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700195static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring,
196 bool consumer, bool more_trbs_coming)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700197{
198 u32 chain;
199 union xhci_trb *next;
Sarah Sharp66e49d82009-07-27 12:03:46 -0700200 unsigned long long addr;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700201
Matt Evans28ccd292011-03-29 13:40:46 +1100202 chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700203 next = ++(ring->enqueue);
204
205 ring->enq_updates++;
206 /* Update the dequeue pointer further if that was a link TRB or we're at
207 * the end of an event ring segment (which doesn't have link TRBS)
208 */
209 while (last_trb(xhci, ring, ring->enq_seg, next)) {
210 if (!consumer) {
211 if (ring != xhci->event_ring) {
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700212 /*
213 * If the caller doesn't plan on enqueueing more
214 * TDs before ringing the doorbell, then we
215 * don't want to give the link TRB to the
216 * hardware just yet. We'll give the link TRB
217 * back in prepare_ring() just before we enqueue
218 * the TD at the top of the ring.
219 */
220 if (!chain && !more_trbs_coming)
John Youn6c12db92010-05-10 15:33:00 -0700221 break;
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700222
223 /* If we're not dealing with 0.95 hardware,
224 * carry over the chain bit of the previous TRB
225 * (which may mean the chain bit is cleared).
226 */
227 if (!xhci_link_trb_quirk(xhci)) {
Matt Evans28ccd292011-03-29 13:40:46 +1100228 next->link.control &=
229 cpu_to_le32(~TRB_CHAIN);
230 next->link.control |=
231 cpu_to_le32(chain);
Sarah Sharpb0567b32009-08-07 14:04:36 -0700232 }
Sarah Sharp6cc30d82010-06-10 12:25:28 -0700233 /* Give this link TRB to the hardware */
234 wmb();
Matt Evans28ccd292011-03-29 13:40:46 +1100235 next->link.control ^= cpu_to_le32(TRB_CYCLE);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700236 }
237 /* Toggle the cycle bit after the last ring segment. */
238 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
239 ring->cycle_state = (ring->cycle_state ? 0 : 1);
240 if (!in_interrupt())
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700241 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
242 ring,
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700243 (unsigned int) ring->cycle_state);
244 }
245 }
246 ring->enq_seg = ring->enq_seg->next;
247 ring->enqueue = ring->enq_seg->trbs;
248 next = ring->enqueue;
249 }
Sarah Sharp66e49d82009-07-27 12:03:46 -0700250 addr = (unsigned long long) xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
251 if (ring == xhci->event_ring)
252 xhci_dbg(xhci, "Event ring enq = 0x%llx (DMA)\n", addr);
253 else if (ring == xhci->cmd_ring)
254 xhci_dbg(xhci, "Command ring enq = 0x%llx (DMA)\n", addr);
255 else
256 xhci_dbg(xhci, "Ring enq = 0x%llx (DMA)\n", addr);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700257}
258
259/*
260 * Check to see if there's room to enqueue num_trbs on the ring. See rules
261 * above.
262 * FIXME: this would be simpler and faster if we just kept track of the number
263 * of free TRBs in a ring.
264 */
265static int room_on_ring(struct xhci_hcd *xhci, struct xhci_ring *ring,
266 unsigned int num_trbs)
267{
268 int i;
269 union xhci_trb *enq = ring->enqueue;
270 struct xhci_segment *enq_seg = ring->enq_seg;
Sarah Sharp44ebd032010-05-18 16:05:26 -0700271 struct xhci_segment *cur_seg;
272 unsigned int left_on_ring;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700273
John Youn6c12db92010-05-10 15:33:00 -0700274 /* If we are currently pointing to a link TRB, advance the
275 * enqueue pointer before checking for space */
276 while (last_trb(xhci, ring, enq_seg, enq)) {
277 enq_seg = enq_seg->next;
278 enq = enq_seg->trbs;
279 }
280
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700281 /* Check if ring is empty */
Sarah Sharp44ebd032010-05-18 16:05:26 -0700282 if (enq == ring->dequeue) {
283 /* Can't use link trbs */
284 left_on_ring = TRBS_PER_SEGMENT - 1;
285 for (cur_seg = enq_seg->next; cur_seg != enq_seg;
286 cur_seg = cur_seg->next)
287 left_on_ring += TRBS_PER_SEGMENT - 1;
288
289 /* Always need one TRB free in the ring. */
290 left_on_ring -= 1;
291 if (num_trbs > left_on_ring) {
292 xhci_warn(xhci, "Not enough room on ring; "
293 "need %u TRBs, %u TRBs left\n",
294 num_trbs, left_on_ring);
295 return 0;
296 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700297 return 1;
Sarah Sharp44ebd032010-05-18 16:05:26 -0700298 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700299 /* Make sure there's an extra empty TRB available */
300 for (i = 0; i <= num_trbs; ++i) {
301 if (enq == ring->dequeue)
302 return 0;
303 enq++;
304 while (last_trb(xhci, ring, enq_seg, enq)) {
305 enq_seg = enq_seg->next;
306 enq = enq_seg->trbs;
307 }
308 }
309 return 1;
310}
311
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700312/* Ring the host controller doorbell after placing a command on the ring */
Sarah Sharp23e3be12009-04-29 19:05:20 -0700313void xhci_ring_cmd_db(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700314{
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700315 xhci_dbg(xhci, "// Ding dong!\n");
Matthew Wilcox50d64672010-12-15 14:18:11 -0500316 xhci_writel(xhci, DB_VALUE_HOST, &xhci->dba->doorbell[0]);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700317 /* Flush PCI posted writes */
318 xhci_readl(xhci, &xhci->dba->doorbell[0]);
319}
320
Andiry Xube88fe42010-10-14 07:22:57 -0700321void xhci_ring_ep_doorbell(struct xhci_hcd *xhci,
Sarah Sharpae636742009-04-29 19:02:31 -0700322 unsigned int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700323 unsigned int ep_index,
324 unsigned int stream_id)
Sarah Sharpae636742009-04-29 19:02:31 -0700325{
Matt Evans28ccd292011-03-29 13:40:46 +1100326 __le32 __iomem *db_addr = &xhci->dba->doorbell[slot_id];
Matthew Wilcox50d64672010-12-15 14:18:11 -0500327 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
328 unsigned int ep_state = ep->ep_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700329
Sarah Sharpae636742009-04-29 19:02:31 -0700330 /* Don't ring the doorbell for this endpoint if there are pending
Matthew Wilcox50d64672010-12-15 14:18:11 -0500331 * cancellations because we don't want to interrupt processing.
Sarah Sharp8df75f42010-04-02 15:34:16 -0700332 * We don't want to restart any stream rings if there's a set dequeue
333 * pointer command pending because the device can choose to start any
334 * stream once the endpoint is on the HW schedule.
335 * FIXME - check all the stream rings for pending cancellations.
Sarah Sharpae636742009-04-29 19:02:31 -0700336 */
Matthew Wilcox50d64672010-12-15 14:18:11 -0500337 if ((ep_state & EP_HALT_PENDING) || (ep_state & SET_DEQ_PENDING) ||
338 (ep_state & EP_HALTED))
339 return;
340 xhci_writel(xhci, DB_VALUE(ep_index, stream_id), db_addr);
341 /* The CPU has better things to do at this point than wait for a
342 * write-posting flush. It'll get there soon enough.
343 */
Sarah Sharpae636742009-04-29 19:02:31 -0700344}
345
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700346/* Ring the doorbell for any rings with pending URBs */
347static void ring_doorbell_for_active_rings(struct xhci_hcd *xhci,
348 unsigned int slot_id,
349 unsigned int ep_index)
350{
351 unsigned int stream_id;
352 struct xhci_virt_ep *ep;
353
354 ep = &xhci->devs[slot_id]->eps[ep_index];
355
356 /* A ring has pending URBs if its TD list is not empty */
357 if (!(ep->ep_state & EP_HAS_STREAMS)) {
358 if (!(list_empty(&ep->ring->td_list)))
Andiry Xube88fe42010-10-14 07:22:57 -0700359 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, 0);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700360 return;
361 }
362
363 for (stream_id = 1; stream_id < ep->stream_info->num_streams;
364 stream_id++) {
365 struct xhci_stream_info *stream_info = ep->stream_info;
366 if (!list_empty(&stream_info->stream_rings[stream_id]->td_list))
Andiry Xube88fe42010-10-14 07:22:57 -0700367 xhci_ring_ep_doorbell(xhci, slot_id, ep_index,
368 stream_id);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700369 }
370}
371
Sarah Sharpae636742009-04-29 19:02:31 -0700372/*
373 * Find the segment that trb is in. Start searching in start_seg.
374 * If we must move past a segment that has a link TRB with a toggle cycle state
375 * bit set, then we will toggle the value pointed at by cycle_state.
376 */
377static struct xhci_segment *find_trb_seg(
378 struct xhci_segment *start_seg,
379 union xhci_trb *trb, int *cycle_state)
380{
381 struct xhci_segment *cur_seg = start_seg;
382 struct xhci_generic_trb *generic_trb;
383
384 while (cur_seg->trbs > trb ||
385 &cur_seg->trbs[TRBS_PER_SEGMENT - 1] < trb) {
386 generic_trb = &cur_seg->trbs[TRBS_PER_SEGMENT - 1].generic;
Matt Evans28ccd292011-03-29 13:40:46 +1100387 if (le32_to_cpu(generic_trb->field[3]) & LINK_TOGGLE)
Sarah Sharpba0a4d92011-02-23 18:13:43 -0800388 *cycle_state ^= 0x1;
Sarah Sharpae636742009-04-29 19:02:31 -0700389 cur_seg = cur_seg->next;
390 if (cur_seg == start_seg)
391 /* Looped over the entire list. Oops! */
Randy Dunlap326b4812010-04-19 08:53:50 -0700392 return NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700393 }
394 return cur_seg;
395}
396
Sarah Sharp021bff92010-07-29 22:12:20 -0700397
398static struct xhci_ring *xhci_triad_to_transfer_ring(struct xhci_hcd *xhci,
399 unsigned int slot_id, unsigned int ep_index,
400 unsigned int stream_id)
401{
402 struct xhci_virt_ep *ep;
403
404 ep = &xhci->devs[slot_id]->eps[ep_index];
405 /* Common case: no streams */
406 if (!(ep->ep_state & EP_HAS_STREAMS))
407 return ep->ring;
408
409 if (stream_id == 0) {
410 xhci_warn(xhci,
411 "WARN: Slot ID %u, ep index %u has streams, "
412 "but URB has no stream ID.\n",
413 slot_id, ep_index);
414 return NULL;
415 }
416
417 if (stream_id < ep->stream_info->num_streams)
418 return ep->stream_info->stream_rings[stream_id];
419
420 xhci_warn(xhci,
421 "WARN: Slot ID %u, ep index %u has "
422 "stream IDs 1 to %u allocated, "
423 "but stream ID %u is requested.\n",
424 slot_id, ep_index,
425 ep->stream_info->num_streams - 1,
426 stream_id);
427 return NULL;
428}
429
430/* Get the right ring for the given URB.
431 * If the endpoint supports streams, boundary check the URB's stream ID.
432 * If the endpoint doesn't support streams, return the singular endpoint ring.
433 */
434static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
435 struct urb *urb)
436{
437 return xhci_triad_to_transfer_ring(xhci, urb->dev->slot_id,
438 xhci_get_endpoint_index(&urb->ep->desc), urb->stream_id);
439}
440
Sarah Sharpae636742009-04-29 19:02:31 -0700441/*
442 * Move the xHC's endpoint ring dequeue pointer past cur_td.
443 * Record the new state of the xHC's endpoint ring dequeue segment,
444 * dequeue pointer, and new consumer cycle state in state.
445 * Update our internal representation of the ring's dequeue pointer.
446 *
447 * We do this in three jumps:
448 * - First we update our new ring state to be the same as when the xHC stopped.
449 * - Then we traverse the ring to find the segment that contains
450 * the last TRB in the TD. We toggle the xHC's new cycle state when we pass
451 * any link TRBs with the toggle cycle bit set.
452 * - Finally we move the dequeue state one TRB further, toggling the cycle bit
453 * if we've moved it past a link TRB with the toggle cycle bit set.
Matt Evans28ccd292011-03-29 13:40:46 +1100454 *
455 * Some of the uses of xhci_generic_trb are grotty, but if they're done
456 * with correct __le32 accesses they should work fine. Only users of this are
457 * in here.
Sarah Sharpae636742009-04-29 19:02:31 -0700458 */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700459void xhci_find_new_dequeue_state(struct xhci_hcd *xhci,
Sarah Sharpae636742009-04-29 19:02:31 -0700460 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700461 unsigned int stream_id, struct xhci_td *cur_td,
462 struct xhci_dequeue_state *state)
Sarah Sharpae636742009-04-29 19:02:31 -0700463{
464 struct xhci_virt_device *dev = xhci->devs[slot_id];
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700465 struct xhci_ring *ep_ring;
Sarah Sharpae636742009-04-29 19:02:31 -0700466 struct xhci_generic_trb *trb;
John Yound115b042009-07-27 12:05:15 -0700467 struct xhci_ep_ctx *ep_ctx;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700468 dma_addr_t addr;
Sarah Sharpae636742009-04-29 19:02:31 -0700469
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700470 ep_ring = xhci_triad_to_transfer_ring(xhci, slot_id,
471 ep_index, stream_id);
472 if (!ep_ring) {
473 xhci_warn(xhci, "WARN can't find new dequeue state "
474 "for invalid stream ID %u.\n",
475 stream_id);
476 return;
477 }
Sarah Sharpae636742009-04-29 19:02:31 -0700478 state->new_cycle_state = 0;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700479 xhci_dbg(xhci, "Finding segment containing stopped TRB.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700480 state->new_deq_seg = find_trb_seg(cur_td->start_seg,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700481 dev->eps[ep_index].stopped_trb,
Sarah Sharpae636742009-04-29 19:02:31 -0700482 &state->new_cycle_state);
Paul Zimmerman68e41c52011-02-12 14:06:06 -0800483 if (!state->new_deq_seg) {
484 WARN_ON(1);
485 return;
486 }
487
Sarah Sharpae636742009-04-29 19:02:31 -0700488 /* Dig out the cycle state saved by the xHC during the stop ep cmd */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700489 xhci_dbg(xhci, "Finding endpoint context\n");
John Yound115b042009-07-27 12:05:15 -0700490 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +1100491 state->new_cycle_state = 0x1 & le64_to_cpu(ep_ctx->deq);
Sarah Sharpae636742009-04-29 19:02:31 -0700492
493 state->new_deq_ptr = cur_td->last_trb;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700494 xhci_dbg(xhci, "Finding segment containing last TRB in TD.\n");
Sarah Sharpae636742009-04-29 19:02:31 -0700495 state->new_deq_seg = find_trb_seg(state->new_deq_seg,
496 state->new_deq_ptr,
497 &state->new_cycle_state);
Paul Zimmerman68e41c52011-02-12 14:06:06 -0800498 if (!state->new_deq_seg) {
499 WARN_ON(1);
500 return;
501 }
Sarah Sharpae636742009-04-29 19:02:31 -0700502
503 trb = &state->new_deq_ptr->generic;
Matt Evans28ccd292011-03-29 13:40:46 +1100504 if ((le32_to_cpu(trb->field[3]) & TRB_TYPE_BITMASK) ==
505 TRB_TYPE(TRB_LINK) && (le32_to_cpu(trb->field[3]) & LINK_TOGGLE))
Sarah Sharpba0a4d92011-02-23 18:13:43 -0800506 state->new_cycle_state ^= 0x1;
Sarah Sharpae636742009-04-29 19:02:31 -0700507 next_trb(xhci, ep_ring, &state->new_deq_seg, &state->new_deq_ptr);
508
Sarah Sharp01a1fdb2011-02-23 18:12:29 -0800509 /*
510 * If there is only one segment in a ring, find_trb_seg()'s while loop
511 * will not run, and it will return before it has a chance to see if it
512 * needs to toggle the cycle bit. It can't tell if the stalled transfer
513 * ended just before the link TRB on a one-segment ring, or if the TD
514 * wrapped around the top of the ring, because it doesn't have the TD in
515 * question. Look for the one-segment case where stalled TRB's address
516 * is greater than the new dequeue pointer address.
517 */
518 if (ep_ring->first_seg == ep_ring->first_seg->next &&
519 state->new_deq_ptr < dev->eps[ep_index].stopped_trb)
520 state->new_cycle_state ^= 0x1;
521 xhci_dbg(xhci, "Cycle state = 0x%x\n", state->new_cycle_state);
522
Sarah Sharpae636742009-04-29 19:02:31 -0700523 /* Don't update the ring cycle state for the producer (us). */
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700524 xhci_dbg(xhci, "New dequeue segment = %p (virtual)\n",
525 state->new_deq_seg);
526 addr = xhci_trb_virt_to_dma(state->new_deq_seg, state->new_deq_ptr);
527 xhci_dbg(xhci, "New dequeue pointer = 0x%llx (DMA)\n",
528 (unsigned long long) addr);
Sarah Sharpae636742009-04-29 19:02:31 -0700529}
530
Sarah Sharp23e3be12009-04-29 19:05:20 -0700531static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
Sarah Sharpae636742009-04-29 19:02:31 -0700532 struct xhci_td *cur_td)
533{
534 struct xhci_segment *cur_seg;
535 union xhci_trb *cur_trb;
536
537 for (cur_seg = cur_td->start_seg, cur_trb = cur_td->first_trb;
538 true;
539 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
Matt Evans28ccd292011-03-29 13:40:46 +1100540 if ((le32_to_cpu(cur_trb->generic.field[3]) & TRB_TYPE_BITMASK)
541 == TRB_TYPE(TRB_LINK)) {
Sarah Sharpae636742009-04-29 19:02:31 -0700542 /* Unchain any chained Link TRBs, but
543 * leave the pointers intact.
544 */
Matt Evans28ccd292011-03-29 13:40:46 +1100545 cur_trb->generic.field[3] &= cpu_to_le32(~TRB_CHAIN);
Sarah Sharpae636742009-04-29 19:02:31 -0700546 xhci_dbg(xhci, "Cancel (unchain) link TRB\n");
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700547 xhci_dbg(xhci, "Address = %p (0x%llx dma); "
548 "in seg %p (0x%llx dma)\n",
549 cur_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700550 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700551 cur_seg,
552 (unsigned long long)cur_seg->dma);
Sarah Sharpae636742009-04-29 19:02:31 -0700553 } else {
554 cur_trb->generic.field[0] = 0;
555 cur_trb->generic.field[1] = 0;
556 cur_trb->generic.field[2] = 0;
557 /* Preserve only the cycle bit of this TRB */
Matt Evans28ccd292011-03-29 13:40:46 +1100558 cur_trb->generic.field[3] &= cpu_to_le32(TRB_CYCLE);
559 cur_trb->generic.field[3] |= cpu_to_le32(
560 TRB_TYPE(TRB_TR_NOOP));
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700561 xhci_dbg(xhci, "Cancel TRB %p (0x%llx dma) "
562 "in seg %p (0x%llx dma)\n",
563 cur_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700564 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700565 cur_seg,
566 (unsigned long long)cur_seg->dma);
Sarah Sharpae636742009-04-29 19:02:31 -0700567 }
568 if (cur_trb == cur_td->last_trb)
569 break;
570 }
571}
572
573static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700574 unsigned int ep_index, unsigned int stream_id,
575 struct xhci_segment *deq_seg,
Sarah Sharpae636742009-04-29 19:02:31 -0700576 union xhci_trb *deq_ptr, u32 cycle_state);
577
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700578void xhci_queue_new_dequeue_state(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700579 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700580 unsigned int stream_id,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700581 struct xhci_dequeue_state *deq_state)
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700582{
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700583 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
584
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700585 xhci_dbg(xhci, "Set TR Deq Ptr cmd, new deq seg = %p (0x%llx dma), "
586 "new deq ptr = %p (0x%llx dma), new cycle = %u\n",
587 deq_state->new_deq_seg,
588 (unsigned long long)deq_state->new_deq_seg->dma,
589 deq_state->new_deq_ptr,
590 (unsigned long long)xhci_trb_virt_to_dma(deq_state->new_deq_seg, deq_state->new_deq_ptr),
591 deq_state->new_cycle_state);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700592 queue_set_tr_deq(xhci, slot_id, ep_index, stream_id,
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700593 deq_state->new_deq_seg,
594 deq_state->new_deq_ptr,
595 (u32) deq_state->new_cycle_state);
596 /* Stop the TD queueing code from ringing the doorbell until
597 * this command completes. The HC won't set the dequeue pointer
598 * if the ring is running, and ringing the doorbell starts the
599 * ring running.
600 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700601 ep->ep_state |= SET_DEQ_PENDING;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700602}
603
Dmitry Torokhov575688e2011-03-20 02:15:16 -0700604static void xhci_stop_watchdog_timer_in_irq(struct xhci_hcd *xhci,
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700605 struct xhci_virt_ep *ep)
606{
607 ep->ep_state &= ~EP_HALT_PENDING;
608 /* Can't del_timer_sync in interrupt, so we attempt to cancel. If the
609 * timer is running on another CPU, we don't decrement stop_cmds_pending
610 * (since we didn't successfully stop the watchdog timer).
611 */
612 if (del_timer(&ep->stop_cmd_timer))
613 ep->stop_cmds_pending--;
614}
615
616/* Must be called with xhci->lock held in interrupt context */
617static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci,
618 struct xhci_td *cur_td, int status, char *adjective)
619{
Sarah Sharp214f76f2010-10-26 11:22:02 -0700620 struct usb_hcd *hcd;
Andiry Xu8e51adc2010-07-22 15:23:31 -0700621 struct urb *urb;
622 struct urb_priv *urb_priv;
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700623
Andiry Xu8e51adc2010-07-22 15:23:31 -0700624 urb = cur_td->urb;
625 urb_priv = urb->hcpriv;
626 urb_priv->td_cnt++;
Sarah Sharp214f76f2010-10-26 11:22:02 -0700627 hcd = bus_to_hcd(urb->dev->bus);
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700628
Andiry Xu8e51adc2010-07-22 15:23:31 -0700629 /* Only giveback urb when this is the last td in urb */
630 if (urb_priv->td_cnt == urb_priv->length) {
Andiry Xuc41136b2011-03-22 17:08:14 +0800631 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) {
632 xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs--;
633 if (xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs == 0) {
634 if (xhci->quirks & XHCI_AMD_PLL_FIX)
635 usb_amd_quirk_pll_enable();
636 }
637 }
Andiry Xu8e51adc2010-07-22 15:23:31 -0700638 usb_hcd_unlink_urb_from_ep(hcd, urb);
639 xhci_dbg(xhci, "Giveback %s URB %p\n", adjective, urb);
640
641 spin_unlock(&xhci->lock);
642 usb_hcd_giveback_urb(hcd, urb, status);
643 xhci_urb_free_priv(xhci, urb_priv);
644 spin_lock(&xhci->lock);
645 xhci_dbg(xhci, "%s URB given back\n", adjective);
646 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700647}
648
Sarah Sharpae636742009-04-29 19:02:31 -0700649/*
650 * When we get a command completion for a Stop Endpoint Command, we need to
651 * unlink any cancelled TDs from the ring. There are two ways to do that:
652 *
653 * 1. If the HW was in the middle of processing the TD that needs to be
654 * cancelled, then we must move the ring's dequeue pointer past the last TRB
655 * in the TD with a Set Dequeue Pointer Command.
656 * 2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain
657 * bit cleared) so that the HW will skip over them.
658 */
659static void handle_stopped_endpoint(struct xhci_hcd *xhci,
Andiry Xube88fe42010-10-14 07:22:57 -0700660 union xhci_trb *trb, struct xhci_event_cmd *event)
Sarah Sharpae636742009-04-29 19:02:31 -0700661{
662 unsigned int slot_id;
663 unsigned int ep_index;
Andiry Xube88fe42010-10-14 07:22:57 -0700664 struct xhci_virt_device *virt_dev;
Sarah Sharpae636742009-04-29 19:02:31 -0700665 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700666 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -0700667 struct list_head *entry;
Randy Dunlap326b4812010-04-19 08:53:50 -0700668 struct xhci_td *cur_td = NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700669 struct xhci_td *last_unlinked_td;
670
Sarah Sharpc92bcfa2009-07-27 12:05:21 -0700671 struct xhci_dequeue_state deq_state;
Sarah Sharpae636742009-04-29 19:02:31 -0700672
Andiry Xube88fe42010-10-14 07:22:57 -0700673 if (unlikely(TRB_TO_SUSPEND_PORT(
Matt Evans28ccd292011-03-29 13:40:46 +1100674 le32_to_cpu(xhci->cmd_ring->dequeue->generic.field[3])))) {
Andiry Xube88fe42010-10-14 07:22:57 -0700675 slot_id = TRB_TO_SLOT_ID(
Matt Evans28ccd292011-03-29 13:40:46 +1100676 le32_to_cpu(xhci->cmd_ring->dequeue->generic.field[3]));
Andiry Xube88fe42010-10-14 07:22:57 -0700677 virt_dev = xhci->devs[slot_id];
678 if (virt_dev)
679 handle_cmd_in_cmd_wait_list(xhci, virt_dev,
680 event);
681 else
682 xhci_warn(xhci, "Stop endpoint command "
683 "completion for disabled slot %u\n",
684 slot_id);
685 return;
686 }
687
Sarah Sharpae636742009-04-29 19:02:31 -0700688 memset(&deq_state, 0, sizeof(deq_state));
Matt Evans28ccd292011-03-29 13:40:46 +1100689 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(trb->generic.field[3]));
690 ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3]));
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700691 ep = &xhci->devs[slot_id]->eps[ep_index];
Sarah Sharpae636742009-04-29 19:02:31 -0700692
Sarah Sharp678539c2009-10-27 10:55:52 -0700693 if (list_empty(&ep->cancelled_td_list)) {
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700694 xhci_stop_watchdog_timer_in_irq(xhci, ep);
Sarah Sharp0714a572011-05-24 11:53:29 -0700695 ep->stopped_td = NULL;
696 ep->stopped_trb = NULL;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700697 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700698 return;
Sarah Sharp678539c2009-10-27 10:55:52 -0700699 }
Sarah Sharpae636742009-04-29 19:02:31 -0700700
701 /* Fix up the ep ring first, so HW stops executing cancelled TDs.
702 * We have the xHCI lock, so nothing can modify this list until we drop
703 * it. We're also in the event handler, so we can't get re-interrupted
704 * if another Stop Endpoint command completes
705 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700706 list_for_each(entry, &ep->cancelled_td_list) {
Sarah Sharpae636742009-04-29 19:02:31 -0700707 cur_td = list_entry(entry, struct xhci_td, cancelled_td_list);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700708 xhci_dbg(xhci, "Cancelling TD starting at %p, 0x%llx (dma).\n",
709 cur_td->first_trb,
Sarah Sharp23e3be12009-04-29 19:05:20 -0700710 (unsigned long long)xhci_trb_virt_to_dma(cur_td->start_seg, cur_td->first_trb));
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700711 ep_ring = xhci_urb_to_transfer_ring(xhci, cur_td->urb);
712 if (!ep_ring) {
713 /* This shouldn't happen unless a driver is mucking
714 * with the stream ID after submission. This will
715 * leave the TD on the hardware ring, and the hardware
716 * will try to execute it, and may access a buffer
717 * that has already been freed. In the best case, the
718 * hardware will execute it, and the event handler will
719 * ignore the completion event for that TD, since it was
720 * removed from the td_list for that endpoint. In
721 * short, don't muck with the stream ID after
722 * submission.
723 */
724 xhci_warn(xhci, "WARN Cancelled URB %p "
725 "has invalid stream ID %u.\n",
726 cur_td->urb,
727 cur_td->urb->stream_id);
728 goto remove_finished_td;
729 }
Sarah Sharpae636742009-04-29 19:02:31 -0700730 /*
731 * If we stopped on the TD we need to cancel, then we have to
732 * move the xHC endpoint ring dequeue pointer past this TD.
733 */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700734 if (cur_td == ep->stopped_td)
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700735 xhci_find_new_dequeue_state(xhci, slot_id, ep_index,
736 cur_td->urb->stream_id,
737 cur_td, &deq_state);
Sarah Sharpae636742009-04-29 19:02:31 -0700738 else
739 td_to_noop(xhci, ep_ring, cur_td);
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700740remove_finished_td:
Sarah Sharpae636742009-04-29 19:02:31 -0700741 /*
742 * The event handler won't see a completion for this TD anymore,
743 * so remove it from the endpoint ring's TD list. Keep it in
744 * the cancelled TD list for URB completion later.
745 */
746 list_del(&cur_td->td_list);
Sarah Sharpae636742009-04-29 19:02:31 -0700747 }
748 last_unlinked_td = cur_td;
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700749 xhci_stop_watchdog_timer_in_irq(xhci, ep);
Sarah Sharpae636742009-04-29 19:02:31 -0700750
751 /* If necessary, queue a Set Transfer Ring Dequeue Pointer command */
752 if (deq_state.new_deq_ptr && deq_state.new_deq_seg) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700753 xhci_queue_new_dequeue_state(xhci,
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700754 slot_id, ep_index,
755 ep->stopped_td->urb->stream_id,
756 &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700757 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -0700758 } else {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700759 /* Otherwise ring the doorbell(s) to restart queued transfers */
760 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -0700761 }
Sarah Sharp1624ae12010-05-06 13:40:08 -0700762 ep->stopped_td = NULL;
763 ep->stopped_trb = NULL;
Sarah Sharpae636742009-04-29 19:02:31 -0700764
765 /*
766 * Drop the lock and complete the URBs in the cancelled TD list.
767 * New TDs to be cancelled might be added to the end of the list before
768 * we can complete all the URBs for the TDs we already unlinked.
769 * So stop when we've completed the URB for the last TD we unlinked.
770 */
771 do {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700772 cur_td = list_entry(ep->cancelled_td_list.next,
Sarah Sharpae636742009-04-29 19:02:31 -0700773 struct xhci_td, cancelled_td_list);
774 list_del(&cur_td->cancelled_td_list);
775
776 /* Clean up the cancelled URB */
Sarah Sharpae636742009-04-29 19:02:31 -0700777 /* Doesn't matter what we pass for status, since the core will
778 * just overwrite it (because the URB has been unlinked).
779 */
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700780 xhci_giveback_urb_in_irq(xhci, cur_td, 0, "cancelled");
Sarah Sharpae636742009-04-29 19:02:31 -0700781
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700782 /* Stop processing the cancelled list if the watchdog timer is
783 * running.
784 */
785 if (xhci->xhc_state & XHCI_STATE_DYING)
786 return;
Sarah Sharpae636742009-04-29 19:02:31 -0700787 } while (cur_td != last_unlinked_td);
788
789 /* Return to the event handler with xhci->lock re-acquired */
790}
791
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700792/* Watchdog timer function for when a stop endpoint command fails to complete.
793 * In this case, we assume the host controller is broken or dying or dead. The
794 * host may still be completing some other events, so we have to be careful to
795 * let the event ring handler and the URB dequeueing/enqueueing functions know
796 * through xhci->state.
797 *
798 * The timer may also fire if the host takes a very long time to respond to the
799 * command, and the stop endpoint command completion handler cannot delete the
800 * timer before the timer function is called. Another endpoint cancellation may
801 * sneak in before the timer function can grab the lock, and that may queue
802 * another stop endpoint command and add the timer back. So we cannot use a
803 * simple flag to say whether there is a pending stop endpoint command for a
804 * particular endpoint.
805 *
806 * Instead we use a combination of that flag and a counter for the number of
807 * pending stop endpoint commands. If the timer is the tail end of the last
808 * stop endpoint command, and the endpoint's command is still pending, we assume
809 * the host is dying.
810 */
811void xhci_stop_endpoint_command_watchdog(unsigned long arg)
812{
813 struct xhci_hcd *xhci;
814 struct xhci_virt_ep *ep;
815 struct xhci_virt_ep *temp_ep;
816 struct xhci_ring *ring;
817 struct xhci_td *cur_td;
818 int ret, i, j;
819
820 ep = (struct xhci_virt_ep *) arg;
821 xhci = ep->xhci;
822
823 spin_lock(&xhci->lock);
824
825 ep->stop_cmds_pending--;
826 if (xhci->xhc_state & XHCI_STATE_DYING) {
827 xhci_dbg(xhci, "Stop EP timer ran, but another timer marked "
828 "xHCI as DYING, exiting.\n");
829 spin_unlock(&xhci->lock);
830 return;
831 }
832 if (!(ep->stop_cmds_pending == 0 && (ep->ep_state & EP_HALT_PENDING))) {
833 xhci_dbg(xhci, "Stop EP timer ran, but no command pending, "
834 "exiting.\n");
835 spin_unlock(&xhci->lock);
836 return;
837 }
838
839 xhci_warn(xhci, "xHCI host not responding to stop endpoint command.\n");
840 xhci_warn(xhci, "Assuming host is dying, halting host.\n");
841 /* Oops, HC is dead or dying or at least not responding to the stop
842 * endpoint command.
843 */
844 xhci->xhc_state |= XHCI_STATE_DYING;
845 /* Disable interrupts from the host controller and start halting it */
846 xhci_quiesce(xhci);
847 spin_unlock(&xhci->lock);
848
849 ret = xhci_halt(xhci);
850
851 spin_lock(&xhci->lock);
852 if (ret < 0) {
853 /* This is bad; the host is not responding to commands and it's
854 * not allowing itself to be halted. At least interrupts are
Sarah Sharpac04e6f2011-03-11 08:47:33 -0800855 * disabled. If we call usb_hc_died(), it will attempt to
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700856 * disconnect all device drivers under this host. Those
857 * disconnect() methods will wait for all URBs to be unlinked,
858 * so we must complete them.
859 */
860 xhci_warn(xhci, "Non-responsive xHCI host is not halting.\n");
861 xhci_warn(xhci, "Completing active URBs anyway.\n");
862 /* We could turn all TDs on the rings to no-ops. This won't
863 * help if the host has cached part of the ring, and is slow if
864 * we want to preserve the cycle bit. Skip it and hope the host
865 * doesn't touch the memory.
866 */
867 }
868 for (i = 0; i < MAX_HC_SLOTS; i++) {
869 if (!xhci->devs[i])
870 continue;
871 for (j = 0; j < 31; j++) {
872 temp_ep = &xhci->devs[i]->eps[j];
873 ring = temp_ep->ring;
874 if (!ring)
875 continue;
876 xhci_dbg(xhci, "Killing URBs for slot ID %u, "
877 "ep index %u\n", i, j);
878 while (!list_empty(&ring->td_list)) {
879 cur_td = list_first_entry(&ring->td_list,
880 struct xhci_td,
881 td_list);
882 list_del(&cur_td->td_list);
883 if (!list_empty(&cur_td->cancelled_td_list))
884 list_del(&cur_td->cancelled_td_list);
885 xhci_giveback_urb_in_irq(xhci, cur_td,
886 -ESHUTDOWN, "killed");
887 }
888 while (!list_empty(&temp_ep->cancelled_td_list)) {
889 cur_td = list_first_entry(
890 &temp_ep->cancelled_td_list,
891 struct xhci_td,
892 cancelled_td_list);
893 list_del(&cur_td->cancelled_td_list);
894 xhci_giveback_urb_in_irq(xhci, cur_td,
895 -ESHUTDOWN, "killed");
896 }
897 }
898 }
899 spin_unlock(&xhci->lock);
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700900 xhci_dbg(xhci, "Calling usb_hc_died()\n");
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800901 usb_hc_died(xhci_to_hcd(xhci)->primary_hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700902 xhci_dbg(xhci, "xHCI host controller is dead.\n");
903}
904
Sarah Sharpae636742009-04-29 19:02:31 -0700905/*
906 * When we get a completion for a Set Transfer Ring Dequeue Pointer command,
907 * we need to clear the set deq pending flag in the endpoint ring state, so that
908 * the TD queueing code can ring the doorbell again. We also need to ring the
909 * endpoint doorbell to restart the ring, but only if there aren't more
910 * cancellations pending.
911 */
912static void handle_set_deq_completion(struct xhci_hcd *xhci,
913 struct xhci_event_cmd *event,
914 union xhci_trb *trb)
915{
916 unsigned int slot_id;
917 unsigned int ep_index;
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700918 unsigned int stream_id;
Sarah Sharpae636742009-04-29 19:02:31 -0700919 struct xhci_ring *ep_ring;
920 struct xhci_virt_device *dev;
John Yound115b042009-07-27 12:05:15 -0700921 struct xhci_ep_ctx *ep_ctx;
922 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpae636742009-04-29 19:02:31 -0700923
Matt Evans28ccd292011-03-29 13:40:46 +1100924 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(trb->generic.field[3]));
925 ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3]));
926 stream_id = TRB_TO_STREAM_ID(le32_to_cpu(trb->generic.field[2]));
Sarah Sharpae636742009-04-29 19:02:31 -0700927 dev = xhci->devs[slot_id];
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700928
929 ep_ring = xhci_stream_id_to_ring(dev, ep_index, stream_id);
930 if (!ep_ring) {
931 xhci_warn(xhci, "WARN Set TR deq ptr command for "
932 "freed stream ID %u\n",
933 stream_id);
934 /* XXX: Harmless??? */
935 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
936 return;
937 }
938
John Yound115b042009-07-27 12:05:15 -0700939 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index);
940 slot_ctx = xhci_get_slot_ctx(xhci, dev->out_ctx);
Sarah Sharpae636742009-04-29 19:02:31 -0700941
Matt Evans28ccd292011-03-29 13:40:46 +1100942 if (GET_COMP_CODE(le32_to_cpu(event->status)) != COMP_SUCCESS) {
Sarah Sharpae636742009-04-29 19:02:31 -0700943 unsigned int ep_state;
944 unsigned int slot_state;
945
Matt Evans28ccd292011-03-29 13:40:46 +1100946 switch (GET_COMP_CODE(le32_to_cpu(event->status))) {
Sarah Sharpae636742009-04-29 19:02:31 -0700947 case COMP_TRB_ERR:
948 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because "
949 "of stream ID configuration\n");
950 break;
951 case COMP_CTX_STATE:
952 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due "
953 "to incorrect slot or ep state.\n");
Matt Evans28ccd292011-03-29 13:40:46 +1100954 ep_state = le32_to_cpu(ep_ctx->ep_info);
Sarah Sharpae636742009-04-29 19:02:31 -0700955 ep_state &= EP_STATE_MASK;
Matt Evans28ccd292011-03-29 13:40:46 +1100956 slot_state = le32_to_cpu(slot_ctx->dev_state);
Sarah Sharpae636742009-04-29 19:02:31 -0700957 slot_state = GET_SLOT_STATE(slot_state);
958 xhci_dbg(xhci, "Slot state = %u, EP state = %u\n",
959 slot_state, ep_state);
960 break;
961 case COMP_EBADSLT:
962 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because "
963 "slot %u was not enabled.\n", slot_id);
964 break;
965 default:
966 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown "
967 "completion code of %u.\n",
Matt Evans28ccd292011-03-29 13:40:46 +1100968 GET_COMP_CODE(le32_to_cpu(event->status)));
Sarah Sharpae636742009-04-29 19:02:31 -0700969 break;
970 }
971 /* OK what do we do now? The endpoint state is hosed, and we
972 * should never get to this point if the synchronization between
973 * queueing, and endpoint state are correct. This might happen
974 * if the device gets disconnected after we've finished
975 * cancelling URBs, which might not be an error...
976 */
977 } else {
Sarah Sharp8e595a52009-07-27 12:03:31 -0700978 xhci_dbg(xhci, "Successful Set TR Deq Ptr cmd, deq = @%08llx\n",
Matt Evans28ccd292011-03-29 13:40:46 +1100979 le64_to_cpu(ep_ctx->deq));
Sarah Sharpbf161e82011-02-23 15:46:42 -0800980 if (xhci_trb_virt_to_dma(dev->eps[ep_index].queued_deq_seg,
Matt Evans28ccd292011-03-29 13:40:46 +1100981 dev->eps[ep_index].queued_deq_ptr) ==
982 (le64_to_cpu(ep_ctx->deq) & ~(EP_CTX_CYCLE_MASK))) {
Sarah Sharpbf161e82011-02-23 15:46:42 -0800983 /* Update the ring's dequeue segment and dequeue pointer
984 * to reflect the new position.
985 */
986 ep_ring->deq_seg = dev->eps[ep_index].queued_deq_seg;
987 ep_ring->dequeue = dev->eps[ep_index].queued_deq_ptr;
988 } else {
989 xhci_warn(xhci, "Mismatch between completed Set TR Deq "
990 "Ptr command & xHCI internal state.\n");
991 xhci_warn(xhci, "ep deq seg = %p, deq ptr = %p\n",
992 dev->eps[ep_index].queued_deq_seg,
993 dev->eps[ep_index].queued_deq_ptr);
994 }
Sarah Sharpae636742009-04-29 19:02:31 -0700995 }
996
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700997 dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING;
Sarah Sharpbf161e82011-02-23 15:46:42 -0800998 dev->eps[ep_index].queued_deq_seg = NULL;
999 dev->eps[ep_index].queued_deq_ptr = NULL;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001000 /* Restart any rings with pending URBs */
1001 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpae636742009-04-29 19:02:31 -07001002}
1003
Sarah Sharpa1587d92009-07-27 12:03:15 -07001004static void handle_reset_ep_completion(struct xhci_hcd *xhci,
1005 struct xhci_event_cmd *event,
1006 union xhci_trb *trb)
1007{
1008 int slot_id;
1009 unsigned int ep_index;
1010
Matt Evans28ccd292011-03-29 13:40:46 +11001011 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(trb->generic.field[3]));
1012 ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3]));
Sarah Sharpa1587d92009-07-27 12:03:15 -07001013 /* This command will only fail if the endpoint wasn't halted,
1014 * but we don't care.
1015 */
1016 xhci_dbg(xhci, "Ignoring reset ep completion code of %u\n",
Matt Evans28ccd292011-03-29 13:40:46 +11001017 (unsigned int) GET_COMP_CODE(le32_to_cpu(event->status)));
Sarah Sharpa1587d92009-07-27 12:03:15 -07001018
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001019 /* HW with the reset endpoint quirk needs to have a configure endpoint
1020 * command complete before the endpoint can be used. Queue that here
1021 * because the HW can't handle two commands being queued in a row.
1022 */
1023 if (xhci->quirks & XHCI_RESET_EP_QUIRK) {
1024 xhci_dbg(xhci, "Queueing configure endpoint command\n");
1025 xhci_queue_configure_endpoint(xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001026 xhci->devs[slot_id]->in_ctx->dma, slot_id,
1027 false);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001028 xhci_ring_cmd_db(xhci);
1029 } else {
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001030 /* Clear our internal halted state and restart the ring(s) */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001031 xhci->devs[slot_id]->eps[ep_index].ep_state &= ~EP_HALTED;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001032 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001033 }
Sarah Sharpa1587d92009-07-27 12:03:15 -07001034}
Sarah Sharpae636742009-04-29 19:02:31 -07001035
Sarah Sharpa50c8aa2009-09-04 10:53:15 -07001036/* Check to see if a command in the device's command queue matches this one.
1037 * Signal the completion or free the command, and return 1. Return 0 if the
1038 * completed command isn't at the head of the command list.
1039 */
1040static int handle_cmd_in_cmd_wait_list(struct xhci_hcd *xhci,
1041 struct xhci_virt_device *virt_dev,
1042 struct xhci_event_cmd *event)
1043{
1044 struct xhci_command *command;
1045
1046 if (list_empty(&virt_dev->cmd_list))
1047 return 0;
1048
1049 command = list_entry(virt_dev->cmd_list.next,
1050 struct xhci_command, cmd_list);
1051 if (xhci->cmd_ring->dequeue != command->command_trb)
1052 return 0;
1053
Matt Evans28ccd292011-03-29 13:40:46 +11001054 command->status = GET_COMP_CODE(le32_to_cpu(event->status));
Sarah Sharpa50c8aa2009-09-04 10:53:15 -07001055 list_del(&command->cmd_list);
1056 if (command->completion)
1057 complete(command->completion);
1058 else
1059 xhci_free_command(xhci, command);
1060 return 1;
1061}
1062
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001063static void handle_cmd_completion(struct xhci_hcd *xhci,
1064 struct xhci_event_cmd *event)
1065{
Matt Evans28ccd292011-03-29 13:40:46 +11001066 int slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->flags));
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001067 u64 cmd_dma;
1068 dma_addr_t cmd_dequeue_dma;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001069 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07001070 struct xhci_virt_device *virt_dev;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001071 unsigned int ep_index;
1072 struct xhci_ring *ep_ring;
1073 unsigned int ep_state;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001074
Matt Evans28ccd292011-03-29 13:40:46 +11001075 cmd_dma = le64_to_cpu(event->cmd_trb);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001076 cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001077 xhci->cmd_ring->dequeue);
1078 /* Is the command ring deq ptr out of sync with the deq seg ptr? */
1079 if (cmd_dequeue_dma == 0) {
1080 xhci->error_bitmask |= 1 << 4;
1081 return;
1082 }
1083 /* Does the DMA address match our internal dequeue pointer address? */
1084 if (cmd_dma != (u64) cmd_dequeue_dma) {
1085 xhci->error_bitmask |= 1 << 5;
1086 return;
1087 }
Matt Evans28ccd292011-03-29 13:40:46 +11001088 switch (le32_to_cpu(xhci->cmd_ring->dequeue->generic.field[3])
1089 & TRB_TYPE_BITMASK) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001090 case TRB_TYPE(TRB_ENABLE_SLOT):
Matt Evans28ccd292011-03-29 13:40:46 +11001091 if (GET_COMP_CODE(le32_to_cpu(event->status)) == COMP_SUCCESS)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001092 xhci->slot_id = slot_id;
1093 else
1094 xhci->slot_id = 0;
1095 complete(&xhci->addr_dev);
1096 break;
1097 case TRB_TYPE(TRB_DISABLE_SLOT):
1098 if (xhci->devs[slot_id])
1099 xhci_free_virt_device(xhci, slot_id);
1100 break;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001101 case TRB_TYPE(TRB_CONFIG_EP):
Sarah Sharp913a8a32009-09-04 10:53:13 -07001102 virt_dev = xhci->devs[slot_id];
Sarah Sharpa50c8aa2009-09-04 10:53:15 -07001103 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
Sarah Sharp913a8a32009-09-04 10:53:13 -07001104 break;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001105 /*
1106 * Configure endpoint commands can come from the USB core
1107 * configuration or alt setting changes, or because the HW
1108 * needed an extra configure endpoint command after a reset
Sarah Sharp8df75f42010-04-02 15:34:16 -07001109 * endpoint command or streams were being configured.
1110 * If the command was for a halted endpoint, the xHCI driver
1111 * is not waiting on the configure endpoint command.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001112 */
1113 ctrl_ctx = xhci_get_input_control_ctx(xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001114 virt_dev->in_ctx);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001115 /* Input ctx add_flags are the endpoint index plus one */
Matt Evans28ccd292011-03-29 13:40:46 +11001116 ep_index = xhci_last_valid_endpoint(le32_to_cpu(ctrl_ctx->add_flags)) - 1;
Sarah Sharp06df5722009-12-03 09:44:31 -08001117 /* A usb_set_interface() call directly after clearing a halted
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001118 * condition may race on this quirky hardware. Not worth
1119 * worrying about, since this is prototype hardware. Not sure
1120 * if this will work for streams, but streams support was
1121 * untested on this prototype.
Sarah Sharp06df5722009-12-03 09:44:31 -08001122 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001123 if (xhci->quirks & XHCI_RESET_EP_QUIRK &&
Sarah Sharp06df5722009-12-03 09:44:31 -08001124 ep_index != (unsigned int) -1 &&
Matt Evans28ccd292011-03-29 13:40:46 +11001125 le32_to_cpu(ctrl_ctx->add_flags) - SLOT_FLAG ==
1126 le32_to_cpu(ctrl_ctx->drop_flags)) {
Sarah Sharp06df5722009-12-03 09:44:31 -08001127 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
1128 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1129 if (!(ep_state & EP_HALTED))
1130 goto bandwidth_change;
1131 xhci_dbg(xhci, "Completed config ep cmd - "
1132 "last ep index = %d, state = %d\n",
1133 ep_index, ep_state);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001134 /* Clear internal halted state and restart ring(s) */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001135 xhci->devs[slot_id]->eps[ep_index].ep_state &=
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001136 ~EP_HALTED;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001137 ring_doorbell_for_active_rings(xhci, slot_id, ep_index);
Sarah Sharp06df5722009-12-03 09:44:31 -08001138 break;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001139 }
Sarah Sharp06df5722009-12-03 09:44:31 -08001140bandwidth_change:
1141 xhci_dbg(xhci, "Completed config ep cmd\n");
1142 xhci->devs[slot_id]->cmd_status =
Matt Evans28ccd292011-03-29 13:40:46 +11001143 GET_COMP_CODE(le32_to_cpu(event->status));
Sarah Sharp06df5722009-12-03 09:44:31 -08001144 complete(&xhci->devs[slot_id]->cmd_completion);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001145 break;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001146 case TRB_TYPE(TRB_EVAL_CONTEXT):
Sarah Sharpac1c1b72009-09-04 10:53:20 -07001147 virt_dev = xhci->devs[slot_id];
1148 if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event))
1149 break;
Matt Evans28ccd292011-03-29 13:40:46 +11001150 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(le32_to_cpu(event->status));
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001151 complete(&xhci->devs[slot_id]->cmd_completion);
1152 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001153 case TRB_TYPE(TRB_ADDR_DEV):
Matt Evans28ccd292011-03-29 13:40:46 +11001154 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(le32_to_cpu(event->status));
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001155 complete(&xhci->addr_dev);
1156 break;
Sarah Sharpae636742009-04-29 19:02:31 -07001157 case TRB_TYPE(TRB_STOP_RING):
Andiry Xube88fe42010-10-14 07:22:57 -07001158 handle_stopped_endpoint(xhci, xhci->cmd_ring->dequeue, event);
Sarah Sharpae636742009-04-29 19:02:31 -07001159 break;
1160 case TRB_TYPE(TRB_SET_DEQ):
1161 handle_set_deq_completion(xhci, event, xhci->cmd_ring->dequeue);
1162 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001163 case TRB_TYPE(TRB_CMD_NOOP):
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001164 break;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001165 case TRB_TYPE(TRB_RESET_EP):
1166 handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue);
1167 break;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08001168 case TRB_TYPE(TRB_RESET_DEV):
1169 xhci_dbg(xhci, "Completed reset device command.\n");
1170 slot_id = TRB_TO_SLOT_ID(
Matt Evans28ccd292011-03-29 13:40:46 +11001171 le32_to_cpu(xhci->cmd_ring->dequeue->generic.field[3]));
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08001172 virt_dev = xhci->devs[slot_id];
1173 if (virt_dev)
1174 handle_cmd_in_cmd_wait_list(xhci, virt_dev, event);
1175 else
1176 xhci_warn(xhci, "Reset device command completion "
1177 "for disabled slot %u\n", slot_id);
1178 break;
Sarah Sharp02386342010-05-24 13:25:28 -07001179 case TRB_TYPE(TRB_NEC_GET_FW):
1180 if (!(xhci->quirks & XHCI_NEC_HOST)) {
1181 xhci->error_bitmask |= 1 << 6;
1182 break;
1183 }
1184 xhci_dbg(xhci, "NEC firmware version %2x.%02x\n",
Matt Evans28ccd292011-03-29 13:40:46 +11001185 NEC_FW_MAJOR(le32_to_cpu(event->status)),
1186 NEC_FW_MINOR(le32_to_cpu(event->status)));
Sarah Sharp02386342010-05-24 13:25:28 -07001187 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001188 default:
1189 /* Skip over unknown commands on the event ring */
1190 xhci->error_bitmask |= 1 << 6;
1191 break;
1192 }
1193 inc_deq(xhci, xhci->cmd_ring, false);
1194}
1195
Sarah Sharp02386342010-05-24 13:25:28 -07001196static void handle_vendor_event(struct xhci_hcd *xhci,
1197 union xhci_trb *event)
1198{
1199 u32 trb_type;
1200
Matt Evans28ccd292011-03-29 13:40:46 +11001201 trb_type = TRB_FIELD_TO_TYPE(le32_to_cpu(event->generic.field[3]));
Sarah Sharp02386342010-05-24 13:25:28 -07001202 xhci_dbg(xhci, "Vendor specific event TRB type = %u\n", trb_type);
1203 if (trb_type == TRB_NEC_CMD_COMP && (xhci->quirks & XHCI_NEC_HOST))
1204 handle_cmd_completion(xhci, &event->event_cmd);
1205}
1206
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001207/* @port_id: the one-based port ID from the hardware (indexed from array of all
1208 * port registers -- USB 3.0 and USB 2.0).
1209 *
1210 * Returns a zero-based port number, which is suitable for indexing into each of
1211 * the split roothubs' port arrays and bus state arrays.
1212 */
1213static unsigned int find_faked_portnum_from_hw_portnum(struct usb_hcd *hcd,
1214 struct xhci_hcd *xhci, u32 port_id)
1215{
1216 unsigned int i;
1217 unsigned int num_similar_speed_ports = 0;
1218
1219 /* port_id from the hardware is 1-based, but port_array[], usb3_ports[],
1220 * and usb2_ports are 0-based indexes. Count the number of similar
1221 * speed ports, up to 1 port before this port.
1222 */
1223 for (i = 0; i < (port_id - 1); i++) {
1224 u8 port_speed = xhci->port_array[i];
1225
1226 /*
1227 * Skip ports that don't have known speeds, or have duplicate
1228 * Extended Capabilities port speed entries.
1229 */
Dan Carpenter22e04872011-03-17 22:39:49 +03001230 if (port_speed == 0 || port_speed == DUPLICATE_ENTRY)
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001231 continue;
1232
1233 /*
1234 * USB 3.0 ports are always under a USB 3.0 hub. USB 2.0 and
1235 * 1.1 ports are under the USB 2.0 hub. If the port speed
1236 * matches the device speed, it's a similar speed port.
1237 */
1238 if ((port_speed == 0x03) == (hcd->speed == HCD_USB3))
1239 num_similar_speed_ports++;
1240 }
1241 return num_similar_speed_ports;
1242}
1243
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001244static void handle_port_status(struct xhci_hcd *xhci,
1245 union xhci_trb *event)
1246{
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001247 struct usb_hcd *hcd;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001248 u32 port_id;
Andiry Xu56192532010-10-14 07:23:00 -07001249 u32 temp, temp1;
Sarah Sharp518e8482010-12-15 11:56:29 -08001250 int max_ports;
Andiry Xu56192532010-10-14 07:23:00 -07001251 int slot_id;
Sarah Sharp5308a912010-12-01 11:34:59 -08001252 unsigned int faked_port_index;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001253 u8 major_revision;
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001254 struct xhci_bus_state *bus_state;
Matt Evans28ccd292011-03-29 13:40:46 +11001255 __le32 __iomem **port_array;
Sarah Sharp386139d2011-03-24 08:02:58 -07001256 bool bogus_port_status = false;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001257
1258 /* Port status change events always have a successful completion code */
Matt Evans28ccd292011-03-29 13:40:46 +11001259 if (GET_COMP_CODE(le32_to_cpu(event->generic.field[2])) != COMP_SUCCESS) {
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001260 xhci_warn(xhci, "WARN: xHC returned failed port status event\n");
1261 xhci->error_bitmask |= 1 << 8;
1262 }
Matt Evans28ccd292011-03-29 13:40:46 +11001263 port_id = GET_PORT_ID(le32_to_cpu(event->generic.field[0]));
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001264 xhci_dbg(xhci, "Port Status Change Event for port %d\n", port_id);
1265
Sarah Sharp518e8482010-12-15 11:56:29 -08001266 max_ports = HCS_MAX_PORTS(xhci->hcs_params1);
1267 if ((port_id <= 0) || (port_id > max_ports)) {
Andiry Xu56192532010-10-14 07:23:00 -07001268 xhci_warn(xhci, "Invalid port id %d\n", port_id);
Sarah Sharp386139d2011-03-24 08:02:58 -07001269 bogus_port_status = true;
Andiry Xu56192532010-10-14 07:23:00 -07001270 goto cleanup;
1271 }
1272
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001273 /* Figure out which usb_hcd this port is attached to:
1274 * is it a USB 3.0 port or a USB 2.0/1.1 port?
1275 */
1276 major_revision = xhci->port_array[port_id - 1];
1277 if (major_revision == 0) {
1278 xhci_warn(xhci, "Event for port %u not in "
1279 "Extended Capabilities, ignoring.\n",
1280 port_id);
Sarah Sharp386139d2011-03-24 08:02:58 -07001281 bogus_port_status = true;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001282 goto cleanup;
1283 }
Dan Carpenter22e04872011-03-17 22:39:49 +03001284 if (major_revision == DUPLICATE_ENTRY) {
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001285 xhci_warn(xhci, "Event for port %u duplicated in"
1286 "Extended Capabilities, ignoring.\n",
1287 port_id);
Sarah Sharp386139d2011-03-24 08:02:58 -07001288 bogus_port_status = true;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001289 goto cleanup;
Sarah Sharp5308a912010-12-01 11:34:59 -08001290 }
1291
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001292 /*
1293 * Hardware port IDs reported by a Port Status Change Event include USB
1294 * 3.0 and USB 2.0 ports. We want to check if the port has reported a
1295 * resume event, but we first need to translate the hardware port ID
1296 * into the index into the ports on the correct split roothub, and the
1297 * correct bus_state structure.
1298 */
1299 /* Find the right roothub. */
1300 hcd = xhci_to_hcd(xhci);
1301 if ((major_revision == 0x03) != (hcd->speed == HCD_USB3))
1302 hcd = xhci->shared_hcd;
1303 bus_state = &xhci->bus_state[hcd_index(hcd)];
1304 if (hcd->speed == HCD_USB3)
1305 port_array = xhci->usb3_ports;
1306 else
1307 port_array = xhci->usb2_ports;
1308 /* Find the faked port hub number */
1309 faked_port_index = find_faked_portnum_from_hw_portnum(hcd, xhci,
1310 port_id);
1311
Sarah Sharp5308a912010-12-01 11:34:59 -08001312 temp = xhci_readl(xhci, port_array[faked_port_index]);
Sarah Sharp7111ebc2010-12-14 13:24:55 -08001313 if (hcd->state == HC_STATE_SUSPENDED) {
Andiry Xu56192532010-10-14 07:23:00 -07001314 xhci_dbg(xhci, "resume root hub\n");
1315 usb_hcd_resume_root_hub(hcd);
1316 }
1317
1318 if ((temp & PORT_PLC) && (temp & PORT_PLS_MASK) == XDEV_RESUME) {
1319 xhci_dbg(xhci, "port resume event for port %d\n", port_id);
1320
1321 temp1 = xhci_readl(xhci, &xhci->op_regs->command);
1322 if (!(temp1 & CMD_RUN)) {
1323 xhci_warn(xhci, "xHC is not running.\n");
1324 goto cleanup;
1325 }
1326
1327 if (DEV_SUPERSPEED(temp)) {
1328 xhci_dbg(xhci, "resume SS port %d\n", port_id);
1329 temp = xhci_port_state_to_neutral(temp);
1330 temp &= ~PORT_PLS_MASK;
1331 temp |= PORT_LINK_STROBE | XDEV_U0;
Sarah Sharp5308a912010-12-01 11:34:59 -08001332 xhci_writel(xhci, temp, port_array[faked_port_index]);
Sarah Sharp52336302010-12-16 10:49:09 -08001333 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
1334 faked_port_index);
Andiry Xu56192532010-10-14 07:23:00 -07001335 if (!slot_id) {
1336 xhci_dbg(xhci, "slot_id is zero\n");
1337 goto cleanup;
1338 }
1339 xhci_ring_device(xhci, slot_id);
1340 xhci_dbg(xhci, "resume SS port %d finished\n", port_id);
1341 /* Clear PORT_PLC */
Sarah Sharp5308a912010-12-01 11:34:59 -08001342 temp = xhci_readl(xhci, port_array[faked_port_index]);
Andiry Xu56192532010-10-14 07:23:00 -07001343 temp = xhci_port_state_to_neutral(temp);
1344 temp |= PORT_PLC;
Sarah Sharp5308a912010-12-01 11:34:59 -08001345 xhci_writel(xhci, temp, port_array[faked_port_index]);
Andiry Xu56192532010-10-14 07:23:00 -07001346 } else {
1347 xhci_dbg(xhci, "resume HS port %d\n", port_id);
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001348 bus_state->resume_done[faked_port_index] = jiffies +
Andiry Xu56192532010-10-14 07:23:00 -07001349 msecs_to_jiffies(20);
1350 mod_timer(&hcd->rh_timer,
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001351 bus_state->resume_done[faked_port_index]);
Andiry Xu56192532010-10-14 07:23:00 -07001352 /* Do the rest in GetPortStatus */
1353 }
1354 }
1355
1356cleanup:
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001357 /* Update event ring dequeue pointer before dropping the lock */
1358 inc_deq(xhci, xhci->event_ring, true);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001359
Sarah Sharp386139d2011-03-24 08:02:58 -07001360 /* Don't make the USB core poll the roothub if we got a bad port status
1361 * change event. Besides, at that point we can't tell which roothub
1362 * (USB 2.0 or USB 3.0) to kick.
1363 */
1364 if (bogus_port_status)
1365 return;
1366
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001367 spin_unlock(&xhci->lock);
1368 /* Pass this up to the core */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -08001369 usb_hcd_poll_rh_status(hcd);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001370 spin_lock(&xhci->lock);
1371}
1372
1373/*
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001374 * This TD is defined by the TRBs starting at start_trb in start_seg and ending
1375 * at end_trb, which may be in another segment. If the suspect DMA address is a
1376 * TRB in this TD, this function returns that TRB's segment. Otherwise it
1377 * returns 0.
1378 */
Sarah Sharp6648f292009-11-09 13:35:23 -08001379struct xhci_segment *trb_in_td(struct xhci_segment *start_seg,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001380 union xhci_trb *start_trb,
1381 union xhci_trb *end_trb,
1382 dma_addr_t suspect_dma)
1383{
1384 dma_addr_t start_dma;
1385 dma_addr_t end_seg_dma;
1386 dma_addr_t end_trb_dma;
1387 struct xhci_segment *cur_seg;
1388
Sarah Sharp23e3be12009-04-29 19:05:20 -07001389 start_dma = xhci_trb_virt_to_dma(start_seg, start_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001390 cur_seg = start_seg;
1391
1392 do {
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001393 if (start_dma == 0)
Randy Dunlap326b4812010-04-19 08:53:50 -07001394 return NULL;
Sarah Sharpae636742009-04-29 19:02:31 -07001395 /* We may get an event for a Link TRB in the middle of a TD */
Sarah Sharp23e3be12009-04-29 19:05:20 -07001396 end_seg_dma = xhci_trb_virt_to_dma(cur_seg,
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001397 &cur_seg->trbs[TRBS_PER_SEGMENT - 1]);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001398 /* If the end TRB isn't in this segment, this is set to 0 */
Sarah Sharp23e3be12009-04-29 19:05:20 -07001399 end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001400
1401 if (end_trb_dma > 0) {
1402 /* The end TRB is in this segment, so suspect should be here */
1403 if (start_dma <= end_trb_dma) {
1404 if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma)
1405 return cur_seg;
1406 } else {
1407 /* Case for one segment with
1408 * a TD wrapped around to the top
1409 */
1410 if ((suspect_dma >= start_dma &&
1411 suspect_dma <= end_seg_dma) ||
1412 (suspect_dma >= cur_seg->dma &&
1413 suspect_dma <= end_trb_dma))
1414 return cur_seg;
1415 }
Randy Dunlap326b4812010-04-19 08:53:50 -07001416 return NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001417 } else {
1418 /* Might still be somewhere in this segment */
1419 if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma)
1420 return cur_seg;
1421 }
1422 cur_seg = cur_seg->next;
Sarah Sharp23e3be12009-04-29 19:05:20 -07001423 start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]);
Sarah Sharp2fa88da2009-11-03 22:02:24 -08001424 } while (cur_seg != start_seg);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001425
Randy Dunlap326b4812010-04-19 08:53:50 -07001426 return NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001427}
1428
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001429static void xhci_cleanup_halted_endpoint(struct xhci_hcd *xhci,
1430 unsigned int slot_id, unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001431 unsigned int stream_id,
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001432 struct xhci_td *td, union xhci_trb *event_trb)
1433{
1434 struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index];
1435 ep->ep_state |= EP_HALTED;
1436 ep->stopped_td = td;
1437 ep->stopped_trb = event_trb;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001438 ep->stopped_stream = stream_id;
Sarah Sharp1624ae12010-05-06 13:40:08 -07001439
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001440 xhci_queue_reset_ep(xhci, slot_id, ep_index);
1441 xhci_cleanup_stalled_ring(xhci, td->urb->dev, ep_index);
Sarah Sharp1624ae12010-05-06 13:40:08 -07001442
1443 ep->stopped_td = NULL;
1444 ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07001445 ep->stopped_stream = 0;
Sarah Sharp1624ae12010-05-06 13:40:08 -07001446
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001447 xhci_ring_cmd_db(xhci);
1448}
1449
1450/* Check if an error has halted the endpoint ring. The class driver will
1451 * cleanup the halt for a non-default control endpoint if we indicate a stall.
1452 * However, a babble and other errors also halt the endpoint ring, and the class
1453 * driver won't clear the halt in that case, so we need to issue a Set Transfer
1454 * Ring Dequeue Pointer command manually.
1455 */
1456static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci,
1457 struct xhci_ep_ctx *ep_ctx,
1458 unsigned int trb_comp_code)
1459{
1460 /* TRB completion codes that may require a manual halt cleanup */
1461 if (trb_comp_code == COMP_TX_ERR ||
1462 trb_comp_code == COMP_BABBLE ||
1463 trb_comp_code == COMP_SPLIT_ERR)
1464 /* The 0.96 spec says a babbling control endpoint
1465 * is not halted. The 0.96 spec says it is. Some HW
1466 * claims to be 0.95 compliant, but it halts the control
1467 * endpoint anyway. Check if a babble halted the
1468 * endpoint.
1469 */
Matt Evans28ccd292011-03-29 13:40:46 +11001470 if ((le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK) == EP_STATE_HALTED)
Sarah Sharpbcef3fd2009-11-11 10:28:44 -08001471 return 1;
1472
1473 return 0;
1474}
1475
Sarah Sharpb45b5062009-12-09 15:59:06 -08001476int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code)
1477{
1478 if (trb_comp_code >= 224 && trb_comp_code <= 255) {
1479 /* Vendor defined "informational" completion code,
1480 * treat as not-an-error.
1481 */
1482 xhci_dbg(xhci, "Vendor defined info completion code %u\n",
1483 trb_comp_code);
1484 xhci_dbg(xhci, "Treating code as success.\n");
1485 return 1;
1486 }
1487 return 0;
1488}
1489
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001490/*
Andiry Xu4422da62010-07-22 15:22:55 -07001491 * Finish the td processing, remove the td from td list;
1492 * Return 1 if the urb can be given back.
1493 */
1494static int finish_td(struct xhci_hcd *xhci, struct xhci_td *td,
1495 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1496 struct xhci_virt_ep *ep, int *status, bool skip)
1497{
1498 struct xhci_virt_device *xdev;
1499 struct xhci_ring *ep_ring;
1500 unsigned int slot_id;
1501 int ep_index;
1502 struct urb *urb = NULL;
1503 struct xhci_ep_ctx *ep_ctx;
1504 int ret = 0;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001505 struct urb_priv *urb_priv;
Andiry Xu4422da62010-07-22 15:22:55 -07001506 u32 trb_comp_code;
1507
Matt Evans28ccd292011-03-29 13:40:46 +11001508 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->flags));
Andiry Xu4422da62010-07-22 15:22:55 -07001509 xdev = xhci->devs[slot_id];
Matt Evans28ccd292011-03-29 13:40:46 +11001510 ep_index = TRB_TO_EP_ID(le32_to_cpu(event->flags)) - 1;
1511 ep_ring = xhci_dma_to_transfer_ring(ep, le64_to_cpu(event->buffer));
Andiry Xu4422da62010-07-22 15:22:55 -07001512 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001513 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
Andiry Xu4422da62010-07-22 15:22:55 -07001514
1515 if (skip)
1516 goto td_cleanup;
1517
1518 if (trb_comp_code == COMP_STOP_INVAL ||
1519 trb_comp_code == COMP_STOP) {
1520 /* The Endpoint Stop Command completion will take care of any
1521 * stopped TDs. A stopped TD may be restarted, so don't update
1522 * the ring dequeue pointer or take this TD off any lists yet.
1523 */
1524 ep->stopped_td = td;
1525 ep->stopped_trb = event_trb;
1526 return 0;
1527 } else {
1528 if (trb_comp_code == COMP_STALL) {
1529 /* The transfer is completed from the driver's
1530 * perspective, but we need to issue a set dequeue
1531 * command for this stalled endpoint to move the dequeue
1532 * pointer past the TD. We can't do that here because
1533 * the halt condition must be cleared first. Let the
1534 * USB class driver clear the stall later.
1535 */
1536 ep->stopped_td = td;
1537 ep->stopped_trb = event_trb;
1538 ep->stopped_stream = ep_ring->stream_id;
1539 } else if (xhci_requires_manual_halt_cleanup(xhci,
1540 ep_ctx, trb_comp_code)) {
1541 /* Other types of errors halt the endpoint, but the
1542 * class driver doesn't call usb_reset_endpoint() unless
1543 * the error is -EPIPE. Clear the halted status in the
1544 * xHCI hardware manually.
1545 */
1546 xhci_cleanup_halted_endpoint(xhci,
1547 slot_id, ep_index, ep_ring->stream_id,
1548 td, event_trb);
1549 } else {
1550 /* Update ring dequeue pointer */
1551 while (ep_ring->dequeue != td->last_trb)
1552 inc_deq(xhci, ep_ring, false);
1553 inc_deq(xhci, ep_ring, false);
1554 }
1555
1556td_cleanup:
1557 /* Clean up the endpoint's TD list */
1558 urb = td->urb;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001559 urb_priv = urb->hcpriv;
Andiry Xu4422da62010-07-22 15:22:55 -07001560
1561 /* Do one last check of the actual transfer length.
1562 * If the host controller said we transferred more data than
1563 * the buffer length, urb->actual_length will be a very big
1564 * number (since it's unsigned). Play it safe and say we didn't
1565 * transfer anything.
1566 */
1567 if (urb->actual_length > urb->transfer_buffer_length) {
1568 xhci_warn(xhci, "URB transfer length is wrong, "
1569 "xHC issue? req. len = %u, "
1570 "act. len = %u\n",
1571 urb->transfer_buffer_length,
1572 urb->actual_length);
1573 urb->actual_length = 0;
1574 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1575 *status = -EREMOTEIO;
1576 else
1577 *status = 0;
1578 }
1579 list_del(&td->td_list);
1580 /* Was this TD slated to be cancelled but completed anyway? */
1581 if (!list_empty(&td->cancelled_td_list))
1582 list_del(&td->cancelled_td_list);
1583
Andiry Xu8e51adc2010-07-22 15:23:31 -07001584 urb_priv->td_cnt++;
1585 /* Giveback the urb when all the tds are completed */
Andiry Xuc41136b2011-03-22 17:08:14 +08001586 if (urb_priv->td_cnt == urb_priv->length) {
Andiry Xu8e51adc2010-07-22 15:23:31 -07001587 ret = 1;
Andiry Xuc41136b2011-03-22 17:08:14 +08001588 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) {
1589 xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs--;
1590 if (xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs
1591 == 0) {
1592 if (xhci->quirks & XHCI_AMD_PLL_FIX)
1593 usb_amd_quirk_pll_enable();
1594 }
1595 }
1596 }
Andiry Xu4422da62010-07-22 15:22:55 -07001597 }
1598
1599 return ret;
1600}
1601
1602/*
Andiry Xu8af56be2010-07-22 15:23:03 -07001603 * Process control tds, update urb status and actual_length.
1604 */
1605static int process_ctrl_td(struct xhci_hcd *xhci, struct xhci_td *td,
1606 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1607 struct xhci_virt_ep *ep, int *status)
1608{
1609 struct xhci_virt_device *xdev;
1610 struct xhci_ring *ep_ring;
1611 unsigned int slot_id;
1612 int ep_index;
1613 struct xhci_ep_ctx *ep_ctx;
1614 u32 trb_comp_code;
1615
Matt Evans28ccd292011-03-29 13:40:46 +11001616 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->flags));
Andiry Xu8af56be2010-07-22 15:23:03 -07001617 xdev = xhci->devs[slot_id];
Matt Evans28ccd292011-03-29 13:40:46 +11001618 ep_index = TRB_TO_EP_ID(le32_to_cpu(event->flags)) - 1;
1619 ep_ring = xhci_dma_to_transfer_ring(ep, le64_to_cpu(event->buffer));
Andiry Xu8af56be2010-07-22 15:23:03 -07001620 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001621 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
Andiry Xu8af56be2010-07-22 15:23:03 -07001622
1623 xhci_debug_trb(xhci, xhci->event_ring->dequeue);
1624 switch (trb_comp_code) {
1625 case COMP_SUCCESS:
1626 if (event_trb == ep_ring->dequeue) {
1627 xhci_warn(xhci, "WARN: Success on ctrl setup TRB "
1628 "without IOC set??\n");
1629 *status = -ESHUTDOWN;
1630 } else if (event_trb != td->last_trb) {
1631 xhci_warn(xhci, "WARN: Success on ctrl data TRB "
1632 "without IOC set??\n");
1633 *status = -ESHUTDOWN;
1634 } else {
1635 xhci_dbg(xhci, "Successful control transfer!\n");
1636 *status = 0;
1637 }
1638 break;
1639 case COMP_SHORT_TX:
1640 xhci_warn(xhci, "WARN: short transfer on control ep\n");
1641 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1642 *status = -EREMOTEIO;
1643 else
1644 *status = 0;
1645 break;
Sarah Sharp3abeca92011-05-05 19:08:09 -07001646 case COMP_STOP_INVAL:
1647 case COMP_STOP:
1648 return finish_td(xhci, td, event_trb, event, ep, status, false);
Andiry Xu8af56be2010-07-22 15:23:03 -07001649 default:
1650 if (!xhci_requires_manual_halt_cleanup(xhci,
1651 ep_ctx, trb_comp_code))
1652 break;
1653 xhci_dbg(xhci, "TRB error code %u, "
1654 "halted endpoint index = %u\n",
1655 trb_comp_code, ep_index);
1656 /* else fall through */
1657 case COMP_STALL:
1658 /* Did we transfer part of the data (middle) phase? */
1659 if (event_trb != ep_ring->dequeue &&
1660 event_trb != td->last_trb)
1661 td->urb->actual_length =
1662 td->urb->transfer_buffer_length
Matt Evans28ccd292011-03-29 13:40:46 +11001663 - TRB_LEN(le32_to_cpu(event->transfer_len));
Andiry Xu8af56be2010-07-22 15:23:03 -07001664 else
1665 td->urb->actual_length = 0;
1666
1667 xhci_cleanup_halted_endpoint(xhci,
1668 slot_id, ep_index, 0, td, event_trb);
1669 return finish_td(xhci, td, event_trb, event, ep, status, true);
1670 }
1671 /*
1672 * Did we transfer any data, despite the errors that might have
1673 * happened? I.e. did we get past the setup stage?
1674 */
1675 if (event_trb != ep_ring->dequeue) {
1676 /* The event was for the status stage */
1677 if (event_trb == td->last_trb) {
1678 if (td->urb->actual_length != 0) {
1679 /* Don't overwrite a previously set error code
1680 */
1681 if ((*status == -EINPROGRESS || *status == 0) &&
1682 (td->urb->transfer_flags
1683 & URB_SHORT_NOT_OK))
1684 /* Did we already see a short data
1685 * stage? */
1686 *status = -EREMOTEIO;
1687 } else {
1688 td->urb->actual_length =
1689 td->urb->transfer_buffer_length;
1690 }
1691 } else {
1692 /* Maybe the event was for the data stage? */
Sarah Sharp3abeca92011-05-05 19:08:09 -07001693 td->urb->actual_length =
1694 td->urb->transfer_buffer_length -
1695 TRB_LEN(le32_to_cpu(event->transfer_len));
1696 xhci_dbg(xhci, "Waiting for status "
1697 "stage event\n");
1698 return 0;
Andiry Xu8af56be2010-07-22 15:23:03 -07001699 }
1700 }
1701
1702 return finish_td(xhci, td, event_trb, event, ep, status, false);
1703}
1704
1705/*
Andiry Xu04e51902010-07-22 15:23:39 -07001706 * Process isochronous tds, update urb packet status and actual_length.
1707 */
1708static int process_isoc_td(struct xhci_hcd *xhci, struct xhci_td *td,
1709 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1710 struct xhci_virt_ep *ep, int *status)
1711{
1712 struct xhci_ring *ep_ring;
1713 struct urb_priv *urb_priv;
1714 int idx;
1715 int len = 0;
Andiry Xu04e51902010-07-22 15:23:39 -07001716 union xhci_trb *cur_trb;
1717 struct xhci_segment *cur_seg;
Dmitry Torokhov926008c2011-03-23 20:47:05 -07001718 struct usb_iso_packet_descriptor *frame;
Andiry Xu04e51902010-07-22 15:23:39 -07001719 u32 trb_comp_code;
Dmitry Torokhov926008c2011-03-23 20:47:05 -07001720 bool skip_td = false;
Andiry Xu04e51902010-07-22 15:23:39 -07001721
Matt Evans28ccd292011-03-29 13:40:46 +11001722 ep_ring = xhci_dma_to_transfer_ring(ep, le64_to_cpu(event->buffer));
1723 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
Andiry Xu04e51902010-07-22 15:23:39 -07001724 urb_priv = td->urb->hcpriv;
1725 idx = urb_priv->td_cnt;
Dmitry Torokhov926008c2011-03-23 20:47:05 -07001726 frame = &td->urb->iso_frame_desc[idx];
Andiry Xu04e51902010-07-22 15:23:39 -07001727
Dmitry Torokhov926008c2011-03-23 20:47:05 -07001728 /* handle completion code */
1729 switch (trb_comp_code) {
1730 case COMP_SUCCESS:
1731 frame->status = 0;
1732 xhci_dbg(xhci, "Successful isoc transfer!\n");
1733 break;
1734 case COMP_SHORT_TX:
1735 frame->status = td->urb->transfer_flags & URB_SHORT_NOT_OK ?
1736 -EREMOTEIO : 0;
1737 break;
1738 case COMP_BW_OVER:
1739 frame->status = -ECOMM;
1740 skip_td = true;
1741 break;
1742 case COMP_BUFF_OVER:
1743 case COMP_BABBLE:
1744 frame->status = -EOVERFLOW;
1745 skip_td = true;
1746 break;
1747 case COMP_STALL:
1748 frame->status = -EPROTO;
1749 skip_td = true;
1750 break;
1751 case COMP_STOP:
1752 case COMP_STOP_INVAL:
1753 break;
1754 default:
1755 frame->status = -1;
1756 break;
Andiry Xu04e51902010-07-22 15:23:39 -07001757 }
1758
Dmitry Torokhov926008c2011-03-23 20:47:05 -07001759 if (trb_comp_code == COMP_SUCCESS || skip_td) {
1760 frame->actual_length = frame->length;
1761 td->urb->actual_length += frame->length;
Andiry Xu04e51902010-07-22 15:23:39 -07001762 } else {
1763 for (cur_trb = ep_ring->dequeue,
1764 cur_seg = ep_ring->deq_seg; cur_trb != event_trb;
1765 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
Matt Evans28ccd292011-03-29 13:40:46 +11001766 if ((le32_to_cpu(cur_trb->generic.field[3]) &
Andiry Xu04e51902010-07-22 15:23:39 -07001767 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_TR_NOOP) &&
Matt Evans28ccd292011-03-29 13:40:46 +11001768 (le32_to_cpu(cur_trb->generic.field[3]) &
Andiry Xu04e51902010-07-22 15:23:39 -07001769 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_LINK))
Matt Evans28ccd292011-03-29 13:40:46 +11001770 len += TRB_LEN(le32_to_cpu(cur_trb->generic.field[2]));
Andiry Xu04e51902010-07-22 15:23:39 -07001771 }
Matt Evans28ccd292011-03-29 13:40:46 +11001772 len += TRB_LEN(le32_to_cpu(cur_trb->generic.field[2])) -
1773 TRB_LEN(le32_to_cpu(event->transfer_len));
Andiry Xu04e51902010-07-22 15:23:39 -07001774
1775 if (trb_comp_code != COMP_STOP_INVAL) {
Dmitry Torokhov926008c2011-03-23 20:47:05 -07001776 frame->actual_length = len;
Andiry Xu04e51902010-07-22 15:23:39 -07001777 td->urb->actual_length += len;
1778 }
1779 }
1780
1781 if ((idx == urb_priv->length - 1) && *status == -EINPROGRESS)
1782 *status = 0;
1783
1784 return finish_td(xhci, td, event_trb, event, ep, status, false);
1785}
1786
Dmitry Torokhov926008c2011-03-23 20:47:05 -07001787static int skip_isoc_td(struct xhci_hcd *xhci, struct xhci_td *td,
1788 struct xhci_transfer_event *event,
1789 struct xhci_virt_ep *ep, int *status)
1790{
1791 struct xhci_ring *ep_ring;
1792 struct urb_priv *urb_priv;
1793 struct usb_iso_packet_descriptor *frame;
1794 int idx;
1795
1796 ep_ring = xhci_dma_to_transfer_ring(ep, event->buffer);
1797 urb_priv = td->urb->hcpriv;
1798 idx = urb_priv->td_cnt;
1799 frame = &td->urb->iso_frame_desc[idx];
1800
1801 /* The transfer is partly done */
1802 *status = -EXDEV;
1803 frame->status = -EXDEV;
1804
1805 /* calc actual length */
1806 frame->actual_length = 0;
1807
1808 /* Update ring dequeue pointer */
1809 while (ep_ring->dequeue != td->last_trb)
1810 inc_deq(xhci, ep_ring, false);
1811 inc_deq(xhci, ep_ring, false);
1812
1813 return finish_td(xhci, td, NULL, event, ep, status, true);
1814}
1815
Andiry Xu04e51902010-07-22 15:23:39 -07001816/*
Andiry Xu22405ed2010-07-22 15:23:08 -07001817 * Process bulk and interrupt tds, update urb status and actual_length.
1818 */
1819static int process_bulk_intr_td(struct xhci_hcd *xhci, struct xhci_td *td,
1820 union xhci_trb *event_trb, struct xhci_transfer_event *event,
1821 struct xhci_virt_ep *ep, int *status)
1822{
1823 struct xhci_ring *ep_ring;
1824 union xhci_trb *cur_trb;
1825 struct xhci_segment *cur_seg;
1826 u32 trb_comp_code;
1827
Matt Evans28ccd292011-03-29 13:40:46 +11001828 ep_ring = xhci_dma_to_transfer_ring(ep, le64_to_cpu(event->buffer));
1829 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
Andiry Xu22405ed2010-07-22 15:23:08 -07001830
1831 switch (trb_comp_code) {
1832 case COMP_SUCCESS:
1833 /* Double check that the HW transferred everything. */
1834 if (event_trb != td->last_trb) {
1835 xhci_warn(xhci, "WARN Successful completion "
1836 "on short TX\n");
1837 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1838 *status = -EREMOTEIO;
1839 else
1840 *status = 0;
1841 } else {
1842 if (usb_endpoint_xfer_bulk(&td->urb->ep->desc))
1843 xhci_dbg(xhci, "Successful bulk "
1844 "transfer!\n");
1845 else
1846 xhci_dbg(xhci, "Successful interrupt "
1847 "transfer!\n");
1848 *status = 0;
1849 }
1850 break;
1851 case COMP_SHORT_TX:
1852 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1853 *status = -EREMOTEIO;
1854 else
1855 *status = 0;
1856 break;
1857 default:
1858 /* Others already handled above */
1859 break;
1860 }
Andiry Xuf2c565e2010-12-20 17:12:24 +08001861 xhci_dbg(xhci, "ep %#x - asked for %d bytes, "
Andiry Xu22405ed2010-07-22 15:23:08 -07001862 "%d bytes untransferred\n",
1863 td->urb->ep->desc.bEndpointAddress,
1864 td->urb->transfer_buffer_length,
Matt Evans28ccd292011-03-29 13:40:46 +11001865 TRB_LEN(le32_to_cpu(event->transfer_len)));
Andiry Xu22405ed2010-07-22 15:23:08 -07001866 /* Fast path - was this the last TRB in the TD for this URB? */
1867 if (event_trb == td->last_trb) {
Matt Evans28ccd292011-03-29 13:40:46 +11001868 if (TRB_LEN(le32_to_cpu(event->transfer_len)) != 0) {
Andiry Xu22405ed2010-07-22 15:23:08 -07001869 td->urb->actual_length =
1870 td->urb->transfer_buffer_length -
Matt Evans28ccd292011-03-29 13:40:46 +11001871 TRB_LEN(le32_to_cpu(event->transfer_len));
Andiry Xu22405ed2010-07-22 15:23:08 -07001872 if (td->urb->transfer_buffer_length <
1873 td->urb->actual_length) {
1874 xhci_warn(xhci, "HC gave bad length "
1875 "of %d bytes left\n",
Matt Evans28ccd292011-03-29 13:40:46 +11001876 TRB_LEN(le32_to_cpu(event->transfer_len)));
Andiry Xu22405ed2010-07-22 15:23:08 -07001877 td->urb->actual_length = 0;
1878 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1879 *status = -EREMOTEIO;
1880 else
1881 *status = 0;
1882 }
1883 /* Don't overwrite a previously set error code */
1884 if (*status == -EINPROGRESS) {
1885 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
1886 *status = -EREMOTEIO;
1887 else
1888 *status = 0;
1889 }
1890 } else {
1891 td->urb->actual_length =
1892 td->urb->transfer_buffer_length;
1893 /* Ignore a short packet completion if the
1894 * untransferred length was zero.
1895 */
1896 if (*status == -EREMOTEIO)
1897 *status = 0;
1898 }
1899 } else {
1900 /* Slow path - walk the list, starting from the dequeue
1901 * pointer, to get the actual length transferred.
1902 */
1903 td->urb->actual_length = 0;
1904 for (cur_trb = ep_ring->dequeue, cur_seg = ep_ring->deq_seg;
1905 cur_trb != event_trb;
1906 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
Matt Evans28ccd292011-03-29 13:40:46 +11001907 if ((le32_to_cpu(cur_trb->generic.field[3]) &
Andiry Xu22405ed2010-07-22 15:23:08 -07001908 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_TR_NOOP) &&
Matt Evans28ccd292011-03-29 13:40:46 +11001909 (le32_to_cpu(cur_trb->generic.field[3]) &
Andiry Xu22405ed2010-07-22 15:23:08 -07001910 TRB_TYPE_BITMASK) != TRB_TYPE(TRB_LINK))
1911 td->urb->actual_length +=
Matt Evans28ccd292011-03-29 13:40:46 +11001912 TRB_LEN(le32_to_cpu(cur_trb->generic.field[2]));
Andiry Xu22405ed2010-07-22 15:23:08 -07001913 }
1914 /* If the ring didn't stop on a Link or No-op TRB, add
1915 * in the actual bytes transferred from the Normal TRB
1916 */
1917 if (trb_comp_code != COMP_STOP_INVAL)
1918 td->urb->actual_length +=
Matt Evans28ccd292011-03-29 13:40:46 +11001919 TRB_LEN(le32_to_cpu(cur_trb->generic.field[2])) -
1920 TRB_LEN(le32_to_cpu(event->transfer_len));
Andiry Xu22405ed2010-07-22 15:23:08 -07001921 }
1922
1923 return finish_td(xhci, td, event_trb, event, ep, status, false);
1924}
1925
1926/*
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001927 * If this function returns an error condition, it means it got a Transfer
1928 * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address.
1929 * At this point, the host controller is probably hosed and should be reset.
1930 */
1931static int handle_tx_event(struct xhci_hcd *xhci,
1932 struct xhci_transfer_event *event)
1933{
1934 struct xhci_virt_device *xdev;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001935 struct xhci_virt_ep *ep;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001936 struct xhci_ring *ep_ring;
Sarah Sharp82d10092009-08-07 14:04:52 -07001937 unsigned int slot_id;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001938 int ep_index;
Randy Dunlap326b4812010-04-19 08:53:50 -07001939 struct xhci_td *td = NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001940 dma_addr_t event_dma;
1941 struct xhci_segment *event_seg;
1942 union xhci_trb *event_trb;
Randy Dunlap326b4812010-04-19 08:53:50 -07001943 struct urb *urb = NULL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001944 int status = -EINPROGRESS;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001945 struct urb_priv *urb_priv;
John Yound115b042009-07-27 12:05:15 -07001946 struct xhci_ep_ctx *ep_ctx;
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001947 u32 trb_comp_code;
Andiry Xu4422da62010-07-22 15:22:55 -07001948 int ret = 0;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001949
Matt Evans28ccd292011-03-29 13:40:46 +11001950 slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->flags));
Sarah Sharp82d10092009-08-07 14:04:52 -07001951 xdev = xhci->devs[slot_id];
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001952 if (!xdev) {
1953 xhci_err(xhci, "ERROR Transfer event pointed to bad slot\n");
1954 return -ENODEV;
1955 }
1956
1957 /* Endpoint ID is 1 based, our index is zero based */
Matt Evans28ccd292011-03-29 13:40:46 +11001958 ep_index = TRB_TO_EP_ID(le32_to_cpu(event->flags)) - 1;
Sarah Sharp66e49d82009-07-27 12:03:46 -07001959 xhci_dbg(xhci, "%s - ep index = %d\n", __func__, ep_index);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001960 ep = &xdev->eps[ep_index];
Matt Evans28ccd292011-03-29 13:40:46 +11001961 ep_ring = xhci_dma_to_transfer_ring(ep, le64_to_cpu(event->buffer));
John Yound115b042009-07-27 12:05:15 -07001962 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
Andiry Xu986a92d2010-07-22 15:23:20 -07001963 if (!ep_ring ||
Matt Evans28ccd292011-03-29 13:40:46 +11001964 (le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK) ==
1965 EP_STATE_DISABLED) {
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001966 xhci_err(xhci, "ERROR Transfer event for disabled endpoint "
1967 "or incorrect stream ring\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001968 return -ENODEV;
1969 }
1970
Matt Evans28ccd292011-03-29 13:40:46 +11001971 event_dma = le64_to_cpu(event->buffer);
1972 trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
Andiry Xu986a92d2010-07-22 15:23:20 -07001973 /* Look for common error cases */
Sarah Sharp66d1eeb2009-08-27 14:35:53 -07001974 switch (trb_comp_code) {
Sarah Sharpb10de142009-04-27 19:58:50 -07001975 /* Skip codes that require special handling depending on
1976 * transfer type
1977 */
1978 case COMP_SUCCESS:
1979 case COMP_SHORT_TX:
1980 break;
Sarah Sharpae636742009-04-29 19:02:31 -07001981 case COMP_STOP:
1982 xhci_dbg(xhci, "Stopped on Transfer TRB\n");
1983 break;
1984 case COMP_STOP_INVAL:
1985 xhci_dbg(xhci, "Stopped on No-op or Link TRB\n");
1986 break;
Sarah Sharpb10de142009-04-27 19:58:50 -07001987 case COMP_STALL:
1988 xhci_warn(xhci, "WARN: Stalled endpoint\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001989 ep->ep_state |= EP_HALTED;
Sarah Sharpb10de142009-04-27 19:58:50 -07001990 status = -EPIPE;
1991 break;
1992 case COMP_TRB_ERR:
1993 xhci_warn(xhci, "WARN: TRB error on endpoint\n");
1994 status = -EILSEQ;
1995 break;
Sarah Sharpec74e402009-11-11 10:28:36 -08001996 case COMP_SPLIT_ERR:
Sarah Sharpb10de142009-04-27 19:58:50 -07001997 case COMP_TX_ERR:
1998 xhci_warn(xhci, "WARN: transfer error on endpoint\n");
1999 status = -EPROTO;
2000 break;
Sarah Sharp4a731432009-07-27 12:04:32 -07002001 case COMP_BABBLE:
2002 xhci_warn(xhci, "WARN: babble error on endpoint\n");
2003 status = -EOVERFLOW;
2004 break;
Sarah Sharpb10de142009-04-27 19:58:50 -07002005 case COMP_DB_ERR:
2006 xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n");
2007 status = -ENOSR;
2008 break;
Andiry Xu986a92d2010-07-22 15:23:20 -07002009 case COMP_BW_OVER:
2010 xhci_warn(xhci, "WARN: bandwidth overrun event on endpoint\n");
2011 break;
2012 case COMP_BUFF_OVER:
2013 xhci_warn(xhci, "WARN: buffer overrun event on endpoint\n");
2014 break;
2015 case COMP_UNDERRUN:
2016 /*
2017 * When the Isoch ring is empty, the xHC will generate
2018 * a Ring Overrun Event for IN Isoch endpoint or Ring
2019 * Underrun Event for OUT Isoch endpoint.
2020 */
2021 xhci_dbg(xhci, "underrun event on endpoint\n");
2022 if (!list_empty(&ep_ring->td_list))
2023 xhci_dbg(xhci, "Underrun Event for slot %d ep %d "
2024 "still with TDs queued?\n",
Matt Evans28ccd292011-03-29 13:40:46 +11002025 TRB_TO_SLOT_ID(le32_to_cpu(event->flags)),
2026 ep_index);
Andiry Xu986a92d2010-07-22 15:23:20 -07002027 goto cleanup;
2028 case COMP_OVERRUN:
2029 xhci_dbg(xhci, "overrun event on endpoint\n");
2030 if (!list_empty(&ep_ring->td_list))
2031 xhci_dbg(xhci, "Overrun Event for slot %d ep %d "
2032 "still with TDs queued?\n",
Matt Evans28ccd292011-03-29 13:40:46 +11002033 TRB_TO_SLOT_ID(le32_to_cpu(event->flags)),
2034 ep_index);
Andiry Xu986a92d2010-07-22 15:23:20 -07002035 goto cleanup;
Andiry Xud18240d2010-07-22 15:23:25 -07002036 case COMP_MISSED_INT:
2037 /*
2038 * When encounter missed service error, one or more isoc tds
2039 * may be missed by xHC.
2040 * Set skip flag of the ep_ring; Complete the missed tds as
2041 * short transfer when process the ep_ring next time.
2042 */
2043 ep->skip = true;
2044 xhci_dbg(xhci, "Miss service interval error, set skip flag\n");
2045 goto cleanup;
Sarah Sharpb10de142009-04-27 19:58:50 -07002046 default:
Sarah Sharpb45b5062009-12-09 15:59:06 -08002047 if (xhci_is_vendor_info_code(xhci, trb_comp_code)) {
Sarah Sharp5ad6a522009-11-11 10:28:40 -08002048 status = 0;
2049 break;
2050 }
Andiry Xu986a92d2010-07-22 15:23:20 -07002051 xhci_warn(xhci, "ERROR Unknown event condition, HC probably "
2052 "busted\n");
Sarah Sharpb10de142009-04-27 19:58:50 -07002053 goto cleanup;
2054 }
Andiry Xu986a92d2010-07-22 15:23:20 -07002055
Andiry Xud18240d2010-07-22 15:23:25 -07002056 do {
2057 /* This TRB should be in the TD at the head of this ring's
2058 * TD list.
2059 */
2060 if (list_empty(&ep_ring->td_list)) {
2061 xhci_warn(xhci, "WARN Event TRB for slot %d ep %d "
2062 "with no TDs queued?\n",
Matt Evans28ccd292011-03-29 13:40:46 +11002063 TRB_TO_SLOT_ID(le32_to_cpu(event->flags)),
2064 ep_index);
Andiry Xud18240d2010-07-22 15:23:25 -07002065 xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
Matt Evans28ccd292011-03-29 13:40:46 +11002066 (unsigned int) (le32_to_cpu(event->flags)
2067 & TRB_TYPE_BITMASK)>>10);
Andiry Xud18240d2010-07-22 15:23:25 -07002068 xhci_print_trb_offsets(xhci, (union xhci_trb *) event);
2069 if (ep->skip) {
2070 ep->skip = false;
2071 xhci_dbg(xhci, "td_list is empty while skip "
2072 "flag set. Clear skip flag.\n");
2073 }
2074 ret = 0;
2075 goto cleanup;
2076 }
Andiry Xu986a92d2010-07-22 15:23:20 -07002077
Andiry Xud18240d2010-07-22 15:23:25 -07002078 td = list_entry(ep_ring->td_list.next, struct xhci_td, td_list);
Dmitry Torokhov926008c2011-03-23 20:47:05 -07002079
Andiry Xud18240d2010-07-22 15:23:25 -07002080 /* Is this a TRB in the currently executing TD? */
2081 event_seg = trb_in_td(ep_ring->deq_seg, ep_ring->dequeue,
2082 td->last_trb, event_dma);
Dmitry Torokhov926008c2011-03-23 20:47:05 -07002083 if (!event_seg) {
2084 if (!ep->skip ||
2085 !usb_endpoint_xfer_isoc(&td->urb->ep->desc)) {
2086 /* HC is busted, give up! */
2087 xhci_err(xhci,
2088 "ERROR Transfer event TRB DMA ptr not "
2089 "part of current TD\n");
2090 return -ESHUTDOWN;
2091 }
2092
2093 ret = skip_isoc_td(xhci, td, event, ep, &status);
2094 goto cleanup;
2095 }
2096
2097 if (ep->skip) {
Andiry Xud18240d2010-07-22 15:23:25 -07002098 xhci_dbg(xhci, "Found td. Clear skip flag.\n");
2099 ep->skip = false;
2100 }
Andiry Xu986a92d2010-07-22 15:23:20 -07002101
Dmitry Torokhov926008c2011-03-23 20:47:05 -07002102 event_trb = &event_seg->trbs[(event_dma - event_seg->dma) /
2103 sizeof(*event_trb)];
2104 /*
2105 * No-op TRB should not trigger interrupts.
2106 * If event_trb is a no-op TRB, it means the
2107 * corresponding TD has been cancelled. Just ignore
2108 * the TD.
2109 */
Matt Evans28ccd292011-03-29 13:40:46 +11002110 if ((le32_to_cpu(event_trb->generic.field[3])
2111 & TRB_TYPE_BITMASK)
Dmitry Torokhov926008c2011-03-23 20:47:05 -07002112 == TRB_TYPE(TRB_TR_NOOP)) {
2113 xhci_dbg(xhci,
2114 "event_trb is a no-op TRB. Skip it\n");
2115 goto cleanup;
Andiry Xud18240d2010-07-22 15:23:25 -07002116 }
2117
2118 /* Now update the urb's actual_length and give back to
2119 * the core
2120 */
2121 if (usb_endpoint_xfer_control(&td->urb->ep->desc))
2122 ret = process_ctrl_td(xhci, td, event_trb, event, ep,
2123 &status);
Andiry Xu04e51902010-07-22 15:23:39 -07002124 else if (usb_endpoint_xfer_isoc(&td->urb->ep->desc))
2125 ret = process_isoc_td(xhci, td, event_trb, event, ep,
2126 &status);
Andiry Xud18240d2010-07-22 15:23:25 -07002127 else
2128 ret = process_bulk_intr_td(xhci, td, event_trb, event,
2129 ep, &status);
Andiry Xu4422da62010-07-22 15:22:55 -07002130
2131cleanup:
Andiry Xud18240d2010-07-22 15:23:25 -07002132 /*
2133 * Do not update event ring dequeue pointer if ep->skip is set.
2134 * Will roll back to continue process missed tds.
Sarah Sharp82d10092009-08-07 14:04:52 -07002135 */
Andiry Xud18240d2010-07-22 15:23:25 -07002136 if (trb_comp_code == COMP_MISSED_INT || !ep->skip) {
2137 inc_deq(xhci, xhci->event_ring, true);
Andiry Xud18240d2010-07-22 15:23:25 -07002138 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002139
Andiry Xud18240d2010-07-22 15:23:25 -07002140 if (ret) {
2141 urb = td->urb;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002142 urb_priv = urb->hcpriv;
Andiry Xud18240d2010-07-22 15:23:25 -07002143 /* Leave the TD around for the reset endpoint function
2144 * to use(but only if it's not a control endpoint,
2145 * since we already queued the Set TR dequeue pointer
2146 * command for stalled control endpoints).
2147 */
2148 if (usb_endpoint_xfer_control(&urb->ep->desc) ||
2149 (trb_comp_code != COMP_STALL &&
2150 trb_comp_code != COMP_BABBLE))
Andiry Xu8e51adc2010-07-22 15:23:31 -07002151 xhci_urb_free_priv(xhci, urb_priv);
Andiry Xud18240d2010-07-22 15:23:25 -07002152
Sarah Sharp214f76f2010-10-26 11:22:02 -07002153 usb_hcd_unlink_urb_from_ep(bus_to_hcd(urb->dev->bus), urb);
Andiry Xud18240d2010-07-22 15:23:25 -07002154 xhci_dbg(xhci, "Giveback URB %p, len = %d, "
2155 "status = %d\n",
2156 urb, urb->actual_length, status);
2157 spin_unlock(&xhci->lock);
Sarah Sharp214f76f2010-10-26 11:22:02 -07002158 usb_hcd_giveback_urb(bus_to_hcd(urb->dev->bus), urb, status);
Andiry Xud18240d2010-07-22 15:23:25 -07002159 spin_lock(&xhci->lock);
2160 }
2161
2162 /*
2163 * If ep->skip is set, it means there are missed tds on the
2164 * endpoint ring need to take care of.
2165 * Process them as short transfer until reach the td pointed by
2166 * the event.
2167 */
2168 } while (ep->skip && trb_comp_code != COMP_MISSED_INT);
2169
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002170 return 0;
2171}
2172
2173/*
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002174 * This function handles all OS-owned events on the event ring. It may drop
2175 * xhci->lock between event processing (e.g. to pass up port status changes).
Matt Evans9dee9a22011-03-29 13:41:02 +11002176 * Returns >0 for "possibly more events to process" (caller should call again),
2177 * otherwise 0 if done. In future, <0 returns should indicate error code.
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002178 */
Matt Evans9dee9a22011-03-29 13:41:02 +11002179static int xhci_handle_event(struct xhci_hcd *xhci)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002180{
2181 union xhci_trb *event;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002182 int update_ptrs = 1;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002183 int ret;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002184
Sarah Sharp66e49d82009-07-27 12:03:46 -07002185 xhci_dbg(xhci, "In %s\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002186 if (!xhci->event_ring || !xhci->event_ring->dequeue) {
2187 xhci->error_bitmask |= 1 << 1;
Matt Evans9dee9a22011-03-29 13:41:02 +11002188 return 0;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002189 }
2190
2191 event = xhci->event_ring->dequeue;
2192 /* Does the HC or OS own the TRB? */
Matt Evans28ccd292011-03-29 13:40:46 +11002193 if ((le32_to_cpu(event->event_cmd.flags) & TRB_CYCLE) !=
2194 xhci->event_ring->cycle_state) {
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002195 xhci->error_bitmask |= 1 << 2;
Matt Evans9dee9a22011-03-29 13:41:02 +11002196 return 0;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002197 }
Sarah Sharp66e49d82009-07-27 12:03:46 -07002198 xhci_dbg(xhci, "%s - OS owns TRB\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002199
Matt Evans92a3da42011-03-29 13:40:51 +11002200 /*
2201 * Barrier between reading the TRB_CYCLE (valid) flag above and any
2202 * speculative reads of the event's flags/data below.
2203 */
2204 rmb();
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002205 /* FIXME: Handle more event types. */
Matt Evans28ccd292011-03-29 13:40:46 +11002206 switch ((le32_to_cpu(event->event_cmd.flags) & TRB_TYPE_BITMASK)) {
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002207 case TRB_TYPE(TRB_COMPLETION):
Sarah Sharp66e49d82009-07-27 12:03:46 -07002208 xhci_dbg(xhci, "%s - calling handle_cmd_completion\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002209 handle_cmd_completion(xhci, &event->event_cmd);
Sarah Sharp66e49d82009-07-27 12:03:46 -07002210 xhci_dbg(xhci, "%s - returned from handle_cmd_completion\n", __func__);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002211 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002212 case TRB_TYPE(TRB_PORT_STATUS):
Sarah Sharp66e49d82009-07-27 12:03:46 -07002213 xhci_dbg(xhci, "%s - calling handle_port_status\n", __func__);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002214 handle_port_status(xhci, event);
Sarah Sharp66e49d82009-07-27 12:03:46 -07002215 xhci_dbg(xhci, "%s - returned from handle_port_status\n", __func__);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002216 update_ptrs = 0;
2217 break;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002218 case TRB_TYPE(TRB_TRANSFER):
Sarah Sharp66e49d82009-07-27 12:03:46 -07002219 xhci_dbg(xhci, "%s - calling handle_tx_event\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002220 ret = handle_tx_event(xhci, &event->trans_event);
Sarah Sharp66e49d82009-07-27 12:03:46 -07002221 xhci_dbg(xhci, "%s - returned from handle_tx_event\n", __func__);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002222 if (ret < 0)
2223 xhci->error_bitmask |= 1 << 9;
2224 else
2225 update_ptrs = 0;
2226 break;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002227 default:
Matt Evans28ccd292011-03-29 13:40:46 +11002228 if ((le32_to_cpu(event->event_cmd.flags) & TRB_TYPE_BITMASK) >=
2229 TRB_TYPE(48))
Sarah Sharp02386342010-05-24 13:25:28 -07002230 handle_vendor_event(xhci, event);
2231 else
2232 xhci->error_bitmask |= 1 << 3;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002233 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -07002234 /* Any of the above functions may drop and re-acquire the lock, so check
2235 * to make sure a watchdog timer didn't mark the host as non-responsive.
2236 */
2237 if (xhci->xhc_state & XHCI_STATE_DYING) {
2238 xhci_dbg(xhci, "xHCI host dying, returning from "
2239 "event handler.\n");
Matt Evans9dee9a22011-03-29 13:41:02 +11002240 return 0;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07002241 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002242
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002243 if (update_ptrs)
2244 /* Update SW event ring dequeue pointer */
Sarah Sharp0f2a7932009-04-27 19:57:12 -07002245 inc_deq(xhci, xhci->event_ring, true);
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002246
Matt Evans9dee9a22011-03-29 13:41:02 +11002247 /* Are there more items on the event ring? Caller will call us again to
2248 * check.
2249 */
2250 return 1;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002251}
Sarah Sharp9032cd52010-07-29 22:12:29 -07002252
2253/*
2254 * xHCI spec says we can get an interrupt, and if the HC has an error condition,
2255 * we might get bad data out of the event ring. Section 4.10.2.7 has a list of
2256 * indicators of an event TRB error, but we check the status *first* to be safe.
2257 */
2258irqreturn_t xhci_irq(struct usb_hcd *hcd)
2259{
2260 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharpc21599a2010-07-29 22:13:00 -07002261 u32 status;
Sarah Sharp9032cd52010-07-29 22:12:29 -07002262 union xhci_trb *trb;
Sarah Sharpbda53142010-07-29 22:12:38 -07002263 u64 temp_64;
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002264 union xhci_trb *event_ring_deq;
2265 dma_addr_t deq;
Sarah Sharp9032cd52010-07-29 22:12:29 -07002266
2267 spin_lock(&xhci->lock);
2268 trb = xhci->event_ring->dequeue;
2269 /* Check if the xHC generated the interrupt, or the irq is shared */
Sarah Sharp27e0dd42010-07-29 22:12:43 -07002270 status = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpc21599a2010-07-29 22:13:00 -07002271 if (status == 0xffffffff)
Sarah Sharp9032cd52010-07-29 22:12:29 -07002272 goto hw_died;
2273
Sarah Sharpc21599a2010-07-29 22:13:00 -07002274 if (!(status & STS_EINT)) {
Sarah Sharp9032cd52010-07-29 22:12:29 -07002275 spin_unlock(&xhci->lock);
Sarah Sharp9032cd52010-07-29 22:12:29 -07002276 return IRQ_NONE;
2277 }
Sarah Sharp27e0dd42010-07-29 22:12:43 -07002278 xhci_dbg(xhci, "op reg status = %08x\n", status);
Sarah Sharp9032cd52010-07-29 22:12:29 -07002279 xhci_dbg(xhci, "Event ring dequeue ptr:\n");
2280 xhci_dbg(xhci, "@%llx %08x %08x %08x %08x\n",
Matt Evans28ccd292011-03-29 13:40:46 +11002281 (unsigned long long)
2282 xhci_trb_virt_to_dma(xhci->event_ring->deq_seg, trb),
2283 lower_32_bits(le64_to_cpu(trb->link.segment_ptr)),
2284 upper_32_bits(le64_to_cpu(trb->link.segment_ptr)),
2285 (unsigned int) le32_to_cpu(trb->link.intr_target),
2286 (unsigned int) le32_to_cpu(trb->link.control));
Sarah Sharp9032cd52010-07-29 22:12:29 -07002287
Sarah Sharp27e0dd42010-07-29 22:12:43 -07002288 if (status & STS_FATAL) {
Sarah Sharp9032cd52010-07-29 22:12:29 -07002289 xhci_warn(xhci, "WARNING: Host System Error\n");
2290 xhci_halt(xhci);
2291hw_died:
Sarah Sharp9032cd52010-07-29 22:12:29 -07002292 spin_unlock(&xhci->lock);
2293 return -ESHUTDOWN;
2294 }
2295
Sarah Sharpbda53142010-07-29 22:12:38 -07002296 /*
2297 * Clear the op reg interrupt status first,
2298 * so we can receive interrupts from other MSI-X interrupters.
2299 * Write 1 to clear the interrupt status.
2300 */
Sarah Sharp27e0dd42010-07-29 22:12:43 -07002301 status |= STS_EINT;
2302 xhci_writel(xhci, status, &xhci->op_regs->status);
Sarah Sharpbda53142010-07-29 22:12:38 -07002303 /* FIXME when MSI-X is supported and there are multiple vectors */
2304 /* Clear the MSI-X event interrupt status */
2305
Sarah Sharpc21599a2010-07-29 22:13:00 -07002306 if (hcd->irq != -1) {
2307 u32 irq_pending;
2308 /* Acknowledge the PCI interrupt */
2309 irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
2310 irq_pending |= 0x3;
2311 xhci_writel(xhci, irq_pending, &xhci->ir_set->irq_pending);
2312 }
Sarah Sharpbda53142010-07-29 22:12:38 -07002313
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002314 if (xhci->xhc_state & XHCI_STATE_DYING) {
Sarah Sharpbda53142010-07-29 22:12:38 -07002315 xhci_dbg(xhci, "xHCI dying, ignoring interrupt. "
2316 "Shouldn't IRQs be disabled?\n");
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002317 /* Clear the event handler busy flag (RW1C);
2318 * the event ring should be empty.
Sarah Sharpbda53142010-07-29 22:12:38 -07002319 */
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002320 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
2321 xhci_write_64(xhci, temp_64 | ERST_EHB,
2322 &xhci->ir_set->erst_dequeue);
2323 spin_unlock(&xhci->lock);
2324
2325 return IRQ_HANDLED;
2326 }
2327
2328 event_ring_deq = xhci->event_ring->dequeue;
2329 /* FIXME this should be a delayed service routine
2330 * that clears the EHB.
2331 */
Matt Evans9dee9a22011-03-29 13:41:02 +11002332 while (xhci_handle_event(xhci) > 0) {}
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002333
2334 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
2335 /* If necessary, update the HW's version of the event ring deq ptr. */
2336 if (event_ring_deq != xhci->event_ring->dequeue) {
2337 deq = xhci_trb_virt_to_dma(xhci->event_ring->deq_seg,
2338 xhci->event_ring->dequeue);
2339 if (deq == 0)
2340 xhci_warn(xhci, "WARN something wrong with SW event "
2341 "ring dequeue ptr.\n");
2342 /* Update HC event ring dequeue pointer */
2343 temp_64 &= ERST_PTR_MASK;
2344 temp_64 |= ((u64) deq & (u64) ~ERST_PTR_MASK);
2345 }
Sarah Sharpbda53142010-07-29 22:12:38 -07002346
2347 /* Clear the event handler busy flag (RW1C); event ring is empty. */
Sarah Sharpc06d68b2010-07-29 22:12:49 -07002348 temp_64 |= ERST_EHB;
2349 xhci_write_64(xhci, temp_64, &xhci->ir_set->erst_dequeue);
2350
Sarah Sharp9032cd52010-07-29 22:12:29 -07002351 spin_unlock(&xhci->lock);
2352
2353 return IRQ_HANDLED;
2354}
2355
2356irqreturn_t xhci_msi_irq(int irq, struct usb_hcd *hcd)
2357{
2358 irqreturn_t ret;
Sarah Sharpb3209372011-03-07 11:24:07 -08002359 struct xhci_hcd *xhci;
Sarah Sharp9032cd52010-07-29 22:12:29 -07002360
Sarah Sharpb3209372011-03-07 11:24:07 -08002361 xhci = hcd_to_xhci(hcd);
Sarah Sharp9032cd52010-07-29 22:12:29 -07002362 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
Sarah Sharpb3209372011-03-07 11:24:07 -08002363 if (xhci->shared_hcd)
2364 set_bit(HCD_FLAG_SAW_IRQ, &xhci->shared_hcd->flags);
Sarah Sharp9032cd52010-07-29 22:12:29 -07002365
2366 ret = xhci_irq(hcd);
2367
2368 return ret;
2369}
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002370
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002371/**** Endpoint Ring Operations ****/
2372
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002373/*
2374 * Generic function for queueing a TRB on a ring.
2375 * The caller must have checked to make sure there's room on the ring.
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002376 *
2377 * @more_trbs_coming: Will you enqueue more TRBs before calling
2378 * prepare_transfer()?
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002379 */
2380static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002381 bool consumer, bool more_trbs_coming,
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002382 u32 field1, u32 field2, u32 field3, u32 field4)
2383{
2384 struct xhci_generic_trb *trb;
2385
2386 trb = &ring->enqueue->generic;
Matt Evans28ccd292011-03-29 13:40:46 +11002387 trb->field[0] = cpu_to_le32(field1);
2388 trb->field[1] = cpu_to_le32(field2);
2389 trb->field[2] = cpu_to_le32(field3);
2390 trb->field[3] = cpu_to_le32(field4);
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002391 inc_enq(xhci, ring, consumer, more_trbs_coming);
Sarah Sharp7f84eef2009-04-27 19:53:56 -07002392}
2393
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002394/*
2395 * Does various checks on the endpoint ring, and makes it ready to queue num_trbs.
2396 * FIXME allocate segments if the ring is full.
2397 */
2398static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
2399 u32 ep_state, unsigned int num_trbs, gfp_t mem_flags)
2400{
2401 /* Make sure the endpoint has been added to xHC schedule */
2402 xhci_dbg(xhci, "Endpoint state = 0x%x\n", ep_state);
2403 switch (ep_state) {
2404 case EP_STATE_DISABLED:
2405 /*
2406 * USB core changed config/interfaces without notifying us,
2407 * or hardware is reporting the wrong state.
2408 */
2409 xhci_warn(xhci, "WARN urb submitted to disabled ep\n");
2410 return -ENOENT;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002411 case EP_STATE_ERROR:
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002412 xhci_warn(xhci, "WARN waiting for error on ep to be cleared\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002413 /* FIXME event handling code for error needs to clear it */
2414 /* XXX not sure if this should be -ENOENT or not */
2415 return -EINVAL;
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002416 case EP_STATE_HALTED:
2417 xhci_dbg(xhci, "WARN halted endpoint, queueing URB anyway.\n");
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002418 case EP_STATE_STOPPED:
2419 case EP_STATE_RUNNING:
2420 break;
2421 default:
2422 xhci_err(xhci, "ERROR unknown endpoint state for ep\n");
2423 /*
2424 * FIXME issue Configure Endpoint command to try to get the HC
2425 * back into a known state.
2426 */
2427 return -EINVAL;
2428 }
2429 if (!room_on_ring(xhci, ep_ring, num_trbs)) {
2430 /* FIXME allocate more room */
2431 xhci_err(xhci, "ERROR no room on ep ring\n");
2432 return -ENOMEM;
2433 }
John Youn6c12db92010-05-10 15:33:00 -07002434
2435 if (enqueue_is_link_trb(ep_ring)) {
2436 struct xhci_ring *ring = ep_ring;
2437 union xhci_trb *next;
John Youn6c12db92010-05-10 15:33:00 -07002438
2439 xhci_dbg(xhci, "prepare_ring: pointing to link trb\n");
2440 next = ring->enqueue;
2441
2442 while (last_trb(xhci, ring, ring->enq_seg, next)) {
John Youn6c12db92010-05-10 15:33:00 -07002443 /* If we're not dealing with 0.95 hardware,
2444 * clear the chain bit.
2445 */
2446 if (!xhci_link_trb_quirk(xhci))
Matt Evans28ccd292011-03-29 13:40:46 +11002447 next->link.control &= cpu_to_le32(~TRB_CHAIN);
John Youn6c12db92010-05-10 15:33:00 -07002448 else
Matt Evans28ccd292011-03-29 13:40:46 +11002449 next->link.control |= cpu_to_le32(TRB_CHAIN);
John Youn6c12db92010-05-10 15:33:00 -07002450
2451 wmb();
Matt Evans28ccd292011-03-29 13:40:46 +11002452 next->link.control ^= cpu_to_le32((u32) TRB_CYCLE);
John Youn6c12db92010-05-10 15:33:00 -07002453
2454 /* Toggle the cycle bit after the last ring segment. */
2455 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
2456 ring->cycle_state = (ring->cycle_state ? 0 : 1);
2457 if (!in_interrupt()) {
2458 xhci_dbg(xhci, "queue_trb: Toggle cycle "
2459 "state for ring %p = %i\n",
2460 ring, (unsigned int)ring->cycle_state);
2461 }
2462 }
2463 ring->enq_seg = ring->enq_seg->next;
2464 ring->enqueue = ring->enq_seg->trbs;
2465 next = ring->enqueue;
2466 }
2467 }
2468
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002469 return 0;
2470}
2471
Sarah Sharp23e3be12009-04-29 19:05:20 -07002472static int prepare_transfer(struct xhci_hcd *xhci,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002473 struct xhci_virt_device *xdev,
2474 unsigned int ep_index,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002475 unsigned int stream_id,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002476 unsigned int num_trbs,
2477 struct urb *urb,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002478 unsigned int td_index,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002479 gfp_t mem_flags)
2480{
2481 int ret;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002482 struct urb_priv *urb_priv;
2483 struct xhci_td *td;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002484 struct xhci_ring *ep_ring;
John Yound115b042009-07-27 12:05:15 -07002485 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002486
2487 ep_ring = xhci_stream_id_to_ring(xdev, ep_index, stream_id);
2488 if (!ep_ring) {
2489 xhci_dbg(xhci, "Can't prepare ring for bad stream ID %u\n",
2490 stream_id);
2491 return -EINVAL;
2492 }
2493
2494 ret = prepare_ring(xhci, ep_ring,
Matt Evans28ccd292011-03-29 13:40:46 +11002495 le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK,
2496 num_trbs, mem_flags);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002497 if (ret)
2498 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002499
Andiry Xu8e51adc2010-07-22 15:23:31 -07002500 urb_priv = urb->hcpriv;
2501 td = urb_priv->td[td_index];
2502
2503 INIT_LIST_HEAD(&td->td_list);
2504 INIT_LIST_HEAD(&td->cancelled_td_list);
2505
2506 if (td_index == 0) {
Sarah Sharp214f76f2010-10-26 11:22:02 -07002507 ret = usb_hcd_link_urb_to_ep(bus_to_hcd(urb->dev->bus), urb);
Andiry Xu8e51adc2010-07-22 15:23:31 -07002508 if (unlikely(ret)) {
2509 xhci_urb_free_priv(xhci, urb_priv);
2510 urb->hcpriv = NULL;
2511 return ret;
2512 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002513 }
2514
Andiry Xu8e51adc2010-07-22 15:23:31 -07002515 td->urb = urb;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002516 /* Add this TD to the tail of the endpoint ring's TD list */
Andiry Xu8e51adc2010-07-22 15:23:31 -07002517 list_add_tail(&td->td_list, &ep_ring->td_list);
2518 td->start_seg = ep_ring->enq_seg;
2519 td->first_trb = ep_ring->enqueue;
2520
2521 urb_priv->td[td_index] = td;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002522
2523 return 0;
2524}
2525
Sarah Sharp23e3be12009-04-29 19:05:20 -07002526static unsigned int count_sg_trbs_needed(struct xhci_hcd *xhci, struct urb *urb)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002527{
2528 int num_sgs, num_trbs, running_total, temp, i;
2529 struct scatterlist *sg;
2530
2531 sg = NULL;
2532 num_sgs = urb->num_sgs;
2533 temp = urb->transfer_buffer_length;
2534
2535 xhci_dbg(xhci, "count sg list trbs: \n");
2536 num_trbs = 0;
Matthew Wilcox910f8d02010-05-01 12:20:01 -06002537 for_each_sg(urb->sg, sg, num_sgs, i) {
Sarah Sharp8a96c052009-04-27 19:59:19 -07002538 unsigned int previous_total_trbs = num_trbs;
2539 unsigned int len = sg_dma_len(sg);
2540
2541 /* Scatter gather list entries may cross 64KB boundaries */
2542 running_total = TRB_MAX_BUFF_SIZE -
Paul Zimmermana2490182011-02-12 14:06:44 -08002543 (sg_dma_address(sg) & (TRB_MAX_BUFF_SIZE - 1));
Paul Zimmerman58077952011-02-12 14:07:20 -08002544 running_total &= TRB_MAX_BUFF_SIZE - 1;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002545 if (running_total != 0)
2546 num_trbs++;
2547
2548 /* How many more 64KB chunks to transfer, how many more TRBs? */
Paul Zimmermanbcd2fde2011-02-12 14:07:57 -08002549 while (running_total < sg_dma_len(sg) && running_total < temp) {
Sarah Sharp8a96c052009-04-27 19:59:19 -07002550 num_trbs++;
2551 running_total += TRB_MAX_BUFF_SIZE;
2552 }
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002553 xhci_dbg(xhci, " sg #%d: dma = %#llx, len = %#x (%d), num_trbs = %d\n",
2554 i, (unsigned long long)sg_dma_address(sg),
2555 len, len, num_trbs - previous_total_trbs);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002556
2557 len = min_t(int, len, temp);
2558 temp -= len;
2559 if (temp == 0)
2560 break;
2561 }
2562 xhci_dbg(xhci, "\n");
2563 if (!in_interrupt())
Andiry Xuf2c565e2010-12-20 17:12:24 +08002564 xhci_dbg(xhci, "ep %#x - urb len = %d, sglist used, "
2565 "num_trbs = %d\n",
Sarah Sharp8a96c052009-04-27 19:59:19 -07002566 urb->ep->desc.bEndpointAddress,
2567 urb->transfer_buffer_length,
2568 num_trbs);
2569 return num_trbs;
2570}
2571
Sarah Sharp23e3be12009-04-29 19:05:20 -07002572static void check_trb_math(struct urb *urb, int num_trbs, int running_total)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002573{
2574 if (num_trbs != 0)
Paul Zimmermana2490182011-02-12 14:06:44 -08002575 dev_err(&urb->dev->dev, "%s - ep %#x - Miscalculated number of "
Sarah Sharp8a96c052009-04-27 19:59:19 -07002576 "TRBs, %d left\n", __func__,
2577 urb->ep->desc.bEndpointAddress, num_trbs);
2578 if (running_total != urb->transfer_buffer_length)
Paul Zimmermana2490182011-02-12 14:06:44 -08002579 dev_err(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, "
Sarah Sharp8a96c052009-04-27 19:59:19 -07002580 "queued %#x (%d), asked for %#x (%d)\n",
2581 __func__,
2582 urb->ep->desc.bEndpointAddress,
2583 running_total, running_total,
2584 urb->transfer_buffer_length,
2585 urb->transfer_buffer_length);
2586}
2587
Sarah Sharp23e3be12009-04-29 19:05:20 -07002588static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002589 unsigned int ep_index, unsigned int stream_id, int start_cycle,
Andiry Xue1eab2e2011-01-04 16:30:39 -08002590 struct xhci_generic_trb *start_trb)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002591{
Sarah Sharp8a96c052009-04-27 19:59:19 -07002592 /*
2593 * Pass all the TRBs to the hardware at once and make sure this write
2594 * isn't reordered.
2595 */
2596 wmb();
Andiry Xu50f7b522010-12-20 15:09:34 +08002597 if (start_cycle)
Matt Evans28ccd292011-03-29 13:40:46 +11002598 start_trb->field[3] |= cpu_to_le32(start_cycle);
Andiry Xu50f7b522010-12-20 15:09:34 +08002599 else
Matt Evans28ccd292011-03-29 13:40:46 +11002600 start_trb->field[3] &= cpu_to_le32(~TRB_CYCLE);
Andiry Xube88fe42010-10-14 07:22:57 -07002601 xhci_ring_ep_doorbell(xhci, slot_id, ep_index, stream_id);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002602}
2603
Sarah Sharp624defa2009-09-02 12:14:28 -07002604/*
2605 * xHCI uses normal TRBs for both bulk and interrupt. When the interrupt
2606 * endpoint is to be serviced, the xHC will consume (at most) one TD. A TD
2607 * (comprised of sg list entries) can take several service intervals to
2608 * transmit.
2609 */
2610int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
2611 struct urb *urb, int slot_id, unsigned int ep_index)
2612{
2613 struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci,
2614 xhci->devs[slot_id]->out_ctx, ep_index);
2615 int xhci_interval;
2616 int ep_interval;
2617
Matt Evans28ccd292011-03-29 13:40:46 +11002618 xhci_interval = EP_INTERVAL_TO_UFRAMES(le32_to_cpu(ep_ctx->ep_info));
Sarah Sharp624defa2009-09-02 12:14:28 -07002619 ep_interval = urb->interval;
2620 /* Convert to microframes */
2621 if (urb->dev->speed == USB_SPEED_LOW ||
2622 urb->dev->speed == USB_SPEED_FULL)
2623 ep_interval *= 8;
2624 /* FIXME change this to a warning and a suggestion to use the new API
2625 * to set the polling interval (once the API is added).
2626 */
2627 if (xhci_interval != ep_interval) {
Andiry Xu7961acd2010-12-20 17:14:20 +08002628 if (printk_ratelimit())
Sarah Sharp624defa2009-09-02 12:14:28 -07002629 dev_dbg(&urb->dev->dev, "Driver uses different interval"
2630 " (%d microframe%s) than xHCI "
2631 "(%d microframe%s)\n",
2632 ep_interval,
2633 ep_interval == 1 ? "" : "s",
2634 xhci_interval,
2635 xhci_interval == 1 ? "" : "s");
2636 urb->interval = xhci_interval;
2637 /* Convert back to frames for LS/FS devices */
2638 if (urb->dev->speed == USB_SPEED_LOW ||
2639 urb->dev->speed == USB_SPEED_FULL)
2640 urb->interval /= 8;
2641 }
2642 return xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
2643}
2644
Sarah Sharp04dd9502009-11-11 10:28:30 -08002645/*
2646 * The TD size is the number of bytes remaining in the TD (including this TRB),
2647 * right shifted by 10.
2648 * It must fit in bits 21:17, so it can't be bigger than 31.
2649 */
2650static u32 xhci_td_remainder(unsigned int remainder)
2651{
2652 u32 max = (1 << (21 - 17 + 1)) - 1;
2653
2654 if ((remainder >> 10) >= max)
2655 return max << 17;
2656 else
2657 return (remainder >> 10) << 17;
2658}
2659
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07002660/*
2661 * For xHCI 1.0 host controllers, TD size is the number of packets remaining in
2662 * the TD (*not* including this TRB).
2663 *
2664 * Total TD packet count = total_packet_count =
2665 * roundup(TD size in bytes / wMaxPacketSize)
2666 *
2667 * Packets transferred up to and including this TRB = packets_transferred =
2668 * rounddown(total bytes transferred including this TRB / wMaxPacketSize)
2669 *
2670 * TD size = total_packet_count - packets_transferred
2671 *
2672 * It must fit in bits 21:17, so it can't be bigger than 31.
2673 */
2674
2675static u32 xhci_v1_0_td_remainder(int running_total, int trb_buff_len,
2676 unsigned int total_packet_count, struct urb *urb)
2677{
2678 int packets_transferred;
2679
2680 /* All the TRB queueing functions don't count the current TRB in
2681 * running_total.
2682 */
2683 packets_transferred = (running_total + trb_buff_len) /
2684 le16_to_cpu(urb->ep->desc.wMaxPacketSize);
2685
2686 return xhci_td_remainder(total_packet_count - packets_transferred);
2687}
2688
Sarah Sharp23e3be12009-04-29 19:05:20 -07002689static int queue_bulk_sg_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002690 struct urb *urb, int slot_id, unsigned int ep_index)
2691{
2692 struct xhci_ring *ep_ring;
2693 unsigned int num_trbs;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002694 struct urb_priv *urb_priv;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002695 struct xhci_td *td;
2696 struct scatterlist *sg;
2697 int num_sgs;
2698 int trb_buff_len, this_sg_len, running_total;
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07002699 unsigned int total_packet_count;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002700 bool first_trb;
2701 u64 addr;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002702 bool more_trbs_coming;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002703
2704 struct xhci_generic_trb *start_trb;
2705 int start_cycle;
2706
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002707 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2708 if (!ep_ring)
2709 return -EINVAL;
2710
Sarah Sharp8a96c052009-04-27 19:59:19 -07002711 num_trbs = count_sg_trbs_needed(xhci, urb);
2712 num_sgs = urb->num_sgs;
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07002713 total_packet_count = roundup(urb->transfer_buffer_length,
2714 le16_to_cpu(urb->ep->desc.wMaxPacketSize));
Sarah Sharp8a96c052009-04-27 19:59:19 -07002715
Sarah Sharp23e3be12009-04-29 19:05:20 -07002716 trb_buff_len = prepare_transfer(xhci, xhci->devs[slot_id],
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002717 ep_index, urb->stream_id,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002718 num_trbs, urb, 0, mem_flags);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002719 if (trb_buff_len < 0)
2720 return trb_buff_len;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002721
2722 urb_priv = urb->hcpriv;
2723 td = urb_priv->td[0];
2724
Sarah Sharp8a96c052009-04-27 19:59:19 -07002725 /*
2726 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2727 * until we've finished creating all the other TRBs. The ring's cycle
2728 * state may change as we enqueue the other TRBs, so save it too.
2729 */
2730 start_trb = &ep_ring->enqueue->generic;
2731 start_cycle = ep_ring->cycle_state;
2732
2733 running_total = 0;
2734 /*
2735 * How much data is in the first TRB?
2736 *
2737 * There are three forces at work for TRB buffer pointers and lengths:
2738 * 1. We don't want to walk off the end of this sg-list entry buffer.
2739 * 2. The transfer length that the driver requested may be smaller than
2740 * the amount of memory allocated for this scatter-gather list.
2741 * 3. TRBs buffers can't cross 64KB boundaries.
2742 */
Matthew Wilcox910f8d02010-05-01 12:20:01 -06002743 sg = urb->sg;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002744 addr = (u64) sg_dma_address(sg);
2745 this_sg_len = sg_dma_len(sg);
Paul Zimmermana2490182011-02-12 14:06:44 -08002746 trb_buff_len = TRB_MAX_BUFF_SIZE - (addr & (TRB_MAX_BUFF_SIZE - 1));
Sarah Sharp8a96c052009-04-27 19:59:19 -07002747 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2748 if (trb_buff_len > urb->transfer_buffer_length)
2749 trb_buff_len = urb->transfer_buffer_length;
2750 xhci_dbg(xhci, "First length to xfer from 1st sglist entry = %u\n",
2751 trb_buff_len);
2752
2753 first_trb = true;
2754 /* Queue the first TRB, even if it's zero-length */
2755 do {
2756 u32 field = 0;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002757 u32 length_field = 0;
Sarah Sharp04dd9502009-11-11 10:28:30 -08002758 u32 remainder = 0;
Sarah Sharp8a96c052009-04-27 19:59:19 -07002759
2760 /* Don't change the cycle bit of the first TRB until later */
Andiry Xu50f7b522010-12-20 15:09:34 +08002761 if (first_trb) {
Sarah Sharp8a96c052009-04-27 19:59:19 -07002762 first_trb = false;
Andiry Xu50f7b522010-12-20 15:09:34 +08002763 if (start_cycle == 0)
2764 field |= 0x1;
2765 } else
Sarah Sharp8a96c052009-04-27 19:59:19 -07002766 field |= ep_ring->cycle_state;
2767
2768 /* Chain all the TRBs together; clear the chain bit in the last
2769 * TRB to indicate it's the last TRB in the chain.
2770 */
2771 if (num_trbs > 1) {
2772 field |= TRB_CHAIN;
2773 } else {
2774 /* FIXME - add check for ZERO_PACKET flag before this */
2775 td->last_trb = ep_ring->enqueue;
2776 field |= TRB_IOC;
2777 }
Sarah Sharpaf8b9e62011-03-23 16:26:26 -07002778
2779 /* Only set interrupt on short packet for IN endpoints */
2780 if (usb_urb_dir_in(urb))
2781 field |= TRB_ISP;
2782
Sarah Sharp8a96c052009-04-27 19:59:19 -07002783 xhci_dbg(xhci, " sg entry: dma = %#x, len = %#x (%d), "
2784 "64KB boundary at %#x, end dma = %#x\n",
2785 (unsigned int) addr, trb_buff_len, trb_buff_len,
2786 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2787 (unsigned int) addr + trb_buff_len);
2788 if (TRB_MAX_BUFF_SIZE -
Paul Zimmermana2490182011-02-12 14:06:44 -08002789 (addr & (TRB_MAX_BUFF_SIZE - 1)) < trb_buff_len) {
Sarah Sharp8a96c052009-04-27 19:59:19 -07002790 xhci_warn(xhci, "WARN: sg dma xfer crosses 64KB boundaries!\n");
2791 xhci_dbg(xhci, "Next boundary at %#x, end dma = %#x\n",
2792 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
2793 (unsigned int) addr + trb_buff_len);
2794 }
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07002795
2796 /* Set the TRB length, TD size, and interrupter fields. */
2797 if (xhci->hci_version < 0x100) {
2798 remainder = xhci_td_remainder(
2799 urb->transfer_buffer_length -
2800 running_total);
2801 } else {
2802 remainder = xhci_v1_0_td_remainder(running_total,
2803 trb_buff_len, total_packet_count, urb);
2804 }
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002805 length_field = TRB_LEN(trb_buff_len) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002806 remainder |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002807 TRB_INTR_TARGET(0);
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07002808
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002809 if (num_trbs > 1)
2810 more_trbs_coming = true;
2811 else
2812 more_trbs_coming = false;
2813 queue_trb(xhci, ep_ring, false, more_trbs_coming,
Sarah Sharp8e595a52009-07-27 12:03:31 -07002814 lower_32_bits(addr),
2815 upper_32_bits(addr),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002816 length_field,
Sarah Sharpaf8b9e62011-03-23 16:26:26 -07002817 field | TRB_TYPE(TRB_NORMAL));
Sarah Sharp8a96c052009-04-27 19:59:19 -07002818 --num_trbs;
2819 running_total += trb_buff_len;
2820
2821 /* Calculate length for next transfer --
2822 * Are we done queueing all the TRBs for this sg entry?
2823 */
2824 this_sg_len -= trb_buff_len;
2825 if (this_sg_len == 0) {
2826 --num_sgs;
2827 if (num_sgs == 0)
2828 break;
2829 sg = sg_next(sg);
2830 addr = (u64) sg_dma_address(sg);
2831 this_sg_len = sg_dma_len(sg);
2832 } else {
2833 addr += trb_buff_len;
2834 }
2835
2836 trb_buff_len = TRB_MAX_BUFF_SIZE -
Paul Zimmermana2490182011-02-12 14:06:44 -08002837 (addr & (TRB_MAX_BUFF_SIZE - 1));
Sarah Sharp8a96c052009-04-27 19:59:19 -07002838 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
2839 if (running_total + trb_buff_len > urb->transfer_buffer_length)
2840 trb_buff_len =
2841 urb->transfer_buffer_length - running_total;
2842 } while (running_total < urb->transfer_buffer_length);
2843
2844 check_trb_math(urb, num_trbs, running_total);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002845 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
Andiry Xue1eab2e2011-01-04 16:30:39 -08002846 start_cycle, start_trb);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002847 return 0;
2848}
2849
Sarah Sharpb10de142009-04-27 19:58:50 -07002850/* This is very similar to what ehci-q.c qtd_fill() does */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002851int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharpb10de142009-04-27 19:58:50 -07002852 struct urb *urb, int slot_id, unsigned int ep_index)
2853{
2854 struct xhci_ring *ep_ring;
Andiry Xu8e51adc2010-07-22 15:23:31 -07002855 struct urb_priv *urb_priv;
Sarah Sharpb10de142009-04-27 19:58:50 -07002856 struct xhci_td *td;
2857 int num_trbs;
2858 struct xhci_generic_trb *start_trb;
2859 bool first_trb;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002860 bool more_trbs_coming;
Sarah Sharpb10de142009-04-27 19:58:50 -07002861 int start_cycle;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002862 u32 field, length_field;
Sarah Sharpb10de142009-04-27 19:58:50 -07002863
2864 int running_total, trb_buff_len, ret;
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07002865 unsigned int total_packet_count;
Sarah Sharpb10de142009-04-27 19:58:50 -07002866 u64 addr;
2867
Alan Sternff9c8952010-04-02 13:27:28 -04002868 if (urb->num_sgs)
Sarah Sharp8a96c052009-04-27 19:59:19 -07002869 return queue_bulk_sg_tx(xhci, mem_flags, urb, slot_id, ep_index);
2870
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002871 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
2872 if (!ep_ring)
2873 return -EINVAL;
Sarah Sharpb10de142009-04-27 19:58:50 -07002874
2875 num_trbs = 0;
2876 /* How much data is (potentially) left before the 64KB boundary? */
2877 running_total = TRB_MAX_BUFF_SIZE -
Paul Zimmermana2490182011-02-12 14:06:44 -08002878 (urb->transfer_dma & (TRB_MAX_BUFF_SIZE - 1));
Paul Zimmerman58077952011-02-12 14:07:20 -08002879 running_total &= TRB_MAX_BUFF_SIZE - 1;
Sarah Sharpb10de142009-04-27 19:58:50 -07002880
2881 /* If there's some data on this 64KB chunk, or we have to send a
2882 * zero-length transfer, we need at least one TRB
2883 */
2884 if (running_total != 0 || urb->transfer_buffer_length == 0)
2885 num_trbs++;
2886 /* How many more 64KB chunks to transfer, how many more TRBs? */
2887 while (running_total < urb->transfer_buffer_length) {
2888 num_trbs++;
2889 running_total += TRB_MAX_BUFF_SIZE;
2890 }
2891 /* FIXME: this doesn't deal with URB_ZERO_PACKET - need one more */
2892
2893 if (!in_interrupt())
Andiry Xuf2c565e2010-12-20 17:12:24 +08002894 xhci_dbg(xhci, "ep %#x - urb len = %#x (%d), "
2895 "addr = %#llx, num_trbs = %d\n",
Sarah Sharpb10de142009-04-27 19:58:50 -07002896 urb->ep->desc.bEndpointAddress,
Sarah Sharp8a96c052009-04-27 19:59:19 -07002897 urb->transfer_buffer_length,
2898 urb->transfer_buffer_length,
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002899 (unsigned long long)urb->transfer_dma,
Sarah Sharpb10de142009-04-27 19:58:50 -07002900 num_trbs);
Sarah Sharp8a96c052009-04-27 19:59:19 -07002901
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002902 ret = prepare_transfer(xhci, xhci->devs[slot_id],
2903 ep_index, urb->stream_id,
Andiry Xu8e51adc2010-07-22 15:23:31 -07002904 num_trbs, urb, 0, mem_flags);
Sarah Sharpb10de142009-04-27 19:58:50 -07002905 if (ret < 0)
2906 return ret;
2907
Andiry Xu8e51adc2010-07-22 15:23:31 -07002908 urb_priv = urb->hcpriv;
2909 td = urb_priv->td[0];
2910
Sarah Sharpb10de142009-04-27 19:58:50 -07002911 /*
2912 * Don't give the first TRB to the hardware (by toggling the cycle bit)
2913 * until we've finished creating all the other TRBs. The ring's cycle
2914 * state may change as we enqueue the other TRBs, so save it too.
2915 */
2916 start_trb = &ep_ring->enqueue->generic;
2917 start_cycle = ep_ring->cycle_state;
2918
2919 running_total = 0;
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07002920 total_packet_count = roundup(urb->transfer_buffer_length,
2921 le16_to_cpu(urb->ep->desc.wMaxPacketSize));
Sarah Sharpb10de142009-04-27 19:58:50 -07002922 /* How much data is in the first TRB? */
2923 addr = (u64) urb->transfer_dma;
2924 trb_buff_len = TRB_MAX_BUFF_SIZE -
Paul Zimmermana2490182011-02-12 14:06:44 -08002925 (urb->transfer_dma & (TRB_MAX_BUFF_SIZE - 1));
2926 if (trb_buff_len > urb->transfer_buffer_length)
Sarah Sharpb10de142009-04-27 19:58:50 -07002927 trb_buff_len = urb->transfer_buffer_length;
2928
2929 first_trb = true;
2930
2931 /* Queue the first TRB, even if it's zero-length */
2932 do {
Sarah Sharp04dd9502009-11-11 10:28:30 -08002933 u32 remainder = 0;
Sarah Sharpb10de142009-04-27 19:58:50 -07002934 field = 0;
2935
2936 /* Don't change the cycle bit of the first TRB until later */
Andiry Xu50f7b522010-12-20 15:09:34 +08002937 if (first_trb) {
Sarah Sharpb10de142009-04-27 19:58:50 -07002938 first_trb = false;
Andiry Xu50f7b522010-12-20 15:09:34 +08002939 if (start_cycle == 0)
2940 field |= 0x1;
2941 } else
Sarah Sharpb10de142009-04-27 19:58:50 -07002942 field |= ep_ring->cycle_state;
2943
2944 /* Chain all the TRBs together; clear the chain bit in the last
2945 * TRB to indicate it's the last TRB in the chain.
2946 */
2947 if (num_trbs > 1) {
2948 field |= TRB_CHAIN;
2949 } else {
2950 /* FIXME - add check for ZERO_PACKET flag before this */
2951 td->last_trb = ep_ring->enqueue;
2952 field |= TRB_IOC;
2953 }
Sarah Sharpaf8b9e62011-03-23 16:26:26 -07002954
2955 /* Only set interrupt on short packet for IN endpoints */
2956 if (usb_urb_dir_in(urb))
2957 field |= TRB_ISP;
2958
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07002959 /* Set the TRB length, TD size, and interrupter fields. */
2960 if (xhci->hci_version < 0x100) {
2961 remainder = xhci_td_remainder(
2962 urb->transfer_buffer_length -
2963 running_total);
2964 } else {
2965 remainder = xhci_v1_0_td_remainder(running_total,
2966 trb_buff_len, total_packet_count, urb);
2967 }
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002968 length_field = TRB_LEN(trb_buff_len) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08002969 remainder |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002970 TRB_INTR_TARGET(0);
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07002971
Sarah Sharp6cc30d82010-06-10 12:25:28 -07002972 if (num_trbs > 1)
2973 more_trbs_coming = true;
2974 else
2975 more_trbs_coming = false;
2976 queue_trb(xhci, ep_ring, false, more_trbs_coming,
Sarah Sharp8e595a52009-07-27 12:03:31 -07002977 lower_32_bits(addr),
2978 upper_32_bits(addr),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07002979 length_field,
Sarah Sharpaf8b9e62011-03-23 16:26:26 -07002980 field | TRB_TYPE(TRB_NORMAL));
Sarah Sharpb10de142009-04-27 19:58:50 -07002981 --num_trbs;
2982 running_total += trb_buff_len;
2983
2984 /* Calculate length for next transfer */
2985 addr += trb_buff_len;
2986 trb_buff_len = urb->transfer_buffer_length - running_total;
2987 if (trb_buff_len > TRB_MAX_BUFF_SIZE)
2988 trb_buff_len = TRB_MAX_BUFF_SIZE;
2989 } while (running_total < urb->transfer_buffer_length);
2990
Sarah Sharp8a96c052009-04-27 19:59:19 -07002991 check_trb_math(urb, num_trbs, running_total);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002992 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
Andiry Xue1eab2e2011-01-04 16:30:39 -08002993 start_cycle, start_trb);
Sarah Sharpb10de142009-04-27 19:58:50 -07002994 return 0;
2995}
2996
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002997/* Caller must have locked xhci->lock */
Sarah Sharp23e3be12009-04-29 19:05:20 -07002998int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07002999 struct urb *urb, int slot_id, unsigned int ep_index)
3000{
3001 struct xhci_ring *ep_ring;
3002 int num_trbs;
3003 int ret;
3004 struct usb_ctrlrequest *setup;
3005 struct xhci_generic_trb *start_trb;
3006 int start_cycle;
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07003007 u32 field, length_field;
Andiry Xu8e51adc2010-07-22 15:23:31 -07003008 struct urb_priv *urb_priv;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003009 struct xhci_td *td;
3010
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003011 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
3012 if (!ep_ring)
3013 return -EINVAL;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003014
3015 /*
3016 * Need to copy setup packet into setup TRB, so we can't use the setup
3017 * DMA address.
3018 */
3019 if (!urb->setup_packet)
3020 return -EINVAL;
3021
3022 if (!in_interrupt())
3023 xhci_dbg(xhci, "Queueing ctrl tx for slot id %d, ep %d\n",
3024 slot_id, ep_index);
3025 /* 1 TRB for setup, 1 for status */
3026 num_trbs = 2;
3027 /*
3028 * Don't need to check if we need additional event data and normal TRBs,
3029 * since data in control transfers will never get bigger than 16MB
3030 * XXX: can we get a buffer that crosses 64KB boundaries?
3031 */
3032 if (urb->transfer_buffer_length > 0)
3033 num_trbs++;
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003034 ret = prepare_transfer(xhci, xhci->devs[slot_id],
3035 ep_index, urb->stream_id,
Andiry Xu8e51adc2010-07-22 15:23:31 -07003036 num_trbs, urb, 0, mem_flags);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003037 if (ret < 0)
3038 return ret;
3039
Andiry Xu8e51adc2010-07-22 15:23:31 -07003040 urb_priv = urb->hcpriv;
3041 td = urb_priv->td[0];
3042
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003043 /*
3044 * Don't give the first TRB to the hardware (by toggling the cycle bit)
3045 * until we've finished creating all the other TRBs. The ring's cycle
3046 * state may change as we enqueue the other TRBs, so save it too.
3047 */
3048 start_trb = &ep_ring->enqueue->generic;
3049 start_cycle = ep_ring->cycle_state;
3050
3051 /* Queue setup TRB - see section 6.4.1.2.1 */
3052 /* FIXME better way to translate setup_packet into two u32 fields? */
3053 setup = (struct usb_ctrlrequest *) urb->setup_packet;
Andiry Xu50f7b522010-12-20 15:09:34 +08003054 field = 0;
3055 field |= TRB_IDT | TRB_TYPE(TRB_SETUP);
3056 if (start_cycle == 0)
3057 field |= 0x1;
Andiry Xub83cdc82011-05-05 18:13:56 +08003058
3059 /* xHCI 1.0 6.4.1.2.1: Transfer Type field */
3060 if (xhci->hci_version == 0x100) {
3061 if (urb->transfer_buffer_length > 0) {
3062 if (setup->bRequestType & USB_DIR_IN)
3063 field |= TRB_TX_TYPE(TRB_DATA_IN);
3064 else
3065 field |= TRB_TX_TYPE(TRB_DATA_OUT);
3066 }
3067 }
3068
Sarah Sharp6cc30d82010-06-10 12:25:28 -07003069 queue_trb(xhci, ep_ring, false, true,
Matt Evans28ccd292011-03-29 13:40:46 +11003070 setup->bRequestType | setup->bRequest << 8 | le16_to_cpu(setup->wValue) << 16,
3071 le16_to_cpu(setup->wIndex) | le16_to_cpu(setup->wLength) << 16,
3072 TRB_LEN(8) | TRB_INTR_TARGET(0),
3073 /* Immediate data in pointer */
3074 field);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003075
3076 /* If there's data, queue data TRBs */
Sarah Sharpaf8b9e62011-03-23 16:26:26 -07003077 /* Only set interrupt on short packet for IN endpoints */
3078 if (usb_urb_dir_in(urb))
3079 field = TRB_ISP | TRB_TYPE(TRB_DATA);
3080 else
3081 field = TRB_TYPE(TRB_DATA);
3082
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07003083 length_field = TRB_LEN(urb->transfer_buffer_length) |
Sarah Sharp04dd9502009-11-11 10:28:30 -08003084 xhci_td_remainder(urb->transfer_buffer_length) |
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07003085 TRB_INTR_TARGET(0);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003086 if (urb->transfer_buffer_length > 0) {
3087 if (setup->bRequestType & USB_DIR_IN)
3088 field |= TRB_DIR_IN;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07003089 queue_trb(xhci, ep_ring, false, true,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003090 lower_32_bits(urb->transfer_dma),
3091 upper_32_bits(urb->transfer_dma),
Sarah Sharpf9dc68f2009-07-27 12:03:07 -07003092 length_field,
Sarah Sharpaf8b9e62011-03-23 16:26:26 -07003093 field | ep_ring->cycle_state);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003094 }
3095
3096 /* Save the DMA address of the last TRB in the TD */
3097 td->last_trb = ep_ring->enqueue;
3098
3099 /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */
3100 /* If the device sent data, the status stage is an OUT transfer */
3101 if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN)
3102 field = 0;
3103 else
3104 field = TRB_DIR_IN;
Sarah Sharp6cc30d82010-06-10 12:25:28 -07003105 queue_trb(xhci, ep_ring, false, false,
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003106 0,
3107 0,
3108 TRB_INTR_TARGET(0),
3109 /* Event on completion */
3110 field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state);
3111
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003112 giveback_first_trb(xhci, slot_id, ep_index, 0,
Andiry Xue1eab2e2011-01-04 16:30:39 -08003113 start_cycle, start_trb);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003114 return 0;
3115}
3116
Andiry Xu04e51902010-07-22 15:23:39 -07003117static int count_isoc_trbs_needed(struct xhci_hcd *xhci,
3118 struct urb *urb, int i)
3119{
3120 int num_trbs = 0;
3121 u64 addr, td_len, running_total;
3122
3123 addr = (u64) (urb->transfer_dma + urb->iso_frame_desc[i].offset);
3124 td_len = urb->iso_frame_desc[i].length;
3125
Paul Zimmermana2490182011-02-12 14:06:44 -08003126 running_total = TRB_MAX_BUFF_SIZE - (addr & (TRB_MAX_BUFF_SIZE - 1));
Paul Zimmerman58077952011-02-12 14:07:20 -08003127 running_total &= TRB_MAX_BUFF_SIZE - 1;
Andiry Xu04e51902010-07-22 15:23:39 -07003128 if (running_total != 0)
3129 num_trbs++;
3130
3131 while (running_total < td_len) {
3132 num_trbs++;
3133 running_total += TRB_MAX_BUFF_SIZE;
3134 }
3135
3136 return num_trbs;
3137}
3138
Sarah Sharp5cd43e32011-04-08 09:37:29 -07003139/*
3140 * The transfer burst count field of the isochronous TRB defines the number of
3141 * bursts that are required to move all packets in this TD. Only SuperSpeed
3142 * devices can burst up to bMaxBurst number of packets per service interval.
3143 * This field is zero based, meaning a value of zero in the field means one
3144 * burst. Basically, for everything but SuperSpeed devices, this field will be
3145 * zero. Only xHCI 1.0 host controllers support this field.
3146 */
3147static unsigned int xhci_get_burst_count(struct xhci_hcd *xhci,
3148 struct usb_device *udev,
3149 struct urb *urb, unsigned int total_packet_count)
3150{
3151 unsigned int max_burst;
3152
3153 if (xhci->hci_version < 0x100 || udev->speed != USB_SPEED_SUPER)
3154 return 0;
3155
3156 max_burst = urb->ep->ss_ep_comp.bMaxBurst;
3157 return roundup(total_packet_count, max_burst + 1) - 1;
3158}
3159
Sarah Sharpb61d3782011-04-19 17:43:33 -07003160/*
3161 * Returns the number of packets in the last "burst" of packets. This field is
3162 * valid for all speeds of devices. USB 2.0 devices can only do one "burst", so
3163 * the last burst packet count is equal to the total number of packets in the
3164 * TD. SuperSpeed endpoints can have up to 3 bursts. All but the last burst
3165 * must contain (bMaxBurst + 1) number of packets, but the last burst can
3166 * contain 1 to (bMaxBurst + 1) packets.
3167 */
3168static unsigned int xhci_get_last_burst_packet_count(struct xhci_hcd *xhci,
3169 struct usb_device *udev,
3170 struct urb *urb, unsigned int total_packet_count)
3171{
3172 unsigned int max_burst;
3173 unsigned int residue;
3174
3175 if (xhci->hci_version < 0x100)
3176 return 0;
3177
3178 switch (udev->speed) {
3179 case USB_SPEED_SUPER:
3180 /* bMaxBurst is zero based: 0 means 1 packet per burst */
3181 max_burst = urb->ep->ss_ep_comp.bMaxBurst;
3182 residue = total_packet_count % (max_burst + 1);
3183 /* If residue is zero, the last burst contains (max_burst + 1)
3184 * number of packets, but the TLBPC field is zero-based.
3185 */
3186 if (residue == 0)
3187 return max_burst;
3188 return residue - 1;
3189 default:
3190 if (total_packet_count == 0)
3191 return 0;
3192 return total_packet_count - 1;
3193 }
3194}
3195
Andiry Xu04e51902010-07-22 15:23:39 -07003196/* This is for isoc transfer */
3197static int xhci_queue_isoc_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
3198 struct urb *urb, int slot_id, unsigned int ep_index)
3199{
3200 struct xhci_ring *ep_ring;
3201 struct urb_priv *urb_priv;
3202 struct xhci_td *td;
3203 int num_tds, trbs_per_td;
3204 struct xhci_generic_trb *start_trb;
3205 bool first_trb;
3206 int start_cycle;
3207 u32 field, length_field;
3208 int running_total, trb_buff_len, td_len, td_remain_len, ret;
3209 u64 start_addr, addr;
3210 int i, j;
Andiry Xu47cbf692010-12-20 14:49:48 +08003211 bool more_trbs_coming;
Andiry Xu04e51902010-07-22 15:23:39 -07003212
3213 ep_ring = xhci->devs[slot_id]->eps[ep_index].ring;
3214
3215 num_tds = urb->number_of_packets;
3216 if (num_tds < 1) {
3217 xhci_dbg(xhci, "Isoc URB with zero packets?\n");
3218 return -EINVAL;
3219 }
3220
3221 if (!in_interrupt())
Andiry Xuf2c565e2010-12-20 17:12:24 +08003222 xhci_dbg(xhci, "ep %#x - urb len = %#x (%d),"
Andiry Xu04e51902010-07-22 15:23:39 -07003223 " addr = %#llx, num_tds = %d\n",
3224 urb->ep->desc.bEndpointAddress,
3225 urb->transfer_buffer_length,
3226 urb->transfer_buffer_length,
3227 (unsigned long long)urb->transfer_dma,
3228 num_tds);
3229
3230 start_addr = (u64) urb->transfer_dma;
3231 start_trb = &ep_ring->enqueue->generic;
3232 start_cycle = ep_ring->cycle_state;
3233
3234 /* Queue the first TRB, even if it's zero-length */
3235 for (i = 0; i < num_tds; i++) {
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07003236 unsigned int total_packet_count;
Sarah Sharp5cd43e32011-04-08 09:37:29 -07003237 unsigned int burst_count;
Sarah Sharpb61d3782011-04-19 17:43:33 -07003238 unsigned int residue;
Andiry Xu04e51902010-07-22 15:23:39 -07003239
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07003240 first_trb = true;
Andiry Xu04e51902010-07-22 15:23:39 -07003241 running_total = 0;
3242 addr = start_addr + urb->iso_frame_desc[i].offset;
3243 td_len = urb->iso_frame_desc[i].length;
3244 td_remain_len = td_len;
Sarah Sharp5cd43e32011-04-08 09:37:29 -07003245 /* FIXME: Ignoring zero-length packets, can those happen? */
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07003246 total_packet_count = roundup(td_len,
3247 le16_to_cpu(urb->ep->desc.wMaxPacketSize));
Sarah Sharp5cd43e32011-04-08 09:37:29 -07003248 burst_count = xhci_get_burst_count(xhci, urb->dev, urb,
3249 total_packet_count);
Sarah Sharpb61d3782011-04-19 17:43:33 -07003250 residue = xhci_get_last_burst_packet_count(xhci,
3251 urb->dev, urb, total_packet_count);
Andiry Xu04e51902010-07-22 15:23:39 -07003252
3253 trbs_per_td = count_isoc_trbs_needed(xhci, urb, i);
3254
3255 ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index,
3256 urb->stream_id, trbs_per_td, urb, i, mem_flags);
3257 if (ret < 0)
3258 return ret;
3259
3260 urb_priv = urb->hcpriv;
3261 td = urb_priv->td[i];
3262
3263 for (j = 0; j < trbs_per_td; j++) {
3264 u32 remainder = 0;
Sarah Sharpb61d3782011-04-19 17:43:33 -07003265 field = TRB_TBC(burst_count) | TRB_TLBPC(residue);
Andiry Xu04e51902010-07-22 15:23:39 -07003266
3267 if (first_trb) {
3268 /* Queue the isoc TRB */
3269 field |= TRB_TYPE(TRB_ISOC);
3270 /* Assume URB_ISO_ASAP is set */
3271 field |= TRB_SIA;
Andiry Xu50f7b522010-12-20 15:09:34 +08003272 if (i == 0) {
3273 if (start_cycle == 0)
3274 field |= 0x1;
3275 } else
Andiry Xu04e51902010-07-22 15:23:39 -07003276 field |= ep_ring->cycle_state;
3277 first_trb = false;
3278 } else {
3279 /* Queue other normal TRBs */
3280 field |= TRB_TYPE(TRB_NORMAL);
3281 field |= ep_ring->cycle_state;
3282 }
3283
Sarah Sharpaf8b9e62011-03-23 16:26:26 -07003284 /* Only set interrupt on short packet for IN EPs */
3285 if (usb_urb_dir_in(urb))
3286 field |= TRB_ISP;
3287
Andiry Xu04e51902010-07-22 15:23:39 -07003288 /* Chain all the TRBs together; clear the chain bit in
3289 * the last TRB to indicate it's the last TRB in the
3290 * chain.
3291 */
3292 if (j < trbs_per_td - 1) {
3293 field |= TRB_CHAIN;
Andiry Xu47cbf692010-12-20 14:49:48 +08003294 more_trbs_coming = true;
Andiry Xu04e51902010-07-22 15:23:39 -07003295 } else {
3296 td->last_trb = ep_ring->enqueue;
3297 field |= TRB_IOC;
Andiry Xuad106f22011-05-05 18:14:02 +08003298 if (xhci->hci_version == 0x100) {
3299 /* Set BEI bit except for the last td */
3300 if (i < num_tds - 1)
3301 field |= TRB_BEI;
3302 }
Andiry Xu47cbf692010-12-20 14:49:48 +08003303 more_trbs_coming = false;
Andiry Xu04e51902010-07-22 15:23:39 -07003304 }
3305
3306 /* Calculate TRB length */
3307 trb_buff_len = TRB_MAX_BUFF_SIZE -
3308 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
3309 if (trb_buff_len > td_remain_len)
3310 trb_buff_len = td_remain_len;
3311
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07003312 /* Set the TRB length, TD size, & interrupter fields. */
3313 if (xhci->hci_version < 0x100) {
3314 remainder = xhci_td_remainder(
3315 td_len - running_total);
3316 } else {
3317 remainder = xhci_v1_0_td_remainder(
3318 running_total, trb_buff_len,
3319 total_packet_count, urb);
3320 }
Andiry Xu04e51902010-07-22 15:23:39 -07003321 length_field = TRB_LEN(trb_buff_len) |
3322 remainder |
3323 TRB_INTR_TARGET(0);
Sarah Sharp4da6e6f2011-04-01 14:01:30 -07003324
Andiry Xu47cbf692010-12-20 14:49:48 +08003325 queue_trb(xhci, ep_ring, false, more_trbs_coming,
Andiry Xu04e51902010-07-22 15:23:39 -07003326 lower_32_bits(addr),
3327 upper_32_bits(addr),
3328 length_field,
Sarah Sharpaf8b9e62011-03-23 16:26:26 -07003329 field);
Andiry Xu04e51902010-07-22 15:23:39 -07003330 running_total += trb_buff_len;
3331
3332 addr += trb_buff_len;
3333 td_remain_len -= trb_buff_len;
3334 }
3335
3336 /* Check TD length */
3337 if (running_total != td_len) {
3338 xhci_err(xhci, "ISOC TD length unmatch\n");
3339 return -EINVAL;
3340 }
3341 }
3342
Andiry Xuc41136b2011-03-22 17:08:14 +08003343 if (xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs == 0) {
3344 if (xhci->quirks & XHCI_AMD_PLL_FIX)
3345 usb_amd_quirk_pll_disable();
3346 }
3347 xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs++;
3348
Andiry Xue1eab2e2011-01-04 16:30:39 -08003349 giveback_first_trb(xhci, slot_id, ep_index, urb->stream_id,
3350 start_cycle, start_trb);
Andiry Xu04e51902010-07-22 15:23:39 -07003351 return 0;
3352}
3353
3354/*
3355 * Check transfer ring to guarantee there is enough room for the urb.
3356 * Update ISO URB start_frame and interval.
3357 * Update interval as xhci_queue_intr_tx does. Just use xhci frame_index to
3358 * update the urb->start_frame by now.
3359 * Always assume URB_ISO_ASAP set, and NEVER use urb->start_frame as input.
3360 */
3361int xhci_queue_isoc_tx_prepare(struct xhci_hcd *xhci, gfp_t mem_flags,
3362 struct urb *urb, int slot_id, unsigned int ep_index)
3363{
3364 struct xhci_virt_device *xdev;
3365 struct xhci_ring *ep_ring;
3366 struct xhci_ep_ctx *ep_ctx;
3367 int start_frame;
3368 int xhci_interval;
3369 int ep_interval;
3370 int num_tds, num_trbs, i;
3371 int ret;
3372
3373 xdev = xhci->devs[slot_id];
3374 ep_ring = xdev->eps[ep_index].ring;
3375 ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
3376
3377 num_trbs = 0;
3378 num_tds = urb->number_of_packets;
3379 for (i = 0; i < num_tds; i++)
3380 num_trbs += count_isoc_trbs_needed(xhci, urb, i);
3381
3382 /* Check the ring to guarantee there is enough room for the whole urb.
3383 * Do not insert any td of the urb to the ring if the check failed.
3384 */
Matt Evans28ccd292011-03-29 13:40:46 +11003385 ret = prepare_ring(xhci, ep_ring, le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK,
3386 num_trbs, mem_flags);
Andiry Xu04e51902010-07-22 15:23:39 -07003387 if (ret)
3388 return ret;
3389
3390 start_frame = xhci_readl(xhci, &xhci->run_regs->microframe_index);
3391 start_frame &= 0x3fff;
3392
3393 urb->start_frame = start_frame;
3394 if (urb->dev->speed == USB_SPEED_LOW ||
3395 urb->dev->speed == USB_SPEED_FULL)
3396 urb->start_frame >>= 3;
3397
Matt Evans28ccd292011-03-29 13:40:46 +11003398 xhci_interval = EP_INTERVAL_TO_UFRAMES(le32_to_cpu(ep_ctx->ep_info));
Andiry Xu04e51902010-07-22 15:23:39 -07003399 ep_interval = urb->interval;
3400 /* Convert to microframes */
3401 if (urb->dev->speed == USB_SPEED_LOW ||
3402 urb->dev->speed == USB_SPEED_FULL)
3403 ep_interval *= 8;
3404 /* FIXME change this to a warning and a suggestion to use the new API
3405 * to set the polling interval (once the API is added).
3406 */
3407 if (xhci_interval != ep_interval) {
Andiry Xu7961acd2010-12-20 17:14:20 +08003408 if (printk_ratelimit())
Andiry Xu04e51902010-07-22 15:23:39 -07003409 dev_dbg(&urb->dev->dev, "Driver uses different interval"
3410 " (%d microframe%s) than xHCI "
3411 "(%d microframe%s)\n",
3412 ep_interval,
3413 ep_interval == 1 ? "" : "s",
3414 xhci_interval,
3415 xhci_interval == 1 ? "" : "s");
3416 urb->interval = xhci_interval;
3417 /* Convert back to frames for LS/FS devices */
3418 if (urb->dev->speed == USB_SPEED_LOW ||
3419 urb->dev->speed == USB_SPEED_FULL)
3420 urb->interval /= 8;
3421 }
3422 return xhci_queue_isoc_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index);
3423}
3424
Sarah Sharpd0e96f52009-04-27 19:58:01 -07003425/**** Command Ring Operations ****/
3426
Sarah Sharp913a8a32009-09-04 10:53:13 -07003427/* Generic function for queueing a command TRB on the command ring.
3428 * Check to make sure there's room on the command ring for one command TRB.
3429 * Also check that there's room reserved for commands that must not fail.
3430 * If this is a command that must not fail, meaning command_must_succeed = TRUE,
3431 * then only check for the number of reserved spots.
3432 * Don't decrement xhci->cmd_ring_reserved_trbs after we've queued the TRB
3433 * because the command event handler may want to resubmit a failed command.
3434 */
3435static int queue_command(struct xhci_hcd *xhci, u32 field1, u32 field2,
3436 u32 field3, u32 field4, bool command_must_succeed)
Sarah Sharp7f84eef2009-04-27 19:53:56 -07003437{
Sarah Sharp913a8a32009-09-04 10:53:13 -07003438 int reserved_trbs = xhci->cmd_ring_reserved_trbs;
Sarah Sharpd1dc9082010-07-09 17:08:38 +02003439 int ret;
3440
Sarah Sharp913a8a32009-09-04 10:53:13 -07003441 if (!command_must_succeed)
3442 reserved_trbs++;
3443
Sarah Sharpd1dc9082010-07-09 17:08:38 +02003444 ret = prepare_ring(xhci, xhci->cmd_ring, EP_STATE_RUNNING,
3445 reserved_trbs, GFP_ATOMIC);
3446 if (ret < 0) {
3447 xhci_err(xhci, "ERR: No room for command on command ring\n");
Sarah Sharp913a8a32009-09-04 10:53:13 -07003448 if (command_must_succeed)
3449 xhci_err(xhci, "ERR: Reserved TRB counting for "
3450 "unfailable commands failed.\n");
Sarah Sharpd1dc9082010-07-09 17:08:38 +02003451 return ret;
Sarah Sharp7f84eef2009-04-27 19:53:56 -07003452 }
Sarah Sharp6cc30d82010-06-10 12:25:28 -07003453 queue_trb(xhci, xhci->cmd_ring, false, false, field1, field2, field3,
Sarah Sharp7f84eef2009-04-27 19:53:56 -07003454 field4 | xhci->cmd_ring->cycle_state);
3455 return 0;
3456}
3457
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003458/* Queue a slot enable or disable request on the command ring */
Sarah Sharp23e3be12009-04-29 19:05:20 -07003459int xhci_queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003460{
3461 return queue_command(xhci, 0, 0, 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003462 TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id), false);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003463}
3464
3465/* Queue an address device command TRB */
Sarah Sharp23e3be12009-04-29 19:05:20 -07003466int xhci_queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
3467 u32 slot_id)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003468{
Sarah Sharp8e595a52009-07-27 12:03:31 -07003469 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
3470 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003471 TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id),
3472 false);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003473}
Sarah Sharpf94e01862009-04-27 19:58:38 -07003474
Sarah Sharp02386342010-05-24 13:25:28 -07003475int xhci_queue_vendor_command(struct xhci_hcd *xhci,
3476 u32 field1, u32 field2, u32 field3, u32 field4)
3477{
3478 return queue_command(xhci, field1, field2, field3, field4, false);
3479}
3480
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003481/* Queue a reset device command TRB */
3482int xhci_queue_reset_device(struct xhci_hcd *xhci, u32 slot_id)
3483{
3484 return queue_command(xhci, 0, 0, 0,
3485 TRB_TYPE(TRB_RESET_DEV) | SLOT_ID_FOR_TRB(slot_id),
3486 false);
3487}
3488
Sarah Sharpf94e01862009-04-27 19:58:38 -07003489/* Queue a configure endpoint command TRB */
Sarah Sharp23e3be12009-04-29 19:05:20 -07003490int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003491 u32 slot_id, bool command_must_succeed)
Sarah Sharpf94e01862009-04-27 19:58:38 -07003492{
Sarah Sharp8e595a52009-07-27 12:03:31 -07003493 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
3494 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003495 TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id),
3496 command_must_succeed);
Sarah Sharpf94e01862009-04-27 19:58:38 -07003497}
Sarah Sharpae636742009-04-29 19:02:31 -07003498
Sarah Sharpf2217e82009-08-07 14:04:43 -07003499/* Queue an evaluate context command TRB */
3500int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
3501 u32 slot_id)
3502{
3503 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
3504 upper_32_bits(in_ctx_ptr), 0,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003505 TRB_TYPE(TRB_EVAL_CONTEXT) | SLOT_ID_FOR_TRB(slot_id),
3506 false);
Sarah Sharpf2217e82009-08-07 14:04:43 -07003507}
3508
Andiry Xube88fe42010-10-14 07:22:57 -07003509/*
3510 * Suspend is set to indicate "Stop Endpoint Command" is being issued to stop
3511 * activity on an endpoint that is about to be suspended.
3512 */
Sarah Sharp23e3be12009-04-29 19:05:20 -07003513int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, int slot_id,
Andiry Xube88fe42010-10-14 07:22:57 -07003514 unsigned int ep_index, int suspend)
Sarah Sharpae636742009-04-29 19:02:31 -07003515{
3516 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3517 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
3518 u32 type = TRB_TYPE(TRB_STOP_RING);
Andiry Xube88fe42010-10-14 07:22:57 -07003519 u32 trb_suspend = SUSPEND_PORT_FOR_TRB(suspend);
Sarah Sharpae636742009-04-29 19:02:31 -07003520
3521 return queue_command(xhci, 0, 0, 0,
Andiry Xube88fe42010-10-14 07:22:57 -07003522 trb_slot_id | trb_ep_index | type | trb_suspend, false);
Sarah Sharpae636742009-04-29 19:02:31 -07003523}
3524
3525/* Set Transfer Ring Dequeue Pointer command.
3526 * This should not be used for endpoints that have streams enabled.
3527 */
3528static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003529 unsigned int ep_index, unsigned int stream_id,
3530 struct xhci_segment *deq_seg,
Sarah Sharpae636742009-04-29 19:02:31 -07003531 union xhci_trb *deq_ptr, u32 cycle_state)
3532{
3533 dma_addr_t addr;
3534 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3535 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003536 u32 trb_stream_id = STREAM_ID_FOR_TRB(stream_id);
Sarah Sharpae636742009-04-29 19:02:31 -07003537 u32 type = TRB_TYPE(TRB_SET_DEQ);
Sarah Sharpbf161e82011-02-23 15:46:42 -08003538 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -07003539
Sarah Sharp23e3be12009-04-29 19:05:20 -07003540 addr = xhci_trb_virt_to_dma(deq_seg, deq_ptr);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07003541 if (addr == 0) {
Sarah Sharpae636742009-04-29 19:02:31 -07003542 xhci_warn(xhci, "WARN Cannot submit Set TR Deq Ptr\n");
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07003543 xhci_warn(xhci, "WARN deq seg = %p, deq pt = %p\n",
3544 deq_seg, deq_ptr);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07003545 return 0;
3546 }
Sarah Sharpbf161e82011-02-23 15:46:42 -08003547 ep = &xhci->devs[slot_id]->eps[ep_index];
3548 if ((ep->ep_state & SET_DEQ_PENDING)) {
3549 xhci_warn(xhci, "WARN Cannot submit Set TR Deq Ptr\n");
3550 xhci_warn(xhci, "A Set TR Deq Ptr command is pending.\n");
3551 return 0;
3552 }
3553 ep->queued_deq_seg = deq_seg;
3554 ep->queued_deq_ptr = deq_ptr;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003555 return queue_command(xhci, lower_32_bits(addr) | cycle_state,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07003556 upper_32_bits(addr), trb_stream_id,
Sarah Sharp913a8a32009-09-04 10:53:13 -07003557 trb_slot_id | trb_ep_index | type, false);
Sarah Sharpae636742009-04-29 19:02:31 -07003558}
Sarah Sharpa1587d92009-07-27 12:03:15 -07003559
3560int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id,
3561 unsigned int ep_index)
3562{
3563 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
3564 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
3565 u32 type = TRB_TYPE(TRB_RESET_EP);
3566
Sarah Sharp913a8a32009-09-04 10:53:13 -07003567 return queue_command(xhci, 0, 0, 0, trb_slot_id | trb_ep_index | type,
3568 false);
Sarah Sharpa1587d92009-07-27 12:03:15 -07003569}