blob: 8226c6cb348afbf09fc287367637b835dced2100 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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 Torvalds1da177e2005-04-16 15:20:36 -070026#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 Mitaa66022c2009-12-15 16:48:28 -080033#include <linux/bitmap.h>
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -080034#include <linux/iommu-helper.h>
Milton Miller62a8bd62008-10-22 15:39:04 -050035#include <linux/crash_dump.h>
Anton Blanchardb4c3a872012-06-07 18:14:48 +000036#include <linux/hash.h>
Anton Blanchardd6b9a812012-06-24 18:26:17 +000037#include <linux/fault-inject.h>
38#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/io.h>
40#include <asm/prom.h>
41#include <asm/iommu.h>
42#include <asm/pci-bridge.h>
43#include <asm/machdep.h>
Haren Myneni5f508672006-06-22 23:35:10 -070044#include <asm/kdump.h>
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +000045#include <asm/fadump.h>
Anton Blanchardd6b9a812012-06-24 18:26:17 +000046#include <asm/vio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define DBG(...)
49
FUJITA Tomonori191aee52010-03-02 14:25:38 +000050static int novmerge;
Jake Moilanen56997552007-03-29 08:44:02 -050051
Robert Jennings6490c492008-07-24 04:31:16 +100052static void __iommu_free(struct iommu_table *, dma_addr_t, unsigned int);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static int __init setup_iommu(char *str)
55{
56 if (!strcmp(str, "novmerge"))
57 novmerge = 1;
58 else if (!strcmp(str, "vmerge"))
59 novmerge = 0;
60 return 1;
61}
62
63__setup("iommu=", setup_iommu);
64
Anton Blanchardb4c3a872012-06-07 18:14:48 +000065static DEFINE_PER_CPU(unsigned int, iommu_pool_hash);
66
67/*
68 * We precalculate the hash to avoid doing it on every allocation.
69 *
70 * The hash is important to spread CPUs across all the pools. For example,
71 * on a POWER7 with 4 way SMT we want interrupts on the primary threads and
72 * with 4 pools all primary threads would map to the same pool.
73 */
74static int __init setup_iommu_pool_hash(void)
75{
76 unsigned int i;
77
78 for_each_possible_cpu(i)
79 per_cpu(iommu_pool_hash, i) = hash_32(i, IOMMU_POOL_HASHBITS);
80
81 return 0;
82}
83subsys_initcall(setup_iommu_pool_hash);
84
Anton Blanchardd6b9a812012-06-24 18:26:17 +000085#ifdef CONFIG_FAIL_IOMMU
86
87static DECLARE_FAULT_ATTR(fail_iommu);
88
89static int __init setup_fail_iommu(char *str)
90{
91 return setup_fault_attr(&fail_iommu, str);
92}
93__setup("fail_iommu=", setup_fail_iommu);
94
95static bool should_fail_iommu(struct device *dev)
96{
97 return dev->archdata.fail_iommu && should_fail(&fail_iommu, 1);
98}
99
100static int __init fail_iommu_debugfs(void)
101{
102 struct dentry *dir = fault_create_debugfs_attr("fail_iommu",
103 NULL, &fail_iommu);
104
105 return IS_ERR(dir) ? PTR_ERR(dir) : 0;
106}
107late_initcall(fail_iommu_debugfs);
108
109static ssize_t fail_iommu_show(struct device *dev,
110 struct device_attribute *attr, char *buf)
111{
112 return sprintf(buf, "%d\n", dev->archdata.fail_iommu);
113}
114
115static ssize_t fail_iommu_store(struct device *dev,
116 struct device_attribute *attr, const char *buf,
117 size_t count)
118{
119 int i;
120
121 if (count > 0 && sscanf(buf, "%d", &i) > 0)
122 dev->archdata.fail_iommu = (i == 0) ? 0 : 1;
123
124 return count;
125}
126
127static DEVICE_ATTR(fail_iommu, S_IRUGO|S_IWUSR, fail_iommu_show,
128 fail_iommu_store);
129
130static int fail_iommu_bus_notify(struct notifier_block *nb,
131 unsigned long action, void *data)
132{
133 struct device *dev = data;
134
135 if (action == BUS_NOTIFY_ADD_DEVICE) {
136 if (device_create_file(dev, &dev_attr_fail_iommu))
137 pr_warn("Unable to create IOMMU fault injection sysfs "
138 "entries\n");
139 } else if (action == BUS_NOTIFY_DEL_DEVICE) {
140 device_remove_file(dev, &dev_attr_fail_iommu);
141 }
142
143 return 0;
144}
145
146static struct notifier_block fail_iommu_bus_notifier = {
147 .notifier_call = fail_iommu_bus_notify
148};
149
150static int __init fail_iommu_setup(void)
151{
152#ifdef CONFIG_PCI
153 bus_register_notifier(&pci_bus_type, &fail_iommu_bus_notifier);
154#endif
155#ifdef CONFIG_IBMVIO
156 bus_register_notifier(&vio_bus_type, &fail_iommu_bus_notifier);
157#endif
158
159 return 0;
160}
161/*
162 * Must execute after PCI and VIO subsystem have initialised but before
163 * devices are probed.
164 */
165arch_initcall(fail_iommu_setup);
166#else
167static inline bool should_fail_iommu(struct device *dev)
168{
169 return false;
170}
171#endif
172
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800173static unsigned long iommu_range_alloc(struct device *dev,
174 struct iommu_table *tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 unsigned long npages,
176 unsigned long *handle,
Olof Johansson7daa4112006-04-12 21:05:59 -0500177 unsigned long mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 unsigned int align_order)
179{
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800180 unsigned long n, end, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 unsigned long limit;
182 int largealloc = npages > 15;
183 int pass = 0;
184 unsigned long align_mask;
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800185 unsigned long boundary_size;
Anton Blanchardd3622132012-06-03 19:44:25 +0000186 unsigned long flags;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000187 unsigned int pool_nr;
188 struct iommu_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 align_mask = 0xffffffffffffffffl >> (64 - align_order);
191
192 /* This allocator was derived from x86_64's bit string search */
193
194 /* Sanity check */
Nick Piggin13a2eea2006-10-04 17:25:44 +0200195 if (unlikely(npages == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (printk_ratelimit())
197 WARN_ON(1);
198 return DMA_ERROR_CODE;
199 }
200
Anton Blanchardd6b9a812012-06-24 18:26:17 +0000201 if (should_fail_iommu(dev))
202 return DMA_ERROR_CODE;
203
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000204 /*
205 * We don't need to disable preemption here because any CPU can
206 * safely use any IOMMU pool.
207 */
208 pool_nr = __raw_get_cpu_var(iommu_pool_hash) & (tbl->nr_pools - 1);
Anton Blanchardd3622132012-06-03 19:44:25 +0000209
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000210 if (largealloc)
211 pool = &(tbl->large_pool);
212 else
213 pool = &(tbl->pools[pool_nr]);
214
215 spin_lock_irqsave(&(pool->lock), flags);
216
217again:
Anton Blanchardd900bd72012-10-03 18:57:10 +0000218 if ((pass == 0) && handle && *handle &&
219 (*handle >= pool->start) && (*handle < pool->end))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 start = *handle;
221 else
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000222 start = pool->hint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000224 limit = pool->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* The case below can happen if we have a small segment appended
227 * to a large, or when the previous alloc was at the very end of
228 * the available space. If so, go back to the initial start.
229 */
230 if (start >= limit)
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000231 start = pool->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Olof Johansson7daa4112006-04-12 21:05:59 -0500233 if (limit + tbl->it_offset > mask) {
234 limit = mask - tbl->it_offset + 1;
235 /* If we're constrained on address range, first try
236 * at the masked hint to avoid O(n) search complexity,
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000237 * but on second pass, start at 0 in pool 0.
Olof Johansson7daa4112006-04-12 21:05:59 -0500238 */
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000239 if ((start & mask) >= limit || pass > 0) {
Anton Blanchardd900bd72012-10-03 18:57:10 +0000240 spin_unlock(&(pool->lock));
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000241 pool = &(tbl->pools[0]);
Anton Blanchardd900bd72012-10-03 18:57:10 +0000242 spin_lock(&(pool->lock));
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000243 start = pool->start;
244 } else {
Olof Johansson7daa4112006-04-12 21:05:59 -0500245 start &= mask;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000246 }
Olof Johansson7daa4112006-04-12 21:05:59 -0500247 }
248
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800249 if (dev)
250 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
251 1 << IOMMU_PAGE_SHIFT);
252 else
253 boundary_size = ALIGN(1UL << 32, 1 << IOMMU_PAGE_SHIFT);
254 /* 4GB boundary for iseries_hv_alloc and iseries_hv_map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800256 n = iommu_area_alloc(tbl->it_map, limit, start, npages,
257 tbl->it_offset, boundary_size >> IOMMU_PAGE_SHIFT,
258 align_mask);
259 if (n == -1) {
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000260 if (likely(pass == 0)) {
261 /* First try the pool from the start */
262 pool->hint = pool->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 pass++;
264 goto again;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000265
266 } else if (pass <= tbl->nr_pools) {
267 /* Now try scanning all the other pools */
268 spin_unlock(&(pool->lock));
269 pool_nr = (pool_nr + 1) & (tbl->nr_pools - 1);
270 pool = &tbl->pools[pool_nr];
271 spin_lock(&(pool->lock));
272 pool->hint = pool->start;
273 pass++;
274 goto again;
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 } else {
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000277 /* Give up */
278 spin_unlock_irqrestore(&(pool->lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return DMA_ERROR_CODE;
280 }
281 }
282
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800283 end = n + npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 /* Bump the hint to a new block for small allocs. */
286 if (largealloc) {
287 /* Don't bump to new block to avoid fragmentation */
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000288 pool->hint = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 } else {
290 /* Overflow will be taken care of at the next allocation */
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000291 pool->hint = (end + tbl->it_blocksize - 1) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 ~(tbl->it_blocksize - 1);
293 }
294
295 /* Update handle for SG allocations */
296 if (handle)
297 *handle = end;
298
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000299 spin_unlock_irqrestore(&(pool->lock), flags);
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return n;
302}
303
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800304static dma_addr_t iommu_alloc(struct device *dev, struct iommu_table *tbl,
305 void *page, unsigned int npages,
306 enum dma_data_direction direction,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000307 unsigned long mask, unsigned int align_order,
308 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Anton Blanchardd3622132012-06-03 19:44:25 +0000310 unsigned long entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 dma_addr_t ret = DMA_ERROR_CODE;
Robert Jennings6490c492008-07-24 04:31:16 +1000312 int build_fail;
Olof Johansson7daa4112006-04-12 21:05:59 -0500313
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800314 entry = iommu_range_alloc(dev, tbl, npages, NULL, mask, align_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Anton Blanchard0e4bc952012-06-03 19:43:02 +0000316 if (unlikely(entry == DMA_ERROR_CODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return DMA_ERROR_CODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 entry += tbl->it_offset; /* Offset into real TCE table */
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100320 ret = entry << IOMMU_PAGE_SHIFT; /* Set the return dma address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* Put the TCEs in the HW table */
Robert Jennings6490c492008-07-24 04:31:16 +1000323 build_fail = ppc_md.tce_build(tbl, entry, npages,
324 (unsigned long)page & IOMMU_PAGE_MASK,
325 direction, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Robert Jennings6490c492008-07-24 04:31:16 +1000327 /* ppc_md.tce_build() only returns non-zero for transient errors.
328 * Clean up the table bitmap in this case and return
329 * DMA_ERROR_CODE. For all other errors the functionality is
330 * not altered.
331 */
332 if (unlikely(build_fail)) {
333 __iommu_free(tbl, ret, npages);
Robert Jennings6490c492008-07-24 04:31:16 +1000334 return DMA_ERROR_CODE;
335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 /* Flush/invalidate TLB caches if necessary */
338 if (ppc_md.tce_flush)
339 ppc_md.tce_flush(tbl);
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* Make sure updates are seen by hardware */
342 mb();
343
344 return ret;
345}
346
Anton Blanchard67ca1412012-06-03 19:43:44 +0000347static bool iommu_free_check(struct iommu_table *tbl, dma_addr_t dma_addr,
348 unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 unsigned long entry, free_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100352 entry = dma_addr >> IOMMU_PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 free_entry = entry - tbl->it_offset;
354
355 if (((free_entry + npages) > tbl->it_size) ||
356 (entry < tbl->it_offset)) {
357 if (printk_ratelimit()) {
358 printk(KERN_INFO "iommu_free: invalid entry\n");
359 printk(KERN_INFO "\tentry = 0x%lx\n", entry);
Ingo Molnarfe333322009-01-06 14:26:03 +0000360 printk(KERN_INFO "\tdma_addr = 0x%llx\n", (u64)dma_addr);
361 printk(KERN_INFO "\tTable = 0x%llx\n", (u64)tbl);
362 printk(KERN_INFO "\tbus# = 0x%llx\n", (u64)tbl->it_busno);
363 printk(KERN_INFO "\tsize = 0x%llx\n", (u64)tbl->it_size);
364 printk(KERN_INFO "\tstartOff = 0x%llx\n", (u64)tbl->it_offset);
365 printk(KERN_INFO "\tindex = 0x%llx\n", (u64)tbl->it_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 WARN_ON(1);
367 }
Anton Blanchard67ca1412012-06-03 19:43:44 +0000368
369 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
Anton Blanchard67ca1412012-06-03 19:43:44 +0000372 return true;
373}
374
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000375static struct iommu_pool *get_pool(struct iommu_table *tbl,
376 unsigned long entry)
377{
378 struct iommu_pool *p;
379 unsigned long largepool_start = tbl->large_pool.start;
380
381 /* The large pool is the last pool at the top of the table */
382 if (entry >= largepool_start) {
383 p = &tbl->large_pool;
384 } else {
385 unsigned int pool_nr = entry / tbl->poolsize;
386
387 BUG_ON(pool_nr > tbl->nr_pools);
388 p = &tbl->pools[pool_nr];
389 }
390
391 return p;
392}
393
Anton Blanchard67ca1412012-06-03 19:43:44 +0000394static void __iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr,
395 unsigned int npages)
396{
397 unsigned long entry, free_entry;
398 unsigned long flags;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000399 struct iommu_pool *pool;
Anton Blanchard67ca1412012-06-03 19:43:44 +0000400
401 entry = dma_addr >> IOMMU_PAGE_SHIFT;
402 free_entry = entry - tbl->it_offset;
403
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000404 pool = get_pool(tbl, free_entry);
405
Anton Blanchard67ca1412012-06-03 19:43:44 +0000406 if (!iommu_free_check(tbl, dma_addr, npages))
407 return;
408
409 ppc_md.tce_free(tbl, entry, npages);
410
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000411 spin_lock_irqsave(&(pool->lock), flags);
Anton Blanchard67ca1412012-06-03 19:43:44 +0000412 bitmap_clear(tbl->it_map, free_entry, npages);
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000413 spin_unlock_irqrestore(&(pool->lock), flags);
Anton Blanchard67ca1412012-06-03 19:43:44 +0000414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr,
417 unsigned int npages)
418{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 __iommu_free(tbl, dma_addr, npages);
420
421 /* Make sure TLB cache is flushed if the HW needs it. We do
422 * not do an mb() here on purpose, it is not needed on any of
423 * the current platforms.
424 */
425 if (ppc_md.tce_flush)
426 ppc_md.tce_flush(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Mark Nelsonc8692362008-07-05 05:05:41 +1000429int iommu_map_sg(struct device *dev, struct iommu_table *tbl,
430 struct scatterlist *sglist, int nelems,
Mark Nelson3affedc2008-07-05 05:05:42 +1000431 unsigned long mask, enum dma_data_direction direction,
432 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 dma_addr_t dma_next = 0, dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 struct scatterlist *s, *outs, *segstart;
Robert Jennings6490c492008-07-24 04:31:16 +1000436 int outcount, incount, i, build_fail = 0;
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100437 unsigned int align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 unsigned long handle;
FUJITA Tomonori740c3ce2008-02-04 22:27:57 -0800439 unsigned int max_seg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 BUG_ON(direction == DMA_NONE);
442
443 if ((nelems == 0) || !tbl)
444 return 0;
445
446 outs = s = segstart = &sglist[0];
447 outcount = 1;
Brian Kingac9af7c2005-08-18 07:32:18 +1000448 incount = nelems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 handle = 0;
450
451 /* Init first segment length for backout at failure */
452 outs->dma_length = 0;
453
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100454 DBG("sg mapping %d elements:\n", nelems);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
FUJITA Tomonori740c3ce2008-02-04 22:27:57 -0800456 max_seg_size = dma_get_max_seg_size(dev);
Jens Axboe78bdc312007-10-12 13:44:12 +0200457 for_each_sg(sglist, s, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 unsigned long vaddr, npages, entry, slen;
459
460 slen = s->length;
461 /* Sanity check */
462 if (slen == 0) {
463 dma_next = 0;
464 continue;
465 }
466 /* Allocate iommu entries for that segment */
Jens Axboe58b053e2007-10-22 20:02:46 +0200467 vaddr = (unsigned long) sg_virt(s);
Joerg Roedel2994a3b2008-10-15 22:02:13 -0700468 npages = iommu_num_pages(vaddr, slen, IOMMU_PAGE_SIZE);
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100469 align = 0;
470 if (IOMMU_PAGE_SHIFT < PAGE_SHIFT && slen >= PAGE_SIZE &&
471 (vaddr & ~PAGE_MASK) == 0)
472 align = PAGE_SHIFT - IOMMU_PAGE_SHIFT;
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800473 entry = iommu_range_alloc(dev, tbl, npages, &handle,
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100474 mask >> IOMMU_PAGE_SHIFT, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 DBG(" - vaddr: %lx, size: %lx\n", vaddr, slen);
477
478 /* Handle failure */
479 if (unlikely(entry == DMA_ERROR_CODE)) {
480 if (printk_ratelimit())
Anton Blanchard4dfa9c42010-12-07 14:36:05 +0000481 dev_info(dev, "iommu_alloc failed, tbl %p "
482 "vaddr %lx npages %lu\n", tbl, vaddr,
483 npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto failure;
485 }
486
487 /* Convert entry to a dma_addr_t */
488 entry += tbl->it_offset;
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100489 dma_addr = entry << IOMMU_PAGE_SHIFT;
490 dma_addr |= (s->offset & ~IOMMU_PAGE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100492 DBG(" - %lu pages, entry: %lx, dma_addr: %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 npages, entry, dma_addr);
494
495 /* Insert into HW table */
Robert Jennings6490c492008-07-24 04:31:16 +1000496 build_fail = ppc_md.tce_build(tbl, entry, npages,
497 vaddr & IOMMU_PAGE_MASK,
498 direction, attrs);
499 if(unlikely(build_fail))
500 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 /* If we are in an open segment, try merging */
503 if (segstart != s) {
504 DBG(" - trying merge...\n");
505 /* We cannot merge if:
506 * - allocated dma_addr isn't contiguous to previous allocation
507 */
FUJITA Tomonori740c3ce2008-02-04 22:27:57 -0800508 if (novmerge || (dma_addr != dma_next) ||
509 (outs->dma_length + s->length > max_seg_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /* Can't merge: create a new segment */
511 segstart = s;
Jens Axboe78bdc312007-10-12 13:44:12 +0200512 outcount++;
513 outs = sg_next(outs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 DBG(" can't merge, new segment.\n");
515 } else {
516 outs->dma_length += s->length;
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100517 DBG(" merged, new len: %ux\n", outs->dma_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519 }
520
521 if (segstart == s) {
522 /* This is a new segment, fill entries */
523 DBG(" - filling new segment.\n");
524 outs->dma_address = dma_addr;
525 outs->dma_length = slen;
526 }
527
528 /* Calculate next page pointer for contiguous check */
529 dma_next = dma_addr + slen;
530
531 DBG(" - dma next is: %lx\n", dma_next);
532 }
533
534 /* Flush/invalidate TLB caches if necessary */
535 if (ppc_md.tce_flush)
536 ppc_md.tce_flush(tbl);
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 DBG("mapped %d elements:\n", outcount);
539
Brian Kingac9af7c2005-08-18 07:32:18 +1000540 /* For the sake of iommu_unmap_sg, we clear out the length in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * next entry of the sglist if we didn't fill the list completely
542 */
Brian Kingac9af7c2005-08-18 07:32:18 +1000543 if (outcount < incount) {
Jens Axboe78bdc312007-10-12 13:44:12 +0200544 outs = sg_next(outs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 outs->dma_address = DMA_ERROR_CODE;
546 outs->dma_length = 0;
547 }
Jake Moilanena958a262006-01-30 21:51:54 -0600548
549 /* Make sure updates are seen by hardware */
550 mb();
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return outcount;
553
554 failure:
Jens Axboe78bdc312007-10-12 13:44:12 +0200555 for_each_sg(sglist, s, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (s->dma_length != 0) {
557 unsigned long vaddr, npages;
558
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100559 vaddr = s->dma_address & IOMMU_PAGE_MASK;
Joerg Roedel2994a3b2008-10-15 22:02:13 -0700560 npages = iommu_num_pages(s->dma_address, s->dma_length,
561 IOMMU_PAGE_SIZE);
Anton Blanchardd3622132012-06-03 19:44:25 +0000562 __iommu_free(tbl, vaddr, npages);
Jake Moilanena958a262006-01-30 21:51:54 -0600563 s->dma_address = DMA_ERROR_CODE;
564 s->dma_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Jens Axboe78bdc312007-10-12 13:44:12 +0200566 if (s == outs)
567 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return 0;
570}
571
572
573void iommu_unmap_sg(struct iommu_table *tbl, struct scatterlist *sglist,
Mark Nelson3affedc2008-07-05 05:05:42 +1000574 int nelems, enum dma_data_direction direction,
575 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Jens Axboe78bdc312007-10-12 13:44:12 +0200577 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 BUG_ON(direction == DMA_NONE);
580
581 if (!tbl)
582 return;
583
Jens Axboe78bdc312007-10-12 13:44:12 +0200584 sg = sglist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 while (nelems--) {
586 unsigned int npages;
Jens Axboe78bdc312007-10-12 13:44:12 +0200587 dma_addr_t dma_handle = sg->dma_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Jens Axboe78bdc312007-10-12 13:44:12 +0200589 if (sg->dma_length == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 break;
Joerg Roedel2994a3b2008-10-15 22:02:13 -0700591 npages = iommu_num_pages(dma_handle, sg->dma_length,
592 IOMMU_PAGE_SIZE);
Anton Blanchardd3622132012-06-03 19:44:25 +0000593 __iommu_free(tbl, dma_handle, npages);
Jens Axboe78bdc312007-10-12 13:44:12 +0200594 sg = sg_next(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596
597 /* Flush/invalidate TLBs if necessary. As for iommu_free(), we
598 * do not do an mb() here, the affected platforms do not need it
599 * when freeing.
600 */
601 if (ppc_md.tce_flush)
602 ppc_md.tce_flush(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Mohan Kumar M54622f12008-10-21 17:38:10 +0000605static void iommu_table_clear(struct iommu_table *tbl)
606{
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +0000607 /*
608 * In case of firmware assisted dump system goes through clean
609 * reboot process at the time of system crash. Hence it's safe to
610 * clear the TCE entries if firmware assisted dump is active.
611 */
612 if (!is_kdump_kernel() || is_fadump_active()) {
Mohan Kumar M54622f12008-10-21 17:38:10 +0000613 /* Clear the table in case firmware left allocations in it */
614 ppc_md.tce_free(tbl, tbl->it_offset, tbl->it_size);
615 return;
616 }
617
618#ifdef CONFIG_CRASH_DUMP
619 if (ppc_md.tce_get) {
620 unsigned long index, tceval, tcecount = 0;
621
622 /* Reserve the existing mappings left by the first kernel. */
623 for (index = 0; index < tbl->it_size; index++) {
624 tceval = ppc_md.tce_get(tbl, index + tbl->it_offset);
625 /*
626 * Freed TCE entry contains 0x7fffffffffffffff on JS20
627 */
628 if (tceval && (tceval != 0x7fffffffffffffffUL)) {
629 __set_bit(index, tbl->it_map);
630 tcecount++;
631 }
632 }
633
634 if ((tbl->it_size - tcecount) < KDUMP_MIN_TCE_ENTRIES) {
635 printk(KERN_WARNING "TCE table is full; freeing ");
636 printk(KERN_WARNING "%d entries for the kdump boot\n",
637 KDUMP_MIN_TCE_ENTRIES);
638 for (index = tbl->it_size - KDUMP_MIN_TCE_ENTRIES;
639 index < tbl->it_size; index++)
640 __clear_bit(index, tbl->it_map);
641 }
642 }
643#endif
644}
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646/*
647 * Build a iommu_table structure. This contains a bit map which
648 * is used to manage allocation of the tce space.
649 */
Anton Blanchardca1588e2006-06-10 20:58:08 +1000650struct iommu_table *iommu_init_table(struct iommu_table *tbl, int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 unsigned long sz;
653 static int welcomed = 0;
Anton Blanchardca1588e2006-06-10 20:58:08 +1000654 struct page *page;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000655 unsigned int i;
656 struct iommu_pool *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 /* number of bytes needed for the bitmap */
659 sz = (tbl->it_size + 7) >> 3;
660
Anton Blanchardca1588e2006-06-10 20:58:08 +1000661 page = alloc_pages_node(nid, GFP_ATOMIC, get_order(sz));
662 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 panic("iommu_init_table: Can't allocate %ld bytes\n", sz);
Anton Blanchardca1588e2006-06-10 20:58:08 +1000664 tbl->it_map = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 memset(tbl->it_map, 0, sz);
666
Thadeu Lima de Souza Cascardod12b5242011-09-20 03:07:24 +0000667 /*
668 * Reserve page 0 so it will not be used for any mappings.
669 * This avoids buggy drivers that consider page 0 to be invalid
670 * to crash the machine or even lose data.
671 */
672 if (tbl->it_offset == 0)
673 set_bit(0, tbl->it_map);
674
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000675 /* We only split the IOMMU table if we have 1GB or more of space */
676 if ((tbl->it_size << IOMMU_PAGE_SHIFT) >= (1UL * 1024 * 1024 * 1024))
677 tbl->nr_pools = IOMMU_NR_POOLS;
678 else
679 tbl->nr_pools = 1;
680
681 /* We reserve the top 1/4 of the table for large allocations */
Benjamin Herrenschmidtdcd261b2012-07-13 17:45:49 +1000682 tbl->poolsize = (tbl->it_size * 3 / 4) / tbl->nr_pools;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000683
Benjamin Herrenschmidtdcd261b2012-07-13 17:45:49 +1000684 for (i = 0; i < tbl->nr_pools; i++) {
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000685 p = &tbl->pools[i];
686 spin_lock_init(&(p->lock));
687 p->start = tbl->poolsize * i;
688 p->hint = p->start;
689 p->end = p->start + tbl->poolsize;
690 }
691
692 p = &tbl->large_pool;
693 spin_lock_init(&(p->lock));
694 p->start = tbl->poolsize * i;
695 p->hint = p->start;
696 p->end = tbl->it_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Mohan Kumar M54622f12008-10-21 17:38:10 +0000698 iommu_table_clear(tbl);
John Rosed3588ba2005-06-20 21:43:48 +1000699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (!welcomed) {
701 printk(KERN_INFO "IOMMU table initialized, virtual merging %s\n",
702 novmerge ? "disabled" : "enabled");
703 welcomed = 1;
704 }
705
706 return tbl;
707}
708
Stephen Rothwell68d315f2007-12-06 13:39:19 +1100709void iommu_free_table(struct iommu_table *tbl, const char *node_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 unsigned long bitmap_sz, i;
712 unsigned int order;
713
714 if (!tbl || !tbl->it_map) {
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100715 printk(KERN_ERR "%s: expected TCE map for %s\n", __func__,
Stephen Rothwell68d315f2007-12-06 13:39:19 +1100716 node_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return;
718 }
719
720 /* verify that table contains no entries */
721 /* it_size is in entries, and we're examining 64 at a time */
722 for (i = 0; i < (tbl->it_size/64); i++) {
723 if (tbl->it_map[i] != 0) {
724 printk(KERN_WARNING "%s: Unexpected TCEs for %s\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100725 __func__, node_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 break;
727 }
728 }
729
730 /* calculate bitmap size in bytes */
731 bitmap_sz = (tbl->it_size + 7) / 8;
732
733 /* free bitmap */
734 order = get_order(bitmap_sz);
735 free_pages((unsigned long) tbl->it_map, order);
736
737 /* free table */
738 kfree(tbl);
739}
740
741/* Creates TCEs for a user provided buffer. The user buffer must be
Mark Nelsonf9226d52008-10-27 20:38:08 +0000742 * contiguous real kernel storage (not vmalloc). The address passed here
743 * comprises a page address and offset into that page. The dma_addr_t
744 * returned will point to the same byte within the page as was passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
Mark Nelsonf9226d52008-10-27 20:38:08 +0000746dma_addr_t iommu_map_page(struct device *dev, struct iommu_table *tbl,
747 struct page *page, unsigned long offset, size_t size,
748 unsigned long mask, enum dma_data_direction direction,
749 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 dma_addr_t dma_handle = DMA_ERROR_CODE;
Mark Nelsonf9226d52008-10-27 20:38:08 +0000752 void *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 unsigned long uaddr;
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100754 unsigned int npages, align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 BUG_ON(direction == DMA_NONE);
757
Mark Nelsonf9226d52008-10-27 20:38:08 +0000758 vaddr = page_address(page) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 uaddr = (unsigned long)vaddr;
Joerg Roedel2994a3b2008-10-15 22:02:13 -0700760 npages = iommu_num_pages(uaddr, size, IOMMU_PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 if (tbl) {
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100763 align = 0;
764 if (IOMMU_PAGE_SHIFT < PAGE_SHIFT && size >= PAGE_SIZE &&
765 ((unsigned long)vaddr & ~PAGE_MASK) == 0)
766 align = PAGE_SHIFT - IOMMU_PAGE_SHIFT;
767
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800768 dma_handle = iommu_alloc(dev, tbl, vaddr, npages, direction,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000769 mask >> IOMMU_PAGE_SHIFT, align,
770 attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (dma_handle == DMA_ERROR_CODE) {
772 if (printk_ratelimit()) {
Anton Blanchard4dfa9c42010-12-07 14:36:05 +0000773 dev_info(dev, "iommu_alloc failed, tbl %p "
774 "vaddr %p npages %d\n", tbl, vaddr,
775 npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777 } else
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100778 dma_handle |= (uaddr & ~IOMMU_PAGE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780
781 return dma_handle;
782}
783
Mark Nelsonf9226d52008-10-27 20:38:08 +0000784void iommu_unmap_page(struct iommu_table *tbl, dma_addr_t dma_handle,
785 size_t size, enum dma_data_direction direction,
786 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100788 unsigned int npages;
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 BUG_ON(direction == DMA_NONE);
791
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100792 if (tbl) {
Joerg Roedel2994a3b2008-10-15 22:02:13 -0700793 npages = iommu_num_pages(dma_handle, size, IOMMU_PAGE_SIZE);
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100794 iommu_free(tbl, dma_handle, npages);
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
798/* Allocates a contiguous real buffer and creates mappings over it.
799 * Returns the virtual address of the buffer and sets dma_handle
800 * to the dma address (mapping) of the first page.
801 */
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800802void *iommu_alloc_coherent(struct device *dev, struct iommu_table *tbl,
803 size_t size, dma_addr_t *dma_handle,
804 unsigned long mask, gfp_t flag, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 void *ret = NULL;
807 dma_addr_t mapping;
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100808 unsigned int order;
809 unsigned int nio_pages, io_order;
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200810 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 order = get_order(size);
814
815 /*
816 * Client asked for way too much space. This is checked later
817 * anyway. It is easier to debug here for the drivers than in
818 * the tce tables.
819 */
820 if (order >= IOMAP_MAX_ORDER) {
Anton Blanchard4dfa9c42010-12-07 14:36:05 +0000821 dev_info(dev, "iommu_alloc_consistent size too large: 0x%lx\n",
822 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return NULL;
824 }
825
826 if (!tbl)
827 return NULL;
828
829 /* Alloc enough pages (and possibly more) */
Paul Mackerras05061352006-06-10 18:17:35 +1000830 page = alloc_pages_node(node, flag, order);
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200831 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return NULL;
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200833 ret = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 memset(ret, 0, size);
835
836 /* Set up tces to cover the allocated range */
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100837 nio_pages = size >> IOMMU_PAGE_SHIFT;
838 io_order = get_iommu_order(size);
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800839 mapping = iommu_alloc(dev, tbl, ret, nio_pages, DMA_BIDIRECTIONAL,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000840 mask >> IOMMU_PAGE_SHIFT, io_order, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (mapping == DMA_ERROR_CODE) {
842 free_pages((unsigned long)ret, order);
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200843 return NULL;
844 }
845 *dma_handle = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return ret;
847}
848
849void iommu_free_coherent(struct iommu_table *tbl, size_t size,
850 void *vaddr, dma_addr_t dma_handle)
851{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (tbl) {
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100853 unsigned int nio_pages;
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 size = PAGE_ALIGN(size);
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100856 nio_pages = size >> IOMMU_PAGE_SHIFT;
857 iommu_free(tbl, dma_handle, nio_pages);
858 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 free_pages((unsigned long)vaddr, get_order(size));
860 }
861}