]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm/mm/dma-mapping.c
Merge tag 'for-linus-20170825' of git://git.infradead.org/linux-mtd
[mirror_ubuntu-artful-kernel.git] / arch / arm / mm / dma-mapping.c
CommitLineData
1da177e4 1/*
0ddbccd1 2 * linux/arch/arm/mm/dma-mapping.c
1da177e4
LT
3 *
4 * Copyright (C) 2000-2004 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * DMA uncached mapping support.
11 */
11a5aa32 12#include <linux/bootmem.h>
1da177e4
LT
13#include <linux/module.h>
14#include <linux/mm.h>
36d0fd21 15#include <linux/genalloc.h>
5a0e3ad6 16#include <linux/gfp.h>
1da177e4
LT
17#include <linux/errno.h>
18#include <linux/list.h>
19#include <linux/init.h>
20#include <linux/device.h>
21#include <linux/dma-mapping.h>
c7909509 22#include <linux/dma-contiguous.h>
39af22a7 23#include <linux/highmem.h>
c7909509 24#include <linux/memblock.h>
99d1717d 25#include <linux/slab.h>
4ce63fcd 26#include <linux/iommu.h>
e9da6e99 27#include <linux/io.h>
4ce63fcd 28#include <linux/vmalloc.h>
158e8bfe 29#include <linux/sizes.h>
a254129e 30#include <linux/cma.h>
1da177e4 31
23759dc6 32#include <asm/memory.h>
43377453 33#include <asm/highmem.h>
1da177e4 34#include <asm/cacheflush.h>
1da177e4 35#include <asm/tlbflush.h>
99d1717d 36#include <asm/mach/arch.h>
4ce63fcd 37#include <asm/dma-iommu.h>
c7909509
MS
38#include <asm/mach/map.h>
39#include <asm/system_info.h>
40#include <asm/dma-contiguous.h>
37134cd5 41
1234e3fd 42#include "dma.h"
022ae537
RK
43#include "mm.h"
44
b4268676
RV
45struct arm_dma_alloc_args {
46 struct device *dev;
47 size_t size;
48 gfp_t gfp;
49 pgprot_t prot;
50 const void *caller;
51 bool want_vaddr;
f1270896 52 int coherent_flag;
b4268676
RV
53};
54
55struct arm_dma_free_args {
56 struct device *dev;
57 size_t size;
58 void *cpu_addr;
59 struct page *page;
60 bool want_vaddr;
61};
62
f1270896
GC
63#define NORMAL 0
64#define COHERENT 1
65
b4268676
RV
66struct arm_dma_allocator {
67 void *(*alloc)(struct arm_dma_alloc_args *args,
68 struct page **ret_page);
69 void (*free)(struct arm_dma_free_args *args);
70};
71
19e6e5e5
RV
72struct arm_dma_buffer {
73 struct list_head list;
74 void *virt;
b4268676 75 struct arm_dma_allocator *allocator;
19e6e5e5
RV
76};
77
78static LIST_HEAD(arm_dma_bufs);
79static DEFINE_SPINLOCK(arm_dma_bufs_lock);
80
81static struct arm_dma_buffer *arm_dma_buffer_find(void *virt)
82{
83 struct arm_dma_buffer *buf, *found = NULL;
84 unsigned long flags;
85
86 spin_lock_irqsave(&arm_dma_bufs_lock, flags);
87 list_for_each_entry(buf, &arm_dma_bufs, list) {
88 if (buf->virt == virt) {
89 list_del(&buf->list);
90 found = buf;
91 break;
92 }
93 }
94 spin_unlock_irqrestore(&arm_dma_bufs_lock, flags);
95 return found;
96}
97
15237e1f
MS
98/*
99 * The DMA API is built upon the notion of "buffer ownership". A buffer
100 * is either exclusively owned by the CPU (and therefore may be accessed
101 * by it) or exclusively owned by the DMA device. These helper functions
102 * represent the transitions between these two ownership states.
103 *
104 * Note, however, that on later ARMs, this notion does not work due to
105 * speculative prefetches. We model our approach on the assumption that
106 * the CPU does do speculative prefetches, which means we clean caches
107 * before transfers and delay cache invalidation until transfer completion.
108 *
15237e1f 109 */
51fde349 110static void __dma_page_cpu_to_dev(struct page *, unsigned long,
15237e1f 111 size_t, enum dma_data_direction);
51fde349 112static void __dma_page_dev_to_cpu(struct page *, unsigned long,
15237e1f
MS
113 size_t, enum dma_data_direction);
114
2dc6a016
MS
115/**
116 * arm_dma_map_page - map a portion of a page for streaming DMA
117 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
118 * @page: page that buffer resides in
119 * @offset: offset into page for start of buffer
120 * @size: size of buffer to map
121 * @dir: DMA transfer direction
122 *
123 * Ensure that any data held in the cache is appropriately discarded
124 * or written back.
125 *
126 * The device owns this memory once this call has completed. The CPU
127 * can regain ownership by calling dma_unmap_page().
128 */
51fde349 129static dma_addr_t arm_dma_map_page(struct device *dev, struct page *page,
2dc6a016 130 unsigned long offset, size_t size, enum dma_data_direction dir,
00085f1e 131 unsigned long attrs)
2dc6a016 132{
00085f1e 133 if ((attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
51fde349
MS
134 __dma_page_cpu_to_dev(page, offset, size, dir);
135 return pfn_to_dma(dev, page_to_pfn(page)) + offset;
2dc6a016
MS
136}
137
dd37e940
RH
138static dma_addr_t arm_coherent_dma_map_page(struct device *dev, struct page *page,
139 unsigned long offset, size_t size, enum dma_data_direction dir,
00085f1e 140 unsigned long attrs)
dd37e940
RH
141{
142 return pfn_to_dma(dev, page_to_pfn(page)) + offset;
143}
144
2dc6a016
MS
145/**
146 * arm_dma_unmap_page - unmap a buffer previously mapped through dma_map_page()
147 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
148 * @handle: DMA address of buffer
149 * @size: size of buffer (same as passed to dma_map_page)
150 * @dir: DMA transfer direction (same as passed to dma_map_page)
151 *
152 * Unmap a page streaming mode DMA translation. The handle and size
153 * must match what was provided in the previous dma_map_page() call.
154 * All other usages are undefined.
155 *
156 * After this call, reads by the CPU to the buffer are guaranteed to see
157 * whatever the device wrote there.
158 */
51fde349 159static void arm_dma_unmap_page(struct device *dev, dma_addr_t handle,
00085f1e 160 size_t size, enum dma_data_direction dir, unsigned long attrs)
2dc6a016 161{
00085f1e 162 if ((attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
51fde349
MS
163 __dma_page_dev_to_cpu(pfn_to_page(dma_to_pfn(dev, handle)),
164 handle & ~PAGE_MASK, size, dir);
2dc6a016
MS
165}
166
51fde349 167static void arm_dma_sync_single_for_cpu(struct device *dev,
2dc6a016
MS
168 dma_addr_t handle, size_t size, enum dma_data_direction dir)
169{
170 unsigned int offset = handle & (PAGE_SIZE - 1);
171 struct page *page = pfn_to_page(dma_to_pfn(dev, handle-offset));
dd37e940 172 __dma_page_dev_to_cpu(page, offset, size, dir);
2dc6a016
MS
173}
174
51fde349 175static void arm_dma_sync_single_for_device(struct device *dev,
2dc6a016
MS
176 dma_addr_t handle, size_t size, enum dma_data_direction dir)
177{
178 unsigned int offset = handle & (PAGE_SIZE - 1);
179 struct page *page = pfn_to_page(dma_to_pfn(dev, handle-offset));
dd37e940 180 __dma_page_cpu_to_dev(page, offset, size, dir);
2dc6a016
MS
181}
182
9eef8b8c
CH
183static int arm_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
184{
185 return dma_addr == ARM_MAPPING_ERROR;
186}
187
5299709d 188const struct dma_map_ops arm_dma_ops = {
f99d6034
MS
189 .alloc = arm_dma_alloc,
190 .free = arm_dma_free,
191 .mmap = arm_dma_mmap,
dc2832e1 192 .get_sgtable = arm_dma_get_sgtable,
2dc6a016
MS
193 .map_page = arm_dma_map_page,
194 .unmap_page = arm_dma_unmap_page,
195 .map_sg = arm_dma_map_sg,
196 .unmap_sg = arm_dma_unmap_sg,
197 .sync_single_for_cpu = arm_dma_sync_single_for_cpu,
198 .sync_single_for_device = arm_dma_sync_single_for_device,
199 .sync_sg_for_cpu = arm_dma_sync_sg_for_cpu,
200 .sync_sg_for_device = arm_dma_sync_sg_for_device,
9eef8b8c 201 .mapping_error = arm_dma_mapping_error,
418a7a7e 202 .dma_supported = arm_dma_supported,
2dc6a016
MS
203};
204EXPORT_SYMBOL(arm_dma_ops);
205
dd37e940 206static void *arm_coherent_dma_alloc(struct device *dev, size_t size,
00085f1e 207 dma_addr_t *handle, gfp_t gfp, unsigned long attrs);
dd37e940 208static void arm_coherent_dma_free(struct device *dev, size_t size, void *cpu_addr,
00085f1e 209 dma_addr_t handle, unsigned long attrs);
55af8a91
ML
210static int arm_coherent_dma_mmap(struct device *dev, struct vm_area_struct *vma,
211 void *cpu_addr, dma_addr_t dma_addr, size_t size,
00085f1e 212 unsigned long attrs);
dd37e940 213
5299709d 214const struct dma_map_ops arm_coherent_dma_ops = {
dd37e940
RH
215 .alloc = arm_coherent_dma_alloc,
216 .free = arm_coherent_dma_free,
55af8a91 217 .mmap = arm_coherent_dma_mmap,
dd37e940
RH
218 .get_sgtable = arm_dma_get_sgtable,
219 .map_page = arm_coherent_dma_map_page,
220 .map_sg = arm_dma_map_sg,
9eef8b8c 221 .mapping_error = arm_dma_mapping_error,
418a7a7e 222 .dma_supported = arm_dma_supported,
dd37e940
RH
223};
224EXPORT_SYMBOL(arm_coherent_dma_ops);
225
9f28cde0
RK
226static int __dma_supported(struct device *dev, u64 mask, bool warn)
227{
228 unsigned long max_dma_pfn;
229
230 /*
231 * If the mask allows for more memory than we can address,
232 * and we actually have that much memory, then we must
233 * indicate that DMA to this device is not supported.
234 */
235 if (sizeof(mask) != sizeof(dma_addr_t) &&
236 mask > (dma_addr_t)~0 &&
8bf1268f 237 dma_to_pfn(dev, ~0) < max_pfn - 1) {
9f28cde0
RK
238 if (warn) {
239 dev_warn(dev, "Coherent DMA mask %#llx is larger than dma_addr_t allows\n",
240 mask);
241 dev_warn(dev, "Driver did not use or check the return value from dma_set_coherent_mask()?\n");
242 }
243 return 0;
244 }
245
246 max_dma_pfn = min(max_pfn, arm_dma_pfn_limit);
247
248 /*
249 * Translate the device's DMA mask to a PFN limit. This
250 * PFN number includes the page which we can DMA to.
251 */
252 if (dma_to_pfn(dev, mask) < max_dma_pfn) {
253 if (warn)
254 dev_warn(dev, "Coherent DMA mask %#llx (pfn %#lx-%#lx) covers a smaller range of system memory than the DMA zone pfn 0x0-%#lx\n",
255 mask,
256 dma_to_pfn(dev, 0), dma_to_pfn(dev, mask) + 1,
257 max_dma_pfn + 1);
258 return 0;
259 }
260
261 return 1;
262}
263
ab6494f0
CM
264static u64 get_coherent_dma_mask(struct device *dev)
265{
4dcfa600 266 u64 mask = (u64)DMA_BIT_MASK(32);
ab6494f0
CM
267
268 if (dev) {
269 mask = dev->coherent_dma_mask;
270
271 /*
272 * Sanity check the DMA mask - it must be non-zero, and
273 * must be able to be satisfied by a DMA allocation.
274 */
275 if (mask == 0) {
276 dev_warn(dev, "coherent DMA mask is unset\n");
277 return 0;
278 }
279
9f28cde0 280 if (!__dma_supported(dev, mask, true))
ab6494f0 281 return 0;
ab6494f0 282 }
1da177e4 283
ab6494f0
CM
284 return mask;
285}
286
f1270896 287static void __dma_clear_buffer(struct page *page, size_t size, int coherent_flag)
c7909509 288{
c7909509
MS
289 /*
290 * Ensure that the allocated pages are zeroed, and that any data
291 * lurking in the kernel direct-mapped region is invalidated.
292 */
9848e48f
MS
293 if (PageHighMem(page)) {
294 phys_addr_t base = __pfn_to_phys(page_to_pfn(page));
295 phys_addr_t end = base + size;
296 while (size > 0) {
297 void *ptr = kmap_atomic(page);
298 memset(ptr, 0, PAGE_SIZE);
f1270896
GC
299 if (coherent_flag != COHERENT)
300 dmac_flush_range(ptr, ptr + PAGE_SIZE);
9848e48f
MS
301 kunmap_atomic(ptr);
302 page++;
303 size -= PAGE_SIZE;
304 }
f1270896
GC
305 if (coherent_flag != COHERENT)
306 outer_flush_range(base, end);
9848e48f
MS
307 } else {
308 void *ptr = page_address(page);
4ce63fcd 309 memset(ptr, 0, size);
f1270896
GC
310 if (coherent_flag != COHERENT) {
311 dmac_flush_range(ptr, ptr + size);
312 outer_flush_range(__pa(ptr), __pa(ptr) + size);
313 }
4ce63fcd 314 }
c7909509
MS
315}
316
7a9a32a9
RK
317/*
318 * Allocate a DMA buffer for 'dev' of size 'size' using the
319 * specified gfp mask. Note that 'size' must be page aligned.
320 */
f1270896
GC
321static struct page *__dma_alloc_buffer(struct device *dev, size_t size,
322 gfp_t gfp, int coherent_flag)
7a9a32a9
RK
323{
324 unsigned long order = get_order(size);
325 struct page *page, *p, *e;
7a9a32a9
RK
326
327 page = alloc_pages(gfp, order);
328 if (!page)
329 return NULL;
330
331 /*
332 * Now split the huge page and free the excess pages
333 */
334 split_page(page, order);
335 for (p = page + (size >> PAGE_SHIFT), e = page + (1 << order); p < e; p++)
336 __free_page(p);
337
f1270896 338 __dma_clear_buffer(page, size, coherent_flag);
7a9a32a9
RK
339
340 return page;
341}
342
343/*
344 * Free a DMA buffer. 'size' must be page aligned.
345 */
346static void __dma_free_buffer(struct page *page, size_t size)
347{
348 struct page *e = page + (size >> PAGE_SHIFT);
349
350 while (page < e) {
351 __free_page(page);
352 page++;
353 }
354}
355
e9da6e99 356static void *__alloc_from_contiguous(struct device *dev, size_t size,
9848e48f 357 pgprot_t prot, struct page **ret_page,
f1270896 358 const void *caller, bool want_vaddr,
712c604d 359 int coherent_flag, gfp_t gfp);
99d1717d 360
e9da6e99
MS
361static void *__alloc_remap_buffer(struct device *dev, size_t size, gfp_t gfp,
362 pgprot_t prot, struct page **ret_page,
6e8266e3 363 const void *caller, bool want_vaddr);
99d1717d 364
e9da6e99
MS
365static void *
366__dma_alloc_remap(struct page *page, size_t size, gfp_t gfp, pgprot_t prot,
367 const void *caller)
99d1717d 368{
e9da6e99
MS
369 /*
370 * DMA allocation can be mapped to user space, so lets
371 * set VM_USERMAP flags too.
372 */
513510dd
LA
373 return dma_common_contiguous_remap(page, size,
374 VM_ARM_DMA_CONSISTENT | VM_USERMAP,
375 prot, caller);
99d1717d 376}
1da177e4 377
e9da6e99 378static void __dma_free_remap(void *cpu_addr, size_t size)
88c58f3b 379{
513510dd
LA
380 dma_common_free_remap(cpu_addr, size,
381 VM_ARM_DMA_CONSISTENT | VM_USERMAP);
88c58f3b 382}
88c58f3b 383
6e5267aa 384#define DEFAULT_DMA_COHERENT_POOL_SIZE SZ_256K
36d0fd21 385static struct gen_pool *atomic_pool;
6e5267aa 386
36d0fd21 387static size_t atomic_pool_size = DEFAULT_DMA_COHERENT_POOL_SIZE;
c7909509
MS
388
389static int __init early_coherent_pool(char *p)
390{
36d0fd21 391 atomic_pool_size = memparse(p, &p);
c7909509
MS
392 return 0;
393}
394early_param("coherent_pool", early_coherent_pool);
395
6e5267aa
MS
396void __init init_dma_coherent_pool_size(unsigned long size)
397{
398 /*
399 * Catch any attempt to set the pool size too late.
400 */
36d0fd21 401 BUG_ON(atomic_pool);
6e5267aa
MS
402
403 /*
404 * Set architecture specific coherent pool size only if
405 * it has not been changed by kernel command line parameter.
406 */
36d0fd21
LA
407 if (atomic_pool_size == DEFAULT_DMA_COHERENT_POOL_SIZE)
408 atomic_pool_size = size;
6e5267aa
MS
409}
410
c7909509
MS
411/*
412 * Initialise the coherent pool for atomic allocations.
413 */
e9da6e99 414static int __init atomic_pool_init(void)
c7909509 415{
71b55663 416 pgprot_t prot = pgprot_dmacoherent(PAGE_KERNEL);
9d1400cf 417 gfp_t gfp = GFP_KERNEL | GFP_DMA;
c7909509
MS
418 struct page *page;
419 void *ptr;
c7909509 420
36d0fd21
LA
421 atomic_pool = gen_pool_create(PAGE_SHIFT, -1);
422 if (!atomic_pool)
423 goto out;
f1270896
GC
424 /*
425 * The atomic pool is only used for non-coherent allocations
426 * so we must pass NORMAL for coherent_flag.
427 */
e464ef16 428 if (dev_get_cma_area(NULL))
36d0fd21 429 ptr = __alloc_from_contiguous(NULL, atomic_pool_size, prot,
712c604d
LS
430 &page, atomic_pool_init, true, NORMAL,
431 GFP_KERNEL);
e9da6e99 432 else
36d0fd21 433 ptr = __alloc_remap_buffer(NULL, atomic_pool_size, gfp, prot,
6e8266e3 434 &page, atomic_pool_init, true);
c7909509 435 if (ptr) {
36d0fd21
LA
436 int ret;
437
438 ret = gen_pool_add_virt(atomic_pool, (unsigned long)ptr,
439 page_to_phys(page),
440 atomic_pool_size, -1);
441 if (ret)
442 goto destroy_genpool;
443
444 gen_pool_set_algo(atomic_pool,
445 gen_pool_first_fit_order_align,
446 (void *)PAGE_SHIFT);
bf31c5e0 447 pr_info("DMA: preallocated %zu KiB pool for atomic coherent allocations\n",
36d0fd21 448 atomic_pool_size / 1024);
c7909509
MS
449 return 0;
450 }
ec10665c 451
36d0fd21
LA
452destroy_genpool:
453 gen_pool_destroy(atomic_pool);
454 atomic_pool = NULL;
455out:
bf31c5e0 456 pr_err("DMA: failed to allocate %zu KiB pool for atomic coherent allocation\n",
36d0fd21 457 atomic_pool_size / 1024);
c7909509
MS
458 return -ENOMEM;
459}
460/*
461 * CMA is activated by core_initcall, so we must be called after it.
462 */
e9da6e99 463postcore_initcall(atomic_pool_init);
c7909509
MS
464
465struct dma_contig_early_reserve {
466 phys_addr_t base;
467 unsigned long size;
468};
469
470static struct dma_contig_early_reserve dma_mmu_remap[MAX_CMA_AREAS] __initdata;
471
472static int dma_mmu_remap_num __initdata;
473
474void __init dma_contiguous_early_fixup(phys_addr_t base, unsigned long size)
475{
476 dma_mmu_remap[dma_mmu_remap_num].base = base;
477 dma_mmu_remap[dma_mmu_remap_num].size = size;
478 dma_mmu_remap_num++;
479}
480
481void __init dma_contiguous_remap(void)
482{
483 int i;
484 for (i = 0; i < dma_mmu_remap_num; i++) {
485 phys_addr_t start = dma_mmu_remap[i].base;
486 phys_addr_t end = start + dma_mmu_remap[i].size;
487 struct map_desc map;
488 unsigned long addr;
489
490 if (end > arm_lowmem_limit)
491 end = arm_lowmem_limit;
492 if (start >= end)
39f78e70 493 continue;
c7909509
MS
494
495 map.pfn = __phys_to_pfn(start);
496 map.virtual = __phys_to_virt(start);
497 map.length = end - start;
498 map.type = MT_MEMORY_DMA_READY;
499
500 /*
6b076991
RK
501 * Clear previous low-memory mapping to ensure that the
502 * TLB does not see any conflicting entries, then flush
503 * the TLB of the old entries before creating new mappings.
504 *
505 * This ensures that any speculatively loaded TLB entries
506 * (even though they may be rare) can not cause any problems,
507 * and ensures that this code is architecturally compliant.
c7909509
MS
508 */
509 for (addr = __phys_to_virt(start); addr < __phys_to_virt(end);
61f6c7a4 510 addr += PMD_SIZE)
c7909509
MS
511 pmd_clear(pmd_off_k(addr));
512
6b076991
RK
513 flush_tlb_kernel_range(__phys_to_virt(start),
514 __phys_to_virt(end));
515
c7909509
MS
516 iotable_init(&map, 1);
517 }
518}
519
c7909509
MS
520static int __dma_update_pte(pte_t *pte, pgtable_t token, unsigned long addr,
521 void *data)
522{
523 struct page *page = virt_to_page(addr);
524 pgprot_t prot = *(pgprot_t *)data;
525
526 set_pte_ext(pte, mk_pte(page, prot), 0);
527 return 0;
528}
529
530static void __dma_remap(struct page *page, size_t size, pgprot_t prot)
531{
532 unsigned long start = (unsigned long) page_address(page);
533 unsigned end = start + size;
534
535 apply_to_page_range(&init_mm, start, size, __dma_update_pte, &prot);
c7909509
MS
536 flush_tlb_kernel_range(start, end);
537}
538
539static void *__alloc_remap_buffer(struct device *dev, size_t size, gfp_t gfp,
540 pgprot_t prot, struct page **ret_page,
6e8266e3 541 const void *caller, bool want_vaddr)
c7909509
MS
542{
543 struct page *page;
6e8266e3 544 void *ptr = NULL;
f1270896
GC
545 /*
546 * __alloc_remap_buffer is only called when the device is
547 * non-coherent
548 */
549 page = __dma_alloc_buffer(dev, size, gfp, NORMAL);
c7909509
MS
550 if (!page)
551 return NULL;
6e8266e3
CC
552 if (!want_vaddr)
553 goto out;
c7909509
MS
554
555 ptr = __dma_alloc_remap(page, size, gfp, prot, caller);
556 if (!ptr) {
557 __dma_free_buffer(page, size);
558 return NULL;
559 }
560
6e8266e3 561 out:
c7909509
MS
562 *ret_page = page;
563 return ptr;
564}
565
e9da6e99 566static void *__alloc_from_pool(size_t size, struct page **ret_page)
c7909509 567{
36d0fd21 568 unsigned long val;
e9da6e99 569 void *ptr = NULL;
c7909509 570
36d0fd21 571 if (!atomic_pool) {
e9da6e99 572 WARN(1, "coherent pool not initialised!\n");
c7909509
MS
573 return NULL;
574 }
575
36d0fd21
LA
576 val = gen_pool_alloc(atomic_pool, size);
577 if (val) {
578 phys_addr_t phys = gen_pool_virt_to_phys(atomic_pool, val);
579
580 *ret_page = phys_to_page(phys);
581 ptr = (void *)val;
c7909509 582 }
e9da6e99
MS
583
584 return ptr;
c7909509
MS
585}
586
21d0a759
HD
587static bool __in_atomic_pool(void *start, size_t size)
588{
36d0fd21 589 return addr_in_gen_pool(atomic_pool, (unsigned long)start, size);
21d0a759
HD
590}
591
e9da6e99 592static int __free_from_pool(void *start, size_t size)
c7909509 593{
21d0a759 594 if (!__in_atomic_pool(start, size))
c7909509
MS
595 return 0;
596
36d0fd21 597 gen_pool_free(atomic_pool, (unsigned long)start, size);
e9da6e99 598
c7909509
MS
599 return 1;
600}
601
602static void *__alloc_from_contiguous(struct device *dev, size_t size,
9848e48f 603 pgprot_t prot, struct page **ret_page,
f1270896 604 const void *caller, bool want_vaddr,
712c604d 605 int coherent_flag, gfp_t gfp)
c7909509
MS
606{
607 unsigned long order = get_order(size);
608 size_t count = size >> PAGE_SHIFT;
609 struct page *page;
6e8266e3 610 void *ptr = NULL;
c7909509 611
712c604d 612 page = dma_alloc_from_contiguous(dev, count, order, gfp);
c7909509
MS
613 if (!page)
614 return NULL;
615
f1270896 616 __dma_clear_buffer(page, size, coherent_flag);
c7909509 617
6e8266e3
CC
618 if (!want_vaddr)
619 goto out;
620
9848e48f
MS
621 if (PageHighMem(page)) {
622 ptr = __dma_alloc_remap(page, size, GFP_KERNEL, prot, caller);
623 if (!ptr) {
624 dma_release_from_contiguous(dev, page, count);
625 return NULL;
626 }
627 } else {
628 __dma_remap(page, size, prot);
629 ptr = page_address(page);
630 }
6e8266e3
CC
631
632 out:
c7909509 633 *ret_page = page;
9848e48f 634 return ptr;
c7909509
MS
635}
636
637static void __free_from_contiguous(struct device *dev, struct page *page,
6e8266e3 638 void *cpu_addr, size_t size, bool want_vaddr)
c7909509 639{
6e8266e3
CC
640 if (want_vaddr) {
641 if (PageHighMem(page))
642 __dma_free_remap(cpu_addr, size);
643 else
644 __dma_remap(page, size, PAGE_KERNEL);
645 }
c7909509
MS
646 dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT);
647}
648
00085f1e 649static inline pgprot_t __get_dma_pgprot(unsigned long attrs, pgprot_t prot)
f99d6034 650{
00085f1e
KK
651 prot = (attrs & DMA_ATTR_WRITE_COMBINE) ?
652 pgprot_writecombine(prot) :
653 pgprot_dmacoherent(prot);
f99d6034
MS
654 return prot;
655}
656
c7909509
MS
657static void *__alloc_simple_buffer(struct device *dev, size_t size, gfp_t gfp,
658 struct page **ret_page)
ab6494f0 659{
c7909509 660 struct page *page;
f1270896
GC
661 /* __alloc_simple_buffer is only called when the device is coherent */
662 page = __dma_alloc_buffer(dev, size, gfp, COHERENT);
c7909509
MS
663 if (!page)
664 return NULL;
665
666 *ret_page = page;
667 return page_address(page);
668}
669
b4268676
RV
670static void *simple_allocator_alloc(struct arm_dma_alloc_args *args,
671 struct page **ret_page)
672{
673 return __alloc_simple_buffer(args->dev, args->size, args->gfp,
674 ret_page);
675}
c7909509 676
b4268676
RV
677static void simple_allocator_free(struct arm_dma_free_args *args)
678{
679 __dma_free_buffer(args->page, args->size);
680}
681
682static struct arm_dma_allocator simple_allocator = {
683 .alloc = simple_allocator_alloc,
684 .free = simple_allocator_free,
685};
686
687static void *cma_allocator_alloc(struct arm_dma_alloc_args *args,
688 struct page **ret_page)
689{
690 return __alloc_from_contiguous(args->dev, args->size, args->prot,
691 ret_page, args->caller,
712c604d
LS
692 args->want_vaddr, args->coherent_flag,
693 args->gfp);
b4268676
RV
694}
695
696static void cma_allocator_free(struct arm_dma_free_args *args)
697{
698 __free_from_contiguous(args->dev, args->page, args->cpu_addr,
699 args->size, args->want_vaddr);
700}
701
702static struct arm_dma_allocator cma_allocator = {
703 .alloc = cma_allocator_alloc,
704 .free = cma_allocator_free,
705};
706
707static void *pool_allocator_alloc(struct arm_dma_alloc_args *args,
708 struct page **ret_page)
709{
710 return __alloc_from_pool(args->size, ret_page);
711}
712
713static void pool_allocator_free(struct arm_dma_free_args *args)
714{
715 __free_from_pool(args->cpu_addr, args->size);
716}
717
718static struct arm_dma_allocator pool_allocator = {
719 .alloc = pool_allocator_alloc,
720 .free = pool_allocator_free,
721};
722
723static void *remap_allocator_alloc(struct arm_dma_alloc_args *args,
724 struct page **ret_page)
725{
726 return __alloc_remap_buffer(args->dev, args->size, args->gfp,
727 args->prot, ret_page, args->caller,
728 args->want_vaddr);
729}
730
731static void remap_allocator_free(struct arm_dma_free_args *args)
732{
733 if (args->want_vaddr)
734 __dma_free_remap(args->cpu_addr, args->size);
735
736 __dma_free_buffer(args->page, args->size);
737}
738
739static struct arm_dma_allocator remap_allocator = {
740 .alloc = remap_allocator_alloc,
741 .free = remap_allocator_free,
742};
c7909509
MS
743
744static void *__dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
6e8266e3 745 gfp_t gfp, pgprot_t prot, bool is_coherent,
00085f1e 746 unsigned long attrs, const void *caller)
c7909509
MS
747{
748 u64 mask = get_coherent_dma_mask(dev);
3dd7ea92 749 struct page *page = NULL;
31ebf944 750 void *addr;
b4268676 751 bool allowblock, cma;
19e6e5e5 752 struct arm_dma_buffer *buf;
b4268676
RV
753 struct arm_dma_alloc_args args = {
754 .dev = dev,
755 .size = PAGE_ALIGN(size),
756 .gfp = gfp,
757 .prot = prot,
758 .caller = caller,
00085f1e 759 .want_vaddr = ((attrs & DMA_ATTR_NO_KERNEL_MAPPING) == 0),
f1270896 760 .coherent_flag = is_coherent ? COHERENT : NORMAL,
b4268676 761 };
ab6494f0 762
c7909509
MS
763#ifdef CONFIG_DMA_API_DEBUG
764 u64 limit = (mask + 1) & ~mask;
765 if (limit && size >= limit) {
766 dev_warn(dev, "coherent allocation too big (requested %#x mask %#llx)\n",
767 size, mask);
768 return NULL;
769 }
770#endif
771
772 if (!mask)
773 return NULL;
774
9c18fcf7
AC
775 buf = kzalloc(sizeof(*buf),
776 gfp & ~(__GFP_DMA | __GFP_DMA32 | __GFP_HIGHMEM));
19e6e5e5
RV
777 if (!buf)
778 return NULL;
779
c7909509
MS
780 if (mask < 0xffffffffULL)
781 gfp |= GFP_DMA;
782
ea2e7057
SB
783 /*
784 * Following is a work-around (a.k.a. hack) to prevent pages
785 * with __GFP_COMP being passed to split_page() which cannot
786 * handle them. The real problem is that this flag probably
787 * should be 0 on ARM as it is not supported on this
788 * platform; see CONFIG_HUGETLBFS.
789 */
790 gfp &= ~(__GFP_COMP);
b4268676 791 args.gfp = gfp;
ea2e7057 792
9eef8b8c 793 *handle = ARM_MAPPING_ERROR;
b4268676
RV
794 allowblock = gfpflags_allow_blocking(gfp);
795 cma = allowblock ? dev_get_cma_area(dev) : false;
796
797 if (cma)
798 buf->allocator = &cma_allocator;
1655cf88 799 else if (is_coherent)
b4268676
RV
800 buf->allocator = &simple_allocator;
801 else if (allowblock)
802 buf->allocator = &remap_allocator;
31ebf944 803 else
b4268676
RV
804 buf->allocator = &pool_allocator;
805
806 addr = buf->allocator->alloc(&args, &page);
695ae0af 807
19e6e5e5
RV
808 if (page) {
809 unsigned long flags;
810
9eedd963 811 *handle = pfn_to_dma(dev, page_to_pfn(page));
b4268676 812 buf->virt = args.want_vaddr ? addr : page;
19e6e5e5
RV
813
814 spin_lock_irqsave(&arm_dma_bufs_lock, flags);
815 list_add(&buf->list, &arm_dma_bufs);
816 spin_unlock_irqrestore(&arm_dma_bufs_lock, flags);
817 } else {
818 kfree(buf);
819 }
695ae0af 820
b4268676 821 return args.want_vaddr ? addr : page;
31ebf944 822}
1da177e4
LT
823
824/*
825 * Allocate DMA-coherent memory space and return both the kernel remapped
826 * virtual and bus address for that space.
827 */
f99d6034 828void *arm_dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
00085f1e 829 gfp_t gfp, unsigned long attrs)
1da177e4 830{
0ea1ec71 831 pgprot_t prot = __get_dma_pgprot(attrs, PAGE_KERNEL);
1fe53268 832
dd37e940 833 return __dma_alloc(dev, size, handle, gfp, prot, false,
6e8266e3 834 attrs, __builtin_return_address(0));
dd37e940
RH
835}
836
837static void *arm_coherent_dma_alloc(struct device *dev, size_t size,
00085f1e 838 dma_addr_t *handle, gfp_t gfp, unsigned long attrs)
dd37e940 839{
21caf3a7 840 return __dma_alloc(dev, size, handle, gfp, PAGE_KERNEL, true,
6e8266e3 841 attrs, __builtin_return_address(0));
1da177e4 842}
1da177e4 843
55af8a91 844static int __arm_dma_mmap(struct device *dev, struct vm_area_struct *vma,
f99d6034 845 void *cpu_addr, dma_addr_t dma_addr, size_t size,
00085f1e 846 unsigned long attrs)
1da177e4 847{
1655cf88 848 int ret;
50262a4b
MS
849 unsigned long nr_vma_pages = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
850 unsigned long nr_pages = PAGE_ALIGN(size) >> PAGE_SHIFT;
c7909509 851 unsigned long pfn = dma_to_pfn(dev, dma_addr);
50262a4b
MS
852 unsigned long off = vma->vm_pgoff;
853
43fc509c 854 if (dma_mmap_from_dev_coherent(dev, vma, cpu_addr, size, &ret))
47142f07
MS
855 return ret;
856
50262a4b
MS
857 if (off < nr_pages && nr_vma_pages <= (nr_pages - off)) {
858 ret = remap_pfn_range(vma, vma->vm_start,
859 pfn + off,
860 vma->vm_end - vma->vm_start,
861 vma->vm_page_prot);
862 }
1da177e4
LT
863
864 return ret;
865}
866
55af8a91
ML
867/*
868 * Create userspace mapping for the DMA-coherent memory.
869 */
870static int arm_coherent_dma_mmap(struct device *dev, struct vm_area_struct *vma,
871 void *cpu_addr, dma_addr_t dma_addr, size_t size,
00085f1e 872 unsigned long attrs)
55af8a91
ML
873{
874 return __arm_dma_mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
875}
876
877int arm_dma_mmap(struct device *dev, struct vm_area_struct *vma,
878 void *cpu_addr, dma_addr_t dma_addr, size_t size,
00085f1e 879 unsigned long attrs)
55af8a91 880{
55af8a91 881 vma->vm_page_prot = __get_dma_pgprot(attrs, vma->vm_page_prot);
55af8a91
ML
882 return __arm_dma_mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
883}
884
1da177e4 885/*
c7909509 886 * Free a buffer as defined by the above mapping.
1da177e4 887 */
dd37e940 888static void __arm_dma_free(struct device *dev, size_t size, void *cpu_addr,
00085f1e 889 dma_addr_t handle, unsigned long attrs,
dd37e940 890 bool is_coherent)
1da177e4 891{
c7909509 892 struct page *page = pfn_to_page(dma_to_pfn(dev, handle));
19e6e5e5 893 struct arm_dma_buffer *buf;
b4268676
RV
894 struct arm_dma_free_args args = {
895 .dev = dev,
896 .size = PAGE_ALIGN(size),
897 .cpu_addr = cpu_addr,
898 .page = page,
00085f1e 899 .want_vaddr = ((attrs & DMA_ATTR_NO_KERNEL_MAPPING) == 0),
b4268676 900 };
19e6e5e5
RV
901
902 buf = arm_dma_buffer_find(cpu_addr);
903 if (WARN(!buf, "Freeing invalid buffer %p\n", cpu_addr))
904 return;
5edf71ae 905
b4268676 906 buf->allocator->free(&args);
19e6e5e5 907 kfree(buf);
1da177e4 908}
afd1a321 909
dd37e940 910void arm_dma_free(struct device *dev, size_t size, void *cpu_addr,
00085f1e 911 dma_addr_t handle, unsigned long attrs)
dd37e940
RH
912{
913 __arm_dma_free(dev, size, cpu_addr, handle, attrs, false);
914}
915
916static void arm_coherent_dma_free(struct device *dev, size_t size, void *cpu_addr,
00085f1e 917 dma_addr_t handle, unsigned long attrs)
dd37e940
RH
918{
919 __arm_dma_free(dev, size, cpu_addr, handle, attrs, true);
920}
921
916a008b
RK
922/*
923 * The whole dma_get_sgtable() idea is fundamentally unsafe - it seems
924 * that the intention is to allow exporting memory allocated via the
925 * coherent DMA APIs through the dma_buf API, which only accepts a
926 * scattertable. This presents a couple of problems:
927 * 1. Not all memory allocated via the coherent DMA APIs is backed by
928 * a struct page
929 * 2. Passing coherent DMA memory into the streaming APIs is not allowed
930 * as we will try to flush the memory through a different alias to that
931 * actually being used (and the flushes are redundant.)
932 */
dc2832e1
MS
933int arm_dma_get_sgtable(struct device *dev, struct sg_table *sgt,
934 void *cpu_addr, dma_addr_t handle, size_t size,
00085f1e 935 unsigned long attrs)
dc2832e1 936{
916a008b
RK
937 unsigned long pfn = dma_to_pfn(dev, handle);
938 struct page *page;
dc2832e1
MS
939 int ret;
940
916a008b
RK
941 /* If the PFN is not valid, we do not have a struct page */
942 if (!pfn_valid(pfn))
943 return -ENXIO;
944
945 page = pfn_to_page(pfn);
946
dc2832e1
MS
947 ret = sg_alloc_table(sgt, 1, GFP_KERNEL);
948 if (unlikely(ret))
949 return ret;
950
951 sg_set_page(sgt->sgl, page, PAGE_ALIGN(size), 0);
952 return 0;
953}
954
4ea0d737 955static void dma_cache_maint_page(struct page *page, unsigned long offset,
a9c9147e
RK
956 size_t size, enum dma_data_direction dir,
957 void (*op)(const void *, size_t, int))
43377453 958{
15653371
RK
959 unsigned long pfn;
960 size_t left = size;
961
962 pfn = page_to_pfn(page) + offset / PAGE_SIZE;
963 offset %= PAGE_SIZE;
964
43377453
NP
965 /*
966 * A single sg entry may refer to multiple physically contiguous
967 * pages. But we still need to process highmem pages individually.
968 * If highmem is not configured then the bulk of this loop gets
969 * optimized out.
970 */
43377453
NP
971 do {
972 size_t len = left;
93f1d629
RK
973 void *vaddr;
974
15653371
RK
975 page = pfn_to_page(pfn);
976
93f1d629 977 if (PageHighMem(page)) {
15653371 978 if (len + offset > PAGE_SIZE)
93f1d629 979 len = PAGE_SIZE - offset;
dd0f67f4
JK
980
981 if (cache_is_vipt_nonaliasing()) {
39af22a7 982 vaddr = kmap_atomic(page);
7e5a69e8 983 op(vaddr + offset, len, dir);
39af22a7 984 kunmap_atomic(vaddr);
dd0f67f4
JK
985 } else {
986 vaddr = kmap_high_get(page);
987 if (vaddr) {
988 op(vaddr + offset, len, dir);
989 kunmap_high(page);
990 }
43377453 991 }
93f1d629
RK
992 } else {
993 vaddr = page_address(page) + offset;
a9c9147e 994 op(vaddr, len, dir);
43377453 995 }
43377453 996 offset = 0;
15653371 997 pfn++;
43377453
NP
998 left -= len;
999 } while (left);
1000}
4ea0d737 1001
51fde349
MS
1002/*
1003 * Make an area consistent for devices.
1004 * Note: Drivers should NOT use this function directly, as it will break
1005 * platforms with CONFIG_DMABOUNCE.
1006 * Use the driver DMA support - see dma-mapping.h (dma_sync_*)
1007 */
1008static void __dma_page_cpu_to_dev(struct page *page, unsigned long off,
4ea0d737
RK
1009 size_t size, enum dma_data_direction dir)
1010{
2161c248 1011 phys_addr_t paddr;
65af191a 1012
a9c9147e 1013 dma_cache_maint_page(page, off, size, dir, dmac_map_area);
65af191a
RK
1014
1015 paddr = page_to_phys(page) + off;
2ffe2da3
RK
1016 if (dir == DMA_FROM_DEVICE) {
1017 outer_inv_range(paddr, paddr + size);
1018 } else {
1019 outer_clean_range(paddr, paddr + size);
1020 }
1021 /* FIXME: non-speculating: flush on bidirectional mappings? */
4ea0d737 1022}
4ea0d737 1023
51fde349 1024static void __dma_page_dev_to_cpu(struct page *page, unsigned long off,
4ea0d737
RK
1025 size_t size, enum dma_data_direction dir)
1026{
2161c248 1027 phys_addr_t paddr = page_to_phys(page) + off;
2ffe2da3
RK
1028
1029 /* FIXME: non-speculating: not required */
deace4a6
RK
1030 /* in any case, don't bother invalidating if DMA to device */
1031 if (dir != DMA_TO_DEVICE) {
2ffe2da3
RK
1032 outer_inv_range(paddr, paddr + size);
1033
deace4a6
RK
1034 dma_cache_maint_page(page, off, size, dir, dmac_unmap_area);
1035 }
c0177800
CM
1036
1037 /*
b2a234ed 1038 * Mark the D-cache clean for these pages to avoid extra flushing.
c0177800 1039 */
b2a234ed
ML
1040 if (dir != DMA_TO_DEVICE && size >= PAGE_SIZE) {
1041 unsigned long pfn;
1042 size_t left = size;
1043
1044 pfn = page_to_pfn(page) + off / PAGE_SIZE;
1045 off %= PAGE_SIZE;
1046 if (off) {
1047 pfn++;
1048 left -= PAGE_SIZE - off;
1049 }
1050 while (left >= PAGE_SIZE) {
1051 page = pfn_to_page(pfn++);
1052 set_bit(PG_dcache_clean, &page->flags);
1053 left -= PAGE_SIZE;
1054 }
1055 }
4ea0d737 1056}
43377453 1057
afd1a321 1058/**
2a550e73 1059 * arm_dma_map_sg - map a set of SG buffers for streaming mode DMA
afd1a321
RK
1060 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1061 * @sg: list of buffers
1062 * @nents: number of buffers to map
1063 * @dir: DMA transfer direction
1064 *
1065 * Map a set of buffers described by scatterlist in streaming mode for DMA.
1066 * This is the scatter-gather version of the dma_map_single interface.
1067 * Here the scatter gather list elements are each tagged with the
1068 * appropriate dma address and length. They are obtained via
1069 * sg_dma_{address,length}.
1070 *
1071 * Device ownership issues as mentioned for dma_map_single are the same
1072 * here.
1073 */
2dc6a016 1074int arm_dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
00085f1e 1075 enum dma_data_direction dir, unsigned long attrs)
afd1a321 1076{
5299709d 1077 const struct dma_map_ops *ops = get_dma_ops(dev);
afd1a321 1078 struct scatterlist *s;
01135d92 1079 int i, j;
afd1a321
RK
1080
1081 for_each_sg(sg, s, nents, i) {
4ce63fcd
MS
1082#ifdef CONFIG_NEED_SG_DMA_LENGTH
1083 s->dma_length = s->length;
1084#endif
2a550e73
MS
1085 s->dma_address = ops->map_page(dev, sg_page(s), s->offset,
1086 s->length, dir, attrs);
01135d92
RK
1087 if (dma_mapping_error(dev, s->dma_address))
1088 goto bad_mapping;
afd1a321 1089 }
afd1a321 1090 return nents;
01135d92
RK
1091
1092 bad_mapping:
1093 for_each_sg(sg, s, i, j)
2a550e73 1094 ops->unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir, attrs);
01135d92 1095 return 0;
afd1a321 1096}
afd1a321
RK
1097
1098/**
2a550e73 1099 * arm_dma_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
afd1a321
RK
1100 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1101 * @sg: list of buffers
0adfca6f 1102 * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
afd1a321
RK
1103 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1104 *
1105 * Unmap a set of streaming mode DMA translations. Again, CPU access
1106 * rules concerning calls here are the same as for dma_unmap_single().
1107 */
2dc6a016 1108void arm_dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
00085f1e 1109 enum dma_data_direction dir, unsigned long attrs)
afd1a321 1110{
5299709d 1111 const struct dma_map_ops *ops = get_dma_ops(dev);
01135d92 1112 struct scatterlist *s;
01135d92 1113
01135d92 1114 int i;
24056f52 1115
01135d92 1116 for_each_sg(sg, s, nents, i)
2a550e73 1117 ops->unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir, attrs);
afd1a321 1118}
afd1a321
RK
1119
1120/**
2a550e73 1121 * arm_dma_sync_sg_for_cpu
afd1a321
RK
1122 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1123 * @sg: list of buffers
1124 * @nents: number of buffers to map (returned from dma_map_sg)
1125 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1126 */
2dc6a016 1127void arm_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
afd1a321
RK
1128 int nents, enum dma_data_direction dir)
1129{
5299709d 1130 const struct dma_map_ops *ops = get_dma_ops(dev);
afd1a321
RK
1131 struct scatterlist *s;
1132 int i;
1133
2a550e73
MS
1134 for_each_sg(sg, s, nents, i)
1135 ops->sync_single_for_cpu(dev, sg_dma_address(s), s->length,
1136 dir);
afd1a321 1137}
afd1a321
RK
1138
1139/**
2a550e73 1140 * arm_dma_sync_sg_for_device
afd1a321
RK
1141 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1142 * @sg: list of buffers
1143 * @nents: number of buffers to map (returned from dma_map_sg)
1144 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1145 */
2dc6a016 1146void arm_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
afd1a321
RK
1147 int nents, enum dma_data_direction dir)
1148{
5299709d 1149 const struct dma_map_ops *ops = get_dma_ops(dev);
afd1a321
RK
1150 struct scatterlist *s;
1151 int i;
1152
2a550e73
MS
1153 for_each_sg(sg, s, nents, i)
1154 ops->sync_single_for_device(dev, sg_dma_address(s), s->length,
1155 dir);
afd1a321 1156}
24056f52 1157
022ae537
RK
1158/*
1159 * Return whether the given device DMA address mask can be supported
1160 * properly. For example, if your device can only drive the low 24-bits
1161 * during bus mastering, then you would pass 0x00ffffff as the mask
1162 * to this function.
1163 */
418a7a7e 1164int arm_dma_supported(struct device *dev, u64 mask)
022ae537 1165{
9f28cde0 1166 return __dma_supported(dev, mask, false);
022ae537 1167}
022ae537 1168
24056f52
RK
1169#define PREALLOC_DMA_DEBUG_ENTRIES 4096
1170
1171static int __init dma_debug_do_init(void)
1172{
1173 dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
1174 return 0;
1175}
256ff1cf 1176core_initcall(dma_debug_do_init);
4ce63fcd
MS
1177
1178#ifdef CONFIG_ARM_DMA_USE_IOMMU
1179
7d2822df
S
1180static int __dma_info_to_prot(enum dma_data_direction dir, unsigned long attrs)
1181{
1182 int prot = 0;
1183
1184 if (attrs & DMA_ATTR_PRIVILEGED)
1185 prot |= IOMMU_PRIV;
1186
1187 switch (dir) {
1188 case DMA_BIDIRECTIONAL:
1189 return prot | IOMMU_READ | IOMMU_WRITE;
1190 case DMA_TO_DEVICE:
1191 return prot | IOMMU_READ;
1192 case DMA_FROM_DEVICE:
1193 return prot | IOMMU_WRITE;
1194 default:
1195 return prot;
1196 }
1197}
1198
4ce63fcd
MS
1199/* IOMMU */
1200
4d852ef8
AH
1201static int extend_iommu_mapping(struct dma_iommu_mapping *mapping);
1202
4ce63fcd
MS
1203static inline dma_addr_t __alloc_iova(struct dma_iommu_mapping *mapping,
1204 size_t size)
1205{
1206 unsigned int order = get_order(size);
1207 unsigned int align = 0;
1208 unsigned int count, start;
006f841d 1209 size_t mapping_size = mapping->bits << PAGE_SHIFT;
4ce63fcd 1210 unsigned long flags;
4d852ef8
AH
1211 dma_addr_t iova;
1212 int i;
4ce63fcd 1213
60460abf
SWK
1214 if (order > CONFIG_ARM_DMA_IOMMU_ALIGNMENT)
1215 order = CONFIG_ARM_DMA_IOMMU_ALIGNMENT;
1216
68efd7d2
MS
1217 count = PAGE_ALIGN(size) >> PAGE_SHIFT;
1218 align = (1 << order) - 1;
4ce63fcd
MS
1219
1220 spin_lock_irqsave(&mapping->lock, flags);
4d852ef8
AH
1221 for (i = 0; i < mapping->nr_bitmaps; i++) {
1222 start = bitmap_find_next_zero_area(mapping->bitmaps[i],
1223 mapping->bits, 0, count, align);
1224
1225 if (start > mapping->bits)
1226 continue;
1227
1228 bitmap_set(mapping->bitmaps[i], start, count);
1229 break;
4ce63fcd
MS
1230 }
1231
4d852ef8
AH
1232 /*
1233 * No unused range found. Try to extend the existing mapping
1234 * and perform a second attempt to reserve an IO virtual
1235 * address range of size bytes.
1236 */
1237 if (i == mapping->nr_bitmaps) {
1238 if (extend_iommu_mapping(mapping)) {
1239 spin_unlock_irqrestore(&mapping->lock, flags);
9eef8b8c 1240 return ARM_MAPPING_ERROR;
4d852ef8
AH
1241 }
1242
1243 start = bitmap_find_next_zero_area(mapping->bitmaps[i],
1244 mapping->bits, 0, count, align);
1245
1246 if (start > mapping->bits) {
1247 spin_unlock_irqrestore(&mapping->lock, flags);
9eef8b8c 1248 return ARM_MAPPING_ERROR;
4d852ef8
AH
1249 }
1250
1251 bitmap_set(mapping->bitmaps[i], start, count);
1252 }
4ce63fcd
MS
1253 spin_unlock_irqrestore(&mapping->lock, flags);
1254
006f841d 1255 iova = mapping->base + (mapping_size * i);
68efd7d2 1256 iova += start << PAGE_SHIFT;
4d852ef8
AH
1257
1258 return iova;
4ce63fcd
MS
1259}
1260
1261static inline void __free_iova(struct dma_iommu_mapping *mapping,
1262 dma_addr_t addr, size_t size)
1263{
4d852ef8 1264 unsigned int start, count;
006f841d 1265 size_t mapping_size = mapping->bits << PAGE_SHIFT;
4ce63fcd 1266 unsigned long flags;
4d852ef8
AH
1267 dma_addr_t bitmap_base;
1268 u32 bitmap_index;
1269
1270 if (!size)
1271 return;
1272
006f841d 1273 bitmap_index = (u32) (addr - mapping->base) / (u32) mapping_size;
4d852ef8
AH
1274 BUG_ON(addr < mapping->base || bitmap_index > mapping->extensions);
1275
006f841d 1276 bitmap_base = mapping->base + mapping_size * bitmap_index;
4d852ef8 1277
68efd7d2 1278 start = (addr - bitmap_base) >> PAGE_SHIFT;
4d852ef8 1279
006f841d 1280 if (addr + size > bitmap_base + mapping_size) {
4d852ef8
AH
1281 /*
1282 * The address range to be freed reaches into the iova
1283 * range of the next bitmap. This should not happen as
1284 * we don't allow this in __alloc_iova (at the
1285 * moment).
1286 */
1287 BUG();
1288 } else
68efd7d2 1289 count = size >> PAGE_SHIFT;
4ce63fcd
MS
1290
1291 spin_lock_irqsave(&mapping->lock, flags);
4d852ef8 1292 bitmap_clear(mapping->bitmaps[bitmap_index], start, count);
4ce63fcd
MS
1293 spin_unlock_irqrestore(&mapping->lock, flags);
1294}
1295
33298ef6
DA
1296/* We'll try 2M, 1M, 64K, and finally 4K; array must end with 0! */
1297static const int iommu_order_array[] = { 9, 8, 4, 0 };
1298
549a17e4 1299static struct page **__iommu_alloc_buffer(struct device *dev, size_t size,
00085f1e 1300 gfp_t gfp, unsigned long attrs,
f1270896 1301 int coherent_flag)
4ce63fcd
MS
1302{
1303 struct page **pages;
1304 int count = size >> PAGE_SHIFT;
1305 int array_size = count * sizeof(struct page *);
1306 int i = 0;
33298ef6 1307 int order_idx = 0;
4ce63fcd
MS
1308
1309 if (array_size <= PAGE_SIZE)
23be7fda 1310 pages = kzalloc(array_size, GFP_KERNEL);
4ce63fcd
MS
1311 else
1312 pages = vzalloc(array_size);
1313 if (!pages)
1314 return NULL;
1315
00085f1e 1316 if (attrs & DMA_ATTR_FORCE_CONTIGUOUS)
549a17e4
MS
1317 {
1318 unsigned long order = get_order(size);
1319 struct page *page;
1320
712c604d 1321 page = dma_alloc_from_contiguous(dev, count, order, gfp);
549a17e4
MS
1322 if (!page)
1323 goto error;
1324
f1270896 1325 __dma_clear_buffer(page, size, coherent_flag);
549a17e4
MS
1326
1327 for (i = 0; i < count; i++)
1328 pages[i] = page + i;
1329
1330 return pages;
1331 }
1332
14d3ae2e 1333 /* Go straight to 4K chunks if caller says it's OK. */
00085f1e 1334 if (attrs & DMA_ATTR_ALLOC_SINGLE_PAGES)
14d3ae2e
DA
1335 order_idx = ARRAY_SIZE(iommu_order_array) - 1;
1336
f8669bef
MS
1337 /*
1338 * IOMMU can map any pages, so himem can also be used here
1339 */
1340 gfp |= __GFP_NOWARN | __GFP_HIGHMEM;
1341
4ce63fcd 1342 while (count) {
49f28aa6
TF
1343 int j, order;
1344
33298ef6
DA
1345 order = iommu_order_array[order_idx];
1346
1347 /* Drop down when we get small */
1348 if (__fls(count) < order) {
1349 order_idx++;
1350 continue;
49f28aa6 1351 }
4ce63fcd 1352
33298ef6
DA
1353 if (order) {
1354 /* See if it's easy to allocate a high-order chunk */
1355 pages[i] = alloc_pages(gfp | __GFP_NORETRY, order);
1356
1357 /* Go down a notch at first sign of pressure */
1358 if (!pages[i]) {
1359 order_idx++;
1360 continue;
1361 }
1362 } else {
49f28aa6
TF
1363 pages[i] = alloc_pages(gfp, 0);
1364 if (!pages[i])
1365 goto error;
1366 }
4ce63fcd 1367
5a796eeb 1368 if (order) {
4ce63fcd 1369 split_page(pages[i], order);
5a796eeb
HD
1370 j = 1 << order;
1371 while (--j)
1372 pages[i + j] = pages[i] + j;
1373 }
4ce63fcd 1374
f1270896 1375 __dma_clear_buffer(pages[i], PAGE_SIZE << order, coherent_flag);
4ce63fcd
MS
1376 i += 1 << order;
1377 count -= 1 << order;
1378 }
1379
1380 return pages;
1381error:
9fa8af91 1382 while (i--)
4ce63fcd
MS
1383 if (pages[i])
1384 __free_pages(pages[i], 0);
1d5cfdb0 1385 kvfree(pages);
4ce63fcd
MS
1386 return NULL;
1387}
1388
549a17e4 1389static int __iommu_free_buffer(struct device *dev, struct page **pages,
00085f1e 1390 size_t size, unsigned long attrs)
4ce63fcd
MS
1391{
1392 int count = size >> PAGE_SHIFT;
4ce63fcd 1393 int i;
549a17e4 1394
00085f1e 1395 if (attrs & DMA_ATTR_FORCE_CONTIGUOUS) {
549a17e4
MS
1396 dma_release_from_contiguous(dev, pages[0], count);
1397 } else {
1398 for (i = 0; i < count; i++)
1399 if (pages[i])
1400 __free_pages(pages[i], 0);
1401 }
1402
1d5cfdb0 1403 kvfree(pages);
4ce63fcd
MS
1404 return 0;
1405}
1406
1407/*
1408 * Create a CPU mapping for a specified pages
1409 */
1410static void *
e9da6e99
MS
1411__iommu_alloc_remap(struct page **pages, size_t size, gfp_t gfp, pgprot_t prot,
1412 const void *caller)
4ce63fcd 1413{
513510dd
LA
1414 return dma_common_pages_remap(pages, size,
1415 VM_ARM_DMA_CONSISTENT | VM_USERMAP, prot, caller);
4ce63fcd
MS
1416}
1417
1418/*
1419 * Create a mapping in device IO address space for specified pages
1420 */
1421static dma_addr_t
7d2822df
S
1422__iommu_create_mapping(struct device *dev, struct page **pages, size_t size,
1423 unsigned long attrs)
4ce63fcd 1424{
89cfdb19 1425 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
4ce63fcd
MS
1426 unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
1427 dma_addr_t dma_addr, iova;
90cde558 1428 int i;
4ce63fcd
MS
1429
1430 dma_addr = __alloc_iova(mapping, size);
9eef8b8c 1431 if (dma_addr == ARM_MAPPING_ERROR)
4ce63fcd
MS
1432 return dma_addr;
1433
1434 iova = dma_addr;
1435 for (i = 0; i < count; ) {
90cde558
AP
1436 int ret;
1437
4ce63fcd
MS
1438 unsigned int next_pfn = page_to_pfn(pages[i]) + 1;
1439 phys_addr_t phys = page_to_phys(pages[i]);
1440 unsigned int len, j;
1441
1442 for (j = i + 1; j < count; j++, next_pfn++)
1443 if (page_to_pfn(pages[j]) != next_pfn)
1444 break;
1445
1446 len = (j - i) << PAGE_SHIFT;
c9b24996 1447 ret = iommu_map(mapping->domain, iova, phys, len,
7d2822df 1448 __dma_info_to_prot(DMA_BIDIRECTIONAL, attrs));
4ce63fcd
MS
1449 if (ret < 0)
1450 goto fail;
1451 iova += len;
1452 i = j;
1453 }
1454 return dma_addr;
1455fail:
1456 iommu_unmap(mapping->domain, dma_addr, iova-dma_addr);
1457 __free_iova(mapping, dma_addr, size);
9eef8b8c 1458 return ARM_MAPPING_ERROR;
4ce63fcd
MS
1459}
1460
1461static int __iommu_remove_mapping(struct device *dev, dma_addr_t iova, size_t size)
1462{
89cfdb19 1463 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
4ce63fcd
MS
1464
1465 /*
1466 * add optional in-page offset from iova to size and align
1467 * result to page size
1468 */
1469 size = PAGE_ALIGN((iova & ~PAGE_MASK) + size);
1470 iova &= PAGE_MASK;
1471
1472 iommu_unmap(mapping->domain, iova, size);
1473 __free_iova(mapping, iova, size);
1474 return 0;
1475}
1476
665bad7b
HD
1477static struct page **__atomic_get_pages(void *addr)
1478{
36d0fd21
LA
1479 struct page *page;
1480 phys_addr_t phys;
1481
1482 phys = gen_pool_virt_to_phys(atomic_pool, (unsigned long)addr);
1483 page = phys_to_page(phys);
665bad7b 1484
36d0fd21 1485 return (struct page **)page;
665bad7b
HD
1486}
1487
00085f1e 1488static struct page **__iommu_get_pages(void *cpu_addr, unsigned long attrs)
e9da6e99
MS
1489{
1490 struct vm_struct *area;
1491
665bad7b
HD
1492 if (__in_atomic_pool(cpu_addr, PAGE_SIZE))
1493 return __atomic_get_pages(cpu_addr);
1494
00085f1e 1495 if (attrs & DMA_ATTR_NO_KERNEL_MAPPING)
955c757e
MS
1496 return cpu_addr;
1497
e9da6e99
MS
1498 area = find_vm_area(cpu_addr);
1499 if (area && (area->flags & VM_ARM_DMA_CONSISTENT))
1500 return area->pages;
1501 return NULL;
1502}
1503
56506822 1504static void *__iommu_alloc_simple(struct device *dev, size_t size, gfp_t gfp,
7d2822df
S
1505 dma_addr_t *handle, int coherent_flag,
1506 unsigned long attrs)
479ed93a
HD
1507{
1508 struct page *page;
1509 void *addr;
1510
56506822
GC
1511 if (coherent_flag == COHERENT)
1512 addr = __alloc_simple_buffer(dev, size, gfp, &page);
1513 else
1514 addr = __alloc_from_pool(size, &page);
479ed93a
HD
1515 if (!addr)
1516 return NULL;
1517
7d2822df 1518 *handle = __iommu_create_mapping(dev, &page, size, attrs);
9eef8b8c 1519 if (*handle == ARM_MAPPING_ERROR)
479ed93a
HD
1520 goto err_mapping;
1521
1522 return addr;
1523
1524err_mapping:
1525 __free_from_pool(addr, size);
1526 return NULL;
1527}
1528
d5898291 1529static void __iommu_free_atomic(struct device *dev, void *cpu_addr,
56506822 1530 dma_addr_t handle, size_t size, int coherent_flag)
479ed93a
HD
1531{
1532 __iommu_remove_mapping(dev, handle, size);
56506822
GC
1533 if (coherent_flag == COHERENT)
1534 __dma_free_buffer(virt_to_page(cpu_addr), size);
1535 else
1536 __free_from_pool(cpu_addr, size);
479ed93a
HD
1537}
1538
56506822 1539static void *__arm_iommu_alloc_attrs(struct device *dev, size_t size,
00085f1e 1540 dma_addr_t *handle, gfp_t gfp, unsigned long attrs,
56506822 1541 int coherent_flag)
4ce63fcd 1542{
71b55663 1543 pgprot_t prot = __get_dma_pgprot(attrs, PAGE_KERNEL);
4ce63fcd
MS
1544 struct page **pages;
1545 void *addr = NULL;
1546
9eef8b8c 1547 *handle = ARM_MAPPING_ERROR;
4ce63fcd
MS
1548 size = PAGE_ALIGN(size);
1549
56506822
GC
1550 if (coherent_flag == COHERENT || !gfpflags_allow_blocking(gfp))
1551 return __iommu_alloc_simple(dev, size, gfp, handle,
7d2822df 1552 coherent_flag, attrs);
479ed93a 1553
5b91a98c
RZ
1554 /*
1555 * Following is a work-around (a.k.a. hack) to prevent pages
1556 * with __GFP_COMP being passed to split_page() which cannot
1557 * handle them. The real problem is that this flag probably
1558 * should be 0 on ARM as it is not supported on this
1559 * platform; see CONFIG_HUGETLBFS.
1560 */
1561 gfp &= ~(__GFP_COMP);
1562
56506822 1563 pages = __iommu_alloc_buffer(dev, size, gfp, attrs, coherent_flag);
4ce63fcd
MS
1564 if (!pages)
1565 return NULL;
1566
7d2822df 1567 *handle = __iommu_create_mapping(dev, pages, size, attrs);
9eef8b8c 1568 if (*handle == ARM_MAPPING_ERROR)
4ce63fcd
MS
1569 goto err_buffer;
1570
00085f1e 1571 if (attrs & DMA_ATTR_NO_KERNEL_MAPPING)
955c757e
MS
1572 return pages;
1573
e9da6e99
MS
1574 addr = __iommu_alloc_remap(pages, size, gfp, prot,
1575 __builtin_return_address(0));
4ce63fcd
MS
1576 if (!addr)
1577 goto err_mapping;
1578
1579 return addr;
1580
1581err_mapping:
1582 __iommu_remove_mapping(dev, *handle, size);
1583err_buffer:
549a17e4 1584 __iommu_free_buffer(dev, pages, size, attrs);
4ce63fcd
MS
1585 return NULL;
1586}
1587
56506822 1588static void *arm_iommu_alloc_attrs(struct device *dev, size_t size,
00085f1e 1589 dma_addr_t *handle, gfp_t gfp, unsigned long attrs)
56506822
GC
1590{
1591 return __arm_iommu_alloc_attrs(dev, size, handle, gfp, attrs, NORMAL);
1592}
1593
1594static void *arm_coherent_iommu_alloc_attrs(struct device *dev, size_t size,
00085f1e 1595 dma_addr_t *handle, gfp_t gfp, unsigned long attrs)
56506822
GC
1596{
1597 return __arm_iommu_alloc_attrs(dev, size, handle, gfp, attrs, COHERENT);
1598}
1599
1600static int __arm_iommu_mmap_attrs(struct device *dev, struct vm_area_struct *vma,
4ce63fcd 1601 void *cpu_addr, dma_addr_t dma_addr, size_t size,
00085f1e 1602 unsigned long attrs)
4ce63fcd 1603{
e9da6e99
MS
1604 unsigned long uaddr = vma->vm_start;
1605 unsigned long usize = vma->vm_end - vma->vm_start;
955c757e 1606 struct page **pages = __iommu_get_pages(cpu_addr, attrs);
371f0f08
MS
1607 unsigned long nr_pages = PAGE_ALIGN(size) >> PAGE_SHIFT;
1608 unsigned long off = vma->vm_pgoff;
4ce63fcd 1609
e9da6e99
MS
1610 if (!pages)
1611 return -ENXIO;
4ce63fcd 1612
371f0f08
MS
1613 if (off >= nr_pages || (usize >> PAGE_SHIFT) > nr_pages - off)
1614 return -ENXIO;
1615
7e312103
MS
1616 pages += off;
1617
e9da6e99
MS
1618 do {
1619 int ret = vm_insert_page(vma, uaddr, *pages++);
1620 if (ret) {
1621 pr_err("Remapping memory failed: %d\n", ret);
1622 return ret;
1623 }
1624 uaddr += PAGE_SIZE;
1625 usize -= PAGE_SIZE;
1626 } while (usize > 0);
4ce63fcd 1627
4ce63fcd
MS
1628 return 0;
1629}
56506822
GC
1630static int arm_iommu_mmap_attrs(struct device *dev,
1631 struct vm_area_struct *vma, void *cpu_addr,
00085f1e 1632 dma_addr_t dma_addr, size_t size, unsigned long attrs)
56506822
GC
1633{
1634 vma->vm_page_prot = __get_dma_pgprot(attrs, vma->vm_page_prot);
1635
1636 return __arm_iommu_mmap_attrs(dev, vma, cpu_addr, dma_addr, size, attrs);
1637}
1638
1639static int arm_coherent_iommu_mmap_attrs(struct device *dev,
1640 struct vm_area_struct *vma, void *cpu_addr,
00085f1e 1641 dma_addr_t dma_addr, size_t size, unsigned long attrs)
56506822
GC
1642{
1643 return __arm_iommu_mmap_attrs(dev, vma, cpu_addr, dma_addr, size, attrs);
1644}
4ce63fcd
MS
1645
1646/*
1647 * free a page as defined by the above mapping.
1648 * Must not be called with IRQs disabled.
1649 */
56506822 1650void __arm_iommu_free_attrs(struct device *dev, size_t size, void *cpu_addr,
00085f1e 1651 dma_addr_t handle, unsigned long attrs, int coherent_flag)
4ce63fcd 1652{
836bfa0d 1653 struct page **pages;
4ce63fcd
MS
1654 size = PAGE_ALIGN(size);
1655
56506822
GC
1656 if (coherent_flag == COHERENT || __in_atomic_pool(cpu_addr, size)) {
1657 __iommu_free_atomic(dev, cpu_addr, handle, size, coherent_flag);
e9da6e99 1658 return;
4ce63fcd 1659 }
e9da6e99 1660
836bfa0d
YC
1661 pages = __iommu_get_pages(cpu_addr, attrs);
1662 if (!pages) {
1663 WARN(1, "trying to free invalid coherent area: %p\n", cpu_addr);
479ed93a
HD
1664 return;
1665 }
1666
00085f1e 1667 if ((attrs & DMA_ATTR_NO_KERNEL_MAPPING) == 0) {
513510dd
LA
1668 dma_common_free_remap(cpu_addr, size,
1669 VM_ARM_DMA_CONSISTENT | VM_USERMAP);
955c757e 1670 }
e9da6e99
MS
1671
1672 __iommu_remove_mapping(dev, handle, size);
549a17e4 1673 __iommu_free_buffer(dev, pages, size, attrs);
4ce63fcd
MS
1674}
1675
56506822 1676void arm_iommu_free_attrs(struct device *dev, size_t size,
00085f1e 1677 void *cpu_addr, dma_addr_t handle, unsigned long attrs)
56506822
GC
1678{
1679 __arm_iommu_free_attrs(dev, size, cpu_addr, handle, attrs, NORMAL);
1680}
1681
1682void arm_coherent_iommu_free_attrs(struct device *dev, size_t size,
00085f1e 1683 void *cpu_addr, dma_addr_t handle, unsigned long attrs)
56506822
GC
1684{
1685 __arm_iommu_free_attrs(dev, size, cpu_addr, handle, attrs, COHERENT);
1686}
1687
dc2832e1
MS
1688static int arm_iommu_get_sgtable(struct device *dev, struct sg_table *sgt,
1689 void *cpu_addr, dma_addr_t dma_addr,
00085f1e 1690 size_t size, unsigned long attrs)
dc2832e1
MS
1691{
1692 unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
1693 struct page **pages = __iommu_get_pages(cpu_addr, attrs);
1694
1695 if (!pages)
1696 return -ENXIO;
1697
1698 return sg_alloc_table_from_pages(sgt, pages, count, 0, size,
1699 GFP_KERNEL);
4ce63fcd
MS
1700}
1701
1702/*
1703 * Map a part of the scatter-gather list into contiguous io address space
1704 */
1705static int __map_sg_chunk(struct device *dev, struct scatterlist *sg,
1706 size_t size, dma_addr_t *handle,
00085f1e 1707 enum dma_data_direction dir, unsigned long attrs,
0fa478df 1708 bool is_coherent)
4ce63fcd 1709{
89cfdb19 1710 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
4ce63fcd
MS
1711 dma_addr_t iova, iova_base;
1712 int ret = 0;
1713 unsigned int count;
1714 struct scatterlist *s;
c9b24996 1715 int prot;
4ce63fcd
MS
1716
1717 size = PAGE_ALIGN(size);
9eef8b8c 1718 *handle = ARM_MAPPING_ERROR;
4ce63fcd
MS
1719
1720 iova_base = iova = __alloc_iova(mapping, size);
9eef8b8c 1721 if (iova == ARM_MAPPING_ERROR)
4ce63fcd
MS
1722 return -ENOMEM;
1723
1724 for (count = 0, s = sg; count < (size >> PAGE_SHIFT); s = sg_next(s)) {
3e6110fd 1725 phys_addr_t phys = page_to_phys(sg_page(s));
4ce63fcd
MS
1726 unsigned int len = PAGE_ALIGN(s->offset + s->length);
1727
00085f1e 1728 if (!is_coherent && (attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
4ce63fcd
MS
1729 __dma_page_cpu_to_dev(sg_page(s), s->offset, s->length, dir);
1730
7d2822df 1731 prot = __dma_info_to_prot(dir, attrs);
c9b24996
AH
1732
1733 ret = iommu_map(mapping->domain, iova, phys, len, prot);
4ce63fcd
MS
1734 if (ret < 0)
1735 goto fail;
1736 count += len >> PAGE_SHIFT;
1737 iova += len;
1738 }
1739 *handle = iova_base;
1740
1741 return 0;
1742fail:
1743 iommu_unmap(mapping->domain, iova_base, count * PAGE_SIZE);
1744 __free_iova(mapping, iova_base, size);
1745 return ret;
1746}
1747
0fa478df 1748static int __iommu_map_sg(struct device *dev, struct scatterlist *sg, int nents,
00085f1e 1749 enum dma_data_direction dir, unsigned long attrs,
0fa478df 1750 bool is_coherent)
4ce63fcd
MS
1751{
1752 struct scatterlist *s = sg, *dma = sg, *start = sg;
1753 int i, count = 0;
1754 unsigned int offset = s->offset;
1755 unsigned int size = s->offset + s->length;
1756 unsigned int max = dma_get_max_seg_size(dev);
1757
1758 for (i = 1; i < nents; i++) {
1759 s = sg_next(s);
1760
9eef8b8c 1761 s->dma_address = ARM_MAPPING_ERROR;
4ce63fcd
MS
1762 s->dma_length = 0;
1763
1764 if (s->offset || (size & ~PAGE_MASK) || size + s->length > max) {
1765 if (__map_sg_chunk(dev, start, size, &dma->dma_address,
0fa478df 1766 dir, attrs, is_coherent) < 0)
4ce63fcd
MS
1767 goto bad_mapping;
1768
1769 dma->dma_address += offset;
1770 dma->dma_length = size - offset;
1771
1772 size = offset = s->offset;
1773 start = s;
1774 dma = sg_next(dma);
1775 count += 1;
1776 }
1777 size += s->length;
1778 }
0fa478df
RH
1779 if (__map_sg_chunk(dev, start, size, &dma->dma_address, dir, attrs,
1780 is_coherent) < 0)
4ce63fcd
MS
1781 goto bad_mapping;
1782
1783 dma->dma_address += offset;
1784 dma->dma_length = size - offset;
1785
1786 return count+1;
1787
1788bad_mapping:
1789 for_each_sg(sg, s, count, i)
1790 __iommu_remove_mapping(dev, sg_dma_address(s), sg_dma_len(s));
1791 return 0;
1792}
1793
1794/**
0fa478df 1795 * arm_coherent_iommu_map_sg - map a set of SG buffers for streaming mode DMA
4ce63fcd
MS
1796 * @dev: valid struct device pointer
1797 * @sg: list of buffers
0fa478df
RH
1798 * @nents: number of buffers to map
1799 * @dir: DMA transfer direction
4ce63fcd 1800 *
0fa478df
RH
1801 * Map a set of i/o coherent buffers described by scatterlist in streaming
1802 * mode for DMA. The scatter gather list elements are merged together (if
1803 * possible) and tagged with the appropriate dma address and length. They are
1804 * obtained via sg_dma_{address,length}.
4ce63fcd 1805 */
0fa478df 1806int arm_coherent_iommu_map_sg(struct device *dev, struct scatterlist *sg,
00085f1e 1807 int nents, enum dma_data_direction dir, unsigned long attrs)
0fa478df
RH
1808{
1809 return __iommu_map_sg(dev, sg, nents, dir, attrs, true);
1810}
1811
1812/**
1813 * arm_iommu_map_sg - map a set of SG buffers for streaming mode DMA
1814 * @dev: valid struct device pointer
1815 * @sg: list of buffers
1816 * @nents: number of buffers to map
1817 * @dir: DMA transfer direction
1818 *
1819 * Map a set of buffers described by scatterlist in streaming mode for DMA.
1820 * The scatter gather list elements are merged together (if possible) and
1821 * tagged with the appropriate dma address and length. They are obtained via
1822 * sg_dma_{address,length}.
1823 */
1824int arm_iommu_map_sg(struct device *dev, struct scatterlist *sg,
00085f1e 1825 int nents, enum dma_data_direction dir, unsigned long attrs)
0fa478df
RH
1826{
1827 return __iommu_map_sg(dev, sg, nents, dir, attrs, false);
1828}
1829
1830static void __iommu_unmap_sg(struct device *dev, struct scatterlist *sg,
00085f1e
KK
1831 int nents, enum dma_data_direction dir,
1832 unsigned long attrs, bool is_coherent)
4ce63fcd
MS
1833{
1834 struct scatterlist *s;
1835 int i;
1836
1837 for_each_sg(sg, s, nents, i) {
1838 if (sg_dma_len(s))
1839 __iommu_remove_mapping(dev, sg_dma_address(s),
1840 sg_dma_len(s));
00085f1e 1841 if (!is_coherent && (attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
4ce63fcd
MS
1842 __dma_page_dev_to_cpu(sg_page(s), s->offset,
1843 s->length, dir);
1844 }
1845}
1846
0fa478df
RH
1847/**
1848 * arm_coherent_iommu_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
1849 * @dev: valid struct device pointer
1850 * @sg: list of buffers
1851 * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
1852 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1853 *
1854 * Unmap a set of streaming mode DMA translations. Again, CPU access
1855 * rules concerning calls here are the same as for dma_unmap_single().
1856 */
1857void arm_coherent_iommu_unmap_sg(struct device *dev, struct scatterlist *sg,
00085f1e
KK
1858 int nents, enum dma_data_direction dir,
1859 unsigned long attrs)
0fa478df
RH
1860{
1861 __iommu_unmap_sg(dev, sg, nents, dir, attrs, true);
1862}
1863
1864/**
1865 * arm_iommu_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
1866 * @dev: valid struct device pointer
1867 * @sg: list of buffers
1868 * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
1869 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1870 *
1871 * Unmap a set of streaming mode DMA translations. Again, CPU access
1872 * rules concerning calls here are the same as for dma_unmap_single().
1873 */
1874void arm_iommu_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
00085f1e
KK
1875 enum dma_data_direction dir,
1876 unsigned long attrs)
0fa478df
RH
1877{
1878 __iommu_unmap_sg(dev, sg, nents, dir, attrs, false);
1879}
1880
4ce63fcd
MS
1881/**
1882 * arm_iommu_sync_sg_for_cpu
1883 * @dev: valid struct device pointer
1884 * @sg: list of buffers
1885 * @nents: number of buffers to map (returned from dma_map_sg)
1886 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1887 */
1888void arm_iommu_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1889 int nents, enum dma_data_direction dir)
1890{
1891 struct scatterlist *s;
1892 int i;
1893
1894 for_each_sg(sg, s, nents, i)
0fa478df 1895 __dma_page_dev_to_cpu(sg_page(s), s->offset, s->length, dir);
4ce63fcd
MS
1896
1897}
1898
1899/**
1900 * arm_iommu_sync_sg_for_device
1901 * @dev: valid struct device pointer
1902 * @sg: list of buffers
1903 * @nents: number of buffers to map (returned from dma_map_sg)
1904 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1905 */
1906void arm_iommu_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1907 int nents, enum dma_data_direction dir)
1908{
1909 struct scatterlist *s;
1910 int i;
1911
1912 for_each_sg(sg, s, nents, i)
0fa478df 1913 __dma_page_cpu_to_dev(sg_page(s), s->offset, s->length, dir);
4ce63fcd
MS
1914}
1915
1916
1917/**
0fa478df 1918 * arm_coherent_iommu_map_page
4ce63fcd
MS
1919 * @dev: valid struct device pointer
1920 * @page: page that buffer resides in
1921 * @offset: offset into page for start of buffer
1922 * @size: size of buffer to map
1923 * @dir: DMA transfer direction
1924 *
0fa478df 1925 * Coherent IOMMU aware version of arm_dma_map_page()
4ce63fcd 1926 */
0fa478df 1927static dma_addr_t arm_coherent_iommu_map_page(struct device *dev, struct page *page,
4ce63fcd 1928 unsigned long offset, size_t size, enum dma_data_direction dir,
00085f1e 1929 unsigned long attrs)
4ce63fcd 1930{
89cfdb19 1931 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
4ce63fcd 1932 dma_addr_t dma_addr;
13987d68 1933 int ret, prot, len = PAGE_ALIGN(size + offset);
4ce63fcd 1934
4ce63fcd 1935 dma_addr = __alloc_iova(mapping, len);
9eef8b8c 1936 if (dma_addr == ARM_MAPPING_ERROR)
4ce63fcd
MS
1937 return dma_addr;
1938
7d2822df 1939 prot = __dma_info_to_prot(dir, attrs);
13987d68
WD
1940
1941 ret = iommu_map(mapping->domain, dma_addr, page_to_phys(page), len, prot);
4ce63fcd
MS
1942 if (ret < 0)
1943 goto fail;
1944
1945 return dma_addr + offset;
1946fail:
1947 __free_iova(mapping, dma_addr, len);
9eef8b8c 1948 return ARM_MAPPING_ERROR;
4ce63fcd
MS
1949}
1950
0fa478df
RH
1951/**
1952 * arm_iommu_map_page
1953 * @dev: valid struct device pointer
1954 * @page: page that buffer resides in
1955 * @offset: offset into page for start of buffer
1956 * @size: size of buffer to map
1957 * @dir: DMA transfer direction
1958 *
1959 * IOMMU aware version of arm_dma_map_page()
1960 */
1961static dma_addr_t arm_iommu_map_page(struct device *dev, struct page *page,
1962 unsigned long offset, size_t size, enum dma_data_direction dir,
00085f1e 1963 unsigned long attrs)
0fa478df 1964{
00085f1e 1965 if ((attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
0fa478df
RH
1966 __dma_page_cpu_to_dev(page, offset, size, dir);
1967
1968 return arm_coherent_iommu_map_page(dev, page, offset, size, dir, attrs);
1969}
1970
1971/**
1972 * arm_coherent_iommu_unmap_page
1973 * @dev: valid struct device pointer
1974 * @handle: DMA address of buffer
1975 * @size: size of buffer (same as passed to dma_map_page)
1976 * @dir: DMA transfer direction (same as passed to dma_map_page)
1977 *
1978 * Coherent IOMMU aware version of arm_dma_unmap_page()
1979 */
1980static void arm_coherent_iommu_unmap_page(struct device *dev, dma_addr_t handle,
00085f1e 1981 size_t size, enum dma_data_direction dir, unsigned long attrs)
0fa478df 1982{
89cfdb19 1983 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
0fa478df 1984 dma_addr_t iova = handle & PAGE_MASK;
0fa478df
RH
1985 int offset = handle & ~PAGE_MASK;
1986 int len = PAGE_ALIGN(size + offset);
1987
1988 if (!iova)
1989 return;
1990
1991 iommu_unmap(mapping->domain, iova, len);
1992 __free_iova(mapping, iova, len);
1993}
1994
4ce63fcd
MS
1995/**
1996 * arm_iommu_unmap_page
1997 * @dev: valid struct device pointer
1998 * @handle: DMA address of buffer
1999 * @size: size of buffer (same as passed to dma_map_page)
2000 * @dir: DMA transfer direction (same as passed to dma_map_page)
2001 *
2002 * IOMMU aware version of arm_dma_unmap_page()
2003 */
2004static void arm_iommu_unmap_page(struct device *dev, dma_addr_t handle,
00085f1e 2005 size_t size, enum dma_data_direction dir, unsigned long attrs)
4ce63fcd 2006{
89cfdb19 2007 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
4ce63fcd
MS
2008 dma_addr_t iova = handle & PAGE_MASK;
2009 struct page *page = phys_to_page(iommu_iova_to_phys(mapping->domain, iova));
2010 int offset = handle & ~PAGE_MASK;
2011 int len = PAGE_ALIGN(size + offset);
2012
2013 if (!iova)
2014 return;
2015
00085f1e 2016 if ((attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
4ce63fcd
MS
2017 __dma_page_dev_to_cpu(page, offset, size, dir);
2018
2019 iommu_unmap(mapping->domain, iova, len);
2020 __free_iova(mapping, iova, len);
2021}
2022
24ed5d2c
NS
2023/**
2024 * arm_iommu_map_resource - map a device resource for DMA
2025 * @dev: valid struct device pointer
2026 * @phys_addr: physical address of resource
2027 * @size: size of resource to map
2028 * @dir: DMA transfer direction
2029 */
2030static dma_addr_t arm_iommu_map_resource(struct device *dev,
2031 phys_addr_t phys_addr, size_t size,
2032 enum dma_data_direction dir, unsigned long attrs)
2033{
2034 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
2035 dma_addr_t dma_addr;
2036 int ret, prot;
2037 phys_addr_t addr = phys_addr & PAGE_MASK;
2038 unsigned int offset = phys_addr & ~PAGE_MASK;
2039 size_t len = PAGE_ALIGN(size + offset);
2040
2041 dma_addr = __alloc_iova(mapping, len);
9eef8b8c 2042 if (dma_addr == ARM_MAPPING_ERROR)
24ed5d2c
NS
2043 return dma_addr;
2044
7d2822df 2045 prot = __dma_info_to_prot(dir, attrs) | IOMMU_MMIO;
24ed5d2c
NS
2046
2047 ret = iommu_map(mapping->domain, dma_addr, addr, len, prot);
2048 if (ret < 0)
2049 goto fail;
2050
2051 return dma_addr + offset;
2052fail:
2053 __free_iova(mapping, dma_addr, len);
9eef8b8c 2054 return ARM_MAPPING_ERROR;
24ed5d2c
NS
2055}
2056
2057/**
2058 * arm_iommu_unmap_resource - unmap a device DMA resource
2059 * @dev: valid struct device pointer
2060 * @dma_handle: DMA address to resource
2061 * @size: size of resource to map
2062 * @dir: DMA transfer direction
2063 */
2064static void arm_iommu_unmap_resource(struct device *dev, dma_addr_t dma_handle,
2065 size_t size, enum dma_data_direction dir,
2066 unsigned long attrs)
2067{
2068 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
2069 dma_addr_t iova = dma_handle & PAGE_MASK;
2070 unsigned int offset = dma_handle & ~PAGE_MASK;
2071 size_t len = PAGE_ALIGN(size + offset);
2072
2073 if (!iova)
2074 return;
2075
2076 iommu_unmap(mapping->domain, iova, len);
2077 __free_iova(mapping, iova, len);
2078}
2079
4ce63fcd
MS
2080static void arm_iommu_sync_single_for_cpu(struct device *dev,
2081 dma_addr_t handle, size_t size, enum dma_data_direction dir)
2082{
89cfdb19 2083 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
4ce63fcd
MS
2084 dma_addr_t iova = handle & PAGE_MASK;
2085 struct page *page = phys_to_page(iommu_iova_to_phys(mapping->domain, iova));
2086 unsigned int offset = handle & ~PAGE_MASK;
2087
2088 if (!iova)
2089 return;
2090
0fa478df 2091 __dma_page_dev_to_cpu(page, offset, size, dir);
4ce63fcd
MS
2092}
2093
2094static void arm_iommu_sync_single_for_device(struct device *dev,
2095 dma_addr_t handle, size_t size, enum dma_data_direction dir)
2096{
89cfdb19 2097 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
4ce63fcd
MS
2098 dma_addr_t iova = handle & PAGE_MASK;
2099 struct page *page = phys_to_page(iommu_iova_to_phys(mapping->domain, iova));
2100 unsigned int offset = handle & ~PAGE_MASK;
2101
2102 if (!iova)
2103 return;
2104
2105 __dma_page_cpu_to_dev(page, offset, size, dir);
2106}
2107
5299709d 2108const struct dma_map_ops iommu_ops = {
4ce63fcd
MS
2109 .alloc = arm_iommu_alloc_attrs,
2110 .free = arm_iommu_free_attrs,
2111 .mmap = arm_iommu_mmap_attrs,
dc2832e1 2112 .get_sgtable = arm_iommu_get_sgtable,
4ce63fcd
MS
2113
2114 .map_page = arm_iommu_map_page,
2115 .unmap_page = arm_iommu_unmap_page,
2116 .sync_single_for_cpu = arm_iommu_sync_single_for_cpu,
2117 .sync_single_for_device = arm_iommu_sync_single_for_device,
2118
2119 .map_sg = arm_iommu_map_sg,
2120 .unmap_sg = arm_iommu_unmap_sg,
2121 .sync_sg_for_cpu = arm_iommu_sync_sg_for_cpu,
2122 .sync_sg_for_device = arm_iommu_sync_sg_for_device,
24ed5d2c
NS
2123
2124 .map_resource = arm_iommu_map_resource,
2125 .unmap_resource = arm_iommu_unmap_resource,
9eef8b8c
CH
2126
2127 .mapping_error = arm_dma_mapping_error,
418a7a7e 2128 .dma_supported = arm_dma_supported,
4ce63fcd
MS
2129};
2130
5299709d 2131const struct dma_map_ops iommu_coherent_ops = {
56506822
GC
2132 .alloc = arm_coherent_iommu_alloc_attrs,
2133 .free = arm_coherent_iommu_free_attrs,
2134 .mmap = arm_coherent_iommu_mmap_attrs,
0fa478df
RH
2135 .get_sgtable = arm_iommu_get_sgtable,
2136
2137 .map_page = arm_coherent_iommu_map_page,
2138 .unmap_page = arm_coherent_iommu_unmap_page,
2139
2140 .map_sg = arm_coherent_iommu_map_sg,
2141 .unmap_sg = arm_coherent_iommu_unmap_sg,
24ed5d2c
NS
2142
2143 .map_resource = arm_iommu_map_resource,
2144 .unmap_resource = arm_iommu_unmap_resource,
9eef8b8c
CH
2145
2146 .mapping_error = arm_dma_mapping_error,
418a7a7e 2147 .dma_supported = arm_dma_supported,
0fa478df
RH
2148};
2149
4ce63fcd
MS
2150/**
2151 * arm_iommu_create_mapping
2152 * @bus: pointer to the bus holding the client device (for IOMMU calls)
2153 * @base: start address of the valid IO address space
68efd7d2 2154 * @size: maximum size of the valid IO address space
4ce63fcd
MS
2155 *
2156 * Creates a mapping structure which holds information about used/unused
2157 * IO address ranges, which is required to perform memory allocation and
2158 * mapping with IOMMU aware functions.
2159 *
2160 * The client device need to be attached to the mapping with
2161 * arm_iommu_attach_device function.
2162 */
2163struct dma_iommu_mapping *
1424532b 2164arm_iommu_create_mapping(struct bus_type *bus, dma_addr_t base, u64 size)
4ce63fcd 2165{
68efd7d2
MS
2166 unsigned int bits = size >> PAGE_SHIFT;
2167 unsigned int bitmap_size = BITS_TO_LONGS(bits) * sizeof(long);
4ce63fcd 2168 struct dma_iommu_mapping *mapping;
68efd7d2 2169 int extensions = 1;
4ce63fcd
MS
2170 int err = -ENOMEM;
2171
1424532b
MS
2172 /* currently only 32-bit DMA address space is supported */
2173 if (size > DMA_BIT_MASK(32) + 1)
2174 return ERR_PTR(-ERANGE);
2175
68efd7d2 2176 if (!bitmap_size)
4ce63fcd
MS
2177 return ERR_PTR(-EINVAL);
2178
68efd7d2
MS
2179 if (bitmap_size > PAGE_SIZE) {
2180 extensions = bitmap_size / PAGE_SIZE;
2181 bitmap_size = PAGE_SIZE;
2182 }
2183
4ce63fcd
MS
2184 mapping = kzalloc(sizeof(struct dma_iommu_mapping), GFP_KERNEL);
2185 if (!mapping)
2186 goto err;
2187
68efd7d2
MS
2188 mapping->bitmap_size = bitmap_size;
2189 mapping->bitmaps = kzalloc(extensions * sizeof(unsigned long *),
4d852ef8
AH
2190 GFP_KERNEL);
2191 if (!mapping->bitmaps)
4ce63fcd
MS
2192 goto err2;
2193
68efd7d2 2194 mapping->bitmaps[0] = kzalloc(bitmap_size, GFP_KERNEL);
4d852ef8
AH
2195 if (!mapping->bitmaps[0])
2196 goto err3;
2197
2198 mapping->nr_bitmaps = 1;
2199 mapping->extensions = extensions;
4ce63fcd 2200 mapping->base = base;
68efd7d2 2201 mapping->bits = BITS_PER_BYTE * bitmap_size;
4d852ef8 2202
4ce63fcd
MS
2203 spin_lock_init(&mapping->lock);
2204
2205 mapping->domain = iommu_domain_alloc(bus);
2206 if (!mapping->domain)
4d852ef8 2207 goto err4;
4ce63fcd
MS
2208
2209 kref_init(&mapping->kref);
2210 return mapping;
4d852ef8
AH
2211err4:
2212 kfree(mapping->bitmaps[0]);
4ce63fcd 2213err3:
4d852ef8 2214 kfree(mapping->bitmaps);
4ce63fcd
MS
2215err2:
2216 kfree(mapping);
2217err:
2218 return ERR_PTR(err);
2219}
18177d12 2220EXPORT_SYMBOL_GPL(arm_iommu_create_mapping);
4ce63fcd
MS
2221
2222static void release_iommu_mapping(struct kref *kref)
2223{
4d852ef8 2224 int i;
4ce63fcd
MS
2225 struct dma_iommu_mapping *mapping =
2226 container_of(kref, struct dma_iommu_mapping, kref);
2227
2228 iommu_domain_free(mapping->domain);
4d852ef8
AH
2229 for (i = 0; i < mapping->nr_bitmaps; i++)
2230 kfree(mapping->bitmaps[i]);
2231 kfree(mapping->bitmaps);
4ce63fcd
MS
2232 kfree(mapping);
2233}
2234
4d852ef8
AH
2235static int extend_iommu_mapping(struct dma_iommu_mapping *mapping)
2236{
2237 int next_bitmap;
2238
462859aa 2239 if (mapping->nr_bitmaps >= mapping->extensions)
4d852ef8
AH
2240 return -EINVAL;
2241
2242 next_bitmap = mapping->nr_bitmaps;
2243 mapping->bitmaps[next_bitmap] = kzalloc(mapping->bitmap_size,
2244 GFP_ATOMIC);
2245 if (!mapping->bitmaps[next_bitmap])
2246 return -ENOMEM;
2247
2248 mapping->nr_bitmaps++;
2249
2250 return 0;
2251}
2252
4ce63fcd
MS
2253void arm_iommu_release_mapping(struct dma_iommu_mapping *mapping)
2254{
2255 if (mapping)
2256 kref_put(&mapping->kref, release_iommu_mapping);
2257}
18177d12 2258EXPORT_SYMBOL_GPL(arm_iommu_release_mapping);
4ce63fcd 2259
eab8d653
LP
2260static int __arm_iommu_attach_device(struct device *dev,
2261 struct dma_iommu_mapping *mapping)
2262{
2263 int err;
2264
2265 err = iommu_attach_device(mapping->domain, dev);
2266 if (err)
2267 return err;
2268
2269 kref_get(&mapping->kref);
89cfdb19 2270 to_dma_iommu_mapping(dev) = mapping;
eab8d653
LP
2271
2272 pr_debug("Attached IOMMU controller to %s device.\n", dev_name(dev));
2273 return 0;
2274}
2275
4ce63fcd
MS
2276/**
2277 * arm_iommu_attach_device
2278 * @dev: valid struct device pointer
2279 * @mapping: io address space mapping structure (returned from
2280 * arm_iommu_create_mapping)
2281 *
eab8d653
LP
2282 * Attaches specified io address space mapping to the provided device.
2283 * This replaces the dma operations (dma_map_ops pointer) with the
2284 * IOMMU aware version.
2285 *
4bb25789
WD
2286 * More than one client might be attached to the same io address space
2287 * mapping.
4ce63fcd
MS
2288 */
2289int arm_iommu_attach_device(struct device *dev,
2290 struct dma_iommu_mapping *mapping)
2291{
2292 int err;
2293
eab8d653 2294 err = __arm_iommu_attach_device(dev, mapping);
4ce63fcd
MS
2295 if (err)
2296 return err;
2297
eab8d653 2298 set_dma_ops(dev, &iommu_ops);
4ce63fcd
MS
2299 return 0;
2300}
18177d12 2301EXPORT_SYMBOL_GPL(arm_iommu_attach_device);
4ce63fcd 2302
d3e01c51
S
2303/**
2304 * arm_iommu_detach_device
2305 * @dev: valid struct device pointer
2306 *
2307 * Detaches the provided device from a previously attached map.
2308 * This voids the dma operations (dma_map_ops pointer)
2309 */
2310void arm_iommu_detach_device(struct device *dev)
6fe36758
HD
2311{
2312 struct dma_iommu_mapping *mapping;
2313
2314 mapping = to_dma_iommu_mapping(dev);
2315 if (!mapping) {
2316 dev_warn(dev, "Not attached\n");
2317 return;
2318 }
2319
2320 iommu_detach_device(mapping->domain, dev);
2321 kref_put(&mapping->kref, release_iommu_mapping);
89cfdb19 2322 to_dma_iommu_mapping(dev) = NULL;
d3e01c51 2323 set_dma_ops(dev, NULL);
6fe36758
HD
2324
2325 pr_debug("Detached IOMMU controller from %s device.\n", dev_name(dev));
2326}
18177d12 2327EXPORT_SYMBOL_GPL(arm_iommu_detach_device);
6fe36758 2328
5299709d 2329static const struct dma_map_ops *arm_get_iommu_dma_map_ops(bool coherent)
4bb25789
WD
2330{
2331 return coherent ? &iommu_coherent_ops : &iommu_ops;
2332}
2333
2334static bool arm_setup_iommu_dma_ops(struct device *dev, u64 dma_base, u64 size,
53c92d79 2335 const struct iommu_ops *iommu)
4bb25789
WD
2336{
2337 struct dma_iommu_mapping *mapping;
2338
2339 if (!iommu)
2340 return false;
2341
2342 mapping = arm_iommu_create_mapping(dev->bus, dma_base, size);
2343 if (IS_ERR(mapping)) {
2344 pr_warn("Failed to create %llu-byte IOMMU mapping for device %s\n",
2345 size, dev_name(dev));
2346 return false;
2347 }
2348
eab8d653 2349 if (__arm_iommu_attach_device(dev, mapping)) {
4bb25789
WD
2350 pr_warn("Failed to attached device %s to IOMMU_mapping\n",
2351 dev_name(dev));
2352 arm_iommu_release_mapping(mapping);
2353 return false;
2354 }
2355
2356 return true;
2357}
2358
2359static void arm_teardown_iommu_dma_ops(struct device *dev)
2360{
89cfdb19 2361 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
4bb25789 2362
c2273a18
WD
2363 if (!mapping)
2364 return;
2365
d3e01c51 2366 arm_iommu_detach_device(dev);
4bb25789
WD
2367 arm_iommu_release_mapping(mapping);
2368}
2369
2370#else
2371
2372static bool arm_setup_iommu_dma_ops(struct device *dev, u64 dma_base, u64 size,
53c92d79 2373 const struct iommu_ops *iommu)
4bb25789
WD
2374{
2375 return false;
2376}
2377
2378static void arm_teardown_iommu_dma_ops(struct device *dev) { }
2379
2380#define arm_get_iommu_dma_map_ops arm_get_dma_map_ops
2381
2382#endif /* CONFIG_ARM_DMA_USE_IOMMU */
2383
5299709d 2384static const struct dma_map_ops *arm_get_dma_map_ops(bool coherent)
4bb25789
WD
2385{
2386 return coherent ? &arm_coherent_dma_ops : &arm_dma_ops;
2387}
2388
2389void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size,
53c92d79 2390 const struct iommu_ops *iommu, bool coherent)
4bb25789 2391{
5299709d 2392 const struct dma_map_ops *dma_ops;
4bb25789 2393
6f51ee70 2394 dev->archdata.dma_coherent = coherent;
26b37b94
LP
2395
2396 /*
2397 * Don't override the dma_ops if they have already been set. Ideally
2398 * this should be the only location where dma_ops are set, remove this
2399 * check when all other callers of set_dma_ops will have disappeared.
2400 */
2401 if (dev->dma_ops)
2402 return;
2403
4bb25789
WD
2404 if (arm_setup_iommu_dma_ops(dev, dma_base, size, iommu))
2405 dma_ops = arm_get_iommu_dma_map_ops(coherent);
2406 else
2407 dma_ops = arm_get_dma_map_ops(coherent);
2408
2409 set_dma_ops(dev, dma_ops);
e0586326
SS
2410
2411#ifdef CONFIG_XEN
2412 if (xen_initial_domain()) {
2413 dev->archdata.dev_dma_ops = dev->dma_ops;
2414 dev->dma_ops = xen_dma_ops;
2415 }
2416#endif
a93a121a 2417 dev->archdata.dma_ops_setup = true;
4bb25789
WD
2418}
2419
2420void arch_teardown_dma_ops(struct device *dev)
2421{
a93a121a
LP
2422 if (!dev->archdata.dma_ops_setup)
2423 return;
2424
4bb25789
WD
2425 arm_teardown_iommu_dma_ops(dev);
2426}