blob: e4e7f6cba1ab4823fdbf0fe7ab2109bf6df89ed7 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
16#include <linux/list.h>
17#include <linux/init.h>
18#include <linux/device.h>
19#include <linux/dma-mapping.h>
Nicolas Pitre39af22a2010-12-15 15:14:45 -050020#include <linux/highmem.h>
Jon Medhurst99d17172011-08-02 17:28:27 +010021#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Lennert Buytenhek23759dc2006-04-02 00:07:39 +010023#include <asm/memory.h>
Nicolas Pitre43377452009-03-12 22:52:09 -040024#include <asm/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/tlbflush.h>
Kevin Hilman37134cd2006-01-12 16:12:21 +000027#include <asm/sizes.h>
Jon Medhurst99d17172011-08-02 17:28:27 +010028#include <asm/mach/arch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Russell King022ae532011-07-08 21:26:59 +010030#include "mm.h"
31
Catalin Marinasab6494f2009-07-24 12:35:02 +010032static u64 get_coherent_dma_mask(struct device *dev)
33{
Russell King022ae532011-07-08 21:26:59 +010034 u64 mask = (u64)arm_dma_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Catalin Marinasab6494f2009-07-24 12:35:02 +010036 if (dev) {
37 mask = dev->coherent_dma_mask;
38
39 /*
40 * Sanity check the DMA mask - it must be non-zero, and
41 * must be able to be satisfied by a DMA allocation.
42 */
43 if (mask == 0) {
44 dev_warn(dev, "coherent DMA mask is unset\n");
45 return 0;
46 }
47
Russell King022ae532011-07-08 21:26:59 +010048 if ((~mask) & (u64)arm_dma_limit) {
Catalin Marinasab6494f2009-07-24 12:35:02 +010049 dev_warn(dev, "coherent DMA mask %#llx is smaller "
50 "than system GFP_DMA mask %#llx\n",
Russell King022ae532011-07-08 21:26:59 +010051 mask, (u64)arm_dma_limit);
Catalin Marinasab6494f2009-07-24 12:35:02 +010052 return 0;
53 }
54 }
55
56 return mask;
57}
58
Russell King7a9a32a2009-11-19 15:31:07 +000059/*
60 * Allocate a DMA buffer for 'dev' of size 'size' using the
61 * specified gfp mask. Note that 'size' must be page aligned.
62 */
63static struct page *__dma_alloc_buffer(struct device *dev, size_t size, gfp_t gfp)
64{
65 unsigned long order = get_order(size);
66 struct page *page, *p, *e;
67 void *ptr;
68 u64 mask = get_coherent_dma_mask(dev);
69
70#ifdef CONFIG_DMA_API_DEBUG
71 u64 limit = (mask + 1) & ~mask;
72 if (limit && size >= limit) {
73 dev_warn(dev, "coherent allocation too big (requested %#x mask %#llx)\n",
74 size, mask);
75 return NULL;
76 }
77#endif
78
79 if (!mask)
80 return NULL;
81
82 if (mask < 0xffffffffULL)
83 gfp |= GFP_DMA;
84
85 page = alloc_pages(gfp, order);
86 if (!page)
87 return NULL;
88
89 /*
90 * Now split the huge page and free the excess pages
91 */
92 split_page(page, order);
93 for (p = page + (size >> PAGE_SHIFT), e = page + (1 << order); p < e; p++)
94 __free_page(p);
95
96 /*
97 * Ensure that the allocated pages are zeroed, and that any data
98 * lurking in the kernel direct-mapped region is invalidated.
99 */
100 ptr = page_address(page);
101 memset(ptr, 0, size);
102 dmac_flush_range(ptr, ptr + size);
103 outer_flush_range(__pa(ptr), __pa(ptr) + size);
104
105 return page;
106}
107
108/*
109 * Free a DMA buffer. 'size' must be page aligned.
110 */
111static void __dma_free_buffer(struct page *page, size_t size)
112{
113 struct page *e = page + (size >> PAGE_SHIFT);
114
115 while (page < e) {
116 __free_page(page);
117 page++;
118 }
119}
120
Catalin Marinasab6494f2009-07-24 12:35:02 +0100121#ifdef CONFIG_MMU
Catalin Marinasa5e9d382010-06-21 15:09:06 +0100122
Jon Medhurst99d17172011-08-02 17:28:27 +0100123#define CONSISTENT_OFFSET(x) (((unsigned long)(x) - consistent_base) >> PAGE_SHIFT)
Linus Torvalds1fdb24e2011-10-28 12:02:27 -0700124#define CONSISTENT_PTE_INDEX(x) (((unsigned long)(x) - consistent_base) >> PMD_SHIFT)
Catalin Marinasa5e9d382010-06-21 15:09:06 +0100125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/*
Kevin Hilman37134cd2006-01-12 16:12:21 +0000127 * These are the page tables (2MB each) covering uncached, DMA consistent allocations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
Jon Medhurst99d17172011-08-02 17:28:27 +0100129static pte_t **consistent_pte;
130
Jon Medhurst99d17172011-08-02 17:28:27 +0100131#define DEFAULT_CONSISTENT_DMA_SIZE SZ_2M
Jon Medhurst99d17172011-08-02 17:28:27 +0100132
133unsigned long consistent_base = CONSISTENT_END - DEFAULT_CONSISTENT_DMA_SIZE;
134
135void __init init_consistent_dma_size(unsigned long size)
136{
137 unsigned long base = CONSISTENT_END - ALIGN(size, SZ_2M);
138
139 BUG_ON(consistent_pte); /* Check we're called before DMA region init */
140 BUG_ON(base < VMALLOC_END);
141
142 /* Grow region to accommodate specified size */
143 if (base < consistent_base)
144 consistent_base = base;
145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Russell King13ccf3a2009-11-19 15:07:04 +0000147#include "vmregion.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Russell King13ccf3a2009-11-19 15:07:04 +0000149static struct arm_vmregion_head consistent_head = {
150 .vm_lock = __SPIN_LOCK_UNLOCKED(&consistent_head.vm_lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 .vm_list = LIST_HEAD_INIT(consistent_head.vm_list),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 .vm_end = CONSISTENT_END,
153};
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#ifdef CONFIG_HUGETLB_PAGE
156#error ARM Coherent DMA allocator does not (yet) support huge TLB
157#endif
158
Russell King88c58f32009-11-19 16:46:02 +0000159/*
160 * Initialise the consistent memory allocation.
161 */
162static int __init consistent_init(void)
163{
164 int ret = 0;
165 pgd_t *pgd;
Russell King516295e2010-11-21 16:27:49 +0000166 pud_t *pud;
Russell King88c58f32009-11-19 16:46:02 +0000167 pmd_t *pmd;
168 pte_t *pte;
169 int i = 0;
Jon Medhurst99d17172011-08-02 17:28:27 +0100170 unsigned long base = consistent_base;
171 unsigned long num_ptes = (CONSISTENT_END - base) >> PGDIR_SHIFT;
172
173 consistent_pte = kmalloc(num_ptes * sizeof(pte_t), GFP_KERNEL);
174 if (!consistent_pte) {
175 pr_err("%s: no memory\n", __func__);
176 return -ENOMEM;
177 }
178
179 pr_debug("DMA memory: 0x%08lx - 0x%08lx:\n", base, CONSISTENT_END);
180 consistent_head.vm_start = base;
Russell King88c58f32009-11-19 16:46:02 +0000181
182 do {
183 pgd = pgd_offset(&init_mm, base);
Russell King516295e2010-11-21 16:27:49 +0000184
185 pud = pud_alloc(&init_mm, pgd, base);
186 if (!pud) {
187 printk(KERN_ERR "%s: no pud tables\n", __func__);
188 ret = -ENOMEM;
189 break;
190 }
191
192 pmd = pmd_alloc(&init_mm, pud, base);
Russell King88c58f32009-11-19 16:46:02 +0000193 if (!pmd) {
194 printk(KERN_ERR "%s: no pmd tables\n", __func__);
195 ret = -ENOMEM;
196 break;
197 }
198 WARN_ON(!pmd_none(*pmd));
199
200 pte = pte_alloc_kernel(pmd, base);
201 if (!pte) {
202 printk(KERN_ERR "%s: no pte tables\n", __func__);
203 ret = -ENOMEM;
204 break;
205 }
206
207 consistent_pte[i++] = pte;
Catalin Marinase73fc882011-08-23 14:07:23 +0100208 base += PMD_SIZE;
Russell King88c58f32009-11-19 16:46:02 +0000209 } while (base < CONSISTENT_END);
210
211 return ret;
212}
213
214core_initcall(consistent_init);
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216static void *
Russell King31ebf942009-11-19 21:12:17 +0000217__dma_alloc_remap(struct page *page, size_t size, gfp_t gfp, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Russell King13ccf3a2009-11-19 15:07:04 +0000219 struct arm_vmregion *c;
Russell King5bc23d32010-07-25 08:57:02 +0100220 size_t align;
221 int bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Jon Medhurst99d17172011-08-02 17:28:27 +0100223 if (!consistent_pte) {
Russell Kingebd7a842009-11-19 20:58:31 +0000224 printk(KERN_ERR "%s: not initialised\n", __func__);
225 dump_stack();
Russell Kingebd7a842009-11-19 20:58:31 +0000226 return NULL;
227 }
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /*
Russell King5bc23d32010-07-25 08:57:02 +0100230 * Align the virtual region allocation - maximum alignment is
231 * a section size, minimum is a page size. This helps reduce
232 * fragmentation of the DMA space, and also prevents allocations
233 * smaller than a section from crossing a section boundary.
234 */
Russell Kingc947f692010-11-03 16:00:15 +0000235 bit = fls(size - 1);
Russell King5bc23d32010-07-25 08:57:02 +0100236 if (bit > SECTION_SHIFT)
237 bit = SECTION_SHIFT;
238 align = 1 << bit;
239
240 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 * Allocate a virtual address in the consistent mapping region.
242 */
Russell King5bc23d32010-07-25 08:57:02 +0100243 c = arm_vmregion_alloc(&consistent_head, align, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 gfp & ~(__GFP_DMA | __GFP_HIGHMEM));
245 if (c) {
Kevin Hilman37134cd2006-01-12 16:12:21 +0000246 pte_t *pte;
Kevin Hilman37134cd2006-01-12 16:12:21 +0000247 int idx = CONSISTENT_PTE_INDEX(c->vm_start);
248 u32 off = CONSISTENT_OFFSET(c->vm_start) & (PTRS_PER_PTE-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Kevin Hilman37134cd2006-01-12 16:12:21 +0000250 pte = consistent_pte[idx] + off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 c->vm_pages = page;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 do {
254 BUG_ON(!pte_none(*pte));
255
Russell Kingad1ae2f2006-12-13 14:34:43 +0000256 set_pte_ext(pte, mk_pte(page, prot), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 page++;
258 pte++;
Kevin Hilman37134cd2006-01-12 16:12:21 +0000259 off++;
260 if (off >= PTRS_PER_PTE) {
261 off = 0;
262 pte = consistent_pte[++idx];
263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 } while (size -= PAGE_SIZE);
265
Russell King2be23c42010-09-08 16:27:56 +0100266 dsb();
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return (void *)c->vm_start;
269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return NULL;
271}
Russell King695ae0a2009-11-19 16:31:39 +0000272
273static void __dma_free_remap(void *cpu_addr, size_t size)
274{
275 struct arm_vmregion *c;
276 unsigned long addr;
277 pte_t *ptep;
278 int idx;
279 u32 off;
280
281 c = arm_vmregion_find_remove(&consistent_head, (unsigned long)cpu_addr);
282 if (!c) {
283 printk(KERN_ERR "%s: trying to free invalid coherent area: %p\n",
284 __func__, cpu_addr);
285 dump_stack();
286 return;
287 }
288
289 if ((c->vm_end - c->vm_start) != size) {
290 printk(KERN_ERR "%s: freeing wrong coherent size (%ld != %d)\n",
291 __func__, c->vm_end - c->vm_start, size);
292 dump_stack();
293 size = c->vm_end - c->vm_start;
294 }
295
296 idx = CONSISTENT_PTE_INDEX(c->vm_start);
297 off = CONSISTENT_OFFSET(c->vm_start) & (PTRS_PER_PTE-1);
298 ptep = consistent_pte[idx] + off;
299 addr = c->vm_start;
300 do {
301 pte_t pte = ptep_get_and_clear(&init_mm, addr, ptep);
Russell King695ae0a2009-11-19 16:31:39 +0000302
303 ptep++;
304 addr += PAGE_SIZE;
305 off++;
306 if (off >= PTRS_PER_PTE) {
307 off = 0;
308 ptep = consistent_pte[++idx];
309 }
310
Russell Kingacaac252009-11-20 18:19:52 +0000311 if (pte_none(pte) || !pte_present(pte))
312 printk(KERN_CRIT "%s: bad page in kernel page table\n",
313 __func__);
Russell King695ae0a2009-11-19 16:31:39 +0000314 } while (size -= PAGE_SIZE);
315
316 flush_tlb_kernel_range(c->vm_start, c->vm_end);
317
318 arm_vmregion_free(&consistent_head, c);
319}
320
Catalin Marinasab6494f2009-07-24 12:35:02 +0100321#else /* !CONFIG_MMU */
Russell King695ae0a2009-11-19 16:31:39 +0000322
Russell King31ebf942009-11-19 21:12:17 +0000323#define __dma_alloc_remap(page, size, gfp, prot) page_address(page)
324#define __dma_free_remap(addr, size) do { } while (0)
325
326#endif /* CONFIG_MMU */
327
Catalin Marinasab6494f2009-07-24 12:35:02 +0100328static void *
329__dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp,
330 pgprot_t prot)
331{
Russell King04da5692009-11-19 15:54:45 +0000332 struct page *page;
Russell King31ebf942009-11-19 21:12:17 +0000333 void *addr;
Catalin Marinasab6494f2009-07-24 12:35:02 +0100334
Catalin Marinasab6494f2009-07-24 12:35:02 +0100335 *handle = ~0;
Russell King04da5692009-11-19 15:54:45 +0000336 size = PAGE_ALIGN(size);
337
338 page = __dma_alloc_buffer(dev, size, gfp);
339 if (!page)
340 return NULL;
341
Russell King31ebf942009-11-19 21:12:17 +0000342 if (!arch_is_coherent())
343 addr = __dma_alloc_remap(page, size, gfp, prot);
344 else
345 addr = page_address(page);
346
347 if (addr)
Russell King9eedd962011-01-03 00:00:17 +0000348 *handle = pfn_to_dma(dev, page_to_pfn(page));
Russell Kingd8e89b42011-09-22 10:32:25 +0100349 else
350 __dma_free_buffer(page, size);
Russell King31ebf942009-11-19 21:12:17 +0000351
352 return addr;
Catalin Marinasab6494f2009-07-24 12:35:02 +0100353}
Russell King695ae0a2009-11-19 16:31:39 +0000354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355/*
356 * Allocate DMA-coherent memory space and return both the kernel remapped
357 * virtual and bus address for that space.
358 */
359void *
Al Virof9e32142005-10-21 03:20:58 -0400360dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Dmitry Baryshkov1fe53262008-07-18 13:30:14 +0400362 void *memory;
363
364 if (dma_alloc_from_coherent(dev, size, handle, &memory))
365 return memory;
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return __dma_alloc(dev, size, handle, gfp,
Russell King26a26d32009-11-20 21:06:43 +0000368 pgprot_dmacoherent(pgprot_kernel));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370EXPORT_SYMBOL(dma_alloc_coherent);
371
372/*
373 * Allocate a writecombining region, in much the same way as
374 * dma_alloc_coherent above.
375 */
376void *
Al Virof9e32142005-10-21 03:20:58 -0400377dma_alloc_writecombine(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 return __dma_alloc(dev, size, handle, gfp,
380 pgprot_writecombine(pgprot_kernel));
381}
382EXPORT_SYMBOL(dma_alloc_writecombine);
383
384static int dma_mmap(struct device *dev, struct vm_area_struct *vma,
385 void *cpu_addr, dma_addr_t dma_addr, size_t size)
386{
Catalin Marinasab6494f2009-07-24 12:35:02 +0100387 int ret = -ENXIO;
388#ifdef CONFIG_MMU
Russell King13ccf3a2009-11-19 15:07:04 +0000389 unsigned long user_size, kern_size;
390 struct arm_vmregion *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 user_size = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
393
Russell King13ccf3a2009-11-19 15:07:04 +0000394 c = arm_vmregion_find(&consistent_head, (unsigned long)cpu_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (c) {
396 unsigned long off = vma->vm_pgoff;
397
398 kern_size = (c->vm_end - c->vm_start) >> PAGE_SHIFT;
399
400 if (off < kern_size &&
401 user_size <= (kern_size - off)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 ret = remap_pfn_range(vma, vma->vm_start,
403 page_to_pfn(c->vm_pages) + off,
404 user_size << PAGE_SHIFT,
405 vma->vm_page_prot);
406 }
407 }
Catalin Marinasab6494f2009-07-24 12:35:02 +0100408#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 return ret;
411}
412
413int dma_mmap_coherent(struct device *dev, struct vm_area_struct *vma,
414 void *cpu_addr, dma_addr_t dma_addr, size_t size)
415{
Russell King26a26d32009-11-20 21:06:43 +0000416 vma->vm_page_prot = pgprot_dmacoherent(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
418}
419EXPORT_SYMBOL(dma_mmap_coherent);
420
421int dma_mmap_writecombine(struct device *dev, struct vm_area_struct *vma,
422 void *cpu_addr, dma_addr_t dma_addr, size_t size)
423{
424 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
425 return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
426}
427EXPORT_SYMBOL(dma_mmap_writecombine);
428
429/*
430 * free a page as defined by the above mapping.
Russell King5edf71a2005-11-25 15:52:51 +0000431 * Must not be called with IRQs disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 */
433void dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, dma_addr_t handle)
434{
Russell King5edf71a2005-11-25 15:52:51 +0000435 WARN_ON(irqs_disabled());
436
Dmitry Baryshkov1fe53262008-07-18 13:30:14 +0400437 if (dma_release_from_coherent(dev, get_order(size), cpu_addr))
438 return;
439
Russell King3e82d012009-11-19 15:38:12 +0000440 size = PAGE_ALIGN(size);
441
Russell King695ae0a2009-11-19 16:31:39 +0000442 if (!arch_is_coherent())
443 __dma_free_remap(cpu_addr, size);
Russell King7a9a32a2009-11-19 15:31:07 +0000444
Russell King9eedd962011-01-03 00:00:17 +0000445 __dma_free_buffer(pfn_to_page(dma_to_pfn(dev, handle)), size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447EXPORT_SYMBOL(dma_free_coherent);
448
449/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * Make an area consistent for devices.
Dan Williams105ef9a2006-11-21 22:57:23 +0100451 * Note: Drivers should NOT use this function directly, as it will break
452 * platforms with CONFIG_DMABOUNCE.
453 * Use the driver DMA support - see dma-mapping.h (dma_sync_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 */
Russell King4ea0d732009-11-24 16:27:17 +0000455void ___dma_single_cpu_to_dev(const void *kaddr, size_t size,
456 enum dma_data_direction dir)
457{
Russell King2ffe2da2009-10-31 16:52:16 +0000458 unsigned long paddr;
459
Russell Kinga9c91472009-11-26 16:19:58 +0000460 BUG_ON(!virt_addr_valid(kaddr) || !virt_addr_valid(kaddr + size - 1));
461
462 dmac_map_area(kaddr, size, dir);
Russell King2ffe2da2009-10-31 16:52:16 +0000463
464 paddr = __pa(kaddr);
465 if (dir == DMA_FROM_DEVICE) {
466 outer_inv_range(paddr, paddr + size);
467 } else {
468 outer_clean_range(paddr, paddr + size);
469 }
470 /* FIXME: non-speculating: flush on bidirectional mappings? */
Russell King4ea0d732009-11-24 16:27:17 +0000471}
472EXPORT_SYMBOL(___dma_single_cpu_to_dev);
473
474void ___dma_single_dev_to_cpu(const void *kaddr, size_t size,
475 enum dma_data_direction dir)
476{
Russell Kinga9c91472009-11-26 16:19:58 +0000477 BUG_ON(!virt_addr_valid(kaddr) || !virt_addr_valid(kaddr + size - 1));
478
Russell King2ffe2da2009-10-31 16:52:16 +0000479 /* FIXME: non-speculating: not required */
480 /* don't bother invalidating if DMA to device */
481 if (dir != DMA_TO_DEVICE) {
482 unsigned long paddr = __pa(kaddr);
483 outer_inv_range(paddr, paddr + size);
484 }
485
Russell Kinga9c91472009-11-26 16:19:58 +0000486 dmac_unmap_area(kaddr, size, dir);
Russell King4ea0d732009-11-24 16:27:17 +0000487}
488EXPORT_SYMBOL(___dma_single_dev_to_cpu);
Russell Kingafd1a322008-09-25 16:30:57 +0100489
Russell King65af1912009-11-24 17:53:33 +0000490static void dma_cache_maint_page(struct page *page, unsigned long offset,
Russell Kinga9c91472009-11-26 16:19:58 +0000491 size_t size, enum dma_data_direction dir,
492 void (*op)(const void *, size_t, int))
Russell King65af1912009-11-24 17:53:33 +0000493{
494 /*
495 * A single sg entry may refer to multiple physically contiguous
496 * pages. But we still need to process highmem pages individually.
497 * If highmem is not configured then the bulk of this loop gets
498 * optimized out.
499 */
500 size_t left = size;
501 do {
502 size_t len = left;
Russell King93f1d622009-11-24 14:41:01 +0000503 void *vaddr;
504
505 if (PageHighMem(page)) {
506 if (len + offset > PAGE_SIZE) {
507 if (offset >= PAGE_SIZE) {
508 page += offset / PAGE_SIZE;
509 offset %= PAGE_SIZE;
510 }
511 len = PAGE_SIZE - offset;
Russell King65af1912009-11-24 17:53:33 +0000512 }
Russell King93f1d622009-11-24 14:41:01 +0000513 vaddr = kmap_high_get(page);
514 if (vaddr) {
515 vaddr += offset;
Russell Kinga9c91472009-11-26 16:19:58 +0000516 op(vaddr, len, dir);
Russell King93f1d622009-11-24 14:41:01 +0000517 kunmap_high(page);
Nicolas Pitre7e5a69e2010-03-29 21:46:02 +0100518 } else if (cache_is_vipt()) {
Nicolas Pitre39af22a2010-12-15 15:14:45 -0500519 /* unmapped pages might still be cached */
520 vaddr = kmap_atomic(page);
Nicolas Pitre7e5a69e2010-03-29 21:46:02 +0100521 op(vaddr + offset, len, dir);
Nicolas Pitre39af22a2010-12-15 15:14:45 -0500522 kunmap_atomic(vaddr);
Russell King93f1d622009-11-24 14:41:01 +0000523 }
524 } else {
525 vaddr = page_address(page) + offset;
Russell Kinga9c91472009-11-26 16:19:58 +0000526 op(vaddr, len, dir);
Russell King65af1912009-11-24 17:53:33 +0000527 }
Russell King65af1912009-11-24 17:53:33 +0000528 offset = 0;
529 page++;
530 left -= len;
531 } while (left);
532}
533
534void ___dma_page_cpu_to_dev(struct page *page, unsigned long off,
535 size_t size, enum dma_data_direction dir)
536{
Nicolas Pitre43377452009-03-12 22:52:09 -0400537 unsigned long paddr;
Nicolas Pitre43377452009-03-12 22:52:09 -0400538
Russell Kinga9c91472009-11-26 16:19:58 +0000539 dma_cache_maint_page(page, off, size, dir, dmac_map_area);
Nicolas Pitre43377452009-03-12 22:52:09 -0400540
Russell King65af1912009-11-24 17:53:33 +0000541 paddr = page_to_phys(page) + off;
Russell King2ffe2da2009-10-31 16:52:16 +0000542 if (dir == DMA_FROM_DEVICE) {
543 outer_inv_range(paddr, paddr + size);
544 } else {
545 outer_clean_range(paddr, paddr + size);
546 }
547 /* FIXME: non-speculating: flush on bidirectional mappings? */
Nicolas Pitre43377452009-03-12 22:52:09 -0400548}
Russell King4ea0d732009-11-24 16:27:17 +0000549EXPORT_SYMBOL(___dma_page_cpu_to_dev);
550
551void ___dma_page_dev_to_cpu(struct page *page, unsigned long off,
552 size_t size, enum dma_data_direction dir)
553{
Russell King2ffe2da2009-10-31 16:52:16 +0000554 unsigned long paddr = page_to_phys(page) + off;
555
556 /* FIXME: non-speculating: not required */
557 /* don't bother invalidating if DMA to device */
558 if (dir != DMA_TO_DEVICE)
559 outer_inv_range(paddr, paddr + size);
560
Russell Kinga9c91472009-11-26 16:19:58 +0000561 dma_cache_maint_page(page, off, size, dir, dmac_unmap_area);
Catalin Marinasc0177802010-09-13 15:57:36 +0100562
563 /*
564 * Mark the D-cache clean for this page to avoid extra flushing.
565 */
566 if (dir != DMA_TO_DEVICE && off == 0 && size >= PAGE_SIZE)
567 set_bit(PG_dcache_clean, &page->flags);
Russell King4ea0d732009-11-24 16:27:17 +0000568}
569EXPORT_SYMBOL(___dma_page_dev_to_cpu);
Nicolas Pitre43377452009-03-12 22:52:09 -0400570
Russell Kingafd1a322008-09-25 16:30:57 +0100571/**
572 * dma_map_sg - map a set of SG buffers for streaming mode DMA
573 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
574 * @sg: list of buffers
575 * @nents: number of buffers to map
576 * @dir: DMA transfer direction
577 *
578 * Map a set of buffers described by scatterlist in streaming mode for DMA.
579 * This is the scatter-gather version of the dma_map_single interface.
580 * Here the scatter gather list elements are each tagged with the
581 * appropriate dma address and length. They are obtained via
582 * sg_dma_{address,length}.
583 *
584 * Device ownership issues as mentioned for dma_map_single are the same
585 * here.
586 */
587int dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
588 enum dma_data_direction dir)
589{
590 struct scatterlist *s;
Russell King01135d922008-09-25 21:05:02 +0100591 int i, j;
Russell Kingafd1a322008-09-25 16:30:57 +0100592
Russell King24056f52011-01-03 11:29:28 +0000593 BUG_ON(!valid_dma_direction(dir));
594
Russell Kingafd1a322008-09-25 16:30:57 +0100595 for_each_sg(sg, s, nents, i) {
Russell King24056f52011-01-03 11:29:28 +0000596 s->dma_address = __dma_map_page(dev, sg_page(s), s->offset,
Russell King01135d922008-09-25 21:05:02 +0100597 s->length, dir);
598 if (dma_mapping_error(dev, s->dma_address))
599 goto bad_mapping;
Russell Kingafd1a322008-09-25 16:30:57 +0100600 }
Russell King24056f52011-01-03 11:29:28 +0000601 debug_dma_map_sg(dev, sg, nents, nents, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100602 return nents;
Russell King01135d922008-09-25 21:05:02 +0100603
604 bad_mapping:
605 for_each_sg(sg, s, i, j)
Russell King24056f52011-01-03 11:29:28 +0000606 __dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
Russell King01135d922008-09-25 21:05:02 +0100607 return 0;
Russell Kingafd1a322008-09-25 16:30:57 +0100608}
609EXPORT_SYMBOL(dma_map_sg);
610
611/**
612 * dma_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
613 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
614 * @sg: list of buffers
Linus Walleij0adfca62011-01-12 18:50:37 +0100615 * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
Russell Kingafd1a322008-09-25 16:30:57 +0100616 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
617 *
618 * Unmap a set of streaming mode DMA translations. Again, CPU access
619 * rules concerning calls here are the same as for dma_unmap_single().
620 */
621void dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
622 enum dma_data_direction dir)
623{
Russell King01135d922008-09-25 21:05:02 +0100624 struct scatterlist *s;
625 int i;
626
Russell King24056f52011-01-03 11:29:28 +0000627 debug_dma_unmap_sg(dev, sg, nents, dir);
628
Russell King01135d922008-09-25 21:05:02 +0100629 for_each_sg(sg, s, nents, i)
Russell King24056f52011-01-03 11:29:28 +0000630 __dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100631}
632EXPORT_SYMBOL(dma_unmap_sg);
633
634/**
635 * dma_sync_sg_for_cpu
636 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
637 * @sg: list of buffers
638 * @nents: number of buffers to map (returned from dma_map_sg)
639 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
640 */
641void dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
642 int nents, enum dma_data_direction dir)
643{
644 struct scatterlist *s;
645 int i;
646
647 for_each_sg(sg, s, nents, i) {
Russell King18eabe22009-10-31 16:52:16 +0000648 if (!dmabounce_sync_for_cpu(dev, sg_dma_address(s), 0,
649 sg_dma_len(s), dir))
650 continue;
651
652 __dma_page_dev_to_cpu(sg_page(s), s->offset,
653 s->length, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100654 }
Russell King24056f52011-01-03 11:29:28 +0000655
656 debug_dma_sync_sg_for_cpu(dev, sg, nents, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100657}
658EXPORT_SYMBOL(dma_sync_sg_for_cpu);
659
660/**
661 * dma_sync_sg_for_device
662 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
663 * @sg: list of buffers
664 * @nents: number of buffers to map (returned from dma_map_sg)
665 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
666 */
667void dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
668 int nents, enum dma_data_direction dir)
669{
670 struct scatterlist *s;
671 int i;
672
673 for_each_sg(sg, s, nents, i) {
Russell King2638b4d2008-09-25 21:38:41 +0100674 if (!dmabounce_sync_for_device(dev, sg_dma_address(s), 0,
675 sg_dma_len(s), dir))
676 continue;
677
Russell King18eabe22009-10-31 16:52:16 +0000678 __dma_page_cpu_to_dev(sg_page(s), s->offset,
679 s->length, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100680 }
Russell King24056f52011-01-03 11:29:28 +0000681
682 debug_dma_sync_sg_for_device(dev, sg, nents, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100683}
684EXPORT_SYMBOL(dma_sync_sg_for_device);
Russell King24056f52011-01-03 11:29:28 +0000685
Russell King022ae532011-07-08 21:26:59 +0100686/*
687 * Return whether the given device DMA address mask can be supported
688 * properly. For example, if your device can only drive the low 24-bits
689 * during bus mastering, then you would pass 0x00ffffff as the mask
690 * to this function.
691 */
692int dma_supported(struct device *dev, u64 mask)
693{
694 if (mask < (u64)arm_dma_limit)
695 return 0;
696 return 1;
697}
698EXPORT_SYMBOL(dma_supported);
699
700int dma_set_mask(struct device *dev, u64 dma_mask)
701{
702 if (!dev->dma_mask || !dma_supported(dev, dma_mask))
703 return -EIO;
704
705#ifndef CONFIG_DMABOUNCE
706 *dev->dma_mask = dma_mask;
707#endif
708
709 return 0;
710}
711EXPORT_SYMBOL(dma_set_mask);
712
Russell King24056f52011-01-03 11:29:28 +0000713#define PREALLOC_DMA_DEBUG_ENTRIES 4096
714
715static int __init dma_debug_do_init(void)
716{
717 dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
718 return 0;
719}
720fs_initcall(dma_debug_do_init);