Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 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 | |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 67 | #include <linux/scatterlist.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 68 | #include <linux/slab.h> |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 69 | #include "xhci.h" |
| 70 | |
| 71 | /* |
| 72 | * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA |
| 73 | * address of the TRB. |
| 74 | */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 75 | dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg, |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 76 | union xhci_trb *trb) |
| 77 | { |
Sarah Sharp | 6071d83 | 2009-05-14 11:44:14 -0700 | [diff] [blame] | 78 | unsigned long segment_offset; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 79 | |
Sarah Sharp | 6071d83 | 2009-05-14 11:44:14 -0700 | [diff] [blame] | 80 | if (!seg || !trb || trb < seg->trbs) |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 81 | return 0; |
Sarah Sharp | 6071d83 | 2009-05-14 11:44:14 -0700 | [diff] [blame] | 82 | /* offset in TRBs */ |
| 83 | segment_offset = trb - seg->trbs; |
| 84 | if (segment_offset > TRBS_PER_SEGMENT) |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 85 | return 0; |
Sarah Sharp | 6071d83 | 2009-05-14 11:44:14 -0700 | [diff] [blame] | 86 | return seg->dma + (segment_offset * sizeof(*trb)); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /* Does this link TRB point to the first segment in a ring, |
| 90 | * or was the previous TRB the last TRB on the last segment in the ERST? |
| 91 | */ |
| 92 | static inline bool last_trb_on_last_seg(struct xhci_hcd *xhci, struct xhci_ring *ring, |
| 93 | struct xhci_segment *seg, union xhci_trb *trb) |
| 94 | { |
| 95 | if (ring == xhci->event_ring) |
| 96 | return (trb == &seg->trbs[TRBS_PER_SEGMENT]) && |
| 97 | (seg->next == xhci->event_ring->first_seg); |
| 98 | else |
| 99 | return trb->link.control & LINK_TOGGLE; |
| 100 | } |
| 101 | |
| 102 | /* Is this TRB a link TRB or was the last TRB the last TRB in this event ring |
| 103 | * segment? I.e. would the updated event TRB pointer step off the end of the |
| 104 | * event seg? |
| 105 | */ |
| 106 | static inline int last_trb(struct xhci_hcd *xhci, struct xhci_ring *ring, |
| 107 | struct xhci_segment *seg, union xhci_trb *trb) |
| 108 | { |
| 109 | if (ring == xhci->event_ring) |
| 110 | return trb == &seg->trbs[TRBS_PER_SEGMENT]; |
| 111 | else |
| 112 | return (trb->link.control & TRB_TYPE_BITMASK) == TRB_TYPE(TRB_LINK); |
| 113 | } |
| 114 | |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 115 | /* Updates trb to point to the next TRB in the ring, and updates seg if the next |
| 116 | * TRB is in a new segment. This does not skip over link TRBs, and it does not |
| 117 | * effect the ring dequeue or enqueue pointers. |
| 118 | */ |
| 119 | static void next_trb(struct xhci_hcd *xhci, |
| 120 | struct xhci_ring *ring, |
| 121 | struct xhci_segment **seg, |
| 122 | union xhci_trb **trb) |
| 123 | { |
| 124 | if (last_trb(xhci, ring, *seg, *trb)) { |
| 125 | *seg = (*seg)->next; |
| 126 | *trb = ((*seg)->trbs); |
| 127 | } else { |
| 128 | *trb = (*trb)++; |
| 129 | } |
| 130 | } |
| 131 | |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 132 | /* |
| 133 | * See Cycle bit rules. SW is the consumer for the event ring only. |
| 134 | * Don't make a ring full of link TRBs. That would be dumb and this would loop. |
| 135 | */ |
| 136 | static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer) |
| 137 | { |
| 138 | union xhci_trb *next = ++(ring->dequeue); |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 139 | unsigned long long addr; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 140 | |
| 141 | ring->deq_updates++; |
| 142 | /* Update the dequeue pointer further if that was a link TRB or we're at |
| 143 | * the end of an event ring segment (which doesn't have link TRBS) |
| 144 | */ |
| 145 | while (last_trb(xhci, ring, ring->deq_seg, next)) { |
| 146 | if (consumer && last_trb_on_last_seg(xhci, ring, ring->deq_seg, next)) { |
| 147 | ring->cycle_state = (ring->cycle_state ? 0 : 1); |
| 148 | if (!in_interrupt()) |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 149 | xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n", |
| 150 | ring, |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 151 | (unsigned int) ring->cycle_state); |
| 152 | } |
| 153 | ring->deq_seg = ring->deq_seg->next; |
| 154 | ring->dequeue = ring->deq_seg->trbs; |
| 155 | next = ring->dequeue; |
| 156 | } |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 157 | addr = (unsigned long long) xhci_trb_virt_to_dma(ring->deq_seg, ring->dequeue); |
| 158 | if (ring == xhci->event_ring) |
| 159 | xhci_dbg(xhci, "Event ring deq = 0x%llx (DMA)\n", addr); |
| 160 | else if (ring == xhci->cmd_ring) |
| 161 | xhci_dbg(xhci, "Command ring deq = 0x%llx (DMA)\n", addr); |
| 162 | else |
| 163 | xhci_dbg(xhci, "Ring deq = 0x%llx (DMA)\n", addr); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | /* |
| 167 | * See Cycle bit rules. SW is the consumer for the event ring only. |
| 168 | * Don't make a ring full of link TRBs. That would be dumb and this would loop. |
| 169 | * |
| 170 | * If we've just enqueued a TRB that is in the middle of a TD (meaning the |
| 171 | * chain bit is set), then set the chain bit in all the following link TRBs. |
| 172 | * If we've enqueued the last TRB in a TD, make sure the following link TRBs |
| 173 | * have their chain bit cleared (so that each Link TRB is a separate TD). |
| 174 | * |
| 175 | * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit |
Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 176 | * set, but other sections talk about dealing with the chain bit set. This was |
| 177 | * fixed in the 0.96 specification errata, but we have to assume that all 0.95 |
| 178 | * xHCI hardware can't handle the chain bit being cleared on a link TRB. |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 179 | */ |
| 180 | static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring, bool consumer) |
| 181 | { |
| 182 | u32 chain; |
| 183 | union xhci_trb *next; |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 184 | unsigned long long addr; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 185 | |
| 186 | chain = ring->enqueue->generic.field[3] & TRB_CHAIN; |
| 187 | next = ++(ring->enqueue); |
| 188 | |
| 189 | ring->enq_updates++; |
| 190 | /* Update the dequeue pointer further if that was a link TRB or we're at |
| 191 | * the end of an event ring segment (which doesn't have link TRBS) |
| 192 | */ |
| 193 | while (last_trb(xhci, ring, ring->enq_seg, next)) { |
| 194 | if (!consumer) { |
| 195 | if (ring != xhci->event_ring) { |
Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 196 | /* If we're not dealing with 0.95 hardware, |
| 197 | * carry over the chain bit of the previous TRB |
| 198 | * (which may mean the chain bit is cleared). |
| 199 | */ |
| 200 | if (!xhci_link_trb_quirk(xhci)) { |
| 201 | next->link.control &= ~TRB_CHAIN; |
| 202 | next->link.control |= chain; |
| 203 | } |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 204 | /* Give this link TRB to the hardware */ |
Sarah Sharp | b7116eb | 2009-04-29 19:05:58 -0700 | [diff] [blame] | 205 | wmb(); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 206 | if (next->link.control & TRB_CYCLE) |
| 207 | next->link.control &= (u32) ~TRB_CYCLE; |
| 208 | else |
| 209 | next->link.control |= (u32) TRB_CYCLE; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 210 | } |
| 211 | /* Toggle the cycle bit after the last ring segment. */ |
| 212 | if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) { |
| 213 | ring->cycle_state = (ring->cycle_state ? 0 : 1); |
| 214 | if (!in_interrupt()) |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 215 | xhci_dbg(xhci, "Toggle cycle state for ring %p = %i\n", |
| 216 | ring, |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 217 | (unsigned int) ring->cycle_state); |
| 218 | } |
| 219 | } |
| 220 | ring->enq_seg = ring->enq_seg->next; |
| 221 | ring->enqueue = ring->enq_seg->trbs; |
| 222 | next = ring->enqueue; |
| 223 | } |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 224 | addr = (unsigned long long) xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue); |
| 225 | if (ring == xhci->event_ring) |
| 226 | xhci_dbg(xhci, "Event ring enq = 0x%llx (DMA)\n", addr); |
| 227 | else if (ring == xhci->cmd_ring) |
| 228 | xhci_dbg(xhci, "Command ring enq = 0x%llx (DMA)\n", addr); |
| 229 | else |
| 230 | xhci_dbg(xhci, "Ring enq = 0x%llx (DMA)\n", addr); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | /* |
| 234 | * Check to see if there's room to enqueue num_trbs on the ring. See rules |
| 235 | * above. |
| 236 | * FIXME: this would be simpler and faster if we just kept track of the number |
| 237 | * of free TRBs in a ring. |
| 238 | */ |
| 239 | static int room_on_ring(struct xhci_hcd *xhci, struct xhci_ring *ring, |
| 240 | unsigned int num_trbs) |
| 241 | { |
| 242 | int i; |
| 243 | union xhci_trb *enq = ring->enqueue; |
| 244 | struct xhci_segment *enq_seg = ring->enq_seg; |
| 245 | |
| 246 | /* Check if ring is empty */ |
| 247 | if (enq == ring->dequeue) |
| 248 | return 1; |
| 249 | /* Make sure there's an extra empty TRB available */ |
| 250 | for (i = 0; i <= num_trbs; ++i) { |
| 251 | if (enq == ring->dequeue) |
| 252 | return 0; |
| 253 | enq++; |
| 254 | while (last_trb(xhci, ring, enq_seg, enq)) { |
| 255 | enq_seg = enq_seg->next; |
| 256 | enq = enq_seg->trbs; |
| 257 | } |
| 258 | } |
| 259 | return 1; |
| 260 | } |
| 261 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 262 | void xhci_set_hc_event_deq(struct xhci_hcd *xhci) |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 263 | { |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 264 | u64 temp; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 265 | dma_addr_t deq; |
| 266 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 267 | deq = xhci_trb_virt_to_dma(xhci->event_ring->deq_seg, |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 268 | xhci->event_ring->dequeue); |
| 269 | if (deq == 0 && !in_interrupt()) |
| 270 | xhci_warn(xhci, "WARN something wrong with SW event ring " |
| 271 | "dequeue ptr.\n"); |
| 272 | /* Update HC event ring dequeue pointer */ |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 273 | temp = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 274 | temp &= ERST_PTR_MASK; |
Sarah Sharp | 2d83109 | 2009-07-27 12:03:40 -0700 | [diff] [blame] | 275 | /* Don't clear the EHB bit (which is RW1C) because |
| 276 | * there might be more events to service. |
| 277 | */ |
| 278 | temp &= ~ERST_EHB; |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 279 | xhci_dbg(xhci, "// Write event ring dequeue pointer, preserving EHB bit\n"); |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 280 | xhci_write_64(xhci, ((u64) deq & (u64) ~ERST_PTR_MASK) | temp, |
| 281 | &xhci->ir_set->erst_dequeue); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | /* Ring the host controller doorbell after placing a command on the ring */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 285 | void xhci_ring_cmd_db(struct xhci_hcd *xhci) |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 286 | { |
| 287 | u32 temp; |
| 288 | |
| 289 | xhci_dbg(xhci, "// Ding dong!\n"); |
| 290 | temp = xhci_readl(xhci, &xhci->dba->doorbell[0]) & DB_MASK; |
| 291 | xhci_writel(xhci, temp | DB_TARGET_HOST, &xhci->dba->doorbell[0]); |
| 292 | /* Flush PCI posted writes */ |
| 293 | xhci_readl(xhci, &xhci->dba->doorbell[0]); |
| 294 | } |
| 295 | |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 296 | static void ring_ep_doorbell(struct xhci_hcd *xhci, |
| 297 | unsigned int slot_id, |
| 298 | unsigned int ep_index) |
| 299 | { |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 300 | struct xhci_virt_ep *ep; |
| 301 | unsigned int ep_state; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 302 | u32 field; |
| 303 | __u32 __iomem *db_addr = &xhci->dba->doorbell[slot_id]; |
| 304 | |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 305 | ep = &xhci->devs[slot_id]->eps[ep_index]; |
| 306 | ep_state = ep->ep_state; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 307 | /* Don't ring the doorbell for this endpoint if there are pending |
| 308 | * cancellations because the we don't want to interrupt processing. |
| 309 | */ |
Sarah Sharp | 678539c | 2009-10-27 10:55:52 -0700 | [diff] [blame] | 310 | if (!(ep_state & EP_HALT_PENDING) && !(ep_state & SET_DEQ_PENDING) |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 311 | && !(ep_state & EP_HALTED)) { |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 312 | field = xhci_readl(xhci, db_addr) & DB_MASK; |
| 313 | xhci_writel(xhci, field | EPI_TO_DB(ep_index), db_addr); |
| 314 | /* Flush PCI posted writes - FIXME Matthew Wilcox says this |
| 315 | * isn't time-critical and we shouldn't make the CPU wait for |
| 316 | * the flush. |
| 317 | */ |
| 318 | xhci_readl(xhci, db_addr); |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | /* |
| 323 | * Find the segment that trb is in. Start searching in start_seg. |
| 324 | * If we must move past a segment that has a link TRB with a toggle cycle state |
| 325 | * bit set, then we will toggle the value pointed at by cycle_state. |
| 326 | */ |
| 327 | static struct xhci_segment *find_trb_seg( |
| 328 | struct xhci_segment *start_seg, |
| 329 | union xhci_trb *trb, int *cycle_state) |
| 330 | { |
| 331 | struct xhci_segment *cur_seg = start_seg; |
| 332 | struct xhci_generic_trb *generic_trb; |
| 333 | |
| 334 | while (cur_seg->trbs > trb || |
| 335 | &cur_seg->trbs[TRBS_PER_SEGMENT - 1] < trb) { |
| 336 | generic_trb = &cur_seg->trbs[TRBS_PER_SEGMENT - 1].generic; |
| 337 | if (TRB_TYPE(generic_trb->field[3]) == TRB_LINK && |
| 338 | (generic_trb->field[3] & LINK_TOGGLE)) |
| 339 | *cycle_state = ~(*cycle_state) & 0x1; |
| 340 | cur_seg = cur_seg->next; |
| 341 | if (cur_seg == start_seg) |
| 342 | /* Looped over the entire list. Oops! */ |
| 343 | return 0; |
| 344 | } |
| 345 | return cur_seg; |
| 346 | } |
| 347 | |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 348 | /* |
| 349 | * Move the xHC's endpoint ring dequeue pointer past cur_td. |
| 350 | * Record the new state of the xHC's endpoint ring dequeue segment, |
| 351 | * dequeue pointer, and new consumer cycle state in state. |
| 352 | * Update our internal representation of the ring's dequeue pointer. |
| 353 | * |
| 354 | * We do this in three jumps: |
| 355 | * - First we update our new ring state to be the same as when the xHC stopped. |
| 356 | * - Then we traverse the ring to find the segment that contains |
| 357 | * the last TRB in the TD. We toggle the xHC's new cycle state when we pass |
| 358 | * any link TRBs with the toggle cycle bit set. |
| 359 | * - Finally we move the dequeue state one TRB further, toggling the cycle bit |
| 360 | * if we've moved it past a link TRB with the toggle cycle bit set. |
| 361 | */ |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 362 | void xhci_find_new_dequeue_state(struct xhci_hcd *xhci, |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 363 | unsigned int slot_id, unsigned int ep_index, |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 364 | struct xhci_td *cur_td, struct xhci_dequeue_state *state) |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 365 | { |
| 366 | struct xhci_virt_device *dev = xhci->devs[slot_id]; |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 367 | struct xhci_ring *ep_ring = dev->eps[ep_index].ring; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 368 | struct xhci_generic_trb *trb; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 369 | struct xhci_ep_ctx *ep_ctx; |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 370 | dma_addr_t addr; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 371 | |
| 372 | state->new_cycle_state = 0; |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 373 | xhci_dbg(xhci, "Finding segment containing stopped TRB.\n"); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 374 | state->new_deq_seg = find_trb_seg(cur_td->start_seg, |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 375 | dev->eps[ep_index].stopped_trb, |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 376 | &state->new_cycle_state); |
| 377 | if (!state->new_deq_seg) |
| 378 | BUG(); |
| 379 | /* Dig out the cycle state saved by the xHC during the stop ep cmd */ |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 380 | xhci_dbg(xhci, "Finding endpoint context\n"); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 381 | ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index); |
| 382 | state->new_cycle_state = 0x1 & ep_ctx->deq; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 383 | |
| 384 | state->new_deq_ptr = cur_td->last_trb; |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 385 | xhci_dbg(xhci, "Finding segment containing last TRB in TD.\n"); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 386 | state->new_deq_seg = find_trb_seg(state->new_deq_seg, |
| 387 | state->new_deq_ptr, |
| 388 | &state->new_cycle_state); |
| 389 | if (!state->new_deq_seg) |
| 390 | BUG(); |
| 391 | |
| 392 | trb = &state->new_deq_ptr->generic; |
| 393 | if (TRB_TYPE(trb->field[3]) == TRB_LINK && |
| 394 | (trb->field[3] & LINK_TOGGLE)) |
| 395 | state->new_cycle_state = ~(state->new_cycle_state) & 0x1; |
| 396 | next_trb(xhci, ep_ring, &state->new_deq_seg, &state->new_deq_ptr); |
| 397 | |
| 398 | /* Don't update the ring cycle state for the producer (us). */ |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 399 | xhci_dbg(xhci, "New dequeue segment = %p (virtual)\n", |
| 400 | state->new_deq_seg); |
| 401 | addr = xhci_trb_virt_to_dma(state->new_deq_seg, state->new_deq_ptr); |
| 402 | xhci_dbg(xhci, "New dequeue pointer = 0x%llx (DMA)\n", |
| 403 | (unsigned long long) addr); |
| 404 | xhci_dbg(xhci, "Setting dequeue pointer in internal ring state.\n"); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 405 | ep_ring->dequeue = state->new_deq_ptr; |
| 406 | ep_ring->deq_seg = state->new_deq_seg; |
| 407 | } |
| 408 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 409 | static void td_to_noop(struct xhci_hcd *xhci, struct xhci_ring *ep_ring, |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 410 | struct xhci_td *cur_td) |
| 411 | { |
| 412 | struct xhci_segment *cur_seg; |
| 413 | union xhci_trb *cur_trb; |
| 414 | |
| 415 | for (cur_seg = cur_td->start_seg, cur_trb = cur_td->first_trb; |
| 416 | true; |
| 417 | next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) { |
| 418 | if ((cur_trb->generic.field[3] & TRB_TYPE_BITMASK) == |
| 419 | TRB_TYPE(TRB_LINK)) { |
| 420 | /* Unchain any chained Link TRBs, but |
| 421 | * leave the pointers intact. |
| 422 | */ |
| 423 | cur_trb->generic.field[3] &= ~TRB_CHAIN; |
| 424 | xhci_dbg(xhci, "Cancel (unchain) link TRB\n"); |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 425 | xhci_dbg(xhci, "Address = %p (0x%llx dma); " |
| 426 | "in seg %p (0x%llx dma)\n", |
| 427 | cur_trb, |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 428 | (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb), |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 429 | cur_seg, |
| 430 | (unsigned long long)cur_seg->dma); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 431 | } else { |
| 432 | cur_trb->generic.field[0] = 0; |
| 433 | cur_trb->generic.field[1] = 0; |
| 434 | cur_trb->generic.field[2] = 0; |
| 435 | /* Preserve only the cycle bit of this TRB */ |
| 436 | cur_trb->generic.field[3] &= TRB_CYCLE; |
| 437 | cur_trb->generic.field[3] |= TRB_TYPE(TRB_TR_NOOP); |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 438 | xhci_dbg(xhci, "Cancel TRB %p (0x%llx dma) " |
| 439 | "in seg %p (0x%llx dma)\n", |
| 440 | cur_trb, |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 441 | (unsigned long long)xhci_trb_virt_to_dma(cur_seg, cur_trb), |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 442 | cur_seg, |
| 443 | (unsigned long long)cur_seg->dma); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 444 | } |
| 445 | if (cur_trb == cur_td->last_trb) |
| 446 | break; |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id, |
| 451 | unsigned int ep_index, struct xhci_segment *deq_seg, |
| 452 | union xhci_trb *deq_ptr, u32 cycle_state); |
| 453 | |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 454 | void xhci_queue_new_dequeue_state(struct xhci_hcd *xhci, |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 455 | unsigned int slot_id, unsigned int ep_index, |
| 456 | struct xhci_dequeue_state *deq_state) |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 457 | { |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 458 | struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index]; |
| 459 | |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 460 | xhci_dbg(xhci, "Set TR Deq Ptr cmd, new deq seg = %p (0x%llx dma), " |
| 461 | "new deq ptr = %p (0x%llx dma), new cycle = %u\n", |
| 462 | deq_state->new_deq_seg, |
| 463 | (unsigned long long)deq_state->new_deq_seg->dma, |
| 464 | deq_state->new_deq_ptr, |
| 465 | (unsigned long long)xhci_trb_virt_to_dma(deq_state->new_deq_seg, deq_state->new_deq_ptr), |
| 466 | deq_state->new_cycle_state); |
| 467 | queue_set_tr_deq(xhci, slot_id, ep_index, |
| 468 | deq_state->new_deq_seg, |
| 469 | deq_state->new_deq_ptr, |
| 470 | (u32) deq_state->new_cycle_state); |
| 471 | /* Stop the TD queueing code from ringing the doorbell until |
| 472 | * this command completes. The HC won't set the dequeue pointer |
| 473 | * if the ring is running, and ringing the doorbell starts the |
| 474 | * ring running. |
| 475 | */ |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 476 | ep->ep_state |= SET_DEQ_PENDING; |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 477 | } |
| 478 | |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 479 | static inline void xhci_stop_watchdog_timer_in_irq(struct xhci_hcd *xhci, |
| 480 | struct xhci_virt_ep *ep) |
| 481 | { |
| 482 | ep->ep_state &= ~EP_HALT_PENDING; |
| 483 | /* Can't del_timer_sync in interrupt, so we attempt to cancel. If the |
| 484 | * timer is running on another CPU, we don't decrement stop_cmds_pending |
| 485 | * (since we didn't successfully stop the watchdog timer). |
| 486 | */ |
| 487 | if (del_timer(&ep->stop_cmd_timer)) |
| 488 | ep->stop_cmds_pending--; |
| 489 | } |
| 490 | |
| 491 | /* Must be called with xhci->lock held in interrupt context */ |
| 492 | static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci, |
| 493 | struct xhci_td *cur_td, int status, char *adjective) |
| 494 | { |
| 495 | struct usb_hcd *hcd = xhci_to_hcd(xhci); |
| 496 | |
| 497 | cur_td->urb->hcpriv = NULL; |
| 498 | usb_hcd_unlink_urb_from_ep(hcd, cur_td->urb); |
| 499 | xhci_dbg(xhci, "Giveback %s URB %p\n", adjective, cur_td->urb); |
| 500 | |
| 501 | spin_unlock(&xhci->lock); |
| 502 | usb_hcd_giveback_urb(hcd, cur_td->urb, status); |
| 503 | kfree(cur_td); |
| 504 | spin_lock(&xhci->lock); |
| 505 | xhci_dbg(xhci, "%s URB given back\n", adjective); |
| 506 | } |
| 507 | |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 508 | /* |
| 509 | * When we get a command completion for a Stop Endpoint Command, we need to |
| 510 | * unlink any cancelled TDs from the ring. There are two ways to do that: |
| 511 | * |
| 512 | * 1. If the HW was in the middle of processing the TD that needs to be |
| 513 | * cancelled, then we must move the ring's dequeue pointer past the last TRB |
| 514 | * in the TD with a Set Dequeue Pointer Command. |
| 515 | * 2. Otherwise, we turn all the TRBs in the TD into No-op TRBs (with the chain |
| 516 | * bit cleared) so that the HW will skip over them. |
| 517 | */ |
| 518 | static void handle_stopped_endpoint(struct xhci_hcd *xhci, |
| 519 | union xhci_trb *trb) |
| 520 | { |
| 521 | unsigned int slot_id; |
| 522 | unsigned int ep_index; |
| 523 | struct xhci_ring *ep_ring; |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 524 | struct xhci_virt_ep *ep; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 525 | struct list_head *entry; |
| 526 | struct xhci_td *cur_td = 0; |
| 527 | struct xhci_td *last_unlinked_td; |
| 528 | |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 529 | struct xhci_dequeue_state deq_state; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 530 | |
| 531 | memset(&deq_state, 0, sizeof(deq_state)); |
| 532 | slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]); |
| 533 | ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]); |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 534 | ep = &xhci->devs[slot_id]->eps[ep_index]; |
| 535 | ep_ring = ep->ring; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 536 | |
Sarah Sharp | 678539c | 2009-10-27 10:55:52 -0700 | [diff] [blame] | 537 | if (list_empty(&ep->cancelled_td_list)) { |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 538 | xhci_stop_watchdog_timer_in_irq(xhci, ep); |
Sarah Sharp | 678539c | 2009-10-27 10:55:52 -0700 | [diff] [blame] | 539 | ring_ep_doorbell(xhci, slot_id, ep_index); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 540 | return; |
Sarah Sharp | 678539c | 2009-10-27 10:55:52 -0700 | [diff] [blame] | 541 | } |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 542 | |
| 543 | /* Fix up the ep ring first, so HW stops executing cancelled TDs. |
| 544 | * We have the xHCI lock, so nothing can modify this list until we drop |
| 545 | * it. We're also in the event handler, so we can't get re-interrupted |
| 546 | * if another Stop Endpoint command completes |
| 547 | */ |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 548 | list_for_each(entry, &ep->cancelled_td_list) { |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 549 | cur_td = list_entry(entry, struct xhci_td, cancelled_td_list); |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 550 | xhci_dbg(xhci, "Cancelling TD starting at %p, 0x%llx (dma).\n", |
| 551 | cur_td->first_trb, |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 552 | (unsigned long long)xhci_trb_virt_to_dma(cur_td->start_seg, cur_td->first_trb)); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 553 | /* |
| 554 | * If we stopped on the TD we need to cancel, then we have to |
| 555 | * move the xHC endpoint ring dequeue pointer past this TD. |
| 556 | */ |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 557 | if (cur_td == ep->stopped_td) |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 558 | xhci_find_new_dequeue_state(xhci, slot_id, ep_index, cur_td, |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 559 | &deq_state); |
| 560 | else |
| 561 | td_to_noop(xhci, ep_ring, cur_td); |
| 562 | /* |
| 563 | * The event handler won't see a completion for this TD anymore, |
| 564 | * so remove it from the endpoint ring's TD list. Keep it in |
| 565 | * the cancelled TD list for URB completion later. |
| 566 | */ |
| 567 | list_del(&cur_td->td_list); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 568 | } |
| 569 | last_unlinked_td = cur_td; |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 570 | xhci_stop_watchdog_timer_in_irq(xhci, ep); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 571 | |
| 572 | /* If necessary, queue a Set Transfer Ring Dequeue Pointer command */ |
| 573 | if (deq_state.new_deq_ptr && deq_state.new_deq_seg) { |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 574 | xhci_queue_new_dequeue_state(xhci, |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 575 | slot_id, ep_index, &deq_state); |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 576 | xhci_ring_cmd_db(xhci); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 577 | } else { |
| 578 | /* Otherwise just ring the doorbell to restart the ring */ |
| 579 | ring_ep_doorbell(xhci, slot_id, ep_index); |
| 580 | } |
Sarah Sharp | 1624ae1 | 2010-05-06 13:40:08 -0700 | [diff] [blame^] | 581 | ep->stopped_td = NULL; |
| 582 | ep->stopped_trb = NULL; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 583 | |
| 584 | /* |
| 585 | * Drop the lock and complete the URBs in the cancelled TD list. |
| 586 | * New TDs to be cancelled might be added to the end of the list before |
| 587 | * we can complete all the URBs for the TDs we already unlinked. |
| 588 | * So stop when we've completed the URB for the last TD we unlinked. |
| 589 | */ |
| 590 | do { |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 591 | cur_td = list_entry(ep->cancelled_td_list.next, |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 592 | struct xhci_td, cancelled_td_list); |
| 593 | list_del(&cur_td->cancelled_td_list); |
| 594 | |
| 595 | /* Clean up the cancelled URB */ |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 596 | /* Doesn't matter what we pass for status, since the core will |
| 597 | * just overwrite it (because the URB has been unlinked). |
| 598 | */ |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 599 | xhci_giveback_urb_in_irq(xhci, cur_td, 0, "cancelled"); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 600 | |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 601 | /* Stop processing the cancelled list if the watchdog timer is |
| 602 | * running. |
| 603 | */ |
| 604 | if (xhci->xhc_state & XHCI_STATE_DYING) |
| 605 | return; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 606 | } while (cur_td != last_unlinked_td); |
| 607 | |
| 608 | /* Return to the event handler with xhci->lock re-acquired */ |
| 609 | } |
| 610 | |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 611 | /* Watchdog timer function for when a stop endpoint command fails to complete. |
| 612 | * In this case, we assume the host controller is broken or dying or dead. The |
| 613 | * host may still be completing some other events, so we have to be careful to |
| 614 | * let the event ring handler and the URB dequeueing/enqueueing functions know |
| 615 | * through xhci->state. |
| 616 | * |
| 617 | * The timer may also fire if the host takes a very long time to respond to the |
| 618 | * command, and the stop endpoint command completion handler cannot delete the |
| 619 | * timer before the timer function is called. Another endpoint cancellation may |
| 620 | * sneak in before the timer function can grab the lock, and that may queue |
| 621 | * another stop endpoint command and add the timer back. So we cannot use a |
| 622 | * simple flag to say whether there is a pending stop endpoint command for a |
| 623 | * particular endpoint. |
| 624 | * |
| 625 | * Instead we use a combination of that flag and a counter for the number of |
| 626 | * pending stop endpoint commands. If the timer is the tail end of the last |
| 627 | * stop endpoint command, and the endpoint's command is still pending, we assume |
| 628 | * the host is dying. |
| 629 | */ |
| 630 | void xhci_stop_endpoint_command_watchdog(unsigned long arg) |
| 631 | { |
| 632 | struct xhci_hcd *xhci; |
| 633 | struct xhci_virt_ep *ep; |
| 634 | struct xhci_virt_ep *temp_ep; |
| 635 | struct xhci_ring *ring; |
| 636 | struct xhci_td *cur_td; |
| 637 | int ret, i, j; |
| 638 | |
| 639 | ep = (struct xhci_virt_ep *) arg; |
| 640 | xhci = ep->xhci; |
| 641 | |
| 642 | spin_lock(&xhci->lock); |
| 643 | |
| 644 | ep->stop_cmds_pending--; |
| 645 | if (xhci->xhc_state & XHCI_STATE_DYING) { |
| 646 | xhci_dbg(xhci, "Stop EP timer ran, but another timer marked " |
| 647 | "xHCI as DYING, exiting.\n"); |
| 648 | spin_unlock(&xhci->lock); |
| 649 | return; |
| 650 | } |
| 651 | if (!(ep->stop_cmds_pending == 0 && (ep->ep_state & EP_HALT_PENDING))) { |
| 652 | xhci_dbg(xhci, "Stop EP timer ran, but no command pending, " |
| 653 | "exiting.\n"); |
| 654 | spin_unlock(&xhci->lock); |
| 655 | return; |
| 656 | } |
| 657 | |
| 658 | xhci_warn(xhci, "xHCI host not responding to stop endpoint command.\n"); |
| 659 | xhci_warn(xhci, "Assuming host is dying, halting host.\n"); |
| 660 | /* Oops, HC is dead or dying or at least not responding to the stop |
| 661 | * endpoint command. |
| 662 | */ |
| 663 | xhci->xhc_state |= XHCI_STATE_DYING; |
| 664 | /* Disable interrupts from the host controller and start halting it */ |
| 665 | xhci_quiesce(xhci); |
| 666 | spin_unlock(&xhci->lock); |
| 667 | |
| 668 | ret = xhci_halt(xhci); |
| 669 | |
| 670 | spin_lock(&xhci->lock); |
| 671 | if (ret < 0) { |
| 672 | /* This is bad; the host is not responding to commands and it's |
| 673 | * not allowing itself to be halted. At least interrupts are |
| 674 | * disabled, so we can set HC_STATE_HALT and notify the |
| 675 | * USB core. But if we call usb_hc_died(), it will attempt to |
| 676 | * disconnect all device drivers under this host. Those |
| 677 | * disconnect() methods will wait for all URBs to be unlinked, |
| 678 | * so we must complete them. |
| 679 | */ |
| 680 | xhci_warn(xhci, "Non-responsive xHCI host is not halting.\n"); |
| 681 | xhci_warn(xhci, "Completing active URBs anyway.\n"); |
| 682 | /* We could turn all TDs on the rings to no-ops. This won't |
| 683 | * help if the host has cached part of the ring, and is slow if |
| 684 | * we want to preserve the cycle bit. Skip it and hope the host |
| 685 | * doesn't touch the memory. |
| 686 | */ |
| 687 | } |
| 688 | for (i = 0; i < MAX_HC_SLOTS; i++) { |
| 689 | if (!xhci->devs[i]) |
| 690 | continue; |
| 691 | for (j = 0; j < 31; j++) { |
| 692 | temp_ep = &xhci->devs[i]->eps[j]; |
| 693 | ring = temp_ep->ring; |
| 694 | if (!ring) |
| 695 | continue; |
| 696 | xhci_dbg(xhci, "Killing URBs for slot ID %u, " |
| 697 | "ep index %u\n", i, j); |
| 698 | while (!list_empty(&ring->td_list)) { |
| 699 | cur_td = list_first_entry(&ring->td_list, |
| 700 | struct xhci_td, |
| 701 | td_list); |
| 702 | list_del(&cur_td->td_list); |
| 703 | if (!list_empty(&cur_td->cancelled_td_list)) |
| 704 | list_del(&cur_td->cancelled_td_list); |
| 705 | xhci_giveback_urb_in_irq(xhci, cur_td, |
| 706 | -ESHUTDOWN, "killed"); |
| 707 | } |
| 708 | while (!list_empty(&temp_ep->cancelled_td_list)) { |
| 709 | cur_td = list_first_entry( |
| 710 | &temp_ep->cancelled_td_list, |
| 711 | struct xhci_td, |
| 712 | cancelled_td_list); |
| 713 | list_del(&cur_td->cancelled_td_list); |
| 714 | xhci_giveback_urb_in_irq(xhci, cur_td, |
| 715 | -ESHUTDOWN, "killed"); |
| 716 | } |
| 717 | } |
| 718 | } |
| 719 | spin_unlock(&xhci->lock); |
| 720 | xhci_to_hcd(xhci)->state = HC_STATE_HALT; |
| 721 | xhci_dbg(xhci, "Calling usb_hc_died()\n"); |
| 722 | usb_hc_died(xhci_to_hcd(xhci)); |
| 723 | xhci_dbg(xhci, "xHCI host controller is dead.\n"); |
| 724 | } |
| 725 | |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 726 | /* |
| 727 | * When we get a completion for a Set Transfer Ring Dequeue Pointer command, |
| 728 | * we need to clear the set deq pending flag in the endpoint ring state, so that |
| 729 | * the TD queueing code can ring the doorbell again. We also need to ring the |
| 730 | * endpoint doorbell to restart the ring, but only if there aren't more |
| 731 | * cancellations pending. |
| 732 | */ |
| 733 | static void handle_set_deq_completion(struct xhci_hcd *xhci, |
| 734 | struct xhci_event_cmd *event, |
| 735 | union xhci_trb *trb) |
| 736 | { |
| 737 | unsigned int slot_id; |
| 738 | unsigned int ep_index; |
| 739 | struct xhci_ring *ep_ring; |
| 740 | struct xhci_virt_device *dev; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 741 | struct xhci_ep_ctx *ep_ctx; |
| 742 | struct xhci_slot_ctx *slot_ctx; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 743 | |
| 744 | slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]); |
| 745 | ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]); |
| 746 | dev = xhci->devs[slot_id]; |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 747 | ep_ring = dev->eps[ep_index].ring; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 748 | ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, ep_index); |
| 749 | slot_ctx = xhci_get_slot_ctx(xhci, dev->out_ctx); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 750 | |
| 751 | if (GET_COMP_CODE(event->status) != COMP_SUCCESS) { |
| 752 | unsigned int ep_state; |
| 753 | unsigned int slot_state; |
| 754 | |
| 755 | switch (GET_COMP_CODE(event->status)) { |
| 756 | case COMP_TRB_ERR: |
| 757 | xhci_warn(xhci, "WARN Set TR Deq Ptr cmd invalid because " |
| 758 | "of stream ID configuration\n"); |
| 759 | break; |
| 760 | case COMP_CTX_STATE: |
| 761 | xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed due " |
| 762 | "to incorrect slot or ep state.\n"); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 763 | ep_state = ep_ctx->ep_info; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 764 | ep_state &= EP_STATE_MASK; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 765 | slot_state = slot_ctx->dev_state; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 766 | slot_state = GET_SLOT_STATE(slot_state); |
| 767 | xhci_dbg(xhci, "Slot state = %u, EP state = %u\n", |
| 768 | slot_state, ep_state); |
| 769 | break; |
| 770 | case COMP_EBADSLT: |
| 771 | xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because " |
| 772 | "slot %u was not enabled.\n", slot_id); |
| 773 | break; |
| 774 | default: |
| 775 | xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown " |
| 776 | "completion code of %u.\n", |
| 777 | GET_COMP_CODE(event->status)); |
| 778 | break; |
| 779 | } |
| 780 | /* OK what do we do now? The endpoint state is hosed, and we |
| 781 | * should never get to this point if the synchronization between |
| 782 | * queueing, and endpoint state are correct. This might happen |
| 783 | * if the device gets disconnected after we've finished |
| 784 | * cancelling URBs, which might not be an error... |
| 785 | */ |
| 786 | } else { |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 787 | xhci_dbg(xhci, "Successful Set TR Deq Ptr cmd, deq = @%08llx\n", |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 788 | ep_ctx->deq); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 789 | } |
| 790 | |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 791 | dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 792 | ring_ep_doorbell(xhci, slot_id, ep_index); |
| 793 | } |
| 794 | |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 795 | static void handle_reset_ep_completion(struct xhci_hcd *xhci, |
| 796 | struct xhci_event_cmd *event, |
| 797 | union xhci_trb *trb) |
| 798 | { |
| 799 | int slot_id; |
| 800 | unsigned int ep_index; |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 801 | struct xhci_ring *ep_ring; |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 802 | |
| 803 | slot_id = TRB_TO_SLOT_ID(trb->generic.field[3]); |
| 804 | ep_index = TRB_TO_EP_INDEX(trb->generic.field[3]); |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 805 | ep_ring = xhci->devs[slot_id]->eps[ep_index].ring; |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 806 | /* This command will only fail if the endpoint wasn't halted, |
| 807 | * but we don't care. |
| 808 | */ |
| 809 | xhci_dbg(xhci, "Ignoring reset ep completion code of %u\n", |
| 810 | (unsigned int) GET_COMP_CODE(event->status)); |
| 811 | |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 812 | /* HW with the reset endpoint quirk needs to have a configure endpoint |
| 813 | * command complete before the endpoint can be used. Queue that here |
| 814 | * because the HW can't handle two commands being queued in a row. |
| 815 | */ |
| 816 | if (xhci->quirks & XHCI_RESET_EP_QUIRK) { |
| 817 | xhci_dbg(xhci, "Queueing configure endpoint command\n"); |
| 818 | xhci_queue_configure_endpoint(xhci, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 819 | xhci->devs[slot_id]->in_ctx->dma, slot_id, |
| 820 | false); |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 821 | xhci_ring_cmd_db(xhci); |
| 822 | } else { |
| 823 | /* Clear our internal halted state and restart the ring */ |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 824 | xhci->devs[slot_id]->eps[ep_index].ep_state &= ~EP_HALTED; |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 825 | ring_ep_doorbell(xhci, slot_id, ep_index); |
| 826 | } |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 827 | } |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 828 | |
Sarah Sharp | a50c8aa | 2009-09-04 10:53:15 -0700 | [diff] [blame] | 829 | /* Check to see if a command in the device's command queue matches this one. |
| 830 | * Signal the completion or free the command, and return 1. Return 0 if the |
| 831 | * completed command isn't at the head of the command list. |
| 832 | */ |
| 833 | static int handle_cmd_in_cmd_wait_list(struct xhci_hcd *xhci, |
| 834 | struct xhci_virt_device *virt_dev, |
| 835 | struct xhci_event_cmd *event) |
| 836 | { |
| 837 | struct xhci_command *command; |
| 838 | |
| 839 | if (list_empty(&virt_dev->cmd_list)) |
| 840 | return 0; |
| 841 | |
| 842 | command = list_entry(virt_dev->cmd_list.next, |
| 843 | struct xhci_command, cmd_list); |
| 844 | if (xhci->cmd_ring->dequeue != command->command_trb) |
| 845 | return 0; |
| 846 | |
| 847 | command->status = |
| 848 | GET_COMP_CODE(event->status); |
| 849 | list_del(&command->cmd_list); |
| 850 | if (command->completion) |
| 851 | complete(command->completion); |
| 852 | else |
| 853 | xhci_free_command(xhci, command); |
| 854 | return 1; |
| 855 | } |
| 856 | |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 857 | static void handle_cmd_completion(struct xhci_hcd *xhci, |
| 858 | struct xhci_event_cmd *event) |
| 859 | { |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 860 | int slot_id = TRB_TO_SLOT_ID(event->flags); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 861 | u64 cmd_dma; |
| 862 | dma_addr_t cmd_dequeue_dma; |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 863 | struct xhci_input_control_ctx *ctrl_ctx; |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 864 | struct xhci_virt_device *virt_dev; |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 865 | unsigned int ep_index; |
| 866 | struct xhci_ring *ep_ring; |
| 867 | unsigned int ep_state; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 868 | |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 869 | cmd_dma = event->cmd_trb; |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 870 | cmd_dequeue_dma = xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg, |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 871 | xhci->cmd_ring->dequeue); |
| 872 | /* Is the command ring deq ptr out of sync with the deq seg ptr? */ |
| 873 | if (cmd_dequeue_dma == 0) { |
| 874 | xhci->error_bitmask |= 1 << 4; |
| 875 | return; |
| 876 | } |
| 877 | /* Does the DMA address match our internal dequeue pointer address? */ |
| 878 | if (cmd_dma != (u64) cmd_dequeue_dma) { |
| 879 | xhci->error_bitmask |= 1 << 5; |
| 880 | return; |
| 881 | } |
| 882 | switch (xhci->cmd_ring->dequeue->generic.field[3] & TRB_TYPE_BITMASK) { |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 883 | case TRB_TYPE(TRB_ENABLE_SLOT): |
| 884 | if (GET_COMP_CODE(event->status) == COMP_SUCCESS) |
| 885 | xhci->slot_id = slot_id; |
| 886 | else |
| 887 | xhci->slot_id = 0; |
| 888 | complete(&xhci->addr_dev); |
| 889 | break; |
| 890 | case TRB_TYPE(TRB_DISABLE_SLOT): |
| 891 | if (xhci->devs[slot_id]) |
| 892 | xhci_free_virt_device(xhci, slot_id); |
| 893 | break; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 894 | case TRB_TYPE(TRB_CONFIG_EP): |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 895 | virt_dev = xhci->devs[slot_id]; |
Sarah Sharp | a50c8aa | 2009-09-04 10:53:15 -0700 | [diff] [blame] | 896 | if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event)) |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 897 | break; |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 898 | /* |
| 899 | * Configure endpoint commands can come from the USB core |
| 900 | * configuration or alt setting changes, or because the HW |
| 901 | * needed an extra configure endpoint command after a reset |
| 902 | * endpoint command. In the latter case, the xHCI driver is |
| 903 | * not waiting on the configure endpoint command. |
| 904 | */ |
| 905 | ctrl_ctx = xhci_get_input_control_ctx(xhci, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 906 | virt_dev->in_ctx); |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 907 | /* Input ctx add_flags are the endpoint index plus one */ |
| 908 | ep_index = xhci_last_valid_endpoint(ctrl_ctx->add_flags) - 1; |
Sarah Sharp | 06df572 | 2009-12-03 09:44:31 -0800 | [diff] [blame] | 909 | /* A usb_set_interface() call directly after clearing a halted |
| 910 | * condition may race on this quirky hardware. |
| 911 | * Not worth worrying about, since this is prototype hardware. |
| 912 | */ |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 913 | if (xhci->quirks & XHCI_RESET_EP_QUIRK && |
Sarah Sharp | 06df572 | 2009-12-03 09:44:31 -0800 | [diff] [blame] | 914 | ep_index != (unsigned int) -1 && |
| 915 | ctrl_ctx->add_flags - SLOT_FLAG == |
| 916 | ctrl_ctx->drop_flags) { |
| 917 | ep_ring = xhci->devs[slot_id]->eps[ep_index].ring; |
| 918 | ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state; |
| 919 | if (!(ep_state & EP_HALTED)) |
| 920 | goto bandwidth_change; |
| 921 | xhci_dbg(xhci, "Completed config ep cmd - " |
| 922 | "last ep index = %d, state = %d\n", |
| 923 | ep_index, ep_state); |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 924 | /* Clear our internal halted state and restart ring */ |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 925 | xhci->devs[slot_id]->eps[ep_index].ep_state &= |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 926 | ~EP_HALTED; |
| 927 | ring_ep_doorbell(xhci, slot_id, ep_index); |
Sarah Sharp | 06df572 | 2009-12-03 09:44:31 -0800 | [diff] [blame] | 928 | break; |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 929 | } |
Sarah Sharp | 06df572 | 2009-12-03 09:44:31 -0800 | [diff] [blame] | 930 | bandwidth_change: |
| 931 | xhci_dbg(xhci, "Completed config ep cmd\n"); |
| 932 | xhci->devs[slot_id]->cmd_status = |
| 933 | GET_COMP_CODE(event->status); |
| 934 | complete(&xhci->devs[slot_id]->cmd_completion); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 935 | break; |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 936 | case TRB_TYPE(TRB_EVAL_CONTEXT): |
Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 937 | virt_dev = xhci->devs[slot_id]; |
| 938 | if (handle_cmd_in_cmd_wait_list(xhci, virt_dev, event)) |
| 939 | break; |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 940 | xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status); |
| 941 | complete(&xhci->devs[slot_id]->cmd_completion); |
| 942 | break; |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 943 | case TRB_TYPE(TRB_ADDR_DEV): |
| 944 | xhci->devs[slot_id]->cmd_status = GET_COMP_CODE(event->status); |
| 945 | complete(&xhci->addr_dev); |
| 946 | break; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 947 | case TRB_TYPE(TRB_STOP_RING): |
| 948 | handle_stopped_endpoint(xhci, xhci->cmd_ring->dequeue); |
| 949 | break; |
| 950 | case TRB_TYPE(TRB_SET_DEQ): |
| 951 | handle_set_deq_completion(xhci, event, xhci->cmd_ring->dequeue); |
| 952 | break; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 953 | case TRB_TYPE(TRB_CMD_NOOP): |
| 954 | ++xhci->noops_handled; |
| 955 | break; |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 956 | case TRB_TYPE(TRB_RESET_EP): |
| 957 | handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue); |
| 958 | break; |
Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 959 | case TRB_TYPE(TRB_RESET_DEV): |
| 960 | xhci_dbg(xhci, "Completed reset device command.\n"); |
| 961 | slot_id = TRB_TO_SLOT_ID( |
| 962 | xhci->cmd_ring->dequeue->generic.field[3]); |
| 963 | virt_dev = xhci->devs[slot_id]; |
| 964 | if (virt_dev) |
| 965 | handle_cmd_in_cmd_wait_list(xhci, virt_dev, event); |
| 966 | else |
| 967 | xhci_warn(xhci, "Reset device command completion " |
| 968 | "for disabled slot %u\n", slot_id); |
| 969 | break; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 970 | default: |
| 971 | /* Skip over unknown commands on the event ring */ |
| 972 | xhci->error_bitmask |= 1 << 6; |
| 973 | break; |
| 974 | } |
| 975 | inc_deq(xhci, xhci->cmd_ring, false); |
| 976 | } |
| 977 | |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 978 | static void handle_port_status(struct xhci_hcd *xhci, |
| 979 | union xhci_trb *event) |
| 980 | { |
| 981 | u32 port_id; |
| 982 | |
| 983 | /* Port status change events always have a successful completion code */ |
| 984 | if (GET_COMP_CODE(event->generic.field[2]) != COMP_SUCCESS) { |
| 985 | xhci_warn(xhci, "WARN: xHC returned failed port status event\n"); |
| 986 | xhci->error_bitmask |= 1 << 8; |
| 987 | } |
| 988 | /* FIXME: core doesn't care about all port link state changes yet */ |
| 989 | port_id = GET_PORT_ID(event->generic.field[0]); |
| 990 | xhci_dbg(xhci, "Port Status Change Event for port %d\n", port_id); |
| 991 | |
| 992 | /* Update event ring dequeue pointer before dropping the lock */ |
| 993 | inc_deq(xhci, xhci->event_ring, true); |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 994 | xhci_set_hc_event_deq(xhci); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 995 | |
| 996 | spin_unlock(&xhci->lock); |
| 997 | /* Pass this up to the core */ |
| 998 | usb_hcd_poll_rh_status(xhci_to_hcd(xhci)); |
| 999 | spin_lock(&xhci->lock); |
| 1000 | } |
| 1001 | |
| 1002 | /* |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1003 | * This TD is defined by the TRBs starting at start_trb in start_seg and ending |
| 1004 | * at end_trb, which may be in another segment. If the suspect DMA address is a |
| 1005 | * TRB in this TD, this function returns that TRB's segment. Otherwise it |
| 1006 | * returns 0. |
| 1007 | */ |
Sarah Sharp | 6648f29 | 2009-11-09 13:35:23 -0800 | [diff] [blame] | 1008 | struct xhci_segment *trb_in_td(struct xhci_segment *start_seg, |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1009 | union xhci_trb *start_trb, |
| 1010 | union xhci_trb *end_trb, |
| 1011 | dma_addr_t suspect_dma) |
| 1012 | { |
| 1013 | dma_addr_t start_dma; |
| 1014 | dma_addr_t end_seg_dma; |
| 1015 | dma_addr_t end_trb_dma; |
| 1016 | struct xhci_segment *cur_seg; |
| 1017 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1018 | start_dma = xhci_trb_virt_to_dma(start_seg, start_trb); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1019 | cur_seg = start_seg; |
| 1020 | |
| 1021 | do { |
Sarah Sharp | 2fa88da | 2009-11-03 22:02:24 -0800 | [diff] [blame] | 1022 | if (start_dma == 0) |
| 1023 | return 0; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1024 | /* We may get an event for a Link TRB in the middle of a TD */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1025 | end_seg_dma = xhci_trb_virt_to_dma(cur_seg, |
Sarah Sharp | 2fa88da | 2009-11-03 22:02:24 -0800 | [diff] [blame] | 1026 | &cur_seg->trbs[TRBS_PER_SEGMENT - 1]); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1027 | /* If the end TRB isn't in this segment, this is set to 0 */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1028 | end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1029 | |
| 1030 | if (end_trb_dma > 0) { |
| 1031 | /* The end TRB is in this segment, so suspect should be here */ |
| 1032 | if (start_dma <= end_trb_dma) { |
| 1033 | if (suspect_dma >= start_dma && suspect_dma <= end_trb_dma) |
| 1034 | return cur_seg; |
| 1035 | } else { |
| 1036 | /* Case for one segment with |
| 1037 | * a TD wrapped around to the top |
| 1038 | */ |
| 1039 | if ((suspect_dma >= start_dma && |
| 1040 | suspect_dma <= end_seg_dma) || |
| 1041 | (suspect_dma >= cur_seg->dma && |
| 1042 | suspect_dma <= end_trb_dma)) |
| 1043 | return cur_seg; |
| 1044 | } |
| 1045 | return 0; |
| 1046 | } else { |
| 1047 | /* Might still be somewhere in this segment */ |
| 1048 | if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma) |
| 1049 | return cur_seg; |
| 1050 | } |
| 1051 | cur_seg = cur_seg->next; |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1052 | start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]); |
Sarah Sharp | 2fa88da | 2009-11-03 22:02:24 -0800 | [diff] [blame] | 1053 | } while (cur_seg != start_seg); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1054 | |
Sarah Sharp | 2fa88da | 2009-11-03 22:02:24 -0800 | [diff] [blame] | 1055 | return 0; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
Sarah Sharp | bcef3fd | 2009-11-11 10:28:44 -0800 | [diff] [blame] | 1058 | static void xhci_cleanup_halted_endpoint(struct xhci_hcd *xhci, |
| 1059 | unsigned int slot_id, unsigned int ep_index, |
| 1060 | struct xhci_td *td, union xhci_trb *event_trb) |
| 1061 | { |
| 1062 | struct xhci_virt_ep *ep = &xhci->devs[slot_id]->eps[ep_index]; |
| 1063 | ep->ep_state |= EP_HALTED; |
| 1064 | ep->stopped_td = td; |
| 1065 | ep->stopped_trb = event_trb; |
Sarah Sharp | 1624ae1 | 2010-05-06 13:40:08 -0700 | [diff] [blame^] | 1066 | |
Sarah Sharp | bcef3fd | 2009-11-11 10:28:44 -0800 | [diff] [blame] | 1067 | xhci_queue_reset_ep(xhci, slot_id, ep_index); |
| 1068 | xhci_cleanup_stalled_ring(xhci, td->urb->dev, ep_index); |
Sarah Sharp | 1624ae1 | 2010-05-06 13:40:08 -0700 | [diff] [blame^] | 1069 | |
| 1070 | ep->stopped_td = NULL; |
| 1071 | ep->stopped_trb = NULL; |
| 1072 | |
Sarah Sharp | bcef3fd | 2009-11-11 10:28:44 -0800 | [diff] [blame] | 1073 | xhci_ring_cmd_db(xhci); |
| 1074 | } |
| 1075 | |
| 1076 | /* Check if an error has halted the endpoint ring. The class driver will |
| 1077 | * cleanup the halt for a non-default control endpoint if we indicate a stall. |
| 1078 | * However, a babble and other errors also halt the endpoint ring, and the class |
| 1079 | * driver won't clear the halt in that case, so we need to issue a Set Transfer |
| 1080 | * Ring Dequeue Pointer command manually. |
| 1081 | */ |
| 1082 | static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci, |
| 1083 | struct xhci_ep_ctx *ep_ctx, |
| 1084 | unsigned int trb_comp_code) |
| 1085 | { |
| 1086 | /* TRB completion codes that may require a manual halt cleanup */ |
| 1087 | if (trb_comp_code == COMP_TX_ERR || |
| 1088 | trb_comp_code == COMP_BABBLE || |
| 1089 | trb_comp_code == COMP_SPLIT_ERR) |
| 1090 | /* The 0.96 spec says a babbling control endpoint |
| 1091 | * is not halted. The 0.96 spec says it is. Some HW |
| 1092 | * claims to be 0.95 compliant, but it halts the control |
| 1093 | * endpoint anyway. Check if a babble halted the |
| 1094 | * endpoint. |
| 1095 | */ |
| 1096 | if ((ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_HALTED) |
| 1097 | return 1; |
| 1098 | |
| 1099 | return 0; |
| 1100 | } |
| 1101 | |
Sarah Sharp | b45b506 | 2009-12-09 15:59:06 -0800 | [diff] [blame] | 1102 | int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code) |
| 1103 | { |
| 1104 | if (trb_comp_code >= 224 && trb_comp_code <= 255) { |
| 1105 | /* Vendor defined "informational" completion code, |
| 1106 | * treat as not-an-error. |
| 1107 | */ |
| 1108 | xhci_dbg(xhci, "Vendor defined info completion code %u\n", |
| 1109 | trb_comp_code); |
| 1110 | xhci_dbg(xhci, "Treating code as success.\n"); |
| 1111 | return 1; |
| 1112 | } |
| 1113 | return 0; |
| 1114 | } |
| 1115 | |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1116 | /* |
| 1117 | * If this function returns an error condition, it means it got a Transfer |
| 1118 | * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address. |
| 1119 | * At this point, the host controller is probably hosed and should be reset. |
| 1120 | */ |
| 1121 | static int handle_tx_event(struct xhci_hcd *xhci, |
| 1122 | struct xhci_transfer_event *event) |
| 1123 | { |
| 1124 | struct xhci_virt_device *xdev; |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1125 | struct xhci_virt_ep *ep; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1126 | struct xhci_ring *ep_ring; |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1127 | unsigned int slot_id; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1128 | int ep_index; |
| 1129 | struct xhci_td *td = 0; |
| 1130 | dma_addr_t event_dma; |
| 1131 | struct xhci_segment *event_seg; |
| 1132 | union xhci_trb *event_trb; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1133 | struct urb *urb = 0; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1134 | int status = -EINPROGRESS; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1135 | struct xhci_ep_ctx *ep_ctx; |
Sarah Sharp | 66d1eeb | 2009-08-27 14:35:53 -0700 | [diff] [blame] | 1136 | u32 trb_comp_code; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1137 | |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1138 | xhci_dbg(xhci, "In %s\n", __func__); |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1139 | slot_id = TRB_TO_SLOT_ID(event->flags); |
| 1140 | xdev = xhci->devs[slot_id]; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1141 | if (!xdev) { |
| 1142 | xhci_err(xhci, "ERROR Transfer event pointed to bad slot\n"); |
| 1143 | return -ENODEV; |
| 1144 | } |
| 1145 | |
| 1146 | /* Endpoint ID is 1 based, our index is zero based */ |
| 1147 | ep_index = TRB_TO_EP_ID(event->flags) - 1; |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1148 | xhci_dbg(xhci, "%s - ep index = %d\n", __func__, ep_index); |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1149 | ep = &xdev->eps[ep_index]; |
| 1150 | ep_ring = ep->ring; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1151 | ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index); |
| 1152 | if (!ep_ring || (ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_DISABLED) { |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1153 | xhci_err(xhci, "ERROR Transfer event pointed to disabled endpoint\n"); |
| 1154 | return -ENODEV; |
| 1155 | } |
| 1156 | |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 1157 | event_dma = event->buffer; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1158 | /* This TRB should be in the TD at the head of this ring's TD list */ |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1159 | xhci_dbg(xhci, "%s - checking for list empty\n", __func__); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1160 | if (list_empty(&ep_ring->td_list)) { |
| 1161 | xhci_warn(xhci, "WARN Event TRB for slot %d ep %d with no TDs queued?\n", |
| 1162 | TRB_TO_SLOT_ID(event->flags), ep_index); |
| 1163 | xhci_dbg(xhci, "Event TRB with TRB type ID %u\n", |
| 1164 | (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10); |
| 1165 | xhci_print_trb_offsets(xhci, (union xhci_trb *) event); |
| 1166 | urb = NULL; |
| 1167 | goto cleanup; |
| 1168 | } |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1169 | xhci_dbg(xhci, "%s - getting list entry\n", __func__); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1170 | td = list_entry(ep_ring->td_list.next, struct xhci_td, td_list); |
| 1171 | |
| 1172 | /* Is this a TRB in the currently executing TD? */ |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1173 | xhci_dbg(xhci, "%s - looking for TD\n", __func__); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1174 | event_seg = trb_in_td(ep_ring->deq_seg, ep_ring->dequeue, |
| 1175 | td->last_trb, event_dma); |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1176 | xhci_dbg(xhci, "%s - found event_seg = %p\n", __func__, event_seg); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1177 | if (!event_seg) { |
| 1178 | /* HC is busted, give up! */ |
| 1179 | xhci_err(xhci, "ERROR Transfer event TRB DMA ptr not part of current TD\n"); |
| 1180 | return -ESHUTDOWN; |
| 1181 | } |
| 1182 | event_trb = &event_seg->trbs[(event_dma - event_seg->dma) / sizeof(*event_trb)]; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1183 | xhci_dbg(xhci, "Event TRB with TRB type ID %u\n", |
| 1184 | (unsigned int) (event->flags & TRB_TYPE_BITMASK)>>10); |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 1185 | xhci_dbg(xhci, "Offset 0x00 (buffer lo) = 0x%x\n", |
| 1186 | lower_32_bits(event->buffer)); |
| 1187 | xhci_dbg(xhci, "Offset 0x04 (buffer hi) = 0x%x\n", |
| 1188 | upper_32_bits(event->buffer)); |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1189 | xhci_dbg(xhci, "Offset 0x08 (transfer length) = 0x%x\n", |
| 1190 | (unsigned int) event->transfer_len); |
| 1191 | xhci_dbg(xhci, "Offset 0x0C (flags) = 0x%x\n", |
| 1192 | (unsigned int) event->flags); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1193 | |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1194 | /* Look for common error cases */ |
Sarah Sharp | 66d1eeb | 2009-08-27 14:35:53 -0700 | [diff] [blame] | 1195 | trb_comp_code = GET_COMP_CODE(event->transfer_len); |
| 1196 | switch (trb_comp_code) { |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1197 | /* Skip codes that require special handling depending on |
| 1198 | * transfer type |
| 1199 | */ |
| 1200 | case COMP_SUCCESS: |
| 1201 | case COMP_SHORT_TX: |
| 1202 | break; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1203 | case COMP_STOP: |
| 1204 | xhci_dbg(xhci, "Stopped on Transfer TRB\n"); |
| 1205 | break; |
| 1206 | case COMP_STOP_INVAL: |
| 1207 | xhci_dbg(xhci, "Stopped on No-op or Link TRB\n"); |
| 1208 | break; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1209 | case COMP_STALL: |
| 1210 | xhci_warn(xhci, "WARN: Stalled endpoint\n"); |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1211 | ep->ep_state |= EP_HALTED; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1212 | status = -EPIPE; |
| 1213 | break; |
| 1214 | case COMP_TRB_ERR: |
| 1215 | xhci_warn(xhci, "WARN: TRB error on endpoint\n"); |
| 1216 | status = -EILSEQ; |
| 1217 | break; |
Sarah Sharp | ec74e40 | 2009-11-11 10:28:36 -0800 | [diff] [blame] | 1218 | case COMP_SPLIT_ERR: |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1219 | case COMP_TX_ERR: |
| 1220 | xhci_warn(xhci, "WARN: transfer error on endpoint\n"); |
| 1221 | status = -EPROTO; |
| 1222 | break; |
Sarah Sharp | 4a73143 | 2009-07-27 12:04:32 -0700 | [diff] [blame] | 1223 | case COMP_BABBLE: |
| 1224 | xhci_warn(xhci, "WARN: babble error on endpoint\n"); |
| 1225 | status = -EOVERFLOW; |
| 1226 | break; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1227 | case COMP_DB_ERR: |
| 1228 | xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n"); |
| 1229 | status = -ENOSR; |
| 1230 | break; |
| 1231 | default: |
Sarah Sharp | b45b506 | 2009-12-09 15:59:06 -0800 | [diff] [blame] | 1232 | if (xhci_is_vendor_info_code(xhci, trb_comp_code)) { |
Sarah Sharp | 5ad6a52 | 2009-11-11 10:28:40 -0800 | [diff] [blame] | 1233 | status = 0; |
| 1234 | break; |
| 1235 | } |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1236 | xhci_warn(xhci, "ERROR Unknown event condition, HC probably busted\n"); |
| 1237 | urb = NULL; |
| 1238 | goto cleanup; |
| 1239 | } |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1240 | /* Now update the urb's actual_length and give back to the core */ |
| 1241 | /* Was this a control transfer? */ |
| 1242 | if (usb_endpoint_xfer_control(&td->urb->ep->desc)) { |
| 1243 | xhci_debug_trb(xhci, xhci->event_ring->dequeue); |
Sarah Sharp | 66d1eeb | 2009-08-27 14:35:53 -0700 | [diff] [blame] | 1244 | switch (trb_comp_code) { |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1245 | case COMP_SUCCESS: |
| 1246 | if (event_trb == ep_ring->dequeue) { |
| 1247 | xhci_warn(xhci, "WARN: Success on ctrl setup TRB without IOC set??\n"); |
| 1248 | status = -ESHUTDOWN; |
| 1249 | } else if (event_trb != td->last_trb) { |
| 1250 | xhci_warn(xhci, "WARN: Success on ctrl data TRB without IOC set??\n"); |
| 1251 | status = -ESHUTDOWN; |
| 1252 | } else { |
| 1253 | xhci_dbg(xhci, "Successful control transfer!\n"); |
| 1254 | status = 0; |
| 1255 | } |
| 1256 | break; |
| 1257 | case COMP_SHORT_TX: |
| 1258 | xhci_warn(xhci, "WARN: short transfer on control ep\n"); |
Sarah Sharp | 204970a | 2009-08-28 14:28:15 -0700 | [diff] [blame] | 1259 | if (td->urb->transfer_flags & URB_SHORT_NOT_OK) |
| 1260 | status = -EREMOTEIO; |
| 1261 | else |
| 1262 | status = 0; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1263 | break; |
Sarah Sharp | bcef3fd | 2009-11-11 10:28:44 -0800 | [diff] [blame] | 1264 | |
| 1265 | default: |
| 1266 | if (!xhci_requires_manual_halt_cleanup(xhci, |
| 1267 | ep_ctx, trb_comp_code)) |
Sarah Sharp | 83fbcdc | 2009-08-27 14:36:03 -0700 | [diff] [blame] | 1268 | break; |
Sarah Sharp | bcef3fd | 2009-11-11 10:28:44 -0800 | [diff] [blame] | 1269 | xhci_dbg(xhci, "TRB error code %u, " |
| 1270 | "halted endpoint index = %u\n", |
| 1271 | trb_comp_code, ep_index); |
Sarah Sharp | 83fbcdc | 2009-08-27 14:36:03 -0700 | [diff] [blame] | 1272 | /* else fall through */ |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1273 | case COMP_STALL: |
| 1274 | /* Did we transfer part of the data (middle) phase? */ |
| 1275 | if (event_trb != ep_ring->dequeue && |
| 1276 | event_trb != td->last_trb) |
| 1277 | td->urb->actual_length = |
| 1278 | td->urb->transfer_buffer_length |
| 1279 | - TRB_LEN(event->transfer_len); |
| 1280 | else |
| 1281 | td->urb->actual_length = 0; |
| 1282 | |
Sarah Sharp | bcef3fd | 2009-11-11 10:28:44 -0800 | [diff] [blame] | 1283 | xhci_cleanup_halted_endpoint(xhci, |
| 1284 | slot_id, ep_index, td, event_trb); |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1285 | goto td_cleanup; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1286 | } |
| 1287 | /* |
| 1288 | * Did we transfer any data, despite the errors that might have |
| 1289 | * happened? I.e. did we get past the setup stage? |
| 1290 | */ |
| 1291 | if (event_trb != ep_ring->dequeue) { |
| 1292 | /* The event was for the status stage */ |
| 1293 | if (event_trb == td->last_trb) { |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1294 | if (td->urb->actual_length != 0) { |
| 1295 | /* Don't overwrite a previously set error code */ |
Sarah Sharp | 204970a | 2009-08-28 14:28:15 -0700 | [diff] [blame] | 1296 | if ((status == -EINPROGRESS || |
| 1297 | status == 0) && |
| 1298 | (td->urb->transfer_flags |
| 1299 | & URB_SHORT_NOT_OK)) |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1300 | /* Did we already see a short data stage? */ |
| 1301 | status = -EREMOTEIO; |
| 1302 | } else { |
Sarah Sharp | 6288961 | 2009-07-27 12:03:36 -0700 | [diff] [blame] | 1303 | td->urb->actual_length = |
| 1304 | td->urb->transfer_buffer_length; |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1305 | } |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1306 | } else { |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1307 | /* Maybe the event was for the data stage? */ |
Sarah Sharp | 66d1eeb | 2009-08-27 14:35:53 -0700 | [diff] [blame] | 1308 | if (trb_comp_code != COMP_STOP_INVAL) { |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1309 | /* We didn't stop on a link TRB in the middle */ |
| 1310 | td->urb->actual_length = |
| 1311 | td->urb->transfer_buffer_length - |
| 1312 | TRB_LEN(event->transfer_len); |
Sarah Sharp | 6288961 | 2009-07-27 12:03:36 -0700 | [diff] [blame] | 1313 | xhci_dbg(xhci, "Waiting for status stage event\n"); |
| 1314 | urb = NULL; |
| 1315 | goto cleanup; |
| 1316 | } |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1317 | } |
| 1318 | } |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1319 | } else { |
Sarah Sharp | 66d1eeb | 2009-08-27 14:35:53 -0700 | [diff] [blame] | 1320 | switch (trb_comp_code) { |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1321 | case COMP_SUCCESS: |
| 1322 | /* Double check that the HW transferred everything. */ |
| 1323 | if (event_trb != td->last_trb) { |
| 1324 | xhci_warn(xhci, "WARN Successful completion " |
| 1325 | "on short TX\n"); |
| 1326 | if (td->urb->transfer_flags & URB_SHORT_NOT_OK) |
| 1327 | status = -EREMOTEIO; |
| 1328 | else |
| 1329 | status = 0; |
| 1330 | } else { |
Sarah Sharp | 624defa | 2009-09-02 12:14:28 -0700 | [diff] [blame] | 1331 | if (usb_endpoint_xfer_bulk(&td->urb->ep->desc)) |
| 1332 | xhci_dbg(xhci, "Successful bulk " |
| 1333 | "transfer!\n"); |
| 1334 | else |
| 1335 | xhci_dbg(xhci, "Successful interrupt " |
| 1336 | "transfer!\n"); |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1337 | status = 0; |
| 1338 | } |
| 1339 | break; |
| 1340 | case COMP_SHORT_TX: |
| 1341 | if (td->urb->transfer_flags & URB_SHORT_NOT_OK) |
| 1342 | status = -EREMOTEIO; |
| 1343 | else |
| 1344 | status = 0; |
| 1345 | break; |
| 1346 | default: |
| 1347 | /* Others already handled above */ |
| 1348 | break; |
| 1349 | } |
| 1350 | dev_dbg(&td->urb->dev->dev, |
| 1351 | "ep %#x - asked for %d bytes, " |
| 1352 | "%d bytes untransferred\n", |
| 1353 | td->urb->ep->desc.bEndpointAddress, |
| 1354 | td->urb->transfer_buffer_length, |
| 1355 | TRB_LEN(event->transfer_len)); |
| 1356 | /* Fast path - was this the last TRB in the TD for this URB? */ |
| 1357 | if (event_trb == td->last_trb) { |
| 1358 | if (TRB_LEN(event->transfer_len) != 0) { |
| 1359 | td->urb->actual_length = |
| 1360 | td->urb->transfer_buffer_length - |
| 1361 | TRB_LEN(event->transfer_len); |
Sarah Sharp | 99eb32d | 2009-08-27 14:36:24 -0700 | [diff] [blame] | 1362 | if (td->urb->transfer_buffer_length < |
| 1363 | td->urb->actual_length) { |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1364 | xhci_warn(xhci, "HC gave bad length " |
| 1365 | "of %d bytes left\n", |
| 1366 | TRB_LEN(event->transfer_len)); |
| 1367 | td->urb->actual_length = 0; |
Sarah Sharp | 2f697f6 | 2009-08-28 14:28:18 -0700 | [diff] [blame] | 1368 | if (td->urb->transfer_flags & |
| 1369 | URB_SHORT_NOT_OK) |
| 1370 | status = -EREMOTEIO; |
| 1371 | else |
| 1372 | status = 0; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1373 | } |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1374 | /* Don't overwrite a previously set error code */ |
| 1375 | if (status == -EINPROGRESS) { |
| 1376 | if (td->urb->transfer_flags & URB_SHORT_NOT_OK) |
| 1377 | status = -EREMOTEIO; |
| 1378 | else |
| 1379 | status = 0; |
| 1380 | } |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1381 | } else { |
| 1382 | td->urb->actual_length = td->urb->transfer_buffer_length; |
| 1383 | /* Ignore a short packet completion if the |
| 1384 | * untransferred length was zero. |
| 1385 | */ |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1386 | if (status == -EREMOTEIO) |
| 1387 | status = 0; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1388 | } |
| 1389 | } else { |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1390 | /* Slow path - walk the list, starting from the dequeue |
| 1391 | * pointer, to get the actual length transferred. |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1392 | */ |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1393 | union xhci_trb *cur_trb; |
| 1394 | struct xhci_segment *cur_seg; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1395 | |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1396 | td->urb->actual_length = 0; |
| 1397 | for (cur_trb = ep_ring->dequeue, cur_seg = ep_ring->deq_seg; |
| 1398 | cur_trb != event_trb; |
| 1399 | next_trb(xhci, ep_ring, &cur_seg, &cur_trb)) { |
| 1400 | if (TRB_TYPE(cur_trb->generic.field[3]) != TRB_TR_NOOP && |
| 1401 | TRB_TYPE(cur_trb->generic.field[3]) != TRB_LINK) |
| 1402 | td->urb->actual_length += |
| 1403 | TRB_LEN(cur_trb->generic.field[2]); |
| 1404 | } |
| 1405 | /* If the ring didn't stop on a Link or No-op TRB, add |
| 1406 | * in the actual bytes transferred from the Normal TRB |
| 1407 | */ |
Sarah Sharp | 66d1eeb | 2009-08-27 14:35:53 -0700 | [diff] [blame] | 1408 | if (trb_comp_code != COMP_STOP_INVAL) |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1409 | td->urb->actual_length += |
| 1410 | TRB_LEN(cur_trb->generic.field[2]) - |
| 1411 | TRB_LEN(event->transfer_len); |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1412 | } |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1413 | } |
Sarah Sharp | 66d1eeb | 2009-08-27 14:35:53 -0700 | [diff] [blame] | 1414 | if (trb_comp_code == COMP_STOP_INVAL || |
| 1415 | trb_comp_code == COMP_STOP) { |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1416 | /* The Endpoint Stop Command completion will take care of any |
| 1417 | * stopped TDs. A stopped TD may be restarted, so don't update |
| 1418 | * the ring dequeue pointer or take this TD off any lists yet. |
| 1419 | */ |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1420 | ep->stopped_td = td; |
| 1421 | ep->stopped_trb = event_trb; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1422 | } else { |
Sarah Sharp | bcef3fd | 2009-11-11 10:28:44 -0800 | [diff] [blame] | 1423 | if (trb_comp_code == COMP_STALL) { |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1424 | /* The transfer is completed from the driver's |
| 1425 | * perspective, but we need to issue a set dequeue |
| 1426 | * command for this stalled endpoint to move the dequeue |
| 1427 | * pointer past the TD. We can't do that here because |
Sarah Sharp | bcef3fd | 2009-11-11 10:28:44 -0800 | [diff] [blame] | 1428 | * the halt condition must be cleared first. Let the |
| 1429 | * USB class driver clear the stall later. |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1430 | */ |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1431 | ep->stopped_td = td; |
| 1432 | ep->stopped_trb = event_trb; |
Sarah Sharp | bcef3fd | 2009-11-11 10:28:44 -0800 | [diff] [blame] | 1433 | } else if (xhci_requires_manual_halt_cleanup(xhci, |
| 1434 | ep_ctx, trb_comp_code)) { |
| 1435 | /* Other types of errors halt the endpoint, but the |
| 1436 | * class driver doesn't call usb_reset_endpoint() unless |
| 1437 | * the error is -EPIPE. Clear the halted status in the |
| 1438 | * xHCI hardware manually. |
| 1439 | */ |
| 1440 | xhci_cleanup_halted_endpoint(xhci, |
| 1441 | slot_id, ep_index, td, event_trb); |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1442 | } else { |
| 1443 | /* Update ring dequeue pointer */ |
| 1444 | while (ep_ring->dequeue != td->last_trb) |
| 1445 | inc_deq(xhci, ep_ring, false); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1446 | inc_deq(xhci, ep_ring, false); |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1447 | } |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1448 | |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1449 | td_cleanup: |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1450 | /* Clean up the endpoint's TD list */ |
| 1451 | urb = td->urb; |
Sarah Sharp | 99eb32d | 2009-08-27 14:36:24 -0700 | [diff] [blame] | 1452 | /* Do one last check of the actual transfer length. |
| 1453 | * If the host controller said we transferred more data than |
| 1454 | * the buffer length, urb->actual_length will be a very big |
| 1455 | * number (since it's unsigned). Play it safe and say we didn't |
| 1456 | * transfer anything. |
| 1457 | */ |
| 1458 | if (urb->actual_length > urb->transfer_buffer_length) { |
| 1459 | xhci_warn(xhci, "URB transfer length is wrong, " |
| 1460 | "xHC issue? req. len = %u, " |
| 1461 | "act. len = %u\n", |
| 1462 | urb->transfer_buffer_length, |
| 1463 | urb->actual_length); |
| 1464 | urb->actual_length = 0; |
Sarah Sharp | 2f697f6 | 2009-08-28 14:28:18 -0700 | [diff] [blame] | 1465 | if (td->urb->transfer_flags & URB_SHORT_NOT_OK) |
| 1466 | status = -EREMOTEIO; |
| 1467 | else |
| 1468 | status = 0; |
Sarah Sharp | 99eb32d | 2009-08-27 14:36:24 -0700 | [diff] [blame] | 1469 | } |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1470 | list_del(&td->td_list); |
| 1471 | /* Was this TD slated to be cancelled but completed anyway? */ |
Sarah Sharp | 678539c | 2009-10-27 10:55:52 -0700 | [diff] [blame] | 1472 | if (!list_empty(&td->cancelled_td_list)) |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1473 | list_del(&td->cancelled_td_list); |
Sarah Sharp | 678539c | 2009-10-27 10:55:52 -0700 | [diff] [blame] | 1474 | |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1475 | /* Leave the TD around for the reset endpoint function to use |
| 1476 | * (but only if it's not a control endpoint, since we already |
| 1477 | * queued the Set TR dequeue pointer command for stalled |
| 1478 | * control endpoints). |
| 1479 | */ |
| 1480 | if (usb_endpoint_xfer_control(&urb->ep->desc) || |
Sarah Sharp | 83fbcdc | 2009-08-27 14:36:03 -0700 | [diff] [blame] | 1481 | (trb_comp_code != COMP_STALL && |
| 1482 | trb_comp_code != COMP_BABBLE)) { |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1483 | kfree(td); |
| 1484 | } |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1485 | urb->hcpriv = NULL; |
| 1486 | } |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1487 | cleanup: |
| 1488 | inc_deq(xhci, xhci->event_ring, true); |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1489 | xhci_set_hc_event_deq(xhci); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1490 | |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1491 | /* FIXME for multi-TD URBs (who have buffers bigger than 64MB) */ |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1492 | if (urb) { |
| 1493 | usb_hcd_unlink_urb_from_ep(xhci_to_hcd(xhci), urb); |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1494 | xhci_dbg(xhci, "Giveback URB %p, len = %d, status = %d\n", |
Sarah Sharp | 9191eee | 2009-08-27 14:36:14 -0700 | [diff] [blame] | 1495 | urb, urb->actual_length, status); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1496 | spin_unlock(&xhci->lock); |
| 1497 | usb_hcd_giveback_urb(xhci_to_hcd(xhci), urb, status); |
| 1498 | spin_lock(&xhci->lock); |
| 1499 | } |
| 1500 | return 0; |
| 1501 | } |
| 1502 | |
| 1503 | /* |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 1504 | * This function handles all OS-owned events on the event ring. It may drop |
| 1505 | * xhci->lock between event processing (e.g. to pass up port status changes). |
| 1506 | */ |
Stephen Rothwell | b7258a4 | 2009-04-29 19:02:47 -0700 | [diff] [blame] | 1507 | void xhci_handle_event(struct xhci_hcd *xhci) |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1508 | { |
| 1509 | union xhci_trb *event; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 1510 | int update_ptrs = 1; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1511 | int ret; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1512 | |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1513 | xhci_dbg(xhci, "In %s\n", __func__); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1514 | if (!xhci->event_ring || !xhci->event_ring->dequeue) { |
| 1515 | xhci->error_bitmask |= 1 << 1; |
| 1516 | return; |
| 1517 | } |
| 1518 | |
| 1519 | event = xhci->event_ring->dequeue; |
| 1520 | /* Does the HC or OS own the TRB? */ |
| 1521 | if ((event->event_cmd.flags & TRB_CYCLE) != |
| 1522 | xhci->event_ring->cycle_state) { |
| 1523 | xhci->error_bitmask |= 1 << 2; |
| 1524 | return; |
| 1525 | } |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1526 | xhci_dbg(xhci, "%s - OS owns TRB\n", __func__); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1527 | |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 1528 | /* FIXME: Handle more event types. */ |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1529 | switch ((event->event_cmd.flags & TRB_TYPE_BITMASK)) { |
| 1530 | case TRB_TYPE(TRB_COMPLETION): |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1531 | xhci_dbg(xhci, "%s - calling handle_cmd_completion\n", __func__); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1532 | handle_cmd_completion(xhci, &event->event_cmd); |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1533 | xhci_dbg(xhci, "%s - returned from handle_cmd_completion\n", __func__); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1534 | break; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 1535 | case TRB_TYPE(TRB_PORT_STATUS): |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1536 | xhci_dbg(xhci, "%s - calling handle_port_status\n", __func__); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 1537 | handle_port_status(xhci, event); |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1538 | xhci_dbg(xhci, "%s - returned from handle_port_status\n", __func__); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 1539 | update_ptrs = 0; |
| 1540 | break; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1541 | case TRB_TYPE(TRB_TRANSFER): |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1542 | xhci_dbg(xhci, "%s - calling handle_tx_event\n", __func__); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1543 | ret = handle_tx_event(xhci, &event->trans_event); |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1544 | xhci_dbg(xhci, "%s - returned from handle_tx_event\n", __func__); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1545 | if (ret < 0) |
| 1546 | xhci->error_bitmask |= 1 << 9; |
| 1547 | else |
| 1548 | update_ptrs = 0; |
| 1549 | break; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1550 | default: |
| 1551 | xhci->error_bitmask |= 1 << 3; |
| 1552 | } |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1553 | /* Any of the above functions may drop and re-acquire the lock, so check |
| 1554 | * to make sure a watchdog timer didn't mark the host as non-responsive. |
| 1555 | */ |
| 1556 | if (xhci->xhc_state & XHCI_STATE_DYING) { |
| 1557 | xhci_dbg(xhci, "xHCI host dying, returning from " |
| 1558 | "event handler.\n"); |
| 1559 | return; |
| 1560 | } |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1561 | |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 1562 | if (update_ptrs) { |
| 1563 | /* Update SW and HC event ring dequeue pointer */ |
| 1564 | inc_deq(xhci, xhci->event_ring, true); |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1565 | xhci_set_hc_event_deq(xhci); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 1566 | } |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1567 | /* Are there more items on the event ring? */ |
Stephen Rothwell | b7258a4 | 2009-04-29 19:02:47 -0700 | [diff] [blame] | 1568 | xhci_handle_event(xhci); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1569 | } |
| 1570 | |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1571 | /**** Endpoint Ring Operations ****/ |
| 1572 | |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 1573 | /* |
| 1574 | * Generic function for queueing a TRB on a ring. |
| 1575 | * The caller must have checked to make sure there's room on the ring. |
| 1576 | */ |
| 1577 | static void queue_trb(struct xhci_hcd *xhci, struct xhci_ring *ring, |
| 1578 | bool consumer, |
| 1579 | u32 field1, u32 field2, u32 field3, u32 field4) |
| 1580 | { |
| 1581 | struct xhci_generic_trb *trb; |
| 1582 | |
| 1583 | trb = &ring->enqueue->generic; |
| 1584 | trb->field[0] = field1; |
| 1585 | trb->field[1] = field2; |
| 1586 | trb->field[2] = field3; |
| 1587 | trb->field[3] = field4; |
| 1588 | inc_enq(xhci, ring, consumer); |
| 1589 | } |
| 1590 | |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1591 | /* |
| 1592 | * Does various checks on the endpoint ring, and makes it ready to queue num_trbs. |
| 1593 | * FIXME allocate segments if the ring is full. |
| 1594 | */ |
| 1595 | static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring, |
| 1596 | u32 ep_state, unsigned int num_trbs, gfp_t mem_flags) |
| 1597 | { |
| 1598 | /* Make sure the endpoint has been added to xHC schedule */ |
| 1599 | xhci_dbg(xhci, "Endpoint state = 0x%x\n", ep_state); |
| 1600 | switch (ep_state) { |
| 1601 | case EP_STATE_DISABLED: |
| 1602 | /* |
| 1603 | * USB core changed config/interfaces without notifying us, |
| 1604 | * or hardware is reporting the wrong state. |
| 1605 | */ |
| 1606 | xhci_warn(xhci, "WARN urb submitted to disabled ep\n"); |
| 1607 | return -ENOENT; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1608 | case EP_STATE_ERROR: |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1609 | xhci_warn(xhci, "WARN waiting for error on ep to be cleared\n"); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1610 | /* FIXME event handling code for error needs to clear it */ |
| 1611 | /* XXX not sure if this should be -ENOENT or not */ |
| 1612 | return -EINVAL; |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1613 | case EP_STATE_HALTED: |
| 1614 | xhci_dbg(xhci, "WARN halted endpoint, queueing URB anyway.\n"); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1615 | case EP_STATE_STOPPED: |
| 1616 | case EP_STATE_RUNNING: |
| 1617 | break; |
| 1618 | default: |
| 1619 | xhci_err(xhci, "ERROR unknown endpoint state for ep\n"); |
| 1620 | /* |
| 1621 | * FIXME issue Configure Endpoint command to try to get the HC |
| 1622 | * back into a known state. |
| 1623 | */ |
| 1624 | return -EINVAL; |
| 1625 | } |
| 1626 | if (!room_on_ring(xhci, ep_ring, num_trbs)) { |
| 1627 | /* FIXME allocate more room */ |
| 1628 | xhci_err(xhci, "ERROR no room on ep ring\n"); |
| 1629 | return -ENOMEM; |
| 1630 | } |
| 1631 | return 0; |
| 1632 | } |
| 1633 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1634 | static int prepare_transfer(struct xhci_hcd *xhci, |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1635 | struct xhci_virt_device *xdev, |
| 1636 | unsigned int ep_index, |
| 1637 | unsigned int num_trbs, |
| 1638 | struct urb *urb, |
| 1639 | struct xhci_td **td, |
| 1640 | gfp_t mem_flags) |
| 1641 | { |
| 1642 | int ret; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1643 | struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index); |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1644 | ret = prepare_ring(xhci, xdev->eps[ep_index].ring, |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1645 | ep_ctx->ep_info & EP_STATE_MASK, |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1646 | num_trbs, mem_flags); |
| 1647 | if (ret) |
| 1648 | return ret; |
| 1649 | *td = kzalloc(sizeof(struct xhci_td), mem_flags); |
| 1650 | if (!*td) |
| 1651 | return -ENOMEM; |
| 1652 | INIT_LIST_HEAD(&(*td)->td_list); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1653 | INIT_LIST_HEAD(&(*td)->cancelled_td_list); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1654 | |
| 1655 | ret = usb_hcd_link_urb_to_ep(xhci_to_hcd(xhci), urb); |
| 1656 | if (unlikely(ret)) { |
| 1657 | kfree(*td); |
| 1658 | return ret; |
| 1659 | } |
| 1660 | |
| 1661 | (*td)->urb = urb; |
| 1662 | urb->hcpriv = (void *) (*td); |
| 1663 | /* Add this TD to the tail of the endpoint ring's TD list */ |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1664 | list_add_tail(&(*td)->td_list, &xdev->eps[ep_index].ring->td_list); |
| 1665 | (*td)->start_seg = xdev->eps[ep_index].ring->enq_seg; |
| 1666 | (*td)->first_trb = xdev->eps[ep_index].ring->enqueue; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1667 | |
| 1668 | return 0; |
| 1669 | } |
| 1670 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1671 | static unsigned int count_sg_trbs_needed(struct xhci_hcd *xhci, struct urb *urb) |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1672 | { |
| 1673 | int num_sgs, num_trbs, running_total, temp, i; |
| 1674 | struct scatterlist *sg; |
| 1675 | |
| 1676 | sg = NULL; |
| 1677 | num_sgs = urb->num_sgs; |
| 1678 | temp = urb->transfer_buffer_length; |
| 1679 | |
| 1680 | xhci_dbg(xhci, "count sg list trbs: \n"); |
| 1681 | num_trbs = 0; |
| 1682 | for_each_sg(urb->sg->sg, sg, num_sgs, i) { |
| 1683 | unsigned int previous_total_trbs = num_trbs; |
| 1684 | unsigned int len = sg_dma_len(sg); |
| 1685 | |
| 1686 | /* Scatter gather list entries may cross 64KB boundaries */ |
| 1687 | running_total = TRB_MAX_BUFF_SIZE - |
| 1688 | (sg_dma_address(sg) & ((1 << TRB_MAX_BUFF_SHIFT) - 1)); |
| 1689 | if (running_total != 0) |
| 1690 | num_trbs++; |
| 1691 | |
| 1692 | /* How many more 64KB chunks to transfer, how many more TRBs? */ |
| 1693 | while (running_total < sg_dma_len(sg)) { |
| 1694 | num_trbs++; |
| 1695 | running_total += TRB_MAX_BUFF_SIZE; |
| 1696 | } |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 1697 | xhci_dbg(xhci, " sg #%d: dma = %#llx, len = %#x (%d), num_trbs = %d\n", |
| 1698 | i, (unsigned long long)sg_dma_address(sg), |
| 1699 | len, len, num_trbs - previous_total_trbs); |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1700 | |
| 1701 | len = min_t(int, len, temp); |
| 1702 | temp -= len; |
| 1703 | if (temp == 0) |
| 1704 | break; |
| 1705 | } |
| 1706 | xhci_dbg(xhci, "\n"); |
| 1707 | if (!in_interrupt()) |
| 1708 | dev_dbg(&urb->dev->dev, "ep %#x - urb len = %d, sglist used, num_trbs = %d\n", |
| 1709 | urb->ep->desc.bEndpointAddress, |
| 1710 | urb->transfer_buffer_length, |
| 1711 | num_trbs); |
| 1712 | return num_trbs; |
| 1713 | } |
| 1714 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1715 | static void check_trb_math(struct urb *urb, int num_trbs, int running_total) |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1716 | { |
| 1717 | if (num_trbs != 0) |
| 1718 | dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated number of " |
| 1719 | "TRBs, %d left\n", __func__, |
| 1720 | urb->ep->desc.bEndpointAddress, num_trbs); |
| 1721 | if (running_total != urb->transfer_buffer_length) |
| 1722 | dev_dbg(&urb->dev->dev, "%s - ep %#x - Miscalculated tx length, " |
| 1723 | "queued %#x (%d), asked for %#x (%d)\n", |
| 1724 | __func__, |
| 1725 | urb->ep->desc.bEndpointAddress, |
| 1726 | running_total, running_total, |
| 1727 | urb->transfer_buffer_length, |
| 1728 | urb->transfer_buffer_length); |
| 1729 | } |
| 1730 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1731 | static void giveback_first_trb(struct xhci_hcd *xhci, int slot_id, |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1732 | unsigned int ep_index, int start_cycle, |
| 1733 | struct xhci_generic_trb *start_trb, struct xhci_td *td) |
| 1734 | { |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1735 | /* |
| 1736 | * Pass all the TRBs to the hardware at once and make sure this write |
| 1737 | * isn't reordered. |
| 1738 | */ |
| 1739 | wmb(); |
| 1740 | start_trb->field[3] |= start_cycle; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1741 | ring_ep_doorbell(xhci, slot_id, ep_index); |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1742 | } |
| 1743 | |
Sarah Sharp | 624defa | 2009-09-02 12:14:28 -0700 | [diff] [blame] | 1744 | /* |
| 1745 | * xHCI uses normal TRBs for both bulk and interrupt. When the interrupt |
| 1746 | * endpoint is to be serviced, the xHC will consume (at most) one TD. A TD |
| 1747 | * (comprised of sg list entries) can take several service intervals to |
| 1748 | * transmit. |
| 1749 | */ |
| 1750 | int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags, |
| 1751 | struct urb *urb, int slot_id, unsigned int ep_index) |
| 1752 | { |
| 1753 | struct xhci_ep_ctx *ep_ctx = xhci_get_ep_ctx(xhci, |
| 1754 | xhci->devs[slot_id]->out_ctx, ep_index); |
| 1755 | int xhci_interval; |
| 1756 | int ep_interval; |
| 1757 | |
| 1758 | xhci_interval = EP_INTERVAL_TO_UFRAMES(ep_ctx->ep_info); |
| 1759 | ep_interval = urb->interval; |
| 1760 | /* Convert to microframes */ |
| 1761 | if (urb->dev->speed == USB_SPEED_LOW || |
| 1762 | urb->dev->speed == USB_SPEED_FULL) |
| 1763 | ep_interval *= 8; |
| 1764 | /* FIXME change this to a warning and a suggestion to use the new API |
| 1765 | * to set the polling interval (once the API is added). |
| 1766 | */ |
| 1767 | if (xhci_interval != ep_interval) { |
| 1768 | if (!printk_ratelimit()) |
| 1769 | dev_dbg(&urb->dev->dev, "Driver uses different interval" |
| 1770 | " (%d microframe%s) than xHCI " |
| 1771 | "(%d microframe%s)\n", |
| 1772 | ep_interval, |
| 1773 | ep_interval == 1 ? "" : "s", |
| 1774 | xhci_interval, |
| 1775 | xhci_interval == 1 ? "" : "s"); |
| 1776 | urb->interval = xhci_interval; |
| 1777 | /* Convert back to frames for LS/FS devices */ |
| 1778 | if (urb->dev->speed == USB_SPEED_LOW || |
| 1779 | urb->dev->speed == USB_SPEED_FULL) |
| 1780 | urb->interval /= 8; |
| 1781 | } |
| 1782 | return xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb, slot_id, ep_index); |
| 1783 | } |
| 1784 | |
Sarah Sharp | 04dd950 | 2009-11-11 10:28:30 -0800 | [diff] [blame] | 1785 | /* |
| 1786 | * The TD size is the number of bytes remaining in the TD (including this TRB), |
| 1787 | * right shifted by 10. |
| 1788 | * It must fit in bits 21:17, so it can't be bigger than 31. |
| 1789 | */ |
| 1790 | static u32 xhci_td_remainder(unsigned int remainder) |
| 1791 | { |
| 1792 | u32 max = (1 << (21 - 17 + 1)) - 1; |
| 1793 | |
| 1794 | if ((remainder >> 10) >= max) |
| 1795 | return max << 17; |
| 1796 | else |
| 1797 | return (remainder >> 10) << 17; |
| 1798 | } |
| 1799 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1800 | static int queue_bulk_sg_tx(struct xhci_hcd *xhci, gfp_t mem_flags, |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1801 | struct urb *urb, int slot_id, unsigned int ep_index) |
| 1802 | { |
| 1803 | struct xhci_ring *ep_ring; |
| 1804 | unsigned int num_trbs; |
| 1805 | struct xhci_td *td; |
| 1806 | struct scatterlist *sg; |
| 1807 | int num_sgs; |
| 1808 | int trb_buff_len, this_sg_len, running_total; |
| 1809 | bool first_trb; |
| 1810 | u64 addr; |
| 1811 | |
| 1812 | struct xhci_generic_trb *start_trb; |
| 1813 | int start_cycle; |
| 1814 | |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1815 | ep_ring = xhci->devs[slot_id]->eps[ep_index].ring; |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1816 | num_trbs = count_sg_trbs_needed(xhci, urb); |
| 1817 | num_sgs = urb->num_sgs; |
| 1818 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1819 | trb_buff_len = prepare_transfer(xhci, xhci->devs[slot_id], |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1820 | ep_index, num_trbs, urb, &td, mem_flags); |
| 1821 | if (trb_buff_len < 0) |
| 1822 | return trb_buff_len; |
| 1823 | /* |
| 1824 | * Don't give the first TRB to the hardware (by toggling the cycle bit) |
| 1825 | * until we've finished creating all the other TRBs. The ring's cycle |
| 1826 | * state may change as we enqueue the other TRBs, so save it too. |
| 1827 | */ |
| 1828 | start_trb = &ep_ring->enqueue->generic; |
| 1829 | start_cycle = ep_ring->cycle_state; |
| 1830 | |
| 1831 | running_total = 0; |
| 1832 | /* |
| 1833 | * How much data is in the first TRB? |
| 1834 | * |
| 1835 | * There are three forces at work for TRB buffer pointers and lengths: |
| 1836 | * 1. We don't want to walk off the end of this sg-list entry buffer. |
| 1837 | * 2. The transfer length that the driver requested may be smaller than |
| 1838 | * the amount of memory allocated for this scatter-gather list. |
| 1839 | * 3. TRBs buffers can't cross 64KB boundaries. |
| 1840 | */ |
| 1841 | sg = urb->sg->sg; |
| 1842 | addr = (u64) sg_dma_address(sg); |
| 1843 | this_sg_len = sg_dma_len(sg); |
| 1844 | trb_buff_len = TRB_MAX_BUFF_SIZE - |
| 1845 | (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1)); |
| 1846 | trb_buff_len = min_t(int, trb_buff_len, this_sg_len); |
| 1847 | if (trb_buff_len > urb->transfer_buffer_length) |
| 1848 | trb_buff_len = urb->transfer_buffer_length; |
| 1849 | xhci_dbg(xhci, "First length to xfer from 1st sglist entry = %u\n", |
| 1850 | trb_buff_len); |
| 1851 | |
| 1852 | first_trb = true; |
| 1853 | /* Queue the first TRB, even if it's zero-length */ |
| 1854 | do { |
| 1855 | u32 field = 0; |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 1856 | u32 length_field = 0; |
Sarah Sharp | 04dd950 | 2009-11-11 10:28:30 -0800 | [diff] [blame] | 1857 | u32 remainder = 0; |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1858 | |
| 1859 | /* Don't change the cycle bit of the first TRB until later */ |
| 1860 | if (first_trb) |
| 1861 | first_trb = false; |
| 1862 | else |
| 1863 | field |= ep_ring->cycle_state; |
| 1864 | |
| 1865 | /* Chain all the TRBs together; clear the chain bit in the last |
| 1866 | * TRB to indicate it's the last TRB in the chain. |
| 1867 | */ |
| 1868 | if (num_trbs > 1) { |
| 1869 | field |= TRB_CHAIN; |
| 1870 | } else { |
| 1871 | /* FIXME - add check for ZERO_PACKET flag before this */ |
| 1872 | td->last_trb = ep_ring->enqueue; |
| 1873 | field |= TRB_IOC; |
| 1874 | } |
| 1875 | xhci_dbg(xhci, " sg entry: dma = %#x, len = %#x (%d), " |
| 1876 | "64KB boundary at %#x, end dma = %#x\n", |
| 1877 | (unsigned int) addr, trb_buff_len, trb_buff_len, |
| 1878 | (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1), |
| 1879 | (unsigned int) addr + trb_buff_len); |
| 1880 | if (TRB_MAX_BUFF_SIZE - |
| 1881 | (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1)) < trb_buff_len) { |
| 1882 | xhci_warn(xhci, "WARN: sg dma xfer crosses 64KB boundaries!\n"); |
| 1883 | xhci_dbg(xhci, "Next boundary at %#x, end dma = %#x\n", |
| 1884 | (unsigned int) (addr + TRB_MAX_BUFF_SIZE) & ~(TRB_MAX_BUFF_SIZE - 1), |
| 1885 | (unsigned int) addr + trb_buff_len); |
| 1886 | } |
Sarah Sharp | 04dd950 | 2009-11-11 10:28:30 -0800 | [diff] [blame] | 1887 | remainder = xhci_td_remainder(urb->transfer_buffer_length - |
| 1888 | running_total) ; |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 1889 | length_field = TRB_LEN(trb_buff_len) | |
Sarah Sharp | 04dd950 | 2009-11-11 10:28:30 -0800 | [diff] [blame] | 1890 | remainder | |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 1891 | TRB_INTR_TARGET(0); |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1892 | queue_trb(xhci, ep_ring, false, |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 1893 | lower_32_bits(addr), |
| 1894 | upper_32_bits(addr), |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 1895 | length_field, |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1896 | /* We always want to know if the TRB was short, |
| 1897 | * or we won't get an event when it completes. |
| 1898 | * (Unless we use event data TRBs, which are a |
| 1899 | * waste of space and HC resources.) |
| 1900 | */ |
| 1901 | field | TRB_ISP | TRB_TYPE(TRB_NORMAL)); |
| 1902 | --num_trbs; |
| 1903 | running_total += trb_buff_len; |
| 1904 | |
| 1905 | /* Calculate length for next transfer -- |
| 1906 | * Are we done queueing all the TRBs for this sg entry? |
| 1907 | */ |
| 1908 | this_sg_len -= trb_buff_len; |
| 1909 | if (this_sg_len == 0) { |
| 1910 | --num_sgs; |
| 1911 | if (num_sgs == 0) |
| 1912 | break; |
| 1913 | sg = sg_next(sg); |
| 1914 | addr = (u64) sg_dma_address(sg); |
| 1915 | this_sg_len = sg_dma_len(sg); |
| 1916 | } else { |
| 1917 | addr += trb_buff_len; |
| 1918 | } |
| 1919 | |
| 1920 | trb_buff_len = TRB_MAX_BUFF_SIZE - |
| 1921 | (addr & ((1 << TRB_MAX_BUFF_SHIFT) - 1)); |
| 1922 | trb_buff_len = min_t(int, trb_buff_len, this_sg_len); |
| 1923 | if (running_total + trb_buff_len > urb->transfer_buffer_length) |
| 1924 | trb_buff_len = |
| 1925 | urb->transfer_buffer_length - running_total; |
| 1926 | } while (running_total < urb->transfer_buffer_length); |
| 1927 | |
| 1928 | check_trb_math(urb, num_trbs, running_total); |
| 1929 | giveback_first_trb(xhci, slot_id, ep_index, start_cycle, start_trb, td); |
| 1930 | return 0; |
| 1931 | } |
| 1932 | |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1933 | /* This is very similar to what ehci-q.c qtd_fill() does */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1934 | int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags, |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1935 | struct urb *urb, int slot_id, unsigned int ep_index) |
| 1936 | { |
| 1937 | struct xhci_ring *ep_ring; |
| 1938 | struct xhci_td *td; |
| 1939 | int num_trbs; |
| 1940 | struct xhci_generic_trb *start_trb; |
| 1941 | bool first_trb; |
| 1942 | int start_cycle; |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 1943 | u32 field, length_field; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1944 | |
| 1945 | int running_total, trb_buff_len, ret; |
| 1946 | u64 addr; |
| 1947 | |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1948 | if (urb->sg) |
| 1949 | return queue_bulk_sg_tx(xhci, mem_flags, urb, slot_id, ep_index); |
| 1950 | |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1951 | ep_ring = xhci->devs[slot_id]->eps[ep_index].ring; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1952 | |
| 1953 | num_trbs = 0; |
| 1954 | /* How much data is (potentially) left before the 64KB boundary? */ |
| 1955 | running_total = TRB_MAX_BUFF_SIZE - |
| 1956 | (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1)); |
| 1957 | |
| 1958 | /* If there's some data on this 64KB chunk, or we have to send a |
| 1959 | * zero-length transfer, we need at least one TRB |
| 1960 | */ |
| 1961 | if (running_total != 0 || urb->transfer_buffer_length == 0) |
| 1962 | num_trbs++; |
| 1963 | /* How many more 64KB chunks to transfer, how many more TRBs? */ |
| 1964 | while (running_total < urb->transfer_buffer_length) { |
| 1965 | num_trbs++; |
| 1966 | running_total += TRB_MAX_BUFF_SIZE; |
| 1967 | } |
| 1968 | /* FIXME: this doesn't deal with URB_ZERO_PACKET - need one more */ |
| 1969 | |
| 1970 | if (!in_interrupt()) |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 1971 | dev_dbg(&urb->dev->dev, "ep %#x - urb len = %#x (%d), addr = %#llx, num_trbs = %d\n", |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1972 | urb->ep->desc.bEndpointAddress, |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1973 | urb->transfer_buffer_length, |
| 1974 | urb->transfer_buffer_length, |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 1975 | (unsigned long long)urb->transfer_dma, |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1976 | num_trbs); |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 1977 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1978 | ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index, |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 1979 | num_trbs, urb, &td, mem_flags); |
| 1980 | if (ret < 0) |
| 1981 | return ret; |
| 1982 | |
| 1983 | /* |
| 1984 | * Don't give the first TRB to the hardware (by toggling the cycle bit) |
| 1985 | * until we've finished creating all the other TRBs. The ring's cycle |
| 1986 | * state may change as we enqueue the other TRBs, so save it too. |
| 1987 | */ |
| 1988 | start_trb = &ep_ring->enqueue->generic; |
| 1989 | start_cycle = ep_ring->cycle_state; |
| 1990 | |
| 1991 | running_total = 0; |
| 1992 | /* How much data is in the first TRB? */ |
| 1993 | addr = (u64) urb->transfer_dma; |
| 1994 | trb_buff_len = TRB_MAX_BUFF_SIZE - |
| 1995 | (urb->transfer_dma & ((1 << TRB_MAX_BUFF_SHIFT) - 1)); |
| 1996 | if (urb->transfer_buffer_length < trb_buff_len) |
| 1997 | trb_buff_len = urb->transfer_buffer_length; |
| 1998 | |
| 1999 | first_trb = true; |
| 2000 | |
| 2001 | /* Queue the first TRB, even if it's zero-length */ |
| 2002 | do { |
Sarah Sharp | 04dd950 | 2009-11-11 10:28:30 -0800 | [diff] [blame] | 2003 | u32 remainder = 0; |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 2004 | field = 0; |
| 2005 | |
| 2006 | /* Don't change the cycle bit of the first TRB until later */ |
| 2007 | if (first_trb) |
| 2008 | first_trb = false; |
| 2009 | else |
| 2010 | field |= ep_ring->cycle_state; |
| 2011 | |
| 2012 | /* Chain all the TRBs together; clear the chain bit in the last |
| 2013 | * TRB to indicate it's the last TRB in the chain. |
| 2014 | */ |
| 2015 | if (num_trbs > 1) { |
| 2016 | field |= TRB_CHAIN; |
| 2017 | } else { |
| 2018 | /* FIXME - add check for ZERO_PACKET flag before this */ |
| 2019 | td->last_trb = ep_ring->enqueue; |
| 2020 | field |= TRB_IOC; |
| 2021 | } |
Sarah Sharp | 04dd950 | 2009-11-11 10:28:30 -0800 | [diff] [blame] | 2022 | remainder = xhci_td_remainder(urb->transfer_buffer_length - |
| 2023 | running_total); |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 2024 | length_field = TRB_LEN(trb_buff_len) | |
Sarah Sharp | 04dd950 | 2009-11-11 10:28:30 -0800 | [diff] [blame] | 2025 | remainder | |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 2026 | TRB_INTR_TARGET(0); |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 2027 | queue_trb(xhci, ep_ring, false, |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 2028 | lower_32_bits(addr), |
| 2029 | upper_32_bits(addr), |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 2030 | length_field, |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 2031 | /* We always want to know if the TRB was short, |
| 2032 | * or we won't get an event when it completes. |
| 2033 | * (Unless we use event data TRBs, which are a |
| 2034 | * waste of space and HC resources.) |
| 2035 | */ |
| 2036 | field | TRB_ISP | TRB_TYPE(TRB_NORMAL)); |
| 2037 | --num_trbs; |
| 2038 | running_total += trb_buff_len; |
| 2039 | |
| 2040 | /* Calculate length for next transfer */ |
| 2041 | addr += trb_buff_len; |
| 2042 | trb_buff_len = urb->transfer_buffer_length - running_total; |
| 2043 | if (trb_buff_len > TRB_MAX_BUFF_SIZE) |
| 2044 | trb_buff_len = TRB_MAX_BUFF_SIZE; |
| 2045 | } while (running_total < urb->transfer_buffer_length); |
| 2046 | |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 2047 | check_trb_math(urb, num_trbs, running_total); |
| 2048 | giveback_first_trb(xhci, slot_id, ep_index, start_cycle, start_trb, td); |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 2049 | return 0; |
| 2050 | } |
| 2051 | |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 2052 | /* Caller must have locked xhci->lock */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 2053 | int xhci_queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags, |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 2054 | struct urb *urb, int slot_id, unsigned int ep_index) |
| 2055 | { |
| 2056 | struct xhci_ring *ep_ring; |
| 2057 | int num_trbs; |
| 2058 | int ret; |
| 2059 | struct usb_ctrlrequest *setup; |
| 2060 | struct xhci_generic_trb *start_trb; |
| 2061 | int start_cycle; |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 2062 | u32 field, length_field; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 2063 | struct xhci_td *td; |
| 2064 | |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 2065 | ep_ring = xhci->devs[slot_id]->eps[ep_index].ring; |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 2066 | |
| 2067 | /* |
| 2068 | * Need to copy setup packet into setup TRB, so we can't use the setup |
| 2069 | * DMA address. |
| 2070 | */ |
| 2071 | if (!urb->setup_packet) |
| 2072 | return -EINVAL; |
| 2073 | |
| 2074 | if (!in_interrupt()) |
| 2075 | xhci_dbg(xhci, "Queueing ctrl tx for slot id %d, ep %d\n", |
| 2076 | slot_id, ep_index); |
| 2077 | /* 1 TRB for setup, 1 for status */ |
| 2078 | num_trbs = 2; |
| 2079 | /* |
| 2080 | * Don't need to check if we need additional event data and normal TRBs, |
| 2081 | * since data in control transfers will never get bigger than 16MB |
| 2082 | * XXX: can we get a buffer that crosses 64KB boundaries? |
| 2083 | */ |
| 2084 | if (urb->transfer_buffer_length > 0) |
| 2085 | num_trbs++; |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 2086 | ret = prepare_transfer(xhci, xhci->devs[slot_id], ep_index, num_trbs, |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 2087 | urb, &td, mem_flags); |
| 2088 | if (ret < 0) |
| 2089 | return ret; |
| 2090 | |
| 2091 | /* |
| 2092 | * Don't give the first TRB to the hardware (by toggling the cycle bit) |
| 2093 | * until we've finished creating all the other TRBs. The ring's cycle |
| 2094 | * state may change as we enqueue the other TRBs, so save it too. |
| 2095 | */ |
| 2096 | start_trb = &ep_ring->enqueue->generic; |
| 2097 | start_cycle = ep_ring->cycle_state; |
| 2098 | |
| 2099 | /* Queue setup TRB - see section 6.4.1.2.1 */ |
| 2100 | /* FIXME better way to translate setup_packet into two u32 fields? */ |
| 2101 | setup = (struct usb_ctrlrequest *) urb->setup_packet; |
| 2102 | queue_trb(xhci, ep_ring, false, |
| 2103 | /* FIXME endianness is probably going to bite my ass here. */ |
| 2104 | setup->bRequestType | setup->bRequest << 8 | setup->wValue << 16, |
| 2105 | setup->wIndex | setup->wLength << 16, |
| 2106 | TRB_LEN(8) | TRB_INTR_TARGET(0), |
| 2107 | /* Immediate data in pointer */ |
| 2108 | TRB_IDT | TRB_TYPE(TRB_SETUP)); |
| 2109 | |
| 2110 | /* If there's data, queue data TRBs */ |
| 2111 | field = 0; |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 2112 | length_field = TRB_LEN(urb->transfer_buffer_length) | |
Sarah Sharp | 04dd950 | 2009-11-11 10:28:30 -0800 | [diff] [blame] | 2113 | xhci_td_remainder(urb->transfer_buffer_length) | |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 2114 | TRB_INTR_TARGET(0); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 2115 | if (urb->transfer_buffer_length > 0) { |
| 2116 | if (setup->bRequestType & USB_DIR_IN) |
| 2117 | field |= TRB_DIR_IN; |
| 2118 | queue_trb(xhci, ep_ring, false, |
| 2119 | lower_32_bits(urb->transfer_dma), |
| 2120 | upper_32_bits(urb->transfer_dma), |
Sarah Sharp | f9dc68f | 2009-07-27 12:03:07 -0700 | [diff] [blame] | 2121 | length_field, |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 2122 | /* Event on short tx */ |
| 2123 | field | TRB_ISP | TRB_TYPE(TRB_DATA) | ep_ring->cycle_state); |
| 2124 | } |
| 2125 | |
| 2126 | /* Save the DMA address of the last TRB in the TD */ |
| 2127 | td->last_trb = ep_ring->enqueue; |
| 2128 | |
| 2129 | /* Queue status TRB - see Table 7 and sections 4.11.2.2 and 6.4.1.2.3 */ |
| 2130 | /* If the device sent data, the status stage is an OUT transfer */ |
| 2131 | if (urb->transfer_buffer_length > 0 && setup->bRequestType & USB_DIR_IN) |
| 2132 | field = 0; |
| 2133 | else |
| 2134 | field = TRB_DIR_IN; |
| 2135 | queue_trb(xhci, ep_ring, false, |
| 2136 | 0, |
| 2137 | 0, |
| 2138 | TRB_INTR_TARGET(0), |
| 2139 | /* Event on completion */ |
| 2140 | field | TRB_IOC | TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state); |
| 2141 | |
Sarah Sharp | 8a96c05 | 2009-04-27 19:59:19 -0700 | [diff] [blame] | 2142 | giveback_first_trb(xhci, slot_id, ep_index, start_cycle, start_trb, td); |
Sarah Sharp | d0e96f5 | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 2143 | return 0; |
| 2144 | } |
| 2145 | |
| 2146 | /**** Command Ring Operations ****/ |
| 2147 | |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2148 | /* Generic function for queueing a command TRB on the command ring. |
| 2149 | * Check to make sure there's room on the command ring for one command TRB. |
| 2150 | * Also check that there's room reserved for commands that must not fail. |
| 2151 | * If this is a command that must not fail, meaning command_must_succeed = TRUE, |
| 2152 | * then only check for the number of reserved spots. |
| 2153 | * Don't decrement xhci->cmd_ring_reserved_trbs after we've queued the TRB |
| 2154 | * because the command event handler may want to resubmit a failed command. |
| 2155 | */ |
| 2156 | static int queue_command(struct xhci_hcd *xhci, u32 field1, u32 field2, |
| 2157 | u32 field3, u32 field4, bool command_must_succeed) |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 2158 | { |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2159 | int reserved_trbs = xhci->cmd_ring_reserved_trbs; |
| 2160 | if (!command_must_succeed) |
| 2161 | reserved_trbs++; |
| 2162 | |
| 2163 | if (!room_on_ring(xhci, xhci->cmd_ring, reserved_trbs)) { |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 2164 | if (!in_interrupt()) |
| 2165 | xhci_err(xhci, "ERR: No room for command on command ring\n"); |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2166 | if (command_must_succeed) |
| 2167 | xhci_err(xhci, "ERR: Reserved TRB counting for " |
| 2168 | "unfailable commands failed.\n"); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 2169 | return -ENOMEM; |
| 2170 | } |
| 2171 | queue_trb(xhci, xhci->cmd_ring, false, field1, field2, field3, |
| 2172 | field4 | xhci->cmd_ring->cycle_state); |
| 2173 | return 0; |
| 2174 | } |
| 2175 | |
| 2176 | /* Queue a no-op command on the command ring */ |
| 2177 | static int queue_cmd_noop(struct xhci_hcd *xhci) |
| 2178 | { |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2179 | return queue_command(xhci, 0, 0, 0, TRB_TYPE(TRB_CMD_NOOP), false); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 2180 | } |
| 2181 | |
| 2182 | /* |
| 2183 | * Place a no-op command on the command ring to test the command and |
| 2184 | * event ring. |
| 2185 | */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 2186 | void *xhci_setup_one_noop(struct xhci_hcd *xhci) |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 2187 | { |
| 2188 | if (queue_cmd_noop(xhci) < 0) |
| 2189 | return NULL; |
| 2190 | xhci->noops_submitted++; |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 2191 | return xhci_ring_cmd_db; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 2192 | } |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 2193 | |
| 2194 | /* Queue a slot enable or disable request on the command ring */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 2195 | int xhci_queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id) |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 2196 | { |
| 2197 | return queue_command(xhci, 0, 0, 0, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2198 | TRB_TYPE(trb_type) | SLOT_ID_FOR_TRB(slot_id), false); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 2199 | } |
| 2200 | |
| 2201 | /* Queue an address device command TRB */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 2202 | int xhci_queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, |
| 2203 | u32 slot_id) |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 2204 | { |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 2205 | return queue_command(xhci, lower_32_bits(in_ctx_ptr), |
| 2206 | upper_32_bits(in_ctx_ptr), 0, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2207 | TRB_TYPE(TRB_ADDR_DEV) | SLOT_ID_FOR_TRB(slot_id), |
| 2208 | false); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 2209 | } |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2210 | |
Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 2211 | /* Queue a reset device command TRB */ |
| 2212 | int xhci_queue_reset_device(struct xhci_hcd *xhci, u32 slot_id) |
| 2213 | { |
| 2214 | return queue_command(xhci, 0, 0, 0, |
| 2215 | TRB_TYPE(TRB_RESET_DEV) | SLOT_ID_FOR_TRB(slot_id), |
| 2216 | false); |
| 2217 | } |
| 2218 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2219 | /* Queue a configure endpoint command TRB */ |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 2220 | int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2221 | u32 slot_id, bool command_must_succeed) |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2222 | { |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 2223 | return queue_command(xhci, lower_32_bits(in_ctx_ptr), |
| 2224 | upper_32_bits(in_ctx_ptr), 0, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2225 | TRB_TYPE(TRB_CONFIG_EP) | SLOT_ID_FOR_TRB(slot_id), |
| 2226 | command_must_succeed); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2227 | } |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 2228 | |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2229 | /* Queue an evaluate context command TRB */ |
| 2230 | int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, |
| 2231 | u32 slot_id) |
| 2232 | { |
| 2233 | return queue_command(xhci, lower_32_bits(in_ctx_ptr), |
| 2234 | upper_32_bits(in_ctx_ptr), 0, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2235 | TRB_TYPE(TRB_EVAL_CONTEXT) | SLOT_ID_FOR_TRB(slot_id), |
| 2236 | false); |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2237 | } |
| 2238 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 2239 | int xhci_queue_stop_endpoint(struct xhci_hcd *xhci, int slot_id, |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 2240 | unsigned int ep_index) |
| 2241 | { |
| 2242 | u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id); |
| 2243 | u32 trb_ep_index = EP_ID_FOR_TRB(ep_index); |
| 2244 | u32 type = TRB_TYPE(TRB_STOP_RING); |
| 2245 | |
| 2246 | return queue_command(xhci, 0, 0, 0, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2247 | trb_slot_id | trb_ep_index | type, false); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 2248 | } |
| 2249 | |
| 2250 | /* Set Transfer Ring Dequeue Pointer command. |
| 2251 | * This should not be used for endpoints that have streams enabled. |
| 2252 | */ |
| 2253 | static int queue_set_tr_deq(struct xhci_hcd *xhci, int slot_id, |
| 2254 | unsigned int ep_index, struct xhci_segment *deq_seg, |
| 2255 | union xhci_trb *deq_ptr, u32 cycle_state) |
| 2256 | { |
| 2257 | dma_addr_t addr; |
| 2258 | u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id); |
| 2259 | u32 trb_ep_index = EP_ID_FOR_TRB(ep_index); |
| 2260 | u32 type = TRB_TYPE(TRB_SET_DEQ); |
| 2261 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 2262 | addr = xhci_trb_virt_to_dma(deq_seg, deq_ptr); |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 2263 | if (addr == 0) { |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 2264 | xhci_warn(xhci, "WARN Cannot submit Set TR Deq Ptr\n"); |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 2265 | xhci_warn(xhci, "WARN deq seg = %p, deq pt = %p\n", |
| 2266 | deq_seg, deq_ptr); |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 2267 | return 0; |
| 2268 | } |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 2269 | return queue_command(xhci, lower_32_bits(addr) | cycle_state, |
| 2270 | upper_32_bits(addr), 0, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2271 | trb_slot_id | trb_ep_index | type, false); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 2272 | } |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 2273 | |
| 2274 | int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id, |
| 2275 | unsigned int ep_index) |
| 2276 | { |
| 2277 | u32 trb_slot_id = SLOT_ID_FOR_TRB(slot_id); |
| 2278 | u32 trb_ep_index = EP_ID_FOR_TRB(ep_index); |
| 2279 | u32 type = TRB_TYPE(TRB_RESET_EP); |
| 2280 | |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2281 | return queue_command(xhci, 0, 0, 0, trb_slot_id | trb_ep_index | type, |
| 2282 | false); |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 2283 | } |