blob: d299ffad806b3346d8574723bf53abb48c671de4 [file] [log] [blame]
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001/*
2 * xHCI host controller driver
3 *
4 * Copyright (C) 2008 Intel Corp.
5 *
6 * Author: Sarah Sharp
7 * Some code borrowed from the Linux EHCI driver.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#include <linux/usb.h>
Sarah Sharp0ebbab32009-04-27 19:52:34 -070024#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Sarah Sharp527c6d72009-04-29 19:06:56 -070026#include <linux/dmapool.h>
Sarah Sharp66d4ead2009-04-27 19:52:28 -070027
28#include "xhci.h"
29
Sarah Sharp0ebbab32009-04-27 19:52:34 -070030/*
31 * Allocates a generic ring segment from the ring pool, sets the dma address,
32 * initializes the segment to zero, and sets the private next pointer to NULL.
33 *
34 * Section 4.11.1.1:
35 * "All components of all Command and Transfer TRBs shall be initialized to '0'"
36 */
37static struct xhci_segment *xhci_segment_alloc(struct xhci_hcd *xhci, gfp_t flags)
38{
39 struct xhci_segment *seg;
40 dma_addr_t dma;
41
42 seg = kzalloc(sizeof *seg, flags);
43 if (!seg)
44 return 0;
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -070045 xhci_dbg(xhci, "Allocating priv segment structure at %p\n", seg);
Sarah Sharp0ebbab32009-04-27 19:52:34 -070046
47 seg->trbs = dma_pool_alloc(xhci->segment_pool, flags, &dma);
48 if (!seg->trbs) {
49 kfree(seg);
50 return 0;
51 }
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -070052 xhci_dbg(xhci, "// Allocating segment at %p (virtual) 0x%llx (DMA)\n",
53 seg->trbs, (unsigned long long)dma);
Sarah Sharp0ebbab32009-04-27 19:52:34 -070054
55 memset(seg->trbs, 0, SEGMENT_SIZE);
56 seg->dma = dma;
57 seg->next = NULL;
58
59 return seg;
60}
61
62static void xhci_segment_free(struct xhci_hcd *xhci, struct xhci_segment *seg)
63{
64 if (!seg)
65 return;
66 if (seg->trbs) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -070067 xhci_dbg(xhci, "Freeing DMA segment at %p (virtual) 0x%llx (DMA)\n",
68 seg->trbs, (unsigned long long)seg->dma);
Sarah Sharp0ebbab32009-04-27 19:52:34 -070069 dma_pool_free(xhci->segment_pool, seg->trbs, seg->dma);
70 seg->trbs = NULL;
71 }
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -070072 xhci_dbg(xhci, "Freeing priv segment structure at %p\n", seg);
Sarah Sharp0ebbab32009-04-27 19:52:34 -070073 kfree(seg);
74}
75
76/*
77 * Make the prev segment point to the next segment.
78 *
79 * Change the last TRB in the prev segment to be a Link TRB which points to the
80 * DMA address of the next segment. The caller needs to set any Link TRB
81 * related flags, such as End TRB, Toggle Cycle, and no snoop.
82 */
83static void xhci_link_segments(struct xhci_hcd *xhci, struct xhci_segment *prev,
84 struct xhci_segment *next, bool link_trbs)
85{
86 u32 val;
87
88 if (!prev || !next)
89 return;
90 prev->next = next;
91 if (link_trbs) {
Sarah Sharp8e595a52009-07-27 12:03:31 -070092 prev->trbs[TRBS_PER_SEGMENT-1].link.segment_ptr = next->dma;
Sarah Sharp0ebbab32009-04-27 19:52:34 -070093
94 /* Set the last TRB in the segment to have a TRB type ID of Link TRB */
95 val = prev->trbs[TRBS_PER_SEGMENT-1].link.control;
96 val &= ~TRB_TYPE_BITMASK;
97 val |= TRB_TYPE(TRB_LINK);
Sarah Sharpb0567b32009-08-07 14:04:36 -070098 /* Always set the chain bit with 0.95 hardware */
99 if (xhci_link_trb_quirk(xhci))
100 val |= TRB_CHAIN;
Sarah Sharp0ebbab32009-04-27 19:52:34 -0700101 prev->trbs[TRBS_PER_SEGMENT-1].link.control = val;
102 }
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700103 xhci_dbg(xhci, "Linking segment 0x%llx to segment 0x%llx (DMA)\n",
104 (unsigned long long)prev->dma,
105 (unsigned long long)next->dma);
Sarah Sharp0ebbab32009-04-27 19:52:34 -0700106}
107
108/* XXX: Do we need the hcd structure in all these functions? */
Sarah Sharpf94e01862009-04-27 19:58:38 -0700109void xhci_ring_free(struct xhci_hcd *xhci, struct xhci_ring *ring)
Sarah Sharp0ebbab32009-04-27 19:52:34 -0700110{
111 struct xhci_segment *seg;
112 struct xhci_segment *first_seg;
113
114 if (!ring || !ring->first_seg)
115 return;
116 first_seg = ring->first_seg;
117 seg = first_seg->next;
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700118 xhci_dbg(xhci, "Freeing ring at %p\n", ring);
Sarah Sharp0ebbab32009-04-27 19:52:34 -0700119 while (seg != first_seg) {
120 struct xhci_segment *next = seg->next;
121 xhci_segment_free(xhci, seg);
122 seg = next;
123 }
124 xhci_segment_free(xhci, first_seg);
125 ring->first_seg = NULL;
126 kfree(ring);
127}
128
Sarah Sharp74f9fe22009-12-03 09:44:29 -0800129static void xhci_initialize_ring_info(struct xhci_ring *ring)
130{
131 /* The ring is empty, so the enqueue pointer == dequeue pointer */
132 ring->enqueue = ring->first_seg->trbs;
133 ring->enq_seg = ring->first_seg;
134 ring->dequeue = ring->enqueue;
135 ring->deq_seg = ring->first_seg;
136 /* The ring is initialized to 0. The producer must write 1 to the cycle
137 * bit to handover ownership of the TRB, so PCS = 1. The consumer must
138 * compare CCS to the cycle bit to check ownership, so CCS = 1.
139 */
140 ring->cycle_state = 1;
141 /* Not necessary for new rings, but needed for re-initialized rings */
142 ring->enq_updates = 0;
143 ring->deq_updates = 0;
144}
145
Sarah Sharp0ebbab32009-04-27 19:52:34 -0700146/**
147 * Create a new ring with zero or more segments.
148 *
149 * Link each segment together into a ring.
150 * Set the end flag and the cycle toggle bit on the last segment.
151 * See section 4.9.1 and figures 15 and 16.
152 */
153static struct xhci_ring *xhci_ring_alloc(struct xhci_hcd *xhci,
154 unsigned int num_segs, bool link_trbs, gfp_t flags)
155{
156 struct xhci_ring *ring;
157 struct xhci_segment *prev;
158
159 ring = kzalloc(sizeof *(ring), flags);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700160 xhci_dbg(xhci, "Allocating ring at %p\n", ring);
Sarah Sharp0ebbab32009-04-27 19:52:34 -0700161 if (!ring)
162 return 0;
163
Sarah Sharpd0e96f52009-04-27 19:58:01 -0700164 INIT_LIST_HEAD(&ring->td_list);
Sarah Sharp0ebbab32009-04-27 19:52:34 -0700165 if (num_segs == 0)
166 return ring;
167
168 ring->first_seg = xhci_segment_alloc(xhci, flags);
169 if (!ring->first_seg)
170 goto fail;
171 num_segs--;
172
173 prev = ring->first_seg;
174 while (num_segs > 0) {
175 struct xhci_segment *next;
176
177 next = xhci_segment_alloc(xhci, flags);
178 if (!next)
179 goto fail;
180 xhci_link_segments(xhci, prev, next, link_trbs);
181
182 prev = next;
183 num_segs--;
184 }
185 xhci_link_segments(xhci, prev, ring->first_seg, link_trbs);
186
187 if (link_trbs) {
188 /* See section 4.9.2.1 and 6.4.4.1 */
189 prev->trbs[TRBS_PER_SEGMENT-1].link.control |= (LINK_TOGGLE);
190 xhci_dbg(xhci, "Wrote link toggle flag to"
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700191 " segment %p (virtual), 0x%llx (DMA)\n",
192 prev, (unsigned long long)prev->dma);
Sarah Sharp0ebbab32009-04-27 19:52:34 -0700193 }
Sarah Sharp74f9fe22009-12-03 09:44:29 -0800194 xhci_initialize_ring_info(ring);
Sarah Sharp0ebbab32009-04-27 19:52:34 -0700195 return ring;
196
197fail:
198 xhci_ring_free(xhci, ring);
199 return 0;
200}
201
Sarah Sharp412566b2009-12-09 15:59:01 -0800202void xhci_free_or_cache_endpoint_ring(struct xhci_hcd *xhci,
203 struct xhci_virt_device *virt_dev,
204 unsigned int ep_index)
205{
206 int rings_cached;
207
208 rings_cached = virt_dev->num_rings_cached;
209 if (rings_cached < XHCI_MAX_RINGS_CACHED) {
210 virt_dev->num_rings_cached++;
211 rings_cached = virt_dev->num_rings_cached;
212 virt_dev->ring_cache[rings_cached] =
213 virt_dev->eps[ep_index].ring;
214 xhci_dbg(xhci, "Cached old ring, "
215 "%d ring%s cached\n",
216 rings_cached,
217 (rings_cached > 1) ? "s" : "");
218 } else {
219 xhci_ring_free(xhci, virt_dev->eps[ep_index].ring);
220 xhci_dbg(xhci, "Ring cache full (%d rings), "
221 "freeing ring\n",
222 virt_dev->num_rings_cached);
223 }
224 virt_dev->eps[ep_index].ring = NULL;
225}
226
Sarah Sharp74f9fe22009-12-03 09:44:29 -0800227/* Zero an endpoint ring (except for link TRBs) and move the enqueue and dequeue
228 * pointers to the beginning of the ring.
229 */
230static void xhci_reinit_cached_ring(struct xhci_hcd *xhci,
231 struct xhci_ring *ring)
232{
233 struct xhci_segment *seg = ring->first_seg;
234 do {
235 memset(seg->trbs, 0,
236 sizeof(union xhci_trb)*TRBS_PER_SEGMENT);
237 /* All endpoint rings have link TRBs */
238 xhci_link_segments(xhci, seg, seg->next, 1);
239 seg = seg->next;
240 } while (seg != ring->first_seg);
241 xhci_initialize_ring_info(ring);
242 /* td list should be empty since all URBs have been cancelled,
243 * but just in case...
244 */
245 INIT_LIST_HEAD(&ring->td_list);
246}
247
John Yound115b042009-07-27 12:05:15 -0700248#define CTX_SIZE(_hcc) (HCC_64BYTE_CONTEXT(_hcc) ? 64 : 32)
249
250struct xhci_container_ctx *xhci_alloc_container_ctx(struct xhci_hcd *xhci,
251 int type, gfp_t flags)
252{
253 struct xhci_container_ctx *ctx = kzalloc(sizeof(*ctx), flags);
254 if (!ctx)
255 return NULL;
256
257 BUG_ON((type != XHCI_CTX_TYPE_DEVICE) && (type != XHCI_CTX_TYPE_INPUT));
258 ctx->type = type;
259 ctx->size = HCC_64BYTE_CONTEXT(xhci->hcc_params) ? 2048 : 1024;
260 if (type == XHCI_CTX_TYPE_INPUT)
261 ctx->size += CTX_SIZE(xhci->hcc_params);
262
263 ctx->bytes = dma_pool_alloc(xhci->device_pool, flags, &ctx->dma);
264 memset(ctx->bytes, 0, ctx->size);
265 return ctx;
266}
267
268void xhci_free_container_ctx(struct xhci_hcd *xhci,
269 struct xhci_container_ctx *ctx)
270{
Sarah Sharpa1d78c12009-12-09 15:59:03 -0800271 if (!ctx)
272 return;
John Yound115b042009-07-27 12:05:15 -0700273 dma_pool_free(xhci->device_pool, ctx->bytes, ctx->dma);
274 kfree(ctx);
275}
276
277struct xhci_input_control_ctx *xhci_get_input_control_ctx(struct xhci_hcd *xhci,
278 struct xhci_container_ctx *ctx)
279{
280 BUG_ON(ctx->type != XHCI_CTX_TYPE_INPUT);
281 return (struct xhci_input_control_ctx *)ctx->bytes;
282}
283
284struct xhci_slot_ctx *xhci_get_slot_ctx(struct xhci_hcd *xhci,
285 struct xhci_container_ctx *ctx)
286{
287 if (ctx->type == XHCI_CTX_TYPE_DEVICE)
288 return (struct xhci_slot_ctx *)ctx->bytes;
289
290 return (struct xhci_slot_ctx *)
291 (ctx->bytes + CTX_SIZE(xhci->hcc_params));
292}
293
294struct xhci_ep_ctx *xhci_get_ep_ctx(struct xhci_hcd *xhci,
295 struct xhci_container_ctx *ctx,
296 unsigned int ep_index)
297{
298 /* increment ep index by offset of start of ep ctx array */
299 ep_index++;
300 if (ctx->type == XHCI_CTX_TYPE_INPUT)
301 ep_index++;
302
303 return (struct xhci_ep_ctx *)
304 (ctx->bytes + (ep_index * CTX_SIZE(xhci->hcc_params)));
305}
306
Sarah Sharp8df75f42010-04-02 15:34:16 -0700307
308/***************** Streams structures manipulation *************************/
309
310void xhci_free_stream_ctx(struct xhci_hcd *xhci,
311 unsigned int num_stream_ctxs,
312 struct xhci_stream_ctx *stream_ctx, dma_addr_t dma)
313{
314 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
315
316 if (num_stream_ctxs > MEDIUM_STREAM_ARRAY_SIZE)
317 pci_free_consistent(pdev,
318 sizeof(struct xhci_stream_ctx)*num_stream_ctxs,
319 stream_ctx, dma);
320 else if (num_stream_ctxs <= SMALL_STREAM_ARRAY_SIZE)
321 return dma_pool_free(xhci->small_streams_pool,
322 stream_ctx, dma);
323 else
324 return dma_pool_free(xhci->medium_streams_pool,
325 stream_ctx, dma);
326}
327
328/*
329 * The stream context array for each endpoint with bulk streams enabled can
330 * vary in size, based on:
331 * - how many streams the endpoint supports,
332 * - the maximum primary stream array size the host controller supports,
333 * - and how many streams the device driver asks for.
334 *
335 * The stream context array must be a power of 2, and can be as small as
336 * 64 bytes or as large as 1MB.
337 */
338struct xhci_stream_ctx *xhci_alloc_stream_ctx(struct xhci_hcd *xhci,
339 unsigned int num_stream_ctxs, dma_addr_t *dma,
340 gfp_t mem_flags)
341{
342 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
343
344 if (num_stream_ctxs > MEDIUM_STREAM_ARRAY_SIZE)
345 return pci_alloc_consistent(pdev,
346 sizeof(struct xhci_stream_ctx)*num_stream_ctxs,
347 dma);
348 else if (num_stream_ctxs <= SMALL_STREAM_ARRAY_SIZE)
349 return dma_pool_alloc(xhci->small_streams_pool,
350 mem_flags, dma);
351 else
352 return dma_pool_alloc(xhci->medium_streams_pool,
353 mem_flags, dma);
354}
355
356#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
357struct xhci_ring *dma_to_stream_ring(
358 struct xhci_stream_info *stream_info,
359 u64 address)
360{
361 return radix_tree_lookup(&stream_info->trb_address_map,
362 address >> SEGMENT_SHIFT);
363}
364#endif /* CONFIG_USB_XHCI_HCD_DEBUGGING */
365
366#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
367static int xhci_test_radix_tree(struct xhci_hcd *xhci,
368 unsigned int num_streams,
369 struct xhci_stream_info *stream_info)
370{
371 u32 cur_stream;
372 struct xhci_ring *cur_ring;
373 u64 addr;
374
375 for (cur_stream = 1; cur_stream < num_streams; cur_stream++) {
376 struct xhci_ring *mapped_ring;
377 int trb_size = sizeof(union xhci_trb);
378
379 cur_ring = stream_info->stream_rings[cur_stream];
380 for (addr = cur_ring->first_seg->dma;
381 addr < cur_ring->first_seg->dma + SEGMENT_SIZE;
382 addr += trb_size) {
383 mapped_ring = dma_to_stream_ring(stream_info, addr);
384 if (cur_ring != mapped_ring) {
385 xhci_warn(xhci, "WARN: DMA address 0x%08llx "
386 "didn't map to stream ID %u; "
387 "mapped to ring %p\n",
388 (unsigned long long) addr,
389 cur_stream,
390 mapped_ring);
391 return -EINVAL;
392 }
393 }
394 /* One TRB after the end of the ring segment shouldn't return a
395 * pointer to the current ring (although it may be a part of a
396 * different ring).
397 */
398 mapped_ring = dma_to_stream_ring(stream_info, addr);
399 if (mapped_ring != cur_ring) {
400 /* One TRB before should also fail */
401 addr = cur_ring->first_seg->dma - trb_size;
402 mapped_ring = dma_to_stream_ring(stream_info, addr);
403 }
404 if (mapped_ring == cur_ring) {
405 xhci_warn(xhci, "WARN: Bad DMA address 0x%08llx "
406 "mapped to valid stream ID %u; "
407 "mapped ring = %p\n",
408 (unsigned long long) addr,
409 cur_stream,
410 mapped_ring);
411 return -EINVAL;
412 }
413 }
414 return 0;
415}
416#endif /* CONFIG_USB_XHCI_HCD_DEBUGGING */
417
418/*
419 * Change an endpoint's internal structure so it supports stream IDs. The
420 * number of requested streams includes stream 0, which cannot be used by device
421 * drivers.
422 *
423 * The number of stream contexts in the stream context array may be bigger than
424 * the number of streams the driver wants to use. This is because the number of
425 * stream context array entries must be a power of two.
426 *
427 * We need a radix tree for mapping physical addresses of TRBs to which stream
428 * ID they belong to. We need to do this because the host controller won't tell
429 * us which stream ring the TRB came from. We could store the stream ID in an
430 * event data TRB, but that doesn't help us for the cancellation case, since the
431 * endpoint may stop before it reaches that event data TRB.
432 *
433 * The radix tree maps the upper portion of the TRB DMA address to a ring
434 * segment that has the same upper portion of DMA addresses. For example, say I
435 * have segments of size 1KB, that are always 64-byte aligned. A segment may
436 * start at 0x10c91000 and end at 0x10c913f0. If I use the upper 10 bits, the
437 * key to the stream ID is 0x43244. I can use the DMA address of the TRB to
438 * pass the radix tree a key to get the right stream ID:
439 *
440 * 0x10c90fff >> 10 = 0x43243
441 * 0x10c912c0 >> 10 = 0x43244
442 * 0x10c91400 >> 10 = 0x43245
443 *
444 * Obviously, only those TRBs with DMA addresses that are within the segment
445 * will make the radix tree return the stream ID for that ring.
446 *
447 * Caveats for the radix tree:
448 *
449 * The radix tree uses an unsigned long as a key pair. On 32-bit systems, an
450 * unsigned long will be 32-bits; on a 64-bit system an unsigned long will be
451 * 64-bits. Since we only request 32-bit DMA addresses, we can use that as the
452 * key on 32-bit or 64-bit systems (it would also be fine if we asked for 64-bit
453 * PCI DMA addresses on a 64-bit system). There might be a problem on 32-bit
454 * extended systems (where the DMA address can be bigger than 32-bits),
455 * if we allow the PCI dma mask to be bigger than 32-bits. So don't do that.
456 */
457struct xhci_stream_info *xhci_alloc_stream_info(struct xhci_hcd *xhci,
458 unsigned int num_stream_ctxs,
459 unsigned int num_streams, gfp_t mem_flags)
460{
461 struct xhci_stream_info *stream_info;
462 u32 cur_stream;
463 struct xhci_ring *cur_ring;
464 unsigned long key;
465 u64 addr;
466 int ret;
467
468 xhci_dbg(xhci, "Allocating %u streams and %u "
469 "stream context array entries.\n",
470 num_streams, num_stream_ctxs);
471 if (xhci->cmd_ring_reserved_trbs == MAX_RSVD_CMD_TRBS) {
472 xhci_dbg(xhci, "Command ring has no reserved TRBs available\n");
473 return NULL;
474 }
475 xhci->cmd_ring_reserved_trbs++;
476
477 stream_info = kzalloc(sizeof(struct xhci_stream_info), mem_flags);
478 if (!stream_info)
479 goto cleanup_trbs;
480
481 stream_info->num_streams = num_streams;
482 stream_info->num_stream_ctxs = num_stream_ctxs;
483
484 /* Initialize the array of virtual pointers to stream rings. */
485 stream_info->stream_rings = kzalloc(
486 sizeof(struct xhci_ring *)*num_streams,
487 mem_flags);
488 if (!stream_info->stream_rings)
489 goto cleanup_info;
490
491 /* Initialize the array of DMA addresses for stream rings for the HW. */
492 stream_info->stream_ctx_array = xhci_alloc_stream_ctx(xhci,
493 num_stream_ctxs, &stream_info->ctx_array_dma,
494 mem_flags);
495 if (!stream_info->stream_ctx_array)
496 goto cleanup_ctx;
497 memset(stream_info->stream_ctx_array, 0,
498 sizeof(struct xhci_stream_ctx)*num_stream_ctxs);
499
500 /* Allocate everything needed to free the stream rings later */
501 stream_info->free_streams_command =
502 xhci_alloc_command(xhci, true, true, mem_flags);
503 if (!stream_info->free_streams_command)
504 goto cleanup_ctx;
505
506 INIT_RADIX_TREE(&stream_info->trb_address_map, GFP_ATOMIC);
507
508 /* Allocate rings for all the streams that the driver will use,
509 * and add their segment DMA addresses to the radix tree.
510 * Stream 0 is reserved.
511 */
512 for (cur_stream = 1; cur_stream < num_streams; cur_stream++) {
513 stream_info->stream_rings[cur_stream] =
514 xhci_ring_alloc(xhci, 1, true, mem_flags);
515 cur_ring = stream_info->stream_rings[cur_stream];
516 if (!cur_ring)
517 goto cleanup_rings;
518 /* Set deq ptr, cycle bit, and stream context type */
519 addr = cur_ring->first_seg->dma |
520 SCT_FOR_CTX(SCT_PRI_TR) |
521 cur_ring->cycle_state;
522 stream_info->stream_ctx_array[cur_stream].stream_ring = addr;
523 xhci_dbg(xhci, "Setting stream %d ring ptr to 0x%08llx\n",
524 cur_stream, (unsigned long long) addr);
525
526 key = (unsigned long)
527 (cur_ring->first_seg->dma >> SEGMENT_SHIFT);
528 ret = radix_tree_insert(&stream_info->trb_address_map,
529 key, cur_ring);
530 if (ret) {
531 xhci_ring_free(xhci, cur_ring);
532 stream_info->stream_rings[cur_stream] = NULL;
533 goto cleanup_rings;
534 }
535 }
536 /* Leave the other unused stream ring pointers in the stream context
537 * array initialized to zero. This will cause the xHC to give us an
538 * error if the device asks for a stream ID we don't have setup (if it
539 * was any other way, the host controller would assume the ring is
540 * "empty" and wait forever for data to be queued to that stream ID).
541 */
542#if XHCI_DEBUG
543 /* Do a little test on the radix tree to make sure it returns the
544 * correct values.
545 */
546 if (xhci_test_radix_tree(xhci, num_streams, stream_info))
547 goto cleanup_rings;
548#endif
549
550 return stream_info;
551
552cleanup_rings:
553 for (cur_stream = 1; cur_stream < num_streams; cur_stream++) {
554 cur_ring = stream_info->stream_rings[cur_stream];
555 if (cur_ring) {
556 addr = cur_ring->first_seg->dma;
557 radix_tree_delete(&stream_info->trb_address_map,
558 addr >> SEGMENT_SHIFT);
559 xhci_ring_free(xhci, cur_ring);
560 stream_info->stream_rings[cur_stream] = NULL;
561 }
562 }
563 xhci_free_command(xhci, stream_info->free_streams_command);
564cleanup_ctx:
565 kfree(stream_info->stream_rings);
566cleanup_info:
567 kfree(stream_info);
568cleanup_trbs:
569 xhci->cmd_ring_reserved_trbs--;
570 return NULL;
571}
572/*
573 * Sets the MaxPStreams field and the Linear Stream Array field.
574 * Sets the dequeue pointer to the stream context array.
575 */
576void xhci_setup_streams_ep_input_ctx(struct xhci_hcd *xhci,
577 struct xhci_ep_ctx *ep_ctx,
578 struct xhci_stream_info *stream_info)
579{
580 u32 max_primary_streams;
581 /* MaxPStreams is the number of stream context array entries, not the
582 * number we're actually using. Must be in 2^(MaxPstreams + 1) format.
583 * fls(0) = 0, fls(0x1) = 1, fls(0x10) = 2, fls(0x100) = 3, etc.
584 */
585 max_primary_streams = fls(stream_info->num_stream_ctxs) - 2;
586 xhci_dbg(xhci, "Setting number of stream ctx array entries to %u\n",
587 1 << (max_primary_streams + 1));
588 ep_ctx->ep_info &= ~EP_MAXPSTREAMS_MASK;
589 ep_ctx->ep_info |= EP_MAXPSTREAMS(max_primary_streams);
590 ep_ctx->ep_info |= EP_HAS_LSA;
591 ep_ctx->deq = stream_info->ctx_array_dma;
592}
593
594/*
595 * Sets the MaxPStreams field and the Linear Stream Array field to 0.
596 * Reinstalls the "normal" endpoint ring (at its previous dequeue mark,
597 * not at the beginning of the ring).
598 */
599void xhci_setup_no_streams_ep_input_ctx(struct xhci_hcd *xhci,
600 struct xhci_ep_ctx *ep_ctx,
601 struct xhci_virt_ep *ep)
602{
603 dma_addr_t addr;
604 ep_ctx->ep_info &= ~EP_MAXPSTREAMS_MASK;
605 ep_ctx->ep_info &= ~EP_HAS_LSA;
606 addr = xhci_trb_virt_to_dma(ep->ring->deq_seg, ep->ring->dequeue);
607 ep_ctx->deq = addr | ep->ring->cycle_state;
608}
609
610/* Frees all stream contexts associated with the endpoint,
611 *
612 * Caller should fix the endpoint context streams fields.
613 */
614void xhci_free_stream_info(struct xhci_hcd *xhci,
615 struct xhci_stream_info *stream_info)
616{
617 int cur_stream;
618 struct xhci_ring *cur_ring;
619 dma_addr_t addr;
620
621 if (!stream_info)
622 return;
623
624 for (cur_stream = 1; cur_stream < stream_info->num_streams;
625 cur_stream++) {
626 cur_ring = stream_info->stream_rings[cur_stream];
627 if (cur_ring) {
628 addr = cur_ring->first_seg->dma;
629 radix_tree_delete(&stream_info->trb_address_map,
630 addr >> SEGMENT_SHIFT);
631 xhci_ring_free(xhci, cur_ring);
632 stream_info->stream_rings[cur_stream] = NULL;
633 }
634 }
635 xhci_free_command(xhci, stream_info->free_streams_command);
636 xhci->cmd_ring_reserved_trbs--;
637 if (stream_info->stream_ctx_array)
638 xhci_free_stream_ctx(xhci,
639 stream_info->num_stream_ctxs,
640 stream_info->stream_ctx_array,
641 stream_info->ctx_array_dma);
642
643 if (stream_info)
644 kfree(stream_info->stream_rings);
645 kfree(stream_info);
646}
647
648
649/***************** Device context manipulation *************************/
650
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700651static void xhci_init_endpoint_timer(struct xhci_hcd *xhci,
652 struct xhci_virt_ep *ep)
653{
654 init_timer(&ep->stop_cmd_timer);
655 ep->stop_cmd_timer.data = (unsigned long) ep;
656 ep->stop_cmd_timer.function = xhci_stop_endpoint_command_watchdog;
657 ep->xhci = xhci;
658}
659
Sarah Sharpd0e96f52009-04-27 19:58:01 -0700660/* All the xhci_tds in the ring's TD list should be freed at this point */
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700661void xhci_free_virt_device(struct xhci_hcd *xhci, int slot_id)
662{
663 struct xhci_virt_device *dev;
664 int i;
665
666 /* Slot ID 0 is reserved */
667 if (slot_id == 0 || !xhci->devs[slot_id])
668 return;
669
670 dev = xhci->devs[slot_id];
Sarah Sharp8e595a52009-07-27 12:03:31 -0700671 xhci->dcbaa->dev_context_ptrs[slot_id] = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700672 if (!dev)
673 return;
674
Sarah Sharp8df75f42010-04-02 15:34:16 -0700675 for (i = 0; i < 31; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700676 if (dev->eps[i].ring)
677 xhci_ring_free(xhci, dev->eps[i].ring);
Sarah Sharp8df75f42010-04-02 15:34:16 -0700678 if (dev->eps[i].stream_info)
679 xhci_free_stream_info(xhci,
680 dev->eps[i].stream_info);
681 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700682
Sarah Sharp74f9fe22009-12-03 09:44:29 -0800683 if (dev->ring_cache) {
684 for (i = 0; i < dev->num_rings_cached; i++)
685 xhci_ring_free(xhci, dev->ring_cache[i]);
686 kfree(dev->ring_cache);
687 }
688
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700689 if (dev->in_ctx)
John Yound115b042009-07-27 12:05:15 -0700690 xhci_free_container_ctx(xhci, dev->in_ctx);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700691 if (dev->out_ctx)
John Yound115b042009-07-27 12:05:15 -0700692 xhci_free_container_ctx(xhci, dev->out_ctx);
693
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700694 kfree(xhci->devs[slot_id]);
695 xhci->devs[slot_id] = 0;
696}
697
698int xhci_alloc_virt_device(struct xhci_hcd *xhci, int slot_id,
699 struct usb_device *udev, gfp_t flags)
700{
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700701 struct xhci_virt_device *dev;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700702 int i;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700703
704 /* Slot ID 0 is reserved */
705 if (slot_id == 0 || xhci->devs[slot_id]) {
706 xhci_warn(xhci, "Bad Slot ID %d\n", slot_id);
707 return 0;
708 }
709
710 xhci->devs[slot_id] = kzalloc(sizeof(*xhci->devs[slot_id]), flags);
711 if (!xhci->devs[slot_id])
712 return 0;
713 dev = xhci->devs[slot_id];
714
John Yound115b042009-07-27 12:05:15 -0700715 /* Allocate the (output) device context that will be used in the HC. */
716 dev->out_ctx = xhci_alloc_container_ctx(xhci, XHCI_CTX_TYPE_DEVICE, flags);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700717 if (!dev->out_ctx)
718 goto fail;
John Yound115b042009-07-27 12:05:15 -0700719
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700720 xhci_dbg(xhci, "Slot %d output ctx = 0x%llx (dma)\n", slot_id,
John Yound115b042009-07-27 12:05:15 -0700721 (unsigned long long)dev->out_ctx->dma);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700722
723 /* Allocate the (input) device context for address device command */
John Yound115b042009-07-27 12:05:15 -0700724 dev->in_ctx = xhci_alloc_container_ctx(xhci, XHCI_CTX_TYPE_INPUT, flags);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700725 if (!dev->in_ctx)
726 goto fail;
John Yound115b042009-07-27 12:05:15 -0700727
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700728 xhci_dbg(xhci, "Slot %d input ctx = 0x%llx (dma)\n", slot_id,
John Yound115b042009-07-27 12:05:15 -0700729 (unsigned long long)dev->in_ctx->dma);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700730
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700731 /* Initialize the cancellation list and watchdog timers for each ep */
732 for (i = 0; i < 31; i++) {
733 xhci_init_endpoint_timer(xhci, &dev->eps[i]);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700734 INIT_LIST_HEAD(&dev->eps[i].cancelled_td_list);
Sarah Sharp6f5165c2009-10-27 10:57:01 -0700735 }
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700736
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700737 /* Allocate endpoint 0 ring */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700738 dev->eps[0].ring = xhci_ring_alloc(xhci, 1, true, flags);
739 if (!dev->eps[0].ring)
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700740 goto fail;
741
Sarah Sharp74f9fe22009-12-03 09:44:29 -0800742 /* Allocate pointers to the ring cache */
743 dev->ring_cache = kzalloc(
744 sizeof(struct xhci_ring *)*XHCI_MAX_RINGS_CACHED,
745 flags);
746 if (!dev->ring_cache)
747 goto fail;
748 dev->num_rings_cached = 0;
749
Sarah Sharpf94e01862009-04-27 19:58:38 -0700750 init_completion(&dev->cmd_completion);
Sarah Sharp913a8a32009-09-04 10:53:13 -0700751 INIT_LIST_HEAD(&dev->cmd_list);
Sarah Sharpf94e01862009-04-27 19:58:38 -0700752
Sarah Sharp28c2d2e2009-07-27 12:05:08 -0700753 /* Point to output device context in dcbaa. */
John Yound115b042009-07-27 12:05:15 -0700754 xhci->dcbaa->dev_context_ptrs[slot_id] = dev->out_ctx->dma;
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700755 xhci_dbg(xhci, "Set slot id %d dcbaa entry %p to 0x%llx\n",
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700756 slot_id,
Sarah Sharp8e595a52009-07-27 12:03:31 -0700757 &xhci->dcbaa->dev_context_ptrs[slot_id],
Sarah Sharp28c2d2e2009-07-27 12:05:08 -0700758 (unsigned long long) xhci->dcbaa->dev_context_ptrs[slot_id]);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700759
760 return 1;
761fail:
762 xhci_free_virt_device(xhci, slot_id);
763 return 0;
764}
765
766/* Setup an xHCI virtual device for a Set Address command */
767int xhci_setup_addressable_virt_dev(struct xhci_hcd *xhci, struct usb_device *udev)
768{
769 struct xhci_virt_device *dev;
770 struct xhci_ep_ctx *ep0_ctx;
771 struct usb_device *top_dev;
John Yound115b042009-07-27 12:05:15 -0700772 struct xhci_slot_ctx *slot_ctx;
773 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700774
775 dev = xhci->devs[udev->slot_id];
776 /* Slot ID 0 is reserved */
777 if (udev->slot_id == 0 || !dev) {
778 xhci_warn(xhci, "Slot ID %d is not assigned to this device\n",
779 udev->slot_id);
780 return -EINVAL;
781 }
John Yound115b042009-07-27 12:05:15 -0700782 ep0_ctx = xhci_get_ep_ctx(xhci, dev->in_ctx, 0);
783 ctrl_ctx = xhci_get_input_control_ctx(xhci, dev->in_ctx);
784 slot_ctx = xhci_get_slot_ctx(xhci, dev->in_ctx);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700785
786 /* 2) New slot context and endpoint 0 context are valid*/
John Yound115b042009-07-27 12:05:15 -0700787 ctrl_ctx->add_flags = SLOT_FLAG | EP0_FLAG;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700788
789 /* 3) Only the control endpoint is valid - one endpoint context */
John Yound115b042009-07-27 12:05:15 -0700790 slot_ctx->dev_info |= LAST_CTX(1);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700791
Sarah Sharp4a0cd962009-09-04 10:53:17 -0700792 slot_ctx->dev_info |= (u32) udev->route;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700793 switch (udev->speed) {
794 case USB_SPEED_SUPER:
John Yound115b042009-07-27 12:05:15 -0700795 slot_ctx->dev_info |= (u32) SLOT_SPEED_SS;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700796 break;
797 case USB_SPEED_HIGH:
John Yound115b042009-07-27 12:05:15 -0700798 slot_ctx->dev_info |= (u32) SLOT_SPEED_HS;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700799 break;
800 case USB_SPEED_FULL:
John Yound115b042009-07-27 12:05:15 -0700801 slot_ctx->dev_info |= (u32) SLOT_SPEED_FS;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700802 break;
803 case USB_SPEED_LOW:
John Yound115b042009-07-27 12:05:15 -0700804 slot_ctx->dev_info |= (u32) SLOT_SPEED_LS;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700805 break;
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -0800806 case USB_SPEED_WIRELESS:
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700807 xhci_dbg(xhci, "FIXME xHCI doesn't support wireless speeds\n");
808 return -EINVAL;
809 break;
810 default:
811 /* Speed was set earlier, this shouldn't happen. */
812 BUG();
813 }
814 /* Find the root hub port this device is under */
815 for (top_dev = udev; top_dev->parent && top_dev->parent->parent;
816 top_dev = top_dev->parent)
817 /* Found device below root hub */;
John Yound115b042009-07-27 12:05:15 -0700818 slot_ctx->dev_info2 |= (u32) ROOT_HUB_PORT(top_dev->portnum);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700819 xhci_dbg(xhci, "Set root hub portnum to %d\n", top_dev->portnum);
820
821 /* Is this a LS/FS device under a HS hub? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700822 if ((udev->speed == USB_SPEED_LOW || udev->speed == USB_SPEED_FULL) &&
823 udev->tt) {
John Yound115b042009-07-27 12:05:15 -0700824 slot_ctx->tt_info = udev->tt->hub->slot_id;
825 slot_ctx->tt_info |= udev->ttport << 8;
Sarah Sharp07b6de12009-09-04 10:53:19 -0700826 if (udev->tt->multi)
827 slot_ctx->dev_info |= DEV_MTT;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700828 }
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700829 xhci_dbg(xhci, "udev->tt = %p\n", udev->tt);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700830 xhci_dbg(xhci, "udev->ttport = 0x%x\n", udev->ttport);
831
832 /* Step 4 - ring already allocated */
833 /* Step 5 */
834 ep0_ctx->ep_info2 = EP_TYPE(CTRL_EP);
835 /*
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700836 * XXX: Not sure about wireless USB devices.
837 */
Sarah Sharp47aded82009-08-07 14:04:46 -0700838 switch (udev->speed) {
839 case USB_SPEED_SUPER:
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700840 ep0_ctx->ep_info2 |= MAX_PACKET(512);
Sarah Sharp47aded82009-08-07 14:04:46 -0700841 break;
842 case USB_SPEED_HIGH:
843 /* USB core guesses at a 64-byte max packet first for FS devices */
844 case USB_SPEED_FULL:
845 ep0_ctx->ep_info2 |= MAX_PACKET(64);
846 break;
847 case USB_SPEED_LOW:
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700848 ep0_ctx->ep_info2 |= MAX_PACKET(8);
Sarah Sharp47aded82009-08-07 14:04:46 -0700849 break;
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -0800850 case USB_SPEED_WIRELESS:
Sarah Sharp47aded82009-08-07 14:04:46 -0700851 xhci_dbg(xhci, "FIXME xHCI doesn't support wireless speeds\n");
852 return -EINVAL;
853 break;
854 default:
855 /* New speed? */
856 BUG();
857 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700858 /* EP 0 can handle "burst" sizes of 1, so Max Burst Size field is 0 */
859 ep0_ctx->ep_info2 |= MAX_BURST(0);
860 ep0_ctx->ep_info2 |= ERROR_COUNT(3);
861
Sarah Sharp8e595a52009-07-27 12:03:31 -0700862 ep0_ctx->deq =
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700863 dev->eps[0].ring->first_seg->dma;
864 ep0_ctx->deq |= dev->eps[0].ring->cycle_state;
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700865
866 /* Steps 7 and 8 were done in xhci_alloc_virt_device() */
867
868 return 0;
869}
870
Sarah Sharpf94e01862009-04-27 19:58:38 -0700871/* Return the polling or NAK interval.
872 *
873 * The polling interval is expressed in "microframes". If xHCI's Interval field
874 * is set to N, it will service the endpoint every 2^(Interval)*125us.
875 *
876 * The NAK interval is one NAK per 1 to 255 microframes, or no NAKs if interval
877 * is set to 0.
878 */
879static inline unsigned int xhci_get_endpoint_interval(struct usb_device *udev,
880 struct usb_host_endpoint *ep)
881{
882 unsigned int interval = 0;
883
884 switch (udev->speed) {
885 case USB_SPEED_HIGH:
886 /* Max NAK rate */
887 if (usb_endpoint_xfer_control(&ep->desc) ||
888 usb_endpoint_xfer_bulk(&ep->desc))
889 interval = ep->desc.bInterval;
890 /* Fall through - SS and HS isoc/int have same decoding */
891 case USB_SPEED_SUPER:
892 if (usb_endpoint_xfer_int(&ep->desc) ||
893 usb_endpoint_xfer_isoc(&ep->desc)) {
894 if (ep->desc.bInterval == 0)
895 interval = 0;
896 else
897 interval = ep->desc.bInterval - 1;
898 if (interval > 15)
899 interval = 15;
900 if (interval != ep->desc.bInterval + 1)
901 dev_warn(&udev->dev, "ep %#x - rounding interval to %d microframes\n",
902 ep->desc.bEndpointAddress, 1 << interval);
903 }
904 break;
905 /* Convert bInterval (in 1-255 frames) to microframes and round down to
906 * nearest power of 2.
907 */
908 case USB_SPEED_FULL:
909 case USB_SPEED_LOW:
910 if (usb_endpoint_xfer_int(&ep->desc) ||
911 usb_endpoint_xfer_isoc(&ep->desc)) {
912 interval = fls(8*ep->desc.bInterval) - 1;
913 if (interval > 10)
914 interval = 10;
915 if (interval < 3)
916 interval = 3;
917 if ((1 << interval) != 8*ep->desc.bInterval)
Sarah Sharp9ce669a2010-03-16 12:59:24 -0700918 dev_warn(&udev->dev,
919 "ep %#x - rounding interval"
920 " to %d microframes, "
921 "ep desc says %d microframes\n",
922 ep->desc.bEndpointAddress,
923 1 << interval,
924 8*ep->desc.bInterval);
Sarah Sharpf94e01862009-04-27 19:58:38 -0700925 }
926 break;
927 default:
928 BUG();
929 }
930 return EP_INTERVAL(interval);
931}
932
Sarah Sharp1cf62242010-04-16 08:07:04 -0700933/* The "Mult" field in the endpoint context is only set for SuperSpeed devices.
934 * High speed endpoint descriptors can define "the number of additional
935 * transaction opportunities per microframe", but that goes in the Max Burst
936 * endpoint context field.
937 */
938static inline u32 xhci_get_endpoint_mult(struct usb_device *udev,
939 struct usb_host_endpoint *ep)
940{
941 if (udev->speed != USB_SPEED_SUPER || !ep->ss_ep_comp)
942 return 0;
943 return ep->ss_ep_comp->desc.bmAttributes;
944}
945
Sarah Sharpf94e01862009-04-27 19:58:38 -0700946static inline u32 xhci_get_endpoint_type(struct usb_device *udev,
947 struct usb_host_endpoint *ep)
948{
949 int in;
950 u32 type;
951
952 in = usb_endpoint_dir_in(&ep->desc);
953 if (usb_endpoint_xfer_control(&ep->desc)) {
954 type = EP_TYPE(CTRL_EP);
955 } else if (usb_endpoint_xfer_bulk(&ep->desc)) {
956 if (in)
957 type = EP_TYPE(BULK_IN_EP);
958 else
959 type = EP_TYPE(BULK_OUT_EP);
960 } else if (usb_endpoint_xfer_isoc(&ep->desc)) {
961 if (in)
962 type = EP_TYPE(ISOC_IN_EP);
963 else
964 type = EP_TYPE(ISOC_OUT_EP);
965 } else if (usb_endpoint_xfer_int(&ep->desc)) {
966 if (in)
967 type = EP_TYPE(INT_IN_EP);
968 else
969 type = EP_TYPE(INT_OUT_EP);
970 } else {
971 BUG();
972 }
973 return type;
974}
975
Sarah Sharp9238f252010-04-16 08:07:27 -0700976/* Return the maximum endpoint service interval time (ESIT) payload.
977 * Basically, this is the maxpacket size, multiplied by the burst size
978 * and mult size.
979 */
980static inline u32 xhci_get_max_esit_payload(struct xhci_hcd *xhci,
981 struct usb_device *udev,
982 struct usb_host_endpoint *ep)
983{
984 int max_burst;
985 int max_packet;
986
987 /* Only applies for interrupt or isochronous endpoints */
988 if (usb_endpoint_xfer_control(&ep->desc) ||
989 usb_endpoint_xfer_bulk(&ep->desc))
990 return 0;
991
992 if (udev->speed == USB_SPEED_SUPER) {
993 if (ep->ss_ep_comp)
994 return ep->ss_ep_comp->desc.wBytesPerInterval;
995 xhci_warn(xhci, "WARN no SS endpoint companion descriptor.\n");
996 /* Assume no bursts, no multiple opportunities to send. */
997 return ep->desc.wMaxPacketSize;
998 }
999
1000 max_packet = ep->desc.wMaxPacketSize & 0x3ff;
1001 max_burst = (ep->desc.wMaxPacketSize & 0x1800) >> 11;
1002 /* A 0 in max burst means 1 transfer per ESIT */
1003 return max_packet * (max_burst + 1);
1004}
1005
Sarah Sharp8df75f42010-04-02 15:34:16 -07001006/* Set up an endpoint with one ring segment. Do not allocate stream rings.
1007 * Drivers will have to call usb_alloc_streams() to do that.
1008 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07001009int xhci_endpoint_init(struct xhci_hcd *xhci,
1010 struct xhci_virt_device *virt_dev,
1011 struct usb_device *udev,
Sarah Sharpf88ba782009-05-14 11:44:22 -07001012 struct usb_host_endpoint *ep,
1013 gfp_t mem_flags)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001014{
1015 unsigned int ep_index;
1016 struct xhci_ep_ctx *ep_ctx;
1017 struct xhci_ring *ep_ring;
1018 unsigned int max_packet;
1019 unsigned int max_burst;
Sarah Sharp9238f252010-04-16 08:07:27 -07001020 u32 max_esit_payload;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001021
1022 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001023 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001024
1025 /* Set up the endpoint ring */
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001026 virt_dev->eps[ep_index].new_ring =
1027 xhci_ring_alloc(xhci, 1, true, mem_flags);
Sarah Sharp74f9fe22009-12-03 09:44:29 -08001028 if (!virt_dev->eps[ep_index].new_ring) {
1029 /* Attempt to use the ring cache */
1030 if (virt_dev->num_rings_cached == 0)
1031 return -ENOMEM;
1032 virt_dev->eps[ep_index].new_ring =
1033 virt_dev->ring_cache[virt_dev->num_rings_cached];
1034 virt_dev->ring_cache[virt_dev->num_rings_cached] = NULL;
1035 virt_dev->num_rings_cached--;
1036 xhci_reinit_cached_ring(xhci, virt_dev->eps[ep_index].new_ring);
1037 }
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001038 ep_ring = virt_dev->eps[ep_index].new_ring;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001039 ep_ctx->deq = ep_ring->first_seg->dma | ep_ring->cycle_state;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001040
1041 ep_ctx->ep_info = xhci_get_endpoint_interval(udev, ep);
Sarah Sharp1cf62242010-04-16 08:07:04 -07001042 ep_ctx->ep_info |= EP_MULT(xhci_get_endpoint_mult(udev, ep));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001043
1044 /* FIXME dig Mult and streams info out of ep companion desc */
1045
Sarah Sharp47692d12009-07-27 12:04:27 -07001046 /* Allow 3 retries for everything but isoc;
1047 * error count = 0 means infinite retries.
1048 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07001049 if (!usb_endpoint_xfer_isoc(&ep->desc))
1050 ep_ctx->ep_info2 = ERROR_COUNT(3);
1051 else
Sarah Sharp47692d12009-07-27 12:04:27 -07001052 ep_ctx->ep_info2 = ERROR_COUNT(1);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001053
1054 ep_ctx->ep_info2 |= xhci_get_endpoint_type(udev, ep);
1055
1056 /* Set the max packet size and max burst */
1057 switch (udev->speed) {
1058 case USB_SPEED_SUPER:
1059 max_packet = ep->desc.wMaxPacketSize;
1060 ep_ctx->ep_info2 |= MAX_PACKET(max_packet);
Sarah Sharpb10de142009-04-27 19:58:50 -07001061 /* dig out max burst from ep companion desc */
Sarah Sharpb7d6d992009-07-27 12:04:38 -07001062 if (!ep->ss_ep_comp) {
1063 xhci_warn(xhci, "WARN no SS endpoint companion descriptor.\n");
1064 max_packet = 0;
1065 } else {
1066 max_packet = ep->ss_ep_comp->desc.bMaxBurst;
1067 }
Sarah Sharpb10de142009-04-27 19:58:50 -07001068 ep_ctx->ep_info2 |= MAX_BURST(max_packet);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001069 break;
1070 case USB_SPEED_HIGH:
1071 /* bits 11:12 specify the number of additional transaction
1072 * opportunities per microframe (USB 2.0, section 9.6.6)
1073 */
1074 if (usb_endpoint_xfer_isoc(&ep->desc) ||
1075 usb_endpoint_xfer_int(&ep->desc)) {
1076 max_burst = (ep->desc.wMaxPacketSize & 0x1800) >> 11;
1077 ep_ctx->ep_info2 |= MAX_BURST(max_burst);
1078 }
1079 /* Fall through */
1080 case USB_SPEED_FULL:
1081 case USB_SPEED_LOW:
1082 max_packet = ep->desc.wMaxPacketSize & 0x3ff;
1083 ep_ctx->ep_info2 |= MAX_PACKET(max_packet);
1084 break;
1085 default:
1086 BUG();
1087 }
Sarah Sharp9238f252010-04-16 08:07:27 -07001088 max_esit_payload = xhci_get_max_esit_payload(xhci, udev, ep);
1089 ep_ctx->tx_info = MAX_ESIT_PAYLOAD_FOR_EP(max_esit_payload);
1090
1091 /*
1092 * XXX no idea how to calculate the average TRB buffer length for bulk
1093 * endpoints, as the driver gives us no clue how big each scatter gather
1094 * list entry (or buffer) is going to be.
1095 *
1096 * For isochronous and interrupt endpoints, we set it to the max
1097 * available, until we have new API in the USB core to allow drivers to
1098 * declare how much bandwidth they actually need.
1099 *
1100 * Normally, it would be calculated by taking the total of the buffer
1101 * lengths in the TD and then dividing by the number of TRBs in a TD,
1102 * including link TRBs, No-op TRBs, and Event data TRBs. Since we don't
1103 * use Event Data TRBs, and we don't chain in a link TRB on short
1104 * transfers, we're basically dividing by 1.
1105 */
1106 ep_ctx->tx_info |= AVG_TRB_LENGTH_FOR_EP(max_esit_payload);
1107
Sarah Sharpf94e01862009-04-27 19:58:38 -07001108 /* FIXME Debug endpoint context */
1109 return 0;
1110}
1111
1112void xhci_endpoint_zero(struct xhci_hcd *xhci,
1113 struct xhci_virt_device *virt_dev,
1114 struct usb_host_endpoint *ep)
1115{
1116 unsigned int ep_index;
1117 struct xhci_ep_ctx *ep_ctx;
1118
1119 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001120 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001121
1122 ep_ctx->ep_info = 0;
1123 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001124 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001125 ep_ctx->tx_info = 0;
1126 /* Don't free the endpoint ring until the set interface or configuration
1127 * request succeeds.
1128 */
1129}
1130
Sarah Sharpf2217e82009-08-07 14:04:43 -07001131/* Copy output xhci_ep_ctx to the input xhci_ep_ctx copy.
1132 * Useful when you want to change one particular aspect of the endpoint and then
1133 * issue a configure endpoint command.
1134 */
1135void xhci_endpoint_copy(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001136 struct xhci_container_ctx *in_ctx,
1137 struct xhci_container_ctx *out_ctx,
1138 unsigned int ep_index)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001139{
1140 struct xhci_ep_ctx *out_ep_ctx;
1141 struct xhci_ep_ctx *in_ep_ctx;
1142
Sarah Sharp913a8a32009-09-04 10:53:13 -07001143 out_ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
1144 in_ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001145
1146 in_ep_ctx->ep_info = out_ep_ctx->ep_info;
1147 in_ep_ctx->ep_info2 = out_ep_ctx->ep_info2;
1148 in_ep_ctx->deq = out_ep_ctx->deq;
1149 in_ep_ctx->tx_info = out_ep_ctx->tx_info;
1150}
1151
1152/* Copy output xhci_slot_ctx to the input xhci_slot_ctx.
1153 * Useful when you want to change one particular aspect of the endpoint and then
1154 * issue a configure endpoint command. Only the context entries field matters,
1155 * but we'll copy the whole thing anyway.
1156 */
Sarah Sharp913a8a32009-09-04 10:53:13 -07001157void xhci_slot_copy(struct xhci_hcd *xhci,
1158 struct xhci_container_ctx *in_ctx,
1159 struct xhci_container_ctx *out_ctx)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001160{
1161 struct xhci_slot_ctx *in_slot_ctx;
1162 struct xhci_slot_ctx *out_slot_ctx;
1163
Sarah Sharp913a8a32009-09-04 10:53:13 -07001164 in_slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
1165 out_slot_ctx = xhci_get_slot_ctx(xhci, out_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001166
1167 in_slot_ctx->dev_info = out_slot_ctx->dev_info;
1168 in_slot_ctx->dev_info2 = out_slot_ctx->dev_info2;
1169 in_slot_ctx->tt_info = out_slot_ctx->tt_info;
1170 in_slot_ctx->dev_state = out_slot_ctx->dev_state;
1171}
1172
John Youn254c80a2009-07-27 12:05:03 -07001173/* Set up the scratchpad buffer array and scratchpad buffers, if needed. */
1174static int scratchpad_alloc(struct xhci_hcd *xhci, gfp_t flags)
1175{
1176 int i;
1177 struct device *dev = xhci_to_hcd(xhci)->self.controller;
1178 int num_sp = HCS_MAX_SCRATCHPAD(xhci->hcs_params2);
1179
1180 xhci_dbg(xhci, "Allocating %d scratchpad buffers\n", num_sp);
1181
1182 if (!num_sp)
1183 return 0;
1184
1185 xhci->scratchpad = kzalloc(sizeof(*xhci->scratchpad), flags);
1186 if (!xhci->scratchpad)
1187 goto fail_sp;
1188
1189 xhci->scratchpad->sp_array =
1190 pci_alloc_consistent(to_pci_dev(dev),
1191 num_sp * sizeof(u64),
1192 &xhci->scratchpad->sp_dma);
1193 if (!xhci->scratchpad->sp_array)
1194 goto fail_sp2;
1195
1196 xhci->scratchpad->sp_buffers = kzalloc(sizeof(void *) * num_sp, flags);
1197 if (!xhci->scratchpad->sp_buffers)
1198 goto fail_sp3;
1199
1200 xhci->scratchpad->sp_dma_buffers =
1201 kzalloc(sizeof(dma_addr_t) * num_sp, flags);
1202
1203 if (!xhci->scratchpad->sp_dma_buffers)
1204 goto fail_sp4;
1205
1206 xhci->dcbaa->dev_context_ptrs[0] = xhci->scratchpad->sp_dma;
1207 for (i = 0; i < num_sp; i++) {
1208 dma_addr_t dma;
1209 void *buf = pci_alloc_consistent(to_pci_dev(dev),
1210 xhci->page_size, &dma);
1211 if (!buf)
1212 goto fail_sp5;
1213
1214 xhci->scratchpad->sp_array[i] = dma;
1215 xhci->scratchpad->sp_buffers[i] = buf;
1216 xhci->scratchpad->sp_dma_buffers[i] = dma;
1217 }
1218
1219 return 0;
1220
1221 fail_sp5:
1222 for (i = i - 1; i >= 0; i--) {
1223 pci_free_consistent(to_pci_dev(dev), xhci->page_size,
1224 xhci->scratchpad->sp_buffers[i],
1225 xhci->scratchpad->sp_dma_buffers[i]);
1226 }
1227 kfree(xhci->scratchpad->sp_dma_buffers);
1228
1229 fail_sp4:
1230 kfree(xhci->scratchpad->sp_buffers);
1231
1232 fail_sp3:
1233 pci_free_consistent(to_pci_dev(dev), num_sp * sizeof(u64),
1234 xhci->scratchpad->sp_array,
1235 xhci->scratchpad->sp_dma);
1236
1237 fail_sp2:
1238 kfree(xhci->scratchpad);
1239 xhci->scratchpad = NULL;
1240
1241 fail_sp:
1242 return -ENOMEM;
1243}
1244
1245static void scratchpad_free(struct xhci_hcd *xhci)
1246{
1247 int num_sp;
1248 int i;
1249 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
1250
1251 if (!xhci->scratchpad)
1252 return;
1253
1254 num_sp = HCS_MAX_SCRATCHPAD(xhci->hcs_params2);
1255
1256 for (i = 0; i < num_sp; i++) {
1257 pci_free_consistent(pdev, xhci->page_size,
1258 xhci->scratchpad->sp_buffers[i],
1259 xhci->scratchpad->sp_dma_buffers[i]);
1260 }
1261 kfree(xhci->scratchpad->sp_dma_buffers);
1262 kfree(xhci->scratchpad->sp_buffers);
1263 pci_free_consistent(pdev, num_sp * sizeof(u64),
1264 xhci->scratchpad->sp_array,
1265 xhci->scratchpad->sp_dma);
1266 kfree(xhci->scratchpad);
1267 xhci->scratchpad = NULL;
1268}
1269
Sarah Sharp913a8a32009-09-04 10:53:13 -07001270struct xhci_command *xhci_alloc_command(struct xhci_hcd *xhci,
Sarah Sharpa1d78c12009-12-09 15:59:03 -08001271 bool allocate_in_ctx, bool allocate_completion,
1272 gfp_t mem_flags)
Sarah Sharp913a8a32009-09-04 10:53:13 -07001273{
1274 struct xhci_command *command;
1275
1276 command = kzalloc(sizeof(*command), mem_flags);
1277 if (!command)
1278 return NULL;
1279
Sarah Sharpa1d78c12009-12-09 15:59:03 -08001280 if (allocate_in_ctx) {
1281 command->in_ctx =
1282 xhci_alloc_container_ctx(xhci, XHCI_CTX_TYPE_INPUT,
1283 mem_flags);
1284 if (!command->in_ctx) {
1285 kfree(command);
1286 return NULL;
1287 }
Julia Lawall06e18292009-11-21 12:51:47 +01001288 }
Sarah Sharp913a8a32009-09-04 10:53:13 -07001289
1290 if (allocate_completion) {
1291 command->completion =
1292 kzalloc(sizeof(struct completion), mem_flags);
1293 if (!command->completion) {
1294 xhci_free_container_ctx(xhci, command->in_ctx);
Julia Lawall06e18292009-11-21 12:51:47 +01001295 kfree(command);
Sarah Sharp913a8a32009-09-04 10:53:13 -07001296 return NULL;
1297 }
1298 init_completion(command->completion);
1299 }
1300
1301 command->status = 0;
1302 INIT_LIST_HEAD(&command->cmd_list);
1303 return command;
1304}
1305
1306void xhci_free_command(struct xhci_hcd *xhci,
1307 struct xhci_command *command)
1308{
1309 xhci_free_container_ctx(xhci,
1310 command->in_ctx);
1311 kfree(command->completion);
1312 kfree(command);
1313}
1314
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001315void xhci_mem_cleanup(struct xhci_hcd *xhci)
1316{
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001317 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
1318 int size;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001319 int i;
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001320
1321 /* Free the Event Ring Segment Table and the actual Event Ring */
Sarah Sharpd94c05e2009-11-03 22:02:22 -08001322 if (xhci->ir_set) {
1323 xhci_writel(xhci, 0, &xhci->ir_set->erst_size);
1324 xhci_write_64(xhci, 0, &xhci->ir_set->erst_base);
1325 xhci_write_64(xhci, 0, &xhci->ir_set->erst_dequeue);
1326 }
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001327 size = sizeof(struct xhci_erst_entry)*(xhci->erst.num_entries);
1328 if (xhci->erst.entries)
1329 pci_free_consistent(pdev, size,
1330 xhci->erst.entries, xhci->erst.erst_dma_addr);
1331 xhci->erst.entries = NULL;
1332 xhci_dbg(xhci, "Freed ERST\n");
1333 if (xhci->event_ring)
1334 xhci_ring_free(xhci, xhci->event_ring);
1335 xhci->event_ring = NULL;
1336 xhci_dbg(xhci, "Freed event ring\n");
1337
Sarah Sharp8e595a52009-07-27 12:03:31 -07001338 xhci_write_64(xhci, 0, &xhci->op_regs->cmd_ring);
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001339 if (xhci->cmd_ring)
1340 xhci_ring_free(xhci, xhci->cmd_ring);
1341 xhci->cmd_ring = NULL;
1342 xhci_dbg(xhci, "Freed command ring\n");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001343
1344 for (i = 1; i < MAX_HC_SLOTS; ++i)
1345 xhci_free_virt_device(xhci, i);
1346
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001347 if (xhci->segment_pool)
1348 dma_pool_destroy(xhci->segment_pool);
1349 xhci->segment_pool = NULL;
1350 xhci_dbg(xhci, "Freed segment pool\n");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001351
1352 if (xhci->device_pool)
1353 dma_pool_destroy(xhci->device_pool);
1354 xhci->device_pool = NULL;
1355 xhci_dbg(xhci, "Freed device context pool\n");
1356
Sarah Sharp8df75f42010-04-02 15:34:16 -07001357 if (xhci->small_streams_pool)
1358 dma_pool_destroy(xhci->small_streams_pool);
1359 xhci->small_streams_pool = NULL;
1360 xhci_dbg(xhci, "Freed small stream array pool\n");
1361
1362 if (xhci->medium_streams_pool)
1363 dma_pool_destroy(xhci->medium_streams_pool);
1364 xhci->medium_streams_pool = NULL;
1365 xhci_dbg(xhci, "Freed medium stream array pool\n");
1366
Sarah Sharp8e595a52009-07-27 12:03:31 -07001367 xhci_write_64(xhci, 0, &xhci->op_regs->dcbaa_ptr);
Sarah Sharpa74588f2009-04-27 19:53:42 -07001368 if (xhci->dcbaa)
1369 pci_free_consistent(pdev, sizeof(*xhci->dcbaa),
1370 xhci->dcbaa, xhci->dcbaa->dma);
1371 xhci->dcbaa = NULL;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001372
Sarah Sharp5294bea2009-11-04 11:22:19 -08001373 scratchpad_free(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001374 xhci->page_size = 0;
1375 xhci->page_shift = 0;
1376}
1377
Sarah Sharp6648f292009-11-09 13:35:23 -08001378static int xhci_test_trb_in_td(struct xhci_hcd *xhci,
1379 struct xhci_segment *input_seg,
1380 union xhci_trb *start_trb,
1381 union xhci_trb *end_trb,
1382 dma_addr_t input_dma,
1383 struct xhci_segment *result_seg,
1384 char *test_name, int test_number)
1385{
1386 unsigned long long start_dma;
1387 unsigned long long end_dma;
1388 struct xhci_segment *seg;
1389
1390 start_dma = xhci_trb_virt_to_dma(input_seg, start_trb);
1391 end_dma = xhci_trb_virt_to_dma(input_seg, end_trb);
1392
1393 seg = trb_in_td(input_seg, start_trb, end_trb, input_dma);
1394 if (seg != result_seg) {
1395 xhci_warn(xhci, "WARN: %s TRB math test %d failed!\n",
1396 test_name, test_number);
1397 xhci_warn(xhci, "Tested TRB math w/ seg %p and "
1398 "input DMA 0x%llx\n",
1399 input_seg,
1400 (unsigned long long) input_dma);
1401 xhci_warn(xhci, "starting TRB %p (0x%llx DMA), "
1402 "ending TRB %p (0x%llx DMA)\n",
1403 start_trb, start_dma,
1404 end_trb, end_dma);
1405 xhci_warn(xhci, "Expected seg %p, got seg %p\n",
1406 result_seg, seg);
1407 return -1;
1408 }
1409 return 0;
1410}
1411
1412/* TRB math checks for xhci_trb_in_td(), using the command and event rings. */
1413static int xhci_check_trb_in_td_math(struct xhci_hcd *xhci, gfp_t mem_flags)
1414{
1415 struct {
1416 dma_addr_t input_dma;
1417 struct xhci_segment *result_seg;
1418 } simple_test_vector [] = {
1419 /* A zeroed DMA field should fail */
1420 { 0, NULL },
1421 /* One TRB before the ring start should fail */
1422 { xhci->event_ring->first_seg->dma - 16, NULL },
1423 /* One byte before the ring start should fail */
1424 { xhci->event_ring->first_seg->dma - 1, NULL },
1425 /* Starting TRB should succeed */
1426 { xhci->event_ring->first_seg->dma, xhci->event_ring->first_seg },
1427 /* Ending TRB should succeed */
1428 { xhci->event_ring->first_seg->dma + (TRBS_PER_SEGMENT - 1)*16,
1429 xhci->event_ring->first_seg },
1430 /* One byte after the ring end should fail */
1431 { xhci->event_ring->first_seg->dma + (TRBS_PER_SEGMENT - 1)*16 + 1, NULL },
1432 /* One TRB after the ring end should fail */
1433 { xhci->event_ring->first_seg->dma + (TRBS_PER_SEGMENT)*16, NULL },
1434 /* An address of all ones should fail */
1435 { (dma_addr_t) (~0), NULL },
1436 };
1437 struct {
1438 struct xhci_segment *input_seg;
1439 union xhci_trb *start_trb;
1440 union xhci_trb *end_trb;
1441 dma_addr_t input_dma;
1442 struct xhci_segment *result_seg;
1443 } complex_test_vector [] = {
1444 /* Test feeding a valid DMA address from a different ring */
1445 { .input_seg = xhci->event_ring->first_seg,
1446 .start_trb = xhci->event_ring->first_seg->trbs,
1447 .end_trb = &xhci->event_ring->first_seg->trbs[TRBS_PER_SEGMENT - 1],
1448 .input_dma = xhci->cmd_ring->first_seg->dma,
1449 .result_seg = NULL,
1450 },
1451 /* Test feeding a valid end TRB from a different ring */
1452 { .input_seg = xhci->event_ring->first_seg,
1453 .start_trb = xhci->event_ring->first_seg->trbs,
1454 .end_trb = &xhci->cmd_ring->first_seg->trbs[TRBS_PER_SEGMENT - 1],
1455 .input_dma = xhci->cmd_ring->first_seg->dma,
1456 .result_seg = NULL,
1457 },
1458 /* Test feeding a valid start and end TRB from a different ring */
1459 { .input_seg = xhci->event_ring->first_seg,
1460 .start_trb = xhci->cmd_ring->first_seg->trbs,
1461 .end_trb = &xhci->cmd_ring->first_seg->trbs[TRBS_PER_SEGMENT - 1],
1462 .input_dma = xhci->cmd_ring->first_seg->dma,
1463 .result_seg = NULL,
1464 },
1465 /* TRB in this ring, but after this TD */
1466 { .input_seg = xhci->event_ring->first_seg,
1467 .start_trb = &xhci->event_ring->first_seg->trbs[0],
1468 .end_trb = &xhci->event_ring->first_seg->trbs[3],
1469 .input_dma = xhci->event_ring->first_seg->dma + 4*16,
1470 .result_seg = NULL,
1471 },
1472 /* TRB in this ring, but before this TD */
1473 { .input_seg = xhci->event_ring->first_seg,
1474 .start_trb = &xhci->event_ring->first_seg->trbs[3],
1475 .end_trb = &xhci->event_ring->first_seg->trbs[6],
1476 .input_dma = xhci->event_ring->first_seg->dma + 2*16,
1477 .result_seg = NULL,
1478 },
1479 /* TRB in this ring, but after this wrapped TD */
1480 { .input_seg = xhci->event_ring->first_seg,
1481 .start_trb = &xhci->event_ring->first_seg->trbs[TRBS_PER_SEGMENT - 3],
1482 .end_trb = &xhci->event_ring->first_seg->trbs[1],
1483 .input_dma = xhci->event_ring->first_seg->dma + 2*16,
1484 .result_seg = NULL,
1485 },
1486 /* TRB in this ring, but before this wrapped TD */
1487 { .input_seg = xhci->event_ring->first_seg,
1488 .start_trb = &xhci->event_ring->first_seg->trbs[TRBS_PER_SEGMENT - 3],
1489 .end_trb = &xhci->event_ring->first_seg->trbs[1],
1490 .input_dma = xhci->event_ring->first_seg->dma + (TRBS_PER_SEGMENT - 4)*16,
1491 .result_seg = NULL,
1492 },
1493 /* TRB not in this ring, and we have a wrapped TD */
1494 { .input_seg = xhci->event_ring->first_seg,
1495 .start_trb = &xhci->event_ring->first_seg->trbs[TRBS_PER_SEGMENT - 3],
1496 .end_trb = &xhci->event_ring->first_seg->trbs[1],
1497 .input_dma = xhci->cmd_ring->first_seg->dma + 2*16,
1498 .result_seg = NULL,
1499 },
1500 };
1501
1502 unsigned int num_tests;
1503 int i, ret;
1504
1505 num_tests = sizeof(simple_test_vector) / sizeof(simple_test_vector[0]);
1506 for (i = 0; i < num_tests; i++) {
1507 ret = xhci_test_trb_in_td(xhci,
1508 xhci->event_ring->first_seg,
1509 xhci->event_ring->first_seg->trbs,
1510 &xhci->event_ring->first_seg->trbs[TRBS_PER_SEGMENT - 1],
1511 simple_test_vector[i].input_dma,
1512 simple_test_vector[i].result_seg,
1513 "Simple", i);
1514 if (ret < 0)
1515 return ret;
1516 }
1517
1518 num_tests = sizeof(complex_test_vector) / sizeof(complex_test_vector[0]);
1519 for (i = 0; i < num_tests; i++) {
1520 ret = xhci_test_trb_in_td(xhci,
1521 complex_test_vector[i].input_seg,
1522 complex_test_vector[i].start_trb,
1523 complex_test_vector[i].end_trb,
1524 complex_test_vector[i].input_dma,
1525 complex_test_vector[i].result_seg,
1526 "Complex", i);
1527 if (ret < 0)
1528 return ret;
1529 }
1530 xhci_dbg(xhci, "TRB math tests passed.\n");
1531 return 0;
1532}
1533
1534
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001535int xhci_mem_init(struct xhci_hcd *xhci, gfp_t flags)
1536{
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001537 dma_addr_t dma;
1538 struct device *dev = xhci_to_hcd(xhci)->self.controller;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001539 unsigned int val, val2;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001540 u64 val_64;
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001541 struct xhci_segment *seg;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001542 u32 page_size;
1543 int i;
1544
1545 page_size = xhci_readl(xhci, &xhci->op_regs->page_size);
1546 xhci_dbg(xhci, "Supported page size register = 0x%x\n", page_size);
1547 for (i = 0; i < 16; i++) {
1548 if ((0x1 & page_size) != 0)
1549 break;
1550 page_size = page_size >> 1;
1551 }
1552 if (i < 16)
1553 xhci_dbg(xhci, "Supported page size of %iK\n", (1 << (i+12)) / 1024);
1554 else
1555 xhci_warn(xhci, "WARN: no supported page size\n");
1556 /* Use 4K pages, since that's common and the minimum the HC supports */
1557 xhci->page_shift = 12;
1558 xhci->page_size = 1 << xhci->page_shift;
1559 xhci_dbg(xhci, "HCD page size set to %iK\n", xhci->page_size / 1024);
1560
1561 /*
1562 * Program the Number of Device Slots Enabled field in the CONFIG
1563 * register with the max value of slots the HC can handle.
1564 */
1565 val = HCS_MAX_SLOTS(xhci_readl(xhci, &xhci->cap_regs->hcs_params1));
1566 xhci_dbg(xhci, "// xHC can handle at most %d device slots.\n",
1567 (unsigned int) val);
1568 val2 = xhci_readl(xhci, &xhci->op_regs->config_reg);
1569 val |= (val2 & ~HCS_SLOTS_MASK);
1570 xhci_dbg(xhci, "// Setting Max device slots reg = 0x%x.\n",
1571 (unsigned int) val);
1572 xhci_writel(xhci, val, &xhci->op_regs->config_reg);
1573
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001574 /*
Sarah Sharpa74588f2009-04-27 19:53:42 -07001575 * Section 5.4.8 - doorbell array must be
1576 * "physically contiguous and 64-byte (cache line) aligned".
1577 */
1578 xhci->dcbaa = pci_alloc_consistent(to_pci_dev(dev),
1579 sizeof(*xhci->dcbaa), &dma);
1580 if (!xhci->dcbaa)
1581 goto fail;
1582 memset(xhci->dcbaa, 0, sizeof *(xhci->dcbaa));
1583 xhci->dcbaa->dma = dma;
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001584 xhci_dbg(xhci, "// Device context base array address = 0x%llx (DMA), %p (virt)\n",
1585 (unsigned long long)xhci->dcbaa->dma, xhci->dcbaa);
Sarah Sharp8e595a52009-07-27 12:03:31 -07001586 xhci_write_64(xhci, dma, &xhci->op_regs->dcbaa_ptr);
Sarah Sharpa74588f2009-04-27 19:53:42 -07001587
1588 /*
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001589 * Initialize the ring segment pool. The ring must be a contiguous
1590 * structure comprised of TRBs. The TRBs must be 16 byte aligned,
1591 * however, the command ring segment needs 64-byte aligned segments,
1592 * so we pick the greater alignment need.
1593 */
1594 xhci->segment_pool = dma_pool_create("xHCI ring segments", dev,
1595 SEGMENT_SIZE, 64, xhci->page_size);
John Yound115b042009-07-27 12:05:15 -07001596
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001597 /* See Table 46 and Note on Figure 55 */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001598 xhci->device_pool = dma_pool_create("xHCI input/output contexts", dev,
John Yound115b042009-07-27 12:05:15 -07001599 2112, 64, xhci->page_size);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001600 if (!xhci->segment_pool || !xhci->device_pool)
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001601 goto fail;
1602
Sarah Sharp8df75f42010-04-02 15:34:16 -07001603 /* Linear stream context arrays don't have any boundary restrictions,
1604 * and only need to be 16-byte aligned.
1605 */
1606 xhci->small_streams_pool =
1607 dma_pool_create("xHCI 256 byte stream ctx arrays",
1608 dev, SMALL_STREAM_ARRAY_SIZE, 16, 0);
1609 xhci->medium_streams_pool =
1610 dma_pool_create("xHCI 1KB stream ctx arrays",
1611 dev, MEDIUM_STREAM_ARRAY_SIZE, 16, 0);
1612 /* Any stream context array bigger than MEDIUM_STREAM_ARRAY_SIZE
1613 * will be allocated with pci_alloc_consistent()
1614 */
1615
1616 if (!xhci->small_streams_pool || !xhci->medium_streams_pool)
1617 goto fail;
1618
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001619 /* Set up the command ring to have one segments for now. */
1620 xhci->cmd_ring = xhci_ring_alloc(xhci, 1, true, flags);
1621 if (!xhci->cmd_ring)
1622 goto fail;
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001623 xhci_dbg(xhci, "Allocated command ring at %p\n", xhci->cmd_ring);
1624 xhci_dbg(xhci, "First segment DMA is 0x%llx\n",
1625 (unsigned long long)xhci->cmd_ring->first_seg->dma);
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001626
1627 /* Set the address in the Command Ring Control register */
Sarah Sharp8e595a52009-07-27 12:03:31 -07001628 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
1629 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
1630 (xhci->cmd_ring->first_seg->dma & (u64) ~CMD_RING_RSVD_BITS) |
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001631 xhci->cmd_ring->cycle_state;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001632 xhci_dbg(xhci, "// Setting command ring address to 0x%x\n", val);
1633 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001634 xhci_dbg_cmd_ptrs(xhci);
1635
1636 val = xhci_readl(xhci, &xhci->cap_regs->db_off);
1637 val &= DBOFF_MASK;
1638 xhci_dbg(xhci, "// Doorbell array is located at offset 0x%x"
1639 " from cap regs base addr\n", val);
1640 xhci->dba = (void *) xhci->cap_regs + val;
1641 xhci_dbg_regs(xhci);
1642 xhci_print_run_regs(xhci);
1643 /* Set ir_set to interrupt register set 0 */
1644 xhci->ir_set = (void *) xhci->run_regs->ir_set;
1645
1646 /*
1647 * Event ring setup: Allocate a normal ring, but also setup
1648 * the event ring segment table (ERST). Section 4.9.3.
1649 */
1650 xhci_dbg(xhci, "// Allocating event ring\n");
1651 xhci->event_ring = xhci_ring_alloc(xhci, ERST_NUM_SEGS, false, flags);
1652 if (!xhci->event_ring)
1653 goto fail;
Sarah Sharp6648f292009-11-09 13:35:23 -08001654 if (xhci_check_trb_in_td_math(xhci, flags) < 0)
1655 goto fail;
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001656
1657 xhci->erst.entries = pci_alloc_consistent(to_pci_dev(dev),
1658 sizeof(struct xhci_erst_entry)*ERST_NUM_SEGS, &dma);
1659 if (!xhci->erst.entries)
1660 goto fail;
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001661 xhci_dbg(xhci, "// Allocated event ring segment table at 0x%llx\n",
1662 (unsigned long long)dma);
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001663
1664 memset(xhci->erst.entries, 0, sizeof(struct xhci_erst_entry)*ERST_NUM_SEGS);
1665 xhci->erst.num_entries = ERST_NUM_SEGS;
1666 xhci->erst.erst_dma_addr = dma;
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001667 xhci_dbg(xhci, "Set ERST to 0; private num segs = %i, virt addr = %p, dma addr = 0x%llx\n",
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001668 xhci->erst.num_entries,
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001669 xhci->erst.entries,
1670 (unsigned long long)xhci->erst.erst_dma_addr);
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001671
1672 /* set ring base address and size for each segment table entry */
1673 for (val = 0, seg = xhci->event_ring->first_seg; val < ERST_NUM_SEGS; val++) {
1674 struct xhci_erst_entry *entry = &xhci->erst.entries[val];
Sarah Sharp8e595a52009-07-27 12:03:31 -07001675 entry->seg_addr = seg->dma;
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001676 entry->seg_size = TRBS_PER_SEGMENT;
1677 entry->rsvd = 0;
1678 seg = seg->next;
1679 }
1680
1681 /* set ERST count with the number of entries in the segment table */
1682 val = xhci_readl(xhci, &xhci->ir_set->erst_size);
1683 val &= ERST_SIZE_MASK;
1684 val |= ERST_NUM_SEGS;
1685 xhci_dbg(xhci, "// Write ERST size = %i to ir_set 0 (some bits preserved)\n",
1686 val);
1687 xhci_writel(xhci, val, &xhci->ir_set->erst_size);
1688
1689 xhci_dbg(xhci, "// Set ERST entries to point to event ring.\n");
1690 /* set the segment table base address */
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001691 xhci_dbg(xhci, "// Set ERST base address for ir_set 0 = 0x%llx\n",
1692 (unsigned long long)xhci->erst.erst_dma_addr);
Sarah Sharp8e595a52009-07-27 12:03:31 -07001693 val_64 = xhci_read_64(xhci, &xhci->ir_set->erst_base);
1694 val_64 &= ERST_PTR_MASK;
1695 val_64 |= (xhci->erst.erst_dma_addr & (u64) ~ERST_PTR_MASK);
1696 xhci_write_64(xhci, val_64, &xhci->ir_set->erst_base);
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001697
1698 /* Set the event ring dequeue address */
Sarah Sharp23e3be12009-04-29 19:05:20 -07001699 xhci_set_hc_event_deq(xhci);
Sarah Sharp0ebbab32009-04-27 19:52:34 -07001700 xhci_dbg(xhci, "Wrote ERST address to ir_set 0.\n");
1701 xhci_print_ir_set(xhci, xhci->ir_set, 0);
1702
1703 /*
1704 * XXX: Might need to set the Interrupter Moderation Register to
1705 * something other than the default (~1ms minimum between interrupts).
1706 * See section 5.5.1.2.
1707 */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07001708 init_completion(&xhci->addr_dev);
1709 for (i = 0; i < MAX_HC_SLOTS; ++i)
1710 xhci->devs[i] = 0;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001711
John Youn254c80a2009-07-27 12:05:03 -07001712 if (scratchpad_alloc(xhci, flags))
1713 goto fail;
1714
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001715 return 0;
John Youn254c80a2009-07-27 12:05:03 -07001716
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001717fail:
1718 xhci_warn(xhci, "Couldn't initialize memory\n");
1719 xhci_mem_cleanup(xhci);
1720 return -ENOMEM;
1721}