[POWERPC] Clean out a bunch of duplicate includes
[linux-2.6/s3c2410-cpufreq.git] / arch / powerpc / kernel / iommu.c
blobe4ec6eee81a810d90c45faf22aa154b20f1c63a1
1 /*
2 * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
3 *
4 * Rewrite, cleanup, new allocation schemes, virtual merging:
5 * Copyright (C) 2004 Olof Johansson, IBM Corporation
6 * and Ben. Herrenschmidt, IBM Corporation
8 * Dynamic DMA mapping support, bus-independent parts.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <linux/init.h>
27 #include <linux/types.h>
28 #include <linux/slab.h>
29 #include <linux/mm.h>
30 #include <linux/spinlock.h>
31 #include <linux/string.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/bitops.h>
34 #include <asm/io.h>
35 #include <asm/prom.h>
36 #include <asm/iommu.h>
37 #include <asm/pci-bridge.h>
38 #include <asm/machdep.h>
39 #include <asm/kdump.h>
41 #define DBG(...)
43 #ifdef CONFIG_IOMMU_VMERGE
44 static int novmerge = 0;
45 #else
46 static int novmerge = 1;
47 #endif
49 static int protect4gb = 1;
51 static inline unsigned long iommu_num_pages(unsigned long vaddr,
52 unsigned long slen)
54 unsigned long npages;
56 npages = IOMMU_PAGE_ALIGN(vaddr + slen) - (vaddr & IOMMU_PAGE_MASK);
57 npages >>= IOMMU_PAGE_SHIFT;
59 return npages;
62 static int __init setup_protect4gb(char *str)
64 if (strcmp(str, "on") == 0)
65 protect4gb = 1;
66 else if (strcmp(str, "off") == 0)
67 protect4gb = 0;
69 return 1;
72 static int __init setup_iommu(char *str)
74 if (!strcmp(str, "novmerge"))
75 novmerge = 1;
76 else if (!strcmp(str, "vmerge"))
77 novmerge = 0;
78 return 1;
81 __setup("protect4gb=", setup_protect4gb);
82 __setup("iommu=", setup_iommu);
84 static unsigned long iommu_range_alloc(struct iommu_table *tbl,
85 unsigned long npages,
86 unsigned long *handle,
87 unsigned long mask,
88 unsigned int align_order)
90 unsigned long n, end, i, start;
91 unsigned long limit;
92 int largealloc = npages > 15;
93 int pass = 0;
94 unsigned long align_mask;
96 align_mask = 0xffffffffffffffffl >> (64 - align_order);
98 /* This allocator was derived from x86_64's bit string search */
100 /* Sanity check */
101 if (unlikely(npages == 0)) {
102 if (printk_ratelimit())
103 WARN_ON(1);
104 return DMA_ERROR_CODE;
107 if (handle && *handle)
108 start = *handle;
109 else
110 start = largealloc ? tbl->it_largehint : tbl->it_hint;
112 /* Use only half of the table for small allocs (15 pages or less) */
113 limit = largealloc ? tbl->it_size : tbl->it_halfpoint;
115 if (largealloc && start < tbl->it_halfpoint)
116 start = tbl->it_halfpoint;
118 /* The case below can happen if we have a small segment appended
119 * to a large, or when the previous alloc was at the very end of
120 * the available space. If so, go back to the initial start.
122 if (start >= limit)
123 start = largealloc ? tbl->it_largehint : tbl->it_hint;
125 again:
127 if (limit + tbl->it_offset > mask) {
128 limit = mask - tbl->it_offset + 1;
129 /* If we're constrained on address range, first try
130 * at the masked hint to avoid O(n) search complexity,
131 * but on second pass, start at 0.
133 if ((start & mask) >= limit || pass > 0)
134 start = 0;
135 else
136 start &= mask;
139 n = find_next_zero_bit(tbl->it_map, limit, start);
141 /* Align allocation */
142 n = (n + align_mask) & ~align_mask;
144 end = n + npages;
146 if (unlikely(end >= limit)) {
147 if (likely(pass < 2)) {
148 /* First failure, just rescan the half of the table.
149 * Second failure, rescan the other half of the table.
151 start = (largealloc ^ pass) ? tbl->it_halfpoint : 0;
152 limit = pass ? tbl->it_size : limit;
153 pass++;
154 goto again;
155 } else {
156 /* Third failure, give up */
157 return DMA_ERROR_CODE;
161 for (i = n; i < end; i++)
162 if (test_bit(i, tbl->it_map)) {
163 start = i+1;
164 goto again;
167 for (i = n; i < end; i++)
168 __set_bit(i, tbl->it_map);
170 /* Bump the hint to a new block for small allocs. */
171 if (largealloc) {
172 /* Don't bump to new block to avoid fragmentation */
173 tbl->it_largehint = end;
174 } else {
175 /* Overflow will be taken care of at the next allocation */
176 tbl->it_hint = (end + tbl->it_blocksize - 1) &
177 ~(tbl->it_blocksize - 1);
180 /* Update handle for SG allocations */
181 if (handle)
182 *handle = end;
184 return n;
187 static dma_addr_t iommu_alloc(struct iommu_table *tbl, void *page,
188 unsigned int npages, enum dma_data_direction direction,
189 unsigned long mask, unsigned int align_order)
191 unsigned long entry, flags;
192 dma_addr_t ret = DMA_ERROR_CODE;
194 spin_lock_irqsave(&(tbl->it_lock), flags);
196 entry = iommu_range_alloc(tbl, npages, NULL, mask, align_order);
198 if (unlikely(entry == DMA_ERROR_CODE)) {
199 spin_unlock_irqrestore(&(tbl->it_lock), flags);
200 return DMA_ERROR_CODE;
203 entry += tbl->it_offset; /* Offset into real TCE table */
204 ret = entry << IOMMU_PAGE_SHIFT; /* Set the return dma address */
206 /* Put the TCEs in the HW table */
207 ppc_md.tce_build(tbl, entry, npages, (unsigned long)page & IOMMU_PAGE_MASK,
208 direction);
211 /* Flush/invalidate TLB caches if necessary */
212 if (ppc_md.tce_flush)
213 ppc_md.tce_flush(tbl);
215 spin_unlock_irqrestore(&(tbl->it_lock), flags);
217 /* Make sure updates are seen by hardware */
218 mb();
220 return ret;
223 static void __iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr,
224 unsigned int npages)
226 unsigned long entry, free_entry;
227 unsigned long i;
229 entry = dma_addr >> IOMMU_PAGE_SHIFT;
230 free_entry = entry - tbl->it_offset;
232 if (((free_entry + npages) > tbl->it_size) ||
233 (entry < tbl->it_offset)) {
234 if (printk_ratelimit()) {
235 printk(KERN_INFO "iommu_free: invalid entry\n");
236 printk(KERN_INFO "\tentry = 0x%lx\n", entry);
237 printk(KERN_INFO "\tdma_addr = 0x%lx\n", (u64)dma_addr);
238 printk(KERN_INFO "\tTable = 0x%lx\n", (u64)tbl);
239 printk(KERN_INFO "\tbus# = 0x%lx\n", (u64)tbl->it_busno);
240 printk(KERN_INFO "\tsize = 0x%lx\n", (u64)tbl->it_size);
241 printk(KERN_INFO "\tstartOff = 0x%lx\n", (u64)tbl->it_offset);
242 printk(KERN_INFO "\tindex = 0x%lx\n", (u64)tbl->it_index);
243 WARN_ON(1);
245 return;
248 ppc_md.tce_free(tbl, entry, npages);
250 for (i = 0; i < npages; i++)
251 __clear_bit(free_entry+i, tbl->it_map);
254 static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr,
255 unsigned int npages)
257 unsigned long flags;
259 spin_lock_irqsave(&(tbl->it_lock), flags);
261 __iommu_free(tbl, dma_addr, npages);
263 /* Make sure TLB cache is flushed if the HW needs it. We do
264 * not do an mb() here on purpose, it is not needed on any of
265 * the current platforms.
267 if (ppc_md.tce_flush)
268 ppc_md.tce_flush(tbl);
270 spin_unlock_irqrestore(&(tbl->it_lock), flags);
273 int iommu_map_sg(struct iommu_table *tbl, struct scatterlist *sglist,
274 int nelems, unsigned long mask,
275 enum dma_data_direction direction)
277 dma_addr_t dma_next = 0, dma_addr;
278 unsigned long flags;
279 struct scatterlist *s, *outs, *segstart;
280 int outcount, incount;
281 unsigned long handle;
283 BUG_ON(direction == DMA_NONE);
285 if ((nelems == 0) || !tbl)
286 return 0;
288 outs = s = segstart = &sglist[0];
289 outcount = 1;
290 incount = nelems;
291 handle = 0;
293 /* Init first segment length for backout at failure */
294 outs->dma_length = 0;
296 DBG("sg mapping %d elements:\n", nelems);
298 spin_lock_irqsave(&(tbl->it_lock), flags);
300 for (s = outs; nelems; nelems--, s++) {
301 unsigned long vaddr, npages, entry, slen;
303 slen = s->length;
304 /* Sanity check */
305 if (slen == 0) {
306 dma_next = 0;
307 continue;
309 /* Allocate iommu entries for that segment */
310 vaddr = (unsigned long)page_address(s->page) + s->offset;
311 npages = iommu_num_pages(vaddr, slen);
312 entry = iommu_range_alloc(tbl, npages, &handle, mask >> IOMMU_PAGE_SHIFT, 0);
314 DBG(" - vaddr: %lx, size: %lx\n", vaddr, slen);
316 /* Handle failure */
317 if (unlikely(entry == DMA_ERROR_CODE)) {
318 if (printk_ratelimit())
319 printk(KERN_INFO "iommu_alloc failed, tbl %p vaddr %lx"
320 " npages %lx\n", tbl, vaddr, npages);
321 goto failure;
324 /* Convert entry to a dma_addr_t */
325 entry += tbl->it_offset;
326 dma_addr = entry << IOMMU_PAGE_SHIFT;
327 dma_addr |= (s->offset & ~IOMMU_PAGE_MASK);
329 DBG(" - %lu pages, entry: %lx, dma_addr: %lx\n",
330 npages, entry, dma_addr);
332 /* Insert into HW table */
333 ppc_md.tce_build(tbl, entry, npages, vaddr & IOMMU_PAGE_MASK, direction);
335 /* If we are in an open segment, try merging */
336 if (segstart != s) {
337 DBG(" - trying merge...\n");
338 /* We cannot merge if:
339 * - allocated dma_addr isn't contiguous to previous allocation
341 if (novmerge || (dma_addr != dma_next)) {
342 /* Can't merge: create a new segment */
343 segstart = s;
344 outcount++; outs++;
345 DBG(" can't merge, new segment.\n");
346 } else {
347 outs->dma_length += s->length;
348 DBG(" merged, new len: %ux\n", outs->dma_length);
352 if (segstart == s) {
353 /* This is a new segment, fill entries */
354 DBG(" - filling new segment.\n");
355 outs->dma_address = dma_addr;
356 outs->dma_length = slen;
359 /* Calculate next page pointer for contiguous check */
360 dma_next = dma_addr + slen;
362 DBG(" - dma next is: %lx\n", dma_next);
365 /* Flush/invalidate TLB caches if necessary */
366 if (ppc_md.tce_flush)
367 ppc_md.tce_flush(tbl);
369 spin_unlock_irqrestore(&(tbl->it_lock), flags);
371 DBG("mapped %d elements:\n", outcount);
373 /* For the sake of iommu_unmap_sg, we clear out the length in the
374 * next entry of the sglist if we didn't fill the list completely
376 if (outcount < incount) {
377 outs++;
378 outs->dma_address = DMA_ERROR_CODE;
379 outs->dma_length = 0;
382 /* Make sure updates are seen by hardware */
383 mb();
385 return outcount;
387 failure:
388 for (s = &sglist[0]; s <= outs; s++) {
389 if (s->dma_length != 0) {
390 unsigned long vaddr, npages;
392 vaddr = s->dma_address & IOMMU_PAGE_MASK;
393 npages = iommu_num_pages(s->dma_address, s->dma_length);
394 __iommu_free(tbl, vaddr, npages);
395 s->dma_address = DMA_ERROR_CODE;
396 s->dma_length = 0;
399 spin_unlock_irqrestore(&(tbl->it_lock), flags);
400 return 0;
404 void iommu_unmap_sg(struct iommu_table *tbl, struct scatterlist *sglist,
405 int nelems, enum dma_data_direction direction)
407 unsigned long flags;
409 BUG_ON(direction == DMA_NONE);
411 if (!tbl)
412 return;
414 spin_lock_irqsave(&(tbl->it_lock), flags);
416 while (nelems--) {
417 unsigned int npages;
418 dma_addr_t dma_handle = sglist->dma_address;
420 if (sglist->dma_length == 0)
421 break;
422 npages = iommu_num_pages(dma_handle,sglist->dma_length);
423 __iommu_free(tbl, dma_handle, npages);
424 sglist++;
427 /* Flush/invalidate TLBs if necessary. As for iommu_free(), we
428 * do not do an mb() here, the affected platforms do not need it
429 * when freeing.
431 if (ppc_md.tce_flush)
432 ppc_md.tce_flush(tbl);
434 spin_unlock_irqrestore(&(tbl->it_lock), flags);
438 * Build a iommu_table structure. This contains a bit map which
439 * is used to manage allocation of the tce space.
441 struct iommu_table *iommu_init_table(struct iommu_table *tbl, int nid)
443 unsigned long sz;
444 unsigned long start_index, end_index;
445 unsigned long entries_per_4g;
446 unsigned long index;
447 static int welcomed = 0;
448 struct page *page;
450 /* Set aside 1/4 of the table for large allocations. */
451 tbl->it_halfpoint = tbl->it_size * 3 / 4;
453 /* number of bytes needed for the bitmap */
454 sz = (tbl->it_size + 7) >> 3;
456 page = alloc_pages_node(nid, GFP_ATOMIC, get_order(sz));
457 if (!page)
458 panic("iommu_init_table: Can't allocate %ld bytes\n", sz);
459 tbl->it_map = page_address(page);
460 memset(tbl->it_map, 0, sz);
462 tbl->it_hint = 0;
463 tbl->it_largehint = tbl->it_halfpoint;
464 spin_lock_init(&tbl->it_lock);
466 #ifdef CONFIG_CRASH_DUMP
467 if (ppc_md.tce_get) {
468 unsigned long tceval;
469 unsigned long tcecount = 0;
472 * Reserve the existing mappings left by the first kernel.
474 for (index = 0; index < tbl->it_size; index++) {
475 tceval = ppc_md.tce_get(tbl, index + tbl->it_offset);
477 * Freed TCE entry contains 0x7fffffffffffffff on JS20
479 if (tceval && (tceval != 0x7fffffffffffffffUL)) {
480 __set_bit(index, tbl->it_map);
481 tcecount++;
484 if ((tbl->it_size - tcecount) < KDUMP_MIN_TCE_ENTRIES) {
485 printk(KERN_WARNING "TCE table is full; ");
486 printk(KERN_WARNING "freeing %d entries for the kdump boot\n",
487 KDUMP_MIN_TCE_ENTRIES);
488 for (index = tbl->it_size - KDUMP_MIN_TCE_ENTRIES;
489 index < tbl->it_size; index++)
490 __clear_bit(index, tbl->it_map);
493 #else
494 /* Clear the hardware table in case firmware left allocations in it */
495 ppc_md.tce_free(tbl, tbl->it_offset, tbl->it_size);
496 #endif
499 * DMA cannot cross 4 GB boundary. Mark last entry of each 4
500 * GB chunk as reserved.
502 if (protect4gb) {
503 entries_per_4g = 0x100000000l >> IOMMU_PAGE_SHIFT;
505 /* Mark the last bit before a 4GB boundary as used */
506 start_index = tbl->it_offset | (entries_per_4g - 1);
507 start_index -= tbl->it_offset;
509 end_index = tbl->it_size;
511 for (index = start_index; index < end_index - 1; index += entries_per_4g)
512 __set_bit(index, tbl->it_map);
515 if (!welcomed) {
516 printk(KERN_INFO "IOMMU table initialized, virtual merging %s\n",
517 novmerge ? "disabled" : "enabled");
518 welcomed = 1;
521 return tbl;
524 void iommu_free_table(struct device_node *dn)
526 struct pci_dn *pdn = dn->data;
527 struct iommu_table *tbl = pdn->iommu_table;
528 unsigned long bitmap_sz, i;
529 unsigned int order;
531 if (!tbl || !tbl->it_map) {
532 printk(KERN_ERR "%s: expected TCE map for %s\n", __FUNCTION__,
533 dn->full_name);
534 return;
537 /* verify that table contains no entries */
538 /* it_size is in entries, and we're examining 64 at a time */
539 for (i = 0; i < (tbl->it_size/64); i++) {
540 if (tbl->it_map[i] != 0) {
541 printk(KERN_WARNING "%s: Unexpected TCEs for %s\n",
542 __FUNCTION__, dn->full_name);
543 break;
547 /* calculate bitmap size in bytes */
548 bitmap_sz = (tbl->it_size + 7) / 8;
550 /* free bitmap */
551 order = get_order(bitmap_sz);
552 free_pages((unsigned long) tbl->it_map, order);
554 /* free table */
555 kfree(tbl);
558 /* Creates TCEs for a user provided buffer. The user buffer must be
559 * contiguous real kernel storage (not vmalloc). The address of the buffer
560 * passed here is the kernel (virtual) address of the buffer. The buffer
561 * need not be page aligned, the dma_addr_t returned will point to the same
562 * byte within the page as vaddr.
564 dma_addr_t iommu_map_single(struct iommu_table *tbl, void *vaddr,
565 size_t size, unsigned long mask,
566 enum dma_data_direction direction)
568 dma_addr_t dma_handle = DMA_ERROR_CODE;
569 unsigned long uaddr;
570 unsigned int npages;
572 BUG_ON(direction == DMA_NONE);
574 uaddr = (unsigned long)vaddr;
575 npages = iommu_num_pages(uaddr, size);
577 if (tbl) {
578 dma_handle = iommu_alloc(tbl, vaddr, npages, direction,
579 mask >> IOMMU_PAGE_SHIFT, 0);
580 if (dma_handle == DMA_ERROR_CODE) {
581 if (printk_ratelimit()) {
582 printk(KERN_INFO "iommu_alloc failed, "
583 "tbl %p vaddr %p npages %d\n",
584 tbl, vaddr, npages);
586 } else
587 dma_handle |= (uaddr & ~IOMMU_PAGE_MASK);
590 return dma_handle;
593 void iommu_unmap_single(struct iommu_table *tbl, dma_addr_t dma_handle,
594 size_t size, enum dma_data_direction direction)
596 unsigned int npages;
598 BUG_ON(direction == DMA_NONE);
600 if (tbl) {
601 npages = iommu_num_pages(dma_handle, size);
602 iommu_free(tbl, dma_handle, npages);
606 /* Allocates a contiguous real buffer and creates mappings over it.
607 * Returns the virtual address of the buffer and sets dma_handle
608 * to the dma address (mapping) of the first page.
610 void *iommu_alloc_coherent(struct iommu_table *tbl, size_t size,
611 dma_addr_t *dma_handle, unsigned long mask, gfp_t flag, int node)
613 void *ret = NULL;
614 dma_addr_t mapping;
615 unsigned int order;
616 unsigned int nio_pages, io_order;
617 struct page *page;
619 size = PAGE_ALIGN(size);
620 order = get_order(size);
623 * Client asked for way too much space. This is checked later
624 * anyway. It is easier to debug here for the drivers than in
625 * the tce tables.
627 if (order >= IOMAP_MAX_ORDER) {
628 printk("iommu_alloc_consistent size too large: 0x%lx\n", size);
629 return NULL;
632 if (!tbl)
633 return NULL;
635 /* Alloc enough pages (and possibly more) */
636 page = alloc_pages_node(node, flag, order);
637 if (!page)
638 return NULL;
639 ret = page_address(page);
640 memset(ret, 0, size);
642 /* Set up tces to cover the allocated range */
643 nio_pages = size >> IOMMU_PAGE_SHIFT;
644 io_order = get_iommu_order(size);
645 mapping = iommu_alloc(tbl, ret, nio_pages, DMA_BIDIRECTIONAL,
646 mask >> IOMMU_PAGE_SHIFT, io_order);
647 if (mapping == DMA_ERROR_CODE) {
648 free_pages((unsigned long)ret, order);
649 return NULL;
651 *dma_handle = mapping;
652 return ret;
655 void iommu_free_coherent(struct iommu_table *tbl, size_t size,
656 void *vaddr, dma_addr_t dma_handle)
658 if (tbl) {
659 unsigned int nio_pages;
661 size = PAGE_ALIGN(size);
662 nio_pages = size >> IOMMU_PAGE_SHIFT;
663 iommu_free(tbl, dma_handle, nio_pages);
664 size = PAGE_ALIGN(size);
665 free_pages((unsigned long)vaddr, get_order(size));