blob: 719f0485ec796e02d4de9964a39bb872e641d67c [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>
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +100039#include <linux/iommu.h>
40#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/io.h>
42#include <asm/prom.h>
43#include <asm/iommu.h>
44#include <asm/pci-bridge.h>
45#include <asm/machdep.h>
Haren Myneni5f508672006-06-22 23:35:10 -070046#include <asm/kdump.h>
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +000047#include <asm/fadump.h>
Anton Blanchardd6b9a812012-06-24 18:26:17 +000048#include <asm/vio.h>
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +100049#include <asm/tce.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#define DBG(...)
52
FUJITA Tomonori191aee52010-03-02 14:25:38 +000053static int novmerge;
Jake Moilanen56997552007-03-29 08:44:02 -050054
Robert Jennings6490c492008-07-24 04:31:16 +100055static void __iommu_free(struct iommu_table *, dma_addr_t, unsigned int);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static int __init setup_iommu(char *str)
58{
59 if (!strcmp(str, "novmerge"))
60 novmerge = 1;
61 else if (!strcmp(str, "vmerge"))
62 novmerge = 0;
63 return 1;
64}
65
66__setup("iommu=", setup_iommu);
67
Anton Blanchardb4c3a872012-06-07 18:14:48 +000068static DEFINE_PER_CPU(unsigned int, iommu_pool_hash);
69
70/*
71 * We precalculate the hash to avoid doing it on every allocation.
72 *
73 * The hash is important to spread CPUs across all the pools. For example,
74 * on a POWER7 with 4 way SMT we want interrupts on the primary threads and
75 * with 4 pools all primary threads would map to the same pool.
76 */
77static int __init setup_iommu_pool_hash(void)
78{
79 unsigned int i;
80
81 for_each_possible_cpu(i)
82 per_cpu(iommu_pool_hash, i) = hash_32(i, IOMMU_POOL_HASHBITS);
83
84 return 0;
85}
86subsys_initcall(setup_iommu_pool_hash);
87
Anton Blanchardd6b9a812012-06-24 18:26:17 +000088#ifdef CONFIG_FAIL_IOMMU
89
90static DECLARE_FAULT_ATTR(fail_iommu);
91
92static int __init setup_fail_iommu(char *str)
93{
94 return setup_fault_attr(&fail_iommu, str);
95}
96__setup("fail_iommu=", setup_fail_iommu);
97
98static bool should_fail_iommu(struct device *dev)
99{
100 return dev->archdata.fail_iommu && should_fail(&fail_iommu, 1);
101}
102
103static int __init fail_iommu_debugfs(void)
104{
105 struct dentry *dir = fault_create_debugfs_attr("fail_iommu",
106 NULL, &fail_iommu);
107
Rusty Russell8c6ffba2013-07-15 11:20:32 +0930108 return PTR_ERR_OR_ZERO(dir);
Anton Blanchardd6b9a812012-06-24 18:26:17 +0000109}
110late_initcall(fail_iommu_debugfs);
111
112static ssize_t fail_iommu_show(struct device *dev,
113 struct device_attribute *attr, char *buf)
114{
115 return sprintf(buf, "%d\n", dev->archdata.fail_iommu);
116}
117
118static ssize_t fail_iommu_store(struct device *dev,
119 struct device_attribute *attr, const char *buf,
120 size_t count)
121{
122 int i;
123
124 if (count > 0 && sscanf(buf, "%d", &i) > 0)
125 dev->archdata.fail_iommu = (i == 0) ? 0 : 1;
126
127 return count;
128}
129
130static DEVICE_ATTR(fail_iommu, S_IRUGO|S_IWUSR, fail_iommu_show,
131 fail_iommu_store);
132
133static int fail_iommu_bus_notify(struct notifier_block *nb,
134 unsigned long action, void *data)
135{
136 struct device *dev = data;
137
138 if (action == BUS_NOTIFY_ADD_DEVICE) {
139 if (device_create_file(dev, &dev_attr_fail_iommu))
140 pr_warn("Unable to create IOMMU fault injection sysfs "
141 "entries\n");
142 } else if (action == BUS_NOTIFY_DEL_DEVICE) {
143 device_remove_file(dev, &dev_attr_fail_iommu);
144 }
145
146 return 0;
147}
148
149static struct notifier_block fail_iommu_bus_notifier = {
150 .notifier_call = fail_iommu_bus_notify
151};
152
153static int __init fail_iommu_setup(void)
154{
155#ifdef CONFIG_PCI
156 bus_register_notifier(&pci_bus_type, &fail_iommu_bus_notifier);
157#endif
158#ifdef CONFIG_IBMVIO
159 bus_register_notifier(&vio_bus_type, &fail_iommu_bus_notifier);
160#endif
161
162 return 0;
163}
164/*
165 * Must execute after PCI and VIO subsystem have initialised but before
166 * devices are probed.
167 */
168arch_initcall(fail_iommu_setup);
169#else
170static inline bool should_fail_iommu(struct device *dev)
171{
172 return false;
173}
174#endif
175
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800176static unsigned long iommu_range_alloc(struct device *dev,
177 struct iommu_table *tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 unsigned long npages,
179 unsigned long *handle,
Olof Johansson7daa4112006-04-12 21:05:59 -0500180 unsigned long mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 unsigned int align_order)
182{
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800183 unsigned long n, end, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 unsigned long limit;
185 int largealloc = npages > 15;
186 int pass = 0;
187 unsigned long align_mask;
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800188 unsigned long boundary_size;
Anton Blanchardd3622132012-06-03 19:44:25 +0000189 unsigned long flags;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000190 unsigned int pool_nr;
191 struct iommu_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 align_mask = 0xffffffffffffffffl >> (64 - align_order);
194
195 /* This allocator was derived from x86_64's bit string search */
196
197 /* Sanity check */
Nick Piggin13a2eea2006-10-04 17:25:44 +0200198 if (unlikely(npages == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (printk_ratelimit())
200 WARN_ON(1);
201 return DMA_ERROR_CODE;
202 }
203
Anton Blanchardd6b9a812012-06-24 18:26:17 +0000204 if (should_fail_iommu(dev))
205 return DMA_ERROR_CODE;
206
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000207 /*
208 * We don't need to disable preemption here because any CPU can
209 * safely use any IOMMU pool.
210 */
Christoph Lameter69111ba2014-10-21 15:23:25 -0500211 pool_nr = __this_cpu_read(iommu_pool_hash) & (tbl->nr_pools - 1);
Anton Blanchardd3622132012-06-03 19:44:25 +0000212
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000213 if (largealloc)
214 pool = &(tbl->large_pool);
215 else
216 pool = &(tbl->pools[pool_nr]);
217
218 spin_lock_irqsave(&(pool->lock), flags);
219
220again:
Anton Blanchardd900bd72012-10-03 18:57:10 +0000221 if ((pass == 0) && handle && *handle &&
222 (*handle >= pool->start) && (*handle < pool->end))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 start = *handle;
224 else
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000225 start = pool->hint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000227 limit = pool->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* The case below can happen if we have a small segment appended
230 * to a large, or when the previous alloc was at the very end of
231 * the available space. If so, go back to the initial start.
232 */
233 if (start >= limit)
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000234 start = pool->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Olof Johansson7daa4112006-04-12 21:05:59 -0500236 if (limit + tbl->it_offset > mask) {
237 limit = mask - tbl->it_offset + 1;
238 /* If we're constrained on address range, first try
239 * at the masked hint to avoid O(n) search complexity,
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000240 * but on second pass, start at 0 in pool 0.
Olof Johansson7daa4112006-04-12 21:05:59 -0500241 */
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000242 if ((start & mask) >= limit || pass > 0) {
Anton Blanchardd900bd72012-10-03 18:57:10 +0000243 spin_unlock(&(pool->lock));
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000244 pool = &(tbl->pools[0]);
Anton Blanchardd900bd72012-10-03 18:57:10 +0000245 spin_lock(&(pool->lock));
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000246 start = pool->start;
247 } else {
Olof Johansson7daa4112006-04-12 21:05:59 -0500248 start &= mask;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000249 }
Olof Johansson7daa4112006-04-12 21:05:59 -0500250 }
251
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800252 if (dev)
253 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
Alistair Poppled0847752013-12-09 18:17:03 +1100254 1 << tbl->it_page_shift);
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800255 else
Alistair Poppled0847752013-12-09 18:17:03 +1100256 boundary_size = ALIGN(1UL << 32, 1 << tbl->it_page_shift);
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800257 /* 4GB boundary for iseries_hv_alloc and iseries_hv_map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Alistair Poppled0847752013-12-09 18:17:03 +1100259 n = iommu_area_alloc(tbl->it_map, limit, start, npages, tbl->it_offset,
260 boundary_size >> tbl->it_page_shift, align_mask);
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800261 if (n == -1) {
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000262 if (likely(pass == 0)) {
263 /* First try the pool from the start */
264 pool->hint = pool->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 pass++;
266 goto again;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000267
268 } else if (pass <= tbl->nr_pools) {
269 /* Now try scanning all the other pools */
270 spin_unlock(&(pool->lock));
271 pool_nr = (pool_nr + 1) & (tbl->nr_pools - 1);
272 pool = &tbl->pools[pool_nr];
273 spin_lock(&(pool->lock));
274 pool->hint = pool->start;
275 pass++;
276 goto again;
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 } else {
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000279 /* Give up */
280 spin_unlock_irqrestore(&(pool->lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return DMA_ERROR_CODE;
282 }
283 }
284
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800285 end = n + npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 /* Bump the hint to a new block for small allocs. */
288 if (largealloc) {
289 /* Don't bump to new block to avoid fragmentation */
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000290 pool->hint = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 } else {
292 /* Overflow will be taken care of at the next allocation */
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000293 pool->hint = (end + tbl->it_blocksize - 1) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 ~(tbl->it_blocksize - 1);
295 }
296
297 /* Update handle for SG allocations */
298 if (handle)
299 *handle = end;
300
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000301 spin_unlock_irqrestore(&(pool->lock), flags);
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return n;
304}
305
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800306static dma_addr_t iommu_alloc(struct device *dev, struct iommu_table *tbl,
307 void *page, unsigned int npages,
308 enum dma_data_direction direction,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000309 unsigned long mask, unsigned int align_order,
310 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Anton Blanchardd3622132012-06-03 19:44:25 +0000312 unsigned long entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 dma_addr_t ret = DMA_ERROR_CODE;
Robert Jennings6490c492008-07-24 04:31:16 +1000314 int build_fail;
Olof Johansson7daa4112006-04-12 21:05:59 -0500315
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800316 entry = iommu_range_alloc(dev, tbl, npages, NULL, mask, align_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Anton Blanchard0e4bc952012-06-03 19:43:02 +0000318 if (unlikely(entry == DMA_ERROR_CODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return DMA_ERROR_CODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 entry += tbl->it_offset; /* Offset into real TCE table */
Alistair Poppled0847752013-12-09 18:17:03 +1100322 ret = entry << tbl->it_page_shift; /* Set the return dma address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /* Put the TCEs in the HW table */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000325 build_fail = tbl->it_ops->set(tbl, entry, npages,
Alistair Poppled0847752013-12-09 18:17:03 +1100326 (unsigned long)page &
327 IOMMU_PAGE_MASK(tbl), direction, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000329 /* tbl->it_ops->set() only returns non-zero for transient errors.
Robert Jennings6490c492008-07-24 04:31:16 +1000330 * Clean up the table bitmap in this case and return
331 * DMA_ERROR_CODE. For all other errors the functionality is
332 * not altered.
333 */
334 if (unlikely(build_fail)) {
335 __iommu_free(tbl, ret, npages);
Robert Jennings6490c492008-07-24 04:31:16 +1000336 return DMA_ERROR_CODE;
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* Flush/invalidate TLB caches if necessary */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000340 if (tbl->it_ops->flush)
341 tbl->it_ops->flush(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /* Make sure updates are seen by hardware */
344 mb();
345
346 return ret;
347}
348
Anton Blanchard67ca1412012-06-03 19:43:44 +0000349static bool iommu_free_check(struct iommu_table *tbl, dma_addr_t dma_addr,
350 unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 unsigned long entry, free_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Alistair Poppled0847752013-12-09 18:17:03 +1100354 entry = dma_addr >> tbl->it_page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 free_entry = entry - tbl->it_offset;
356
357 if (((free_entry + npages) > tbl->it_size) ||
358 (entry < tbl->it_offset)) {
359 if (printk_ratelimit()) {
360 printk(KERN_INFO "iommu_free: invalid entry\n");
361 printk(KERN_INFO "\tentry = 0x%lx\n", entry);
Ingo Molnarfe333322009-01-06 14:26:03 +0000362 printk(KERN_INFO "\tdma_addr = 0x%llx\n", (u64)dma_addr);
363 printk(KERN_INFO "\tTable = 0x%llx\n", (u64)tbl);
364 printk(KERN_INFO "\tbus# = 0x%llx\n", (u64)tbl->it_busno);
365 printk(KERN_INFO "\tsize = 0x%llx\n", (u64)tbl->it_size);
366 printk(KERN_INFO "\tstartOff = 0x%llx\n", (u64)tbl->it_offset);
367 printk(KERN_INFO "\tindex = 0x%llx\n", (u64)tbl->it_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 WARN_ON(1);
369 }
Anton Blanchard67ca1412012-06-03 19:43:44 +0000370
371 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373
Anton Blanchard67ca1412012-06-03 19:43:44 +0000374 return true;
375}
376
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000377static struct iommu_pool *get_pool(struct iommu_table *tbl,
378 unsigned long entry)
379{
380 struct iommu_pool *p;
381 unsigned long largepool_start = tbl->large_pool.start;
382
383 /* The large pool is the last pool at the top of the table */
384 if (entry >= largepool_start) {
385 p = &tbl->large_pool;
386 } else {
387 unsigned int pool_nr = entry / tbl->poolsize;
388
389 BUG_ON(pool_nr > tbl->nr_pools);
390 p = &tbl->pools[pool_nr];
391 }
392
393 return p;
394}
395
Anton Blanchard67ca1412012-06-03 19:43:44 +0000396static void __iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr,
397 unsigned int npages)
398{
399 unsigned long entry, free_entry;
400 unsigned long flags;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000401 struct iommu_pool *pool;
Anton Blanchard67ca1412012-06-03 19:43:44 +0000402
Alistair Poppled0847752013-12-09 18:17:03 +1100403 entry = dma_addr >> tbl->it_page_shift;
Anton Blanchard67ca1412012-06-03 19:43:44 +0000404 free_entry = entry - tbl->it_offset;
405
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000406 pool = get_pool(tbl, free_entry);
407
Anton Blanchard67ca1412012-06-03 19:43:44 +0000408 if (!iommu_free_check(tbl, dma_addr, npages))
409 return;
410
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000411 tbl->it_ops->clear(tbl, entry, npages);
Anton Blanchard67ca1412012-06-03 19:43:44 +0000412
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000413 spin_lock_irqsave(&(pool->lock), flags);
Anton Blanchard67ca1412012-06-03 19:43:44 +0000414 bitmap_clear(tbl->it_map, free_entry, npages);
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000415 spin_unlock_irqrestore(&(pool->lock), flags);
Anton Blanchard67ca1412012-06-03 19:43:44 +0000416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr,
419 unsigned int npages)
420{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 __iommu_free(tbl, dma_addr, npages);
422
423 /* Make sure TLB cache is flushed if the HW needs it. We do
424 * not do an mb() here on purpose, it is not needed on any of
425 * the current platforms.
426 */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000427 if (tbl->it_ops->flush)
428 tbl->it_ops->flush(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Joerg Roedel0690cbd2014-11-05 15:28:30 +0100431int ppc_iommu_map_sg(struct device *dev, struct iommu_table *tbl,
432 struct scatterlist *sglist, int nelems,
433 unsigned long mask, enum dma_data_direction direction,
434 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 dma_addr_t dma_next = 0, dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 struct scatterlist *s, *outs, *segstart;
Robert Jennings6490c492008-07-24 04:31:16 +1000438 int outcount, incount, i, build_fail = 0;
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100439 unsigned int align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 unsigned long handle;
FUJITA Tomonori740c3ce2008-02-04 22:27:57 -0800441 unsigned int max_seg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 BUG_ON(direction == DMA_NONE);
444
445 if ((nelems == 0) || !tbl)
446 return 0;
447
448 outs = s = segstart = &sglist[0];
449 outcount = 1;
Brian Kingac9af7c2005-08-18 07:32:18 +1000450 incount = nelems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 handle = 0;
452
453 /* Init first segment length for backout at failure */
454 outs->dma_length = 0;
455
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100456 DBG("sg mapping %d elements:\n", nelems);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
FUJITA Tomonori740c3ce2008-02-04 22:27:57 -0800458 max_seg_size = dma_get_max_seg_size(dev);
Jens Axboe78bdc312007-10-12 13:44:12 +0200459 for_each_sg(sglist, s, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 unsigned long vaddr, npages, entry, slen;
461
462 slen = s->length;
463 /* Sanity check */
464 if (slen == 0) {
465 dma_next = 0;
466 continue;
467 }
468 /* Allocate iommu entries for that segment */
Jens Axboe58b053e2007-10-22 20:02:46 +0200469 vaddr = (unsigned long) sg_virt(s);
Alistair Poppled0847752013-12-09 18:17:03 +1100470 npages = iommu_num_pages(vaddr, slen, IOMMU_PAGE_SIZE(tbl));
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100471 align = 0;
Alistair Poppled0847752013-12-09 18:17:03 +1100472 if (tbl->it_page_shift < PAGE_SHIFT && slen >= PAGE_SIZE &&
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100473 (vaddr & ~PAGE_MASK) == 0)
Alistair Poppled0847752013-12-09 18:17:03 +1100474 align = PAGE_SHIFT - tbl->it_page_shift;
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800475 entry = iommu_range_alloc(dev, tbl, npages, &handle,
Alistair Poppled0847752013-12-09 18:17:03 +1100476 mask >> tbl->it_page_shift, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 DBG(" - vaddr: %lx, size: %lx\n", vaddr, slen);
479
480 /* Handle failure */
481 if (unlikely(entry == DMA_ERROR_CODE)) {
482 if (printk_ratelimit())
Anton Blanchard4dfa9c42010-12-07 14:36:05 +0000483 dev_info(dev, "iommu_alloc failed, tbl %p "
484 "vaddr %lx npages %lu\n", tbl, vaddr,
485 npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 goto failure;
487 }
488
489 /* Convert entry to a dma_addr_t */
490 entry += tbl->it_offset;
Alistair Poppled0847752013-12-09 18:17:03 +1100491 dma_addr = entry << tbl->it_page_shift;
492 dma_addr |= (s->offset & ~IOMMU_PAGE_MASK(tbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100494 DBG(" - %lu pages, entry: %lx, dma_addr: %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 npages, entry, dma_addr);
496
497 /* Insert into HW table */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000498 build_fail = tbl->it_ops->set(tbl, entry, npages,
Alistair Poppled0847752013-12-09 18:17:03 +1100499 vaddr & IOMMU_PAGE_MASK(tbl),
500 direction, attrs);
Robert Jennings6490c492008-07-24 04:31:16 +1000501 if(unlikely(build_fail))
502 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* If we are in an open segment, try merging */
505 if (segstart != s) {
506 DBG(" - trying merge...\n");
507 /* We cannot merge if:
508 * - allocated dma_addr isn't contiguous to previous allocation
509 */
FUJITA Tomonori740c3ce2008-02-04 22:27:57 -0800510 if (novmerge || (dma_addr != dma_next) ||
511 (outs->dma_length + s->length > max_seg_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* Can't merge: create a new segment */
513 segstart = s;
Jens Axboe78bdc312007-10-12 13:44:12 +0200514 outcount++;
515 outs = sg_next(outs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 DBG(" can't merge, new segment.\n");
517 } else {
518 outs->dma_length += s->length;
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100519 DBG(" merged, new len: %ux\n", outs->dma_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521 }
522
523 if (segstart == s) {
524 /* This is a new segment, fill entries */
525 DBG(" - filling new segment.\n");
526 outs->dma_address = dma_addr;
527 outs->dma_length = slen;
528 }
529
530 /* Calculate next page pointer for contiguous check */
531 dma_next = dma_addr + slen;
532
533 DBG(" - dma next is: %lx\n", dma_next);
534 }
535
536 /* Flush/invalidate TLB caches if necessary */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000537 if (tbl->it_ops->flush)
538 tbl->it_ops->flush(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 DBG("mapped %d elements:\n", outcount);
541
Joerg Roedel0690cbd2014-11-05 15:28:30 +0100542 /* For the sake of ppc_iommu_unmap_sg, we clear out the length in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 * next entry of the sglist if we didn't fill the list completely
544 */
Brian Kingac9af7c2005-08-18 07:32:18 +1000545 if (outcount < incount) {
Jens Axboe78bdc312007-10-12 13:44:12 +0200546 outs = sg_next(outs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 outs->dma_address = DMA_ERROR_CODE;
548 outs->dma_length = 0;
549 }
Jake Moilanena958a262006-01-30 21:51:54 -0600550
551 /* Make sure updates are seen by hardware */
552 mb();
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return outcount;
555
556 failure:
Jens Axboe78bdc312007-10-12 13:44:12 +0200557 for_each_sg(sglist, s, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (s->dma_length != 0) {
559 unsigned long vaddr, npages;
560
Alistair Poppled0847752013-12-09 18:17:03 +1100561 vaddr = s->dma_address & IOMMU_PAGE_MASK(tbl);
Joerg Roedel2994a3b2008-10-15 22:02:13 -0700562 npages = iommu_num_pages(s->dma_address, s->dma_length,
Alistair Poppled0847752013-12-09 18:17:03 +1100563 IOMMU_PAGE_SIZE(tbl));
Anton Blanchardd3622132012-06-03 19:44:25 +0000564 __iommu_free(tbl, vaddr, npages);
Jake Moilanena958a262006-01-30 21:51:54 -0600565 s->dma_address = DMA_ERROR_CODE;
566 s->dma_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Jens Axboe78bdc312007-10-12 13:44:12 +0200568 if (s == outs)
569 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return 0;
572}
573
574
Joerg Roedel0690cbd2014-11-05 15:28:30 +0100575void ppc_iommu_unmap_sg(struct iommu_table *tbl, struct scatterlist *sglist,
576 int nelems, enum dma_data_direction direction,
577 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Jens Axboe78bdc312007-10-12 13:44:12 +0200579 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 BUG_ON(direction == DMA_NONE);
582
583 if (!tbl)
584 return;
585
Jens Axboe78bdc312007-10-12 13:44:12 +0200586 sg = sglist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 while (nelems--) {
588 unsigned int npages;
Jens Axboe78bdc312007-10-12 13:44:12 +0200589 dma_addr_t dma_handle = sg->dma_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Jens Axboe78bdc312007-10-12 13:44:12 +0200591 if (sg->dma_length == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
Joerg Roedel2994a3b2008-10-15 22:02:13 -0700593 npages = iommu_num_pages(dma_handle, sg->dma_length,
Alistair Poppled0847752013-12-09 18:17:03 +1100594 IOMMU_PAGE_SIZE(tbl));
Anton Blanchardd3622132012-06-03 19:44:25 +0000595 __iommu_free(tbl, dma_handle, npages);
Jens Axboe78bdc312007-10-12 13:44:12 +0200596 sg = sg_next(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
599 /* Flush/invalidate TLBs if necessary. As for iommu_free(), we
600 * do not do an mb() here, the affected platforms do not need it
601 * when freeing.
602 */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000603 if (tbl->it_ops->flush)
604 tbl->it_ops->flush(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Mohan Kumar M54622f12008-10-21 17:38:10 +0000607static void iommu_table_clear(struct iommu_table *tbl)
608{
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +0000609 /*
610 * In case of firmware assisted dump system goes through clean
611 * reboot process at the time of system crash. Hence it's safe to
612 * clear the TCE entries if firmware assisted dump is active.
613 */
614 if (!is_kdump_kernel() || is_fadump_active()) {
Mohan Kumar M54622f12008-10-21 17:38:10 +0000615 /* Clear the table in case firmware left allocations in it */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000616 tbl->it_ops->clear(tbl, tbl->it_offset, tbl->it_size);
Mohan Kumar M54622f12008-10-21 17:38:10 +0000617 return;
618 }
619
620#ifdef CONFIG_CRASH_DUMP
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000621 if (tbl->it_ops->get) {
Mohan Kumar M54622f12008-10-21 17:38:10 +0000622 unsigned long index, tceval, tcecount = 0;
623
624 /* Reserve the existing mappings left by the first kernel. */
625 for (index = 0; index < tbl->it_size; index++) {
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000626 tceval = tbl->it_ops->get(tbl, index + tbl->it_offset);
Mohan Kumar M54622f12008-10-21 17:38:10 +0000627 /*
628 * Freed TCE entry contains 0x7fffffffffffffff on JS20
629 */
630 if (tceval && (tceval != 0x7fffffffffffffffUL)) {
631 __set_bit(index, tbl->it_map);
632 tcecount++;
633 }
634 }
635
636 if ((tbl->it_size - tcecount) < KDUMP_MIN_TCE_ENTRIES) {
637 printk(KERN_WARNING "TCE table is full; freeing ");
638 printk(KERN_WARNING "%d entries for the kdump boot\n",
639 KDUMP_MIN_TCE_ENTRIES);
640 for (index = tbl->it_size - KDUMP_MIN_TCE_ENTRIES;
641 index < tbl->it_size; index++)
642 __clear_bit(index, tbl->it_map);
643 }
644 }
645#endif
646}
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648/*
649 * Build a iommu_table structure. This contains a bit map which
650 * is used to manage allocation of the tce space.
651 */
Anton Blanchardca1588e2006-06-10 20:58:08 +1000652struct iommu_table *iommu_init_table(struct iommu_table *tbl, int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
654 unsigned long sz;
655 static int welcomed = 0;
Anton Blanchardca1588e2006-06-10 20:58:08 +1000656 struct page *page;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000657 unsigned int i;
658 struct iommu_pool *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000660 BUG_ON(!tbl->it_ops);
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /* number of bytes needed for the bitmap */
Akinobu Mitac5a08092012-11-04 02:03:43 +0000663 sz = BITS_TO_LONGS(tbl->it_size) * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Nishanth Aravamudan1cf389d2013-10-01 14:04:53 -0700665 page = alloc_pages_node(nid, GFP_KERNEL, get_order(sz));
Anton Blanchardca1588e2006-06-10 20:58:08 +1000666 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 panic("iommu_init_table: Can't allocate %ld bytes\n", sz);
Anton Blanchardca1588e2006-06-10 20:58:08 +1000668 tbl->it_map = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 memset(tbl->it_map, 0, sz);
670
Thadeu Lima de Souza Cascardod12b5242011-09-20 03:07:24 +0000671 /*
672 * Reserve page 0 so it will not be used for any mappings.
673 * This avoids buggy drivers that consider page 0 to be invalid
674 * to crash the machine or even lose data.
675 */
676 if (tbl->it_offset == 0)
677 set_bit(0, tbl->it_map);
678
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000679 /* We only split the IOMMU table if we have 1GB or more of space */
Alistair Poppled0847752013-12-09 18:17:03 +1100680 if ((tbl->it_size << tbl->it_page_shift) >= (1UL * 1024 * 1024 * 1024))
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000681 tbl->nr_pools = IOMMU_NR_POOLS;
682 else
683 tbl->nr_pools = 1;
684
685 /* We reserve the top 1/4 of the table for large allocations */
Benjamin Herrenschmidtdcd261b2012-07-13 17:45:49 +1000686 tbl->poolsize = (tbl->it_size * 3 / 4) / tbl->nr_pools;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000687
Benjamin Herrenschmidtdcd261b2012-07-13 17:45:49 +1000688 for (i = 0; i < tbl->nr_pools; i++) {
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000689 p = &tbl->pools[i];
690 spin_lock_init(&(p->lock));
691 p->start = tbl->poolsize * i;
692 p->hint = p->start;
693 p->end = p->start + tbl->poolsize;
694 }
695
696 p = &tbl->large_pool;
697 spin_lock_init(&(p->lock));
698 p->start = tbl->poolsize * i;
699 p->hint = p->start;
700 p->end = tbl->it_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Mohan Kumar M54622f12008-10-21 17:38:10 +0000702 iommu_table_clear(tbl);
John Rosed3588ba2005-06-20 21:43:48 +1000703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (!welcomed) {
705 printk(KERN_INFO "IOMMU table initialized, virtual merging %s\n",
706 novmerge ? "disabled" : "enabled");
707 welcomed = 1;
708 }
709
710 return tbl;
711}
712
Stephen Rothwell68d315f2007-12-06 13:39:19 +1100713void iommu_free_table(struct iommu_table *tbl, const char *node_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Akinobu Mitac5a08092012-11-04 02:03:43 +0000715 unsigned long bitmap_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 unsigned int order;
717
Alexey Kardashevskiy8aca92d2015-06-05 16:34:57 +1000718 if (!tbl)
719 return;
720
721 if (!tbl->it_map) {
722 kfree(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return;
724 }
725
Thadeu Lima de Souza Cascardo7f966d32012-12-28 09:08:51 +0000726 /*
727 * In case we have reserved the first bit, we should not emit
728 * the warning below.
729 */
730 if (tbl->it_offset == 0)
731 clear_bit(0, tbl->it_map);
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /* verify that table contains no entries */
Akinobu Mitac5a08092012-11-04 02:03:43 +0000734 if (!bitmap_empty(tbl->it_map, tbl->it_size))
735 pr_warn("%s: Unexpected TCEs for %s\n", __func__, node_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 /* calculate bitmap size in bytes */
Akinobu Mitac5a08092012-11-04 02:03:43 +0000738 bitmap_sz = BITS_TO_LONGS(tbl->it_size) * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 /* free bitmap */
741 order = get_order(bitmap_sz);
742 free_pages((unsigned long) tbl->it_map, order);
743
744 /* free table */
745 kfree(tbl);
746}
747
748/* Creates TCEs for a user provided buffer. The user buffer must be
Mark Nelsonf9226d52008-10-27 20:38:08 +0000749 * contiguous real kernel storage (not vmalloc). The address passed here
750 * comprises a page address and offset into that page. The dma_addr_t
751 * returned will point to the same byte within the page as was passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 */
Mark Nelsonf9226d52008-10-27 20:38:08 +0000753dma_addr_t iommu_map_page(struct device *dev, struct iommu_table *tbl,
754 struct page *page, unsigned long offset, size_t size,
755 unsigned long mask, enum dma_data_direction direction,
756 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 dma_addr_t dma_handle = DMA_ERROR_CODE;
Mark Nelsonf9226d52008-10-27 20:38:08 +0000759 void *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 unsigned long uaddr;
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100761 unsigned int npages, align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 BUG_ON(direction == DMA_NONE);
764
Mark Nelsonf9226d52008-10-27 20:38:08 +0000765 vaddr = page_address(page) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 uaddr = (unsigned long)vaddr;
Alistair Poppled0847752013-12-09 18:17:03 +1100767 npages = iommu_num_pages(uaddr, size, IOMMU_PAGE_SIZE(tbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 if (tbl) {
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100770 align = 0;
Alistair Poppled0847752013-12-09 18:17:03 +1100771 if (tbl->it_page_shift < PAGE_SHIFT && size >= PAGE_SIZE &&
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100772 ((unsigned long)vaddr & ~PAGE_MASK) == 0)
Alistair Poppled0847752013-12-09 18:17:03 +1100773 align = PAGE_SHIFT - tbl->it_page_shift;
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100774
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800775 dma_handle = iommu_alloc(dev, tbl, vaddr, npages, direction,
Alistair Poppled0847752013-12-09 18:17:03 +1100776 mask >> tbl->it_page_shift, align,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000777 attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (dma_handle == DMA_ERROR_CODE) {
779 if (printk_ratelimit()) {
Anton Blanchard4dfa9c42010-12-07 14:36:05 +0000780 dev_info(dev, "iommu_alloc failed, tbl %p "
781 "vaddr %p npages %d\n", tbl, vaddr,
782 npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784 } else
Alistair Poppled0847752013-12-09 18:17:03 +1100785 dma_handle |= (uaddr & ~IOMMU_PAGE_MASK(tbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
788 return dma_handle;
789}
790
Mark Nelsonf9226d52008-10-27 20:38:08 +0000791void iommu_unmap_page(struct iommu_table *tbl, dma_addr_t dma_handle,
792 size_t size, enum dma_data_direction direction,
793 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100795 unsigned int npages;
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 BUG_ON(direction == DMA_NONE);
798
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100799 if (tbl) {
Alistair Poppled0847752013-12-09 18:17:03 +1100800 npages = iommu_num_pages(dma_handle, size,
801 IOMMU_PAGE_SIZE(tbl));
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100802 iommu_free(tbl, dma_handle, npages);
803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
806/* Allocates a contiguous real buffer and creates mappings over it.
807 * Returns the virtual address of the buffer and sets dma_handle
808 * to the dma address (mapping) of the first page.
809 */
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800810void *iommu_alloc_coherent(struct device *dev, struct iommu_table *tbl,
811 size_t size, dma_addr_t *dma_handle,
812 unsigned long mask, gfp_t flag, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
814 void *ret = NULL;
815 dma_addr_t mapping;
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100816 unsigned int order;
817 unsigned int nio_pages, io_order;
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200818 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 order = get_order(size);
822
823 /*
824 * Client asked for way too much space. This is checked later
825 * anyway. It is easier to debug here for the drivers than in
826 * the tce tables.
827 */
828 if (order >= IOMAP_MAX_ORDER) {
Anton Blanchard4dfa9c42010-12-07 14:36:05 +0000829 dev_info(dev, "iommu_alloc_consistent size too large: 0x%lx\n",
830 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return NULL;
832 }
833
834 if (!tbl)
835 return NULL;
836
837 /* Alloc enough pages (and possibly more) */
Paul Mackerras05061352006-06-10 18:17:35 +1000838 page = alloc_pages_node(node, flag, order);
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200839 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return NULL;
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200841 ret = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 memset(ret, 0, size);
843
844 /* Set up tces to cover the allocated range */
Alistair Poppled0847752013-12-09 18:17:03 +1100845 nio_pages = size >> tbl->it_page_shift;
846 io_order = get_iommu_order(size, tbl);
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800847 mapping = iommu_alloc(dev, tbl, ret, nio_pages, DMA_BIDIRECTIONAL,
Alistair Poppled0847752013-12-09 18:17:03 +1100848 mask >> tbl->it_page_shift, io_order, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (mapping == DMA_ERROR_CODE) {
850 free_pages((unsigned long)ret, order);
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200851 return NULL;
852 }
853 *dma_handle = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return ret;
855}
856
857void iommu_free_coherent(struct iommu_table *tbl, size_t size,
858 void *vaddr, dma_addr_t dma_handle)
859{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (tbl) {
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100861 unsigned int nio_pages;
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 size = PAGE_ALIGN(size);
Alistair Poppled0847752013-12-09 18:17:03 +1100864 nio_pages = size >> tbl->it_page_shift;
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100865 iommu_free(tbl, dma_handle, nio_pages);
866 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 free_pages((unsigned long)vaddr, get_order(size));
868 }
869}
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000870
Alexey Kardashevskiy10b35b22015-06-05 16:35:05 +1000871unsigned long iommu_direction_to_tce_perm(enum dma_data_direction dir)
872{
873 switch (dir) {
874 case DMA_BIDIRECTIONAL:
875 return TCE_PCI_READ | TCE_PCI_WRITE;
876 case DMA_FROM_DEVICE:
877 return TCE_PCI_WRITE;
878 case DMA_TO_DEVICE:
879 return TCE_PCI_READ;
880 default:
881 return 0;
882 }
883}
884EXPORT_SYMBOL_GPL(iommu_direction_to_tce_perm);
885
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000886#ifdef CONFIG_IOMMU_API
887/*
888 * SPAPR TCE API
889 */
890static void group_release(void *iommu_data)
891{
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +1000892 struct iommu_table_group *table_group = iommu_data;
893
894 table_group->group = NULL;
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000895}
896
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +1000897void iommu_register_group(struct iommu_table_group *table_group,
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000898 int pci_domain_number, unsigned long pe_num)
899{
900 struct iommu_group *grp;
901 char *name;
902
903 grp = iommu_group_alloc();
904 if (IS_ERR(grp)) {
905 pr_warn("powerpc iommu api: cannot create new group, err=%ld\n",
906 PTR_ERR(grp));
907 return;
908 }
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +1000909 table_group->group = grp;
910 iommu_group_set_iommudata(grp, table_group, group_release);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000911 name = kasprintf(GFP_KERNEL, "domain%d-pe%lx",
912 pci_domain_number, pe_num);
913 if (!name)
914 return;
915 iommu_group_set_name(grp, name);
916 kfree(name);
917}
918
919enum dma_data_direction iommu_tce_direction(unsigned long tce)
920{
921 if ((tce & TCE_PCI_READ) && (tce & TCE_PCI_WRITE))
922 return DMA_BIDIRECTIONAL;
923 else if (tce & TCE_PCI_READ)
924 return DMA_TO_DEVICE;
925 else if (tce & TCE_PCI_WRITE)
926 return DMA_FROM_DEVICE;
927 else
928 return DMA_NONE;
929}
930EXPORT_SYMBOL_GPL(iommu_tce_direction);
931
932void iommu_flush_tce(struct iommu_table *tbl)
933{
934 /* Flush/invalidate TLB caches if necessary */
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000935 if (tbl->it_ops->flush)
936 tbl->it_ops->flush(tbl);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000937
938 /* Make sure updates are seen by hardware */
939 mb();
940}
941EXPORT_SYMBOL_GPL(iommu_flush_tce);
942
943int iommu_tce_clear_param_check(struct iommu_table *tbl,
944 unsigned long ioba, unsigned long tce_value,
945 unsigned long npages)
946{
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000947 /* tbl->it_ops->clear() does not support any value but 0 */
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000948 if (tce_value)
949 return -EINVAL;
950
Alistair Poppled0847752013-12-09 18:17:03 +1100951 if (ioba & ~IOMMU_PAGE_MASK(tbl))
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000952 return -EINVAL;
953
Alistair Poppled0847752013-12-09 18:17:03 +1100954 ioba >>= tbl->it_page_shift;
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000955 if (ioba < tbl->it_offset)
956 return -EINVAL;
957
958 if ((ioba + npages) > (tbl->it_offset + tbl->it_size))
959 return -EINVAL;
960
961 return 0;
962}
963EXPORT_SYMBOL_GPL(iommu_tce_clear_param_check);
964
965int iommu_tce_put_param_check(struct iommu_table *tbl,
966 unsigned long ioba, unsigned long tce)
967{
968 if (!(tce & (TCE_PCI_WRITE | TCE_PCI_READ)))
969 return -EINVAL;
970
Alistair Poppled0847752013-12-09 18:17:03 +1100971 if (tce & ~(IOMMU_PAGE_MASK(tbl) | TCE_PCI_WRITE | TCE_PCI_READ))
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000972 return -EINVAL;
973
Alistair Poppled0847752013-12-09 18:17:03 +1100974 if (ioba & ~IOMMU_PAGE_MASK(tbl))
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000975 return -EINVAL;
976
Alistair Poppled0847752013-12-09 18:17:03 +1100977 ioba >>= tbl->it_page_shift;
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000978 if (ioba < tbl->it_offset)
979 return -EINVAL;
980
981 if ((ioba + 1) > (tbl->it_offset + tbl->it_size))
982 return -EINVAL;
983
984 return 0;
985}
986EXPORT_SYMBOL_GPL(iommu_tce_put_param_check);
987
988unsigned long iommu_clear_tce(struct iommu_table *tbl, unsigned long entry)
989{
990 unsigned long oldtce;
991 struct iommu_pool *pool = get_pool(tbl, entry);
992
993 spin_lock(&(pool->lock));
994
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000995 oldtce = tbl->it_ops->get(tbl, entry);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000996 if (oldtce & (TCE_PCI_WRITE | TCE_PCI_READ))
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +1000997 tbl->it_ops->clear(tbl, entry, 1);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000998 else
999 oldtce = 0;
1000
1001 spin_unlock(&(pool->lock));
1002
1003 return oldtce;
1004}
1005EXPORT_SYMBOL_GPL(iommu_clear_tce);
1006
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001007/*
1008 * hwaddr is a kernel virtual address here (0xc... bazillion),
1009 * tce_build converts it to a physical address.
1010 */
1011int iommu_tce_build(struct iommu_table *tbl, unsigned long entry,
1012 unsigned long hwaddr, enum dma_data_direction direction)
1013{
1014 int ret = -EBUSY;
1015 unsigned long oldtce;
1016 struct iommu_pool *pool = get_pool(tbl, entry);
1017
1018 spin_lock(&(pool->lock));
1019
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001020 oldtce = tbl->it_ops->get(tbl, entry);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001021 /* Add new entry if it is not busy */
1022 if (!(oldtce & (TCE_PCI_WRITE | TCE_PCI_READ)))
Alexey Kardashevskiyda004c32015-06-05 16:35:06 +10001023 ret = tbl->it_ops->set(tbl, entry, 1, hwaddr, direction, NULL);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001024
1025 spin_unlock(&(pool->lock));
1026
1027 /* if (unlikely(ret))
1028 pr_err("iommu_tce: %s failed on hwaddr=%lx ioba=%lx kva=%lx ret=%d\n",
Alexey Kardashevskiy84f19662014-07-15 19:24:25 +10001029 __func__, hwaddr, entry << tbl->it_page_shift,
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001030 hwaddr, ret); */
1031
1032 return ret;
1033}
1034EXPORT_SYMBOL_GPL(iommu_tce_build);
1035
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001036int iommu_take_ownership(struct iommu_table *tbl)
1037{
1038 unsigned long sz = (tbl->it_size + 7) >> 3;
1039
1040 if (tbl->it_offset == 0)
1041 clear_bit(0, tbl->it_map);
1042
1043 if (!bitmap_empty(tbl->it_map, tbl->it_size)) {
1044 pr_err("iommu_tce: it_map is not empty");
1045 return -EBUSY;
1046 }
1047
1048 memset(tbl->it_map, 0xff, sz);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001049
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001050 /*
1051 * Disable iommu bypass, otherwise the user can DMA to all of
1052 * our physical memory via the bypass window instead of just
1053 * the pages that has been explicitly mapped into the iommu
1054 */
1055 if (tbl->set_bypass)
1056 tbl->set_bypass(tbl, false);
1057
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001058 return 0;
1059}
1060EXPORT_SYMBOL_GPL(iommu_take_ownership);
1061
1062void iommu_release_ownership(struct iommu_table *tbl)
1063{
1064 unsigned long sz = (tbl->it_size + 7) >> 3;
1065
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001066 memset(tbl->it_map, 0, sz);
1067
1068 /* Restore bit#0 set by iommu_init_table() */
1069 if (tbl->it_offset == 0)
1070 set_bit(0, tbl->it_map);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001071
1072 /* The kernel owns the device now, we can restore the iommu bypass */
1073 if (tbl->set_bypass)
1074 tbl->set_bypass(tbl, true);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001075}
1076EXPORT_SYMBOL_GPL(iommu_release_ownership);
1077
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +11001078int iommu_add_device(struct device *dev)
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001079{
1080 struct iommu_table *tbl;
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001081
Gavin Shan763fe0a2014-08-06 17:10:16 +10001082 /*
1083 * The sysfs entries should be populated before
1084 * binding IOMMU group. If sysfs entries isn't
1085 * ready, we simply bail.
1086 */
1087 if (!device_is_registered(dev))
1088 return -ENOENT;
1089
1090 if (dev->iommu_group) {
1091 pr_debug("%s: Skipping device %s with iommu group %d\n",
1092 __func__, dev_name(dev),
1093 iommu_group_id(dev->iommu_group));
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001094 return -EBUSY;
1095 }
1096
1097 tbl = get_iommu_table_base(dev);
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001098 if (!tbl || !tbl->it_table_group || !tbl->it_table_group->group) {
Gavin Shan763fe0a2014-08-06 17:10:16 +10001099 pr_debug("%s: Skipping device %s with no tbl\n",
1100 __func__, dev_name(dev));
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001101 return 0;
1102 }
1103
Gavin Shan763fe0a2014-08-06 17:10:16 +10001104 pr_debug("%s: Adding %s to iommu group %d\n",
1105 __func__, dev_name(dev),
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001106 iommu_group_id(tbl->it_table_group->group));
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001107
Alistair Poppled0847752013-12-09 18:17:03 +11001108 if (PAGE_SIZE < IOMMU_PAGE_SIZE(tbl)) {
Gavin Shan763fe0a2014-08-06 17:10:16 +10001109 pr_err("%s: Invalid IOMMU page size %lx (%lx) on %s\n",
1110 __func__, IOMMU_PAGE_SIZE(tbl),
1111 PAGE_SIZE, dev_name(dev));
Alistair Poppled0847752013-12-09 18:17:03 +11001112 return -EINVAL;
1113 }
1114
Alexey Kardashevskiyb348aa62015-06-05 16:35:08 +10001115 return iommu_group_add_device(tbl->it_table_group->group, dev);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001116}
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +11001117EXPORT_SYMBOL_GPL(iommu_add_device);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001118
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +11001119void iommu_del_device(struct device *dev)
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001120{
Gavin Shan0c4b9e22014-01-13 11:36:22 +08001121 /*
1122 * Some devices might not have IOMMU table and group
1123 * and we needn't detach them from the associated
1124 * IOMMU groups
1125 */
1126 if (!dev->iommu_group) {
1127 pr_debug("iommu_tce: skipping device %s with no tbl\n",
1128 dev_name(dev));
1129 return;
1130 }
1131
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001132 iommu_group_remove_device(dev);
1133}
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +11001134EXPORT_SYMBOL_GPL(iommu_del_device);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001135
Nishanth Aravamudan4ad04e52015-02-21 11:00:50 -08001136static int tce_iommu_bus_notifier(struct notifier_block *nb,
1137 unsigned long action, void *data)
1138{
1139 struct device *dev = data;
1140
1141 switch (action) {
1142 case BUS_NOTIFY_ADD_DEVICE:
1143 return iommu_add_device(dev);
1144 case BUS_NOTIFY_DEL_DEVICE:
1145 if (dev->iommu_group)
1146 iommu_del_device(dev);
1147 return 0;
1148 default:
1149 return 0;
1150 }
1151}
1152
1153static struct notifier_block tce_iommu_bus_nb = {
1154 .notifier_call = tce_iommu_bus_notifier,
1155};
1156
1157int __init tce_iommu_bus_notifier_init(void)
1158{
1159 bus_register_notifier(&pci_bus_type, &tce_iommu_bus_nb);
1160 return 0;
1161}
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001162#endif /* CONFIG_IOMMU_API */