rk: dma-mapping: Add support DMA allocate memory without mapping
[firefly-linux-kernel-4.4.55.git] / arch / arm / mm / dma-mapping.c
1 /*
2  *  linux/arch/arm/mm/dma-mapping.c
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  */
12 #include <linux/module.h>
13 #include <linux/mm.h>
14 #include <linux/gfp.h>
15 #include <linux/errno.h>
16 #include <linux/list.h>
17 #include <linux/init.h>
18 #include <linux/device.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/dma-contiguous.h>
21 #include <linux/highmem.h>
22 #include <linux/memblock.h>
23 #include <linux/slab.h>
24 #include <linux/iommu.h>
25 #include <linux/io.h>
26 #include <linux/vmalloc.h>
27 #include <linux/sizes.h>
28
29 #include <asm/memory.h>
30 #include <asm/highmem.h>
31 #include <asm/cacheflush.h>
32 #include <asm/tlbflush.h>
33 #include <asm/mach/arch.h>
34 #include <asm/dma-iommu.h>
35 #include <asm/mach/map.h>
36 #include <asm/system_info.h>
37 #include <asm/dma-contiguous.h>
38
39 #include "mm.h"
40
41 /*
42  * The DMA API is built upon the notion of "buffer ownership".  A buffer
43  * is either exclusively owned by the CPU (and therefore may be accessed
44  * by it) or exclusively owned by the DMA device.  These helper functions
45  * represent the transitions between these two ownership states.
46  *
47  * Note, however, that on later ARMs, this notion does not work due to
48  * speculative prefetches.  We model our approach on the assumption that
49  * the CPU does do speculative prefetches, which means we clean caches
50  * before transfers and delay cache invalidation until transfer completion.
51  *
52  */
53 static void __dma_page_cpu_to_dev(struct page *, unsigned long,
54                 size_t, enum dma_data_direction);
55 static void __dma_page_dev_to_cpu(struct page *, unsigned long,
56                 size_t, enum dma_data_direction);
57
58 /**
59  * arm_dma_map_page - map a portion of a page for streaming DMA
60  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
61  * @page: page that buffer resides in
62  * @offset: offset into page for start of buffer
63  * @size: size of buffer to map
64  * @dir: DMA transfer direction
65  *
66  * Ensure that any data held in the cache is appropriately discarded
67  * or written back.
68  *
69  * The device owns this memory once this call has completed.  The CPU
70  * can regain ownership by calling dma_unmap_page().
71  */
72 static dma_addr_t arm_dma_map_page(struct device *dev, struct page *page,
73              unsigned long offset, size_t size, enum dma_data_direction dir,
74              struct dma_attrs *attrs)
75 {
76         if (!dma_get_attr(DMA_ATTR_SKIP_CPU_SYNC, attrs))
77                 __dma_page_cpu_to_dev(page, offset, size, dir);
78         return pfn_to_dma(dev, page_to_pfn(page)) + offset;
79 }
80
81 static dma_addr_t arm_coherent_dma_map_page(struct device *dev, struct page *page,
82              unsigned long offset, size_t size, enum dma_data_direction dir,
83              struct dma_attrs *attrs)
84 {
85         return pfn_to_dma(dev, page_to_pfn(page)) + offset;
86 }
87
88 /**
89  * arm_dma_unmap_page - unmap a buffer previously mapped through dma_map_page()
90  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
91  * @handle: DMA address of buffer
92  * @size: size of buffer (same as passed to dma_map_page)
93  * @dir: DMA transfer direction (same as passed to dma_map_page)
94  *
95  * Unmap a page streaming mode DMA translation.  The handle and size
96  * must match what was provided in the previous dma_map_page() call.
97  * All other usages are undefined.
98  *
99  * After this call, reads by the CPU to the buffer are guaranteed to see
100  * whatever the device wrote there.
101  */
102 static void arm_dma_unmap_page(struct device *dev, dma_addr_t handle,
103                 size_t size, enum dma_data_direction dir,
104                 struct dma_attrs *attrs)
105 {
106         if (!dma_get_attr(DMA_ATTR_SKIP_CPU_SYNC, attrs))
107                 __dma_page_dev_to_cpu(pfn_to_page(dma_to_pfn(dev, handle)),
108                                       handle & ~PAGE_MASK, size, dir);
109 }
110
111 static void arm_dma_sync_single_for_cpu(struct device *dev,
112                 dma_addr_t handle, size_t size, enum dma_data_direction dir)
113 {
114         unsigned int offset = handle & (PAGE_SIZE - 1);
115         struct page *page = pfn_to_page(dma_to_pfn(dev, handle-offset));
116         __dma_page_dev_to_cpu(page, offset, size, dir);
117 }
118
119 static void arm_dma_sync_single_for_device(struct device *dev,
120                 dma_addr_t handle, size_t size, enum dma_data_direction dir)
121 {
122         unsigned int offset = handle & (PAGE_SIZE - 1);
123         struct page *page = pfn_to_page(dma_to_pfn(dev, handle-offset));
124         __dma_page_cpu_to_dev(page, offset, size, dir);
125 }
126
127 struct dma_map_ops arm_dma_ops = {
128         .alloc                  = arm_dma_alloc,
129         .free                   = arm_dma_free,
130         .mmap                   = arm_dma_mmap,
131         .get_sgtable            = arm_dma_get_sgtable,
132         .map_page               = arm_dma_map_page,
133         .unmap_page             = arm_dma_unmap_page,
134         .map_sg                 = arm_dma_map_sg,
135         .unmap_sg               = arm_dma_unmap_sg,
136         .sync_single_for_cpu    = arm_dma_sync_single_for_cpu,
137         .sync_single_for_device = arm_dma_sync_single_for_device,
138         .sync_sg_for_cpu        = arm_dma_sync_sg_for_cpu,
139         .sync_sg_for_device     = arm_dma_sync_sg_for_device,
140         .set_dma_mask           = arm_dma_set_mask,
141 };
142 EXPORT_SYMBOL(arm_dma_ops);
143
144 static void *arm_coherent_dma_alloc(struct device *dev, size_t size,
145         dma_addr_t *handle, gfp_t gfp, struct dma_attrs *attrs);
146 static void arm_coherent_dma_free(struct device *dev, size_t size, void *cpu_addr,
147                                   dma_addr_t handle, struct dma_attrs *attrs);
148
149 struct dma_map_ops arm_coherent_dma_ops = {
150         .alloc                  = arm_coherent_dma_alloc,
151         .free                   = arm_coherent_dma_free,
152         .mmap                   = arm_dma_mmap,
153         .get_sgtable            = arm_dma_get_sgtable,
154         .map_page               = arm_coherent_dma_map_page,
155         .map_sg                 = arm_dma_map_sg,
156         .set_dma_mask           = arm_dma_set_mask,
157 };
158 EXPORT_SYMBOL(arm_coherent_dma_ops);
159
160 static u64 get_coherent_dma_mask(struct device *dev)
161 {
162         u64 mask = (u64)arm_dma_limit;
163
164         if (dev) {
165                 mask = dev->coherent_dma_mask;
166
167                 /*
168                  * Sanity check the DMA mask - it must be non-zero, and
169                  * must be able to be satisfied by a DMA allocation.
170                  */
171                 if (mask == 0) {
172                         dev_warn(dev, "coherent DMA mask is unset\n");
173                         return 0;
174                 }
175
176                 if ((~mask) & (u64)arm_dma_limit) {
177                         dev_warn(dev, "coherent DMA mask %#llx is smaller "
178                                  "than system GFP_DMA mask %#llx\n",
179                                  mask, (u64)arm_dma_limit);
180                         return 0;
181                 }
182         }
183
184         return mask;
185 }
186
187 static void __dma_clear_buffer(struct page *page, size_t size)
188 {
189         /*
190          * Ensure that the allocated pages are zeroed, and that any data
191          * lurking in the kernel direct-mapped region is invalidated.
192          */
193         if (PageHighMem(page)) {
194                 phys_addr_t base = __pfn_to_phys(page_to_pfn(page));
195                 phys_addr_t end = base + size;
196                 while (size > 0) {
197                         void *ptr = kmap_atomic(page);
198                         memset(ptr, 0, PAGE_SIZE);
199                         dmac_flush_range(ptr, ptr + PAGE_SIZE);
200                         kunmap_atomic(ptr);
201                         page++;
202                         size -= PAGE_SIZE;
203                 }
204                 outer_flush_range(base, end);
205         } else {
206                 void *ptr = page_address(page);
207                 memset(ptr, 0, size);
208                 dmac_flush_range(ptr, ptr + size);
209                 outer_flush_range(__pa(ptr), __pa(ptr) + size);
210         }
211 }
212
213 /*
214  * Allocate a DMA buffer for 'dev' of size 'size' using the
215  * specified gfp mask.  Note that 'size' must be page aligned.
216  */
217 static struct page *__dma_alloc_buffer(struct device *dev, size_t size, gfp_t gfp)
218 {
219         unsigned long order = get_order(size);
220         struct page *page, *p, *e;
221
222         page = alloc_pages(gfp, order);
223         if (!page)
224                 return NULL;
225
226         /*
227          * Now split the huge page and free the excess pages
228          */
229         split_page(page, order);
230         for (p = page + (size >> PAGE_SHIFT), e = page + (1 << order); p < e; p++)
231                 __free_page(p);
232
233         __dma_clear_buffer(page, size);
234
235         return page;
236 }
237
238 /*
239  * Free a DMA buffer.  'size' must be page aligned.
240  */
241 static void __dma_free_buffer(struct page *page, size_t size)
242 {
243         struct page *e = page + (size >> PAGE_SHIFT);
244
245         while (page < e) {
246                 __free_page(page);
247                 page++;
248         }
249 }
250
251 #ifdef CONFIG_MMU
252 #ifdef CONFIG_HUGETLB_PAGE
253 #error ARM Coherent DMA allocator does not (yet) support huge TLB
254 #endif
255
256 static void *__alloc_from_contiguous(struct device *dev, size_t size,
257                                      pgprot_t prot, struct page **ret_page,
258 #ifdef CONFIG_ARCH_ROCKCHIP
259                                      struct dma_attrs *attrs,
260 #endif
261                                      const void *caller);
262
263 static void *__alloc_remap_buffer(struct device *dev, size_t size, gfp_t gfp,
264                                  pgprot_t prot, struct page **ret_page,
265                                  const void *caller);
266
267 static void *
268 __dma_alloc_remap(struct page *page, size_t size, gfp_t gfp, pgprot_t prot,
269         const void *caller)
270 {
271         struct vm_struct *area;
272         unsigned long addr;
273
274         /*
275          * DMA allocation can be mapped to user space, so lets
276          * set VM_USERMAP flags too.
277          */
278         area = get_vm_area_caller(size, VM_ARM_DMA_CONSISTENT | VM_USERMAP,
279                                   caller);
280         if (!area)
281                 return NULL;
282         addr = (unsigned long)area->addr;
283         area->phys_addr = __pfn_to_phys(page_to_pfn(page));
284
285         if (ioremap_page_range(addr, addr + size, area->phys_addr, prot)) {
286                 vunmap((void *)addr);
287                 return NULL;
288         }
289         return (void *)addr;
290 }
291
292 static void __dma_free_remap(void *cpu_addr, size_t size)
293 {
294         unsigned int flags = VM_ARM_DMA_CONSISTENT | VM_USERMAP;
295         struct vm_struct *area = find_vm_area(cpu_addr);
296         if (!area || (area->flags & flags) != flags) {
297                 WARN(1, "trying to free invalid coherent area: %p\n", cpu_addr);
298                 return;
299         }
300         unmap_kernel_range((unsigned long)cpu_addr, size);
301         vunmap(cpu_addr);
302 }
303
304 #define DEFAULT_DMA_COHERENT_POOL_SIZE  SZ_256K
305
306 struct dma_pool {
307         size_t size;
308         spinlock_t lock;
309         unsigned long *bitmap;
310         unsigned long nr_pages;
311         void *vaddr;
312         struct page **pages;
313 };
314
315 static struct dma_pool atomic_pool = {
316         .size = DEFAULT_DMA_COHERENT_POOL_SIZE,
317 };
318
319 static int __init early_coherent_pool(char *p)
320 {
321         atomic_pool.size = memparse(p, &p);
322         return 0;
323 }
324 early_param("coherent_pool", early_coherent_pool);
325
326 void __init init_dma_coherent_pool_size(unsigned long size)
327 {
328         /*
329          * Catch any attempt to set the pool size too late.
330          */
331         BUG_ON(atomic_pool.vaddr);
332
333         /*
334          * Set architecture specific coherent pool size only if
335          * it has not been changed by kernel command line parameter.
336          */
337         if (atomic_pool.size == DEFAULT_DMA_COHERENT_POOL_SIZE)
338                 atomic_pool.size = size;
339 }
340
341 /*
342  * Initialise the coherent pool for atomic allocations.
343  */
344 static int __init atomic_pool_init(void)
345 {
346         struct dma_pool *pool = &atomic_pool;
347         pgprot_t prot = pgprot_dmacoherent(pgprot_kernel);
348         gfp_t gfp = GFP_KERNEL | GFP_DMA;
349         unsigned long nr_pages = pool->size >> PAGE_SHIFT;
350         unsigned long *bitmap;
351         struct page *page;
352         struct page **pages;
353         void *ptr;
354         int bitmap_size = BITS_TO_LONGS(nr_pages) * sizeof(long);
355
356         bitmap = kzalloc(bitmap_size, GFP_KERNEL);
357         if (!bitmap)
358                 goto no_bitmap;
359
360         pages = kzalloc(nr_pages * sizeof(struct page *), GFP_KERNEL);
361         if (!pages)
362                 goto no_pages;
363
364         if (IS_ENABLED(CONFIG_DMA_CMA))
365                 ptr = __alloc_from_contiguous(NULL, pool->size, prot, &page,
366 #ifdef CONFIG_ARCH_ROCKCHIP
367                                               NULL,
368 #endif
369                                               atomic_pool_init);
370         else
371                 ptr = __alloc_remap_buffer(NULL, pool->size, gfp, prot, &page,
372                                            atomic_pool_init);
373         if (ptr) {
374                 int i;
375
376                 for (i = 0; i < nr_pages; i++)
377                         pages[i] = page + i;
378
379                 spin_lock_init(&pool->lock);
380                 pool->vaddr = ptr;
381                 pool->pages = pages;
382                 pool->bitmap = bitmap;
383                 pool->nr_pages = nr_pages;
384                 pr_info("DMA: preallocated %u KiB pool for atomic coherent allocations\n",
385                        (unsigned)pool->size / 1024);
386                 return 0;
387         }
388
389         kfree(pages);
390 no_pages:
391         kfree(bitmap);
392 no_bitmap:
393         pr_err("DMA: failed to allocate %u KiB pool for atomic coherent allocation\n",
394                (unsigned)pool->size / 1024);
395         return -ENOMEM;
396 }
397 /*
398  * CMA is activated by core_initcall, so we must be called after it.
399  */
400 postcore_initcall(atomic_pool_init);
401
402 struct dma_contig_early_reserve {
403         phys_addr_t base;
404         unsigned long size;
405 };
406
407 static struct dma_contig_early_reserve dma_mmu_remap[MAX_CMA_AREAS] __initdata;
408
409 static int dma_mmu_remap_num __initdata;
410
411 void __init dma_contiguous_early_fixup(phys_addr_t base, unsigned long size)
412 {
413         dma_mmu_remap[dma_mmu_remap_num].base = base;
414         dma_mmu_remap[dma_mmu_remap_num].size = size;
415         dma_mmu_remap_num++;
416 }
417
418 void __init dma_contiguous_remap(void)
419 {
420         int i;
421         for (i = 0; i < dma_mmu_remap_num; i++) {
422                 phys_addr_t start = dma_mmu_remap[i].base;
423                 phys_addr_t end = start + dma_mmu_remap[i].size;
424                 struct map_desc map;
425                 unsigned long addr;
426
427                 if (end > arm_lowmem_limit)
428                         end = arm_lowmem_limit;
429                 if (start >= end)
430                         continue;
431
432                 map.pfn = __phys_to_pfn(start);
433                 map.virtual = __phys_to_virt(start);
434                 map.length = end - start;
435                 map.type = MT_MEMORY_DMA_READY;
436
437                 /*
438                  * Clear previous low-memory mapping
439                  */
440                 for (addr = __phys_to_virt(start); addr < __phys_to_virt(end);
441                      addr += PMD_SIZE)
442                         pmd_clear(pmd_off_k(addr));
443
444                 iotable_init(&map, 1);
445         }
446 }
447
448 static int __dma_update_pte(pte_t *pte, pgtable_t token, unsigned long addr,
449                             void *data)
450 {
451         struct page *page = virt_to_page(addr);
452         pgprot_t prot = *(pgprot_t *)data;
453
454         set_pte_ext(pte, mk_pte(page, prot), 0);
455         return 0;
456 }
457
458 static void __dma_remap(struct page *page, size_t size, pgprot_t prot)
459 {
460         unsigned long start = (unsigned long) page_address(page);
461         unsigned end = start + size;
462
463         apply_to_page_range(&init_mm, start, size, __dma_update_pte, &prot);
464         dsb();
465         flush_tlb_kernel_range(start, end);
466 }
467
468 static void *__alloc_remap_buffer(struct device *dev, size_t size, gfp_t gfp,
469                                  pgprot_t prot, struct page **ret_page,
470                                  const void *caller)
471 {
472         struct page *page;
473         void *ptr;
474         page = __dma_alloc_buffer(dev, size, gfp);
475         if (!page)
476                 return NULL;
477
478         ptr = __dma_alloc_remap(page, size, gfp, prot, caller);
479         if (!ptr) {
480                 __dma_free_buffer(page, size);
481                 return NULL;
482         }
483
484         *ret_page = page;
485         return ptr;
486 }
487
488 static void *__alloc_from_pool(size_t size, struct page **ret_page)
489 {
490         struct dma_pool *pool = &atomic_pool;
491         unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
492         unsigned int pageno;
493         unsigned long flags;
494         void *ptr = NULL;
495         unsigned long align_mask;
496
497         if (!pool->vaddr) {
498                 WARN(1, "coherent pool not initialised!\n");
499                 return NULL;
500         }
501
502         /*
503          * Align the region allocation - allocations from pool are rather
504          * small, so align them to their order in pages, minimum is a page
505          * size. This helps reduce fragmentation of the DMA space.
506          */
507         align_mask = (1 << get_order(size)) - 1;
508
509         spin_lock_irqsave(&pool->lock, flags);
510         pageno = bitmap_find_next_zero_area(pool->bitmap, pool->nr_pages,
511                                             0, count, align_mask);
512         if (pageno < pool->nr_pages) {
513                 bitmap_set(pool->bitmap, pageno, count);
514                 ptr = pool->vaddr + PAGE_SIZE * pageno;
515                 *ret_page = pool->pages[pageno];
516         } else {
517                 pr_err_once("ERROR: %u KiB atomic DMA coherent pool is too small!\n"
518                             "Please increase it with coherent_pool= kernel parameter!\n",
519                             (unsigned)pool->size / 1024);
520         }
521         spin_unlock_irqrestore(&pool->lock, flags);
522
523         return ptr;
524 }
525
526 static bool __in_atomic_pool(void *start, size_t size)
527 {
528         struct dma_pool *pool = &atomic_pool;
529         void *end = start + size;
530         void *pool_start = pool->vaddr;
531         void *pool_end = pool->vaddr + pool->size;
532
533         if (start < pool_start || start >= pool_end)
534                 return false;
535
536         if (end <= pool_end)
537                 return true;
538
539         WARN(1, "Wrong coherent size(%p-%p) from atomic pool(%p-%p)\n",
540              start, end - 1, pool_start, pool_end - 1);
541
542         return false;
543 }
544
545 static int __free_from_pool(void *start, size_t size)
546 {
547         struct dma_pool *pool = &atomic_pool;
548         unsigned long pageno, count;
549         unsigned long flags;
550
551         if (!__in_atomic_pool(start, size))
552                 return 0;
553
554         pageno = (start - pool->vaddr) >> PAGE_SHIFT;
555         count = size >> PAGE_SHIFT;
556
557         spin_lock_irqsave(&pool->lock, flags);
558         bitmap_clear(pool->bitmap, pageno, count);
559         spin_unlock_irqrestore(&pool->lock, flags);
560
561         return 1;
562 }
563
564 static void *__alloc_from_contiguous(struct device *dev, size_t size,
565                                      pgprot_t prot, struct page **ret_page,
566 #ifdef CONFIG_ARCH_ROCKCHIP
567                                      struct dma_attrs *attrs,
568 #endif
569                                      const void *caller)
570 {
571         unsigned long order = get_order(size);
572         size_t count = size >> PAGE_SHIFT;
573         struct page *page;
574         void *ptr;
575
576         page = dma_alloc_from_contiguous(dev, count, order);
577         if (!page)
578                 return NULL;
579
580         __dma_clear_buffer(page, size);
581
582 #ifdef CONFIG_ARCH_ROCKCHIP
583         if (dma_get_attr(DMA_ATTR_NO_KERNEL_MAPPING, attrs))
584                 return (*ret_page=page);
585 #endif
586
587         if (PageHighMem(page)) {
588                 ptr = __dma_alloc_remap(page, size, GFP_KERNEL, prot, caller);
589                 if (!ptr) {
590                         dma_release_from_contiguous(dev, page, count);
591                         return NULL;
592                 }
593         } else {
594                 __dma_remap(page, size, prot);
595                 ptr = page_address(page);
596         }
597         *ret_page = page;
598         return ptr;
599 }
600
601 #ifdef CONFIG_ARCH_ROCKCHIP
602 static void __free_from_contiguous(struct device *dev, struct page *page,
603                                    void *cpu_addr, size_t size,
604                                    struct dma_attrs *attrs)
605 {
606         if (!dma_get_attr(DMA_ATTR_NO_KERNEL_MAPPING, attrs)) {
607                 if (PageHighMem(page))
608                         __dma_free_remap(cpu_addr, size);
609                 else
610                         __dma_remap(page, size, pgprot_kernel);
611         }
612         dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT);
613 }
614 #else
615 static void __free_from_contiguous(struct device *dev, struct page *page,
616                                    void *cpu_addr, size_t size)
617 {
618         if (PageHighMem(page))
619                 __dma_free_remap(cpu_addr, size);
620         else
621                 __dma_remap(page, size, pgprot_kernel);
622         dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT);
623 }
624 #endif
625
626 static inline pgprot_t __get_dma_pgprot(struct dma_attrs *attrs, pgprot_t prot)
627 {
628         prot = dma_get_attr(DMA_ATTR_WRITE_COMBINE, attrs) ?
629                             pgprot_writecombine(prot) :
630                             pgprot_dmacoherent(prot);
631         return prot;
632 }
633
634 #define nommu() 0
635
636 #else   /* !CONFIG_MMU */
637
638 #define nommu() 1
639
640 #define __get_dma_pgprot(attrs, prot)   __pgprot(0)
641 #define __alloc_remap_buffer(dev, size, gfp, prot, ret, c)      NULL
642 #define __alloc_from_pool(size, ret_page)                       NULL
643 #ifdef CONFIG_ARCH_ROCKCHIP
644 #define __alloc_from_contiguous(dev, size, prot, ret, attrs, c) NULL
645 #else
646 #define __alloc_from_contiguous(dev, size, prot, ret, c)        NULL
647 #endif
648 #define __free_from_pool(cpu_addr, size)                        0
649 #ifdef CONFIG_ARCH_ROCKCHIP
650 #define __free_from_contiguous(dev, page, cpu_addr, size, attrs) do { } while (0)
651 #else
652 #define __free_from_contiguous(dev, page, cpu_addr, size)       do { } while (0)
653 #endif
654 #define __dma_free_remap(cpu_addr, size)                        do { } while (0)
655
656 #endif  /* CONFIG_MMU */
657
658 static void *__alloc_simple_buffer(struct device *dev, size_t size, gfp_t gfp,
659                                    struct page **ret_page)
660 {
661         struct page *page;
662         page = __dma_alloc_buffer(dev, size, gfp);
663         if (!page)
664                 return NULL;
665
666         *ret_page = page;
667         return page_address(page);
668 }
669
670
671
672 static void *__dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
673 #ifdef CONFIG_ARCH_ROCKCHIP
674                          gfp_t gfp, pgprot_t prot, bool is_coherent,
675                          struct dma_attrs *attrs, const void *caller)
676 #else
677                          gfp_t gfp, pgprot_t prot, bool is_coherent, const void *caller)
678 #endif
679 {
680         u64 mask = get_coherent_dma_mask(dev);
681         struct page *page = NULL;
682         void *addr;
683
684 #ifdef CONFIG_DMA_API_DEBUG
685         u64 limit = (mask + 1) & ~mask;
686         if (limit && size >= limit) {
687                 dev_warn(dev, "coherent allocation too big (requested %#x mask %#llx)\n",
688                         size, mask);
689                 return NULL;
690         }
691 #endif
692
693         if (!mask)
694                 return NULL;
695
696         if (mask < 0xffffffffULL)
697                 gfp |= GFP_DMA;
698
699         /*
700          * Following is a work-around (a.k.a. hack) to prevent pages
701          * with __GFP_COMP being passed to split_page() which cannot
702          * handle them.  The real problem is that this flag probably
703          * should be 0 on ARM as it is not supported on this
704          * platform; see CONFIG_HUGETLBFS.
705          */
706         gfp &= ~(__GFP_COMP);
707
708         *handle = DMA_ERROR_CODE;
709         size = PAGE_ALIGN(size);
710
711         if (is_coherent || nommu())
712                 addr = __alloc_simple_buffer(dev, size, gfp, &page);
713         else if (!(gfp & __GFP_WAIT))
714                 addr = __alloc_from_pool(size, &page);
715         else if (!IS_ENABLED(CONFIG_DMA_CMA))
716                 addr = __alloc_remap_buffer(dev, size, gfp, prot, &page, caller);
717         else
718 #ifdef CONFIG_ARCH_ROCKCHIP
719                 addr = __alloc_from_contiguous(dev, size, prot, &page, attrs, caller);
720 #else
721                 addr = __alloc_from_contiguous(dev, size, prot, &page, caller);
722 #endif
723
724         if (addr)
725                 *handle = pfn_to_dma(dev, page_to_pfn(page));
726
727         return addr;
728 }
729
730 /*
731  * Allocate DMA-coherent memory space and return both the kernel remapped
732  * virtual and bus address for that space.
733  */
734 void *arm_dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
735                     gfp_t gfp, struct dma_attrs *attrs)
736 {
737         pgprot_t prot = __get_dma_pgprot(attrs, pgprot_kernel);
738         void *memory;
739
740         if (dma_alloc_from_coherent(dev, size, handle, &memory))
741                 return memory;
742
743         return __dma_alloc(dev, size, handle, gfp, prot, false,
744 #ifdef CONFIG_ARCH_ROCKCHIP
745                            attrs,
746 #endif
747                            __builtin_return_address(0));
748 }
749
750 static void *arm_coherent_dma_alloc(struct device *dev, size_t size,
751         dma_addr_t *handle, gfp_t gfp, struct dma_attrs *attrs)
752 {
753         pgprot_t prot = __get_dma_pgprot(attrs, pgprot_kernel);
754         void *memory;
755
756         if (dma_alloc_from_coherent(dev, size, handle, &memory))
757                 return memory;
758
759         return __dma_alloc(dev, size, handle, gfp, prot, true,
760 #ifdef CONFIG_ARCH_ROCKCHIP
761                            attrs,
762 #endif
763                            __builtin_return_address(0));
764 }
765
766 /*
767  * Create userspace mapping for the DMA-coherent memory.
768  */
769 int arm_dma_mmap(struct device *dev, struct vm_area_struct *vma,
770                  void *cpu_addr, dma_addr_t dma_addr, size_t size,
771                  struct dma_attrs *attrs)
772 {
773         int ret = -ENXIO;
774 #ifdef CONFIG_MMU
775         unsigned long nr_vma_pages = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
776         unsigned long nr_pages = PAGE_ALIGN(size) >> PAGE_SHIFT;
777         unsigned long pfn = dma_to_pfn(dev, dma_addr);
778         unsigned long off = vma->vm_pgoff;
779
780         vma->vm_page_prot = __get_dma_pgprot(attrs, vma->vm_page_prot);
781
782         if (dma_mmap_from_coherent(dev, vma, cpu_addr, size, &ret))
783                 return ret;
784
785         if (off < nr_pages && nr_vma_pages <= (nr_pages - off)) {
786                 ret = remap_pfn_range(vma, vma->vm_start,
787                                       pfn + off,
788                                       vma->vm_end - vma->vm_start,
789                                       vma->vm_page_prot);
790         }
791 #endif  /* CONFIG_MMU */
792
793         return ret;
794 }
795
796 /*
797  * Free a buffer as defined by the above mapping.
798  */
799 static void __arm_dma_free(struct device *dev, size_t size, void *cpu_addr,
800                            dma_addr_t handle, struct dma_attrs *attrs,
801                            bool is_coherent)
802 {
803         struct page *page = pfn_to_page(dma_to_pfn(dev, handle));
804
805         if (dma_release_from_coherent(dev, get_order(size), cpu_addr))
806                 return;
807
808         size = PAGE_ALIGN(size);
809
810         if (is_coherent || nommu()) {
811                 __dma_free_buffer(page, size);
812         } else if (__free_from_pool(cpu_addr, size)) {
813                 return;
814         } else if (!IS_ENABLED(CONFIG_DMA_CMA)) {
815                 __dma_free_remap(cpu_addr, size);
816                 __dma_free_buffer(page, size);
817         } else {
818                 /*
819                  * Non-atomic allocations cannot be freed with IRQs disabled
820                  */
821                 WARN_ON(irqs_disabled());
822 #ifdef CONFIG_ARCH_ROCKCHIP
823                 __free_from_contiguous(dev, page, cpu_addr, size, attrs);
824 #else
825                 __free_from_contiguous(dev, page, cpu_addr, size);
826 #endif
827         }
828 }
829
830 void arm_dma_free(struct device *dev, size_t size, void *cpu_addr,
831                   dma_addr_t handle, struct dma_attrs *attrs)
832 {
833         __arm_dma_free(dev, size, cpu_addr, handle, attrs, false);
834 }
835
836 static void arm_coherent_dma_free(struct device *dev, size_t size, void *cpu_addr,
837                                   dma_addr_t handle, struct dma_attrs *attrs)
838 {
839         __arm_dma_free(dev, size, cpu_addr, handle, attrs, true);
840 }
841
842 int arm_dma_get_sgtable(struct device *dev, struct sg_table *sgt,
843                  void *cpu_addr, dma_addr_t handle, size_t size,
844                  struct dma_attrs *attrs)
845 {
846         struct page *page = pfn_to_page(dma_to_pfn(dev, handle));
847         int ret;
848
849         ret = sg_alloc_table(sgt, 1, GFP_KERNEL);
850         if (unlikely(ret))
851                 return ret;
852
853         sg_set_page(sgt->sgl, page, PAGE_ALIGN(size), 0);
854         return 0;
855 }
856
857 static void dma_cache_maint_page(struct page *page, unsigned long offset,
858         size_t size, enum dma_data_direction dir,
859         void (*op)(const void *, size_t, int))
860 {
861         unsigned long pfn;
862         size_t left = size;
863
864         pfn = page_to_pfn(page) + offset / PAGE_SIZE;
865         offset %= PAGE_SIZE;
866
867         /*
868          * A single sg entry may refer to multiple physically contiguous
869          * pages.  But we still need to process highmem pages individually.
870          * If highmem is not configured then the bulk of this loop gets
871          * optimized out.
872          */
873         do {
874                 size_t len = left;
875                 void *vaddr;
876
877                 page = pfn_to_page(pfn);
878
879                 if (PageHighMem(page)) {
880                         if (len + offset > PAGE_SIZE)
881                                 len = PAGE_SIZE - offset;
882
883                         if (cache_is_vipt_nonaliasing()) {
884                                 vaddr = kmap_atomic(page);
885                                 op(vaddr + offset, len, dir);
886                                 kunmap_atomic(vaddr);
887                         } else {
888                                 vaddr = kmap_high_get(page);
889                                 if (vaddr) {
890                                         op(vaddr + offset, len, dir);
891                                         kunmap_high(page);
892                                 }
893                         }
894                 } else {
895                         vaddr = page_address(page) + offset;
896                         op(vaddr, len, dir);
897                 }
898                 offset = 0;
899                 pfn++;
900                 left -= len;
901         } while (left);
902 }
903
904 /*
905  * Make an area consistent for devices.
906  * Note: Drivers should NOT use this function directly, as it will break
907  * platforms with CONFIG_DMABOUNCE.
908  * Use the driver DMA support - see dma-mapping.h (dma_sync_*)
909  */
910 static void __dma_page_cpu_to_dev(struct page *page, unsigned long off,
911         size_t size, enum dma_data_direction dir)
912 {
913         unsigned long paddr;
914
915         dma_cache_maint_page(page, off, size, dir, dmac_map_area);
916
917         paddr = page_to_phys(page) + off;
918         if (dir == DMA_FROM_DEVICE) {
919                 outer_inv_range(paddr, paddr + size);
920         } else {
921                 outer_clean_range(paddr, paddr + size);
922         }
923         /* FIXME: non-speculating: flush on bidirectional mappings? */
924 }
925
926 static void __dma_page_dev_to_cpu(struct page *page, unsigned long off,
927         size_t size, enum dma_data_direction dir)
928 {
929         unsigned long paddr = page_to_phys(page) + off;
930
931         /* FIXME: non-speculating: not required */
932         /* don't bother invalidating if DMA to device */
933         if (dir != DMA_TO_DEVICE)
934                 outer_inv_range(paddr, paddr + size);
935
936         dma_cache_maint_page(page, off, size, dir, dmac_unmap_area);
937
938         /*
939          * Mark the D-cache clean for this page to avoid extra flushing.
940          */
941         if (dir != DMA_TO_DEVICE && off == 0 && size >= PAGE_SIZE)
942                 set_bit(PG_dcache_clean, &page->flags);
943 }
944
945 /**
946  * arm_dma_map_sg - map a set of SG buffers for streaming mode DMA
947  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
948  * @sg: list of buffers
949  * @nents: number of buffers to map
950  * @dir: DMA transfer direction
951  *
952  * Map a set of buffers described by scatterlist in streaming mode for DMA.
953  * This is the scatter-gather version of the dma_map_single interface.
954  * Here the scatter gather list elements are each tagged with the
955  * appropriate dma address and length.  They are obtained via
956  * sg_dma_{address,length}.
957  *
958  * Device ownership issues as mentioned for dma_map_single are the same
959  * here.
960  */
961 int arm_dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
962                 enum dma_data_direction dir, struct dma_attrs *attrs)
963 {
964         struct dma_map_ops *ops = get_dma_ops(dev);
965         struct scatterlist *s;
966         int i, j;
967
968         for_each_sg(sg, s, nents, i) {
969 #ifdef CONFIG_NEED_SG_DMA_LENGTH
970                 s->dma_length = s->length;
971 #endif
972                 s->dma_address = ops->map_page(dev, sg_page(s), s->offset,
973                                                 s->length, dir, attrs);
974                 if (dma_mapping_error(dev, s->dma_address))
975                         goto bad_mapping;
976         }
977         return nents;
978
979  bad_mapping:
980         for_each_sg(sg, s, i, j)
981                 ops->unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir, attrs);
982         return 0;
983 }
984
985 /**
986  * arm_dma_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
987  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
988  * @sg: list of buffers
989  * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
990  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
991  *
992  * Unmap a set of streaming mode DMA translations.  Again, CPU access
993  * rules concerning calls here are the same as for dma_unmap_single().
994  */
995 void arm_dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
996                 enum dma_data_direction dir, struct dma_attrs *attrs)
997 {
998         struct dma_map_ops *ops = get_dma_ops(dev);
999         struct scatterlist *s;
1000
1001         int i;
1002
1003         for_each_sg(sg, s, nents, i)
1004                 ops->unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir, attrs);
1005 }
1006
1007 /**
1008  * arm_dma_sync_sg_for_cpu
1009  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1010  * @sg: list of buffers
1011  * @nents: number of buffers to map (returned from dma_map_sg)
1012  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1013  */
1014 void arm_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1015                         int nents, enum dma_data_direction dir)
1016 {
1017         struct dma_map_ops *ops = get_dma_ops(dev);
1018         struct scatterlist *s;
1019         int i;
1020
1021         for_each_sg(sg, s, nents, i)
1022                 ops->sync_single_for_cpu(dev, sg_dma_address(s), s->length,
1023                                          dir);
1024 }
1025
1026 /**
1027  * arm_dma_sync_sg_for_device
1028  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1029  * @sg: list of buffers
1030  * @nents: number of buffers to map (returned from dma_map_sg)
1031  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1032  */
1033 void arm_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1034                         int nents, enum dma_data_direction dir)
1035 {
1036         struct dma_map_ops *ops = get_dma_ops(dev);
1037         struct scatterlist *s;
1038         int i;
1039
1040         for_each_sg(sg, s, nents, i)
1041                 ops->sync_single_for_device(dev, sg_dma_address(s), s->length,
1042                                             dir);
1043 }
1044
1045 /*
1046  * Return whether the given device DMA address mask can be supported
1047  * properly.  For example, if your device can only drive the low 24-bits
1048  * during bus mastering, then you would pass 0x00ffffff as the mask
1049  * to this function.
1050  */
1051 int dma_supported(struct device *dev, u64 mask)
1052 {
1053         if (mask < (u64)arm_dma_limit)
1054                 return 0;
1055         return 1;
1056 }
1057 EXPORT_SYMBOL(dma_supported);
1058
1059 int arm_dma_set_mask(struct device *dev, u64 dma_mask)
1060 {
1061         if (!dev->dma_mask || !dma_supported(dev, dma_mask))
1062                 return -EIO;
1063
1064         *dev->dma_mask = dma_mask;
1065
1066         return 0;
1067 }
1068
1069 #define PREALLOC_DMA_DEBUG_ENTRIES      4096
1070
1071 static int __init dma_debug_do_init(void)
1072 {
1073         dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
1074         return 0;
1075 }
1076 fs_initcall(dma_debug_do_init);
1077
1078 #ifdef CONFIG_ARM_DMA_USE_IOMMU
1079
1080 /* IOMMU */
1081
1082 static inline dma_addr_t __alloc_iova(struct dma_iommu_mapping *mapping,
1083                                       size_t size)
1084 {
1085         unsigned int order = get_order(size);
1086         unsigned int align = 0;
1087         unsigned int count, start;
1088         unsigned long flags;
1089
1090         if (order > CONFIG_ARM_DMA_IOMMU_ALIGNMENT)
1091                 order = CONFIG_ARM_DMA_IOMMU_ALIGNMENT;
1092
1093         count = ((PAGE_ALIGN(size) >> PAGE_SHIFT) +
1094                  (1 << mapping->order) - 1) >> mapping->order;
1095
1096         if (order > mapping->order)
1097                 align = (1 << (order - mapping->order)) - 1;
1098
1099         spin_lock_irqsave(&mapping->lock, flags);
1100         start = bitmap_find_next_zero_area(mapping->bitmap, mapping->bits, 0,
1101                                            count, align);
1102         if (start > mapping->bits) {
1103                 spin_unlock_irqrestore(&mapping->lock, flags);
1104                 return DMA_ERROR_CODE;
1105         }
1106
1107         bitmap_set(mapping->bitmap, start, count);
1108         spin_unlock_irqrestore(&mapping->lock, flags);
1109
1110         return mapping->base + (start << (mapping->order + PAGE_SHIFT));
1111 }
1112
1113 static inline void __free_iova(struct dma_iommu_mapping *mapping,
1114                                dma_addr_t addr, size_t size)
1115 {
1116         unsigned int start = (addr - mapping->base) >>
1117                              (mapping->order + PAGE_SHIFT);
1118         unsigned int count = ((size >> PAGE_SHIFT) +
1119                               (1 << mapping->order) - 1) >> mapping->order;
1120         unsigned long flags;
1121
1122         spin_lock_irqsave(&mapping->lock, flags);
1123         bitmap_clear(mapping->bitmap, start, count);
1124         spin_unlock_irqrestore(&mapping->lock, flags);
1125 }
1126
1127 static struct page **__iommu_alloc_buffer(struct device *dev, size_t size,
1128                                           gfp_t gfp, struct dma_attrs *attrs)
1129 {
1130         struct page **pages;
1131         int count = size >> PAGE_SHIFT;
1132         int array_size = count * sizeof(struct page *);
1133         int i = 0;
1134
1135         if (array_size <= PAGE_SIZE)
1136                 pages = kzalloc(array_size, gfp);
1137         else
1138                 pages = vzalloc(array_size);
1139         if (!pages)
1140                 return NULL;
1141
1142         if (dma_get_attr(DMA_ATTR_FORCE_CONTIGUOUS, attrs))
1143         {
1144                 unsigned long order = get_order(size);
1145                 struct page *page;
1146
1147                 page = dma_alloc_from_contiguous(dev, count, order);
1148                 if (!page)
1149                         goto error;
1150
1151                 __dma_clear_buffer(page, size);
1152
1153                 for (i = 0; i < count; i++)
1154                         pages[i] = page + i;
1155
1156                 return pages;
1157         }
1158
1159         /*
1160          * IOMMU can map any pages, so himem can also be used here
1161          */
1162         gfp |= __GFP_NOWARN | __GFP_HIGHMEM;
1163
1164         while (count) {
1165                 int j, order = __fls(count);
1166
1167                 pages[i] = alloc_pages(gfp, order);
1168                 while (!pages[i] && order)
1169                         pages[i] = alloc_pages(gfp, --order);
1170                 if (!pages[i])
1171                         goto error;
1172
1173                 if (order) {
1174                         split_page(pages[i], order);
1175                         j = 1 << order;
1176                         while (--j)
1177                                 pages[i + j] = pages[i] + j;
1178                 }
1179
1180                 __dma_clear_buffer(pages[i], PAGE_SIZE << order);
1181                 i += 1 << order;
1182                 count -= 1 << order;
1183         }
1184
1185         return pages;
1186 error:
1187         while (i--)
1188                 if (pages[i])
1189                         __free_pages(pages[i], 0);
1190         if (array_size <= PAGE_SIZE)
1191                 kfree(pages);
1192         else
1193                 vfree(pages);
1194         return NULL;
1195 }
1196
1197 static int __iommu_free_buffer(struct device *dev, struct page **pages,
1198                                size_t size, struct dma_attrs *attrs)
1199 {
1200         int count = size >> PAGE_SHIFT;
1201         int array_size = count * sizeof(struct page *);
1202         int i;
1203
1204         if (dma_get_attr(DMA_ATTR_FORCE_CONTIGUOUS, attrs)) {
1205                 dma_release_from_contiguous(dev, pages[0], count);
1206         } else {
1207                 for (i = 0; i < count; i++)
1208                         if (pages[i])
1209                                 __free_pages(pages[i], 0);
1210         }
1211
1212         if (array_size <= PAGE_SIZE)
1213                 kfree(pages);
1214         else
1215                 vfree(pages);
1216         return 0;
1217 }
1218
1219 /*
1220  * Create a CPU mapping for a specified pages
1221  */
1222 static void *
1223 __iommu_alloc_remap(struct page **pages, size_t size, gfp_t gfp, pgprot_t prot,
1224                     const void *caller)
1225 {
1226         unsigned int i, nr_pages = PAGE_ALIGN(size) >> PAGE_SHIFT;
1227         struct vm_struct *area;
1228         unsigned long p;
1229
1230         area = get_vm_area_caller(size, VM_ARM_DMA_CONSISTENT | VM_USERMAP,
1231                                   caller);
1232         if (!area)
1233                 return NULL;
1234
1235         area->pages = pages;
1236         area->nr_pages = nr_pages;
1237         p = (unsigned long)area->addr;
1238
1239         for (i = 0; i < nr_pages; i++) {
1240                 phys_addr_t phys = __pfn_to_phys(page_to_pfn(pages[i]));
1241                 if (ioremap_page_range(p, p + PAGE_SIZE, phys, prot))
1242                         goto err;
1243                 p += PAGE_SIZE;
1244         }
1245         return area->addr;
1246 err:
1247         unmap_kernel_range((unsigned long)area->addr, size);
1248         vunmap(area->addr);
1249         return NULL;
1250 }
1251
1252 /*
1253  * Create a mapping in device IO address space for specified pages
1254  */
1255 static dma_addr_t
1256 __iommu_create_mapping(struct device *dev, struct page **pages, size_t size)
1257 {
1258         struct dma_iommu_mapping *mapping = dev->archdata.mapping;
1259         unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
1260         dma_addr_t dma_addr, iova;
1261         int i, ret = DMA_ERROR_CODE;
1262
1263         dma_addr = __alloc_iova(mapping, size);
1264         if (dma_addr == DMA_ERROR_CODE)
1265                 return dma_addr;
1266
1267         iova = dma_addr;
1268         for (i = 0; i < count; ) {
1269                 unsigned int next_pfn = page_to_pfn(pages[i]) + 1;
1270                 phys_addr_t phys = page_to_phys(pages[i]);
1271                 unsigned int len, j;
1272
1273                 for (j = i + 1; j < count; j++, next_pfn++)
1274                         if (page_to_pfn(pages[j]) != next_pfn)
1275                                 break;
1276
1277                 len = (j - i) << PAGE_SHIFT;
1278                 ret = iommu_map(mapping->domain, iova, phys, len, 0);
1279                 if (ret < 0)
1280                         goto fail;
1281                 iova += len;
1282                 i = j;
1283         }
1284         return dma_addr;
1285 fail:
1286         iommu_unmap(mapping->domain, dma_addr, iova-dma_addr);
1287         __free_iova(mapping, dma_addr, size);
1288         return DMA_ERROR_CODE;
1289 }
1290
1291 static int __iommu_remove_mapping(struct device *dev, dma_addr_t iova, size_t size)
1292 {
1293         struct dma_iommu_mapping *mapping = dev->archdata.mapping;
1294
1295         /*
1296          * add optional in-page offset from iova to size and align
1297          * result to page size
1298          */
1299         size = PAGE_ALIGN((iova & ~PAGE_MASK) + size);
1300         iova &= PAGE_MASK;
1301
1302         iommu_unmap(mapping->domain, iova, size);
1303         __free_iova(mapping, iova, size);
1304         return 0;
1305 }
1306
1307 static struct page **__atomic_get_pages(void *addr)
1308 {
1309         struct dma_pool *pool = &atomic_pool;
1310         struct page **pages = pool->pages;
1311         int offs = (addr - pool->vaddr) >> PAGE_SHIFT;
1312
1313         return pages + offs;
1314 }
1315
1316 static struct page **__iommu_get_pages(void *cpu_addr, struct dma_attrs *attrs)
1317 {
1318         struct vm_struct *area;
1319
1320         if (__in_atomic_pool(cpu_addr, PAGE_SIZE))
1321                 return __atomic_get_pages(cpu_addr);
1322
1323         if (dma_get_attr(DMA_ATTR_NO_KERNEL_MAPPING, attrs))
1324                 return cpu_addr;
1325
1326         area = find_vm_area(cpu_addr);
1327         if (area && (area->flags & VM_ARM_DMA_CONSISTENT))
1328                 return area->pages;
1329         return NULL;
1330 }
1331
1332 static void *__iommu_alloc_atomic(struct device *dev, size_t size,
1333                                   dma_addr_t *handle)
1334 {
1335         struct page *page;
1336         void *addr;
1337
1338         addr = __alloc_from_pool(size, &page);
1339         if (!addr)
1340                 return NULL;
1341
1342         *handle = __iommu_create_mapping(dev, &page, size);
1343         if (*handle == DMA_ERROR_CODE)
1344                 goto err_mapping;
1345
1346         return addr;
1347
1348 err_mapping:
1349         __free_from_pool(addr, size);
1350         return NULL;
1351 }
1352
1353 static void __iommu_free_atomic(struct device *dev, void *cpu_addr,
1354                                 dma_addr_t handle, size_t size)
1355 {
1356         __iommu_remove_mapping(dev, handle, size);
1357         __free_from_pool(cpu_addr, size);
1358 }
1359
1360 static void *arm_iommu_alloc_attrs(struct device *dev, size_t size,
1361             dma_addr_t *handle, gfp_t gfp, struct dma_attrs *attrs)
1362 {
1363         pgprot_t prot = __get_dma_pgprot(attrs, pgprot_kernel);
1364         struct page **pages;
1365         void *addr = NULL;
1366
1367         *handle = DMA_ERROR_CODE;
1368         size = PAGE_ALIGN(size);
1369
1370         if (!(gfp & __GFP_WAIT))
1371                 return __iommu_alloc_atomic(dev, size, handle);
1372
1373         pages = __iommu_alloc_buffer(dev, size, gfp, attrs);
1374         if (!pages)
1375                 return NULL;
1376
1377         *handle = __iommu_create_mapping(dev, pages, size);
1378         if (*handle == DMA_ERROR_CODE)
1379                 goto err_buffer;
1380
1381         if (dma_get_attr(DMA_ATTR_NO_KERNEL_MAPPING, attrs))
1382                 return pages;
1383
1384         addr = __iommu_alloc_remap(pages, size, gfp, prot,
1385                                    __builtin_return_address(0));
1386         if (!addr)
1387                 goto err_mapping;
1388
1389         return addr;
1390
1391 err_mapping:
1392         __iommu_remove_mapping(dev, *handle, size);
1393 err_buffer:
1394         __iommu_free_buffer(dev, pages, size, attrs);
1395         return NULL;
1396 }
1397
1398 static int arm_iommu_mmap_attrs(struct device *dev, struct vm_area_struct *vma,
1399                     void *cpu_addr, dma_addr_t dma_addr, size_t size,
1400                     struct dma_attrs *attrs)
1401 {
1402         unsigned long uaddr = vma->vm_start;
1403         unsigned long usize = vma->vm_end - vma->vm_start;
1404         struct page **pages = __iommu_get_pages(cpu_addr, attrs);
1405
1406         vma->vm_page_prot = __get_dma_pgprot(attrs, vma->vm_page_prot);
1407
1408         if (!pages)
1409                 return -ENXIO;
1410
1411         do {
1412                 int ret = vm_insert_page(vma, uaddr, *pages++);
1413                 if (ret) {
1414                         pr_err("Remapping memory failed: %d\n", ret);
1415                         return ret;
1416                 }
1417                 uaddr += PAGE_SIZE;
1418                 usize -= PAGE_SIZE;
1419         } while (usize > 0);
1420
1421         return 0;
1422 }
1423
1424 /*
1425  * free a page as defined by the above mapping.
1426  * Must not be called with IRQs disabled.
1427  */
1428 void arm_iommu_free_attrs(struct device *dev, size_t size, void *cpu_addr,
1429                           dma_addr_t handle, struct dma_attrs *attrs)
1430 {
1431         struct page **pages = __iommu_get_pages(cpu_addr, attrs);
1432         size = PAGE_ALIGN(size);
1433
1434         if (!pages) {
1435                 WARN(1, "trying to free invalid coherent area: %p\n", cpu_addr);
1436                 return;
1437         }
1438
1439         if (__in_atomic_pool(cpu_addr, size)) {
1440                 __iommu_free_atomic(dev, cpu_addr, handle, size);
1441                 return;
1442         }
1443
1444         if (!dma_get_attr(DMA_ATTR_NO_KERNEL_MAPPING, attrs)) {
1445                 unmap_kernel_range((unsigned long)cpu_addr, size);
1446                 vunmap(cpu_addr);
1447         }
1448
1449         __iommu_remove_mapping(dev, handle, size);
1450         __iommu_free_buffer(dev, pages, size, attrs);
1451 }
1452
1453 static int arm_iommu_get_sgtable(struct device *dev, struct sg_table *sgt,
1454                                  void *cpu_addr, dma_addr_t dma_addr,
1455                                  size_t size, struct dma_attrs *attrs)
1456 {
1457         unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
1458         struct page **pages = __iommu_get_pages(cpu_addr, attrs);
1459
1460         if (!pages)
1461                 return -ENXIO;
1462
1463         return sg_alloc_table_from_pages(sgt, pages, count, 0, size,
1464                                          GFP_KERNEL);
1465 }
1466
1467 /*
1468  * Map a part of the scatter-gather list into contiguous io address space
1469  */
1470 static int __map_sg_chunk(struct device *dev, struct scatterlist *sg,
1471                           size_t size, dma_addr_t *handle,
1472                           enum dma_data_direction dir, struct dma_attrs *attrs,
1473                           bool is_coherent)
1474 {
1475         struct dma_iommu_mapping *mapping = dev->archdata.mapping;
1476         dma_addr_t iova, iova_base;
1477         int ret = 0;
1478         unsigned int count;
1479         struct scatterlist *s;
1480
1481         size = PAGE_ALIGN(size);
1482         *handle = DMA_ERROR_CODE;
1483
1484         iova_base = iova = __alloc_iova(mapping, size);
1485         if (iova == DMA_ERROR_CODE)
1486                 return -ENOMEM;
1487
1488         for (count = 0, s = sg; count < (size >> PAGE_SHIFT); s = sg_next(s)) {
1489                 phys_addr_t phys = page_to_phys(sg_page(s));
1490                 unsigned int len = PAGE_ALIGN(s->offset + s->length);
1491
1492                 if (!is_coherent &&
1493                         !dma_get_attr(DMA_ATTR_SKIP_CPU_SYNC, attrs))
1494                         __dma_page_cpu_to_dev(sg_page(s), s->offset, s->length, dir);
1495
1496                 ret = iommu_map(mapping->domain, iova, phys, len, 0);
1497                 if (ret < 0)
1498                         goto fail;
1499                 count += len >> PAGE_SHIFT;
1500                 iova += len;
1501         }
1502         *handle = iova_base;
1503
1504         return 0;
1505 fail:
1506         iommu_unmap(mapping->domain, iova_base, count * PAGE_SIZE);
1507         __free_iova(mapping, iova_base, size);
1508         return ret;
1509 }
1510
1511 static int __iommu_map_sg(struct device *dev, struct scatterlist *sg, int nents,
1512                      enum dma_data_direction dir, struct dma_attrs *attrs,
1513                      bool is_coherent)
1514 {
1515         struct scatterlist *s = sg, *dma = sg, *start = sg;
1516         int i, count = 0;
1517         unsigned int offset = s->offset;
1518         unsigned int size = s->offset + s->length;
1519         unsigned int max = dma_get_max_seg_size(dev);
1520
1521         for (i = 1; i < nents; i++) {
1522                 s = sg_next(s);
1523
1524                 s->dma_address = DMA_ERROR_CODE;
1525                 s->dma_length = 0;
1526
1527                 if (s->offset || (size & ~PAGE_MASK) || size + s->length > max) {
1528                         if (__map_sg_chunk(dev, start, size, &dma->dma_address,
1529                             dir, attrs, is_coherent) < 0)
1530                                 goto bad_mapping;
1531
1532                         dma->dma_address += offset;
1533                         dma->dma_length = size - offset;
1534
1535                         size = offset = s->offset;
1536                         start = s;
1537                         dma = sg_next(dma);
1538                         count += 1;
1539                 }
1540                 size += s->length;
1541         }
1542         if (__map_sg_chunk(dev, start, size, &dma->dma_address, dir, attrs,
1543                 is_coherent) < 0)
1544                 goto bad_mapping;
1545
1546         dma->dma_address += offset;
1547         dma->dma_length = size - offset;
1548
1549         return count+1;
1550
1551 bad_mapping:
1552         for_each_sg(sg, s, count, i)
1553                 __iommu_remove_mapping(dev, sg_dma_address(s), sg_dma_len(s));
1554         return 0;
1555 }
1556
1557 /**
1558  * arm_coherent_iommu_map_sg - map a set of SG buffers for streaming mode DMA
1559  * @dev: valid struct device pointer
1560  * @sg: list of buffers
1561  * @nents: number of buffers to map
1562  * @dir: DMA transfer direction
1563  *
1564  * Map a set of i/o coherent buffers described by scatterlist in streaming
1565  * mode for DMA. The scatter gather list elements are merged together (if
1566  * possible) and tagged with the appropriate dma address and length. They are
1567  * obtained via sg_dma_{address,length}.
1568  */
1569 int arm_coherent_iommu_map_sg(struct device *dev, struct scatterlist *sg,
1570                 int nents, enum dma_data_direction dir, struct dma_attrs *attrs)
1571 {
1572         return __iommu_map_sg(dev, sg, nents, dir, attrs, true);
1573 }
1574
1575 /**
1576  * arm_iommu_map_sg - map a set of SG buffers for streaming mode DMA
1577  * @dev: valid struct device pointer
1578  * @sg: list of buffers
1579  * @nents: number of buffers to map
1580  * @dir: DMA transfer direction
1581  *
1582  * Map a set of buffers described by scatterlist in streaming mode for DMA.
1583  * The scatter gather list elements are merged together (if possible) and
1584  * tagged with the appropriate dma address and length. They are obtained via
1585  * sg_dma_{address,length}.
1586  */
1587 int arm_iommu_map_sg(struct device *dev, struct scatterlist *sg,
1588                 int nents, enum dma_data_direction dir, struct dma_attrs *attrs)
1589 {
1590         return __iommu_map_sg(dev, sg, nents, dir, attrs, false);
1591 }
1592
1593 static void __iommu_unmap_sg(struct device *dev, struct scatterlist *sg,
1594                 int nents, enum dma_data_direction dir, struct dma_attrs *attrs,
1595                 bool is_coherent)
1596 {
1597         struct scatterlist *s;
1598         int i;
1599
1600         for_each_sg(sg, s, nents, i) {
1601                 if (sg_dma_len(s))
1602                         __iommu_remove_mapping(dev, sg_dma_address(s),
1603                                                sg_dma_len(s));
1604                 if (!is_coherent &&
1605                     !dma_get_attr(DMA_ATTR_SKIP_CPU_SYNC, attrs))
1606                         __dma_page_dev_to_cpu(sg_page(s), s->offset,
1607                                               s->length, dir);
1608         }
1609 }
1610
1611 /**
1612  * arm_coherent_iommu_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
1613  * @dev: valid struct device pointer
1614  * @sg: list of buffers
1615  * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
1616  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1617  *
1618  * Unmap a set of streaming mode DMA translations.  Again, CPU access
1619  * rules concerning calls here are the same as for dma_unmap_single().
1620  */
1621 void arm_coherent_iommu_unmap_sg(struct device *dev, struct scatterlist *sg,
1622                 int nents, enum dma_data_direction dir, struct dma_attrs *attrs)
1623 {
1624         __iommu_unmap_sg(dev, sg, nents, dir, attrs, true);
1625 }
1626
1627 /**
1628  * arm_iommu_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
1629  * @dev: valid struct device pointer
1630  * @sg: list of buffers
1631  * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
1632  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1633  *
1634  * Unmap a set of streaming mode DMA translations.  Again, CPU access
1635  * rules concerning calls here are the same as for dma_unmap_single().
1636  */
1637 void arm_iommu_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
1638                         enum dma_data_direction dir, struct dma_attrs *attrs)
1639 {
1640         __iommu_unmap_sg(dev, sg, nents, dir, attrs, false);
1641 }
1642
1643 /**
1644  * arm_iommu_sync_sg_for_cpu
1645  * @dev: valid struct device pointer
1646  * @sg: list of buffers
1647  * @nents: number of buffers to map (returned from dma_map_sg)
1648  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1649  */
1650 void arm_iommu_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1651                         int nents, enum dma_data_direction dir)
1652 {
1653         struct scatterlist *s;
1654         int i;
1655
1656         for_each_sg(sg, s, nents, i)
1657                 __dma_page_dev_to_cpu(sg_page(s), s->offset, s->length, dir);
1658
1659 }
1660
1661 /**
1662  * arm_iommu_sync_sg_for_device
1663  * @dev: valid struct device pointer
1664  * @sg: list of buffers
1665  * @nents: number of buffers to map (returned from dma_map_sg)
1666  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1667  */
1668 void arm_iommu_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1669                         int nents, enum dma_data_direction dir)
1670 {
1671         struct scatterlist *s;
1672         int i;
1673
1674         for_each_sg(sg, s, nents, i)
1675                 __dma_page_cpu_to_dev(sg_page(s), s->offset, s->length, dir);
1676 }
1677
1678
1679 /**
1680  * arm_coherent_iommu_map_page
1681  * @dev: valid struct device pointer
1682  * @page: page that buffer resides in
1683  * @offset: offset into page for start of buffer
1684  * @size: size of buffer to map
1685  * @dir: DMA transfer direction
1686  *
1687  * Coherent IOMMU aware version of arm_dma_map_page()
1688  */
1689 static dma_addr_t arm_coherent_iommu_map_page(struct device *dev, struct page *page,
1690              unsigned long offset, size_t size, enum dma_data_direction dir,
1691              struct dma_attrs *attrs)
1692 {
1693         struct dma_iommu_mapping *mapping = dev->archdata.mapping;
1694         dma_addr_t dma_addr;
1695         int ret, len = PAGE_ALIGN(size + offset);
1696
1697         dma_addr = __alloc_iova(mapping, len);
1698         if (dma_addr == DMA_ERROR_CODE)
1699                 return dma_addr;
1700
1701         ret = iommu_map(mapping->domain, dma_addr, page_to_phys(page), len, 0);
1702         if (ret < 0)
1703                 goto fail;
1704
1705         return dma_addr + offset;
1706 fail:
1707         __free_iova(mapping, dma_addr, len);
1708         return DMA_ERROR_CODE;
1709 }
1710
1711 /**
1712  * arm_iommu_map_page
1713  * @dev: valid struct device pointer
1714  * @page: page that buffer resides in
1715  * @offset: offset into page for start of buffer
1716  * @size: size of buffer to map
1717  * @dir: DMA transfer direction
1718  *
1719  * IOMMU aware version of arm_dma_map_page()
1720  */
1721 static dma_addr_t arm_iommu_map_page(struct device *dev, struct page *page,
1722              unsigned long offset, size_t size, enum dma_data_direction dir,
1723              struct dma_attrs *attrs)
1724 {
1725         if (!dma_get_attr(DMA_ATTR_SKIP_CPU_SYNC, attrs))
1726                 __dma_page_cpu_to_dev(page, offset, size, dir);
1727
1728         return arm_coherent_iommu_map_page(dev, page, offset, size, dir, attrs);
1729 }
1730
1731 /**
1732  * arm_coherent_iommu_unmap_page
1733  * @dev: valid struct device pointer
1734  * @handle: DMA address of buffer
1735  * @size: size of buffer (same as passed to dma_map_page)
1736  * @dir: DMA transfer direction (same as passed to dma_map_page)
1737  *
1738  * Coherent IOMMU aware version of arm_dma_unmap_page()
1739  */
1740 static void arm_coherent_iommu_unmap_page(struct device *dev, dma_addr_t handle,
1741                 size_t size, enum dma_data_direction dir,
1742                 struct dma_attrs *attrs)
1743 {
1744         struct dma_iommu_mapping *mapping = dev->archdata.mapping;
1745         dma_addr_t iova = handle & PAGE_MASK;
1746         int offset = handle & ~PAGE_MASK;
1747         int len = PAGE_ALIGN(size + offset);
1748
1749         if (!iova)
1750                 return;
1751
1752         iommu_unmap(mapping->domain, iova, len);
1753         __free_iova(mapping, iova, len);
1754 }
1755
1756 /**
1757  * arm_iommu_unmap_page
1758  * @dev: valid struct device pointer
1759  * @handle: DMA address of buffer
1760  * @size: size of buffer (same as passed to dma_map_page)
1761  * @dir: DMA transfer direction (same as passed to dma_map_page)
1762  *
1763  * IOMMU aware version of arm_dma_unmap_page()
1764  */
1765 static void arm_iommu_unmap_page(struct device *dev, dma_addr_t handle,
1766                 size_t size, enum dma_data_direction dir,
1767                 struct dma_attrs *attrs)
1768 {
1769         struct dma_iommu_mapping *mapping = dev->archdata.mapping;
1770         dma_addr_t iova = handle & PAGE_MASK;
1771         struct page *page = phys_to_page(iommu_iova_to_phys(mapping->domain, iova));
1772         int offset = handle & ~PAGE_MASK;
1773         int len = PAGE_ALIGN(size + offset);
1774
1775         if (!iova)
1776                 return;
1777
1778         if (!dma_get_attr(DMA_ATTR_SKIP_CPU_SYNC, attrs))
1779                 __dma_page_dev_to_cpu(page, offset, size, dir);
1780
1781         iommu_unmap(mapping->domain, iova, len);
1782         __free_iova(mapping, iova, len);
1783 }
1784
1785 static void arm_iommu_sync_single_for_cpu(struct device *dev,
1786                 dma_addr_t handle, size_t size, enum dma_data_direction dir)
1787 {
1788         struct dma_iommu_mapping *mapping = dev->archdata.mapping;
1789         dma_addr_t iova = handle & PAGE_MASK;
1790         struct page *page = phys_to_page(iommu_iova_to_phys(mapping->domain, iova));
1791         unsigned int offset = handle & ~PAGE_MASK;
1792
1793         if (!iova)
1794                 return;
1795
1796         __dma_page_dev_to_cpu(page, offset, size, dir);
1797 }
1798
1799 static void arm_iommu_sync_single_for_device(struct device *dev,
1800                 dma_addr_t handle, size_t size, enum dma_data_direction dir)
1801 {
1802         struct dma_iommu_mapping *mapping = dev->archdata.mapping;
1803         dma_addr_t iova = handle & PAGE_MASK;
1804         struct page *page = phys_to_page(iommu_iova_to_phys(mapping->domain, iova));
1805         unsigned int offset = handle & ~PAGE_MASK;
1806
1807         if (!iova)
1808                 return;
1809
1810         __dma_page_cpu_to_dev(page, offset, size, dir);
1811 }
1812
1813 struct dma_map_ops iommu_ops = {
1814         .alloc          = arm_iommu_alloc_attrs,
1815         .free           = arm_iommu_free_attrs,
1816         .mmap           = arm_iommu_mmap_attrs,
1817         .get_sgtable    = arm_iommu_get_sgtable,
1818
1819         .map_page               = arm_iommu_map_page,
1820         .unmap_page             = arm_iommu_unmap_page,
1821         .sync_single_for_cpu    = arm_iommu_sync_single_for_cpu,
1822         .sync_single_for_device = arm_iommu_sync_single_for_device,
1823
1824         .map_sg                 = arm_iommu_map_sg,
1825         .unmap_sg               = arm_iommu_unmap_sg,
1826         .sync_sg_for_cpu        = arm_iommu_sync_sg_for_cpu,
1827         .sync_sg_for_device     = arm_iommu_sync_sg_for_device,
1828
1829         .set_dma_mask           = arm_dma_set_mask,
1830 };
1831
1832 struct dma_map_ops iommu_coherent_ops = {
1833         .alloc          = arm_iommu_alloc_attrs,
1834         .free           = arm_iommu_free_attrs,
1835         .mmap           = arm_iommu_mmap_attrs,
1836         .get_sgtable    = arm_iommu_get_sgtable,
1837
1838         .map_page       = arm_coherent_iommu_map_page,
1839         .unmap_page     = arm_coherent_iommu_unmap_page,
1840
1841         .map_sg         = arm_coherent_iommu_map_sg,
1842         .unmap_sg       = arm_coherent_iommu_unmap_sg,
1843
1844         .set_dma_mask   = arm_dma_set_mask,
1845 };
1846
1847 /**
1848  * arm_iommu_create_mapping
1849  * @bus: pointer to the bus holding the client device (for IOMMU calls)
1850  * @base: start address of the valid IO address space
1851  * @size: size of the valid IO address space
1852  * @order: accuracy of the IO addresses allocations
1853  *
1854  * Creates a mapping structure which holds information about used/unused
1855  * IO address ranges, which is required to perform memory allocation and
1856  * mapping with IOMMU aware functions.
1857  *
1858  * The client device need to be attached to the mapping with
1859  * arm_iommu_attach_device function.
1860  */
1861 struct dma_iommu_mapping *
1862 arm_iommu_create_mapping(struct bus_type *bus, dma_addr_t base, size_t size,
1863                          int order)
1864 {
1865         unsigned int count = size >> (PAGE_SHIFT + order);
1866         unsigned int bitmap_size = BITS_TO_LONGS(count) * sizeof(long);
1867         struct dma_iommu_mapping *mapping;
1868         int err = -ENOMEM;
1869
1870         if (!count)
1871                 return ERR_PTR(-EINVAL);
1872
1873         mapping = kzalloc(sizeof(struct dma_iommu_mapping), GFP_KERNEL);
1874         if (!mapping)
1875                 goto err;
1876
1877         mapping->bitmap = kzalloc(bitmap_size, GFP_KERNEL);
1878         if (!mapping->bitmap)
1879                 goto err2;
1880
1881         mapping->base = base;
1882         mapping->bits = BITS_PER_BYTE * bitmap_size;
1883         mapping->order = order;
1884         spin_lock_init(&mapping->lock);
1885
1886         mapping->domain = iommu_domain_alloc(bus);
1887         if (!mapping->domain)
1888                 goto err3;
1889
1890         kref_init(&mapping->kref);
1891         return mapping;
1892 err3:
1893         kfree(mapping->bitmap);
1894 err2:
1895         kfree(mapping);
1896 err:
1897         return ERR_PTR(err);
1898 }
1899 EXPORT_SYMBOL_GPL(arm_iommu_create_mapping);
1900
1901 static void release_iommu_mapping(struct kref *kref)
1902 {
1903         struct dma_iommu_mapping *mapping =
1904                 container_of(kref, struct dma_iommu_mapping, kref);
1905
1906         iommu_domain_free(mapping->domain);
1907         kfree(mapping->bitmap);
1908         kfree(mapping);
1909 }
1910
1911 void arm_iommu_release_mapping(struct dma_iommu_mapping *mapping)
1912 {
1913         if (mapping)
1914                 kref_put(&mapping->kref, release_iommu_mapping);
1915 }
1916 EXPORT_SYMBOL_GPL(arm_iommu_release_mapping);
1917
1918 /**
1919  * arm_iommu_attach_device
1920  * @dev: valid struct device pointer
1921  * @mapping: io address space mapping structure (returned from
1922  *      arm_iommu_create_mapping)
1923  *
1924  * Attaches specified io address space mapping to the provided device,
1925  * this replaces the dma operations (dma_map_ops pointer) with the
1926  * IOMMU aware version. More than one client might be attached to
1927  * the same io address space mapping.
1928  */
1929 int arm_iommu_attach_device(struct device *dev,
1930                             struct dma_iommu_mapping *mapping)
1931 {
1932         int err;
1933
1934         err = iommu_attach_device(mapping->domain, dev);
1935         if (err)
1936                 return err;
1937
1938         kref_get(&mapping->kref);
1939         dev->archdata.mapping = mapping;
1940         set_dma_ops(dev, &iommu_ops);
1941
1942         pr_debug("Attached IOMMU controller to %s device.\n", dev_name(dev));
1943         return 0;
1944 }
1945 EXPORT_SYMBOL_GPL(arm_iommu_attach_device);
1946
1947 /**
1948  * arm_iommu_detach_device
1949  * @dev: valid struct device pointer
1950  *
1951  * Detaches the provided device from a previously attached map.
1952  * This voids the dma operations (dma_map_ops pointer)
1953  */
1954 void arm_iommu_detach_device(struct device *dev)
1955 {
1956         struct dma_iommu_mapping *mapping;
1957
1958         mapping = to_dma_iommu_mapping(dev);
1959         if (!mapping) {
1960                 dev_warn(dev, "Not attached\n");
1961                 return;
1962         }
1963
1964         iommu_detach_device(mapping->domain, dev);
1965         kref_put(&mapping->kref, release_iommu_mapping);
1966         mapping = NULL;
1967         set_dma_ops(dev, NULL);
1968
1969         pr_debug("Detached IOMMU controller from %s device.\n", dev_name(dev));
1970 }
1971 EXPORT_SYMBOL_GPL(arm_iommu_detach_device);
1972
1973 #endif