blob: 01f5987eb1ad114aa7786537a0c6834efd2bee32 [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
124#define CONSISTENT_OFFSET(x) (((unsigned long)(x) - consistent_base) >> PAGE_SHIFT)
125#define CONSISTENT_PTE_INDEX(x) (((unsigned long)(x) - consistent_base) >> PGDIR_SHIFT)
Catalin Marinasa5e9d382010-06-21 15:09:06 +0100126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*
Kevin Hilman37134cd2006-01-12 16:12:21 +0000128 * These are the page tables (2MB each) covering uncached, DMA consistent allocations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
Jon Medhurst99d17172011-08-02 17:28:27 +0100130static pte_t **consistent_pte;
131
Jon Medhurst99d17172011-08-02 17:28:27 +0100132#define DEFAULT_CONSISTENT_DMA_SIZE SZ_2M
Jon Medhurst99d17172011-08-02 17:28:27 +0100133
134unsigned long consistent_base = CONSISTENT_END - DEFAULT_CONSISTENT_DMA_SIZE;
135
136void __init init_consistent_dma_size(unsigned long size)
137{
138 unsigned long base = CONSISTENT_END - ALIGN(size, SZ_2M);
139
140 BUG_ON(consistent_pte); /* Check we're called before DMA region init */
141 BUG_ON(base < VMALLOC_END);
142
143 /* Grow region to accommodate specified size */
144 if (base < consistent_base)
145 consistent_base = base;
146}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Russell King13ccf3a2009-11-19 15:07:04 +0000148#include "vmregion.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Russell King13ccf3a2009-11-19 15:07:04 +0000150static struct arm_vmregion_head consistent_head = {
151 .vm_lock = __SPIN_LOCK_UNLOCKED(&consistent_head.vm_lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 .vm_list = LIST_HEAD_INIT(consistent_head.vm_list),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 .vm_end = CONSISTENT_END,
154};
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#ifdef CONFIG_HUGETLB_PAGE
157#error ARM Coherent DMA allocator does not (yet) support huge TLB
158#endif
159
Russell King88c58f32009-11-19 16:46:02 +0000160/*
161 * Initialise the consistent memory allocation.
162 */
163static int __init consistent_init(void)
164{
165 int ret = 0;
166 pgd_t *pgd;
Russell King516295e2010-11-21 16:27:49 +0000167 pud_t *pud;
Russell King88c58f32009-11-19 16:46:02 +0000168 pmd_t *pmd;
169 pte_t *pte;
170 int i = 0;
Jon Medhurst99d17172011-08-02 17:28:27 +0100171 unsigned long base = consistent_base;
172 unsigned long num_ptes = (CONSISTENT_END - base) >> PGDIR_SHIFT;
173
174 consistent_pte = kmalloc(num_ptes * sizeof(pte_t), GFP_KERNEL);
175 if (!consistent_pte) {
176 pr_err("%s: no memory\n", __func__);
177 return -ENOMEM;
178 }
179
180 pr_debug("DMA memory: 0x%08lx - 0x%08lx:\n", base, CONSISTENT_END);
181 consistent_head.vm_start = base;
Russell King88c58f32009-11-19 16:46:02 +0000182
183 do {
184 pgd = pgd_offset(&init_mm, base);
Russell King516295e2010-11-21 16:27:49 +0000185
186 pud = pud_alloc(&init_mm, pgd, base);
187 if (!pud) {
188 printk(KERN_ERR "%s: no pud tables\n", __func__);
189 ret = -ENOMEM;
190 break;
191 }
192
193 pmd = pmd_alloc(&init_mm, pud, base);
Russell King88c58f32009-11-19 16:46:02 +0000194 if (!pmd) {
195 printk(KERN_ERR "%s: no pmd tables\n", __func__);
196 ret = -ENOMEM;
197 break;
198 }
199 WARN_ON(!pmd_none(*pmd));
200
201 pte = pte_alloc_kernel(pmd, base);
202 if (!pte) {
203 printk(KERN_ERR "%s: no pte tables\n", __func__);
204 ret = -ENOMEM;
205 break;
206 }
207
208 consistent_pte[i++] = pte;
209 base += (1 << PGDIR_SHIFT);
210 } while (base < CONSISTENT_END);
211
212 return ret;
213}
214
215core_initcall(consistent_init);
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217static void *
Russell King31ebf942009-11-19 21:12:17 +0000218__dma_alloc_remap(struct page *page, size_t size, gfp_t gfp, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Russell King13ccf3a2009-11-19 15:07:04 +0000220 struct arm_vmregion *c;
Russell King5bc23d32010-07-25 08:57:02 +0100221 size_t align;
222 int bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Jon Medhurst99d17172011-08-02 17:28:27 +0100224 if (!consistent_pte) {
Russell Kingebd7a842009-11-19 20:58:31 +0000225 printk(KERN_ERR "%s: not initialised\n", __func__);
226 dump_stack();
Russell Kingebd7a842009-11-19 20:58:31 +0000227 return NULL;
228 }
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /*
Russell King5bc23d32010-07-25 08:57:02 +0100231 * Align the virtual region allocation - maximum alignment is
232 * a section size, minimum is a page size. This helps reduce
233 * fragmentation of the DMA space, and also prevents allocations
234 * smaller than a section from crossing a section boundary.
235 */
Russell Kingc947f692010-11-03 16:00:15 +0000236 bit = fls(size - 1);
Russell King5bc23d32010-07-25 08:57:02 +0100237 if (bit > SECTION_SHIFT)
238 bit = SECTION_SHIFT;
239 align = 1 << bit;
240
241 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 * Allocate a virtual address in the consistent mapping region.
243 */
Russell King5bc23d32010-07-25 08:57:02 +0100244 c = arm_vmregion_alloc(&consistent_head, align, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 gfp & ~(__GFP_DMA | __GFP_HIGHMEM));
246 if (c) {
Kevin Hilman37134cd2006-01-12 16:12:21 +0000247 pte_t *pte;
Kevin Hilman37134cd2006-01-12 16:12:21 +0000248 int idx = CONSISTENT_PTE_INDEX(c->vm_start);
249 u32 off = CONSISTENT_OFFSET(c->vm_start) & (PTRS_PER_PTE-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Kevin Hilman37134cd2006-01-12 16:12:21 +0000251 pte = consistent_pte[idx] + off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 c->vm_pages = page;
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 do {
255 BUG_ON(!pte_none(*pte));
256
Russell Kingad1ae2f2006-12-13 14:34:43 +0000257 set_pte_ext(pte, mk_pte(page, prot), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 page++;
259 pte++;
Kevin Hilman37134cd2006-01-12 16:12:21 +0000260 off++;
261 if (off >= PTRS_PER_PTE) {
262 off = 0;
263 pte = consistent_pte[++idx];
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 } while (size -= PAGE_SIZE);
266
Russell King2be23c42010-09-08 16:27:56 +0100267 dsb();
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return (void *)c->vm_start;
270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return NULL;
272}
Russell King695ae0a2009-11-19 16:31:39 +0000273
274static void __dma_free_remap(void *cpu_addr, size_t size)
275{
276 struct arm_vmregion *c;
277 unsigned long addr;
278 pte_t *ptep;
279 int idx;
280 u32 off;
281
282 c = arm_vmregion_find_remove(&consistent_head, (unsigned long)cpu_addr);
283 if (!c) {
284 printk(KERN_ERR "%s: trying to free invalid coherent area: %p\n",
285 __func__, cpu_addr);
286 dump_stack();
287 return;
288 }
289
290 if ((c->vm_end - c->vm_start) != size) {
291 printk(KERN_ERR "%s: freeing wrong coherent size (%ld != %d)\n",
292 __func__, c->vm_end - c->vm_start, size);
293 dump_stack();
294 size = c->vm_end - c->vm_start;
295 }
296
297 idx = CONSISTENT_PTE_INDEX(c->vm_start);
298 off = CONSISTENT_OFFSET(c->vm_start) & (PTRS_PER_PTE-1);
299 ptep = consistent_pte[idx] + off;
300 addr = c->vm_start;
301 do {
302 pte_t pte = ptep_get_and_clear(&init_mm, addr, ptep);
Russell King695ae0a2009-11-19 16:31:39 +0000303
304 ptep++;
305 addr += PAGE_SIZE;
306 off++;
307 if (off >= PTRS_PER_PTE) {
308 off = 0;
309 ptep = consistent_pte[++idx];
310 }
311
Russell Kingacaac252009-11-20 18:19:52 +0000312 if (pte_none(pte) || !pte_present(pte))
313 printk(KERN_CRIT "%s: bad page in kernel page table\n",
314 __func__);
Russell King695ae0a2009-11-19 16:31:39 +0000315 } while (size -= PAGE_SIZE);
316
317 flush_tlb_kernel_range(c->vm_start, c->vm_end);
318
319 arm_vmregion_free(&consistent_head, c);
320}
321
Catalin Marinasab6494f2009-07-24 12:35:02 +0100322#else /* !CONFIG_MMU */
Russell King695ae0a2009-11-19 16:31:39 +0000323
Russell King31ebf942009-11-19 21:12:17 +0000324#define __dma_alloc_remap(page, size, gfp, prot) page_address(page)
325#define __dma_free_remap(addr, size) do { } while (0)
326
327#endif /* CONFIG_MMU */
328
Catalin Marinasab6494f2009-07-24 12:35:02 +0100329static void *
330__dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp,
331 pgprot_t prot)
332{
Russell King04da5692009-11-19 15:54:45 +0000333 struct page *page;
Russell King31ebf942009-11-19 21:12:17 +0000334 void *addr;
Catalin Marinasab6494f2009-07-24 12:35:02 +0100335
Catalin Marinasab6494f2009-07-24 12:35:02 +0100336 *handle = ~0;
Russell King04da5692009-11-19 15:54:45 +0000337 size = PAGE_ALIGN(size);
338
339 page = __dma_alloc_buffer(dev, size, gfp);
340 if (!page)
341 return NULL;
342
Russell King31ebf942009-11-19 21:12:17 +0000343 if (!arch_is_coherent())
344 addr = __dma_alloc_remap(page, size, gfp, prot);
345 else
346 addr = page_address(page);
347
348 if (addr)
Russell King9eedd962011-01-03 00:00:17 +0000349 *handle = pfn_to_dma(dev, page_to_pfn(page));
Russell Kingd8e89b42011-09-22 10:32:25 +0100350 else
351 __dma_free_buffer(page, size);
Russell King31ebf942009-11-19 21:12:17 +0000352
353 return addr;
Catalin Marinasab6494f2009-07-24 12:35:02 +0100354}
Russell King695ae0a2009-11-19 16:31:39 +0000355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/*
357 * Allocate DMA-coherent memory space and return both the kernel remapped
358 * virtual and bus address for that space.
359 */
360void *
Al Virof9e32142005-10-21 03:20:58 -0400361dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Dmitry Baryshkov1fe53262008-07-18 13:30:14 +0400363 void *memory;
364
365 if (dma_alloc_from_coherent(dev, size, handle, &memory))
366 return memory;
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return __dma_alloc(dev, size, handle, gfp,
Russell King26a26d32009-11-20 21:06:43 +0000369 pgprot_dmacoherent(pgprot_kernel));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371EXPORT_SYMBOL(dma_alloc_coherent);
372
373/*
374 * Allocate a writecombining region, in much the same way as
375 * dma_alloc_coherent above.
376 */
377void *
Al Virof9e32142005-10-21 03:20:58 -0400378dma_alloc_writecombine(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 return __dma_alloc(dev, size, handle, gfp,
381 pgprot_writecombine(pgprot_kernel));
382}
383EXPORT_SYMBOL(dma_alloc_writecombine);
384
385static int dma_mmap(struct device *dev, struct vm_area_struct *vma,
386 void *cpu_addr, dma_addr_t dma_addr, size_t size)
387{
Catalin Marinasab6494f2009-07-24 12:35:02 +0100388 int ret = -ENXIO;
389#ifdef CONFIG_MMU
Russell King13ccf3a2009-11-19 15:07:04 +0000390 unsigned long user_size, kern_size;
391 struct arm_vmregion *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 user_size = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
394
Russell King13ccf3a2009-11-19 15:07:04 +0000395 c = arm_vmregion_find(&consistent_head, (unsigned long)cpu_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (c) {
397 unsigned long off = vma->vm_pgoff;
398
399 kern_size = (c->vm_end - c->vm_start) >> PAGE_SHIFT;
400
401 if (off < kern_size &&
402 user_size <= (kern_size - off)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 ret = remap_pfn_range(vma, vma->vm_start,
404 page_to_pfn(c->vm_pages) + off,
405 user_size << PAGE_SHIFT,
406 vma->vm_page_prot);
407 }
408 }
Catalin Marinasab6494f2009-07-24 12:35:02 +0100409#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 return ret;
412}
413
414int dma_mmap_coherent(struct device *dev, struct vm_area_struct *vma,
415 void *cpu_addr, dma_addr_t dma_addr, size_t size)
416{
Russell King26a26d32009-11-20 21:06:43 +0000417 vma->vm_page_prot = pgprot_dmacoherent(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
419}
420EXPORT_SYMBOL(dma_mmap_coherent);
421
422int dma_mmap_writecombine(struct device *dev, struct vm_area_struct *vma,
423 void *cpu_addr, dma_addr_t dma_addr, size_t size)
424{
425 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
426 return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
427}
428EXPORT_SYMBOL(dma_mmap_writecombine);
429
430/*
431 * free a page as defined by the above mapping.
Russell King5edf71a2005-11-25 15:52:51 +0000432 * Must not be called with IRQs disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 */
434void dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, dma_addr_t handle)
435{
Russell King5edf71a2005-11-25 15:52:51 +0000436 WARN_ON(irqs_disabled());
437
Dmitry Baryshkov1fe53262008-07-18 13:30:14 +0400438 if (dma_release_from_coherent(dev, get_order(size), cpu_addr))
439 return;
440
Russell King3e82d012009-11-19 15:38:12 +0000441 size = PAGE_ALIGN(size);
442
Russell King695ae0a2009-11-19 16:31:39 +0000443 if (!arch_is_coherent())
444 __dma_free_remap(cpu_addr, size);
Russell King7a9a32a2009-11-19 15:31:07 +0000445
Russell King9eedd962011-01-03 00:00:17 +0000446 __dma_free_buffer(pfn_to_page(dma_to_pfn(dev, handle)), size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448EXPORT_SYMBOL(dma_free_coherent);
449
450/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 * Make an area consistent for devices.
Dan Williams105ef9a2006-11-21 22:57:23 +0100452 * Note: Drivers should NOT use this function directly, as it will break
453 * platforms with CONFIG_DMABOUNCE.
454 * Use the driver DMA support - see dma-mapping.h (dma_sync_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 */
Russell King4ea0d732009-11-24 16:27:17 +0000456void ___dma_single_cpu_to_dev(const void *kaddr, size_t size,
457 enum dma_data_direction dir)
458{
Russell King2ffe2da2009-10-31 16:52:16 +0000459 unsigned long paddr;
460
Russell Kinga9c91472009-11-26 16:19:58 +0000461 BUG_ON(!virt_addr_valid(kaddr) || !virt_addr_valid(kaddr + size - 1));
462
463 dmac_map_area(kaddr, size, dir);
Russell King2ffe2da2009-10-31 16:52:16 +0000464
465 paddr = __pa(kaddr);
466 if (dir == DMA_FROM_DEVICE) {
467 outer_inv_range(paddr, paddr + size);
468 } else {
469 outer_clean_range(paddr, paddr + size);
470 }
471 /* FIXME: non-speculating: flush on bidirectional mappings? */
Russell King4ea0d732009-11-24 16:27:17 +0000472}
473EXPORT_SYMBOL(___dma_single_cpu_to_dev);
474
475void ___dma_single_dev_to_cpu(const void *kaddr, size_t size,
476 enum dma_data_direction dir)
477{
Russell Kinga9c91472009-11-26 16:19:58 +0000478 BUG_ON(!virt_addr_valid(kaddr) || !virt_addr_valid(kaddr + size - 1));
479
Russell King2ffe2da2009-10-31 16:52:16 +0000480 /* FIXME: non-speculating: not required */
481 /* don't bother invalidating if DMA to device */
482 if (dir != DMA_TO_DEVICE) {
483 unsigned long paddr = __pa(kaddr);
484 outer_inv_range(paddr, paddr + size);
485 }
486
Russell Kinga9c91472009-11-26 16:19:58 +0000487 dmac_unmap_area(kaddr, size, dir);
Russell King4ea0d732009-11-24 16:27:17 +0000488}
489EXPORT_SYMBOL(___dma_single_dev_to_cpu);
Russell Kingafd1a322008-09-25 16:30:57 +0100490
Russell King65af1912009-11-24 17:53:33 +0000491static void dma_cache_maint_page(struct page *page, unsigned long offset,
Russell Kinga9c91472009-11-26 16:19:58 +0000492 size_t size, enum dma_data_direction dir,
493 void (*op)(const void *, size_t, int))
Russell King65af1912009-11-24 17:53:33 +0000494{
495 /*
496 * A single sg entry may refer to multiple physically contiguous
497 * pages. But we still need to process highmem pages individually.
498 * If highmem is not configured then the bulk of this loop gets
499 * optimized out.
500 */
501 size_t left = size;
502 do {
503 size_t len = left;
Russell King93f1d622009-11-24 14:41:01 +0000504 void *vaddr;
505
506 if (PageHighMem(page)) {
507 if (len + offset > PAGE_SIZE) {
508 if (offset >= PAGE_SIZE) {
509 page += offset / PAGE_SIZE;
510 offset %= PAGE_SIZE;
511 }
512 len = PAGE_SIZE - offset;
Russell King65af1912009-11-24 17:53:33 +0000513 }
Russell King93f1d622009-11-24 14:41:01 +0000514 vaddr = kmap_high_get(page);
515 if (vaddr) {
516 vaddr += offset;
Russell Kinga9c91472009-11-26 16:19:58 +0000517 op(vaddr, len, dir);
Russell King93f1d622009-11-24 14:41:01 +0000518 kunmap_high(page);
Nicolas Pitre7e5a69e2010-03-29 21:46:02 +0100519 } else if (cache_is_vipt()) {
Nicolas Pitre39af22a2010-12-15 15:14:45 -0500520 /* unmapped pages might still be cached */
521 vaddr = kmap_atomic(page);
Nicolas Pitre7e5a69e2010-03-29 21:46:02 +0100522 op(vaddr + offset, len, dir);
Nicolas Pitre39af22a2010-12-15 15:14:45 -0500523 kunmap_atomic(vaddr);
Russell King93f1d622009-11-24 14:41:01 +0000524 }
525 } else {
526 vaddr = page_address(page) + offset;
Russell Kinga9c91472009-11-26 16:19:58 +0000527 op(vaddr, len, dir);
Russell King65af1912009-11-24 17:53:33 +0000528 }
Russell King65af1912009-11-24 17:53:33 +0000529 offset = 0;
530 page++;
531 left -= len;
532 } while (left);
533}
534
535void ___dma_page_cpu_to_dev(struct page *page, unsigned long off,
536 size_t size, enum dma_data_direction dir)
537{
Nicolas Pitre43377452009-03-12 22:52:09 -0400538 unsigned long paddr;
Nicolas Pitre43377452009-03-12 22:52:09 -0400539
Russell Kinga9c91472009-11-26 16:19:58 +0000540 dma_cache_maint_page(page, off, size, dir, dmac_map_area);
Nicolas Pitre43377452009-03-12 22:52:09 -0400541
Russell King65af1912009-11-24 17:53:33 +0000542 paddr = page_to_phys(page) + off;
Russell King2ffe2da2009-10-31 16:52:16 +0000543 if (dir == DMA_FROM_DEVICE) {
544 outer_inv_range(paddr, paddr + size);
545 } else {
546 outer_clean_range(paddr, paddr + size);
547 }
548 /* FIXME: non-speculating: flush on bidirectional mappings? */
Nicolas Pitre43377452009-03-12 22:52:09 -0400549}
Russell King4ea0d732009-11-24 16:27:17 +0000550EXPORT_SYMBOL(___dma_page_cpu_to_dev);
551
552void ___dma_page_dev_to_cpu(struct page *page, unsigned long off,
553 size_t size, enum dma_data_direction dir)
554{
Russell King2ffe2da2009-10-31 16:52:16 +0000555 unsigned long paddr = page_to_phys(page) + off;
556
557 /* FIXME: non-speculating: not required */
558 /* don't bother invalidating if DMA to device */
559 if (dir != DMA_TO_DEVICE)
560 outer_inv_range(paddr, paddr + size);
561
Russell Kinga9c91472009-11-26 16:19:58 +0000562 dma_cache_maint_page(page, off, size, dir, dmac_unmap_area);
Catalin Marinasc0177802010-09-13 15:57:36 +0100563
564 /*
565 * Mark the D-cache clean for this page to avoid extra flushing.
566 */
567 if (dir != DMA_TO_DEVICE && off == 0 && size >= PAGE_SIZE)
568 set_bit(PG_dcache_clean, &page->flags);
Russell King4ea0d732009-11-24 16:27:17 +0000569}
570EXPORT_SYMBOL(___dma_page_dev_to_cpu);
Nicolas Pitre43377452009-03-12 22:52:09 -0400571
Russell Kingafd1a322008-09-25 16:30:57 +0100572/**
573 * dma_map_sg - map a set of SG buffers for streaming mode DMA
574 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
575 * @sg: list of buffers
576 * @nents: number of buffers to map
577 * @dir: DMA transfer direction
578 *
579 * Map a set of buffers described by scatterlist in streaming mode for DMA.
580 * This is the scatter-gather version of the dma_map_single interface.
581 * Here the scatter gather list elements are each tagged with the
582 * appropriate dma address and length. They are obtained via
583 * sg_dma_{address,length}.
584 *
585 * Device ownership issues as mentioned for dma_map_single are the same
586 * here.
587 */
588int dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
589 enum dma_data_direction dir)
590{
591 struct scatterlist *s;
Russell King01135d922008-09-25 21:05:02 +0100592 int i, j;
Russell Kingafd1a322008-09-25 16:30:57 +0100593
Russell King24056f52011-01-03 11:29:28 +0000594 BUG_ON(!valid_dma_direction(dir));
595
Russell Kingafd1a322008-09-25 16:30:57 +0100596 for_each_sg(sg, s, nents, i) {
Russell King24056f52011-01-03 11:29:28 +0000597 s->dma_address = __dma_map_page(dev, sg_page(s), s->offset,
Russell King01135d922008-09-25 21:05:02 +0100598 s->length, dir);
599 if (dma_mapping_error(dev, s->dma_address))
600 goto bad_mapping;
Russell Kingafd1a322008-09-25 16:30:57 +0100601 }
Russell King24056f52011-01-03 11:29:28 +0000602 debug_dma_map_sg(dev, sg, nents, nents, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100603 return nents;
Russell King01135d922008-09-25 21:05:02 +0100604
605 bad_mapping:
606 for_each_sg(sg, s, i, j)
Russell King24056f52011-01-03 11:29:28 +0000607 __dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
Russell King01135d922008-09-25 21:05:02 +0100608 return 0;
Russell Kingafd1a322008-09-25 16:30:57 +0100609}
610EXPORT_SYMBOL(dma_map_sg);
611
612/**
613 * dma_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
614 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
615 * @sg: list of buffers
Linus Walleij0adfca62011-01-12 18:50:37 +0100616 * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
Russell Kingafd1a322008-09-25 16:30:57 +0100617 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
618 *
619 * Unmap a set of streaming mode DMA translations. Again, CPU access
620 * rules concerning calls here are the same as for dma_unmap_single().
621 */
622void dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
623 enum dma_data_direction dir)
624{
Russell King01135d922008-09-25 21:05:02 +0100625 struct scatterlist *s;
626 int i;
627
Russell King24056f52011-01-03 11:29:28 +0000628 debug_dma_unmap_sg(dev, sg, nents, dir);
629
Russell King01135d922008-09-25 21:05:02 +0100630 for_each_sg(sg, s, nents, i)
Russell King24056f52011-01-03 11:29:28 +0000631 __dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100632}
633EXPORT_SYMBOL(dma_unmap_sg);
634
635/**
636 * dma_sync_sg_for_cpu
637 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
638 * @sg: list of buffers
639 * @nents: number of buffers to map (returned from dma_map_sg)
640 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
641 */
642void dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
643 int nents, enum dma_data_direction dir)
644{
645 struct scatterlist *s;
646 int i;
647
648 for_each_sg(sg, s, nents, i) {
Russell King18eabe22009-10-31 16:52:16 +0000649 if (!dmabounce_sync_for_cpu(dev, sg_dma_address(s), 0,
650 sg_dma_len(s), dir))
651 continue;
652
653 __dma_page_dev_to_cpu(sg_page(s), s->offset,
654 s->length, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100655 }
Russell King24056f52011-01-03 11:29:28 +0000656
657 debug_dma_sync_sg_for_cpu(dev, sg, nents, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100658}
659EXPORT_SYMBOL(dma_sync_sg_for_cpu);
660
661/**
662 * dma_sync_sg_for_device
663 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
664 * @sg: list of buffers
665 * @nents: number of buffers to map (returned from dma_map_sg)
666 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
667 */
668void dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
669 int nents, enum dma_data_direction dir)
670{
671 struct scatterlist *s;
672 int i;
673
674 for_each_sg(sg, s, nents, i) {
Russell King2638b4d2008-09-25 21:38:41 +0100675 if (!dmabounce_sync_for_device(dev, sg_dma_address(s), 0,
676 sg_dma_len(s), dir))
677 continue;
678
Russell King18eabe22009-10-31 16:52:16 +0000679 __dma_page_cpu_to_dev(sg_page(s), s->offset,
680 s->length, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100681 }
Russell King24056f52011-01-03 11:29:28 +0000682
683 debug_dma_sync_sg_for_device(dev, sg, nents, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100684}
685EXPORT_SYMBOL(dma_sync_sg_for_device);
Russell King24056f52011-01-03 11:29:28 +0000686
Russell King022ae532011-07-08 21:26:59 +0100687/*
688 * Return whether the given device DMA address mask can be supported
689 * properly. For example, if your device can only drive the low 24-bits
690 * during bus mastering, then you would pass 0x00ffffff as the mask
691 * to this function.
692 */
693int dma_supported(struct device *dev, u64 mask)
694{
695 if (mask < (u64)arm_dma_limit)
696 return 0;
697 return 1;
698}
699EXPORT_SYMBOL(dma_supported);
700
701int dma_set_mask(struct device *dev, u64 dma_mask)
702{
703 if (!dev->dma_mask || !dma_supported(dev, dma_mask))
704 return -EIO;
705
706#ifndef CONFIG_DMABOUNCE
707 *dev->dma_mask = dma_mask;
708#endif
709
710 return 0;
711}
712EXPORT_SYMBOL(dma_set_mask);
713
Russell King24056f52011-01-03 11:29:28 +0000714#define PREALLOC_DMA_DEBUG_ENTRIES 4096
715
716static int __init dma_debug_do_init(void)
717{
718 dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
719 return 0;
720}
721fs_initcall(dma_debug_do_init);