blob: 0a0a1e7c20d2b2b7f459197be96575f757171cfd [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Lennert Buytenhek23759dc2006-04-02 00:07:39 +010022#include <asm/memory.h>
Nicolas Pitre43377452009-03-12 22:52:09 -040023#include <asm/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/tlbflush.h>
Kevin Hilman37134cd2006-01-12 16:12:21 +000026#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Russell King022ae532011-07-08 21:26:59 +010028#include "mm.h"
29
Catalin Marinasab6494f2009-07-24 12:35:02 +010030static u64 get_coherent_dma_mask(struct device *dev)
31{
Russell King022ae532011-07-08 21:26:59 +010032 u64 mask = (u64)arm_dma_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Catalin Marinasab6494f2009-07-24 12:35:02 +010034 if (dev) {
35 mask = dev->coherent_dma_mask;
36
37 /*
38 * Sanity check the DMA mask - it must be non-zero, and
39 * must be able to be satisfied by a DMA allocation.
40 */
41 if (mask == 0) {
42 dev_warn(dev, "coherent DMA mask is unset\n");
43 return 0;
44 }
45
Russell King022ae532011-07-08 21:26:59 +010046 if ((~mask) & (u64)arm_dma_limit) {
Catalin Marinasab6494f2009-07-24 12:35:02 +010047 dev_warn(dev, "coherent DMA mask %#llx is smaller "
48 "than system GFP_DMA mask %#llx\n",
Russell King022ae532011-07-08 21:26:59 +010049 mask, (u64)arm_dma_limit);
Catalin Marinasab6494f2009-07-24 12:35:02 +010050 return 0;
51 }
52 }
53
54 return mask;
55}
56
Russell King7a9a32a2009-11-19 15:31:07 +000057/*
58 * Allocate a DMA buffer for 'dev' of size 'size' using the
59 * specified gfp mask. Note that 'size' must be page aligned.
60 */
61static struct page *__dma_alloc_buffer(struct device *dev, size_t size, gfp_t gfp)
62{
63 unsigned long order = get_order(size);
64 struct page *page, *p, *e;
65 void *ptr;
66 u64 mask = get_coherent_dma_mask(dev);
67
68#ifdef CONFIG_DMA_API_DEBUG
69 u64 limit = (mask + 1) & ~mask;
70 if (limit && size >= limit) {
71 dev_warn(dev, "coherent allocation too big (requested %#x mask %#llx)\n",
72 size, mask);
73 return NULL;
74 }
75#endif
76
77 if (!mask)
78 return NULL;
79
80 if (mask < 0xffffffffULL)
81 gfp |= GFP_DMA;
82
83 page = alloc_pages(gfp, order);
84 if (!page)
85 return NULL;
86
87 /*
88 * Now split the huge page and free the excess pages
89 */
90 split_page(page, order);
91 for (p = page + (size >> PAGE_SHIFT), e = page + (1 << order); p < e; p++)
92 __free_page(p);
93
94 /*
95 * Ensure that the allocated pages are zeroed, and that any data
96 * lurking in the kernel direct-mapped region is invalidated.
97 */
98 ptr = page_address(page);
99 memset(ptr, 0, size);
100 dmac_flush_range(ptr, ptr + size);
101 outer_flush_range(__pa(ptr), __pa(ptr) + size);
102
103 return page;
104}
105
106/*
107 * Free a DMA buffer. 'size' must be page aligned.
108 */
109static void __dma_free_buffer(struct page *page, size_t size)
110{
111 struct page *e = page + (size >> PAGE_SHIFT);
112
113 while (page < e) {
114 __free_page(page);
115 page++;
116 }
117}
118
Catalin Marinasab6494f2009-07-24 12:35:02 +0100119#ifdef CONFIG_MMU
Catalin Marinasa5e9d382010-06-21 15:09:06 +0100120/* Sanity check size */
121#if (CONSISTENT_DMA_SIZE % SZ_2M)
122#error "CONSISTENT_DMA_SIZE must be multiple of 2MiB"
123#endif
124
125#define CONSISTENT_OFFSET(x) (((unsigned long)(x) - CONSISTENT_BASE) >> PAGE_SHIFT)
126#define CONSISTENT_PTE_INDEX(x) (((unsigned long)(x) - CONSISTENT_BASE) >> PGDIR_SHIFT)
127#define NUM_CONSISTENT_PTES (CONSISTENT_DMA_SIZE >> PGDIR_SHIFT)
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/*
Kevin Hilman37134cd2006-01-12 16:12:21 +0000130 * These are the page tables (2MB each) covering uncached, DMA consistent allocations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Kevin Hilman37134cd2006-01-12 16:12:21 +0000132static pte_t *consistent_pte[NUM_CONSISTENT_PTES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Russell King13ccf3a2009-11-19 15:07:04 +0000134#include "vmregion.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Russell King13ccf3a2009-11-19 15:07:04 +0000136static struct arm_vmregion_head consistent_head = {
137 .vm_lock = __SPIN_LOCK_UNLOCKED(&consistent_head.vm_lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 .vm_list = LIST_HEAD_INIT(consistent_head.vm_list),
139 .vm_start = CONSISTENT_BASE,
140 .vm_end = CONSISTENT_END,
141};
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#ifdef CONFIG_HUGETLB_PAGE
144#error ARM Coherent DMA allocator does not (yet) support huge TLB
145#endif
146
Russell King88c58f32009-11-19 16:46:02 +0000147/*
148 * Initialise the consistent memory allocation.
149 */
150static int __init consistent_init(void)
151{
152 int ret = 0;
153 pgd_t *pgd;
Russell King516295e2010-11-21 16:27:49 +0000154 pud_t *pud;
Russell King88c58f32009-11-19 16:46:02 +0000155 pmd_t *pmd;
156 pte_t *pte;
157 int i = 0;
158 u32 base = CONSISTENT_BASE;
159
160 do {
161 pgd = pgd_offset(&init_mm, base);
Russell King516295e2010-11-21 16:27:49 +0000162
163 pud = pud_alloc(&init_mm, pgd, base);
164 if (!pud) {
165 printk(KERN_ERR "%s: no pud tables\n", __func__);
166 ret = -ENOMEM;
167 break;
168 }
169
170 pmd = pmd_alloc(&init_mm, pud, base);
Russell King88c58f32009-11-19 16:46:02 +0000171 if (!pmd) {
172 printk(KERN_ERR "%s: no pmd tables\n", __func__);
173 ret = -ENOMEM;
174 break;
175 }
176 WARN_ON(!pmd_none(*pmd));
177
178 pte = pte_alloc_kernel(pmd, base);
179 if (!pte) {
180 printk(KERN_ERR "%s: no pte tables\n", __func__);
181 ret = -ENOMEM;
182 break;
183 }
184
185 consistent_pte[i++] = pte;
186 base += (1 << PGDIR_SHIFT);
187 } while (base < CONSISTENT_END);
188
189 return ret;
190}
191
192core_initcall(consistent_init);
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static void *
Russell King31ebf942009-11-19 21:12:17 +0000195__dma_alloc_remap(struct page *page, size_t size, gfp_t gfp, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Russell King13ccf3a2009-11-19 15:07:04 +0000197 struct arm_vmregion *c;
Russell King5bc23d32010-07-25 08:57:02 +0100198 size_t align;
199 int bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Russell Kingebd7a842009-11-19 20:58:31 +0000201 if (!consistent_pte[0]) {
202 printk(KERN_ERR "%s: not initialised\n", __func__);
203 dump_stack();
Russell Kingebd7a842009-11-19 20:58:31 +0000204 return NULL;
205 }
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /*
Russell King5bc23d32010-07-25 08:57:02 +0100208 * Align the virtual region allocation - maximum alignment is
209 * a section size, minimum is a page size. This helps reduce
210 * fragmentation of the DMA space, and also prevents allocations
211 * smaller than a section from crossing a section boundary.
212 */
Russell Kingc947f692010-11-03 16:00:15 +0000213 bit = fls(size - 1);
Russell King5bc23d32010-07-25 08:57:02 +0100214 if (bit > SECTION_SHIFT)
215 bit = SECTION_SHIFT;
216 align = 1 << bit;
217
218 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * Allocate a virtual address in the consistent mapping region.
220 */
Russell King5bc23d32010-07-25 08:57:02 +0100221 c = arm_vmregion_alloc(&consistent_head, align, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 gfp & ~(__GFP_DMA | __GFP_HIGHMEM));
223 if (c) {
Kevin Hilman37134cd2006-01-12 16:12:21 +0000224 pte_t *pte;
Kevin Hilman37134cd2006-01-12 16:12:21 +0000225 int idx = CONSISTENT_PTE_INDEX(c->vm_start);
226 u32 off = CONSISTENT_OFFSET(c->vm_start) & (PTRS_PER_PTE-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Kevin Hilman37134cd2006-01-12 16:12:21 +0000228 pte = consistent_pte[idx] + off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 c->vm_pages = page;
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 do {
232 BUG_ON(!pte_none(*pte));
233
Russell Kingad1ae2f2006-12-13 14:34:43 +0000234 set_pte_ext(pte, mk_pte(page, prot), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 page++;
236 pte++;
Kevin Hilman37134cd2006-01-12 16:12:21 +0000237 off++;
238 if (off >= PTRS_PER_PTE) {
239 off = 0;
240 pte = consistent_pte[++idx];
241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 } while (size -= PAGE_SIZE);
243
Russell King2be23c42010-09-08 16:27:56 +0100244 dsb();
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return (void *)c->vm_start;
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return NULL;
249}
Russell King695ae0a2009-11-19 16:31:39 +0000250
251static void __dma_free_remap(void *cpu_addr, size_t size)
252{
253 struct arm_vmregion *c;
254 unsigned long addr;
255 pte_t *ptep;
256 int idx;
257 u32 off;
258
259 c = arm_vmregion_find_remove(&consistent_head, (unsigned long)cpu_addr);
260 if (!c) {
261 printk(KERN_ERR "%s: trying to free invalid coherent area: %p\n",
262 __func__, cpu_addr);
263 dump_stack();
264 return;
265 }
266
267 if ((c->vm_end - c->vm_start) != size) {
268 printk(KERN_ERR "%s: freeing wrong coherent size (%ld != %d)\n",
269 __func__, c->vm_end - c->vm_start, size);
270 dump_stack();
271 size = c->vm_end - c->vm_start;
272 }
273
274 idx = CONSISTENT_PTE_INDEX(c->vm_start);
275 off = CONSISTENT_OFFSET(c->vm_start) & (PTRS_PER_PTE-1);
276 ptep = consistent_pte[idx] + off;
277 addr = c->vm_start;
278 do {
279 pte_t pte = ptep_get_and_clear(&init_mm, addr, ptep);
Russell King695ae0a2009-11-19 16:31:39 +0000280
281 ptep++;
282 addr += PAGE_SIZE;
283 off++;
284 if (off >= PTRS_PER_PTE) {
285 off = 0;
286 ptep = consistent_pte[++idx];
287 }
288
Russell Kingacaac252009-11-20 18:19:52 +0000289 if (pte_none(pte) || !pte_present(pte))
290 printk(KERN_CRIT "%s: bad page in kernel page table\n",
291 __func__);
Russell King695ae0a2009-11-19 16:31:39 +0000292 } while (size -= PAGE_SIZE);
293
294 flush_tlb_kernel_range(c->vm_start, c->vm_end);
295
296 arm_vmregion_free(&consistent_head, c);
297}
298
Catalin Marinasab6494f2009-07-24 12:35:02 +0100299#else /* !CONFIG_MMU */
Russell King695ae0a2009-11-19 16:31:39 +0000300
Russell King31ebf942009-11-19 21:12:17 +0000301#define __dma_alloc_remap(page, size, gfp, prot) page_address(page)
302#define __dma_free_remap(addr, size) do { } while (0)
303
304#endif /* CONFIG_MMU */
305
Catalin Marinasab6494f2009-07-24 12:35:02 +0100306static void *
307__dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp,
308 pgprot_t prot)
309{
Russell King04da5692009-11-19 15:54:45 +0000310 struct page *page;
Russell King31ebf942009-11-19 21:12:17 +0000311 void *addr;
Catalin Marinasab6494f2009-07-24 12:35:02 +0100312
Catalin Marinasab6494f2009-07-24 12:35:02 +0100313 *handle = ~0;
Russell King04da5692009-11-19 15:54:45 +0000314 size = PAGE_ALIGN(size);
315
316 page = __dma_alloc_buffer(dev, size, gfp);
317 if (!page)
318 return NULL;
319
Russell King31ebf942009-11-19 21:12:17 +0000320 if (!arch_is_coherent())
321 addr = __dma_alloc_remap(page, size, gfp, prot);
322 else
323 addr = page_address(page);
324
325 if (addr)
Russell King9eedd962011-01-03 00:00:17 +0000326 *handle = pfn_to_dma(dev, page_to_pfn(page));
Russell King31ebf942009-11-19 21:12:17 +0000327
328 return addr;
Catalin Marinasab6494f2009-07-24 12:35:02 +0100329}
Russell King695ae0a2009-11-19 16:31:39 +0000330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/*
332 * Allocate DMA-coherent memory space and return both the kernel remapped
333 * virtual and bus address for that space.
334 */
335void *
Al Virof9e32142005-10-21 03:20:58 -0400336dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Dmitry Baryshkov1fe53262008-07-18 13:30:14 +0400338 void *memory;
339
340 if (dma_alloc_from_coherent(dev, size, handle, &memory))
341 return memory;
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return __dma_alloc(dev, size, handle, gfp,
Russell King26a26d32009-11-20 21:06:43 +0000344 pgprot_dmacoherent(pgprot_kernel));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346EXPORT_SYMBOL(dma_alloc_coherent);
347
348/*
349 * Allocate a writecombining region, in much the same way as
350 * dma_alloc_coherent above.
351 */
352void *
Al Virof9e32142005-10-21 03:20:58 -0400353dma_alloc_writecombine(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 return __dma_alloc(dev, size, handle, gfp,
356 pgprot_writecombine(pgprot_kernel));
357}
358EXPORT_SYMBOL(dma_alloc_writecombine);
359
360static int dma_mmap(struct device *dev, struct vm_area_struct *vma,
361 void *cpu_addr, dma_addr_t dma_addr, size_t size)
362{
Catalin Marinasab6494f2009-07-24 12:35:02 +0100363 int ret = -ENXIO;
364#ifdef CONFIG_MMU
Russell King13ccf3a2009-11-19 15:07:04 +0000365 unsigned long user_size, kern_size;
366 struct arm_vmregion *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 user_size = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
369
Russell King13ccf3a2009-11-19 15:07:04 +0000370 c = arm_vmregion_find(&consistent_head, (unsigned long)cpu_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (c) {
372 unsigned long off = vma->vm_pgoff;
373
374 kern_size = (c->vm_end - c->vm_start) >> PAGE_SHIFT;
375
376 if (off < kern_size &&
377 user_size <= (kern_size - off)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 ret = remap_pfn_range(vma, vma->vm_start,
379 page_to_pfn(c->vm_pages) + off,
380 user_size << PAGE_SHIFT,
381 vma->vm_page_prot);
382 }
383 }
Catalin Marinasab6494f2009-07-24 12:35:02 +0100384#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 return ret;
387}
388
389int dma_mmap_coherent(struct device *dev, struct vm_area_struct *vma,
390 void *cpu_addr, dma_addr_t dma_addr, size_t size)
391{
Russell King26a26d32009-11-20 21:06:43 +0000392 vma->vm_page_prot = pgprot_dmacoherent(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
394}
395EXPORT_SYMBOL(dma_mmap_coherent);
396
397int dma_mmap_writecombine(struct device *dev, struct vm_area_struct *vma,
398 void *cpu_addr, dma_addr_t dma_addr, size_t size)
399{
400 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
401 return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
402}
403EXPORT_SYMBOL(dma_mmap_writecombine);
404
405/*
406 * free a page as defined by the above mapping.
Russell King5edf71a2005-11-25 15:52:51 +0000407 * Must not be called with IRQs disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
409void dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, dma_addr_t handle)
410{
Russell King5edf71a2005-11-25 15:52:51 +0000411 WARN_ON(irqs_disabled());
412
Dmitry Baryshkov1fe53262008-07-18 13:30:14 +0400413 if (dma_release_from_coherent(dev, get_order(size), cpu_addr))
414 return;
415
Russell King3e82d012009-11-19 15:38:12 +0000416 size = PAGE_ALIGN(size);
417
Russell King695ae0a2009-11-19 16:31:39 +0000418 if (!arch_is_coherent())
419 __dma_free_remap(cpu_addr, size);
Russell King7a9a32a2009-11-19 15:31:07 +0000420
Russell King9eedd962011-01-03 00:00:17 +0000421 __dma_free_buffer(pfn_to_page(dma_to_pfn(dev, handle)), size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423EXPORT_SYMBOL(dma_free_coherent);
424
425/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * Make an area consistent for devices.
Dan Williams105ef9a2006-11-21 22:57:23 +0100427 * Note: Drivers should NOT use this function directly, as it will break
428 * platforms with CONFIG_DMABOUNCE.
429 * Use the driver DMA support - see dma-mapping.h (dma_sync_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
Russell King4ea0d732009-11-24 16:27:17 +0000431void ___dma_single_cpu_to_dev(const void *kaddr, size_t size,
432 enum dma_data_direction dir)
433{
Russell King2ffe2da2009-10-31 16:52:16 +0000434 unsigned long paddr;
435
Russell Kinga9c91472009-11-26 16:19:58 +0000436 BUG_ON(!virt_addr_valid(kaddr) || !virt_addr_valid(kaddr + size - 1));
437
438 dmac_map_area(kaddr, size, dir);
Russell King2ffe2da2009-10-31 16:52:16 +0000439
440 paddr = __pa(kaddr);
441 if (dir == DMA_FROM_DEVICE) {
442 outer_inv_range(paddr, paddr + size);
443 } else {
444 outer_clean_range(paddr, paddr + size);
445 }
446 /* FIXME: non-speculating: flush on bidirectional mappings? */
Russell King4ea0d732009-11-24 16:27:17 +0000447}
448EXPORT_SYMBOL(___dma_single_cpu_to_dev);
449
450void ___dma_single_dev_to_cpu(const void *kaddr, size_t size,
451 enum dma_data_direction dir)
452{
Russell Kinga9c91472009-11-26 16:19:58 +0000453 BUG_ON(!virt_addr_valid(kaddr) || !virt_addr_valid(kaddr + size - 1));
454
Russell King2ffe2da2009-10-31 16:52:16 +0000455 /* FIXME: non-speculating: not required */
456 /* don't bother invalidating if DMA to device */
457 if (dir != DMA_TO_DEVICE) {
458 unsigned long paddr = __pa(kaddr);
459 outer_inv_range(paddr, paddr + size);
460 }
461
Russell Kinga9c91472009-11-26 16:19:58 +0000462 dmac_unmap_area(kaddr, size, dir);
Russell King4ea0d732009-11-24 16:27:17 +0000463}
464EXPORT_SYMBOL(___dma_single_dev_to_cpu);
Russell Kingafd1a322008-09-25 16:30:57 +0100465
Russell King65af1912009-11-24 17:53:33 +0000466static void dma_cache_maint_page(struct page *page, unsigned long offset,
Russell Kinga9c91472009-11-26 16:19:58 +0000467 size_t size, enum dma_data_direction dir,
468 void (*op)(const void *, size_t, int))
Russell King65af1912009-11-24 17:53:33 +0000469{
470 /*
471 * A single sg entry may refer to multiple physically contiguous
472 * pages. But we still need to process highmem pages individually.
473 * If highmem is not configured then the bulk of this loop gets
474 * optimized out.
475 */
476 size_t left = size;
477 do {
478 size_t len = left;
Russell King93f1d622009-11-24 14:41:01 +0000479 void *vaddr;
480
481 if (PageHighMem(page)) {
482 if (len + offset > PAGE_SIZE) {
483 if (offset >= PAGE_SIZE) {
484 page += offset / PAGE_SIZE;
485 offset %= PAGE_SIZE;
486 }
487 len = PAGE_SIZE - offset;
Russell King65af1912009-11-24 17:53:33 +0000488 }
Russell King93f1d622009-11-24 14:41:01 +0000489 vaddr = kmap_high_get(page);
490 if (vaddr) {
491 vaddr += offset;
Russell Kinga9c91472009-11-26 16:19:58 +0000492 op(vaddr, len, dir);
Russell King93f1d622009-11-24 14:41:01 +0000493 kunmap_high(page);
Nicolas Pitre7e5a69e2010-03-29 21:46:02 +0100494 } else if (cache_is_vipt()) {
Nicolas Pitre39af22a2010-12-15 15:14:45 -0500495 /* unmapped pages might still be cached */
496 vaddr = kmap_atomic(page);
Nicolas Pitre7e5a69e2010-03-29 21:46:02 +0100497 op(vaddr + offset, len, dir);
Nicolas Pitre39af22a2010-12-15 15:14:45 -0500498 kunmap_atomic(vaddr);
Russell King93f1d622009-11-24 14:41:01 +0000499 }
500 } else {
501 vaddr = page_address(page) + offset;
Russell Kinga9c91472009-11-26 16:19:58 +0000502 op(vaddr, len, dir);
Russell King65af1912009-11-24 17:53:33 +0000503 }
Russell King65af1912009-11-24 17:53:33 +0000504 offset = 0;
505 page++;
506 left -= len;
507 } while (left);
508}
509
510void ___dma_page_cpu_to_dev(struct page *page, unsigned long off,
511 size_t size, enum dma_data_direction dir)
512{
Nicolas Pitre43377452009-03-12 22:52:09 -0400513 unsigned long paddr;
Nicolas Pitre43377452009-03-12 22:52:09 -0400514
Russell Kinga9c91472009-11-26 16:19:58 +0000515 dma_cache_maint_page(page, off, size, dir, dmac_map_area);
Nicolas Pitre43377452009-03-12 22:52:09 -0400516
Russell King65af1912009-11-24 17:53:33 +0000517 paddr = page_to_phys(page) + off;
Russell King2ffe2da2009-10-31 16:52:16 +0000518 if (dir == DMA_FROM_DEVICE) {
519 outer_inv_range(paddr, paddr + size);
520 } else {
521 outer_clean_range(paddr, paddr + size);
522 }
523 /* FIXME: non-speculating: flush on bidirectional mappings? */
Nicolas Pitre43377452009-03-12 22:52:09 -0400524}
Russell King4ea0d732009-11-24 16:27:17 +0000525EXPORT_SYMBOL(___dma_page_cpu_to_dev);
526
527void ___dma_page_dev_to_cpu(struct page *page, unsigned long off,
528 size_t size, enum dma_data_direction dir)
529{
Russell King2ffe2da2009-10-31 16:52:16 +0000530 unsigned long paddr = page_to_phys(page) + off;
531
532 /* FIXME: non-speculating: not required */
533 /* don't bother invalidating if DMA to device */
534 if (dir != DMA_TO_DEVICE)
535 outer_inv_range(paddr, paddr + size);
536
Russell Kinga9c91472009-11-26 16:19:58 +0000537 dma_cache_maint_page(page, off, size, dir, dmac_unmap_area);
Catalin Marinasc0177802010-09-13 15:57:36 +0100538
539 /*
540 * Mark the D-cache clean for this page to avoid extra flushing.
541 */
542 if (dir != DMA_TO_DEVICE && off == 0 && size >= PAGE_SIZE)
543 set_bit(PG_dcache_clean, &page->flags);
Russell King4ea0d732009-11-24 16:27:17 +0000544}
545EXPORT_SYMBOL(___dma_page_dev_to_cpu);
Nicolas Pitre43377452009-03-12 22:52:09 -0400546
Russell Kingafd1a322008-09-25 16:30:57 +0100547/**
548 * dma_map_sg - map a set of SG buffers for streaming mode DMA
549 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
550 * @sg: list of buffers
551 * @nents: number of buffers to map
552 * @dir: DMA transfer direction
553 *
554 * Map a set of buffers described by scatterlist in streaming mode for DMA.
555 * This is the scatter-gather version of the dma_map_single interface.
556 * Here the scatter gather list elements are each tagged with the
557 * appropriate dma address and length. They are obtained via
558 * sg_dma_{address,length}.
559 *
560 * Device ownership issues as mentioned for dma_map_single are the same
561 * here.
562 */
563int dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
564 enum dma_data_direction dir)
565{
566 struct scatterlist *s;
Russell King01135d922008-09-25 21:05:02 +0100567 int i, j;
Russell Kingafd1a322008-09-25 16:30:57 +0100568
Russell King24056f52011-01-03 11:29:28 +0000569 BUG_ON(!valid_dma_direction(dir));
570
Russell Kingafd1a322008-09-25 16:30:57 +0100571 for_each_sg(sg, s, nents, i) {
Russell King24056f52011-01-03 11:29:28 +0000572 s->dma_address = __dma_map_page(dev, sg_page(s), s->offset,
Russell King01135d922008-09-25 21:05:02 +0100573 s->length, dir);
574 if (dma_mapping_error(dev, s->dma_address))
575 goto bad_mapping;
Russell Kingafd1a322008-09-25 16:30:57 +0100576 }
Russell King24056f52011-01-03 11:29:28 +0000577 debug_dma_map_sg(dev, sg, nents, nents, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100578 return nents;
Russell King01135d922008-09-25 21:05:02 +0100579
580 bad_mapping:
581 for_each_sg(sg, s, i, j)
Russell King24056f52011-01-03 11:29:28 +0000582 __dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
Russell King01135d922008-09-25 21:05:02 +0100583 return 0;
Russell Kingafd1a322008-09-25 16:30:57 +0100584}
585EXPORT_SYMBOL(dma_map_sg);
586
587/**
588 * dma_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
589 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
590 * @sg: list of buffers
Linus Walleij0adfca62011-01-12 18:50:37 +0100591 * @nents: number of buffers to unmap (same as was passed to dma_map_sg)
Russell Kingafd1a322008-09-25 16:30:57 +0100592 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
593 *
594 * Unmap a set of streaming mode DMA translations. Again, CPU access
595 * rules concerning calls here are the same as for dma_unmap_single().
596 */
597void dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
598 enum dma_data_direction dir)
599{
Russell King01135d922008-09-25 21:05:02 +0100600 struct scatterlist *s;
601 int i;
602
Russell King24056f52011-01-03 11:29:28 +0000603 debug_dma_unmap_sg(dev, sg, nents, dir);
604
Russell King01135d922008-09-25 21:05:02 +0100605 for_each_sg(sg, s, nents, i)
Russell King24056f52011-01-03 11:29:28 +0000606 __dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100607}
608EXPORT_SYMBOL(dma_unmap_sg);
609
610/**
611 * dma_sync_sg_for_cpu
612 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
613 * @sg: list of buffers
614 * @nents: number of buffers to map (returned from dma_map_sg)
615 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
616 */
617void dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
618 int nents, enum dma_data_direction dir)
619{
620 struct scatterlist *s;
621 int i;
622
623 for_each_sg(sg, s, nents, i) {
Russell King18eabe22009-10-31 16:52:16 +0000624 if (!dmabounce_sync_for_cpu(dev, sg_dma_address(s), 0,
625 sg_dma_len(s), dir))
626 continue;
627
628 __dma_page_dev_to_cpu(sg_page(s), s->offset,
629 s->length, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100630 }
Russell King24056f52011-01-03 11:29:28 +0000631
632 debug_dma_sync_sg_for_cpu(dev, sg, nents, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100633}
634EXPORT_SYMBOL(dma_sync_sg_for_cpu);
635
636/**
637 * dma_sync_sg_for_device
638 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
639 * @sg: list of buffers
640 * @nents: number of buffers to map (returned from dma_map_sg)
641 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
642 */
643void dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
644 int nents, enum dma_data_direction dir)
645{
646 struct scatterlist *s;
647 int i;
648
649 for_each_sg(sg, s, nents, i) {
Russell King2638b4d2008-09-25 21:38:41 +0100650 if (!dmabounce_sync_for_device(dev, sg_dma_address(s), 0,
651 sg_dma_len(s), dir))
652 continue;
653
Russell King18eabe22009-10-31 16:52:16 +0000654 __dma_page_cpu_to_dev(sg_page(s), s->offset,
655 s->length, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100656 }
Russell King24056f52011-01-03 11:29:28 +0000657
658 debug_dma_sync_sg_for_device(dev, sg, nents, dir);
Russell Kingafd1a322008-09-25 16:30:57 +0100659}
660EXPORT_SYMBOL(dma_sync_sg_for_device);
Russell King24056f52011-01-03 11:29:28 +0000661
Russell King022ae532011-07-08 21:26:59 +0100662/*
663 * Return whether the given device DMA address mask can be supported
664 * properly. For example, if your device can only drive the low 24-bits
665 * during bus mastering, then you would pass 0x00ffffff as the mask
666 * to this function.
667 */
668int dma_supported(struct device *dev, u64 mask)
669{
670 if (mask < (u64)arm_dma_limit)
671 return 0;
672 return 1;
673}
674EXPORT_SYMBOL(dma_supported);
675
676int dma_set_mask(struct device *dev, u64 dma_mask)
677{
678 if (!dev->dma_mask || !dma_supported(dev, dma_mask))
679 return -EIO;
680
681#ifndef CONFIG_DMABOUNCE
682 *dev->dma_mask = dma_mask;
683#endif
684
685 return 0;
686}
687EXPORT_SYMBOL(dma_set_mask);
688
Russell King24056f52011-01-03 11:29:28 +0000689#define PREALLOC_DMA_DEBUG_ENTRIES 4096
690
691static int __init dma_debug_do_init(void)
692{
693 dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
694 return 0;
695}
696fs_initcall(dma_debug_do_init);