Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
| 7 | * |
| 8 | * Dynamic DMA mapping support, bus-independent parts. |
| 9 | * |
| 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. |
| 14 | * |
| 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. |
| 19 | * |
| 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 |
| 23 | */ |
| 24 | |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Akinobu Mita | a66022c | 2009-12-15 16:48:28 -0800 | [diff] [blame] | 33 | #include <linux/bitmap.h> |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 34 | #include <linux/iommu-helper.h> |
Milton Miller | 62a8bd6 | 2008-10-22 15:39:04 -0500 | [diff] [blame] | 35 | #include <linux/crash_dump.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/io.h> |
| 37 | #include <asm/prom.h> |
| 38 | #include <asm/iommu.h> |
| 39 | #include <asm/pci-bridge.h> |
| 40 | #include <asm/machdep.h> |
Haren Myneni | 5f50867 | 2006-06-22 23:35:10 -0700 | [diff] [blame] | 41 | #include <asm/kdump.h> |
Mahesh Salgaonkar | 3ccc00a | 2012-02-20 02:15:03 +0000 | [diff] [blame] | 42 | #include <asm/fadump.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | #define DBG(...) |
| 45 | |
FUJITA Tomonori | 191aee5 | 2010-03-02 14:25:38 +0000 | [diff] [blame] | 46 | static int novmerge; |
Jake Moilanen | 5699755 | 2007-03-29 08:44:02 -0500 | [diff] [blame] | 47 | |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 48 | static void __iommu_free(struct iommu_table *, dma_addr_t, unsigned int); |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | static int __init setup_iommu(char *str) |
| 51 | { |
| 52 | if (!strcmp(str, "novmerge")) |
| 53 | novmerge = 1; |
| 54 | else if (!strcmp(str, "vmerge")) |
| 55 | novmerge = 0; |
| 56 | return 1; |
| 57 | } |
| 58 | |
| 59 | __setup("iommu=", setup_iommu); |
| 60 | |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 61 | static unsigned long iommu_range_alloc(struct device *dev, |
| 62 | struct iommu_table *tbl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | unsigned long npages, |
| 64 | unsigned long *handle, |
Olof Johansson | 7daa411 | 2006-04-12 21:05:59 -0500 | [diff] [blame] | 65 | unsigned long mask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | unsigned int align_order) |
| 67 | { |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 68 | unsigned long n, end, start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | unsigned long limit; |
| 70 | int largealloc = npages > 15; |
| 71 | int pass = 0; |
| 72 | unsigned long align_mask; |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 73 | unsigned long boundary_size; |
Anton Blanchard | d362213 | 2012-06-03 19:44:25 +0000 | [diff] [blame^] | 74 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | align_mask = 0xffffffffffffffffl >> (64 - align_order); |
| 77 | |
| 78 | /* This allocator was derived from x86_64's bit string search */ |
| 79 | |
| 80 | /* Sanity check */ |
Nick Piggin | 13a2eea | 2006-10-04 17:25:44 +0200 | [diff] [blame] | 81 | if (unlikely(npages == 0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | if (printk_ratelimit()) |
| 83 | WARN_ON(1); |
| 84 | return DMA_ERROR_CODE; |
| 85 | } |
| 86 | |
Anton Blanchard | d362213 | 2012-06-03 19:44:25 +0000 | [diff] [blame^] | 87 | spin_lock_irqsave(&(tbl->it_lock), flags); |
| 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | if (handle && *handle) |
| 90 | start = *handle; |
| 91 | else |
| 92 | start = largealloc ? tbl->it_largehint : tbl->it_hint; |
| 93 | |
| 94 | /* Use only half of the table for small allocs (15 pages or less) */ |
| 95 | limit = largealloc ? tbl->it_size : tbl->it_halfpoint; |
| 96 | |
| 97 | if (largealloc && start < tbl->it_halfpoint) |
| 98 | start = tbl->it_halfpoint; |
| 99 | |
| 100 | /* The case below can happen if we have a small segment appended |
| 101 | * to a large, or when the previous alloc was at the very end of |
| 102 | * the available space. If so, go back to the initial start. |
| 103 | */ |
| 104 | if (start >= limit) |
| 105 | start = largealloc ? tbl->it_largehint : tbl->it_hint; |
Olof Johansson | 7daa411 | 2006-04-12 21:05:59 -0500 | [diff] [blame] | 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | again: |
| 108 | |
Olof Johansson | 7daa411 | 2006-04-12 21:05:59 -0500 | [diff] [blame] | 109 | if (limit + tbl->it_offset > mask) { |
| 110 | limit = mask - tbl->it_offset + 1; |
| 111 | /* If we're constrained on address range, first try |
| 112 | * at the masked hint to avoid O(n) search complexity, |
| 113 | * but on second pass, start at 0. |
| 114 | */ |
| 115 | if ((start & mask) >= limit || pass > 0) |
| 116 | start = 0; |
| 117 | else |
| 118 | start &= mask; |
| 119 | } |
| 120 | |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 121 | if (dev) |
| 122 | boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, |
| 123 | 1 << IOMMU_PAGE_SHIFT); |
| 124 | else |
| 125 | boundary_size = ALIGN(1UL << 32, 1 << IOMMU_PAGE_SHIFT); |
| 126 | /* 4GB boundary for iseries_hv_alloc and iseries_hv_map */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 128 | n = iommu_area_alloc(tbl->it_map, limit, start, npages, |
| 129 | tbl->it_offset, boundary_size >> IOMMU_PAGE_SHIFT, |
| 130 | align_mask); |
| 131 | if (n == -1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | if (likely(pass < 2)) { |
| 133 | /* First failure, just rescan the half of the table. |
| 134 | * Second failure, rescan the other half of the table. |
| 135 | */ |
| 136 | start = (largealloc ^ pass) ? tbl->it_halfpoint : 0; |
| 137 | limit = pass ? tbl->it_size : limit; |
| 138 | pass++; |
| 139 | goto again; |
| 140 | } else { |
| 141 | /* Third failure, give up */ |
Anton Blanchard | d362213 | 2012-06-03 19:44:25 +0000 | [diff] [blame^] | 142 | spin_unlock_irqrestore(&(tbl->it_lock), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | return DMA_ERROR_CODE; |
| 144 | } |
| 145 | } |
| 146 | |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 147 | end = n + npages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
| 149 | /* Bump the hint to a new block for small allocs. */ |
| 150 | if (largealloc) { |
| 151 | /* Don't bump to new block to avoid fragmentation */ |
| 152 | tbl->it_largehint = end; |
| 153 | } else { |
| 154 | /* Overflow will be taken care of at the next allocation */ |
| 155 | tbl->it_hint = (end + tbl->it_blocksize - 1) & |
| 156 | ~(tbl->it_blocksize - 1); |
| 157 | } |
| 158 | |
| 159 | /* Update handle for SG allocations */ |
| 160 | if (handle) |
| 161 | *handle = end; |
| 162 | |
Anton Blanchard | d362213 | 2012-06-03 19:44:25 +0000 | [diff] [blame^] | 163 | spin_unlock_irqrestore(&(tbl->it_lock), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | return n; |
| 165 | } |
| 166 | |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 167 | static dma_addr_t iommu_alloc(struct device *dev, struct iommu_table *tbl, |
| 168 | void *page, unsigned int npages, |
| 169 | enum dma_data_direction direction, |
Mark Nelson | 4f3dd8a | 2008-07-16 05:51:47 +1000 | [diff] [blame] | 170 | unsigned long mask, unsigned int align_order, |
| 171 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | { |
Anton Blanchard | d362213 | 2012-06-03 19:44:25 +0000 | [diff] [blame^] | 173 | unsigned long entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | dma_addr_t ret = DMA_ERROR_CODE; |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 175 | int build_fail; |
Olof Johansson | 7daa411 | 2006-04-12 21:05:59 -0500 | [diff] [blame] | 176 | |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 177 | entry = iommu_range_alloc(dev, tbl, npages, NULL, mask, align_order); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Anton Blanchard | 0e4bc95 | 2012-06-03 19:43:02 +0000 | [diff] [blame] | 179 | if (unlikely(entry == DMA_ERROR_CODE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | return DMA_ERROR_CODE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | entry += tbl->it_offset; /* Offset into real TCE table */ |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 183 | ret = entry << IOMMU_PAGE_SHIFT; /* Set the return dma address */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
| 185 | /* Put the TCEs in the HW table */ |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 186 | build_fail = ppc_md.tce_build(tbl, entry, npages, |
| 187 | (unsigned long)page & IOMMU_PAGE_MASK, |
| 188 | direction, attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 190 | /* ppc_md.tce_build() only returns non-zero for transient errors. |
| 191 | * Clean up the table bitmap in this case and return |
| 192 | * DMA_ERROR_CODE. For all other errors the functionality is |
| 193 | * not altered. |
| 194 | */ |
| 195 | if (unlikely(build_fail)) { |
| 196 | __iommu_free(tbl, ret, npages); |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 197 | return DMA_ERROR_CODE; |
| 198 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | /* Flush/invalidate TLB caches if necessary */ |
| 201 | if (ppc_md.tce_flush) |
| 202 | ppc_md.tce_flush(tbl); |
| 203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | /* Make sure updates are seen by hardware */ |
| 205 | mb(); |
| 206 | |
| 207 | return ret; |
| 208 | } |
| 209 | |
Anton Blanchard | 67ca141 | 2012-06-03 19:43:44 +0000 | [diff] [blame] | 210 | static bool iommu_free_check(struct iommu_table *tbl, dma_addr_t dma_addr, |
| 211 | unsigned int npages) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
| 213 | unsigned long entry, free_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 215 | entry = dma_addr >> IOMMU_PAGE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | free_entry = entry - tbl->it_offset; |
| 217 | |
| 218 | if (((free_entry + npages) > tbl->it_size) || |
| 219 | (entry < tbl->it_offset)) { |
| 220 | if (printk_ratelimit()) { |
| 221 | printk(KERN_INFO "iommu_free: invalid entry\n"); |
| 222 | printk(KERN_INFO "\tentry = 0x%lx\n", entry); |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 223 | printk(KERN_INFO "\tdma_addr = 0x%llx\n", (u64)dma_addr); |
| 224 | printk(KERN_INFO "\tTable = 0x%llx\n", (u64)tbl); |
| 225 | printk(KERN_INFO "\tbus# = 0x%llx\n", (u64)tbl->it_busno); |
| 226 | printk(KERN_INFO "\tsize = 0x%llx\n", (u64)tbl->it_size); |
| 227 | printk(KERN_INFO "\tstartOff = 0x%llx\n", (u64)tbl->it_offset); |
| 228 | printk(KERN_INFO "\tindex = 0x%llx\n", (u64)tbl->it_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | WARN_ON(1); |
| 230 | } |
Anton Blanchard | 67ca141 | 2012-06-03 19:43:44 +0000 | [diff] [blame] | 231 | |
| 232 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Anton Blanchard | 67ca141 | 2012-06-03 19:43:44 +0000 | [diff] [blame] | 235 | return true; |
| 236 | } |
| 237 | |
Anton Blanchard | 67ca141 | 2012-06-03 19:43:44 +0000 | [diff] [blame] | 238 | static void __iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, |
| 239 | unsigned int npages) |
| 240 | { |
| 241 | unsigned long entry, free_entry; |
| 242 | unsigned long flags; |
| 243 | |
| 244 | entry = dma_addr >> IOMMU_PAGE_SHIFT; |
| 245 | free_entry = entry - tbl->it_offset; |
| 246 | |
| 247 | if (!iommu_free_check(tbl, dma_addr, npages)) |
| 248 | return; |
| 249 | |
| 250 | ppc_md.tce_free(tbl, entry, npages); |
| 251 | |
| 252 | spin_lock_irqsave(&(tbl->it_lock), flags); |
| 253 | bitmap_clear(tbl->it_map, free_entry, npages); |
| 254 | spin_unlock_irqrestore(&(tbl->it_lock), flags); |
| 255 | } |
| 256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, |
| 258 | unsigned int npages) |
| 259 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | __iommu_free(tbl, dma_addr, npages); |
| 261 | |
| 262 | /* Make sure TLB cache is flushed if the HW needs it. We do |
| 263 | * not do an mb() here on purpose, it is not needed on any of |
| 264 | * the current platforms. |
| 265 | */ |
| 266 | if (ppc_md.tce_flush) |
| 267 | ppc_md.tce_flush(tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Mark Nelson | c869236 | 2008-07-05 05:05:41 +1000 | [diff] [blame] | 270 | int iommu_map_sg(struct device *dev, struct iommu_table *tbl, |
| 271 | struct scatterlist *sglist, int nelems, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame] | 272 | unsigned long mask, enum dma_data_direction direction, |
| 273 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | { |
| 275 | dma_addr_t dma_next = 0, dma_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | struct scatterlist *s, *outs, *segstart; |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 277 | int outcount, incount, i, build_fail = 0; |
Benjamin Herrenschmidt | d262c32 | 2008-01-08 10:34:22 +1100 | [diff] [blame] | 278 | unsigned int align; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | unsigned long handle; |
FUJITA Tomonori | 740c3ce | 2008-02-04 22:27:57 -0800 | [diff] [blame] | 280 | unsigned int max_seg_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
| 282 | BUG_ON(direction == DMA_NONE); |
| 283 | |
| 284 | if ((nelems == 0) || !tbl) |
| 285 | return 0; |
| 286 | |
| 287 | outs = s = segstart = &sglist[0]; |
| 288 | outcount = 1; |
Brian King | ac9af7c | 2005-08-18 07:32:18 +1000 | [diff] [blame] | 289 | incount = nelems; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | handle = 0; |
| 291 | |
| 292 | /* Init first segment length for backout at failure */ |
| 293 | outs->dma_length = 0; |
| 294 | |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 295 | DBG("sg mapping %d elements:\n", nelems); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
FUJITA Tomonori | 740c3ce | 2008-02-04 22:27:57 -0800 | [diff] [blame] | 297 | max_seg_size = dma_get_max_seg_size(dev); |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 298 | for_each_sg(sglist, s, nelems, i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | unsigned long vaddr, npages, entry, slen; |
| 300 | |
| 301 | slen = s->length; |
| 302 | /* Sanity check */ |
| 303 | if (slen == 0) { |
| 304 | dma_next = 0; |
| 305 | continue; |
| 306 | } |
| 307 | /* Allocate iommu entries for that segment */ |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 308 | vaddr = (unsigned long) sg_virt(s); |
Joerg Roedel | 2994a3b | 2008-10-15 22:02:13 -0700 | [diff] [blame] | 309 | npages = iommu_num_pages(vaddr, slen, IOMMU_PAGE_SIZE); |
Benjamin Herrenschmidt | d262c32 | 2008-01-08 10:34:22 +1100 | [diff] [blame] | 310 | align = 0; |
| 311 | if (IOMMU_PAGE_SHIFT < PAGE_SHIFT && slen >= PAGE_SIZE && |
| 312 | (vaddr & ~PAGE_MASK) == 0) |
| 313 | align = PAGE_SHIFT - IOMMU_PAGE_SHIFT; |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 314 | entry = iommu_range_alloc(dev, tbl, npages, &handle, |
Benjamin Herrenschmidt | d262c32 | 2008-01-08 10:34:22 +1100 | [diff] [blame] | 315 | mask >> IOMMU_PAGE_SHIFT, align); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
| 317 | DBG(" - vaddr: %lx, size: %lx\n", vaddr, slen); |
| 318 | |
| 319 | /* Handle failure */ |
| 320 | if (unlikely(entry == DMA_ERROR_CODE)) { |
| 321 | if (printk_ratelimit()) |
Anton Blanchard | 4dfa9c4 | 2010-12-07 14:36:05 +0000 | [diff] [blame] | 322 | dev_info(dev, "iommu_alloc failed, tbl %p " |
| 323 | "vaddr %lx npages %lu\n", tbl, vaddr, |
| 324 | npages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | goto failure; |
| 326 | } |
| 327 | |
| 328 | /* Convert entry to a dma_addr_t */ |
| 329 | entry += tbl->it_offset; |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 330 | dma_addr = entry << IOMMU_PAGE_SHIFT; |
| 331 | dma_addr |= (s->offset & ~IOMMU_PAGE_MASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 333 | DBG(" - %lu pages, entry: %lx, dma_addr: %lx\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | npages, entry, dma_addr); |
| 335 | |
| 336 | /* Insert into HW table */ |
Robert Jennings | 6490c49 | 2008-07-24 04:31:16 +1000 | [diff] [blame] | 337 | build_fail = ppc_md.tce_build(tbl, entry, npages, |
| 338 | vaddr & IOMMU_PAGE_MASK, |
| 339 | direction, attrs); |
| 340 | if(unlikely(build_fail)) |
| 341 | goto failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
| 343 | /* If we are in an open segment, try merging */ |
| 344 | if (segstart != s) { |
| 345 | DBG(" - trying merge...\n"); |
| 346 | /* We cannot merge if: |
| 347 | * - allocated dma_addr isn't contiguous to previous allocation |
| 348 | */ |
FUJITA Tomonori | 740c3ce | 2008-02-04 22:27:57 -0800 | [diff] [blame] | 349 | if (novmerge || (dma_addr != dma_next) || |
| 350 | (outs->dma_length + s->length > max_seg_size)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | /* Can't merge: create a new segment */ |
| 352 | segstart = s; |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 353 | outcount++; |
| 354 | outs = sg_next(outs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | DBG(" can't merge, new segment.\n"); |
| 356 | } else { |
| 357 | outs->dma_length += s->length; |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 358 | DBG(" merged, new len: %ux\n", outs->dma_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | } |
| 360 | } |
| 361 | |
| 362 | if (segstart == s) { |
| 363 | /* This is a new segment, fill entries */ |
| 364 | DBG(" - filling new segment.\n"); |
| 365 | outs->dma_address = dma_addr; |
| 366 | outs->dma_length = slen; |
| 367 | } |
| 368 | |
| 369 | /* Calculate next page pointer for contiguous check */ |
| 370 | dma_next = dma_addr + slen; |
| 371 | |
| 372 | DBG(" - dma next is: %lx\n", dma_next); |
| 373 | } |
| 374 | |
| 375 | /* Flush/invalidate TLB caches if necessary */ |
| 376 | if (ppc_md.tce_flush) |
| 377 | ppc_md.tce_flush(tbl); |
| 378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | DBG("mapped %d elements:\n", outcount); |
| 380 | |
Brian King | ac9af7c | 2005-08-18 07:32:18 +1000 | [diff] [blame] | 381 | /* For the sake of iommu_unmap_sg, we clear out the length in the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | * next entry of the sglist if we didn't fill the list completely |
| 383 | */ |
Brian King | ac9af7c | 2005-08-18 07:32:18 +1000 | [diff] [blame] | 384 | if (outcount < incount) { |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 385 | outs = sg_next(outs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | outs->dma_address = DMA_ERROR_CODE; |
| 387 | outs->dma_length = 0; |
| 388 | } |
Jake Moilanen | a958a26 | 2006-01-30 21:51:54 -0600 | [diff] [blame] | 389 | |
| 390 | /* Make sure updates are seen by hardware */ |
| 391 | mb(); |
| 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | return outcount; |
| 394 | |
| 395 | failure: |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 396 | for_each_sg(sglist, s, nelems, i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | if (s->dma_length != 0) { |
| 398 | unsigned long vaddr, npages; |
| 399 | |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 400 | vaddr = s->dma_address & IOMMU_PAGE_MASK; |
Joerg Roedel | 2994a3b | 2008-10-15 22:02:13 -0700 | [diff] [blame] | 401 | npages = iommu_num_pages(s->dma_address, s->dma_length, |
| 402 | IOMMU_PAGE_SIZE); |
Anton Blanchard | d362213 | 2012-06-03 19:44:25 +0000 | [diff] [blame^] | 403 | __iommu_free(tbl, vaddr, npages); |
Jake Moilanen | a958a26 | 2006-01-30 21:51:54 -0600 | [diff] [blame] | 404 | s->dma_address = DMA_ERROR_CODE; |
| 405 | s->dma_length = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | } |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 407 | if (s == outs) |
| 408 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | return 0; |
| 411 | } |
| 412 | |
| 413 | |
| 414 | void iommu_unmap_sg(struct iommu_table *tbl, struct scatterlist *sglist, |
Mark Nelson | 3affedc | 2008-07-05 05:05:42 +1000 | [diff] [blame] | 415 | int nelems, enum dma_data_direction direction, |
| 416 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | { |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 418 | struct scatterlist *sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
| 420 | BUG_ON(direction == DMA_NONE); |
| 421 | |
| 422 | if (!tbl) |
| 423 | return; |
| 424 | |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 425 | sg = sglist; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | while (nelems--) { |
| 427 | unsigned int npages; |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 428 | dma_addr_t dma_handle = sg->dma_address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 430 | if (sg->dma_length == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | break; |
Joerg Roedel | 2994a3b | 2008-10-15 22:02:13 -0700 | [diff] [blame] | 432 | npages = iommu_num_pages(dma_handle, sg->dma_length, |
| 433 | IOMMU_PAGE_SIZE); |
Anton Blanchard | d362213 | 2012-06-03 19:44:25 +0000 | [diff] [blame^] | 434 | __iommu_free(tbl, dma_handle, npages); |
Jens Axboe | 78bdc31 | 2007-10-12 13:44:12 +0200 | [diff] [blame] | 435 | sg = sg_next(sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | /* Flush/invalidate TLBs if necessary. As for iommu_free(), we |
| 439 | * do not do an mb() here, the affected platforms do not need it |
| 440 | * when freeing. |
| 441 | */ |
| 442 | if (ppc_md.tce_flush) |
| 443 | ppc_md.tce_flush(tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | } |
| 445 | |
Mohan Kumar M | 54622f1 | 2008-10-21 17:38:10 +0000 | [diff] [blame] | 446 | static void iommu_table_clear(struct iommu_table *tbl) |
| 447 | { |
Mahesh Salgaonkar | 3ccc00a | 2012-02-20 02:15:03 +0000 | [diff] [blame] | 448 | /* |
| 449 | * In case of firmware assisted dump system goes through clean |
| 450 | * reboot process at the time of system crash. Hence it's safe to |
| 451 | * clear the TCE entries if firmware assisted dump is active. |
| 452 | */ |
| 453 | if (!is_kdump_kernel() || is_fadump_active()) { |
Mohan Kumar M | 54622f1 | 2008-10-21 17:38:10 +0000 | [diff] [blame] | 454 | /* Clear the table in case firmware left allocations in it */ |
| 455 | ppc_md.tce_free(tbl, tbl->it_offset, tbl->it_size); |
| 456 | return; |
| 457 | } |
| 458 | |
| 459 | #ifdef CONFIG_CRASH_DUMP |
| 460 | if (ppc_md.tce_get) { |
| 461 | unsigned long index, tceval, tcecount = 0; |
| 462 | |
| 463 | /* Reserve the existing mappings left by the first kernel. */ |
| 464 | for (index = 0; index < tbl->it_size; index++) { |
| 465 | tceval = ppc_md.tce_get(tbl, index + tbl->it_offset); |
| 466 | /* |
| 467 | * Freed TCE entry contains 0x7fffffffffffffff on JS20 |
| 468 | */ |
| 469 | if (tceval && (tceval != 0x7fffffffffffffffUL)) { |
| 470 | __set_bit(index, tbl->it_map); |
| 471 | tcecount++; |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | if ((tbl->it_size - tcecount) < KDUMP_MIN_TCE_ENTRIES) { |
| 476 | printk(KERN_WARNING "TCE table is full; freeing "); |
| 477 | printk(KERN_WARNING "%d entries for the kdump boot\n", |
| 478 | KDUMP_MIN_TCE_ENTRIES); |
| 479 | for (index = tbl->it_size - KDUMP_MIN_TCE_ENTRIES; |
| 480 | index < tbl->it_size; index++) |
| 481 | __clear_bit(index, tbl->it_map); |
| 482 | } |
| 483 | } |
| 484 | #endif |
| 485 | } |
| 486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | /* |
| 488 | * Build a iommu_table structure. This contains a bit map which |
| 489 | * is used to manage allocation of the tce space. |
| 490 | */ |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 491 | struct iommu_table *iommu_init_table(struct iommu_table *tbl, int nid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | { |
| 493 | unsigned long sz; |
| 494 | static int welcomed = 0; |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 495 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
| 497 | /* Set aside 1/4 of the table for large allocations. */ |
| 498 | tbl->it_halfpoint = tbl->it_size * 3 / 4; |
| 499 | |
| 500 | /* number of bytes needed for the bitmap */ |
| 501 | sz = (tbl->it_size + 7) >> 3; |
| 502 | |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 503 | page = alloc_pages_node(nid, GFP_ATOMIC, get_order(sz)); |
| 504 | if (!page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | panic("iommu_init_table: Can't allocate %ld bytes\n", sz); |
Anton Blanchard | ca1588e | 2006-06-10 20:58:08 +1000 | [diff] [blame] | 506 | tbl->it_map = page_address(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | memset(tbl->it_map, 0, sz); |
| 508 | |
Thadeu Lima de Souza Cascardo | d12b524 | 2011-09-20 03:07:24 +0000 | [diff] [blame] | 509 | /* |
| 510 | * Reserve page 0 so it will not be used for any mappings. |
| 511 | * This avoids buggy drivers that consider page 0 to be invalid |
| 512 | * to crash the machine or even lose data. |
| 513 | */ |
| 514 | if (tbl->it_offset == 0) |
| 515 | set_bit(0, tbl->it_map); |
| 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | tbl->it_hint = 0; |
| 518 | tbl->it_largehint = tbl->it_halfpoint; |
| 519 | spin_lock_init(&tbl->it_lock); |
| 520 | |
Mohan Kumar M | 54622f1 | 2008-10-21 17:38:10 +0000 | [diff] [blame] | 521 | iommu_table_clear(tbl); |
John Rose | d3588ba | 2005-06-20 21:43:48 +1000 | [diff] [blame] | 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | if (!welcomed) { |
| 524 | printk(KERN_INFO "IOMMU table initialized, virtual merging %s\n", |
| 525 | novmerge ? "disabled" : "enabled"); |
| 526 | welcomed = 1; |
| 527 | } |
| 528 | |
| 529 | return tbl; |
| 530 | } |
| 531 | |
Stephen Rothwell | 68d315f | 2007-12-06 13:39:19 +1100 | [diff] [blame] | 532 | void iommu_free_table(struct iommu_table *tbl, const char *node_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | unsigned long bitmap_sz, i; |
| 535 | unsigned int order; |
| 536 | |
| 537 | if (!tbl || !tbl->it_map) { |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 538 | printk(KERN_ERR "%s: expected TCE map for %s\n", __func__, |
Stephen Rothwell | 68d315f | 2007-12-06 13:39:19 +1100 | [diff] [blame] | 539 | node_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | return; |
| 541 | } |
| 542 | |
| 543 | /* verify that table contains no entries */ |
| 544 | /* it_size is in entries, and we're examining 64 at a time */ |
| 545 | for (i = 0; i < (tbl->it_size/64); i++) { |
| 546 | if (tbl->it_map[i] != 0) { |
| 547 | printk(KERN_WARNING "%s: Unexpected TCEs for %s\n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 548 | __func__, node_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | break; |
| 550 | } |
| 551 | } |
| 552 | |
| 553 | /* calculate bitmap size in bytes */ |
| 554 | bitmap_sz = (tbl->it_size + 7) / 8; |
| 555 | |
| 556 | /* free bitmap */ |
| 557 | order = get_order(bitmap_sz); |
| 558 | free_pages((unsigned long) tbl->it_map, order); |
| 559 | |
| 560 | /* free table */ |
| 561 | kfree(tbl); |
| 562 | } |
| 563 | |
| 564 | /* Creates TCEs for a user provided buffer. The user buffer must be |
Mark Nelson | f9226d5 | 2008-10-27 20:38:08 +0000 | [diff] [blame] | 565 | * contiguous real kernel storage (not vmalloc). The address passed here |
| 566 | * comprises a page address and offset into that page. The dma_addr_t |
| 567 | * returned will point to the same byte within the page as was passed in. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | */ |
Mark Nelson | f9226d5 | 2008-10-27 20:38:08 +0000 | [diff] [blame] | 569 | dma_addr_t iommu_map_page(struct device *dev, struct iommu_table *tbl, |
| 570 | struct page *page, unsigned long offset, size_t size, |
| 571 | unsigned long mask, enum dma_data_direction direction, |
| 572 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | { |
| 574 | dma_addr_t dma_handle = DMA_ERROR_CODE; |
Mark Nelson | f9226d5 | 2008-10-27 20:38:08 +0000 | [diff] [blame] | 575 | void *vaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | unsigned long uaddr; |
Benjamin Herrenschmidt | d262c32 | 2008-01-08 10:34:22 +1100 | [diff] [blame] | 577 | unsigned int npages, align; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
| 579 | BUG_ON(direction == DMA_NONE); |
| 580 | |
Mark Nelson | f9226d5 | 2008-10-27 20:38:08 +0000 | [diff] [blame] | 581 | vaddr = page_address(page) + offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | uaddr = (unsigned long)vaddr; |
Joerg Roedel | 2994a3b | 2008-10-15 22:02:13 -0700 | [diff] [blame] | 583 | npages = iommu_num_pages(uaddr, size, IOMMU_PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
| 585 | if (tbl) { |
Benjamin Herrenschmidt | d262c32 | 2008-01-08 10:34:22 +1100 | [diff] [blame] | 586 | align = 0; |
| 587 | if (IOMMU_PAGE_SHIFT < PAGE_SHIFT && size >= PAGE_SIZE && |
| 588 | ((unsigned long)vaddr & ~PAGE_MASK) == 0) |
| 589 | align = PAGE_SHIFT - IOMMU_PAGE_SHIFT; |
| 590 | |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 591 | dma_handle = iommu_alloc(dev, tbl, vaddr, npages, direction, |
Mark Nelson | 4f3dd8a | 2008-07-16 05:51:47 +1000 | [diff] [blame] | 592 | mask >> IOMMU_PAGE_SHIFT, align, |
| 593 | attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | if (dma_handle == DMA_ERROR_CODE) { |
| 595 | if (printk_ratelimit()) { |
Anton Blanchard | 4dfa9c4 | 2010-12-07 14:36:05 +0000 | [diff] [blame] | 596 | dev_info(dev, "iommu_alloc failed, tbl %p " |
| 597 | "vaddr %p npages %d\n", tbl, vaddr, |
| 598 | npages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
| 600 | } else |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 601 | dma_handle |= (uaddr & ~IOMMU_PAGE_MASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | return dma_handle; |
| 605 | } |
| 606 | |
Mark Nelson | f9226d5 | 2008-10-27 20:38:08 +0000 | [diff] [blame] | 607 | void iommu_unmap_page(struct iommu_table *tbl, dma_addr_t dma_handle, |
| 608 | size_t size, enum dma_data_direction direction, |
| 609 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | { |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 611 | unsigned int npages; |
| 612 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | BUG_ON(direction == DMA_NONE); |
| 614 | |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 615 | if (tbl) { |
Joerg Roedel | 2994a3b | 2008-10-15 22:02:13 -0700 | [diff] [blame] | 616 | npages = iommu_num_pages(dma_handle, size, IOMMU_PAGE_SIZE); |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 617 | iommu_free(tbl, dma_handle, npages); |
| 618 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | /* Allocates a contiguous real buffer and creates mappings over it. |
| 622 | * Returns the virtual address of the buffer and sets dma_handle |
| 623 | * to the dma address (mapping) of the first page. |
| 624 | */ |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 625 | void *iommu_alloc_coherent(struct device *dev, struct iommu_table *tbl, |
| 626 | size_t size, dma_addr_t *dma_handle, |
| 627 | unsigned long mask, gfp_t flag, int node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | { |
| 629 | void *ret = NULL; |
| 630 | dma_addr_t mapping; |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 631 | unsigned int order; |
| 632 | unsigned int nio_pages, io_order; |
Christoph Hellwig | 8eb6c6e | 2006-06-06 16:11:35 +0200 | [diff] [blame] | 633 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | |
| 635 | size = PAGE_ALIGN(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | order = get_order(size); |
| 637 | |
| 638 | /* |
| 639 | * Client asked for way too much space. This is checked later |
| 640 | * anyway. It is easier to debug here for the drivers than in |
| 641 | * the tce tables. |
| 642 | */ |
| 643 | if (order >= IOMAP_MAX_ORDER) { |
Anton Blanchard | 4dfa9c4 | 2010-12-07 14:36:05 +0000 | [diff] [blame] | 644 | dev_info(dev, "iommu_alloc_consistent size too large: 0x%lx\n", |
| 645 | size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | return NULL; |
| 647 | } |
| 648 | |
| 649 | if (!tbl) |
| 650 | return NULL; |
| 651 | |
| 652 | /* Alloc enough pages (and possibly more) */ |
Paul Mackerras | 0506135 | 2006-06-10 18:17:35 +1000 | [diff] [blame] | 653 | page = alloc_pages_node(node, flag, order); |
Christoph Hellwig | 8eb6c6e | 2006-06-06 16:11:35 +0200 | [diff] [blame] | 654 | if (!page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | return NULL; |
Christoph Hellwig | 8eb6c6e | 2006-06-06 16:11:35 +0200 | [diff] [blame] | 656 | ret = page_address(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | memset(ret, 0, size); |
| 658 | |
| 659 | /* Set up tces to cover the allocated range */ |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 660 | nio_pages = size >> IOMMU_PAGE_SHIFT; |
| 661 | io_order = get_iommu_order(size); |
FUJITA Tomonori | fb3475e | 2008-02-04 22:28:08 -0800 | [diff] [blame] | 662 | mapping = iommu_alloc(dev, tbl, ret, nio_pages, DMA_BIDIRECTIONAL, |
Mark Nelson | 4f3dd8a | 2008-07-16 05:51:47 +1000 | [diff] [blame] | 663 | mask >> IOMMU_PAGE_SHIFT, io_order, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | if (mapping == DMA_ERROR_CODE) { |
| 665 | free_pages((unsigned long)ret, order); |
Christoph Hellwig | 8eb6c6e | 2006-06-06 16:11:35 +0200 | [diff] [blame] | 666 | return NULL; |
| 667 | } |
| 668 | *dma_handle = mapping; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | return ret; |
| 670 | } |
| 671 | |
| 672 | void iommu_free_coherent(struct iommu_table *tbl, size_t size, |
| 673 | void *vaddr, dma_addr_t dma_handle) |
| 674 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | if (tbl) { |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 676 | unsigned int nio_pages; |
| 677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | size = PAGE_ALIGN(size); |
Linas Vepstas | 5d2efba | 2006-10-30 16:15:59 +1100 | [diff] [blame] | 679 | nio_pages = size >> IOMMU_PAGE_SHIFT; |
| 680 | iommu_free(tbl, dma_handle, nio_pages); |
| 681 | size = PAGE_ALIGN(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | free_pages((unsigned long)vaddr, get_order(size)); |
| 683 | } |
| 684 | } |