blob: 73eb39a7a9e1972f807131bfb5e872ba16c0ad83 [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 */
Robert Jennings6490c492008-07-24 04:31:16 +1000325 build_fail = ppc_md.tce_build(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
Robert Jennings6490c492008-07-24 04:31:16 +1000329 /* ppc_md.tce_build() only returns non-zero for transient errors.
330 * 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 */
340 if (ppc_md.tce_flush)
341 ppc_md.tce_flush(tbl);
342
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
411 ppc_md.tce_free(tbl, entry, npages);
412
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 */
427 if (ppc_md.tce_flush)
428 ppc_md.tce_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 */
Robert Jennings6490c492008-07-24 04:31:16 +1000498 build_fail = ppc_md.tce_build(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 */
537 if (ppc_md.tce_flush)
538 ppc_md.tce_flush(tbl);
539
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 */
603 if (ppc_md.tce_flush)
604 ppc_md.tce_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 */
616 ppc_md.tce_free(tbl, tbl->it_offset, tbl->it_size);
617 return;
618 }
619
620#ifdef CONFIG_CRASH_DUMP
621 if (ppc_md.tce_get) {
622 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++) {
626 tceval = ppc_md.tce_get(tbl, index + tbl->it_offset);
627 /*
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
660 /* number of bytes needed for the bitmap */
Akinobu Mitac5a08092012-11-04 02:03:43 +0000661 sz = BITS_TO_LONGS(tbl->it_size) * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Nishanth Aravamudan1cf389d2013-10-01 14:04:53 -0700663 page = alloc_pages_node(nid, GFP_KERNEL, get_order(sz));
Anton Blanchardca1588e2006-06-10 20:58:08 +1000664 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 panic("iommu_init_table: Can't allocate %ld bytes\n", sz);
Anton Blanchardca1588e2006-06-10 20:58:08 +1000666 tbl->it_map = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 memset(tbl->it_map, 0, sz);
668
Thadeu Lima de Souza Cascardod12b5242011-09-20 03:07:24 +0000669 /*
670 * Reserve page 0 so it will not be used for any mappings.
671 * This avoids buggy drivers that consider page 0 to be invalid
672 * to crash the machine or even lose data.
673 */
674 if (tbl->it_offset == 0)
675 set_bit(0, tbl->it_map);
676
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000677 /* We only split the IOMMU table if we have 1GB or more of space */
Alistair Poppled0847752013-12-09 18:17:03 +1100678 if ((tbl->it_size << tbl->it_page_shift) >= (1UL * 1024 * 1024 * 1024))
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000679 tbl->nr_pools = IOMMU_NR_POOLS;
680 else
681 tbl->nr_pools = 1;
682
683 /* We reserve the top 1/4 of the table for large allocations */
Benjamin Herrenschmidtdcd261b2012-07-13 17:45:49 +1000684 tbl->poolsize = (tbl->it_size * 3 / 4) / tbl->nr_pools;
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000685
Benjamin Herrenschmidtdcd261b2012-07-13 17:45:49 +1000686 for (i = 0; i < tbl->nr_pools; i++) {
Anton Blanchardb4c3a872012-06-07 18:14:48 +0000687 p = &tbl->pools[i];
688 spin_lock_init(&(p->lock));
689 p->start = tbl->poolsize * i;
690 p->hint = p->start;
691 p->end = p->start + tbl->poolsize;
692 }
693
694 p = &tbl->large_pool;
695 spin_lock_init(&(p->lock));
696 p->start = tbl->poolsize * i;
697 p->hint = p->start;
698 p->end = tbl->it_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Mohan Kumar M54622f12008-10-21 17:38:10 +0000700 iommu_table_clear(tbl);
John Rosed3588ba2005-06-20 21:43:48 +1000701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (!welcomed) {
703 printk(KERN_INFO "IOMMU table initialized, virtual merging %s\n",
704 novmerge ? "disabled" : "enabled");
705 welcomed = 1;
706 }
707
708 return tbl;
709}
710
Stephen Rothwell68d315f2007-12-06 13:39:19 +1100711void iommu_free_table(struct iommu_table *tbl, const char *node_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Akinobu Mitac5a08092012-11-04 02:03:43 +0000713 unsigned long bitmap_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 unsigned int order;
715
Alexey Kardashevskiy8aca92d2015-06-05 16:34:57 +1000716 if (!tbl)
717 return;
718
719 if (!tbl->it_map) {
720 kfree(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return;
722 }
723
Thadeu Lima de Souza Cascardo7f966d32012-12-28 09:08:51 +0000724 /*
725 * In case we have reserved the first bit, we should not emit
726 * the warning below.
727 */
728 if (tbl->it_offset == 0)
729 clear_bit(0, tbl->it_map);
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /* verify that table contains no entries */
Akinobu Mitac5a08092012-11-04 02:03:43 +0000732 if (!bitmap_empty(tbl->it_map, tbl->it_size))
733 pr_warn("%s: Unexpected TCEs for %s\n", __func__, node_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /* calculate bitmap size in bytes */
Akinobu Mitac5a08092012-11-04 02:03:43 +0000736 bitmap_sz = BITS_TO_LONGS(tbl->it_size) * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 /* free bitmap */
739 order = get_order(bitmap_sz);
740 free_pages((unsigned long) tbl->it_map, order);
741
742 /* free table */
743 kfree(tbl);
744}
745
746/* Creates TCEs for a user provided buffer. The user buffer must be
Mark Nelsonf9226d52008-10-27 20:38:08 +0000747 * contiguous real kernel storage (not vmalloc). The address passed here
748 * comprises a page address and offset into that page. The dma_addr_t
749 * returned will point to the same byte within the page as was passed in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 */
Mark Nelsonf9226d52008-10-27 20:38:08 +0000751dma_addr_t iommu_map_page(struct device *dev, struct iommu_table *tbl,
752 struct page *page, unsigned long offset, size_t size,
753 unsigned long mask, enum dma_data_direction direction,
754 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 dma_addr_t dma_handle = DMA_ERROR_CODE;
Mark Nelsonf9226d52008-10-27 20:38:08 +0000757 void *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 unsigned long uaddr;
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100759 unsigned int npages, align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 BUG_ON(direction == DMA_NONE);
762
Mark Nelsonf9226d52008-10-27 20:38:08 +0000763 vaddr = page_address(page) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 uaddr = (unsigned long)vaddr;
Alistair Poppled0847752013-12-09 18:17:03 +1100765 npages = iommu_num_pages(uaddr, size, IOMMU_PAGE_SIZE(tbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 if (tbl) {
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100768 align = 0;
Alistair Poppled0847752013-12-09 18:17:03 +1100769 if (tbl->it_page_shift < PAGE_SHIFT && size >= PAGE_SIZE &&
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100770 ((unsigned long)vaddr & ~PAGE_MASK) == 0)
Alistair Poppled0847752013-12-09 18:17:03 +1100771 align = PAGE_SHIFT - tbl->it_page_shift;
Benjamin Herrenschmidtd262c322008-01-08 10:34:22 +1100772
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800773 dma_handle = iommu_alloc(dev, tbl, vaddr, npages, direction,
Alistair Poppled0847752013-12-09 18:17:03 +1100774 mask >> tbl->it_page_shift, align,
Mark Nelson4f3dd8a2008-07-16 05:51:47 +1000775 attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (dma_handle == DMA_ERROR_CODE) {
777 if (printk_ratelimit()) {
Anton Blanchard4dfa9c42010-12-07 14:36:05 +0000778 dev_info(dev, "iommu_alloc failed, tbl %p "
779 "vaddr %p npages %d\n", tbl, vaddr,
780 npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782 } else
Alistair Poppled0847752013-12-09 18:17:03 +1100783 dma_handle |= (uaddr & ~IOMMU_PAGE_MASK(tbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
786 return dma_handle;
787}
788
Mark Nelsonf9226d52008-10-27 20:38:08 +0000789void iommu_unmap_page(struct iommu_table *tbl, dma_addr_t dma_handle,
790 size_t size, enum dma_data_direction direction,
791 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100793 unsigned int npages;
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 BUG_ON(direction == DMA_NONE);
796
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100797 if (tbl) {
Alistair Poppled0847752013-12-09 18:17:03 +1100798 npages = iommu_num_pages(dma_handle, size,
799 IOMMU_PAGE_SIZE(tbl));
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100800 iommu_free(tbl, dma_handle, npages);
801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
804/* Allocates a contiguous real buffer and creates mappings over it.
805 * Returns the virtual address of the buffer and sets dma_handle
806 * to the dma address (mapping) of the first page.
807 */
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800808void *iommu_alloc_coherent(struct device *dev, struct iommu_table *tbl,
809 size_t size, dma_addr_t *dma_handle,
810 unsigned long mask, gfp_t flag, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 void *ret = NULL;
813 dma_addr_t mapping;
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100814 unsigned int order;
815 unsigned int nio_pages, io_order;
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200816 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 order = get_order(size);
820
821 /*
822 * Client asked for way too much space. This is checked later
823 * anyway. It is easier to debug here for the drivers than in
824 * the tce tables.
825 */
826 if (order >= IOMAP_MAX_ORDER) {
Anton Blanchard4dfa9c42010-12-07 14:36:05 +0000827 dev_info(dev, "iommu_alloc_consistent size too large: 0x%lx\n",
828 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return NULL;
830 }
831
832 if (!tbl)
833 return NULL;
834
835 /* Alloc enough pages (and possibly more) */
Paul Mackerras05061352006-06-10 18:17:35 +1000836 page = alloc_pages_node(node, flag, order);
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200837 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return NULL;
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200839 ret = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 memset(ret, 0, size);
841
842 /* Set up tces to cover the allocated range */
Alistair Poppled0847752013-12-09 18:17:03 +1100843 nio_pages = size >> tbl->it_page_shift;
844 io_order = get_iommu_order(size, tbl);
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800845 mapping = iommu_alloc(dev, tbl, ret, nio_pages, DMA_BIDIRECTIONAL,
Alistair Poppled0847752013-12-09 18:17:03 +1100846 mask >> tbl->it_page_shift, io_order, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (mapping == DMA_ERROR_CODE) {
848 free_pages((unsigned long)ret, order);
Christoph Hellwig8eb6c6e2006-06-06 16:11:35 +0200849 return NULL;
850 }
851 *dma_handle = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return ret;
853}
854
855void iommu_free_coherent(struct iommu_table *tbl, size_t size,
856 void *vaddr, dma_addr_t dma_handle)
857{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (tbl) {
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100859 unsigned int nio_pages;
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 size = PAGE_ALIGN(size);
Alistair Poppled0847752013-12-09 18:17:03 +1100862 nio_pages = size >> tbl->it_page_shift;
Linas Vepstas5d2efba2006-10-30 16:15:59 +1100863 iommu_free(tbl, dma_handle, nio_pages);
864 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 free_pages((unsigned long)vaddr, get_order(size));
866 }
867}
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000868
869#ifdef CONFIG_IOMMU_API
870/*
871 * SPAPR TCE API
872 */
873static void group_release(void *iommu_data)
874{
875 struct iommu_table *tbl = iommu_data;
876 tbl->it_group = NULL;
877}
878
879void iommu_register_group(struct iommu_table *tbl,
880 int pci_domain_number, unsigned long pe_num)
881{
882 struct iommu_group *grp;
883 char *name;
884
885 grp = iommu_group_alloc();
886 if (IS_ERR(grp)) {
887 pr_warn("powerpc iommu api: cannot create new group, err=%ld\n",
888 PTR_ERR(grp));
889 return;
890 }
891 tbl->it_group = grp;
892 iommu_group_set_iommudata(grp, tbl, group_release);
893 name = kasprintf(GFP_KERNEL, "domain%d-pe%lx",
894 pci_domain_number, pe_num);
895 if (!name)
896 return;
897 iommu_group_set_name(grp, name);
898 kfree(name);
899}
900
901enum dma_data_direction iommu_tce_direction(unsigned long tce)
902{
903 if ((tce & TCE_PCI_READ) && (tce & TCE_PCI_WRITE))
904 return DMA_BIDIRECTIONAL;
905 else if (tce & TCE_PCI_READ)
906 return DMA_TO_DEVICE;
907 else if (tce & TCE_PCI_WRITE)
908 return DMA_FROM_DEVICE;
909 else
910 return DMA_NONE;
911}
912EXPORT_SYMBOL_GPL(iommu_tce_direction);
913
914void iommu_flush_tce(struct iommu_table *tbl)
915{
916 /* Flush/invalidate TLB caches if necessary */
917 if (ppc_md.tce_flush)
918 ppc_md.tce_flush(tbl);
919
920 /* Make sure updates are seen by hardware */
921 mb();
922}
923EXPORT_SYMBOL_GPL(iommu_flush_tce);
924
925int iommu_tce_clear_param_check(struct iommu_table *tbl,
926 unsigned long ioba, unsigned long tce_value,
927 unsigned long npages)
928{
929 /* ppc_md.tce_free() does not support any value but 0 */
930 if (tce_value)
931 return -EINVAL;
932
Alistair Poppled0847752013-12-09 18:17:03 +1100933 if (ioba & ~IOMMU_PAGE_MASK(tbl))
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000934 return -EINVAL;
935
Alistair Poppled0847752013-12-09 18:17:03 +1100936 ioba >>= tbl->it_page_shift;
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000937 if (ioba < tbl->it_offset)
938 return -EINVAL;
939
940 if ((ioba + npages) > (tbl->it_offset + tbl->it_size))
941 return -EINVAL;
942
943 return 0;
944}
945EXPORT_SYMBOL_GPL(iommu_tce_clear_param_check);
946
947int iommu_tce_put_param_check(struct iommu_table *tbl,
948 unsigned long ioba, unsigned long tce)
949{
950 if (!(tce & (TCE_PCI_WRITE | TCE_PCI_READ)))
951 return -EINVAL;
952
Alistair Poppled0847752013-12-09 18:17:03 +1100953 if (tce & ~(IOMMU_PAGE_MASK(tbl) | TCE_PCI_WRITE | TCE_PCI_READ))
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000954 return -EINVAL;
955
Alistair Poppled0847752013-12-09 18:17:03 +1100956 if (ioba & ~IOMMU_PAGE_MASK(tbl))
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000957 return -EINVAL;
958
Alistair Poppled0847752013-12-09 18:17:03 +1100959 ioba >>= tbl->it_page_shift;
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +1000960 if (ioba < tbl->it_offset)
961 return -EINVAL;
962
963 if ((ioba + 1) > (tbl->it_offset + tbl->it_size))
964 return -EINVAL;
965
966 return 0;
967}
968EXPORT_SYMBOL_GPL(iommu_tce_put_param_check);
969
970unsigned long iommu_clear_tce(struct iommu_table *tbl, unsigned long entry)
971{
972 unsigned long oldtce;
973 struct iommu_pool *pool = get_pool(tbl, entry);
974
975 spin_lock(&(pool->lock));
976
977 oldtce = ppc_md.tce_get(tbl, entry);
978 if (oldtce & (TCE_PCI_WRITE | TCE_PCI_READ))
979 ppc_md.tce_free(tbl, entry, 1);
980 else
981 oldtce = 0;
982
983 spin_unlock(&(pool->lock));
984
985 return oldtce;
986}
987EXPORT_SYMBOL_GPL(iommu_clear_tce);
988
989int iommu_clear_tces_and_put_pages(struct iommu_table *tbl,
990 unsigned long entry, unsigned long pages)
991{
992 unsigned long oldtce;
993 struct page *page;
994
995 for ( ; pages; --pages, ++entry) {
996 oldtce = iommu_clear_tce(tbl, entry);
997 if (!oldtce)
998 continue;
999
1000 page = pfn_to_page(oldtce >> PAGE_SHIFT);
1001 WARN_ON(!page);
1002 if (page) {
1003 if (oldtce & TCE_PCI_WRITE)
1004 SetPageDirty(page);
1005 put_page(page);
1006 }
1007 }
1008
1009 return 0;
1010}
1011EXPORT_SYMBOL_GPL(iommu_clear_tces_and_put_pages);
1012
1013/*
1014 * hwaddr is a kernel virtual address here (0xc... bazillion),
1015 * tce_build converts it to a physical address.
1016 */
1017int iommu_tce_build(struct iommu_table *tbl, unsigned long entry,
1018 unsigned long hwaddr, enum dma_data_direction direction)
1019{
1020 int ret = -EBUSY;
1021 unsigned long oldtce;
1022 struct iommu_pool *pool = get_pool(tbl, entry);
1023
1024 spin_lock(&(pool->lock));
1025
1026 oldtce = ppc_md.tce_get(tbl, entry);
1027 /* Add new entry if it is not busy */
1028 if (!(oldtce & (TCE_PCI_WRITE | TCE_PCI_READ)))
1029 ret = ppc_md.tce_build(tbl, entry, 1, hwaddr, direction, NULL);
1030
1031 spin_unlock(&(pool->lock));
1032
1033 /* if (unlikely(ret))
1034 pr_err("iommu_tce: %s failed on hwaddr=%lx ioba=%lx kva=%lx ret=%d\n",
Alexey Kardashevskiy84f19662014-07-15 19:24:25 +10001035 __func__, hwaddr, entry << tbl->it_page_shift,
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001036 hwaddr, ret); */
1037
1038 return ret;
1039}
1040EXPORT_SYMBOL_GPL(iommu_tce_build);
1041
1042int iommu_put_tce_user_mode(struct iommu_table *tbl, unsigned long entry,
1043 unsigned long tce)
1044{
1045 int ret;
1046 struct page *page = NULL;
Alistair Poppled0847752013-12-09 18:17:03 +11001047 unsigned long hwaddr, offset = tce & IOMMU_PAGE_MASK(tbl) & ~PAGE_MASK;
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001048 enum dma_data_direction direction = iommu_tce_direction(tce);
1049
1050 ret = get_user_pages_fast(tce & PAGE_MASK, 1,
1051 direction != DMA_TO_DEVICE, &page);
1052 if (unlikely(ret != 1)) {
1053 /* pr_err("iommu_tce: get_user_pages_fast failed tce=%lx ioba=%lx ret=%d\n",
Alexey Kardashevskiy84f19662014-07-15 19:24:25 +10001054 tce, entry << tbl->it_page_shift, ret); */
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001055 return -EFAULT;
1056 }
1057 hwaddr = (unsigned long) page_address(page) + offset;
1058
1059 ret = iommu_tce_build(tbl, entry, hwaddr, direction);
1060 if (ret)
1061 put_page(page);
1062
1063 if (ret < 0)
1064 pr_err("iommu_tce: %s failed ioba=%lx, tce=%lx, ret=%d\n",
Alistair Poppled0847752013-12-09 18:17:03 +11001065 __func__, entry << tbl->it_page_shift, tce, ret);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001066
1067 return ret;
1068}
1069EXPORT_SYMBOL_GPL(iommu_put_tce_user_mode);
1070
1071int iommu_take_ownership(struct iommu_table *tbl)
1072{
1073 unsigned long sz = (tbl->it_size + 7) >> 3;
1074
1075 if (tbl->it_offset == 0)
1076 clear_bit(0, tbl->it_map);
1077
1078 if (!bitmap_empty(tbl->it_map, tbl->it_size)) {
1079 pr_err("iommu_tce: it_map is not empty");
1080 return -EBUSY;
1081 }
1082
1083 memset(tbl->it_map, 0xff, sz);
1084 iommu_clear_tces_and_put_pages(tbl, tbl->it_offset, tbl->it_size);
1085
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001086 /*
1087 * Disable iommu bypass, otherwise the user can DMA to all of
1088 * our physical memory via the bypass window instead of just
1089 * the pages that has been explicitly mapped into the iommu
1090 */
1091 if (tbl->set_bypass)
1092 tbl->set_bypass(tbl, false);
1093
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001094 return 0;
1095}
1096EXPORT_SYMBOL_GPL(iommu_take_ownership);
1097
1098void iommu_release_ownership(struct iommu_table *tbl)
1099{
1100 unsigned long sz = (tbl->it_size + 7) >> 3;
1101
1102 iommu_clear_tces_and_put_pages(tbl, tbl->it_offset, tbl->it_size);
1103 memset(tbl->it_map, 0, sz);
1104
1105 /* Restore bit#0 set by iommu_init_table() */
1106 if (tbl->it_offset == 0)
1107 set_bit(0, tbl->it_map);
Benjamin Herrenschmidtcd15b042014-02-11 11:32:38 +11001108
1109 /* The kernel owns the device now, we can restore the iommu bypass */
1110 if (tbl->set_bypass)
1111 tbl->set_bypass(tbl, true);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001112}
1113EXPORT_SYMBOL_GPL(iommu_release_ownership);
1114
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +11001115int iommu_add_device(struct device *dev)
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001116{
1117 struct iommu_table *tbl;
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001118
Gavin Shan763fe0a2014-08-06 17:10:16 +10001119 /*
1120 * The sysfs entries should be populated before
1121 * binding IOMMU group. If sysfs entries isn't
1122 * ready, we simply bail.
1123 */
1124 if (!device_is_registered(dev))
1125 return -ENOENT;
1126
1127 if (dev->iommu_group) {
1128 pr_debug("%s: Skipping device %s with iommu group %d\n",
1129 __func__, dev_name(dev),
1130 iommu_group_id(dev->iommu_group));
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001131 return -EBUSY;
1132 }
1133
1134 tbl = get_iommu_table_base(dev);
1135 if (!tbl || !tbl->it_group) {
Gavin Shan763fe0a2014-08-06 17:10:16 +10001136 pr_debug("%s: Skipping device %s with no tbl\n",
1137 __func__, dev_name(dev));
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001138 return 0;
1139 }
1140
Gavin Shan763fe0a2014-08-06 17:10:16 +10001141 pr_debug("%s: Adding %s to iommu group %d\n",
1142 __func__, dev_name(dev),
1143 iommu_group_id(tbl->it_group));
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001144
Alistair Poppled0847752013-12-09 18:17:03 +11001145 if (PAGE_SIZE < IOMMU_PAGE_SIZE(tbl)) {
Gavin Shan763fe0a2014-08-06 17:10:16 +10001146 pr_err("%s: Invalid IOMMU page size %lx (%lx) on %s\n",
1147 __func__, IOMMU_PAGE_SIZE(tbl),
1148 PAGE_SIZE, dev_name(dev));
Alistair Poppled0847752013-12-09 18:17:03 +11001149 return -EINVAL;
1150 }
1151
Gavin Shan763fe0a2014-08-06 17:10:16 +10001152 return iommu_group_add_device(tbl->it_group, dev);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001153}
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +11001154EXPORT_SYMBOL_GPL(iommu_add_device);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001155
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +11001156void iommu_del_device(struct device *dev)
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001157{
Gavin Shan0c4b9e22014-01-13 11:36:22 +08001158 /*
1159 * Some devices might not have IOMMU table and group
1160 * and we needn't detach them from the associated
1161 * IOMMU groups
1162 */
1163 if (!dev->iommu_group) {
1164 pr_debug("iommu_tce: skipping device %s with no tbl\n",
1165 dev_name(dev));
1166 return;
1167 }
1168
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001169 iommu_group_remove_device(dev);
1170}
Alexey Kardashevskiyd905c5d2013-11-21 17:43:14 +11001171EXPORT_SYMBOL_GPL(iommu_del_device);
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001172
Nishanth Aravamudan4ad04e52015-02-21 11:00:50 -08001173static int tce_iommu_bus_notifier(struct notifier_block *nb,
1174 unsigned long action, void *data)
1175{
1176 struct device *dev = data;
1177
1178 switch (action) {
1179 case BUS_NOTIFY_ADD_DEVICE:
1180 return iommu_add_device(dev);
1181 case BUS_NOTIFY_DEL_DEVICE:
1182 if (dev->iommu_group)
1183 iommu_del_device(dev);
1184 return 0;
1185 default:
1186 return 0;
1187 }
1188}
1189
1190static struct notifier_block tce_iommu_bus_nb = {
1191 .notifier_call = tce_iommu_bus_notifier,
1192};
1193
1194int __init tce_iommu_bus_notifier_init(void)
1195{
1196 bus_register_notifier(&pci_bus_type, &tce_iommu_bus_nb);
1197 return 0;
1198}
Alexey Kardashevskiy4e13c1a2013-05-21 13:33:09 +10001199#endif /* CONFIG_IOMMU_API */