USB: xhci: Represent 64-bit addresses with one u64.
[deliverable/linux.git] / drivers / usb / host / xhci-ring.c
CommitLineData
7f84eef0
SS
1/*
2 * xHCI host controller driver
3 *
4 * Copyright (C) 2008 Intel Corp.
5 *
6 * Author: Sarah Sharp
7 * Some code borrowed from the Linux EHCI driver.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23/*
24 * Ring initialization rules:
25 * 1. Each segment is initialized to zero, except for link TRBs.
26 * 2. Ring cycle state = 0. This represents Producer Cycle State (PCS) or
27 * Consumer Cycle State (CCS), depending on ring function.
28 * 3. Enqueue pointer = dequeue pointer = address of first TRB in the segment.
29 *
30 * Ring behavior rules:
31 * 1. A ring is empty if enqueue == dequeue. This means there will always be at
32 * least one free TRB in the ring. This is useful if you want to turn that
33 * into a link TRB and expand the ring.
34 * 2. When incrementing an enqueue or dequeue pointer, if the next TRB is a
35 * link TRB, then load the pointer with the address in the link TRB. If the
36 * link TRB had its toggle bit set, you may need to update the ring cycle
37 * state (see cycle bit rules). You may have to do this multiple times
38 * until you reach a non-link TRB.
39 * 3. A ring is full if enqueue++ (for the definition of increment above)
40 * equals the dequeue pointer.
41 *
42 * Cycle bit rules:
43 * 1. When a consumer increments a dequeue pointer and encounters a toggle bit
44 * in a link TRB, it must toggle the ring cycle state.
45 * 2. When a producer increments an enqueue pointer and encounters a toggle bit
46 * in a link TRB, it must toggle the ring cycle state.
47 *
48 * Producer rules:
49 * 1. Check if ring is full before you enqueue.
50 * 2. Write the ring cycle state to the cycle bit in the TRB you're enqueuing.
51 * Update enqueue pointer between each write (which may update the ring
52 * cycle state).
53 * 3. Notify consumer. If SW is producer, it rings the doorbell for command
54 * and endpoint rings. If HC is the producer for the event ring,
55 * and it generates an interrupt according to interrupt modulation rules.
56 *
57 * Consumer rules:
58 * 1. Check if TRB belongs to you. If the cycle bit == your ring cycle state,
59 * the TRB is owned by the consumer.
60 * 2. Update dequeue pointer (which may update the ring cycle state) and
61 * continue processing TRBs until you reach a TRB which is not owned by you.
62 * 3. Notify the producer. SW is the consumer for the event ring, and it
63 * updates event ring dequeue pointer. HC is the consumer for the command and
64 * endpoint rings; it generates events on the event ring for these.
65 */
66
8a96c052 67#include <linux/scatterlist.h>
7f84eef0
SS
68#include "xhci.h"
69
70/*
71 * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA
72 * address of the TRB.
73 */
23e3be11 74dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg,
7f84eef0
SS
75 union xhci_trb *trb)
76{
6071d836 77 unsigned long segment_offset;
7f84eef0 78
6071d836 79 if (!seg || !trb || trb < seg->trbs)
7f84eef0 80 return 0;
6071d836
SS
81 /* offset in TRBs */
82 segment_offset = trb - seg->trbs;
83 if (segment_offset > TRBS_PER_SEGMENT)
7f84eef0 84 return 0;
6071d836 85 return seg->dma + (segment_offset * sizeof(*trb));
7f84eef0
SS
86}
87
88/* Does this link TRB point to the first segment in a ring,
89 * or was the previous TRB the last TRB on the last segment in the ERST?
90 */
91static inline bool last_trb_on_last_seg(struct xhci_hcd *xhci, struct xhci_ring *ring,
92 struct xhci_segment *seg, union xhci_trb *trb)
93{
94 if (ring == xhci->event_ring)
95 return (trb == &seg->trbs[TRBS_PER_SEGMENT]) &&
96 (seg->next == xhci->event_ring->first_seg);
97 else
98 return trb->link.control & LINK_TOGGLE;
99}
100
101/* Is this TRB a link TRB or was the last TRB the last TRB in this event ring
102 * segment? I.e. would the updated event TRB pointer step off the end of the
103 * event seg?
104 */
105static inline int last_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
106 struct xhci_segment *seg, union xhci_trb *trb)
107{
108 if (ring == xhci->event_ring)
109 return trb == &seg->trbs[TRBS_PER_SEGMENT];
110 else
111 return (trb->link.control & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK);
112}
113
ae636747
SS
114/* Updates trb to point to the next TRB in the ring, and updates seg if the next
115 * TRB is in a new segment. This does not skip over link TRBs, and it does not
116 * effect the ring dequeue or enqueue pointers.
117 */
118static void next_trb(struct xhci_hcd *xhci,
119 struct xhci_ring *ring,
120 struct xhci_segment **seg,
121 union xhci_trb **trb)
122{
123 if (last_trb(xhci, ring, *seg, *trb)) {
124 *seg = (*seg)->next;
125 *trb = ((*seg)->trbs);
126 } else {
127 *trb = (*trb)++;
128 }
129}
130
7f84eef0
SS
131/*
132 * See Cycle bit rules. SW is the consumer for the event ring only.
133 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
134 */
135static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer)
136{
137 union xhci_trb *next = ++(ring->dequeue);
138
139 ring->deq_updates++;
140 /* Update the dequeue pointer further if that was a link TRB or we're at
141 * the end of an event ring segment (which doesn't have link TRBS)
142 */
143 while (last_trb(xhci, ring, ring->deq_seg, next)) {
144 if (consumer && last_trb_on_last_seg(xhci, ring, ring->deq_seg, next)) {
145 ring->cycle_state = (ring->cycle_state ? 0 : 1);
146 if (!in_interrupt())
700e2052
GKH
147 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
148 ring,
7f84eef0
SS
149 (unsigned int) ring->cycle_state);
150 }
151 ring->deq_seg = ring->deq_seg->next;
152 ring->dequeue = ring->deq_seg->trbs;
153 next = ring->dequeue;
154 }
155}
156
157/*
158 * See Cycle bit rules. SW is the consumer for the event ring only.
159 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
160 *
161 * If we've just enqueued a TRB that is in the middle of a TD (meaning the
162 * chain bit is set), then set the chain bit in all the following link TRBs.
163 * If we've enqueued the last TRB in a TD, make sure the following link TRBs
164 * have their chain bit cleared (so that each Link TRB is a separate TD).
165 *
166 * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit
167 * set, but other sections talk about dealing with the chain bit set.
168 * Assume section 6.4.4.1 is wrong, and the chain bit can be set in a Link TRB.
169 */
170static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer)
171{
172 u32 chain;
173 union xhci_trb *next;
174
175 chain = ring->enqueue->generic.field[3] & TRB_CHAIN;
176 next = ++(ring->enqueue);
177
178 ring->enq_updates++;
179 /* Update the dequeue pointer further if that was a link TRB or we're at
180 * the end of an event ring segment (which doesn't have link TRBS)
181 */
182 while (last_trb(xhci, ring, ring->enq_seg, next)) {
183 if (!consumer) {
184 if (ring != xhci->event_ring) {
b7116ebc
SS
185 next->link.control &= ~TRB_CHAIN;
186 next->link.control |= chain;
7f84eef0 187 /* Give this link TRB to the hardware */
b7116ebc 188 wmb();
7f84eef0
SS
189 if (next->link.control & TRB_CYCLE)
190 next->link.control &= (u32) ~TRB_CYCLE;
191 else
192 next->link.control |= (u32) TRB_CYCLE;
7f84eef0
SS
193 }
194 /* Toggle the cycle bit after the last ring segment. */
195 if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) {
196 ring->cycle_state = (ring->cycle_state ? 0 : 1);
197 if (!in_interrupt())
700e2052
GKH
198 xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n",
199 ring,
7f84eef0
SS
200 (unsigned int) ring->cycle_state);
201 }
202 }
203 ring->enq_seg = ring->enq_seg->next;
204 ring->enqueue = ring->enq_seg->trbs;
205 next = ring->enqueue;
206 }
207}
208
209/*
210 * Check to see if there's room to enqueue num_trbs on the ring. See rules
211 * above.
212 * FIXME: this would be simpler and faster if we just kept track of the number
213 * of free TRBs in a ring.
214 */
215static int room_on_ring(struct xhci_hcd *xhci, struct xhci_ring *ring,
216 unsigned int num_trbs)
217{
218 int i;
219 union xhci_trb *enq = ring->enqueue;
220 struct xhci_segment *enq_seg = ring->enq_seg;
221
222 /* Check if ring is empty */
223 if (enq == ring->dequeue)
224 return 1;
225 /* Make sure there's an extra empty TRB available */
226 for (i = 0; i <= num_trbs; ++i) {
227 if (enq == ring->dequeue)
228 return 0;
229 enq++;
230 while (last_trb(xhci, ring, enq_seg, enq)) {
231 enq_seg = enq_seg->next;
232 enq = enq_seg->trbs;
233 }
234 }
235 return 1;
236}
237
23e3be11 238void xhci_set_hc_event_deq(struct xhci_hcd *xhci)
7f84eef0 239{
8e595a5d 240 u64 temp;
7f84eef0
SS
241 dma_addr_t deq;
242
23e3be11 243 deq = xhci_trb_virt_to_dma(xhci->event_ring->deq_seg,
7f84eef0
SS
244 xhci->event_ring->dequeue);
245 if (deq == 0 && !in_interrupt())
246 xhci_warn(xhci, "WARN something wrong with SW event ring "
247 "dequeue ptr.\n");
248 /* Update HC event ring dequeue pointer */
8e595a5d 249 temp = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
7f84eef0
SS
250 temp &= ERST_PTR_MASK;
251 if (!in_interrupt())
252 xhci_dbg(xhci, "// Write event ring dequeue pointer\n");
8e595a5d
SS
253 xhci_write_64(xhci, ((u64) deq & (u64) ~ERST_PTR_MASK) | temp,
254 &xhci->ir_set->erst_dequeue);
7f84eef0
SS
255}
256
257/* Ring the host controller doorbell after placing a command on the ring */
23e3be11 258void xhci_ring_cmd_db(struct xhci_hcd *xhci)
7f84eef0
SS
259{
260 u32 temp;
261
262 xhci_dbg(xhci, "// Ding dong!\n");
263 temp = xhci_readl(xhci, &xhci->dba->doorbell[0]) & DB_MASK;
264 xhci_writel(xhci, temp | DB_TARGET_HOST, &xhci->dba->doorbell[0]);
265 /* Flush PCI posted writes */
266 xhci_readl(xhci, &xhci->dba->doorbell[0]);
267}
268
ae636747
SS
269static void ring_ep_doorbell(struct xhci_hcd *xhci,
270 unsigned int slot_id,
271 unsigned int ep_index)
272{
273 struct xhci_ring *ep_ring;
274 u32 field;
275 __u32 __iomem *db_addr = &xhci->dba->doorbell[slot_id];
276
277 ep_ring = xhci->devs[slot_id]->ep_rings[ep_index];
278 /* Don't ring the doorbell for this endpoint if there are pending
279 * cancellations because the we don't want to interrupt processing.
280 */
a1587d97
SS
281 if (!ep_ring->cancels_pending && !(ep_ring->state & SET_DEQ_PENDING)
282 && !(ep_ring->state & EP_HALTED)) {
ae636747
SS
283 field = xhci_readl(xhci, db_addr) & DB_MASK;
284 xhci_writel(xhci, field | EPI_TO_DB(ep_index), db_addr);
285 /* Flush PCI posted writes - FIXME Matthew Wilcox says this
286 * isn't time-critical and we shouldn't make the CPU wait for
287 * the flush.
288 */
289 xhci_readl(xhci, db_addr);
290 }
291}
292
293/*
294 * Find the segment that trb is in. Start searching in start_seg.
295 * If we must move past a segment that has a link TRB with a toggle cycle state
296 * bit set, then we will toggle the value pointed at by cycle_state.
297 */
298static struct xhci_segment *find_trb_seg(
299 struct xhci_segment *start_seg,
300 union xhci_trb *trb, int *cycle_state)
301{
302 struct xhci_segment *cur_seg = start_seg;
303 struct xhci_generic_trb *generic_trb;
304
305 while (cur_seg->trbs > trb ||
306 &cur_seg->trbs[TRBS_PER_SEGMENT - 1] < trb) {
307 generic_trb = &cur_seg->trbs[TRBS_PER_SEGMENT - 1].generic;
308 if (TRB_TYPE(generic_trb->field[3]) == TRB_LINK &&
309 (generic_trb->field[3] & LINK_TOGGLE))
310 *cycle_state = ~(*cycle_state) & 0x1;
311 cur_seg = cur_seg->next;
312 if (cur_seg == start_seg)
313 /* Looped over the entire list. Oops! */
314 return 0;
315 }
316 return cur_seg;
317}
318
319struct dequeue_state {
320 struct xhci_segment *new_deq_seg;
321 union xhci_trb *new_deq_ptr;
322 int new_cycle_state;
323};
324
325/*
326 * Move the xHC's endpoint ring dequeue pointer past cur_td.
327 * Record the new state of the xHC's endpoint ring dequeue segment,
328 * dequeue pointer, and new consumer cycle state in state.
329 * Update our internal representation of the ring's dequeue pointer.
330 *
331 * We do this in three jumps:
332 * - First we update our new ring state to be the same as when the xHC stopped.
333 * - Then we traverse the ring to find the segment that contains
334 * the last TRB in the TD. We toggle the xHC's new cycle state when we pass
335 * any link TRBs with the toggle cycle bit set.
336 * - Finally we move the dequeue state one TRB further, toggling the cycle bit
337 * if we've moved it past a link TRB with the toggle cycle bit set.
338 */
339static void find_new_dequeue_state(struct xhci_hcd *xhci,
340 unsigned int slot_id, unsigned int ep_index,
341 struct xhci_td *cur_td, struct dequeue_state *state)
342{
343 struct xhci_virt_device *dev = xhci->devs[slot_id];
344 struct xhci_ring *ep_ring = dev->ep_rings[ep_index];
345 struct xhci_generic_trb *trb;
346
347 state->new_cycle_state = 0;
348 state->new_deq_seg = find_trb_seg(cur_td->start_seg,
349 ep_ring->stopped_trb,
350 &state->new_cycle_state);
351 if (!state->new_deq_seg)
352 BUG();
353 /* Dig out the cycle state saved by the xHC during the stop ep cmd */
8e595a5d 354 state->new_cycle_state = 0x1 & dev->out_ctx->ep[ep_index].deq;
ae636747
SS
355
356 state->new_deq_ptr = cur_td->last_trb;
357 state->new_deq_seg = find_trb_seg(state->new_deq_seg,
358 state->new_deq_ptr,
359 &state->new_cycle_state);
360 if (!state->new_deq_seg)
361 BUG();
362
363 trb = &state->new_deq_ptr->generic;
364 if (TRB_TYPE(trb->field[3]) == TRB_LINK &&
365 (trb->field[3] & LINK_TOGGLE))
366 state->new_cycle_state = ~(state->new_cycle_state) & 0x1;
367 next_trb(xhci, ep_ring, &state->new_deq_seg, &state->new_deq_ptr);
368
369 /* Don't update the ring cycle state for the producer (us). */
370 ep_ring->dequeue = state->new_deq_ptr;
371 ep_ring->deq_seg = state->new_deq_seg;
372}
373
23e3be11 374static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
ae636747
SS
375 struct xhci_td *cur_td)
376{
377 struct xhci_segment *cur_seg;
378 union xhci_trb *cur_trb;
379
380 for (cur_seg = cur_td->start_seg, cur_trb = cur_td->first_trb;
381 true;
382 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
383 if ((cur_trb->generic.field[3] & TRB_TYPE_BITMASK) ==
384 TRB_TYPE(TRB_LINK)) {
385 /* Unchain any chained Link TRBs, but
386 * leave the pointers intact.
387 */
388 cur_trb->generic.field[3] &= ~TRB_CHAIN;
389 xhci_dbg(xhci, "Cancel (unchain) link TRB\n");
700e2052
GKH
390 xhci_dbg(xhci, "Address = %p (0x%llx dma); "
391 "in seg %p (0x%llx dma)\n",
392 cur_trb,
23e3be11 393 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
700e2052
GKH
394 cur_seg,
395 (unsigned long long)cur_seg->dma);
ae636747
SS
396 } else {
397 cur_trb->generic.field[0] = 0;
398 cur_trb->generic.field[1] = 0;
399 cur_trb->generic.field[2] = 0;
400 /* Preserve only the cycle bit of this TRB */
401 cur_trb->generic.field[3] &= TRB_CYCLE;
402 cur_trb->generic.field[3] |= TRB_TYPE(TRB_TR_NOOP);
700e2052
GKH
403 xhci_dbg(xhci, "Cancel TRB %p (0x%llx dma) "
404 "in seg %p (0x%llx dma)\n",
405 cur_trb,
23e3be11 406 (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb),
700e2052
GKH
407 cur_seg,
408 (unsigned long long)cur_seg->dma);
ae636747
SS
409 }
410 if (cur_trb == cur_td->last_trb)
411 break;
412 }
413}
414
415static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
416 unsigned int ep_index, struct xhci_segment *deq_seg,
417 union xhci_trb *deq_ptr, u32 cycle_state);
418
419/*
420 * When we get a command completion for a Stop Endpoint Command, we need to
421 * unlink any cancelled TDs from the ring. There are two ways to do that:
422 *
423 * 1. If the HW was in the middle of processing the TD that needs to be
424 * cancelled, then we must move the ring's dequeue pointer past the last TRB
425 * in the TD with a Set Dequeue Pointer Command.
426 * 2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain
427 * bit cleared) so that the HW will skip over them.
428 */
429static void handle_stopped_endpoint(struct xhci_hcd *xhci,
430 union xhci_trb *trb)
431{
432 unsigned int slot_id;
433 unsigned int ep_index;
434 struct xhci_ring *ep_ring;
435 struct list_head *entry;
436 struct xhci_td *cur_td = 0;
437 struct xhci_td *last_unlinked_td;
438
439 struct dequeue_state deq_state;
440#ifdef CONFIG_USB_HCD_STAT
441 ktime_t stop_time = ktime_get();
442#endif
443
444 memset(&deq_state, 0, sizeof(deq_state));
445 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
446 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
447 ep_ring = xhci->devs[slot_id]->ep_rings[ep_index];
448
449 if (list_empty(&ep_ring->cancelled_td_list))
450 return;
451
452 /* Fix up the ep ring first, so HW stops executing cancelled TDs.
453 * We have the xHCI lock, so nothing can modify this list until we drop
454 * it. We're also in the event handler, so we can't get re-interrupted
455 * if another Stop Endpoint command completes
456 */
457 list_for_each(entry, &ep_ring->cancelled_td_list) {
458 cur_td = list_entry(entry, struct xhci_td, cancelled_td_list);
700e2052
GKH
459 xhci_dbg(xhci, "Cancelling TD starting at %p, 0x%llx (dma).\n",
460 cur_td->first_trb,
23e3be11 461 (unsigned long long)xhci_trb_virt_to_dma(cur_td->start_seg, cur_td->first_trb));
ae636747
SS
462 /*
463 * If we stopped on the TD we need to cancel, then we have to
464 * move the xHC endpoint ring dequeue pointer past this TD.
465 */
466 if (cur_td == ep_ring->stopped_td)
467 find_new_dequeue_state(xhci, slot_id, ep_index, cur_td,
468 &deq_state);
469 else
470 td_to_noop(xhci, ep_ring, cur_td);
471 /*
472 * The event handler won't see a completion for this TD anymore,
473 * so remove it from the endpoint ring's TD list. Keep it in
474 * the cancelled TD list for URB completion later.
475 */
476 list_del(&cur_td->td_list);
477 ep_ring->cancels_pending--;
478 }
479 last_unlinked_td = cur_td;
480
481 /* If necessary, queue a Set Transfer Ring Dequeue Pointer command */
482 if (deq_state.new_deq_ptr && deq_state.new_deq_seg) {
700e2052
GKH
483 xhci_dbg(xhci, "Set TR Deq Ptr cmd, new deq seg = %p (0x%llx dma), "
484 "new deq ptr = %p (0x%llx dma), new cycle = %u\n",
485 deq_state.new_deq_seg,
486 (unsigned long long)deq_state.new_deq_seg->dma,
487 deq_state.new_deq_ptr,
23e3be11 488 (unsigned long long)xhci_trb_virt_to_dma(deq_state.new_deq_seg, deq_state.new_deq_ptr),
ae636747
SS
489 deq_state.new_cycle_state);
490 queue_set_tr_deq(xhci, slot_id, ep_index,
491 deq_state.new_deq_seg,
492 deq_state.new_deq_ptr,
493 (u32) deq_state.new_cycle_state);
494 /* Stop the TD queueing code from ringing the doorbell until
495 * this command completes. The HC won't set the dequeue pointer
496 * if the ring is running, and ringing the doorbell starts the
497 * ring running.
498 */
499 ep_ring->state |= SET_DEQ_PENDING;
23e3be11 500 xhci_ring_cmd_db(xhci);
ae636747
SS
501 } else {
502 /* Otherwise just ring the doorbell to restart the ring */
503 ring_ep_doorbell(xhci, slot_id, ep_index);
504 }
505
506 /*
507 * Drop the lock and complete the URBs in the cancelled TD list.
508 * New TDs to be cancelled might be added to the end of the list before
509 * we can complete all the URBs for the TDs we already unlinked.
510 * So stop when we've completed the URB for the last TD we unlinked.
511 */
512 do {
513 cur_td = list_entry(ep_ring->cancelled_td_list.next,
514 struct xhci_td, cancelled_td_list);
515 list_del(&cur_td->cancelled_td_list);
516
517 /* Clean up the cancelled URB */
518#ifdef CONFIG_USB_HCD_STAT
519 hcd_stat_update(xhci->tp_stat, cur_td->urb->actual_length,
520 ktime_sub(stop_time, cur_td->start_time));
521#endif
522 cur_td->urb->hcpriv = NULL;
523 usb_hcd_unlink_urb_from_ep(xhci_to_hcd(xhci), cur_td->urb);
524
700e2052 525 xhci_dbg(xhci, "Giveback cancelled URB %p\n", cur_td->urb);
ae636747
SS
526 spin_unlock(&xhci->lock);
527 /* Doesn't matter what we pass for status, since the core will
528 * just overwrite it (because the URB has been unlinked).
529 */
530 usb_hcd_giveback_urb(xhci_to_hcd(xhci), cur_td->urb, 0);
531 kfree(cur_td);
532
533 spin_lock(&xhci->lock);
534 } while (cur_td != last_unlinked_td);
535
536 /* Return to the event handler with xhci->lock re-acquired */
537}
538
539/*
540 * When we get a completion for a Set Transfer Ring Dequeue Pointer command,
541 * we need to clear the set deq pending flag in the endpoint ring state, so that
542 * the TD queueing code can ring the doorbell again. We also need to ring the
543 * endpoint doorbell to restart the ring, but only if there aren't more
544 * cancellations pending.
545 */
546static void handle_set_deq_completion(struct xhci_hcd *xhci,
547 struct xhci_event_cmd *event,
548 union xhci_trb *trb)
549{
550 unsigned int slot_id;
551 unsigned int ep_index;
552 struct xhci_ring *ep_ring;
553 struct xhci_virt_device *dev;
554
555 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
556 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
557 dev = xhci->devs[slot_id];
558 ep_ring = dev->ep_rings[ep_index];
559
560 if (GET_COMP_CODE(event->status) != COMP_SUCCESS) {
561 unsigned int ep_state;
562 unsigned int slot_state;
563
564 switch (GET_COMP_CODE(event->status)) {
565 case COMP_TRB_ERR:
566 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because "
567 "of stream ID configuration\n");
568 break;
569 case COMP_CTX_STATE:
570 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due "
571 "to incorrect slot or ep state.\n");
572 ep_state = dev->out_ctx->ep[ep_index].ep_info;
573 ep_state &= EP_STATE_MASK;
574 slot_state = dev->out_ctx->slot.dev_state;
575 slot_state = GET_SLOT_STATE(slot_state);
576 xhci_dbg(xhci, "Slot state = %u, EP state = %u\n",
577 slot_state, ep_state);
578 break;
579 case COMP_EBADSLT:
580 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because "
581 "slot %u was not enabled.\n", slot_id);
582 break;
583 default:
584 xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown "
585 "completion code of %u.\n",
586 GET_COMP_CODE(event->status));
587 break;
588 }
589 /* OK what do we do now? The endpoint state is hosed, and we
590 * should never get to this point if the synchronization between
591 * queueing, and endpoint state are correct. This might happen
592 * if the device gets disconnected after we've finished
593 * cancelling URBs, which might not be an error...
594 */
595 } else {
8e595a5d
SS
596 xhci_dbg(xhci, "Successful Set TR Deq Ptr cmd, deq = @%08llx\n",
597 dev->out_ctx->ep[ep_index].deq);
ae636747
SS
598 }
599
600 ep_ring->state &= ~SET_DEQ_PENDING;
601 ring_ep_doorbell(xhci, slot_id, ep_index);
602}
603
a1587d97
SS
604static void handle_reset_ep_completion(struct xhci_hcd *xhci,
605 struct xhci_event_cmd *event,
606 union xhci_trb *trb)
607{
608 int slot_id;
609 unsigned int ep_index;
610
611 slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]);
612 ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]);
613 /* This command will only fail if the endpoint wasn't halted,
614 * but we don't care.
615 */
616 xhci_dbg(xhci, "Ignoring reset ep completion code of %u\n",
617 (unsigned int) GET_COMP_CODE(event->status));
618
619 /* Clear our internal halted state and restart the ring */
620 xhci->devs[slot_id]->ep_rings[ep_index]->state &= ~EP_HALTED;
621 ring_ep_doorbell(xhci, slot_id, ep_index);
622}
ae636747 623
7f84eef0
SS
624static void handle_cmd_completion(struct xhci_hcd *xhci,
625 struct xhci_event_cmd *event)
626{
3ffbba95 627 int slot_id = TRB_TO_SLOT_ID(event->flags);
7f84eef0
SS
628 u64 cmd_dma;
629 dma_addr_t cmd_dequeue_dma;
630
8e595a5d 631 cmd_dma = event->cmd_trb;
23e3be11 632 cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
7f84eef0
SS
633 xhci->cmd_ring->dequeue);
634 /* Is the command ring deq ptr out of sync with the deq seg ptr? */
635 if (cmd_dequeue_dma == 0) {
636 xhci->error_bitmask |= 1 << 4;
637 return;
638 }
639 /* Does the DMA address match our internal dequeue pointer address? */
640 if (cmd_dma != (u64) cmd_dequeue_dma) {
641 xhci->error_bitmask |= 1 << 5;
642 return;
643 }
644 switch (xhci->cmd_ring->dequeue->generic.field[3] & TRB_TYPE_BITMASK) {
3ffbba95
SS
645 case TRB_TYPE(TRB_ENABLE_SLOT):
646 if (GET_COMP_CODE(event->status) == COMP_SUCCESS)
647 xhci->slot_id = slot_id;
648 else
649 xhci->slot_id = 0;
650 complete(&xhci->addr_dev);
651 break;
652 case TRB_TYPE(TRB_DISABLE_SLOT):
653 if (xhci->devs[slot_id])
654 xhci_free_virt_device(xhci, slot_id);
655 break;
f94e0186
SS
656 case TRB_TYPE(TRB_CONFIG_EP):
657 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
658 complete(&xhci->devs[slot_id]->cmd_completion);
659 break;
3ffbba95
SS
660 case TRB_TYPE(TRB_ADDR_DEV):
661 xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status);
662 complete(&xhci->addr_dev);
663 break;
ae636747
SS
664 case TRB_TYPE(TRB_STOP_RING):
665 handle_stopped_endpoint(xhci, xhci->cmd_ring->dequeue);
666 break;
667 case TRB_TYPE(TRB_SET_DEQ):
668 handle_set_deq_completion(xhci, event, xhci->cmd_ring->dequeue);
669 break;
7f84eef0
SS
670 case TRB_TYPE(TRB_CMD_NOOP):
671 ++xhci->noops_handled;
672 break;
a1587d97
SS
673 case TRB_TYPE(TRB_RESET_EP):
674 handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue);
675 break;
7f84eef0
SS
676 default:
677 /* Skip over unknown commands on the event ring */
678 xhci->error_bitmask |= 1 << 6;
679 break;
680 }
681 inc_deq(xhci, xhci->cmd_ring, false);
682}
683
0f2a7930
SS
684static void handle_port_status(struct xhci_hcd *xhci,
685 union xhci_trb *event)
686{
687 u32 port_id;
688
689 /* Port status change events always have a successful completion code */
690 if (GET_COMP_CODE(event->generic.field[2]) != COMP_SUCCESS) {
691 xhci_warn(xhci, "WARN: xHC returned failed port status event\n");
692 xhci->error_bitmask |= 1 << 8;
693 }
694 /* FIXME: core doesn't care about all port link state changes yet */
695 port_id = GET_PORT_ID(event->generic.field[0]);
696 xhci_dbg(xhci, "Port Status Change Event for port %d\n", port_id);
697
698 /* Update event ring dequeue pointer before dropping the lock */
699 inc_deq(xhci, xhci->event_ring, true);
23e3be11 700 xhci_set_hc_event_deq(xhci);
0f2a7930
SS
701
702 spin_unlock(&xhci->lock);
703 /* Pass this up to the core */
704 usb_hcd_poll_rh_status(xhci_to_hcd(xhci));
705 spin_lock(&xhci->lock);
706}
707
d0e96f5a
SS
708/*
709 * This TD is defined by the TRBs starting at start_trb in start_seg and ending
710 * at end_trb, which may be in another segment. If the suspect DMA address is a
711 * TRB in this TD, this function returns that TRB's segment. Otherwise it
712 * returns 0.
713 */
714static struct xhci_segment *trb_in_td(
715 struct xhci_segment *start_seg,
716 union xhci_trb *start_trb,
717 union xhci_trb *end_trb,
718 dma_addr_t suspect_dma)
719{
720 dma_addr_t start_dma;
721 dma_addr_t end_seg_dma;
722 dma_addr_t end_trb_dma;
723 struct xhci_segment *cur_seg;
724
23e3be11 725 start_dma = xhci_trb_virt_to_dma(start_seg, start_trb);
d0e96f5a
SS
726 cur_seg = start_seg;
727
728 do {
ae636747 729 /* We may get an event for a Link TRB in the middle of a TD */
23e3be11 730 end_seg_dma = xhci_trb_virt_to_dma(cur_seg,
ae636747 731 &start_seg->trbs[TRBS_PER_SEGMENT - 1]);
d0e96f5a 732 /* If the end TRB isn't in this segment, this is set to 0 */
23e3be11 733 end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb);
d0e96f5a
SS
734
735 if (end_trb_dma > 0) {
736 /* The end TRB is in this segment, so suspect should be here */
737 if (start_dma <= end_trb_dma) {
738 if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma)
739 return cur_seg;
740 } else {
741 /* Case for one segment with
742 * a TD wrapped around to the top
743 */
744 if ((suspect_dma >= start_dma &&
745 suspect_dma <= end_seg_dma) ||
746 (suspect_dma >= cur_seg->dma &&
747 suspect_dma <= end_trb_dma))
748 return cur_seg;
749 }
750 return 0;
751 } else {
752 /* Might still be somewhere in this segment */
753 if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma)
754 return cur_seg;
755 }
756 cur_seg = cur_seg->next;
23e3be11 757 start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]);
d0e96f5a
SS
758 } while (1);
759
760}
761
762/*
763 * If this function returns an error condition, it means it got a Transfer
764 * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address.
765 * At this point, the host controller is probably hosed and should be reset.
766 */
767static int handle_tx_event(struct xhci_hcd *xhci,
768 struct xhci_transfer_event *event)
769{
770 struct xhci_virt_device *xdev;
771 struct xhci_ring *ep_ring;
772 int ep_index;
773 struct xhci_td *td = 0;
774 dma_addr_t event_dma;
775 struct xhci_segment *event_seg;
776 union xhci_trb *event_trb;
ae636747 777 struct urb *urb = 0;
d0e96f5a
SS
778 int status = -EINPROGRESS;
779
780 xdev = xhci->devs[TRB_TO_SLOT_ID(event->flags)];
781 if (!xdev) {
782 xhci_err(xhci, "ERROR Transfer event pointed to bad slot\n");
783 return -ENODEV;
784 }
785
786 /* Endpoint ID is 1 based, our index is zero based */
787 ep_index = TRB_TO_EP_ID(event->flags) - 1;
788 ep_ring = xdev->ep_rings[ep_index];
789 if (!ep_ring || (xdev->out_ctx->ep[ep_index].ep_info & EP_STATE_MASK) == EP_STATE_DISABLED) {
790 xhci_err(xhci, "ERROR Transfer event pointed to disabled endpoint\n");
791 return -ENODEV;
792 }
793
8e595a5d 794 event_dma = event->buffer;
d0e96f5a
SS
795 /* This TRB should be in the TD at the head of this ring's TD list */
796 if (list_empty(&ep_ring->td_list)) {
797 xhci_warn(xhci, "WARN Event TRB for slot %d ep %d with no TDs queued?\n",
798 TRB_TO_SLOT_ID(event->flags), ep_index);
799 xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
800 (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10);
801 xhci_print_trb_offsets(xhci, (union xhci_trb *) event);
802 urb = NULL;
803 goto cleanup;
804 }
805 td = list_entry(ep_ring->td_list.next, struct xhci_td, td_list);
806
807 /* Is this a TRB in the currently executing TD? */
808 event_seg = trb_in_td(ep_ring->deq_seg, ep_ring->dequeue,
809 td->last_trb, event_dma);
810 if (!event_seg) {
811 /* HC is busted, give up! */
812 xhci_err(xhci, "ERROR Transfer event TRB DMA ptr not part of current TD\n");
813 return -ESHUTDOWN;
814 }
815 event_trb = &event_seg->trbs[(event_dma - event_seg->dma) / sizeof(*event_trb)];
b10de142
SS
816 xhci_dbg(xhci, "Event TRB with TRB type ID %u\n",
817 (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10);
8e595a5d
SS
818 xhci_dbg(xhci, "Offset 0x00 (buffer lo) = 0x%x\n",
819 lower_32_bits(event->buffer));
820 xhci_dbg(xhci, "Offset 0x04 (buffer hi) = 0x%x\n",
821 upper_32_bits(event->buffer));
b10de142
SS
822 xhci_dbg(xhci, "Offset 0x08 (transfer length) = 0x%x\n",
823 (unsigned int) event->transfer_len);
824 xhci_dbg(xhci, "Offset 0x0C (flags) = 0x%x\n",
825 (unsigned int) event->flags);
826
827 /* Look for common error cases */
828 switch (GET_COMP_CODE(event->transfer_len)) {
829 /* Skip codes that require special handling depending on
830 * transfer type
831 */
832 case COMP_SUCCESS:
833 case COMP_SHORT_TX:
834 break;
ae636747
SS
835 case COMP_STOP:
836 xhci_dbg(xhci, "Stopped on Transfer TRB\n");
837 break;
838 case COMP_STOP_INVAL:
839 xhci_dbg(xhci, "Stopped on No-op or Link TRB\n");
840 break;
b10de142
SS
841 case COMP_STALL:
842 xhci_warn(xhci, "WARN: Stalled endpoint\n");
a1587d97 843 ep_ring->state |= EP_HALTED;
b10de142
SS
844 status = -EPIPE;
845 break;
846 case COMP_TRB_ERR:
847 xhci_warn(xhci, "WARN: TRB error on endpoint\n");
848 status = -EILSEQ;
849 break;
850 case COMP_TX_ERR:
851 xhci_warn(xhci, "WARN: transfer error on endpoint\n");
852 status = -EPROTO;
853 break;
854 case COMP_DB_ERR:
855 xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n");
856 status = -ENOSR;
857 break;
858 default:
859 xhci_warn(xhci, "ERROR Unknown event condition, HC probably busted\n");
860 urb = NULL;
861 goto cleanup;
862 }
d0e96f5a
SS
863 /* Now update the urb's actual_length and give back to the core */
864 /* Was this a control transfer? */
865 if (usb_endpoint_xfer_control(&td->urb->ep->desc)) {
866 xhci_debug_trb(xhci, xhci->event_ring->dequeue);
867 switch (GET_COMP_CODE(event->transfer_len)) {
868 case COMP_SUCCESS:
869 if (event_trb == ep_ring->dequeue) {
870 xhci_warn(xhci, "WARN: Success on ctrl setup TRB without IOC set??\n");
871 status = -ESHUTDOWN;
872 } else if (event_trb != td->last_trb) {
873 xhci_warn(xhci, "WARN: Success on ctrl data TRB without IOC set??\n");
874 status = -ESHUTDOWN;
875 } else {
876 xhci_dbg(xhci, "Successful control transfer!\n");
877 status = 0;
878 }
879 break;
880 case COMP_SHORT_TX:
881 xhci_warn(xhci, "WARN: short transfer on control ep\n");
882 status = -EREMOTEIO;
883 break;
d0e96f5a 884 default:
b10de142
SS
885 /* Others already handled above */
886 break;
d0e96f5a
SS
887 }
888 /*
889 * Did we transfer any data, despite the errors that might have
890 * happened? I.e. did we get past the setup stage?
891 */
892 if (event_trb != ep_ring->dequeue) {
893 /* The event was for the status stage */
894 if (event_trb == td->last_trb) {
ae636747
SS
895 td->urb->actual_length =
896 td->urb->transfer_buffer_length;
d0e96f5a 897 } else {
ae636747
SS
898 /* Maybe the event was for the data stage? */
899 if (GET_COMP_CODE(event->transfer_len) != COMP_STOP_INVAL)
900 /* We didn't stop on a link TRB in the middle */
901 td->urb->actual_length =
902 td->urb->transfer_buffer_length -
903 TRB_LEN(event->transfer_len);
d0e96f5a
SS
904 }
905 }
d0e96f5a 906 } else {
b10de142
SS
907 switch (GET_COMP_CODE(event->transfer_len)) {
908 case COMP_SUCCESS:
909 /* Double check that the HW transferred everything. */
910 if (event_trb != td->last_trb) {
911 xhci_warn(xhci, "WARN Successful completion "
912 "on short TX\n");
913 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
914 status = -EREMOTEIO;
915 else
916 status = 0;
917 } else {
918 xhci_dbg(xhci, "Successful bulk transfer!\n");
919 status = 0;
920 }
921 break;
922 case COMP_SHORT_TX:
923 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
924 status = -EREMOTEIO;
925 else
926 status = 0;
927 break;
928 default:
929 /* Others already handled above */
930 break;
931 }
932 dev_dbg(&td->urb->dev->dev,
933 "ep %#x - asked for %d bytes, "
934 "%d bytes untransferred\n",
935 td->urb->ep->desc.bEndpointAddress,
936 td->urb->transfer_buffer_length,
937 TRB_LEN(event->transfer_len));
938 /* Fast path - was this the last TRB in the TD for this URB? */
939 if (event_trb == td->last_trb) {
940 if (TRB_LEN(event->transfer_len) != 0) {
941 td->urb->actual_length =
942 td->urb->transfer_buffer_length -
943 TRB_LEN(event->transfer_len);
944 if (td->urb->actual_length < 0) {
945 xhci_warn(xhci, "HC gave bad length "
946 "of %d bytes left\n",
947 TRB_LEN(event->transfer_len));
948 td->urb->actual_length = 0;
949 }
950 if (td->urb->transfer_flags & URB_SHORT_NOT_OK)
951 status = -EREMOTEIO;
952 else
953 status = 0;
954 } else {
955 td->urb->actual_length = td->urb->transfer_buffer_length;
956 /* Ignore a short packet completion if the
957 * untransferred length was zero.
958 */
959 status = 0;
960 }
961 } else {
ae636747
SS
962 /* Slow path - walk the list, starting from the dequeue
963 * pointer, to get the actual length transferred.
b10de142 964 */
ae636747
SS
965 union xhci_trb *cur_trb;
966 struct xhci_segment *cur_seg;
967
b10de142 968 td->urb->actual_length = 0;
ae636747
SS
969 for (cur_trb = ep_ring->dequeue, cur_seg = ep_ring->deq_seg;
970 cur_trb != event_trb;
971 next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) {
972 if (TRB_TYPE(cur_trb->generic.field[3]) != TRB_TR_NOOP &&
973 TRB_TYPE(cur_trb->generic.field[3]) != TRB_LINK)
974 td->urb->actual_length +=
975 TRB_LEN(cur_trb->generic.field[2]);
b10de142 976 }
ae636747
SS
977 /* If the ring didn't stop on a Link or No-op TRB, add
978 * in the actual bytes transferred from the Normal TRB
979 */
980 if (GET_COMP_CODE(event->transfer_len) != COMP_STOP_INVAL)
981 td->urb->actual_length +=
982 TRB_LEN(cur_trb->generic.field[2]) -
983 TRB_LEN(event->transfer_len);
b10de142 984 }
d0e96f5a 985 }
ae636747
SS
986 /* The Endpoint Stop Command completion will take care of
987 * any stopped TDs. A stopped TD may be restarted, so don't update the
988 * ring dequeue pointer or take this TD off any lists yet.
989 */
990 if (GET_COMP_CODE(event->transfer_len) == COMP_STOP_INVAL ||
991 GET_COMP_CODE(event->transfer_len) == COMP_STOP) {
992 ep_ring->stopped_td = td;
993 ep_ring->stopped_trb = event_trb;
994 } else {
995 /* Update ring dequeue pointer */
996 while (ep_ring->dequeue != td->last_trb)
997 inc_deq(xhci, ep_ring, false);
b10de142 998 inc_deq(xhci, ep_ring, false);
b10de142 999
ae636747
SS
1000 /* Clean up the endpoint's TD list */
1001 urb = td->urb;
1002 list_del(&td->td_list);
1003 /* Was this TD slated to be cancelled but completed anyway? */
1004 if (!list_empty(&td->cancelled_td_list)) {
1005 list_del(&td->cancelled_td_list);
1006 ep_ring->cancels_pending--;
1007 }
1008 kfree(td);
1009 urb->hcpriv = NULL;
1010 }
d0e96f5a
SS
1011cleanup:
1012 inc_deq(xhci, xhci->event_ring, true);
23e3be11 1013 xhci_set_hc_event_deq(xhci);
d0e96f5a 1014
b10de142 1015 /* FIXME for multi-TD URBs (who have buffers bigger than 64MB) */
d0e96f5a
SS
1016 if (urb) {
1017 usb_hcd_unlink_urb_from_ep(xhci_to_hcd(xhci), urb);
1018 spin_unlock(&xhci->lock);
1019 usb_hcd_giveback_urb(xhci_to_hcd(xhci), urb, status);
1020 spin_lock(&xhci->lock);
1021 }
1022 return 0;
1023}
1024
0f2a7930
SS
1025/*
1026 * This function handles all OS-owned events on the event ring. It may drop
1027 * xhci->lock between event processing (e.g. to pass up port status changes).
1028 */
b7258a4a 1029void xhci_handle_event(struct xhci_hcd *xhci)
7f84eef0
SS
1030{
1031 union xhci_trb *event;
0f2a7930 1032 int update_ptrs = 1;
d0e96f5a 1033 int ret;
7f84eef0
SS
1034
1035 if (!xhci->event_ring || !xhci->event_ring->dequeue) {
1036 xhci->error_bitmask |= 1 << 1;
1037 return;
1038 }
1039
1040 event = xhci->event_ring->dequeue;
1041 /* Does the HC or OS own the TRB? */
1042 if ((event->event_cmd.flags & TRB_CYCLE) !=
1043 xhci->event_ring->cycle_state) {
1044 xhci->error_bitmask |= 1 << 2;
1045 return;
1046 }
1047
0f2a7930 1048 /* FIXME: Handle more event types. */
7f84eef0
SS
1049 switch ((event->event_cmd.flags & TRB_TYPE_BITMASK)) {
1050 case TRB_TYPE(TRB_COMPLETION):
1051 handle_cmd_completion(xhci, &event->event_cmd);
1052 break;
0f2a7930
SS
1053 case TRB_TYPE(TRB_PORT_STATUS):
1054 handle_port_status(xhci, event);
1055 update_ptrs = 0;
1056 break;
d0e96f5a
SS
1057 case TRB_TYPE(TRB_TRANSFER):
1058 ret = handle_tx_event(xhci, &event->trans_event);
1059 if (ret < 0)
1060 xhci->error_bitmask |= 1 << 9;
1061 else
1062 update_ptrs = 0;
1063 break;
7f84eef0
SS
1064 default:
1065 xhci->error_bitmask |= 1 << 3;
1066 }
1067
0f2a7930
SS
1068 if (update_ptrs) {
1069 /* Update SW and HC event ring dequeue pointer */
1070 inc_deq(xhci, xhci->event_ring, true);
23e3be11 1071 xhci_set_hc_event_deq(xhci);
0f2a7930 1072 }
7f84eef0 1073 /* Are there more items on the event ring? */
b7258a4a 1074 xhci_handle_event(xhci);
7f84eef0
SS
1075}
1076
d0e96f5a
SS
1077/**** Endpoint Ring Operations ****/
1078
7f84eef0
SS
1079/*
1080 * Generic function for queueing a TRB on a ring.
1081 * The caller must have checked to make sure there's room on the ring.
1082 */
1083static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring,
1084 bool consumer,
1085 u32 field1, u32 field2, u32 field3, u32 field4)
1086{
1087 struct xhci_generic_trb *trb;
1088
1089 trb = &ring->enqueue->generic;
1090 trb->field[0] = field1;
1091 trb->field[1] = field2;
1092 trb->field[2] = field3;
1093 trb->field[3] = field4;
1094 inc_enq(xhci, ring, consumer);
1095}
1096
d0e96f5a
SS
1097/*
1098 * Does various checks on the endpoint ring, and makes it ready to queue num_trbs.
1099 * FIXME allocate segments if the ring is full.
1100 */
1101static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
1102 u32 ep_state, unsigned int num_trbs, gfp_t mem_flags)
1103{
1104 /* Make sure the endpoint has been added to xHC schedule */
1105 xhci_dbg(xhci, "Endpoint state = 0x%x\n", ep_state);
1106 switch (ep_state) {
1107 case EP_STATE_DISABLED:
1108 /*
1109 * USB core changed config/interfaces without notifying us,
1110 * or hardware is reporting the wrong state.
1111 */
1112 xhci_warn(xhci, "WARN urb submitted to disabled ep\n");
1113 return -ENOENT;
1114 case EP_STATE_HALTED:
1115 case EP_STATE_ERROR:
1116 xhci_warn(xhci, "WARN waiting for halt or error on ep "
1117 "to be cleared\n");
1118 /* FIXME event handling code for error needs to clear it */
1119 /* XXX not sure if this should be -ENOENT or not */
1120 return -EINVAL;
1121 case EP_STATE_STOPPED:
1122 case EP_STATE_RUNNING:
1123 break;
1124 default:
1125 xhci_err(xhci, "ERROR unknown endpoint state for ep\n");
1126 /*
1127 * FIXME issue Configure Endpoint command to try to get the HC
1128 * back into a known state.
1129 */
1130 return -EINVAL;
1131 }
1132 if (!room_on_ring(xhci, ep_ring, num_trbs)) {
1133 /* FIXME allocate more room */
1134 xhci_err(xhci, "ERROR no room on ep ring\n");
1135 return -ENOMEM;
1136 }
1137 return 0;
1138}
1139
23e3be11 1140static int prepare_transfer(struct xhci_hcd *xhci,
d0e96f5a
SS
1141 struct xhci_virt_device *xdev,
1142 unsigned int ep_index,
1143 unsigned int num_trbs,
1144 struct urb *urb,
1145 struct xhci_td **td,
1146 gfp_t mem_flags)
1147{
1148 int ret;
1149
1150 ret = prepare_ring(xhci, xdev->ep_rings[ep_index],
1151 xdev->out_ctx->ep[ep_index].ep_info & EP_STATE_MASK,
1152 num_trbs, mem_flags);
1153 if (ret)
1154 return ret;
1155 *td = kzalloc(sizeof(struct xhci_td), mem_flags);
1156 if (!*td)
1157 return -ENOMEM;
1158 INIT_LIST_HEAD(&(*td)->td_list);
ae636747 1159 INIT_LIST_HEAD(&(*td)->cancelled_td_list);
d0e96f5a
SS
1160
1161 ret = usb_hcd_link_urb_to_ep(xhci_to_hcd(xhci), urb);
1162 if (unlikely(ret)) {
1163 kfree(*td);
1164 return ret;
1165 }
1166
1167 (*td)->urb = urb;
1168 urb->hcpriv = (void *) (*td);
1169 /* Add this TD to the tail of the endpoint ring's TD list */
1170 list_add_tail(&(*td)->td_list, &xdev->ep_rings[ep_index]->td_list);
ae636747
SS
1171 (*td)->start_seg = xdev->ep_rings[ep_index]->enq_seg;
1172 (*td)->first_trb = xdev->ep_rings[ep_index]->enqueue;
d0e96f5a
SS
1173
1174 return 0;
1175}
1176
23e3be11 1177static unsigned int count_sg_trbs_needed(struct xhci_hcd *xhci, struct urb *urb)
8a96c052
SS
1178{
1179 int num_sgs, num_trbs, running_total, temp, i;
1180 struct scatterlist *sg;
1181
1182 sg = NULL;
1183 num_sgs = urb->num_sgs;
1184 temp = urb->transfer_buffer_length;
1185
1186 xhci_dbg(xhci, "count sg list trbs: \n");
1187 num_trbs = 0;
1188 for_each_sg(urb->sg->sg, sg, num_sgs, i) {
1189 unsigned int previous_total_trbs = num_trbs;
1190 unsigned int len = sg_dma_len(sg);
1191
1192 /* Scatter gather list entries may cross 64KB boundaries */
1193 running_total = TRB_MAX_BUFF_SIZE -
1194 (sg_dma_address(sg) & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1195 if (running_total != 0)
1196 num_trbs++;
1197
1198 /* How many more 64KB chunks to transfer, how many more TRBs? */
1199 while (running_total < sg_dma_len(sg)) {
1200 num_trbs++;
1201 running_total += TRB_MAX_BUFF_SIZE;
1202 }
700e2052
GKH
1203 xhci_dbg(xhci, " sg #%d: dma = %#llx, len = %#x (%d), num_trbs = %d\n",
1204 i, (unsigned long long)sg_dma_address(sg),
1205 len, len, num_trbs - previous_total_trbs);
8a96c052
SS
1206
1207 len = min_t(int, len, temp);
1208 temp -= len;
1209 if (temp == 0)
1210 break;
1211 }
1212 xhci_dbg(xhci, "\n");
1213 if (!in_interrupt())
1214 dev_dbg(&urb->dev->dev, "ep %#x - urb len = %d, sglist used, num_trbs = %d\n",
1215 urb->ep->desc.bEndpointAddress,
1216 urb->transfer_buffer_length,
1217 num_trbs);
1218 return num_trbs;
1219}
1220
23e3be11 1221static void check_trb_math(struct urb *urb, int num_trbs, int running_total)
8a96c052
SS
1222{
1223 if (num_trbs != 0)
1224 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated number of "
1225 "TRBs, %d left\n", __func__,
1226 urb->ep->desc.bEndpointAddress, num_trbs);
1227 if (running_total != urb->transfer_buffer_length)
1228 dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, "
1229 "queued %#x (%d), asked for %#x (%d)\n",
1230 __func__,
1231 urb->ep->desc.bEndpointAddress,
1232 running_total, running_total,
1233 urb->transfer_buffer_length,
1234 urb->transfer_buffer_length);
1235}
1236
23e3be11 1237static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id,
8a96c052
SS
1238 unsigned int ep_index, int start_cycle,
1239 struct xhci_generic_trb *start_trb, struct xhci_td *td)
1240{
8a96c052
SS
1241 /*
1242 * Pass all the TRBs to the hardware at once and make sure this write
1243 * isn't reordered.
1244 */
1245 wmb();
1246 start_trb->field[3] |= start_cycle;
ae636747 1247 ring_ep_doorbell(xhci, slot_id, ep_index);
8a96c052
SS
1248}
1249
23e3be11 1250static int queue_bulk_sg_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
8a96c052
SS
1251 struct urb *urb, int slot_id, unsigned int ep_index)
1252{
1253 struct xhci_ring *ep_ring;
1254 unsigned int num_trbs;
1255 struct xhci_td *td;
1256 struct scatterlist *sg;
1257 int num_sgs;
1258 int trb_buff_len, this_sg_len, running_total;
1259 bool first_trb;
1260 u64 addr;
1261
1262 struct xhci_generic_trb *start_trb;
1263 int start_cycle;
1264
1265 ep_ring = xhci->devs[slot_id]->ep_rings[ep_index];
1266 num_trbs = count_sg_trbs_needed(xhci, urb);
1267 num_sgs = urb->num_sgs;
1268
23e3be11 1269 trb_buff_len = prepare_transfer(xhci, xhci->devs[slot_id],
8a96c052
SS
1270 ep_index, num_trbs, urb, &td, mem_flags);
1271 if (trb_buff_len < 0)
1272 return trb_buff_len;
1273 /*
1274 * Don't give the first TRB to the hardware (by toggling the cycle bit)
1275 * until we've finished creating all the other TRBs. The ring's cycle
1276 * state may change as we enqueue the other TRBs, so save it too.
1277 */
1278 start_trb = &ep_ring->enqueue->generic;
1279 start_cycle = ep_ring->cycle_state;
1280
1281 running_total = 0;
1282 /*
1283 * How much data is in the first TRB?
1284 *
1285 * There are three forces at work for TRB buffer pointers and lengths:
1286 * 1. We don't want to walk off the end of this sg-list entry buffer.
1287 * 2. The transfer length that the driver requested may be smaller than
1288 * the amount of memory allocated for this scatter-gather list.
1289 * 3. TRBs buffers can't cross 64KB boundaries.
1290 */
1291 sg = urb->sg->sg;
1292 addr = (u64) sg_dma_address(sg);
1293 this_sg_len = sg_dma_len(sg);
1294 trb_buff_len = TRB_MAX_BUFF_SIZE -
1295 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1296 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
1297 if (trb_buff_len > urb->transfer_buffer_length)
1298 trb_buff_len = urb->transfer_buffer_length;
1299 xhci_dbg(xhci, "First length to xfer from 1st sglist entry = %u\n",
1300 trb_buff_len);
1301
1302 first_trb = true;
1303 /* Queue the first TRB, even if it's zero-length */
1304 do {
1305 u32 field = 0;
f9dc68fe 1306 u32 length_field = 0;
8a96c052
SS
1307
1308 /* Don't change the cycle bit of the first TRB until later */
1309 if (first_trb)
1310 first_trb = false;
1311 else
1312 field |= ep_ring->cycle_state;
1313
1314 /* Chain all the TRBs together; clear the chain bit in the last
1315 * TRB to indicate it's the last TRB in the chain.
1316 */
1317 if (num_trbs > 1) {
1318 field |= TRB_CHAIN;
1319 } else {
1320 /* FIXME - add check for ZERO_PACKET flag before this */
1321 td->last_trb = ep_ring->enqueue;
1322 field |= TRB_IOC;
1323 }
1324 xhci_dbg(xhci, " sg entry: dma = %#x, len = %#x (%d), "
1325 "64KB boundary at %#x, end dma = %#x\n",
1326 (unsigned int) addr, trb_buff_len, trb_buff_len,
1327 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
1328 (unsigned int) addr + trb_buff_len);
1329 if (TRB_MAX_BUFF_SIZE -
1330 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1)) < trb_buff_len) {
1331 xhci_warn(xhci, "WARN: sg dma xfer crosses 64KB boundaries!\n");
1332 xhci_dbg(xhci, "Next boundary at %#x, end dma = %#x\n",
1333 (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1),
1334 (unsigned int) addr + trb_buff_len);
1335 }
f9dc68fe
SS
1336 length_field = TRB_LEN(trb_buff_len) |
1337 TD_REMAINDER(urb->transfer_buffer_length - running_total) |
1338 TRB_INTR_TARGET(0);
8a96c052 1339 queue_trb(xhci, ep_ring, false,
8e595a5d
SS
1340 lower_32_bits(addr),
1341 upper_32_bits(addr),
f9dc68fe 1342 length_field,
8a96c052
SS
1343 /* We always want to know if the TRB was short,
1344 * or we won't get an event when it completes.
1345 * (Unless we use event data TRBs, which are a
1346 * waste of space and HC resources.)
1347 */
1348 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
1349 --num_trbs;
1350 running_total += trb_buff_len;
1351
1352 /* Calculate length for next transfer --
1353 * Are we done queueing all the TRBs for this sg entry?
1354 */
1355 this_sg_len -= trb_buff_len;
1356 if (this_sg_len == 0) {
1357 --num_sgs;
1358 if (num_sgs == 0)
1359 break;
1360 sg = sg_next(sg);
1361 addr = (u64) sg_dma_address(sg);
1362 this_sg_len = sg_dma_len(sg);
1363 } else {
1364 addr += trb_buff_len;
1365 }
1366
1367 trb_buff_len = TRB_MAX_BUFF_SIZE -
1368 (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1369 trb_buff_len = min_t(int, trb_buff_len, this_sg_len);
1370 if (running_total + trb_buff_len > urb->transfer_buffer_length)
1371 trb_buff_len =
1372 urb->transfer_buffer_length - running_total;
1373 } while (running_total < urb->transfer_buffer_length);
1374
1375 check_trb_math(urb, num_trbs, running_total);
1376 giveback_first_trb(xhci, slot_id, ep_index, start_cycle, start_trb, td);
1377 return 0;
1378}
1379
b10de142 1380/* This is very similar to what ehci-q.c qtd_fill() does */
23e3be11 1381int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
b10de142
SS
1382 struct urb *urb, int slot_id, unsigned int ep_index)
1383{
1384 struct xhci_ring *ep_ring;
1385 struct xhci_td *td;
1386 int num_trbs;
1387 struct xhci_generic_trb *start_trb;
1388 bool first_trb;
1389 int start_cycle;
f9dc68fe 1390 u32 field, length_field;
b10de142
SS
1391
1392 int running_total, trb_buff_len, ret;
1393 u64 addr;
1394
8a96c052
SS
1395 if (urb->sg)
1396 return queue_bulk_sg_tx(xhci, mem_flags, urb, slot_id, ep_index);
1397
b10de142
SS
1398 ep_ring = xhci->devs[slot_id]->ep_rings[ep_index];
1399
1400 num_trbs = 0;
1401 /* How much data is (potentially) left before the 64KB boundary? */
1402 running_total = TRB_MAX_BUFF_SIZE -
1403 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1404
1405 /* If there's some data on this 64KB chunk, or we have to send a
1406 * zero-length transfer, we need at least one TRB
1407 */
1408 if (running_total != 0 || urb->transfer_buffer_length == 0)
1409 num_trbs++;
1410 /* How many more 64KB chunks to transfer, how many more TRBs? */
1411 while (running_total < urb->transfer_buffer_length) {
1412 num_trbs++;
1413 running_total += TRB_MAX_BUFF_SIZE;
1414 }
1415 /* FIXME: this doesn't deal with URB_ZERO_PACKET - need one more */
1416
1417 if (!in_interrupt())
700e2052 1418 dev_dbg(&urb->dev->dev, "ep %#x - urb len = %#x (%d), addr = %#llx, num_trbs = %d\n",
b10de142 1419 urb->ep->desc.bEndpointAddress,
8a96c052
SS
1420 urb->transfer_buffer_length,
1421 urb->transfer_buffer_length,
700e2052 1422 (unsigned long long)urb->transfer_dma,
b10de142 1423 num_trbs);
8a96c052 1424
23e3be11 1425 ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index,
b10de142
SS
1426 num_trbs, urb, &td, mem_flags);
1427 if (ret < 0)
1428 return ret;
1429
1430 /*
1431 * Don't give the first TRB to the hardware (by toggling the cycle bit)
1432 * until we've finished creating all the other TRBs. The ring's cycle
1433 * state may change as we enqueue the other TRBs, so save it too.
1434 */
1435 start_trb = &ep_ring->enqueue->generic;
1436 start_cycle = ep_ring->cycle_state;
1437
1438 running_total = 0;
1439 /* How much data is in the first TRB? */
1440 addr = (u64) urb->transfer_dma;
1441 trb_buff_len = TRB_MAX_BUFF_SIZE -
1442 (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1));
1443 if (urb->transfer_buffer_length < trb_buff_len)
1444 trb_buff_len = urb->transfer_buffer_length;
1445
1446 first_trb = true;
1447
1448 /* Queue the first TRB, even if it's zero-length */
1449 do {
1450 field = 0;
1451
1452 /* Don't change the cycle bit of the first TRB until later */
1453 if (first_trb)
1454 first_trb = false;
1455 else
1456 field |= ep_ring->cycle_state;
1457
1458 /* Chain all the TRBs together; clear the chain bit in the last
1459 * TRB to indicate it's the last TRB in the chain.
1460 */
1461 if (num_trbs > 1) {
1462 field |= TRB_CHAIN;
1463 } else {
1464 /* FIXME - add check for ZERO_PACKET flag before this */
1465 td->last_trb = ep_ring->enqueue;
1466 field |= TRB_IOC;
1467 }
f9dc68fe
SS
1468 length_field = TRB_LEN(trb_buff_len) |
1469 TD_REMAINDER(urb->transfer_buffer_length - running_total) |
1470 TRB_INTR_TARGET(0);
b10de142 1471 queue_trb(xhci, ep_ring, false,
8e595a5d
SS
1472 lower_32_bits(addr),
1473 upper_32_bits(addr),
f9dc68fe 1474 length_field,
b10de142
SS
1475 /* We always want to know if the TRB was short,
1476 * or we won't get an event when it completes.
1477 * (Unless we use event data TRBs, which are a
1478 * waste of space and HC resources.)
1479 */
1480 field | TRB_ISP | TRB_TYPE(TRB_NORMAL));
1481 --num_trbs;
1482 running_total += trb_buff_len;
1483
1484 /* Calculate length for next transfer */
1485 addr += trb_buff_len;
1486 trb_buff_len = urb->transfer_buffer_length - running_total;
1487 if (trb_buff_len > TRB_MAX_BUFF_SIZE)
1488 trb_buff_len = TRB_MAX_BUFF_SIZE;
1489 } while (running_total < urb->transfer_buffer_length);
1490
8a96c052
SS
1491 check_trb_math(urb, num_trbs, running_total);
1492 giveback_first_trb(xhci, slot_id, ep_index, start_cycle, start_trb, td);
b10de142
SS
1493 return 0;
1494}
1495
d0e96f5a 1496/* Caller must have locked xhci->lock */
23e3be11 1497int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags,
d0e96f5a
SS
1498 struct urb *urb, int slot_id, unsigned int ep_index)
1499{
1500 struct xhci_ring *ep_ring;
1501 int num_trbs;
1502 int ret;
1503 struct usb_ctrlrequest *setup;
1504 struct xhci_generic_trb *start_trb;
1505 int start_cycle;
f9dc68fe 1506 u32 field, length_field;
d0e96f5a
SS
1507 struct xhci_td *td;
1508
1509 ep_ring = xhci->devs[slot_id]->ep_rings[ep_index];
1510
1511 /*
1512 * Need to copy setup packet into setup TRB, so we can't use the setup
1513 * DMA address.
1514 */
1515 if (!urb->setup_packet)
1516 return -EINVAL;
1517
1518 if (!in_interrupt())
1519 xhci_dbg(xhci, "Queueing ctrl tx for slot id %d, ep %d\n",
1520 slot_id, ep_index);
1521 /* 1 TRB for setup, 1 for status */
1522 num_trbs = 2;
1523 /*
1524 * Don't need to check if we need additional event data and normal TRBs,
1525 * since data in control transfers will never get bigger than 16MB
1526 * XXX: can we get a buffer that crosses 64KB boundaries?
1527 */
1528 if (urb->transfer_buffer_length > 0)
1529 num_trbs++;
23e3be11 1530 ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index, num_trbs,
d0e96f5a
SS
1531 urb, &td, mem_flags);
1532 if (ret < 0)
1533 return ret;
1534
1535 /*
1536 * Don't give the first TRB to the hardware (by toggling the cycle bit)
1537 * until we've finished creating all the other TRBs. The ring's cycle
1538 * state may change as we enqueue the other TRBs, so save it too.
1539 */
1540 start_trb = &ep_ring->enqueue->generic;
1541 start_cycle = ep_ring->cycle_state;
1542
1543 /* Queue setup TRB - see section 6.4.1.2.1 */
1544 /* FIXME better way to translate setup_packet into two u32 fields? */
1545 setup = (struct usb_ctrlrequest *) urb->setup_packet;
1546 queue_trb(xhci, ep_ring, false,
1547 /* FIXME endianness is probably going to bite my ass here. */
1548 setup->bRequestType | setup->bRequest << 8 | setup->wValue << 16,
1549 setup->wIndex | setup->wLength << 16,
1550 TRB_LEN(8) | TRB_INTR_TARGET(0),
1551 /* Immediate data in pointer */
1552 TRB_IDT | TRB_TYPE(TRB_SETUP));
1553
1554 /* If there's data, queue data TRBs */
1555 field = 0;
f9dc68fe
SS
1556 length_field = TRB_LEN(urb->transfer_buffer_length) |
1557 TD_REMAINDER(urb->transfer_buffer_length) |
1558 TRB_INTR_TARGET(0);
d0e96f5a
SS
1559 if (urb->transfer_buffer_length > 0) {
1560 if (setup->bRequestType & USB_DIR_IN)
1561 field |= TRB_DIR_IN;
1562 queue_trb(xhci, ep_ring, false,
1563 lower_32_bits(urb->transfer_dma),
1564 upper_32_bits(urb->transfer_dma),
f9dc68fe 1565 length_field,
d0e96f5a
SS
1566 /* Event on short tx */
1567 field | TRB_ISP | TRB_TYPE(TRB_DATA) | ep_ring->cycle_state);
1568 }
1569
1570 /* Save the DMA address of the last TRB in the TD */
1571 td->last_trb = ep_ring->enqueue;
1572
1573 /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */
1574 /* If the device sent data, the status stage is an OUT transfer */
1575 if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN)
1576 field = 0;
1577 else
1578 field = TRB_DIR_IN;
1579 queue_trb(xhci, ep_ring, false,
1580 0,
1581 0,
1582 TRB_INTR_TARGET(0),
1583 /* Event on completion */
1584 field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state);
1585
8a96c052 1586 giveback_first_trb(xhci, slot_id, ep_index, start_cycle, start_trb, td);
d0e96f5a
SS
1587 return 0;
1588}
1589
1590/**** Command Ring Operations ****/
1591
7f84eef0
SS
1592/* Generic function for queueing a command TRB on the command ring */
1593static int queue_command(struct xhci_hcd *xhci, u32 field1, u32 field2, u32 field3, u32 field4)
1594{
1595 if (!room_on_ring(xhci, xhci->cmd_ring, 1)) {
1596 if (!in_interrupt())
1597 xhci_err(xhci, "ERR: No room for command on command ring\n");
1598 return -ENOMEM;
1599 }
1600 queue_trb(xhci, xhci->cmd_ring, false, field1, field2, field3,
1601 field4 | xhci->cmd_ring->cycle_state);
1602 return 0;
1603}
1604
1605/* Queue a no-op command on the command ring */
1606static int queue_cmd_noop(struct xhci_hcd *xhci)
1607{
1608 return queue_command(xhci, 0, 0, 0, TRB_TYPE(TRB_CMD_NOOP));
1609}
1610
1611/*
1612 * Place a no-op command on the command ring to test the command and
1613 * event ring.
1614 */
23e3be11 1615void *xhci_setup_one_noop(struct xhci_hcd *xhci)
7f84eef0
SS
1616{
1617 if (queue_cmd_noop(xhci) < 0)
1618 return NULL;
1619 xhci->noops_submitted++;
23e3be11 1620 return xhci_ring_cmd_db;
7f84eef0 1621}
3ffbba95
SS
1622
1623/* Queue a slot enable or disable request on the command ring */
23e3be11 1624int xhci_queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id)
3ffbba95
SS
1625{
1626 return queue_command(xhci, 0, 0, 0,
1627 TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id));
1628}
1629
1630/* Queue an address device command TRB */
23e3be11
SS
1631int xhci_queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
1632 u32 slot_id)
3ffbba95 1633{
8e595a5d
SS
1634 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
1635 upper_32_bits(in_ctx_ptr), 0,
3ffbba95
SS
1636 TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id));
1637}
f94e0186
SS
1638
1639/* Queue a configure endpoint command TRB */
23e3be11
SS
1640int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr,
1641 u32 slot_id)
f94e0186 1642{
8e595a5d
SS
1643 return queue_command(xhci, lower_32_bits(in_ctx_ptr),
1644 upper_32_bits(in_ctx_ptr), 0,
f94e0186
SS
1645 TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id));
1646}
ae636747 1647
23e3be11 1648int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, int slot_id,
ae636747
SS
1649 unsigned int ep_index)
1650{
1651 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
1652 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
1653 u32 type = TRB_TYPE(TRB_STOP_RING);
1654
1655 return queue_command(xhci, 0, 0, 0,
1656 trb_slot_id | trb_ep_index | type);
1657}
1658
1659/* Set Transfer Ring Dequeue Pointer command.
1660 * This should not be used for endpoints that have streams enabled.
1661 */
1662static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id,
1663 unsigned int ep_index, struct xhci_segment *deq_seg,
1664 union xhci_trb *deq_ptr, u32 cycle_state)
1665{
1666 dma_addr_t addr;
1667 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
1668 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
1669 u32 type = TRB_TYPE(TRB_SET_DEQ);
1670
23e3be11 1671 addr = xhci_trb_virt_to_dma(deq_seg, deq_ptr);
ae636747
SS
1672 if (addr == 0)
1673 xhci_warn(xhci, "WARN Cannot submit Set TR Deq Ptr\n");
700e2052
GKH
1674 xhci_warn(xhci, "WARN deq seg = %p, deq pt = %p\n",
1675 deq_seg, deq_ptr);
8e595a5d
SS
1676 return queue_command(xhci, lower_32_bits(addr) | cycle_state,
1677 upper_32_bits(addr), 0,
ae636747
SS
1678 trb_slot_id | trb_ep_index | type);
1679}
a1587d97
SS
1680
1681int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id,
1682 unsigned int ep_index)
1683{
1684 u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id);
1685 u32 trb_ep_index = EP_ID_FOR_TRB(ep_index);
1686 u32 type = TRB_TYPE(TRB_RESET_EP);
1687
1688 return queue_command(xhci, 0, 0, 0, trb_slot_id | trb_ep_index | type);
1689}
This page took 0.115484 seconds and 5 git commands to generate.