Merge branch 'kprobes-test' of git://git.yxit.co.uk/linux into devel-stable
[pandora-kernel.git] / arch / arm / mm / dma-mapping.c
1 /*
2  *  linux/arch/arm/mm/dma-mapping.c
3  *
4  *  Copyright (C) 2000-2004 Russell King
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  *  DMA uncached mapping support.
11  */
12 #include <linux/module.h>
13 #include <linux/mm.h>
14 #include <linux/gfp.h>
15 #include <linux/errno.h>
16 #include <linux/list.h>
17 #include <linux/init.h>
18 #include <linux/device.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/highmem.h>
21 #include <linux/slab.h>
22
23 #include <asm/memory.h>
24 #include <asm/highmem.h>
25 #include <asm/cacheflush.h>
26 #include <asm/tlbflush.h>
27 #include <asm/sizes.h>
28 #include <asm/mach/arch.h>
29
30 #include "mm.h"
31
32 static u64 get_coherent_dma_mask(struct device *dev)
33 {
34         u64 mask = (u64)arm_dma_limit;
35
36         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
48                 if ((~mask) & (u64)arm_dma_limit) {
49                         dev_warn(dev, "coherent DMA mask %#llx is smaller "
50                                  "than system GFP_DMA mask %#llx\n",
51                                  mask, (u64)arm_dma_limit);
52                         return 0;
53                 }
54         }
55
56         return mask;
57 }
58
59 /*
60  * Allocate a DMA buffer for 'dev' of size 'size' using the
61  * specified gfp mask.  Note that 'size' must be page aligned.
62  */
63 static 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  */
111 static 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
121 #ifdef CONFIG_MMU
122
123
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)
126
127 /*
128  * These are the page tables (2MB each) covering uncached, DMA consistent allocations
129  */
130 static pte_t **consistent_pte;
131
132 #define DEFAULT_CONSISTENT_DMA_SIZE SZ_2M
133
134 unsigned long consistent_base = CONSISTENT_END - DEFAULT_CONSISTENT_DMA_SIZE;
135
136 void __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 }
147
148 #include "vmregion.h"
149
150 static struct arm_vmregion_head consistent_head = {
151         .vm_lock        = __SPIN_LOCK_UNLOCKED(&consistent_head.vm_lock),
152         .vm_list        = LIST_HEAD_INIT(consistent_head.vm_list),
153         .vm_end         = CONSISTENT_END,
154 };
155
156 #ifdef CONFIG_HUGETLB_PAGE
157 #error ARM Coherent DMA allocator does not (yet) support huge TLB
158 #endif
159
160 /*
161  * Initialise the consistent memory allocation.
162  */
163 static int __init consistent_init(void)
164 {
165         int ret = 0;
166         pgd_t *pgd;
167         pud_t *pud;
168         pmd_t *pmd;
169         pte_t *pte;
170         int i = 0;
171         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;
182
183         do {
184                 pgd = pgd_offset(&init_mm, base);
185
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);
194                 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
215 core_initcall(consistent_init);
216
217 static void *
218 __dma_alloc_remap(struct page *page, size_t size, gfp_t gfp, pgprot_t prot)
219 {
220         struct arm_vmregion *c;
221         size_t align;
222         int bit;
223
224         if (!consistent_pte) {
225                 printk(KERN_ERR "%s: not initialised\n", __func__);
226                 dump_stack();
227                 return NULL;
228         }
229
230         /*
231          * 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          */
236         bit = fls(size - 1);
237         if (bit > SECTION_SHIFT)
238                 bit = SECTION_SHIFT;
239         align = 1 << bit;
240
241         /*
242          * Allocate a virtual address in the consistent mapping region.
243          */
244         c = arm_vmregion_alloc(&consistent_head, align, size,
245                             gfp & ~(__GFP_DMA | __GFP_HIGHMEM));
246         if (c) {
247                 pte_t *pte;
248                 int idx = CONSISTENT_PTE_INDEX(c->vm_start);
249                 u32 off = CONSISTENT_OFFSET(c->vm_start) & (PTRS_PER_PTE-1);
250
251                 pte = consistent_pte[idx] + off;
252                 c->vm_pages = page;
253
254                 do {
255                         BUG_ON(!pte_none(*pte));
256
257                         set_pte_ext(pte, mk_pte(page, prot), 0);
258                         page++;
259                         pte++;
260                         off++;
261                         if (off >= PTRS_PER_PTE) {
262                                 off = 0;
263                                 pte = consistent_pte[++idx];
264                         }
265                 } while (size -= PAGE_SIZE);
266
267                 dsb();
268
269                 return (void *)c->vm_start;
270         }
271         return NULL;
272 }
273
274 static 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);
303
304                 ptep++;
305                 addr += PAGE_SIZE;
306                 off++;
307                 if (off >= PTRS_PER_PTE) {
308                         off = 0;
309                         ptep = consistent_pte[++idx];
310                 }
311
312                 if (pte_none(pte) || !pte_present(pte))
313                         printk(KERN_CRIT "%s: bad page in kernel page table\n",
314                                __func__);
315         } 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
322 #else   /* !CONFIG_MMU */
323
324 #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
329 static void *
330 __dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp,
331             pgprot_t prot)
332 {
333         struct page *page;
334         void *addr;
335
336         *handle = ~0;
337         size = PAGE_ALIGN(size);
338
339         page = __dma_alloc_buffer(dev, size, gfp);
340         if (!page)
341                 return NULL;
342
343         if (!arch_is_coherent())
344                 addr = __dma_alloc_remap(page, size, gfp, prot);
345         else
346                 addr = page_address(page);
347
348         if (addr)
349                 *handle = pfn_to_dma(dev, page_to_pfn(page));
350
351         return addr;
352 }
353
354 /*
355  * Allocate DMA-coherent memory space and return both the kernel remapped
356  * virtual and bus address for that space.
357  */
358 void *
359 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
360 {
361         void *memory;
362
363         if (dma_alloc_from_coherent(dev, size, handle, &memory))
364                 return memory;
365
366         return __dma_alloc(dev, size, handle, gfp,
367                            pgprot_dmacoherent(pgprot_kernel));
368 }
369 EXPORT_SYMBOL(dma_alloc_coherent);
370
371 /*
372  * Allocate a writecombining region, in much the same way as
373  * dma_alloc_coherent above.
374  */
375 void *
376 dma_alloc_writecombine(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
377 {
378         return __dma_alloc(dev, size, handle, gfp,
379                            pgprot_writecombine(pgprot_kernel));
380 }
381 EXPORT_SYMBOL(dma_alloc_writecombine);
382
383 static int dma_mmap(struct device *dev, struct vm_area_struct *vma,
384                     void *cpu_addr, dma_addr_t dma_addr, size_t size)
385 {
386         int ret = -ENXIO;
387 #ifdef CONFIG_MMU
388         unsigned long user_size, kern_size;
389         struct arm_vmregion *c;
390
391         user_size = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
392
393         c = arm_vmregion_find(&consistent_head, (unsigned long)cpu_addr);
394         if (c) {
395                 unsigned long off = vma->vm_pgoff;
396
397                 kern_size = (c->vm_end - c->vm_start) >> PAGE_SHIFT;
398
399                 if (off < kern_size &&
400                     user_size <= (kern_size - off)) {
401                         ret = remap_pfn_range(vma, vma->vm_start,
402                                               page_to_pfn(c->vm_pages) + off,
403                                               user_size << PAGE_SHIFT,
404                                               vma->vm_page_prot);
405                 }
406         }
407 #endif  /* CONFIG_MMU */
408
409         return ret;
410 }
411
412 int dma_mmap_coherent(struct device *dev, struct vm_area_struct *vma,
413                       void *cpu_addr, dma_addr_t dma_addr, size_t size)
414 {
415         vma->vm_page_prot = pgprot_dmacoherent(vma->vm_page_prot);
416         return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
417 }
418 EXPORT_SYMBOL(dma_mmap_coherent);
419
420 int dma_mmap_writecombine(struct device *dev, struct vm_area_struct *vma,
421                           void *cpu_addr, dma_addr_t dma_addr, size_t size)
422 {
423         vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
424         return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
425 }
426 EXPORT_SYMBOL(dma_mmap_writecombine);
427
428 /*
429  * free a page as defined by the above mapping.
430  * Must not be called with IRQs disabled.
431  */
432 void dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, dma_addr_t handle)
433 {
434         WARN_ON(irqs_disabled());
435
436         if (dma_release_from_coherent(dev, get_order(size), cpu_addr))
437                 return;
438
439         size = PAGE_ALIGN(size);
440
441         if (!arch_is_coherent())
442                 __dma_free_remap(cpu_addr, size);
443
444         __dma_free_buffer(pfn_to_page(dma_to_pfn(dev, handle)), size);
445 }
446 EXPORT_SYMBOL(dma_free_coherent);
447
448 /*
449  * Make an area consistent for devices.
450  * Note: Drivers should NOT use this function directly, as it will break
451  * platforms with CONFIG_DMABOUNCE.
452  * Use the driver DMA support - see dma-mapping.h (dma_sync_*)
453  */
454 void ___dma_single_cpu_to_dev(const void *kaddr, size_t size,
455         enum dma_data_direction dir)
456 {
457         unsigned long paddr;
458
459         BUG_ON(!virt_addr_valid(kaddr) || !virt_addr_valid(kaddr + size - 1));
460
461         dmac_map_area(kaddr, size, dir);
462
463         paddr = __pa(kaddr);
464         if (dir == DMA_FROM_DEVICE) {
465                 outer_inv_range(paddr, paddr + size);
466         } else {
467                 outer_clean_range(paddr, paddr + size);
468         }
469         /* FIXME: non-speculating: flush on bidirectional mappings? */
470 }
471 EXPORT_SYMBOL(___dma_single_cpu_to_dev);
472
473 void ___dma_single_dev_to_cpu(const void *kaddr, size_t size,
474         enum dma_data_direction dir)
475 {
476         BUG_ON(!virt_addr_valid(kaddr) || !virt_addr_valid(kaddr + size - 1));
477
478         /* FIXME: non-speculating: not required */
479         /* don't bother invalidating if DMA to device */
480         if (dir != DMA_TO_DEVICE) {
481                 unsigned long paddr = __pa(kaddr);
482                 outer_inv_range(paddr, paddr + size);
483         }
484
485         dmac_unmap_area(kaddr, size, dir);
486 }
487 EXPORT_SYMBOL(___dma_single_dev_to_cpu);
488
489 static void dma_cache_maint_page(struct page *page, unsigned long offset,
490         size_t size, enum dma_data_direction dir,
491         void (*op)(const void *, size_t, int))
492 {
493         /*
494          * A single sg entry may refer to multiple physically contiguous
495          * pages.  But we still need to process highmem pages individually.
496          * If highmem is not configured then the bulk of this loop gets
497          * optimized out.
498          */
499         size_t left = size;
500         do {
501                 size_t len = left;
502                 void *vaddr;
503
504                 if (PageHighMem(page)) {
505                         if (len + offset > PAGE_SIZE) {
506                                 if (offset >= PAGE_SIZE) {
507                                         page += offset / PAGE_SIZE;
508                                         offset %= PAGE_SIZE;
509                                 }
510                                 len = PAGE_SIZE - offset;
511                         }
512                         vaddr = kmap_high_get(page);
513                         if (vaddr) {
514                                 vaddr += offset;
515                                 op(vaddr, len, dir);
516                                 kunmap_high(page);
517                         } else if (cache_is_vipt()) {
518                                 /* unmapped pages might still be cached */
519                                 vaddr = kmap_atomic(page);
520                                 op(vaddr + offset, len, dir);
521                                 kunmap_atomic(vaddr);
522                         }
523                 } else {
524                         vaddr = page_address(page) + offset;
525                         op(vaddr, len, dir);
526                 }
527                 offset = 0;
528                 page++;
529                 left -= len;
530         } while (left);
531 }
532
533 void ___dma_page_cpu_to_dev(struct page *page, unsigned long off,
534         size_t size, enum dma_data_direction dir)
535 {
536         unsigned long paddr;
537
538         dma_cache_maint_page(page, off, size, dir, dmac_map_area);
539
540         paddr = page_to_phys(page) + off;
541         if (dir == DMA_FROM_DEVICE) {
542                 outer_inv_range(paddr, paddr + size);
543         } else {
544                 outer_clean_range(paddr, paddr + size);
545         }
546         /* FIXME: non-speculating: flush on bidirectional mappings? */
547 }
548 EXPORT_SYMBOL(___dma_page_cpu_to_dev);
549
550 void ___dma_page_dev_to_cpu(struct page *page, unsigned long off,
551         size_t size, enum dma_data_direction dir)
552 {
553         unsigned long paddr = page_to_phys(page) + off;
554
555         /* FIXME: non-speculating: not required */
556         /* don't bother invalidating if DMA to device */
557         if (dir != DMA_TO_DEVICE)
558                 outer_inv_range(paddr, paddr + size);
559
560         dma_cache_maint_page(page, off, size, dir, dmac_unmap_area);
561
562         /*
563          * Mark the D-cache clean for this page to avoid extra flushing.
564          */
565         if (dir != DMA_TO_DEVICE && off == 0 && size >= PAGE_SIZE)
566                 set_bit(PG_dcache_clean, &page->flags);
567 }
568 EXPORT_SYMBOL(___dma_page_dev_to_cpu);
569
570 /**
571  * dma_map_sg - map a set of SG buffers for streaming mode DMA
572  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
573  * @sg: list of buffers
574  * @nents: number of buffers to map
575  * @dir: DMA transfer direction
576  *
577  * Map a set of buffers described by scatterlist in streaming mode for DMA.
578  * This is the scatter-gather version of the dma_map_single interface.
579  * Here the scatter gather list elements are each tagged with the
580  * appropriate dma address and length.  They are obtained via
581  * sg_dma_{address,length}.
582  *
583  * Device ownership issues as mentioned for dma_map_single are the same
584  * here.
585  */
586 int dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
587                 enum dma_data_direction dir)
588 {
589         struct scatterlist *s;
590         int i, j;
591
592         BUG_ON(!valid_dma_direction(dir));
593
594         for_each_sg(sg, s, nents, i) {
595                 s->dma_address = __dma_map_page(dev, sg_page(s), s->offset,
596                                                 s->length, dir);
597                 if (dma_mapping_error(dev, s->dma_address))
598                         goto bad_mapping;
599         }
600         debug_dma_map_sg(dev, sg, nents, nents, dir);
601         return nents;
602
603  bad_mapping:
604         for_each_sg(sg, s, i, j)
605                 __dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
606         return 0;
607 }
608 EXPORT_SYMBOL(dma_map_sg);
609
610 /**
611  * dma_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
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 unmap (same as was passed to dma_map_sg)
615  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
616  *
617  * Unmap a set of streaming mode DMA translations.  Again, CPU access
618  * rules concerning calls here are the same as for dma_unmap_single().
619  */
620 void dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
621                 enum dma_data_direction dir)
622 {
623         struct scatterlist *s;
624         int i;
625
626         debug_dma_unmap_sg(dev, sg, nents, dir);
627
628         for_each_sg(sg, s, nents, i)
629                 __dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
630 }
631 EXPORT_SYMBOL(dma_unmap_sg);
632
633 /**
634  * dma_sync_sg_for_cpu
635  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
636  * @sg: list of buffers
637  * @nents: number of buffers to map (returned from dma_map_sg)
638  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
639  */
640 void dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
641                         int nents, enum dma_data_direction dir)
642 {
643         struct scatterlist *s;
644         int i;
645
646         for_each_sg(sg, s, nents, i) {
647                 if (!dmabounce_sync_for_cpu(dev, sg_dma_address(s), 0,
648                                             sg_dma_len(s), dir))
649                         continue;
650
651                 __dma_page_dev_to_cpu(sg_page(s), s->offset,
652                                       s->length, dir);
653         }
654
655         debug_dma_sync_sg_for_cpu(dev, sg, nents, dir);
656 }
657 EXPORT_SYMBOL(dma_sync_sg_for_cpu);
658
659 /**
660  * dma_sync_sg_for_device
661  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
662  * @sg: list of buffers
663  * @nents: number of buffers to map (returned from dma_map_sg)
664  * @dir: DMA transfer direction (same as was passed to dma_map_sg)
665  */
666 void dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
667                         int nents, enum dma_data_direction dir)
668 {
669         struct scatterlist *s;
670         int i;
671
672         for_each_sg(sg, s, nents, i) {
673                 if (!dmabounce_sync_for_device(dev, sg_dma_address(s), 0,
674                                         sg_dma_len(s), dir))
675                         continue;
676
677                 __dma_page_cpu_to_dev(sg_page(s), s->offset,
678                                       s->length, dir);
679         }
680
681         debug_dma_sync_sg_for_device(dev, sg, nents, dir);
682 }
683 EXPORT_SYMBOL(dma_sync_sg_for_device);
684
685 /*
686  * Return whether the given device DMA address mask can be supported
687  * properly.  For example, if your device can only drive the low 24-bits
688  * during bus mastering, then you would pass 0x00ffffff as the mask
689  * to this function.
690  */
691 int dma_supported(struct device *dev, u64 mask)
692 {
693         if (mask < (u64)arm_dma_limit)
694                 return 0;
695         return 1;
696 }
697 EXPORT_SYMBOL(dma_supported);
698
699 int dma_set_mask(struct device *dev, u64 dma_mask)
700 {
701         if (!dev->dma_mask || !dma_supported(dev, dma_mask))
702                 return -EIO;
703
704 #ifndef CONFIG_DMABOUNCE
705         *dev->dma_mask = dma_mask;
706 #endif
707
708         return 0;
709 }
710 EXPORT_SYMBOL(dma_set_mask);
711
712 #define PREALLOC_DMA_DEBUG_ENTRIES      4096
713
714 static int __init dma_debug_do_init(void)
715 {
716         dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
717         return 0;
718 }
719 fs_initcall(dma_debug_do_init);