blob: 0a75058c11f36746b15fe53d5bb273afe394d4c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King0ddbccd2008-09-25 15:59:19 +01002 * linux/arch/arm/mm/dma-mapping.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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>
Laura Abbott36d0fd22014-10-09 15:26:42 -070014#include <linux/genalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
17#include <linux/list.h>
18#include <linux/init.h>
19#include <linux/device.h>
20#include <linux/dma-mapping.h>
Marek Szyprowskic7909502011-12-29 13:09:51 +010021#include <linux/dma-contiguous.h>
Nicolas Pitre39af22a2010-12-15 15:14:45 -050022#include <linux/highmem.h>
Marek Szyprowskic7909502011-12-29 13:09:51 +010023#include <linux/memblock.h>
Jon Medhurst99d17172011-08-02 17:28:27 +010024#include <linux/slab.h>
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +020025#include <linux/iommu.h>
Marek Szyprowskie9da6e92012-07-30 09:11:33 +020026#include <linux/io.h>
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +020027#include <linux/vmalloc.h>
Alessandro Rubini158e8bf2012-06-24 12:46:26 +010028#include <linux/sizes.h>
Joonsoo Kima2541292014-08-06 16:05:25 -070029#include <linux/cma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Lennert Buytenhek23759dc2006-04-02 00:07:39 +010031#include <asm/memory.h>
Nicolas Pitre43377452009-03-12 22:52:09 -040032#include <asm/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/tlbflush.h>
Jon Medhurst99d17172011-08-02 17:28:27 +010035#include <asm/mach/arch.h>
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +020036#include <asm/dma-iommu.h>
Marek Szyprowskic7909502011-12-29 13:09:51 +010037#include <asm/mach/map.h>
38#include <asm/system_info.h>
39#include <asm/dma-contiguous.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Russell King1234e3f2015-07-24 09:10:55 +010041#include "dma.h"
Russell King022ae532011-07-08 21:26:59 +010042#include "mm.h"
43
Rabin Vincentb4268672016-03-03 15:58:01 +010044struct arm_dma_alloc_args {
45 struct device *dev;
46 size_t size;
47 gfp_t gfp;
48 pgprot_t prot;
49 const void *caller;
50 bool want_vaddr;
Gregory CLEMENTf1270892016-04-15 11:15:18 +010051 int coherent_flag;
Rabin Vincentb4268672016-03-03 15:58:01 +010052};
53
54struct arm_dma_free_args {
55 struct device *dev;
56 size_t size;
57 void *cpu_addr;
58 struct page *page;
59 bool want_vaddr;
60};
61
Gregory CLEMENTf1270892016-04-15 11:15:18 +010062#define NORMAL 0
63#define COHERENT 1
64
Rabin Vincentb4268672016-03-03 15:58:01 +010065struct arm_dma_allocator {
66 void *(*alloc)(struct arm_dma_alloc_args *args,
67 struct page **ret_page);
68 void (*free)(struct arm_dma_free_args *args);
69};
70
Rabin Vincent19e6e5e2016-03-03 15:58:00 +010071struct arm_dma_buffer {
72 struct list_head list;
73 void *virt;
Rabin Vincentb4268672016-03-03 15:58:01 +010074 struct arm_dma_allocator *allocator;
Rabin Vincent19e6e5e2016-03-03 15:58:00 +010075};
76
77static LIST_HEAD(arm_dma_bufs);
78static DEFINE_SPINLOCK(arm_dma_bufs_lock);
79
80static struct arm_dma_buffer *arm_dma_buffer_find(void *virt)
81{
82 struct arm_dma_buffer *buf, *found = NULL;
83 unsigned long flags;
84
85 spin_lock_irqsave(&arm_dma_bufs_lock, flags);
86 list_for_each_entry(buf, &arm_dma_bufs, list) {
87 if (buf->virt == virt) {
88 list_del(&buf->list);
89 found = buf;
90 break;
91 }
92 }
93 spin_unlock_irqrestore(&arm_dma_bufs_lock, flags);
94 return found;
95}
96
Marek Szyprowski15237e12012-02-10 19:55:20 +010097/*
98 * The DMA API is built upon the notion of "buffer ownership". A buffer
99 * is either exclusively owned by the CPU (and therefore may be accessed
100 * by it) or exclusively owned by the DMA device. These helper functions
101 * represent the transitions between these two ownership states.
102 *
103 * Note, however, that on later ARMs, this notion does not work due to
104 * speculative prefetches. We model our approach on the assumption that
105 * the CPU does do speculative prefetches, which means we clean caches
106 * before transfers and delay cache invalidation until transfer completion.
107 *
Marek Szyprowski15237e12012-02-10 19:55:20 +0100108 */
Marek Szyprowski51fde3492012-02-10 19:55:20 +0100109static void __dma_page_cpu_to_dev(struct page *, unsigned long,
Marek Szyprowski15237e12012-02-10 19:55:20 +0100110 size_t, enum dma_data_direction);
Marek Szyprowski51fde3492012-02-10 19:55:20 +0100111static void __dma_page_dev_to_cpu(struct page *, unsigned long,
Marek Szyprowski15237e12012-02-10 19:55:20 +0100112 size_t, enum dma_data_direction);
113
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100114/**
115 * arm_dma_map_page - map a portion of a page for streaming DMA
116 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
117 * @page: page that buffer resides in
118 * @offset: offset into page for start of buffer
119 * @size: size of buffer to map
120 * @dir: DMA transfer direction
121 *
122 * Ensure that any data held in the cache is appropriately discarded
123 * or written back.
124 *
125 * The device owns this memory once this call has completed. The CPU
126 * can regain ownership by calling dma_unmap_page().
127 */
Marek Szyprowski51fde3492012-02-10 19:55:20 +0100128static dma_addr_t arm_dma_map_page(struct device *dev, struct page *page,
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100129 unsigned long offset, size_t size, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700130 unsigned long attrs)
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100131{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700132 if ((attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
Marek Szyprowski51fde3492012-02-10 19:55:20 +0100133 __dma_page_cpu_to_dev(page, offset, size, dir);
134 return pfn_to_dma(dev, page_to_pfn(page)) + offset;
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100135}
136
Rob Herringdd37e942012-08-21 12:20:17 +0200137static dma_addr_t arm_coherent_dma_map_page(struct device *dev, struct page *page,
138 unsigned long offset, size_t size, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700139 unsigned long attrs)
Rob Herringdd37e942012-08-21 12:20:17 +0200140{
141 return pfn_to_dma(dev, page_to_pfn(page)) + offset;
142}
143
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100144/**
145 * arm_dma_unmap_page - unmap a buffer previously mapped through dma_map_page()
146 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
147 * @handle: DMA address of buffer
148 * @size: size of buffer (same as passed to dma_map_page)
149 * @dir: DMA transfer direction (same as passed to dma_map_page)
150 *
151 * Unmap a page streaming mode DMA translation. The handle and size
152 * must match what was provided in the previous dma_map_page() call.
153 * All other usages are undefined.
154 *
155 * After this call, reads by the CPU to the buffer are guaranteed to see
156 * whatever the device wrote there.
157 */
Marek Szyprowski51fde3492012-02-10 19:55:20 +0100158static void arm_dma_unmap_page(struct device *dev, dma_addr_t handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700159 size_t size, enum dma_data_direction dir, unsigned long attrs)
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100160{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700161 if ((attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
Marek Szyprowski51fde3492012-02-10 19:55:20 +0100162 __dma_page_dev_to_cpu(pfn_to_page(dma_to_pfn(dev, handle)),
163 handle & ~PAGE_MASK, size, dir);
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100164}
165
Marek Szyprowski51fde3492012-02-10 19:55:20 +0100166static void arm_dma_sync_single_for_cpu(struct device *dev,
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100167 dma_addr_t handle, size_t size, enum dma_data_direction dir)
168{
169 unsigned int offset = handle & (PAGE_SIZE - 1);
170 struct page *page = pfn_to_page(dma_to_pfn(dev, handle-offset));
Rob Herringdd37e942012-08-21 12:20:17 +0200171 __dma_page_dev_to_cpu(page, offset, size, dir);
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100172}
173
Marek Szyprowski51fde3492012-02-10 19:55:20 +0100174static void arm_dma_sync_single_for_device(struct device *dev,
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100175 dma_addr_t handle, size_t size, enum dma_data_direction dir)
176{
177 unsigned int offset = handle & (PAGE_SIZE - 1);
178 struct page *page = pfn_to_page(dma_to_pfn(dev, handle-offset));
Rob Herringdd37e942012-08-21 12:20:17 +0200179 __dma_page_cpu_to_dev(page, offset, size, dir);
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100180}
181
Bart Van Assche52997092017-01-20 13:04:01 -0800182const struct dma_map_ops arm_dma_ops = {
Marek Szyprowskif99d6032012-05-16 18:31:23 +0200183 .alloc = arm_dma_alloc,
184 .free = arm_dma_free,
185 .mmap = arm_dma_mmap,
Marek Szyprowskidc2832e2012-06-13 10:01:15 +0200186 .get_sgtable = arm_dma_get_sgtable,
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100187 .map_page = arm_dma_map_page,
188 .unmap_page = arm_dma_unmap_page,
189 .map_sg = arm_dma_map_sg,
190 .unmap_sg = arm_dma_unmap_sg,
Christoph Hellwigcfced782019-01-04 18:20:05 +0100191 .map_resource = dma_direct_map_resource,
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100192 .sync_single_for_cpu = arm_dma_sync_single_for_cpu,
193 .sync_single_for_device = arm_dma_sync_single_for_device,
194 .sync_sg_for_cpu = arm_dma_sync_sg_for_cpu,
195 .sync_sg_for_device = arm_dma_sync_sg_for_device,
Christoph Hellwig418a7a72017-05-22 11:20:18 +0200196 .dma_supported = arm_dma_supported,
Marek Szyprowski2dc6a012012-02-10 19:55:20 +0100197};
198EXPORT_SYMBOL(arm_dma_ops);
199
Rob Herringdd37e942012-08-21 12:20:17 +0200200static void *arm_coherent_dma_alloc(struct device *dev, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700201 dma_addr_t *handle, gfp_t gfp, unsigned long attrs);
Rob Herringdd37e942012-08-21 12:20:17 +0200202static void arm_coherent_dma_free(struct device *dev, size_t size, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700203 dma_addr_t handle, unsigned long attrs);
Mike Looijmans55af8a92015-06-03 11:25:31 +0100204static int arm_coherent_dma_mmap(struct device *dev, struct vm_area_struct *vma,
205 void *cpu_addr, dma_addr_t dma_addr, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700206 unsigned long attrs);
Rob Herringdd37e942012-08-21 12:20:17 +0200207
Bart Van Assche52997092017-01-20 13:04:01 -0800208const struct dma_map_ops arm_coherent_dma_ops = {
Rob Herringdd37e942012-08-21 12:20:17 +0200209 .alloc = arm_coherent_dma_alloc,
210 .free = arm_coherent_dma_free,
Mike Looijmans55af8a92015-06-03 11:25:31 +0100211 .mmap = arm_coherent_dma_mmap,
Rob Herringdd37e942012-08-21 12:20:17 +0200212 .get_sgtable = arm_dma_get_sgtable,
213 .map_page = arm_coherent_dma_map_page,
214 .map_sg = arm_dma_map_sg,
Christoph Hellwigcfced782019-01-04 18:20:05 +0100215 .map_resource = dma_direct_map_resource,
Christoph Hellwig418a7a72017-05-22 11:20:18 +0200216 .dma_supported = arm_dma_supported,
Rob Herringdd37e942012-08-21 12:20:17 +0200217};
218EXPORT_SYMBOL(arm_coherent_dma_ops);
219
Russell King9f28cde2013-12-06 12:30:42 +0000220static int __dma_supported(struct device *dev, u64 mask, bool warn)
221{
222 unsigned long max_dma_pfn;
223
224 /*
225 * If the mask allows for more memory than we can address,
226 * and we actually have that much memory, then we must
227 * indicate that DMA to this device is not supported.
228 */
229 if (sizeof(mask) != sizeof(dma_addr_t) &&
230 mask > (dma_addr_t)~0 &&
Russell King8bf12682015-03-10 16:41:35 +0000231 dma_to_pfn(dev, ~0) < max_pfn - 1) {
Russell King9f28cde2013-12-06 12:30:42 +0000232 if (warn) {
233 dev_warn(dev, "Coherent DMA mask %#llx is larger than dma_addr_t allows\n",
234 mask);
235 dev_warn(dev, "Driver did not use or check the return value from dma_set_coherent_mask()?\n");
236 }
237 return 0;
238 }
239
240 max_dma_pfn = min(max_pfn, arm_dma_pfn_limit);
241
242 /*
243 * Translate the device's DMA mask to a PFN limit. This
244 * PFN number includes the page which we can DMA to.
245 */
246 if (dma_to_pfn(dev, mask) < max_dma_pfn) {
247 if (warn)
248 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",
249 mask,
250 dma_to_pfn(dev, 0), dma_to_pfn(dev, mask) + 1,
251 max_dma_pfn + 1);
252 return 0;
253 }
254
255 return 1;
256}
257
Catalin Marinasab6494f2009-07-24 12:35:02 +0100258static u64 get_coherent_dma_mask(struct device *dev)
259{
Russell King4dcfa602013-07-09 12:14:49 +0100260 u64 mask = (u64)DMA_BIT_MASK(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Catalin Marinasab6494f2009-07-24 12:35:02 +0100262 if (dev) {
263 mask = dev->coherent_dma_mask;
264
265 /*
266 * Sanity check the DMA mask - it must be non-zero, and
267 * must be able to be satisfied by a DMA allocation.
268 */
269 if (mask == 0) {
270 dev_warn(dev, "coherent DMA mask is unset\n");
271 return 0;
272 }
273
Russell King9f28cde2013-12-06 12:30:42 +0000274 if (!__dma_supported(dev, mask, true))
Russell King4dcfa602013-07-09 12:14:49 +0100275 return 0;
Catalin Marinasab6494f2009-07-24 12:35:02 +0100276 }
277
278 return mask;
279}
280
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100281static void __dma_clear_buffer(struct page *page, size_t size, int coherent_flag)
Marek Szyprowskic7909502011-12-29 13:09:51 +0100282{
Marek Szyprowskic7909502011-12-29 13:09:51 +0100283 /*
284 * Ensure that the allocated pages are zeroed, and that any data
285 * lurking in the kernel direct-mapped region is invalidated.
286 */
Marek Szyprowski9848e482013-01-16 15:38:44 +0100287 if (PageHighMem(page)) {
288 phys_addr_t base = __pfn_to_phys(page_to_pfn(page));
289 phys_addr_t end = base + size;
290 while (size > 0) {
291 void *ptr = kmap_atomic(page);
292 memset(ptr, 0, PAGE_SIZE);
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100293 if (coherent_flag != COHERENT)
294 dmac_flush_range(ptr, ptr + PAGE_SIZE);
Marek Szyprowski9848e482013-01-16 15:38:44 +0100295 kunmap_atomic(ptr);
296 page++;
297 size -= PAGE_SIZE;
298 }
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100299 if (coherent_flag != COHERENT)
300 outer_flush_range(base, end);
Marek Szyprowski9848e482013-01-16 15:38:44 +0100301 } else {
302 void *ptr = page_address(page);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +0200303 memset(ptr, 0, size);
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100304 if (coherent_flag != COHERENT) {
305 dmac_flush_range(ptr, ptr + size);
306 outer_flush_range(__pa(ptr), __pa(ptr) + size);
307 }
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +0200308 }
Marek Szyprowskic7909502011-12-29 13:09:51 +0100309}
310
Russell King7a9a32a2009-11-19 15:31:07 +0000311/*
312 * Allocate a DMA buffer for 'dev' of size 'size' using the
313 * specified gfp mask. Note that 'size' must be page aligned.
314 */
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100315static struct page *__dma_alloc_buffer(struct device *dev, size_t size,
316 gfp_t gfp, int coherent_flag)
Russell King7a9a32a2009-11-19 15:31:07 +0000317{
318 unsigned long order = get_order(size);
319 struct page *page, *p, *e;
Russell King7a9a32a2009-11-19 15:31:07 +0000320
321 page = alloc_pages(gfp, order);
322 if (!page)
323 return NULL;
324
325 /*
326 * Now split the huge page and free the excess pages
327 */
328 split_page(page, order);
329 for (p = page + (size >> PAGE_SHIFT), e = page + (1 << order); p < e; p++)
330 __free_page(p);
331
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100332 __dma_clear_buffer(page, size, coherent_flag);
Russell King7a9a32a2009-11-19 15:31:07 +0000333
334 return page;
335}
336
337/*
338 * Free a DMA buffer. 'size' must be page aligned.
339 */
340static void __dma_free_buffer(struct page *page, size_t size)
341{
342 struct page *e = page + (size >> PAGE_SHIFT);
343
344 while (page < e) {
345 __free_page(page);
346 page++;
347 }
348}
349
Marek Szyprowskic7909502011-12-29 13:09:51 +0100350static void *__alloc_from_contiguous(struct device *dev, size_t size,
Marek Szyprowski9848e482013-01-16 15:38:44 +0100351 pgprot_t prot, struct page **ret_page,
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100352 const void *caller, bool want_vaddr,
Lucas Stach712c6042017-02-24 14:58:44 -0800353 int coherent_flag, gfp_t gfp);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100354
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200355static void *__alloc_remap_buffer(struct device *dev, size_t size, gfp_t gfp,
356 pgprot_t prot, struct page **ret_page,
Carlo Caione6e8266e2015-02-09 10:38:35 +0100357 const void *caller, bool want_vaddr);
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200358
359static void *
360__dma_alloc_remap(struct page *page, size_t size, gfp_t gfp, pgprot_t prot,
361 const void *caller)
362{
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200363 /*
364 * DMA allocation can be mapped to user space, so lets
365 * set VM_USERMAP flags too.
366 */
Laura Abbott513510d2014-10-09 15:26:40 -0700367 return dma_common_contiguous_remap(page, size,
368 VM_ARM_DMA_CONSISTENT | VM_USERMAP,
369 prot, caller);
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200370}
371
372static void __dma_free_remap(void *cpu_addr, size_t size)
373{
Laura Abbott513510d2014-10-09 15:26:40 -0700374 dma_common_free_remap(cpu_addr, size,
375 VM_ARM_DMA_CONSISTENT | VM_USERMAP);
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200376}
377
Marek Szyprowski6e5267a2012-08-20 11:19:25 +0200378#define DEFAULT_DMA_COHERENT_POOL_SIZE SZ_256K
Vladimir Murzinb337e1c2017-09-25 10:29:07 +0100379static struct gen_pool *atomic_pool __ro_after_init;
Marek Szyprowski6e5267a2012-08-20 11:19:25 +0200380
Vladimir Murzinb337e1c2017-09-25 10:29:07 +0100381static size_t atomic_pool_size __initdata = DEFAULT_DMA_COHERENT_POOL_SIZE;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100382
383static int __init early_coherent_pool(char *p)
384{
Laura Abbott36d0fd22014-10-09 15:26:42 -0700385 atomic_pool_size = memparse(p, &p);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100386 return 0;
387}
388early_param("coherent_pool", early_coherent_pool);
389
390/*
391 * Initialise the coherent pool for atomic allocations.
392 */
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200393static int __init atomic_pool_init(void)
Marek Szyprowskic7909502011-12-29 13:09:51 +0100394{
Russell King71b55662013-11-25 12:01:03 +0000395 pgprot_t prot = pgprot_dmacoherent(PAGE_KERNEL);
Marek Szyprowski9d1400c2013-02-26 07:46:24 +0100396 gfp_t gfp = GFP_KERNEL | GFP_DMA;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100397 struct page *page;
398 void *ptr;
399
Laura Abbott36d0fd22014-10-09 15:26:42 -0700400 atomic_pool = gen_pool_create(PAGE_SHIFT, -1);
401 if (!atomic_pool)
402 goto out;
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100403 /*
404 * The atomic pool is only used for non-coherent allocations
405 * so we must pass NORMAL for coherent_flag.
406 */
Gioh Kime464ef12014-05-22 13:38:23 +0900407 if (dev_get_cma_area(NULL))
Laura Abbott36d0fd22014-10-09 15:26:42 -0700408 ptr = __alloc_from_contiguous(NULL, atomic_pool_size, prot,
Lucas Stach712c6042017-02-24 14:58:44 -0800409 &page, atomic_pool_init, true, NORMAL,
410 GFP_KERNEL);
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200411 else
Laura Abbott36d0fd22014-10-09 15:26:42 -0700412 ptr = __alloc_remap_buffer(NULL, atomic_pool_size, gfp, prot,
Carlo Caione6e8266e2015-02-09 10:38:35 +0100413 &page, atomic_pool_init, true);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100414 if (ptr) {
Laura Abbott36d0fd22014-10-09 15:26:42 -0700415 int ret;
Hiroshi Doyu6b3fe472012-08-28 08:13:01 +0300416
Laura Abbott36d0fd22014-10-09 15:26:42 -0700417 ret = gen_pool_add_virt(atomic_pool, (unsigned long)ptr,
418 page_to_phys(page),
419 atomic_pool_size, -1);
420 if (ret)
421 goto destroy_genpool;
Hiroshi Doyu6b3fe472012-08-28 08:13:01 +0300422
Laura Abbott36d0fd22014-10-09 15:26:42 -0700423 gen_pool_set_algo(atomic_pool,
424 gen_pool_first_fit_order_align,
Vladimir Murzinacb62442017-09-25 10:25:53 +0100425 NULL);
Fabio Estevambf31c5e2016-07-18 13:09:36 +0100426 pr_info("DMA: preallocated %zu KiB pool for atomic coherent allocations\n",
Laura Abbott36d0fd22014-10-09 15:26:42 -0700427 atomic_pool_size / 1024);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100428 return 0;
429 }
Sachin Kamatec106652012-09-24 08:35:03 +0200430
Laura Abbott36d0fd22014-10-09 15:26:42 -0700431destroy_genpool:
432 gen_pool_destroy(atomic_pool);
433 atomic_pool = NULL;
434out:
Fabio Estevambf31c5e2016-07-18 13:09:36 +0100435 pr_err("DMA: failed to allocate %zu KiB pool for atomic coherent allocation\n",
Laura Abbott36d0fd22014-10-09 15:26:42 -0700436 atomic_pool_size / 1024);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100437 return -ENOMEM;
438}
439/*
440 * CMA is activated by core_initcall, so we must be called after it.
441 */
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200442postcore_initcall(atomic_pool_init);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100443
444struct dma_contig_early_reserve {
445 phys_addr_t base;
446 unsigned long size;
447};
448
449static struct dma_contig_early_reserve dma_mmu_remap[MAX_CMA_AREAS] __initdata;
450
451static int dma_mmu_remap_num __initdata;
452
453void __init dma_contiguous_early_fixup(phys_addr_t base, unsigned long size)
454{
455 dma_mmu_remap[dma_mmu_remap_num].base = base;
456 dma_mmu_remap[dma_mmu_remap_num].size = size;
457 dma_mmu_remap_num++;
458}
459
460void __init dma_contiguous_remap(void)
461{
462 int i;
463 for (i = 0; i < dma_mmu_remap_num; i++) {
464 phys_addr_t start = dma_mmu_remap[i].base;
465 phys_addr_t end = start + dma_mmu_remap[i].size;
466 struct map_desc map;
467 unsigned long addr;
468
469 if (end > arm_lowmem_limit)
470 end = arm_lowmem_limit;
471 if (start >= end)
Chris Brand39f78e72012-08-07 14:01:14 +0200472 continue;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100473
474 map.pfn = __phys_to_pfn(start);
475 map.virtual = __phys_to_virt(start);
476 map.length = end - start;
477 map.type = MT_MEMORY_DMA_READY;
478
479 /*
Russell King6b076992014-07-17 12:17:45 +0100480 * Clear previous low-memory mapping to ensure that the
481 * TLB does not see any conflicting entries, then flush
482 * the TLB of the old entries before creating new mappings.
483 *
484 * This ensures that any speculatively loaded TLB entries
485 * (even though they may be rare) can not cause any problems,
486 * and ensures that this code is architecturally compliant.
Marek Szyprowskic7909502011-12-29 13:09:51 +0100487 */
488 for (addr = __phys_to_virt(start); addr < __phys_to_virt(end);
Vitaly Andrianov61f6c7a2012-05-14 13:49:56 -0400489 addr += PMD_SIZE)
Marek Szyprowskic7909502011-12-29 13:09:51 +0100490 pmd_clear(pmd_off_k(addr));
491
Russell King6b076992014-07-17 12:17:45 +0100492 flush_tlb_kernel_range(__phys_to_virt(start),
493 __phys_to_virt(end));
494
Joonsoo Kimd883c6c2018-05-23 10:18:21 +0900495 iotable_init(&map, 1);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100496 }
497}
498
Marek Szyprowskic7909502011-12-29 13:09:51 +0100499static int __dma_update_pte(pte_t *pte, pgtable_t token, unsigned long addr,
500 void *data)
501{
502 struct page *page = virt_to_page(addr);
503 pgprot_t prot = *(pgprot_t *)data;
504
505 set_pte_ext(pte, mk_pte(page, prot), 0);
506 return 0;
507}
508
509static void __dma_remap(struct page *page, size_t size, pgprot_t prot)
510{
511 unsigned long start = (unsigned long) page_address(page);
512 unsigned end = start + size;
513
514 apply_to_page_range(&init_mm, start, size, __dma_update_pte, &prot);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100515 flush_tlb_kernel_range(start, end);
516}
517
518static void *__alloc_remap_buffer(struct device *dev, size_t size, gfp_t gfp,
519 pgprot_t prot, struct page **ret_page,
Carlo Caione6e8266e2015-02-09 10:38:35 +0100520 const void *caller, bool want_vaddr)
Marek Szyprowskic7909502011-12-29 13:09:51 +0100521{
522 struct page *page;
Carlo Caione6e8266e2015-02-09 10:38:35 +0100523 void *ptr = NULL;
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100524 /*
525 * __alloc_remap_buffer is only called when the device is
526 * non-coherent
527 */
528 page = __dma_alloc_buffer(dev, size, gfp, NORMAL);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100529 if (!page)
530 return NULL;
Carlo Caione6e8266e2015-02-09 10:38:35 +0100531 if (!want_vaddr)
532 goto out;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100533
534 ptr = __dma_alloc_remap(page, size, gfp, prot, caller);
535 if (!ptr) {
536 __dma_free_buffer(page, size);
537 return NULL;
538 }
539
Carlo Caione6e8266e2015-02-09 10:38:35 +0100540 out:
Marek Szyprowskic7909502011-12-29 13:09:51 +0100541 *ret_page = page;
542 return ptr;
543}
544
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200545static void *__alloc_from_pool(size_t size, struct page **ret_page)
Marek Szyprowskic7909502011-12-29 13:09:51 +0100546{
Laura Abbott36d0fd22014-10-09 15:26:42 -0700547 unsigned long val;
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200548 void *ptr = NULL;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100549
Laura Abbott36d0fd22014-10-09 15:26:42 -0700550 if (!atomic_pool) {
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200551 WARN(1, "coherent pool not initialised!\n");
Marek Szyprowskic7909502011-12-29 13:09:51 +0100552 return NULL;
553 }
554
Laura Abbott36d0fd22014-10-09 15:26:42 -0700555 val = gen_pool_alloc(atomic_pool, size);
556 if (val) {
557 phys_addr_t phys = gen_pool_virt_to_phys(atomic_pool, val);
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200558
Laura Abbott36d0fd22014-10-09 15:26:42 -0700559 *ret_page = phys_to_page(phys);
560 ptr = (void *)val;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100561 }
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200562
563 return ptr;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100564}
565
Hiroshi Doyu21d0a752012-08-28 08:13:02 +0300566static bool __in_atomic_pool(void *start, size_t size)
567{
Laura Abbott36d0fd22014-10-09 15:26:42 -0700568 return addr_in_gen_pool(atomic_pool, (unsigned long)start, size);
Hiroshi Doyu21d0a752012-08-28 08:13:02 +0300569}
570
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200571static int __free_from_pool(void *start, size_t size)
Marek Szyprowskic7909502011-12-29 13:09:51 +0100572{
Hiroshi Doyu21d0a752012-08-28 08:13:02 +0300573 if (!__in_atomic_pool(start, size))
Marek Szyprowskic7909502011-12-29 13:09:51 +0100574 return 0;
575
Laura Abbott36d0fd22014-10-09 15:26:42 -0700576 gen_pool_free(atomic_pool, (unsigned long)start, size);
Marek Szyprowskie9da6e92012-07-30 09:11:33 +0200577
Marek Szyprowskic7909502011-12-29 13:09:51 +0100578 return 1;
579}
580
581static void *__alloc_from_contiguous(struct device *dev, size_t size,
Marek Szyprowski9848e482013-01-16 15:38:44 +0100582 pgprot_t prot, struct page **ret_page,
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100583 const void *caller, bool want_vaddr,
Lucas Stach712c6042017-02-24 14:58:44 -0800584 int coherent_flag, gfp_t gfp)
Marek Szyprowskic7909502011-12-29 13:09:51 +0100585{
586 unsigned long order = get_order(size);
587 size_t count = size >> PAGE_SHIFT;
588 struct page *page;
Carlo Caione6e8266e2015-02-09 10:38:35 +0100589 void *ptr = NULL;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100590
Marek Szyprowskid834c5a2018-08-17 15:49:00 -0700591 page = dma_alloc_from_contiguous(dev, count, order, gfp & __GFP_NOWARN);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100592 if (!page)
593 return NULL;
594
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100595 __dma_clear_buffer(page, size, coherent_flag);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100596
Carlo Caione6e8266e2015-02-09 10:38:35 +0100597 if (!want_vaddr)
598 goto out;
599
Marek Szyprowski9848e482013-01-16 15:38:44 +0100600 if (PageHighMem(page)) {
601 ptr = __dma_alloc_remap(page, size, GFP_KERNEL, prot, caller);
602 if (!ptr) {
603 dma_release_from_contiguous(dev, page, count);
604 return NULL;
605 }
606 } else {
607 __dma_remap(page, size, prot);
608 ptr = page_address(page);
609 }
Carlo Caione6e8266e2015-02-09 10:38:35 +0100610
611 out:
Marek Szyprowskic7909502011-12-29 13:09:51 +0100612 *ret_page = page;
Marek Szyprowski9848e482013-01-16 15:38:44 +0100613 return ptr;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100614}
615
616static void __free_from_contiguous(struct device *dev, struct page *page,
Carlo Caione6e8266e2015-02-09 10:38:35 +0100617 void *cpu_addr, size_t size, bool want_vaddr)
Marek Szyprowskic7909502011-12-29 13:09:51 +0100618{
Carlo Caione6e8266e2015-02-09 10:38:35 +0100619 if (want_vaddr) {
620 if (PageHighMem(page))
621 __dma_free_remap(cpu_addr, size);
622 else
623 __dma_remap(page, size, PAGE_KERNEL);
624 }
Marek Szyprowskic7909502011-12-29 13:09:51 +0100625 dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT);
626}
627
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700628static inline pgprot_t __get_dma_pgprot(unsigned long attrs, pgprot_t prot)
Marek Szyprowskif99d6032012-05-16 18:31:23 +0200629{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700630 prot = (attrs & DMA_ATTR_WRITE_COMBINE) ?
631 pgprot_writecombine(prot) :
632 pgprot_dmacoherent(prot);
Marek Szyprowskif99d6032012-05-16 18:31:23 +0200633 return prot;
634}
635
Marek Szyprowskic7909502011-12-29 13:09:51 +0100636static void *__alloc_simple_buffer(struct device *dev, size_t size, gfp_t gfp,
637 struct page **ret_page)
Catalin Marinasab6494f2009-07-24 12:35:02 +0100638{
Russell King04da5692009-11-19 15:54:45 +0000639 struct page *page;
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100640 /* __alloc_simple_buffer is only called when the device is coherent */
641 page = __dma_alloc_buffer(dev, size, gfp, COHERENT);
Marek Szyprowskic7909502011-12-29 13:09:51 +0100642 if (!page)
643 return NULL;
644
645 *ret_page = page;
646 return page_address(page);
647}
648
Rabin Vincentb4268672016-03-03 15:58:01 +0100649static void *simple_allocator_alloc(struct arm_dma_alloc_args *args,
650 struct page **ret_page)
651{
652 return __alloc_simple_buffer(args->dev, args->size, args->gfp,
653 ret_page);
654}
Marek Szyprowskic7909502011-12-29 13:09:51 +0100655
Rabin Vincentb4268672016-03-03 15:58:01 +0100656static void simple_allocator_free(struct arm_dma_free_args *args)
657{
658 __dma_free_buffer(args->page, args->size);
659}
660
661static struct arm_dma_allocator simple_allocator = {
662 .alloc = simple_allocator_alloc,
663 .free = simple_allocator_free,
664};
665
666static void *cma_allocator_alloc(struct arm_dma_alloc_args *args,
667 struct page **ret_page)
668{
669 return __alloc_from_contiguous(args->dev, args->size, args->prot,
670 ret_page, args->caller,
Lucas Stach712c6042017-02-24 14:58:44 -0800671 args->want_vaddr, args->coherent_flag,
672 args->gfp);
Rabin Vincentb4268672016-03-03 15:58:01 +0100673}
674
675static void cma_allocator_free(struct arm_dma_free_args *args)
676{
677 __free_from_contiguous(args->dev, args->page, args->cpu_addr,
678 args->size, args->want_vaddr);
679}
680
681static struct arm_dma_allocator cma_allocator = {
682 .alloc = cma_allocator_alloc,
683 .free = cma_allocator_free,
684};
685
686static void *pool_allocator_alloc(struct arm_dma_alloc_args *args,
687 struct page **ret_page)
688{
689 return __alloc_from_pool(args->size, ret_page);
690}
691
692static void pool_allocator_free(struct arm_dma_free_args *args)
693{
694 __free_from_pool(args->cpu_addr, args->size);
695}
696
697static struct arm_dma_allocator pool_allocator = {
698 .alloc = pool_allocator_alloc,
699 .free = pool_allocator_free,
700};
701
702static void *remap_allocator_alloc(struct arm_dma_alloc_args *args,
703 struct page **ret_page)
704{
705 return __alloc_remap_buffer(args->dev, args->size, args->gfp,
706 args->prot, ret_page, args->caller,
707 args->want_vaddr);
708}
709
710static void remap_allocator_free(struct arm_dma_free_args *args)
711{
712 if (args->want_vaddr)
713 __dma_free_remap(args->cpu_addr, args->size);
714
715 __dma_free_buffer(args->page, args->size);
716}
717
718static struct arm_dma_allocator remap_allocator = {
719 .alloc = remap_allocator_alloc,
720 .free = remap_allocator_free,
721};
Marek Szyprowskic7909502011-12-29 13:09:51 +0100722
723static void *__dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
Carlo Caione6e8266e2015-02-09 10:38:35 +0100724 gfp_t gfp, pgprot_t prot, bool is_coherent,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700725 unsigned long attrs, const void *caller)
Marek Szyprowskic7909502011-12-29 13:09:51 +0100726{
727 u64 mask = get_coherent_dma_mask(dev);
Jingoo Han3dd7ea92012-10-24 14:09:14 +0900728 struct page *page = NULL;
Russell King31ebf942009-11-19 21:12:17 +0000729 void *addr;
Rabin Vincentb4268672016-03-03 15:58:01 +0100730 bool allowblock, cma;
Rabin Vincent19e6e5e2016-03-03 15:58:00 +0100731 struct arm_dma_buffer *buf;
Rabin Vincentb4268672016-03-03 15:58:01 +0100732 struct arm_dma_alloc_args args = {
733 .dev = dev,
734 .size = PAGE_ALIGN(size),
735 .gfp = gfp,
736 .prot = prot,
737 .caller = caller,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700738 .want_vaddr = ((attrs & DMA_ATTR_NO_KERNEL_MAPPING) == 0),
Gregory CLEMENTf1270892016-04-15 11:15:18 +0100739 .coherent_flag = is_coherent ? COHERENT : NORMAL,
Rabin Vincentb4268672016-03-03 15:58:01 +0100740 };
Catalin Marinasab6494f2009-07-24 12:35:02 +0100741
Marek Szyprowskic7909502011-12-29 13:09:51 +0100742#ifdef CONFIG_DMA_API_DEBUG
743 u64 limit = (mask + 1) & ~mask;
744 if (limit && size >= limit) {
745 dev_warn(dev, "coherent allocation too big (requested %#x mask %#llx)\n",
746 size, mask);
747 return NULL;
748 }
749#endif
750
751 if (!mask)
752 return NULL;
753
Alexandre Courbot9c18fcf2016-04-13 05:55:29 +0100754 buf = kzalloc(sizeof(*buf),
755 gfp & ~(__GFP_DMA | __GFP_DMA32 | __GFP_HIGHMEM));
Rabin Vincent19e6e5e2016-03-03 15:58:00 +0100756 if (!buf)
757 return NULL;
758
Marek Szyprowskic7909502011-12-29 13:09:51 +0100759 if (mask < 0xffffffffULL)
760 gfp |= GFP_DMA;
761
Sumit Bhattacharyaea2e7052011-11-24 00:47:12 +0100762 /*
763 * Following is a work-around (a.k.a. hack) to prevent pages
764 * with __GFP_COMP being passed to split_page() which cannot
765 * handle them. The real problem is that this flag probably
766 * should be 0 on ARM as it is not supported on this
767 * platform; see CONFIG_HUGETLBFS.
768 */
769 gfp &= ~(__GFP_COMP);
Rabin Vincentb4268672016-03-03 15:58:01 +0100770 args.gfp = gfp;
Sumit Bhattacharyaea2e7052011-11-24 00:47:12 +0100771
Christoph Hellwig72fd97b2018-11-21 18:57:36 +0100772 *handle = DMA_MAPPING_ERROR;
Rabin Vincentb4268672016-03-03 15:58:01 +0100773 allowblock = gfpflags_allow_blocking(gfp);
774 cma = allowblock ? dev_get_cma_area(dev) : false;
Russell King04da5692009-11-19 15:54:45 +0000775
Rabin Vincentb4268672016-03-03 15:58:01 +0100776 if (cma)
777 buf->allocator = &cma_allocator;
Vladimir Murzin1655cf82017-05-24 11:24:32 +0100778 else if (is_coherent)
Rabin Vincentb4268672016-03-03 15:58:01 +0100779 buf->allocator = &simple_allocator;
780 else if (allowblock)
781 buf->allocator = &remap_allocator;
Russell King31ebf942009-11-19 21:12:17 +0000782 else
Rabin Vincentb4268672016-03-03 15:58:01 +0100783 buf->allocator = &pool_allocator;
784
785 addr = buf->allocator->alloc(&args, &page);
Russell King31ebf942009-11-19 21:12:17 +0000786
Rabin Vincent19e6e5e2016-03-03 15:58:00 +0100787 if (page) {
788 unsigned long flags;
789
Russell King9eedd962011-01-03 00:00:17 +0000790 *handle = pfn_to_dma(dev, page_to_pfn(page));
Rabin Vincentb4268672016-03-03 15:58:01 +0100791 buf->virt = args.want_vaddr ? addr : page;
Rabin Vincent19e6e5e2016-03-03 15:58:00 +0100792
793 spin_lock_irqsave(&arm_dma_bufs_lock, flags);
794 list_add(&buf->list, &arm_dma_bufs);
795 spin_unlock_irqrestore(&arm_dma_bufs_lock, flags);
796 } else {
797 kfree(buf);
798 }
Russell King31ebf942009-11-19 21:12:17 +0000799
Rabin Vincentb4268672016-03-03 15:58:01 +0100800 return args.want_vaddr ? addr : page;
Catalin Marinasab6494f2009-07-24 12:35:02 +0100801}
Russell King695ae0a2009-11-19 16:31:39 +0000802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/*
804 * Allocate DMA-coherent memory space and return both the kernel remapped
805 * virtual and bus address for that space.
806 */
Marek Szyprowskif99d6032012-05-16 18:31:23 +0200807void *arm_dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700808 gfp_t gfp, unsigned long attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Russell King0ea1ec72013-10-23 16:14:59 +0100810 pgprot_t prot = __get_dma_pgprot(attrs, PAGE_KERNEL);
Dmitry Baryshkov1fe53262008-07-18 13:30:14 +0400811
Rob Herringdd37e942012-08-21 12:20:17 +0200812 return __dma_alloc(dev, size, handle, gfp, prot, false,
Carlo Caione6e8266e2015-02-09 10:38:35 +0100813 attrs, __builtin_return_address(0));
Rob Herringdd37e942012-08-21 12:20:17 +0200814}
815
816static void *arm_coherent_dma_alloc(struct device *dev, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700817 dma_addr_t *handle, gfp_t gfp, unsigned long attrs)
Rob Herringdd37e942012-08-21 12:20:17 +0200818{
Lorenzo Nava21caf3a2015-07-02 17:28:03 +0100819 return __dma_alloc(dev, size, handle, gfp, PAGE_KERNEL, true,
Carlo Caione6e8266e2015-02-09 10:38:35 +0100820 attrs, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Mike Looijmans55af8a92015-06-03 11:25:31 +0100823static int __arm_dma_mmap(struct device *dev, struct vm_area_struct *vma,
Marek Szyprowskif99d6032012-05-16 18:31:23 +0200824 void *cpu_addr, dma_addr_t dma_addr, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700825 unsigned long attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Nathan Jonesc2a38312018-12-04 10:05:32 +0100827 int ret = -ENXIO;
Fabio Estevama70c3ee2018-04-23 12:30:27 +0100828 unsigned long nr_vma_pages = vma_pages(vma);
Marek Szyprowski50262a42012-07-30 09:35:26 +0200829 unsigned long nr_pages = PAGE_ALIGN(size) >> PAGE_SHIFT;
Marek Szyprowskic7909502011-12-29 13:09:51 +0100830 unsigned long pfn = dma_to_pfn(dev, dma_addr);
Marek Szyprowski50262a42012-07-30 09:35:26 +0200831 unsigned long off = vma->vm_pgoff;
832
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100833 if (dma_mmap_from_dev_coherent(dev, vma, cpu_addr, size, &ret))
Marek Szyprowski47142f02012-05-15 19:04:13 +0200834 return ret;
835
Marek Szyprowski50262a42012-07-30 09:35:26 +0200836 if (off < nr_pages && nr_vma_pages <= (nr_pages - off)) {
837 ret = remap_pfn_range(vma, vma->vm_start,
838 pfn + off,
839 vma->vm_end - vma->vm_start,
840 vma->vm_page_prot);
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 return ret;
844}
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846/*
Mike Looijmans55af8a92015-06-03 11:25:31 +0100847 * Create userspace mapping for the DMA-coherent memory.
848 */
849static int arm_coherent_dma_mmap(struct device *dev, struct vm_area_struct *vma,
850 void *cpu_addr, dma_addr_t dma_addr, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700851 unsigned long attrs)
Mike Looijmans55af8a92015-06-03 11:25:31 +0100852{
853 return __arm_dma_mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
854}
855
856int arm_dma_mmap(struct device *dev, struct vm_area_struct *vma,
857 void *cpu_addr, dma_addr_t dma_addr, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700858 unsigned long attrs)
Mike Looijmans55af8a92015-06-03 11:25:31 +0100859{
Mike Looijmans55af8a92015-06-03 11:25:31 +0100860 vma->vm_page_prot = __get_dma_pgprot(attrs, vma->vm_page_prot);
Mike Looijmans55af8a92015-06-03 11:25:31 +0100861 return __arm_dma_mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
862}
863
864/*
Marek Szyprowskic7909502011-12-29 13:09:51 +0100865 * Free a buffer as defined by the above mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 */
Rob Herringdd37e942012-08-21 12:20:17 +0200867static void __arm_dma_free(struct device *dev, size_t size, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700868 dma_addr_t handle, unsigned long attrs,
Rob Herringdd37e942012-08-21 12:20:17 +0200869 bool is_coherent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Marek Szyprowskic7909502011-12-29 13:09:51 +0100871 struct page *page = pfn_to_page(dma_to_pfn(dev, handle));
Rabin Vincent19e6e5e2016-03-03 15:58:00 +0100872 struct arm_dma_buffer *buf;
Rabin Vincentb4268672016-03-03 15:58:01 +0100873 struct arm_dma_free_args args = {
874 .dev = dev,
875 .size = PAGE_ALIGN(size),
876 .cpu_addr = cpu_addr,
877 .page = page,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700878 .want_vaddr = ((attrs & DMA_ATTR_NO_KERNEL_MAPPING) == 0),
Rabin Vincentb4268672016-03-03 15:58:01 +0100879 };
Rabin Vincent19e6e5e2016-03-03 15:58:00 +0100880
881 buf = arm_dma_buffer_find(cpu_addr);
882 if (WARN(!buf, "Freeing invalid buffer %p\n", cpu_addr))
883 return;
Russell King5edf71a2005-11-25 15:52:51 +0000884
Rabin Vincentb4268672016-03-03 15:58:01 +0100885 buf->allocator->free(&args);
Rabin Vincent19e6e5e2016-03-03 15:58:00 +0100886 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
Russell Kingafd1a322008-09-25 16:30:57 +0100888
Rob Herringdd37e942012-08-21 12:20:17 +0200889void arm_dma_free(struct device *dev, size_t size, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700890 dma_addr_t handle, unsigned long attrs)
Rob Herringdd37e942012-08-21 12:20:17 +0200891{
892 __arm_dma_free(dev, size, cpu_addr, handle, attrs, false);
893}
894
895static void arm_coherent_dma_free(struct device *dev, size_t size, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700896 dma_addr_t handle, unsigned long attrs)
Rob Herringdd37e942012-08-21 12:20:17 +0200897{
898 __arm_dma_free(dev, size, cpu_addr, handle, attrs, true);
899}
900
Russell King916a0082017-03-29 17:12:47 +0100901/*
902 * The whole dma_get_sgtable() idea is fundamentally unsafe - it seems
903 * that the intention is to allow exporting memory allocated via the
904 * coherent DMA APIs through the dma_buf API, which only accepts a
905 * scattertable. This presents a couple of problems:
906 * 1. Not all memory allocated via the coherent DMA APIs is backed by
907 * a struct page
908 * 2. Passing coherent DMA memory into the streaming APIs is not allowed
909 * as we will try to flush the memory through a different alias to that
910 * actually being used (and the flushes are redundant.)
911 */
Marek Szyprowskidc2832e2012-06-13 10:01:15 +0200912int arm_dma_get_sgtable(struct device *dev, struct sg_table *sgt,
913 void *cpu_addr, dma_addr_t handle, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700914 unsigned long attrs)
Marek Szyprowskidc2832e2012-06-13 10:01:15 +0200915{
Russell King916a0082017-03-29 17:12:47 +0100916 unsigned long pfn = dma_to_pfn(dev, handle);
917 struct page *page;
Marek Szyprowskidc2832e2012-06-13 10:01:15 +0200918 int ret;
919
Russell King916a0082017-03-29 17:12:47 +0100920 /* If the PFN is not valid, we do not have a struct page */
921 if (!pfn_valid(pfn))
922 return -ENXIO;
923
924 page = pfn_to_page(pfn);
925
Marek Szyprowskidc2832e2012-06-13 10:01:15 +0200926 ret = sg_alloc_table(sgt, 1, GFP_KERNEL);
927 if (unlikely(ret))
928 return ret;
929
930 sg_set_page(sgt->sgl, page, PAGE_ALIGN(size), 0);
931 return 0;
932}
933
Russell King65af1912009-11-24 17:53:33 +0000934static void dma_cache_maint_page(struct page *page, unsigned long offset,
Russell Kinga9c91472009-11-26 16:19:58 +0000935 size_t size, enum dma_data_direction dir,
936 void (*op)(const void *, size_t, int))
Russell King65af1912009-11-24 17:53:33 +0000937{
Russell King15653372013-01-19 11:05:57 +0000938 unsigned long pfn;
939 size_t left = size;
940
941 pfn = page_to_pfn(page) + offset / PAGE_SIZE;
942 offset %= PAGE_SIZE;
943
Russell King65af1912009-11-24 17:53:33 +0000944 /*
945 * A single sg entry may refer to multiple physically contiguous
946 * pages. But we still need to process highmem pages individually.
947 * If highmem is not configured then the bulk of this loop gets
948 * optimized out.
949 */
Russell King65af1912009-11-24 17:53:33 +0000950 do {
951 size_t len = left;
Russell King93f1d622009-11-24 14:41:01 +0000952 void *vaddr;
953
Russell King15653372013-01-19 11:05:57 +0000954 page = pfn_to_page(pfn);
955
Russell King93f1d622009-11-24 14:41:01 +0000956 if (PageHighMem(page)) {
Russell King15653372013-01-19 11:05:57 +0000957 if (len + offset > PAGE_SIZE)
Russell King93f1d622009-11-24 14:41:01 +0000958 len = PAGE_SIZE - offset;
Joonsoo Kimdd0f67f2013-04-05 03:16:14 +0100959
960 if (cache_is_vipt_nonaliasing()) {
Nicolas Pitre39af22a2010-12-15 15:14:45 -0500961 vaddr = kmap_atomic(page);
Nicolas Pitre7e5a69e2010-03-29 21:46:02 +0100962 op(vaddr + offset, len, dir);
Nicolas Pitre39af22a2010-12-15 15:14:45 -0500963 kunmap_atomic(vaddr);
Joonsoo Kimdd0f67f2013-04-05 03:16:14 +0100964 } else {
965 vaddr = kmap_high_get(page);
966 if (vaddr) {
967 op(vaddr + offset, len, dir);
968 kunmap_high(page);
969 }
Russell King93f1d622009-11-24 14:41:01 +0000970 }
971 } else {
972 vaddr = page_address(page) + offset;
Russell Kinga9c91472009-11-26 16:19:58 +0000973 op(vaddr, len, dir);
Russell King65af1912009-11-24 17:53:33 +0000974 }
Russell King65af1912009-11-24 17:53:33 +0000975 offset = 0;
Russell King15653372013-01-19 11:05:57 +0000976 pfn++;
Russell King65af1912009-11-24 17:53:33 +0000977 left -= len;
978 } while (left);
979}
980
Marek Szyprowski51fde3492012-02-10 19:55:20 +0100981/*
982 * Make an area consistent for devices.
983 * Note: Drivers should NOT use this function directly, as it will break
984 * platforms with CONFIG_DMABOUNCE.
985 * Use the driver DMA support - see dma-mapping.h (dma_sync_*)
986 */
987static void __dma_page_cpu_to_dev(struct page *page, unsigned long off,
Russell King65af1912009-11-24 17:53:33 +0000988 size_t size, enum dma_data_direction dir)
989{
Santosh Shilimkar2161c242014-04-24 11:30:07 -0400990 phys_addr_t paddr;
Nicolas Pitre43377452009-03-12 22:52:09 -0400991
Russell Kinga9c91472009-11-26 16:19:58 +0000992 dma_cache_maint_page(page, off, size, dir, dmac_map_area);
Nicolas Pitre43377452009-03-12 22:52:09 -0400993
Russell King65af1912009-11-24 17:53:33 +0000994 paddr = page_to_phys(page) + off;
Russell King2ffe2da2009-10-31 16:52:16 +0000995 if (dir == DMA_FROM_DEVICE) {
996 outer_inv_range(paddr, paddr + size);
997 } else {
998 outer_clean_range(paddr, paddr + size);
999 }
1000 /* FIXME: non-speculating: flush on bidirectional mappings? */
Nicolas Pitre43377452009-03-12 22:52:09 -04001001}
Russell King4ea0d732009-11-24 16:27:17 +00001002
Marek Szyprowski51fde3492012-02-10 19:55:20 +01001003static void __dma_page_dev_to_cpu(struct page *page, unsigned long off,
Russell King4ea0d732009-11-24 16:27:17 +00001004 size_t size, enum dma_data_direction dir)
1005{
Santosh Shilimkar2161c242014-04-24 11:30:07 -04001006 phys_addr_t paddr = page_to_phys(page) + off;
Russell King2ffe2da2009-10-31 16:52:16 +00001007
1008 /* FIXME: non-speculating: not required */
Russell Kingdeace4a2014-05-03 11:06:55 +01001009 /* in any case, don't bother invalidating if DMA to device */
1010 if (dir != DMA_TO_DEVICE) {
Russell King2ffe2da2009-10-31 16:52:16 +00001011 outer_inv_range(paddr, paddr + size);
1012
Russell Kingdeace4a2014-05-03 11:06:55 +01001013 dma_cache_maint_page(page, off, size, dir, dmac_unmap_area);
1014 }
Catalin Marinasc0177802010-09-13 15:57:36 +01001015
1016 /*
Ming Leib2a234e2013-05-18 11:21:36 +01001017 * Mark the D-cache clean for these pages to avoid extra flushing.
Catalin Marinasc0177802010-09-13 15:57:36 +01001018 */
Ming Leib2a234e2013-05-18 11:21:36 +01001019 if (dir != DMA_TO_DEVICE && size >= PAGE_SIZE) {
1020 unsigned long pfn;
1021 size_t left = size;
1022
1023 pfn = page_to_pfn(page) + off / PAGE_SIZE;
1024 off %= PAGE_SIZE;
1025 if (off) {
1026 pfn++;
1027 left -= PAGE_SIZE - off;
1028 }
1029 while (left >= PAGE_SIZE) {
1030 page = pfn_to_page(pfn++);
1031 set_bit(PG_dcache_clean, &page->flags);
1032 left -= PAGE_SIZE;
1033 }
1034 }
Russell King4ea0d732009-11-24 16:27:17 +00001035}
Nicolas Pitre43377452009-03-12 22:52:09 -04001036
Russell Kingafd1a322008-09-25 16:30:57 +01001037/**
Marek Szyprowski2a550e72012-02-10 19:55:20 +01001038 * arm_dma_map_sg - map a set of SG buffers for streaming mode DMA
Russell Kingafd1a322008-09-25 16:30:57 +01001039 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1040 * @sg: list of buffers
1041 * @nents: number of buffers to map
1042 * @dir: DMA transfer direction
1043 *
1044 * Map a set of buffers described by scatterlist in streaming mode for DMA.
1045 * This is the scatter-gather version of the dma_map_single interface.
1046 * Here the scatter gather list elements are each tagged with the
1047 * appropriate dma address and length. They are obtained via
1048 * sg_dma_{address,length}.
1049 *
1050 * Device ownership issues as mentioned for dma_map_single are the same
1051 * here.
1052 */
Marek Szyprowski2dc6a012012-02-10 19:55:20 +01001053int arm_dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001054 enum dma_data_direction dir, unsigned long attrs)
Russell Kingafd1a322008-09-25 16:30:57 +01001055{
Bart Van Assche52997092017-01-20 13:04:01 -08001056 const struct dma_map_ops *ops = get_dma_ops(dev);
Russell Kingafd1a322008-09-25 16:30:57 +01001057 struct scatterlist *s;
Russell King01135d922008-09-25 21:05:02 +01001058 int i, j;
Russell Kingafd1a322008-09-25 16:30:57 +01001059
1060 for_each_sg(sg, s, nents, i) {
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001061#ifdef CONFIG_NEED_SG_DMA_LENGTH
1062 s->dma_length = s->length;
1063#endif
Marek Szyprowski2a550e72012-02-10 19:55:20 +01001064 s->dma_address = ops->map_page(dev, sg_page(s), s->offset,
1065 s->length, dir, attrs);
Russell King01135d922008-09-25 21:05:02 +01001066 if (dma_mapping_error(dev, s->dma_address))
1067 goto bad_mapping;
Russell Kingafd1a322008-09-25 16:30:57 +01001068 }
Russell Kingafd1a322008-09-25 16:30:57 +01001069 return nents;
Russell King01135d922008-09-25 21:05:02 +01001070
1071 bad_mapping:
1072 for_each_sg(sg, s, i, j)
Marek Szyprowski2a550e72012-02-10 19:55:20 +01001073 ops->unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir, attrs);
Russell King01135d922008-09-25 21:05:02 +01001074 return 0;
Russell Kingafd1a322008-09-25 16:30:57 +01001075}
Russell Kingafd1a322008-09-25 16:30:57 +01001076
1077/**
Marek Szyprowski2a550e72012-02-10 19:55:20 +01001078 * arm_dma_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
Russell Kingafd1a322008-09-25 16:30:57 +01001079 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1080 * @sg: list of buffers
Linus Walleij0adfca62011-01-12 18:50:37 +01001081 * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
Russell Kingafd1a322008-09-25 16:30:57 +01001082 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1083 *
1084 * Unmap a set of streaming mode DMA translations. Again, CPU access
1085 * rules concerning calls here are the same as for dma_unmap_single().
1086 */
Marek Szyprowski2dc6a012012-02-10 19:55:20 +01001087void arm_dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001088 enum dma_data_direction dir, unsigned long attrs)
Russell Kingafd1a322008-09-25 16:30:57 +01001089{
Bart Van Assche52997092017-01-20 13:04:01 -08001090 const struct dma_map_ops *ops = get_dma_ops(dev);
Russell King01135d922008-09-25 21:05:02 +01001091 struct scatterlist *s;
Russell King01135d922008-09-25 21:05:02 +01001092
Russell King01135d922008-09-25 21:05:02 +01001093 int i;
Russell King24056f52011-01-03 11:29:28 +00001094
Russell King01135d922008-09-25 21:05:02 +01001095 for_each_sg(sg, s, nents, i)
Marek Szyprowski2a550e72012-02-10 19:55:20 +01001096 ops->unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir, attrs);
Russell Kingafd1a322008-09-25 16:30:57 +01001097}
Russell Kingafd1a322008-09-25 16:30:57 +01001098
1099/**
Marek Szyprowski2a550e72012-02-10 19:55:20 +01001100 * arm_dma_sync_sg_for_cpu
Russell Kingafd1a322008-09-25 16:30:57 +01001101 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1102 * @sg: list of buffers
1103 * @nents: number of buffers to map (returned from dma_map_sg)
1104 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1105 */
Marek Szyprowski2dc6a012012-02-10 19:55:20 +01001106void arm_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
Russell Kingafd1a322008-09-25 16:30:57 +01001107 int nents, enum dma_data_direction dir)
1108{
Bart Van Assche52997092017-01-20 13:04:01 -08001109 const struct dma_map_ops *ops = get_dma_ops(dev);
Russell Kingafd1a322008-09-25 16:30:57 +01001110 struct scatterlist *s;
1111 int i;
1112
Marek Szyprowski2a550e72012-02-10 19:55:20 +01001113 for_each_sg(sg, s, nents, i)
1114 ops->sync_single_for_cpu(dev, sg_dma_address(s), s->length,
1115 dir);
Russell Kingafd1a322008-09-25 16:30:57 +01001116}
Russell Kingafd1a322008-09-25 16:30:57 +01001117
1118/**
Marek Szyprowski2a550e72012-02-10 19:55:20 +01001119 * arm_dma_sync_sg_for_device
Russell Kingafd1a322008-09-25 16:30:57 +01001120 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
1121 * @sg: list of buffers
1122 * @nents: number of buffers to map (returned from dma_map_sg)
1123 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1124 */
Marek Szyprowski2dc6a012012-02-10 19:55:20 +01001125void arm_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
Russell Kingafd1a322008-09-25 16:30:57 +01001126 int nents, enum dma_data_direction dir)
1127{
Bart Van Assche52997092017-01-20 13:04:01 -08001128 const struct dma_map_ops *ops = get_dma_ops(dev);
Russell Kingafd1a322008-09-25 16:30:57 +01001129 struct scatterlist *s;
1130 int i;
1131
Marek Szyprowski2a550e72012-02-10 19:55:20 +01001132 for_each_sg(sg, s, nents, i)
1133 ops->sync_single_for_device(dev, sg_dma_address(s), s->length,
1134 dir);
Russell Kingafd1a322008-09-25 16:30:57 +01001135}
Russell King24056f52011-01-03 11:29:28 +00001136
Russell King022ae532011-07-08 21:26:59 +01001137/*
1138 * Return whether the given device DMA address mask can be supported
1139 * properly. For example, if your device can only drive the low 24-bits
1140 * during bus mastering, then you would pass 0x00ffffff as the mask
1141 * to this function.
1142 */
Christoph Hellwig418a7a72017-05-22 11:20:18 +02001143int arm_dma_supported(struct device *dev, u64 mask)
Russell King022ae532011-07-08 21:26:59 +01001144{
Russell King9f28cde2013-12-06 12:30:42 +00001145 return __dma_supported(dev, mask, false);
Russell King022ae532011-07-08 21:26:59 +01001146}
Russell King022ae532011-07-08 21:26:59 +01001147
Thierry Reding18746192018-05-30 16:06:24 +02001148static const struct dma_map_ops *arm_get_dma_map_ops(bool coherent)
1149{
1150 return coherent ? &arm_coherent_dma_ops : &arm_dma_ops;
1151}
1152
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001153#ifdef CONFIG_ARM_DMA_USE_IOMMU
1154
Sricharan R7d2822d2017-01-06 18:58:13 +05301155static int __dma_info_to_prot(enum dma_data_direction dir, unsigned long attrs)
1156{
1157 int prot = 0;
1158
1159 if (attrs & DMA_ATTR_PRIVILEGED)
1160 prot |= IOMMU_PRIV;
1161
1162 switch (dir) {
1163 case DMA_BIDIRECTIONAL:
1164 return prot | IOMMU_READ | IOMMU_WRITE;
1165 case DMA_TO_DEVICE:
1166 return prot | IOMMU_READ;
1167 case DMA_FROM_DEVICE:
1168 return prot | IOMMU_WRITE;
1169 default:
1170 return prot;
1171 }
1172}
1173
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001174/* IOMMU */
1175
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001176static int extend_iommu_mapping(struct dma_iommu_mapping *mapping);
1177
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001178static inline dma_addr_t __alloc_iova(struct dma_iommu_mapping *mapping,
1179 size_t size)
1180{
1181 unsigned int order = get_order(size);
1182 unsigned int align = 0;
1183 unsigned int count, start;
Ritesh Harjani006f8412014-05-20 10:02:59 +05301184 size_t mapping_size = mapping->bits << PAGE_SHIFT;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001185 unsigned long flags;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001186 dma_addr_t iova;
1187 int i;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001188
Seung-Woo Kim60460ab2013-02-06 13:21:14 +09001189 if (order > CONFIG_ARM_DMA_IOMMU_ALIGNMENT)
1190 order = CONFIG_ARM_DMA_IOMMU_ALIGNMENT;
1191
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01001192 count = PAGE_ALIGN(size) >> PAGE_SHIFT;
1193 align = (1 << order) - 1;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001194
1195 spin_lock_irqsave(&mapping->lock, flags);
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001196 for (i = 0; i < mapping->nr_bitmaps; i++) {
1197 start = bitmap_find_next_zero_area(mapping->bitmaps[i],
1198 mapping->bits, 0, count, align);
1199
1200 if (start > mapping->bits)
1201 continue;
1202
1203 bitmap_set(mapping->bitmaps[i], start, count);
1204 break;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001205 }
1206
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001207 /*
1208 * No unused range found. Try to extend the existing mapping
1209 * and perform a second attempt to reserve an IO virtual
1210 * address range of size bytes.
1211 */
1212 if (i == mapping->nr_bitmaps) {
1213 if (extend_iommu_mapping(mapping)) {
1214 spin_unlock_irqrestore(&mapping->lock, flags);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001215 return DMA_MAPPING_ERROR;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001216 }
1217
1218 start = bitmap_find_next_zero_area(mapping->bitmaps[i],
1219 mapping->bits, 0, count, align);
1220
1221 if (start > mapping->bits) {
1222 spin_unlock_irqrestore(&mapping->lock, flags);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001223 return DMA_MAPPING_ERROR;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001224 }
1225
1226 bitmap_set(mapping->bitmaps[i], start, count);
1227 }
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001228 spin_unlock_irqrestore(&mapping->lock, flags);
1229
Ritesh Harjani006f8412014-05-20 10:02:59 +05301230 iova = mapping->base + (mapping_size * i);
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01001231 iova += start << PAGE_SHIFT;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001232
1233 return iova;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001234}
1235
1236static inline void __free_iova(struct dma_iommu_mapping *mapping,
1237 dma_addr_t addr, size_t size)
1238{
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001239 unsigned int start, count;
Ritesh Harjani006f8412014-05-20 10:02:59 +05301240 size_t mapping_size = mapping->bits << PAGE_SHIFT;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001241 unsigned long flags;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001242 dma_addr_t bitmap_base;
1243 u32 bitmap_index;
1244
1245 if (!size)
1246 return;
1247
Ritesh Harjani006f8412014-05-20 10:02:59 +05301248 bitmap_index = (u32) (addr - mapping->base) / (u32) mapping_size;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001249 BUG_ON(addr < mapping->base || bitmap_index > mapping->extensions);
1250
Ritesh Harjani006f8412014-05-20 10:02:59 +05301251 bitmap_base = mapping->base + mapping_size * bitmap_index;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001252
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01001253 start = (addr - bitmap_base) >> PAGE_SHIFT;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001254
Ritesh Harjani006f8412014-05-20 10:02:59 +05301255 if (addr + size > bitmap_base + mapping_size) {
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001256 /*
1257 * The address range to be freed reaches into the iova
1258 * range of the next bitmap. This should not happen as
1259 * we don't allow this in __alloc_iova (at the
1260 * moment).
1261 */
1262 BUG();
1263 } else
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01001264 count = size >> PAGE_SHIFT;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001265
1266 spin_lock_irqsave(&mapping->lock, flags);
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01001267 bitmap_clear(mapping->bitmaps[bitmap_index], start, count);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001268 spin_unlock_irqrestore(&mapping->lock, flags);
1269}
1270
Doug Anderson33298ef2016-01-29 23:06:08 +01001271/* We'll try 2M, 1M, 64K, and finally 4K; array must end with 0! */
1272static const int iommu_order_array[] = { 9, 8, 4, 0 };
1273
Marek Szyprowski549a17e2012-10-15 16:03:52 +02001274static struct page **__iommu_alloc_buffer(struct device *dev, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001275 gfp_t gfp, unsigned long attrs,
Gregory CLEMENTf1270892016-04-15 11:15:18 +01001276 int coherent_flag)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001277{
1278 struct page **pages;
1279 int count = size >> PAGE_SHIFT;
1280 int array_size = count * sizeof(struct page *);
1281 int i = 0;
Doug Anderson33298ef2016-01-29 23:06:08 +01001282 int order_idx = 0;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001283
1284 if (array_size <= PAGE_SIZE)
Alexandre Courbot23be7fd2015-02-19 07:29:58 +01001285 pages = kzalloc(array_size, GFP_KERNEL);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001286 else
1287 pages = vzalloc(array_size);
1288 if (!pages)
1289 return NULL;
1290
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001291 if (attrs & DMA_ATTR_FORCE_CONTIGUOUS)
Marek Szyprowski549a17e2012-10-15 16:03:52 +02001292 {
1293 unsigned long order = get_order(size);
1294 struct page *page;
1295
Marek Szyprowskid834c5a2018-08-17 15:49:00 -07001296 page = dma_alloc_from_contiguous(dev, count, order,
1297 gfp & __GFP_NOWARN);
Marek Szyprowski549a17e2012-10-15 16:03:52 +02001298 if (!page)
1299 goto error;
1300
Gregory CLEMENTf1270892016-04-15 11:15:18 +01001301 __dma_clear_buffer(page, size, coherent_flag);
Marek Szyprowski549a17e2012-10-15 16:03:52 +02001302
1303 for (i = 0; i < count; i++)
1304 pages[i] = page + i;
1305
1306 return pages;
1307 }
1308
Doug Anderson14d3ae22016-01-29 23:08:46 +01001309 /* Go straight to 4K chunks if caller says it's OK. */
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001310 if (attrs & DMA_ATTR_ALLOC_SINGLE_PAGES)
Doug Anderson14d3ae22016-01-29 23:08:46 +01001311 order_idx = ARRAY_SIZE(iommu_order_array) - 1;
1312
Marek Szyprowskif8669be2013-01-16 15:41:02 +01001313 /*
1314 * IOMMU can map any pages, so himem can also be used here
1315 */
1316 gfp |= __GFP_NOWARN | __GFP_HIGHMEM;
1317
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001318 while (count) {
Tomasz Figa49f28aa2015-04-01 07:26:33 +01001319 int j, order;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001320
Doug Anderson33298ef2016-01-29 23:06:08 +01001321 order = iommu_order_array[order_idx];
1322
1323 /* Drop down when we get small */
1324 if (__fls(count) < order) {
1325 order_idx++;
1326 continue;
Tomasz Figa49f28aa2015-04-01 07:26:33 +01001327 }
1328
Doug Anderson33298ef2016-01-29 23:06:08 +01001329 if (order) {
1330 /* See if it's easy to allocate a high-order chunk */
1331 pages[i] = alloc_pages(gfp | __GFP_NORETRY, order);
1332
1333 /* Go down a notch at first sign of pressure */
1334 if (!pages[i]) {
1335 order_idx++;
1336 continue;
1337 }
1338 } else {
Tomasz Figa49f28aa2015-04-01 07:26:33 +01001339 pages[i] = alloc_pages(gfp, 0);
1340 if (!pages[i])
1341 goto error;
1342 }
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001343
Hiroshi Doyu5a796ee2012-09-11 07:39:39 +02001344 if (order) {
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001345 split_page(pages[i], order);
Hiroshi Doyu5a796ee2012-09-11 07:39:39 +02001346 j = 1 << order;
1347 while (--j)
1348 pages[i + j] = pages[i] + j;
1349 }
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001350
Gregory CLEMENTf1270892016-04-15 11:15:18 +01001351 __dma_clear_buffer(pages[i], PAGE_SIZE << order, coherent_flag);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001352 i += 1 << order;
1353 count -= 1 << order;
1354 }
1355
1356 return pages;
1357error:
Marek Szyprowski9fa8af92012-07-27 17:12:50 +02001358 while (i--)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001359 if (pages[i])
1360 __free_pages(pages[i], 0);
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -08001361 kvfree(pages);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001362 return NULL;
1363}
1364
Marek Szyprowski549a17e2012-10-15 16:03:52 +02001365static int __iommu_free_buffer(struct device *dev, struct page **pages,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001366 size_t size, unsigned long attrs)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001367{
1368 int count = size >> PAGE_SHIFT;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001369 int i;
Marek Szyprowski549a17e2012-10-15 16:03:52 +02001370
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001371 if (attrs & DMA_ATTR_FORCE_CONTIGUOUS) {
Marek Szyprowski549a17e2012-10-15 16:03:52 +02001372 dma_release_from_contiguous(dev, pages[0], count);
1373 } else {
1374 for (i = 0; i < count; i++)
1375 if (pages[i])
1376 __free_pages(pages[i], 0);
1377 }
1378
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -08001379 kvfree(pages);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001380 return 0;
1381}
1382
1383/*
1384 * Create a CPU mapping for a specified pages
1385 */
1386static void *
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02001387__iommu_alloc_remap(struct page **pages, size_t size, gfp_t gfp, pgprot_t prot,
1388 const void *caller)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001389{
Laura Abbott513510d2014-10-09 15:26:40 -07001390 return dma_common_pages_remap(pages, size,
1391 VM_ARM_DMA_CONSISTENT | VM_USERMAP, prot, caller);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001392}
1393
1394/*
1395 * Create a mapping in device IO address space for specified pages
1396 */
1397static dma_addr_t
Sricharan R7d2822d2017-01-06 18:58:13 +05301398__iommu_create_mapping(struct device *dev, struct page **pages, size_t size,
1399 unsigned long attrs)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001400{
Will Deacon89cfdb12015-01-16 18:02:15 +01001401 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001402 unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
1403 dma_addr_t dma_addr, iova;
Andre Przywara90cde552015-09-14 17:49:02 +01001404 int i;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001405
1406 dma_addr = __alloc_iova(mapping, size);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001407 if (dma_addr == DMA_MAPPING_ERROR)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001408 return dma_addr;
1409
1410 iova = dma_addr;
1411 for (i = 0; i < count; ) {
Andre Przywara90cde552015-09-14 17:49:02 +01001412 int ret;
1413
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001414 unsigned int next_pfn = page_to_pfn(pages[i]) + 1;
1415 phys_addr_t phys = page_to_phys(pages[i]);
1416 unsigned int len, j;
1417
1418 for (j = i + 1; j < count; j++, next_pfn++)
1419 if (page_to_pfn(pages[j]) != next_pfn)
1420 break;
1421
1422 len = (j - i) << PAGE_SHIFT;
Andreas Herrmannc9b24992013-09-27 00:36:15 +02001423 ret = iommu_map(mapping->domain, iova, phys, len,
Sricharan R7d2822d2017-01-06 18:58:13 +05301424 __dma_info_to_prot(DMA_BIDIRECTIONAL, attrs));
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001425 if (ret < 0)
1426 goto fail;
1427 iova += len;
1428 i = j;
1429 }
1430 return dma_addr;
1431fail:
1432 iommu_unmap(mapping->domain, dma_addr, iova-dma_addr);
1433 __free_iova(mapping, dma_addr, size);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001434 return DMA_MAPPING_ERROR;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001435}
1436
1437static int __iommu_remove_mapping(struct device *dev, dma_addr_t iova, size_t size)
1438{
Will Deacon89cfdb12015-01-16 18:02:15 +01001439 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001440
1441 /*
1442 * add optional in-page offset from iova to size and align
1443 * result to page size
1444 */
1445 size = PAGE_ALIGN((iova & ~PAGE_MASK) + size);
1446 iova &= PAGE_MASK;
1447
1448 iommu_unmap(mapping->domain, iova, size);
1449 __free_iova(mapping, iova, size);
1450 return 0;
1451}
1452
Hiroshi Doyu665bad72012-08-28 08:13:03 +03001453static struct page **__atomic_get_pages(void *addr)
1454{
Laura Abbott36d0fd22014-10-09 15:26:42 -07001455 struct page *page;
1456 phys_addr_t phys;
Hiroshi Doyu665bad72012-08-28 08:13:03 +03001457
Laura Abbott36d0fd22014-10-09 15:26:42 -07001458 phys = gen_pool_virt_to_phys(atomic_pool, (unsigned long)addr);
1459 page = phys_to_page(phys);
1460
1461 return (struct page **)page;
Hiroshi Doyu665bad72012-08-28 08:13:03 +03001462}
1463
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001464static struct page **__iommu_get_pages(void *cpu_addr, unsigned long attrs)
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02001465{
1466 struct vm_struct *area;
1467
Hiroshi Doyu665bad72012-08-28 08:13:03 +03001468 if (__in_atomic_pool(cpu_addr, PAGE_SIZE))
1469 return __atomic_get_pages(cpu_addr);
1470
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001471 if (attrs & DMA_ATTR_NO_KERNEL_MAPPING)
Marek Szyprowski955c7572012-05-16 19:38:58 +01001472 return cpu_addr;
1473
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02001474 area = find_vm_area(cpu_addr);
1475 if (area && (area->flags & VM_ARM_DMA_CONSISTENT))
1476 return area->pages;
1477 return NULL;
1478}
1479
Gregory CLEMENT56506822016-04-15 11:20:13 +01001480static void *__iommu_alloc_simple(struct device *dev, size_t size, gfp_t gfp,
Sricharan R7d2822d2017-01-06 18:58:13 +05301481 dma_addr_t *handle, int coherent_flag,
1482 unsigned long attrs)
Hiroshi Doyu479ed932012-08-28 08:13:04 +03001483{
1484 struct page *page;
1485 void *addr;
1486
Gregory CLEMENT56506822016-04-15 11:20:13 +01001487 if (coherent_flag == COHERENT)
1488 addr = __alloc_simple_buffer(dev, size, gfp, &page);
1489 else
1490 addr = __alloc_from_pool(size, &page);
Hiroshi Doyu479ed932012-08-28 08:13:04 +03001491 if (!addr)
1492 return NULL;
1493
Sricharan R7d2822d2017-01-06 18:58:13 +05301494 *handle = __iommu_create_mapping(dev, &page, size, attrs);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001495 if (*handle == DMA_MAPPING_ERROR)
Hiroshi Doyu479ed932012-08-28 08:13:04 +03001496 goto err_mapping;
1497
1498 return addr;
1499
1500err_mapping:
1501 __free_from_pool(addr, size);
1502 return NULL;
1503}
1504
Marek Szyprowskid5898292013-02-08 10:54:48 +01001505static void __iommu_free_atomic(struct device *dev, void *cpu_addr,
Gregory CLEMENT56506822016-04-15 11:20:13 +01001506 dma_addr_t handle, size_t size, int coherent_flag)
Hiroshi Doyu479ed932012-08-28 08:13:04 +03001507{
1508 __iommu_remove_mapping(dev, handle, size);
Gregory CLEMENT56506822016-04-15 11:20:13 +01001509 if (coherent_flag == COHERENT)
1510 __dma_free_buffer(virt_to_page(cpu_addr), size);
1511 else
1512 __free_from_pool(cpu_addr, size);
Hiroshi Doyu479ed932012-08-28 08:13:04 +03001513}
1514
Gregory CLEMENT56506822016-04-15 11:20:13 +01001515static void *__arm_iommu_alloc_attrs(struct device *dev, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001516 dma_addr_t *handle, gfp_t gfp, unsigned long attrs,
Gregory CLEMENT56506822016-04-15 11:20:13 +01001517 int coherent_flag)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001518{
Russell King71b55662013-11-25 12:01:03 +00001519 pgprot_t prot = __get_dma_pgprot(attrs, PAGE_KERNEL);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001520 struct page **pages;
1521 void *addr = NULL;
1522
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001523 *handle = DMA_MAPPING_ERROR;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001524 size = PAGE_ALIGN(size);
1525
Gregory CLEMENT56506822016-04-15 11:20:13 +01001526 if (coherent_flag == COHERENT || !gfpflags_allow_blocking(gfp))
1527 return __iommu_alloc_simple(dev, size, gfp, handle,
Sricharan R7d2822d2017-01-06 18:58:13 +05301528 coherent_flag, attrs);
Hiroshi Doyu479ed932012-08-28 08:13:04 +03001529
Richard Zhao5b91a982013-06-20 20:31:00 +08001530 /*
1531 * Following is a work-around (a.k.a. hack) to prevent pages
1532 * with __GFP_COMP being passed to split_page() which cannot
1533 * handle them. The real problem is that this flag probably
1534 * should be 0 on ARM as it is not supported on this
1535 * platform; see CONFIG_HUGETLBFS.
1536 */
1537 gfp &= ~(__GFP_COMP);
1538
Gregory CLEMENT56506822016-04-15 11:20:13 +01001539 pages = __iommu_alloc_buffer(dev, size, gfp, attrs, coherent_flag);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001540 if (!pages)
1541 return NULL;
1542
Sricharan R7d2822d2017-01-06 18:58:13 +05301543 *handle = __iommu_create_mapping(dev, pages, size, attrs);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001544 if (*handle == DMA_MAPPING_ERROR)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001545 goto err_buffer;
1546
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001547 if (attrs & DMA_ATTR_NO_KERNEL_MAPPING)
Marek Szyprowski955c7572012-05-16 19:38:58 +01001548 return pages;
1549
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02001550 addr = __iommu_alloc_remap(pages, size, gfp, prot,
1551 __builtin_return_address(0));
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001552 if (!addr)
1553 goto err_mapping;
1554
1555 return addr;
1556
1557err_mapping:
1558 __iommu_remove_mapping(dev, *handle, size);
1559err_buffer:
Marek Szyprowski549a17e2012-10-15 16:03:52 +02001560 __iommu_free_buffer(dev, pages, size, attrs);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001561 return NULL;
1562}
1563
Gregory CLEMENT56506822016-04-15 11:20:13 +01001564static void *arm_iommu_alloc_attrs(struct device *dev, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001565 dma_addr_t *handle, gfp_t gfp, unsigned long attrs)
Gregory CLEMENT56506822016-04-15 11:20:13 +01001566{
1567 return __arm_iommu_alloc_attrs(dev, size, handle, gfp, attrs, NORMAL);
1568}
1569
1570static void *arm_coherent_iommu_alloc_attrs(struct device *dev, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001571 dma_addr_t *handle, gfp_t gfp, unsigned long attrs)
Gregory CLEMENT56506822016-04-15 11:20:13 +01001572{
1573 return __arm_iommu_alloc_attrs(dev, size, handle, gfp, attrs, COHERENT);
1574}
1575
1576static int __arm_iommu_mmap_attrs(struct device *dev, struct vm_area_struct *vma,
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001577 void *cpu_addr, dma_addr_t dma_addr, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001578 unsigned long attrs)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001579{
Marek Szyprowski955c7572012-05-16 19:38:58 +01001580 struct page **pages = __iommu_get_pages(cpu_addr, attrs);
Marek Szyprowski371f0f02015-08-28 09:41:39 +01001581 unsigned long nr_pages = PAGE_ALIGN(size) >> PAGE_SHIFT;
Souptick Joarder62484612019-05-13 17:22:00 -07001582 int err;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001583
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02001584 if (!pages)
1585 return -ENXIO;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001586
Souptick Joarder62484612019-05-13 17:22:00 -07001587 if (vma->vm_pgoff >= nr_pages)
Marek Szyprowski371f0f02015-08-28 09:41:39 +01001588 return -ENXIO;
1589
Souptick Joarder62484612019-05-13 17:22:00 -07001590 err = vm_map_pages(vma, pages, nr_pages);
1591 if (err)
1592 pr_err("Remapping memory failed: %d\n", err);
Marek Szyprowski7e312102015-08-28 09:42:09 +01001593
Souptick Joarder62484612019-05-13 17:22:00 -07001594 return err;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001595}
Gregory CLEMENT56506822016-04-15 11:20:13 +01001596static int arm_iommu_mmap_attrs(struct device *dev,
1597 struct vm_area_struct *vma, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001598 dma_addr_t dma_addr, size_t size, unsigned long attrs)
Gregory CLEMENT56506822016-04-15 11:20:13 +01001599{
1600 vma->vm_page_prot = __get_dma_pgprot(attrs, vma->vm_page_prot);
1601
1602 return __arm_iommu_mmap_attrs(dev, vma, cpu_addr, dma_addr, size, attrs);
1603}
1604
1605static int arm_coherent_iommu_mmap_attrs(struct device *dev,
1606 struct vm_area_struct *vma, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001607 dma_addr_t dma_addr, size_t size, unsigned long attrs)
Gregory CLEMENT56506822016-04-15 11:20:13 +01001608{
1609 return __arm_iommu_mmap_attrs(dev, vma, cpu_addr, dma_addr, size, attrs);
1610}
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001611
1612/*
1613 * free a page as defined by the above mapping.
1614 * Must not be called with IRQs disabled.
1615 */
Gregory CLEMENT56506822016-04-15 11:20:13 +01001616void __arm_iommu_free_attrs(struct device *dev, size_t size, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001617 dma_addr_t handle, unsigned long attrs, int coherent_flag)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001618{
YoungJun Cho836bfa02013-06-17 13:18:52 +09001619 struct page **pages;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001620 size = PAGE_ALIGN(size);
1621
Gregory CLEMENT56506822016-04-15 11:20:13 +01001622 if (coherent_flag == COHERENT || __in_atomic_pool(cpu_addr, size)) {
1623 __iommu_free_atomic(dev, cpu_addr, handle, size, coherent_flag);
Hiroshi Doyu479ed932012-08-28 08:13:04 +03001624 return;
1625 }
1626
YoungJun Cho836bfa02013-06-17 13:18:52 +09001627 pages = __iommu_get_pages(cpu_addr, attrs);
1628 if (!pages) {
1629 WARN(1, "trying to free invalid coherent area: %p\n", cpu_addr);
1630 return;
1631 }
1632
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001633 if ((attrs & DMA_ATTR_NO_KERNEL_MAPPING) == 0) {
Laura Abbott513510d2014-10-09 15:26:40 -07001634 dma_common_free_remap(cpu_addr, size,
1635 VM_ARM_DMA_CONSISTENT | VM_USERMAP);
Marek Szyprowski955c7572012-05-16 19:38:58 +01001636 }
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02001637
1638 __iommu_remove_mapping(dev, handle, size);
Marek Szyprowski549a17e2012-10-15 16:03:52 +02001639 __iommu_free_buffer(dev, pages, size, attrs);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001640}
1641
Gregory CLEMENT56506822016-04-15 11:20:13 +01001642void arm_iommu_free_attrs(struct device *dev, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001643 void *cpu_addr, dma_addr_t handle, unsigned long attrs)
Gregory CLEMENT56506822016-04-15 11:20:13 +01001644{
1645 __arm_iommu_free_attrs(dev, size, cpu_addr, handle, attrs, NORMAL);
1646}
1647
1648void arm_coherent_iommu_free_attrs(struct device *dev, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001649 void *cpu_addr, dma_addr_t handle, unsigned long attrs)
Gregory CLEMENT56506822016-04-15 11:20:13 +01001650{
1651 __arm_iommu_free_attrs(dev, size, cpu_addr, handle, attrs, COHERENT);
1652}
1653
Marek Szyprowskidc2832e2012-06-13 10:01:15 +02001654static int arm_iommu_get_sgtable(struct device *dev, struct sg_table *sgt,
1655 void *cpu_addr, dma_addr_t dma_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001656 size_t size, unsigned long attrs)
Marek Szyprowskidc2832e2012-06-13 10:01:15 +02001657{
1658 unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
1659 struct page **pages = __iommu_get_pages(cpu_addr, attrs);
1660
1661 if (!pages)
1662 return -ENXIO;
1663
1664 return sg_alloc_table_from_pages(sgt, pages, count, 0, size,
1665 GFP_KERNEL);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001666}
1667
1668/*
1669 * Map a part of the scatter-gather list into contiguous io address space
1670 */
1671static int __map_sg_chunk(struct device *dev, struct scatterlist *sg,
1672 size_t size, dma_addr_t *handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001673 enum dma_data_direction dir, unsigned long attrs,
Rob Herring0fa478d2012-08-21 12:23:23 +02001674 bool is_coherent)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001675{
Will Deacon89cfdb12015-01-16 18:02:15 +01001676 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001677 dma_addr_t iova, iova_base;
1678 int ret = 0;
1679 unsigned int count;
1680 struct scatterlist *s;
Andreas Herrmannc9b24992013-09-27 00:36:15 +02001681 int prot;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001682
1683 size = PAGE_ALIGN(size);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001684 *handle = DMA_MAPPING_ERROR;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001685
1686 iova_base = iova = __alloc_iova(mapping, size);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001687 if (iova == DMA_MAPPING_ERROR)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001688 return -ENOMEM;
1689
1690 for (count = 0, s = sg; count < (size >> PAGE_SHIFT); s = sg_next(s)) {
Dan Williams3e6110f2015-12-15 12:54:06 -08001691 phys_addr_t phys = page_to_phys(sg_page(s));
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001692 unsigned int len = PAGE_ALIGN(s->offset + s->length);
1693
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001694 if (!is_coherent && (attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001695 __dma_page_cpu_to_dev(sg_page(s), s->offset, s->length, dir);
1696
Sricharan R7d2822d2017-01-06 18:58:13 +05301697 prot = __dma_info_to_prot(dir, attrs);
Andreas Herrmannc9b24992013-09-27 00:36:15 +02001698
1699 ret = iommu_map(mapping->domain, iova, phys, len, prot);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001700 if (ret < 0)
1701 goto fail;
1702 count += len >> PAGE_SHIFT;
1703 iova += len;
1704 }
1705 *handle = iova_base;
1706
1707 return 0;
1708fail:
1709 iommu_unmap(mapping->domain, iova_base, count * PAGE_SIZE);
1710 __free_iova(mapping, iova_base, size);
1711 return ret;
1712}
1713
Rob Herring0fa478d2012-08-21 12:23:23 +02001714static int __iommu_map_sg(struct device *dev, struct scatterlist *sg, int nents,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001715 enum dma_data_direction dir, unsigned long attrs,
Rob Herring0fa478d2012-08-21 12:23:23 +02001716 bool is_coherent)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001717{
1718 struct scatterlist *s = sg, *dma = sg, *start = sg;
1719 int i, count = 0;
1720 unsigned int offset = s->offset;
1721 unsigned int size = s->offset + s->length;
1722 unsigned int max = dma_get_max_seg_size(dev);
1723
1724 for (i = 1; i < nents; i++) {
1725 s = sg_next(s);
1726
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001727 s->dma_address = DMA_MAPPING_ERROR;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001728 s->dma_length = 0;
1729
1730 if (s->offset || (size & ~PAGE_MASK) || size + s->length > max) {
1731 if (__map_sg_chunk(dev, start, size, &dma->dma_address,
Rob Herring0fa478d2012-08-21 12:23:23 +02001732 dir, attrs, is_coherent) < 0)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001733 goto bad_mapping;
1734
1735 dma->dma_address += offset;
1736 dma->dma_length = size - offset;
1737
1738 size = offset = s->offset;
1739 start = s;
1740 dma = sg_next(dma);
1741 count += 1;
1742 }
1743 size += s->length;
1744 }
Rob Herring0fa478d2012-08-21 12:23:23 +02001745 if (__map_sg_chunk(dev, start, size, &dma->dma_address, dir, attrs,
1746 is_coherent) < 0)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001747 goto bad_mapping;
1748
1749 dma->dma_address += offset;
1750 dma->dma_length = size - offset;
1751
1752 return count+1;
1753
1754bad_mapping:
1755 for_each_sg(sg, s, count, i)
1756 __iommu_remove_mapping(dev, sg_dma_address(s), sg_dma_len(s));
1757 return 0;
1758}
1759
1760/**
Rob Herring0fa478d2012-08-21 12:23:23 +02001761 * arm_coherent_iommu_map_sg - map a set of SG buffers for streaming mode DMA
1762 * @dev: valid struct device pointer
1763 * @sg: list of buffers
1764 * @nents: number of buffers to map
1765 * @dir: DMA transfer direction
1766 *
1767 * Map a set of i/o coherent buffers described by scatterlist in streaming
1768 * mode for DMA. The scatter gather list elements are merged together (if
1769 * possible) and tagged with the appropriate dma address and length. They are
1770 * obtained via sg_dma_{address,length}.
1771 */
1772int arm_coherent_iommu_map_sg(struct device *dev, struct scatterlist *sg,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001773 int nents, enum dma_data_direction dir, unsigned long attrs)
Rob Herring0fa478d2012-08-21 12:23:23 +02001774{
1775 return __iommu_map_sg(dev, sg, nents, dir, attrs, true);
1776}
1777
1778/**
1779 * arm_iommu_map_sg - map a set of SG buffers for streaming mode DMA
1780 * @dev: valid struct device pointer
1781 * @sg: list of buffers
1782 * @nents: number of buffers to map
1783 * @dir: DMA transfer direction
1784 *
1785 * Map a set of buffers described by scatterlist in streaming mode for DMA.
1786 * The scatter gather list elements are merged together (if possible) and
1787 * tagged with the appropriate dma address and length. They are obtained via
1788 * sg_dma_{address,length}.
1789 */
1790int arm_iommu_map_sg(struct device *dev, struct scatterlist *sg,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001791 int nents, enum dma_data_direction dir, unsigned long attrs)
Rob Herring0fa478d2012-08-21 12:23:23 +02001792{
1793 return __iommu_map_sg(dev, sg, nents, dir, attrs, false);
1794}
1795
1796static void __iommu_unmap_sg(struct device *dev, struct scatterlist *sg,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001797 int nents, enum dma_data_direction dir,
1798 unsigned long attrs, bool is_coherent)
Rob Herring0fa478d2012-08-21 12:23:23 +02001799{
1800 struct scatterlist *s;
1801 int i;
1802
1803 for_each_sg(sg, s, nents, i) {
1804 if (sg_dma_len(s))
1805 __iommu_remove_mapping(dev, sg_dma_address(s),
1806 sg_dma_len(s));
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001807 if (!is_coherent && (attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
Rob Herring0fa478d2012-08-21 12:23:23 +02001808 __dma_page_dev_to_cpu(sg_page(s), s->offset,
1809 s->length, dir);
1810 }
1811}
1812
1813/**
1814 * arm_coherent_iommu_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
1815 * @dev: valid struct device pointer
1816 * @sg: list of buffers
1817 * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
1818 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1819 *
1820 * Unmap a set of streaming mode DMA translations. Again, CPU access
1821 * rules concerning calls here are the same as for dma_unmap_single().
1822 */
1823void arm_coherent_iommu_unmap_sg(struct device *dev, struct scatterlist *sg,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001824 int nents, enum dma_data_direction dir,
1825 unsigned long attrs)
Rob Herring0fa478d2012-08-21 12:23:23 +02001826{
1827 __iommu_unmap_sg(dev, sg, nents, dir, attrs, true);
1828}
1829
1830/**
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001831 * arm_iommu_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
1832 * @dev: valid struct device pointer
1833 * @sg: list of buffers
1834 * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
1835 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1836 *
1837 * Unmap a set of streaming mode DMA translations. Again, CPU access
1838 * rules concerning calls here are the same as for dma_unmap_single().
1839 */
1840void arm_iommu_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001841 enum dma_data_direction dir,
1842 unsigned long attrs)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001843{
Rob Herring0fa478d2012-08-21 12:23:23 +02001844 __iommu_unmap_sg(dev, sg, nents, dir, attrs, false);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001845}
1846
1847/**
1848 * arm_iommu_sync_sg_for_cpu
1849 * @dev: valid struct device pointer
1850 * @sg: list of buffers
1851 * @nents: number of buffers to map (returned from dma_map_sg)
1852 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1853 */
1854void arm_iommu_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1855 int nents, enum dma_data_direction dir)
1856{
1857 struct scatterlist *s;
1858 int i;
1859
1860 for_each_sg(sg, s, nents, i)
Rob Herring0fa478d2012-08-21 12:23:23 +02001861 __dma_page_dev_to_cpu(sg_page(s), s->offset, s->length, dir);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001862
1863}
1864
1865/**
1866 * arm_iommu_sync_sg_for_device
1867 * @dev: valid struct device pointer
1868 * @sg: list of buffers
1869 * @nents: number of buffers to map (returned from dma_map_sg)
1870 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
1871 */
1872void arm_iommu_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1873 int nents, enum dma_data_direction dir)
1874{
1875 struct scatterlist *s;
1876 int i;
1877
1878 for_each_sg(sg, s, nents, i)
Rob Herring0fa478d2012-08-21 12:23:23 +02001879 __dma_page_cpu_to_dev(sg_page(s), s->offset, s->length, dir);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001880}
1881
1882
1883/**
Rob Herring0fa478d2012-08-21 12:23:23 +02001884 * arm_coherent_iommu_map_page
1885 * @dev: valid struct device pointer
1886 * @page: page that buffer resides in
1887 * @offset: offset into page for start of buffer
1888 * @size: size of buffer to map
1889 * @dir: DMA transfer direction
1890 *
1891 * Coherent IOMMU aware version of arm_dma_map_page()
1892 */
1893static dma_addr_t arm_coherent_iommu_map_page(struct device *dev, struct page *page,
1894 unsigned long offset, size_t size, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001895 unsigned long attrs)
Rob Herring0fa478d2012-08-21 12:23:23 +02001896{
Will Deacon89cfdb12015-01-16 18:02:15 +01001897 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
Rob Herring0fa478d2012-08-21 12:23:23 +02001898 dma_addr_t dma_addr;
Will Deacon13987d62013-06-10 19:34:39 +01001899 int ret, prot, len = PAGE_ALIGN(size + offset);
Rob Herring0fa478d2012-08-21 12:23:23 +02001900
1901 dma_addr = __alloc_iova(mapping, len);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001902 if (dma_addr == DMA_MAPPING_ERROR)
Rob Herring0fa478d2012-08-21 12:23:23 +02001903 return dma_addr;
1904
Sricharan R7d2822d2017-01-06 18:58:13 +05301905 prot = __dma_info_to_prot(dir, attrs);
Will Deacon13987d62013-06-10 19:34:39 +01001906
1907 ret = iommu_map(mapping->domain, dma_addr, page_to_phys(page), len, prot);
Rob Herring0fa478d2012-08-21 12:23:23 +02001908 if (ret < 0)
1909 goto fail;
1910
1911 return dma_addr + offset;
1912fail:
1913 __free_iova(mapping, dma_addr, len);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01001914 return DMA_MAPPING_ERROR;
Rob Herring0fa478d2012-08-21 12:23:23 +02001915}
1916
1917/**
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001918 * arm_iommu_map_page
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 *
1925 * IOMMU aware version of arm_dma_map_page()
1926 */
1927static dma_addr_t arm_iommu_map_page(struct device *dev, struct page *page,
1928 unsigned long offset, size_t size, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001929 unsigned long attrs)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001930{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001931 if ((attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001932 __dma_page_cpu_to_dev(page, offset, size, dir);
1933
Rob Herring0fa478d2012-08-21 12:23:23 +02001934 return arm_coherent_iommu_map_page(dev, page, offset, size, dir, attrs);
1935}
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001936
Rob Herring0fa478d2012-08-21 12:23:23 +02001937/**
1938 * arm_coherent_iommu_unmap_page
1939 * @dev: valid struct device pointer
1940 * @handle: DMA address of buffer
1941 * @size: size of buffer (same as passed to dma_map_page)
1942 * @dir: DMA transfer direction (same as passed to dma_map_page)
1943 *
1944 * Coherent IOMMU aware version of arm_dma_unmap_page()
1945 */
1946static void arm_coherent_iommu_unmap_page(struct device *dev, dma_addr_t handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001947 size_t size, enum dma_data_direction dir, unsigned long attrs)
Rob Herring0fa478d2012-08-21 12:23:23 +02001948{
Will Deacon89cfdb12015-01-16 18:02:15 +01001949 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
Rob Herring0fa478d2012-08-21 12:23:23 +02001950 dma_addr_t iova = handle & PAGE_MASK;
Rob Herring0fa478d2012-08-21 12:23:23 +02001951 int offset = handle & ~PAGE_MASK;
1952 int len = PAGE_ALIGN(size + offset);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001953
Rob Herring0fa478d2012-08-21 12:23:23 +02001954 if (!iova)
1955 return;
1956
1957 iommu_unmap(mapping->domain, iova, len);
1958 __free_iova(mapping, iova, len);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001959}
1960
1961/**
1962 * arm_iommu_unmap_page
1963 * @dev: valid struct device pointer
1964 * @handle: DMA address of buffer
1965 * @size: size of buffer (same as passed to dma_map_page)
1966 * @dir: DMA transfer direction (same as passed to dma_map_page)
1967 *
1968 * IOMMU aware version of arm_dma_unmap_page()
1969 */
1970static void arm_iommu_unmap_page(struct device *dev, dma_addr_t handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001971 size_t size, enum dma_data_direction dir, unsigned long attrs)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001972{
Will Deacon89cfdb12015-01-16 18:02:15 +01001973 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001974 dma_addr_t iova = handle & PAGE_MASK;
1975 struct page *page = phys_to_page(iommu_iova_to_phys(mapping->domain, iova));
1976 int offset = handle & ~PAGE_MASK;
1977 int len = PAGE_ALIGN(size + offset);
1978
1979 if (!iova)
1980 return;
1981
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07001982 if ((attrs & DMA_ATTR_SKIP_CPU_SYNC) == 0)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001983 __dma_page_dev_to_cpu(page, offset, size, dir);
1984
1985 iommu_unmap(mapping->domain, iova, len);
1986 __free_iova(mapping, iova, len);
1987}
1988
Niklas Söderlund24ed5d22016-08-10 13:22:17 +02001989/**
1990 * arm_iommu_map_resource - map a device resource for DMA
1991 * @dev: valid struct device pointer
1992 * @phys_addr: physical address of resource
1993 * @size: size of resource to map
1994 * @dir: DMA transfer direction
1995 */
1996static dma_addr_t arm_iommu_map_resource(struct device *dev,
1997 phys_addr_t phys_addr, size_t size,
1998 enum dma_data_direction dir, unsigned long attrs)
1999{
2000 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
2001 dma_addr_t dma_addr;
2002 int ret, prot;
2003 phys_addr_t addr = phys_addr & PAGE_MASK;
2004 unsigned int offset = phys_addr & ~PAGE_MASK;
2005 size_t len = PAGE_ALIGN(size + offset);
2006
2007 dma_addr = __alloc_iova(mapping, len);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01002008 if (dma_addr == DMA_MAPPING_ERROR)
Niklas Söderlund24ed5d22016-08-10 13:22:17 +02002009 return dma_addr;
2010
Sricharan R7d2822d2017-01-06 18:58:13 +05302011 prot = __dma_info_to_prot(dir, attrs) | IOMMU_MMIO;
Niklas Söderlund24ed5d22016-08-10 13:22:17 +02002012
2013 ret = iommu_map(mapping->domain, dma_addr, addr, len, prot);
2014 if (ret < 0)
2015 goto fail;
2016
2017 return dma_addr + offset;
2018fail:
2019 __free_iova(mapping, dma_addr, len);
Christoph Hellwig72fd97b2018-11-21 18:57:36 +01002020 return DMA_MAPPING_ERROR;
Niklas Söderlund24ed5d22016-08-10 13:22:17 +02002021}
2022
2023/**
2024 * arm_iommu_unmap_resource - unmap a device DMA resource
2025 * @dev: valid struct device pointer
2026 * @dma_handle: DMA address to resource
2027 * @size: size of resource to map
2028 * @dir: DMA transfer direction
2029 */
2030static void arm_iommu_unmap_resource(struct device *dev, dma_addr_t dma_handle,
2031 size_t size, enum dma_data_direction dir,
2032 unsigned long attrs)
2033{
2034 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
2035 dma_addr_t iova = dma_handle & PAGE_MASK;
2036 unsigned int offset = dma_handle & ~PAGE_MASK;
2037 size_t len = PAGE_ALIGN(size + offset);
2038
2039 if (!iova)
2040 return;
2041
2042 iommu_unmap(mapping->domain, iova, len);
2043 __free_iova(mapping, iova, len);
2044}
2045
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002046static void arm_iommu_sync_single_for_cpu(struct device *dev,
2047 dma_addr_t handle, size_t size, enum dma_data_direction dir)
2048{
Will Deacon89cfdb12015-01-16 18:02:15 +01002049 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002050 dma_addr_t iova = handle & PAGE_MASK;
2051 struct page *page = phys_to_page(iommu_iova_to_phys(mapping->domain, iova));
2052 unsigned int offset = handle & ~PAGE_MASK;
2053
2054 if (!iova)
2055 return;
2056
Rob Herring0fa478d2012-08-21 12:23:23 +02002057 __dma_page_dev_to_cpu(page, offset, size, dir);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002058}
2059
2060static void arm_iommu_sync_single_for_device(struct device *dev,
2061 dma_addr_t handle, size_t size, enum dma_data_direction dir)
2062{
Will Deacon89cfdb12015-01-16 18:02:15 +01002063 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002064 dma_addr_t iova = handle & PAGE_MASK;
2065 struct page *page = phys_to_page(iommu_iova_to_phys(mapping->domain, iova));
2066 unsigned int offset = handle & ~PAGE_MASK;
2067
2068 if (!iova)
2069 return;
2070
2071 __dma_page_cpu_to_dev(page, offset, size, dir);
2072}
2073
Bart Van Assche52997092017-01-20 13:04:01 -08002074const struct dma_map_ops iommu_ops = {
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002075 .alloc = arm_iommu_alloc_attrs,
2076 .free = arm_iommu_free_attrs,
2077 .mmap = arm_iommu_mmap_attrs,
Marek Szyprowskidc2832e2012-06-13 10:01:15 +02002078 .get_sgtable = arm_iommu_get_sgtable,
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002079
2080 .map_page = arm_iommu_map_page,
2081 .unmap_page = arm_iommu_unmap_page,
2082 .sync_single_for_cpu = arm_iommu_sync_single_for_cpu,
2083 .sync_single_for_device = arm_iommu_sync_single_for_device,
2084
2085 .map_sg = arm_iommu_map_sg,
2086 .unmap_sg = arm_iommu_unmap_sg,
2087 .sync_sg_for_cpu = arm_iommu_sync_sg_for_cpu,
2088 .sync_sg_for_device = arm_iommu_sync_sg_for_device,
Niklas Söderlund24ed5d22016-08-10 13:22:17 +02002089
2090 .map_resource = arm_iommu_map_resource,
2091 .unmap_resource = arm_iommu_unmap_resource,
Christoph Hellwig9eef8b82017-05-22 10:53:03 +02002092
Christoph Hellwig418a7a72017-05-22 11:20:18 +02002093 .dma_supported = arm_dma_supported,
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002094};
2095
Bart Van Assche52997092017-01-20 13:04:01 -08002096const struct dma_map_ops iommu_coherent_ops = {
Gregory CLEMENT56506822016-04-15 11:20:13 +01002097 .alloc = arm_coherent_iommu_alloc_attrs,
2098 .free = arm_coherent_iommu_free_attrs,
2099 .mmap = arm_coherent_iommu_mmap_attrs,
Rob Herring0fa478d2012-08-21 12:23:23 +02002100 .get_sgtable = arm_iommu_get_sgtable,
2101
2102 .map_page = arm_coherent_iommu_map_page,
2103 .unmap_page = arm_coherent_iommu_unmap_page,
2104
2105 .map_sg = arm_coherent_iommu_map_sg,
2106 .unmap_sg = arm_coherent_iommu_unmap_sg,
Niklas Söderlund24ed5d22016-08-10 13:22:17 +02002107
2108 .map_resource = arm_iommu_map_resource,
2109 .unmap_resource = arm_iommu_unmap_resource,
Christoph Hellwig9eef8b82017-05-22 10:53:03 +02002110
Christoph Hellwig418a7a72017-05-22 11:20:18 +02002111 .dma_supported = arm_dma_supported,
Rob Herring0fa478d2012-08-21 12:23:23 +02002112};
2113
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002114/**
2115 * arm_iommu_create_mapping
2116 * @bus: pointer to the bus holding the client device (for IOMMU calls)
2117 * @base: start address of the valid IO address space
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01002118 * @size: maximum size of the valid IO address space
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002119 *
2120 * Creates a mapping structure which holds information about used/unused
2121 * IO address ranges, which is required to perform memory allocation and
2122 * mapping with IOMMU aware functions.
2123 *
2124 * The client device need to be attached to the mapping with
2125 * arm_iommu_attach_device function.
2126 */
2127struct dma_iommu_mapping *
Marek Szyprowski14245322015-04-29 11:29:19 +01002128arm_iommu_create_mapping(struct bus_type *bus, dma_addr_t base, u64 size)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002129{
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01002130 unsigned int bits = size >> PAGE_SHIFT;
2131 unsigned int bitmap_size = BITS_TO_LONGS(bits) * sizeof(long);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002132 struct dma_iommu_mapping *mapping;
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01002133 int extensions = 1;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002134 int err = -ENOMEM;
2135
Marek Szyprowski14245322015-04-29 11:29:19 +01002136 /* currently only 32-bit DMA address space is supported */
2137 if (size > DMA_BIT_MASK(32) + 1)
2138 return ERR_PTR(-ERANGE);
2139
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01002140 if (!bitmap_size)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002141 return ERR_PTR(-EINVAL);
2142
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01002143 if (bitmap_size > PAGE_SIZE) {
2144 extensions = bitmap_size / PAGE_SIZE;
2145 bitmap_size = PAGE_SIZE;
2146 }
2147
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002148 mapping = kzalloc(sizeof(struct dma_iommu_mapping), GFP_KERNEL);
2149 if (!mapping)
2150 goto err;
2151
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01002152 mapping->bitmap_size = bitmap_size;
Kees Cook6396bb22018-06-12 14:03:40 -07002153 mapping->bitmaps = kcalloc(extensions, sizeof(unsigned long *),
2154 GFP_KERNEL);
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002155 if (!mapping->bitmaps)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002156 goto err2;
2157
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01002158 mapping->bitmaps[0] = kzalloc(bitmap_size, GFP_KERNEL);
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002159 if (!mapping->bitmaps[0])
2160 goto err3;
2161
2162 mapping->nr_bitmaps = 1;
2163 mapping->extensions = extensions;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002164 mapping->base = base;
Marek Szyprowski68efd7d2014-02-25 13:01:09 +01002165 mapping->bits = BITS_PER_BYTE * bitmap_size;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002166
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002167 spin_lock_init(&mapping->lock);
2168
2169 mapping->domain = iommu_domain_alloc(bus);
2170 if (!mapping->domain)
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002171 goto err4;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002172
2173 kref_init(&mapping->kref);
2174 return mapping;
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002175err4:
2176 kfree(mapping->bitmaps[0]);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002177err3:
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002178 kfree(mapping->bitmaps);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002179err2:
2180 kfree(mapping);
2181err:
2182 return ERR_PTR(err);
2183}
Prathyush K18177d12013-01-04 06:22:42 -05002184EXPORT_SYMBOL_GPL(arm_iommu_create_mapping);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002185
2186static void release_iommu_mapping(struct kref *kref)
2187{
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002188 int i;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002189 struct dma_iommu_mapping *mapping =
2190 container_of(kref, struct dma_iommu_mapping, kref);
2191
2192 iommu_domain_free(mapping->domain);
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002193 for (i = 0; i < mapping->nr_bitmaps; i++)
2194 kfree(mapping->bitmaps[i]);
2195 kfree(mapping->bitmaps);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002196 kfree(mapping);
2197}
2198
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002199static int extend_iommu_mapping(struct dma_iommu_mapping *mapping)
2200{
2201 int next_bitmap;
2202
Marek Szyprowski462859aa2015-07-08 13:21:55 +01002203 if (mapping->nr_bitmaps >= mapping->extensions)
Andreas Herrmann4d852ef2014-02-25 13:09:53 +01002204 return -EINVAL;
2205
2206 next_bitmap = mapping->nr_bitmaps;
2207 mapping->bitmaps[next_bitmap] = kzalloc(mapping->bitmap_size,
2208 GFP_ATOMIC);
2209 if (!mapping->bitmaps[next_bitmap])
2210 return -ENOMEM;
2211
2212 mapping->nr_bitmaps++;
2213
2214 return 0;
2215}
2216
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002217void arm_iommu_release_mapping(struct dma_iommu_mapping *mapping)
2218{
2219 if (mapping)
2220 kref_put(&mapping->kref, release_iommu_mapping);
2221}
Prathyush K18177d12013-01-04 06:22:42 -05002222EXPORT_SYMBOL_GPL(arm_iommu_release_mapping);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002223
Laurent Pincharteab8d652015-01-23 16:21:49 +02002224static int __arm_iommu_attach_device(struct device *dev,
2225 struct dma_iommu_mapping *mapping)
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002226{
2227 int err;
2228
2229 err = iommu_attach_device(mapping->domain, dev);
2230 if (err)
2231 return err;
2232
2233 kref_get(&mapping->kref);
Will Deacon89cfdb12015-01-16 18:02:15 +01002234 to_dma_iommu_mapping(dev) = mapping;
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002235
Hiroshi Doyu75c59712012-09-11 07:39:48 +02002236 pr_debug("Attached IOMMU controller to %s device.\n", dev_name(dev));
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02002237 return 0;
2238}
2239
Hiroshi Doyu6fe36752013-01-24 15:16:57 +02002240/**
Laurent Pincharteab8d652015-01-23 16:21:49 +02002241 * arm_iommu_attach_device
Hiroshi Doyu6fe36752013-01-24 15:16:57 +02002242 * @dev: valid struct device pointer
Laurent Pincharteab8d652015-01-23 16:21:49 +02002243 * @mapping: io address space mapping structure (returned from
2244 * arm_iommu_create_mapping)
Hiroshi Doyu6fe36752013-01-24 15:16:57 +02002245 *
Laurent Pincharteab8d652015-01-23 16:21:49 +02002246 * Attaches specified io address space mapping to the provided device.
2247 * This replaces the dma operations (dma_map_ops pointer) with the
2248 * IOMMU aware version.
2249 *
2250 * More than one client might be attached to the same io address space
2251 * mapping.
Hiroshi Doyu6fe36752013-01-24 15:16:57 +02002252 */
Laurent Pincharteab8d652015-01-23 16:21:49 +02002253int arm_iommu_attach_device(struct device *dev,
2254 struct dma_iommu_mapping *mapping)
2255{
2256 int err;
2257
2258 err = __arm_iommu_attach_device(dev, mapping);
2259 if (err)
2260 return err;
2261
2262 set_dma_ops(dev, &iommu_ops);
2263 return 0;
2264}
2265EXPORT_SYMBOL_GPL(arm_iommu_attach_device);
2266
Sricharan Rd3e01c52017-05-27 19:17:45 +05302267/**
2268 * arm_iommu_detach_device
2269 * @dev: valid struct device pointer
2270 *
2271 * Detaches the provided device from a previously attached map.
Wolfram Sang (Renesas)4a4d68f2018-12-19 00:12:07 +01002272 * This overwrites the dma_ops pointer with appropriate non-IOMMU ops.
Sricharan Rd3e01c52017-05-27 19:17:45 +05302273 */
2274void arm_iommu_detach_device(struct device *dev)
Hiroshi Doyu6fe36752013-01-24 15:16:57 +02002275{
2276 struct dma_iommu_mapping *mapping;
2277
2278 mapping = to_dma_iommu_mapping(dev);
2279 if (!mapping) {
2280 dev_warn(dev, "Not attached\n");
2281 return;
2282 }
2283
2284 iommu_detach_device(mapping->domain, dev);
2285 kref_put(&mapping->kref, release_iommu_mapping);
Will Deacon89cfdb12015-01-16 18:02:15 +01002286 to_dma_iommu_mapping(dev) = NULL;
Thierry Reding18746192018-05-30 16:06:24 +02002287 set_dma_ops(dev, arm_get_dma_map_ops(dev->archdata.dma_coherent));
Hiroshi Doyu6fe36752013-01-24 15:16:57 +02002288
2289 pr_debug("Detached IOMMU controller from %s device.\n", dev_name(dev));
2290}
Prathyush K18177d12013-01-04 06:22:42 -05002291EXPORT_SYMBOL_GPL(arm_iommu_detach_device);
Hiroshi Doyu6fe36752013-01-24 15:16:57 +02002292
Bart Van Assche52997092017-01-20 13:04:01 -08002293static const struct dma_map_ops *arm_get_iommu_dma_map_ops(bool coherent)
Will Deacon4bb25782014-08-27 17:52:44 +01002294{
2295 return coherent ? &iommu_coherent_ops : &iommu_ops;
2296}
2297
2298static bool arm_setup_iommu_dma_ops(struct device *dev, u64 dma_base, u64 size,
Robin Murphy53c92d72016-04-07 18:42:05 +01002299 const struct iommu_ops *iommu)
Will Deacon4bb25782014-08-27 17:52:44 +01002300{
2301 struct dma_iommu_mapping *mapping;
2302
2303 if (!iommu)
2304 return false;
2305
2306 mapping = arm_iommu_create_mapping(dev->bus, dma_base, size);
2307 if (IS_ERR(mapping)) {
2308 pr_warn("Failed to create %llu-byte IOMMU mapping for device %s\n",
2309 size, dev_name(dev));
2310 return false;
2311 }
2312
Laurent Pincharteab8d652015-01-23 16:21:49 +02002313 if (__arm_iommu_attach_device(dev, mapping)) {
Will Deacon4bb25782014-08-27 17:52:44 +01002314 pr_warn("Failed to attached device %s to IOMMU_mapping\n",
2315 dev_name(dev));
2316 arm_iommu_release_mapping(mapping);
2317 return false;
2318 }
2319
2320 return true;
2321}
2322
2323static void arm_teardown_iommu_dma_ops(struct device *dev)
2324{
Will Deacon89cfdb12015-01-16 18:02:15 +01002325 struct dma_iommu_mapping *mapping = to_dma_iommu_mapping(dev);
Will Deacon4bb25782014-08-27 17:52:44 +01002326
Will Deaconc2273a12015-01-16 18:01:43 +01002327 if (!mapping)
2328 return;
2329
Sricharan Rd3e01c52017-05-27 19:17:45 +05302330 arm_iommu_detach_device(dev);
Will Deacon4bb25782014-08-27 17:52:44 +01002331 arm_iommu_release_mapping(mapping);
2332}
2333
2334#else
2335
2336static bool arm_setup_iommu_dma_ops(struct device *dev, u64 dma_base, u64 size,
Robin Murphy53c92d72016-04-07 18:42:05 +01002337 const struct iommu_ops *iommu)
Will Deacon4bb25782014-08-27 17:52:44 +01002338{
2339 return false;
2340}
2341
2342static void arm_teardown_iommu_dma_ops(struct device *dev) { }
2343
2344#define arm_get_iommu_dma_map_ops arm_get_dma_map_ops
2345
2346#endif /* CONFIG_ARM_DMA_USE_IOMMU */
2347
Will Deacon4bb25782014-08-27 17:52:44 +01002348void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size,
Robin Murphy53c92d72016-04-07 18:42:05 +01002349 const struct iommu_ops *iommu, bool coherent)
Will Deacon4bb25782014-08-27 17:52:44 +01002350{
Bart Van Assche52997092017-01-20 13:04:01 -08002351 const struct dma_map_ops *dma_ops;
Will Deacon4bb25782014-08-27 17:52:44 +01002352
Linus Torvalds6f51ee72014-12-16 14:53:01 -08002353 dev->archdata.dma_coherent = coherent;
Laurent Pinchart26b37b92015-05-15 02:00:02 +03002354
2355 /*
2356 * Don't override the dma_ops if they have already been set. Ideally
2357 * this should be the only location where dma_ops are set, remove this
2358 * check when all other callers of set_dma_ops will have disappeared.
2359 */
2360 if (dev->dma_ops)
2361 return;
2362
Will Deacon4bb25782014-08-27 17:52:44 +01002363 if (arm_setup_iommu_dma_ops(dev, dma_base, size, iommu))
2364 dma_ops = arm_get_iommu_dma_map_ops(coherent);
2365 else
2366 dma_ops = arm_get_dma_map_ops(coherent);
2367
2368 set_dma_ops(dev, dma_ops);
Stefano Stabellinie0586322017-04-13 14:04:21 -07002369
2370#ifdef CONFIG_XEN
2371 if (xen_initial_domain()) {
2372 dev->archdata.dev_dma_ops = dev->dma_ops;
2373 dev->dma_ops = xen_dma_ops;
2374 }
2375#endif
Laurent Pincharta93a1212017-05-27 19:17:43 +05302376 dev->archdata.dma_ops_setup = true;
Will Deacon4bb25782014-08-27 17:52:44 +01002377}
2378
2379void arch_teardown_dma_ops(struct device *dev)
2380{
Laurent Pincharta93a1212017-05-27 19:17:43 +05302381 if (!dev->archdata.dma_ops_setup)
2382 return;
2383
Will Deacon4bb25782014-08-27 17:52:44 +01002384 arm_teardown_iommu_dma_ops(dev);
Robin Murphyfc67e6f2019-02-06 18:43:24 +01002385 /* Let arch_setup_dma_ops() start again from scratch upon re-probe */
2386 set_dma_ops(dev, NULL);
Will Deacon4bb25782014-08-27 17:52:44 +01002387}