USB: ldusb should signal an error in poll if the device is disconnected
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mm / dma-mapping.c
blobb30925fcbcdcb05b705afa79da75f8ecbd2eceaf
1 /*
2 * linux/arch/arm/mm/dma-mapping.c
4 * Copyright (C) 2000-2004 Russell King
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.
10 * DMA uncached mapping support.
12 #include <linux/module.h>
13 #include <linux/mm.h>
14 #include <linux/slab.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>
21 #include <asm/memory.h>
22 #include <asm/highmem.h>
23 #include <asm/cacheflush.h>
24 #include <asm/tlbflush.h>
25 #include <asm/sizes.h>
27 /* Sanity check size */
28 #if (CONSISTENT_DMA_SIZE % SZ_2M)
29 #error "CONSISTENT_DMA_SIZE must be multiple of 2MiB"
30 #endif
32 #define CONSISTENT_END (0xffe00000)
33 #define CONSISTENT_BASE (CONSISTENT_END - CONSISTENT_DMA_SIZE)
35 #define CONSISTENT_OFFSET(x) (((unsigned long)(x) - CONSISTENT_BASE) >> PAGE_SHIFT)
36 #define CONSISTENT_PTE_INDEX(x) (((unsigned long)(x) - CONSISTENT_BASE) >> PGDIR_SHIFT)
37 #define NUM_CONSISTENT_PTES (CONSISTENT_DMA_SIZE >> PGDIR_SHIFT)
39 static u64 get_coherent_dma_mask(struct device *dev)
41 u64 mask = ISA_DMA_THRESHOLD;
43 if (dev) {
44 mask = dev->coherent_dma_mask;
47 * Sanity check the DMA mask - it must be non-zero, and
48 * must be able to be satisfied by a DMA allocation.
50 if (mask == 0) {
51 dev_warn(dev, "coherent DMA mask is unset\n");
52 return 0;
55 if ((~mask) & ISA_DMA_THRESHOLD) {
56 dev_warn(dev, "coherent DMA mask %#llx is smaller "
57 "than system GFP_DMA mask %#llx\n",
58 mask, (unsigned long long)ISA_DMA_THRESHOLD);
59 return 0;
63 return mask;
66 #ifdef CONFIG_MMU
68 * These are the page tables (2MB each) covering uncached, DMA consistent allocations
70 static pte_t *consistent_pte[NUM_CONSISTENT_PTES];
71 static DEFINE_SPINLOCK(consistent_lock);
74 * VM region handling support.
76 * This should become something generic, handling VM region allocations for
77 * vmalloc and similar (ioremap, module space, etc).
79 * I envisage vmalloc()'s supporting vm_struct becoming:
81 * struct vm_struct {
82 * struct vm_region region;
83 * unsigned long flags;
84 * struct page **pages;
85 * unsigned int nr_pages;
86 * unsigned long phys_addr;
87 * };
89 * get_vm_area() would then call vm_region_alloc with an appropriate
90 * struct vm_region head (eg):
92 * struct vm_region vmalloc_head = {
93 * .vm_list = LIST_HEAD_INIT(vmalloc_head.vm_list),
94 * .vm_start = VMALLOC_START,
95 * .vm_end = VMALLOC_END,
96 * };
98 * However, vmalloc_head.vm_start is variable (typically, it is dependent on
99 * the amount of RAM found at boot time.) I would imagine that get_vm_area()
100 * would have to initialise this each time prior to calling vm_region_alloc().
102 struct arm_vm_region {
103 struct list_head vm_list;
104 unsigned long vm_start;
105 unsigned long vm_end;
106 struct page *vm_pages;
107 int vm_active;
110 static struct arm_vm_region consistent_head = {
111 .vm_list = LIST_HEAD_INIT(consistent_head.vm_list),
112 .vm_start = CONSISTENT_BASE,
113 .vm_end = CONSISTENT_END,
116 static struct arm_vm_region *
117 arm_vm_region_alloc(struct arm_vm_region *head, size_t size, gfp_t gfp)
119 unsigned long addr = head->vm_start, end = head->vm_end - size;
120 unsigned long flags;
121 struct arm_vm_region *c, *new;
123 new = kmalloc(sizeof(struct arm_vm_region), gfp);
124 if (!new)
125 goto out;
127 spin_lock_irqsave(&consistent_lock, flags);
129 list_for_each_entry(c, &head->vm_list, vm_list) {
130 if ((addr + size) < addr)
131 goto nospc;
132 if ((addr + size) <= c->vm_start)
133 goto found;
134 addr = c->vm_end;
135 if (addr > end)
136 goto nospc;
139 found:
141 * Insert this entry _before_ the one we found.
143 list_add_tail(&new->vm_list, &c->vm_list);
144 new->vm_start = addr;
145 new->vm_end = addr + size;
146 new->vm_active = 1;
148 spin_unlock_irqrestore(&consistent_lock, flags);
149 return new;
151 nospc:
152 spin_unlock_irqrestore(&consistent_lock, flags);
153 kfree(new);
154 out:
155 return NULL;
158 static struct arm_vm_region *arm_vm_region_find(struct arm_vm_region *head, unsigned long addr)
160 struct arm_vm_region *c;
162 list_for_each_entry(c, &head->vm_list, vm_list) {
163 if (c->vm_active && c->vm_start == addr)
164 goto out;
166 c = NULL;
167 out:
168 return c;
171 #ifdef CONFIG_HUGETLB_PAGE
172 #error ARM Coherent DMA allocator does not (yet) support huge TLB
173 #endif
175 static void *
176 __dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp,
177 pgprot_t prot)
179 struct page *page;
180 struct arm_vm_region *c;
181 unsigned long order;
182 u64 mask = get_coherent_dma_mask(dev);
183 u64 limit;
185 if (!consistent_pte[0]) {
186 printk(KERN_ERR "%s: not initialised\n", __func__);
187 dump_stack();
188 return NULL;
191 if (!mask)
192 goto no_page;
195 * Sanity check the allocation size.
197 size = PAGE_ALIGN(size);
198 limit = (mask + 1) & ~mask;
199 if ((limit && size >= limit) ||
200 size >= (CONSISTENT_END - CONSISTENT_BASE)) {
201 printk(KERN_WARNING "coherent allocation too big "
202 "(requested %#x mask %#llx)\n", size, mask);
203 goto no_page;
206 order = get_order(size);
208 if (mask != 0xffffffff)
209 gfp |= GFP_DMA;
211 page = alloc_pages(gfp, order);
212 if (!page)
213 goto no_page;
216 * Invalidate any data that might be lurking in the
217 * kernel direct-mapped region for device DMA.
220 void *ptr = page_address(page);
221 memset(ptr, 0, size);
222 dmac_flush_range(ptr, ptr + size);
223 outer_flush_range(__pa(ptr), __pa(ptr) + size);
227 * Allocate a virtual address in the consistent mapping region.
229 c = arm_vm_region_alloc(&consistent_head, size,
230 gfp & ~(__GFP_DMA | __GFP_HIGHMEM));
231 if (c) {
232 pte_t *pte;
233 struct page *end = page + (1 << order);
234 int idx = CONSISTENT_PTE_INDEX(c->vm_start);
235 u32 off = CONSISTENT_OFFSET(c->vm_start) & (PTRS_PER_PTE-1);
237 pte = consistent_pte[idx] + off;
238 c->vm_pages = page;
240 split_page(page, order);
243 * Set the "dma handle"
245 *handle = page_to_dma(dev, page);
247 do {
248 BUG_ON(!pte_none(*pte));
251 * x86 does not mark the pages reserved...
253 SetPageReserved(page);
254 set_pte_ext(pte, mk_pte(page, prot), 0);
255 page++;
256 pte++;
257 off++;
258 if (off >= PTRS_PER_PTE) {
259 off = 0;
260 pte = consistent_pte[++idx];
262 } while (size -= PAGE_SIZE);
265 * Free the otherwise unused pages.
267 while (page < end) {
268 __free_page(page);
269 page++;
272 return (void *)c->vm_start;
275 if (page)
276 __free_pages(page, order);
277 no_page:
278 *handle = ~0;
279 return NULL;
281 #else /* !CONFIG_MMU */
282 static void *
283 __dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp,
284 pgprot_t prot)
286 void *virt;
287 u64 mask = get_coherent_dma_mask(dev);
289 if (!mask)
290 goto error;
292 if (mask != 0xffffffff)
293 gfp |= GFP_DMA;
294 virt = kmalloc(size, gfp);
295 if (!virt)
296 goto error;
298 *handle = virt_to_dma(dev, virt);
299 return virt;
301 error:
302 *handle = ~0;
303 return NULL;
305 #endif /* CONFIG_MMU */
308 * Allocate DMA-coherent memory space and return both the kernel remapped
309 * virtual and bus address for that space.
311 void *
312 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
314 void *memory;
316 if (dma_alloc_from_coherent(dev, size, handle, &memory))
317 return memory;
319 if (arch_is_coherent()) {
320 void *virt;
322 virt = kmalloc(size, gfp);
323 if (!virt)
324 return NULL;
325 *handle = virt_to_dma(dev, virt);
327 return virt;
330 return __dma_alloc(dev, size, handle, gfp,
331 pgprot_noncached(pgprot_kernel));
333 EXPORT_SYMBOL(dma_alloc_coherent);
336 * Allocate a writecombining region, in much the same way as
337 * dma_alloc_coherent above.
339 void *
340 dma_alloc_writecombine(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp)
342 return __dma_alloc(dev, size, handle, gfp,
343 pgprot_writecombine(pgprot_kernel));
345 EXPORT_SYMBOL(dma_alloc_writecombine);
347 static int dma_mmap(struct device *dev, struct vm_area_struct *vma,
348 void *cpu_addr, dma_addr_t dma_addr, size_t size)
350 int ret = -ENXIO;
351 #ifdef CONFIG_MMU
352 unsigned long flags, user_size, kern_size;
353 struct arm_vm_region *c;
355 user_size = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
357 spin_lock_irqsave(&consistent_lock, flags);
358 c = arm_vm_region_find(&consistent_head, (unsigned long)cpu_addr);
359 spin_unlock_irqrestore(&consistent_lock, flags);
361 if (c) {
362 unsigned long off = vma->vm_pgoff;
364 kern_size = (c->vm_end - c->vm_start) >> PAGE_SHIFT;
366 if (off < kern_size &&
367 user_size <= (kern_size - off)) {
368 ret = remap_pfn_range(vma, vma->vm_start,
369 page_to_pfn(c->vm_pages) + off,
370 user_size << PAGE_SHIFT,
371 vma->vm_page_prot);
374 #endif /* CONFIG_MMU */
376 return ret;
379 int dma_mmap_coherent(struct device *dev, struct vm_area_struct *vma,
380 void *cpu_addr, dma_addr_t dma_addr, size_t size)
382 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
383 return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
385 EXPORT_SYMBOL(dma_mmap_coherent);
387 int dma_mmap_writecombine(struct device *dev, struct vm_area_struct *vma,
388 void *cpu_addr, dma_addr_t dma_addr, size_t size)
390 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
391 return dma_mmap(dev, vma, cpu_addr, dma_addr, size);
393 EXPORT_SYMBOL(dma_mmap_writecombine);
396 * free a page as defined by the above mapping.
397 * Must not be called with IRQs disabled.
399 #ifdef CONFIG_MMU
400 void dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, dma_addr_t handle)
402 struct arm_vm_region *c;
403 unsigned long flags, addr;
404 pte_t *ptep;
405 int idx;
406 u32 off;
408 WARN_ON(irqs_disabled());
410 if (dma_release_from_coherent(dev, get_order(size), cpu_addr))
411 return;
413 if (arch_is_coherent()) {
414 kfree(cpu_addr);
415 return;
418 size = PAGE_ALIGN(size);
420 spin_lock_irqsave(&consistent_lock, flags);
421 c = arm_vm_region_find(&consistent_head, (unsigned long)cpu_addr);
422 if (!c)
423 goto no_area;
425 c->vm_active = 0;
426 spin_unlock_irqrestore(&consistent_lock, flags);
428 if ((c->vm_end - c->vm_start) != size) {
429 printk(KERN_ERR "%s: freeing wrong coherent size (%ld != %d)\n",
430 __func__, c->vm_end - c->vm_start, size);
431 dump_stack();
432 size = c->vm_end - c->vm_start;
435 idx = CONSISTENT_PTE_INDEX(c->vm_start);
436 off = CONSISTENT_OFFSET(c->vm_start) & (PTRS_PER_PTE-1);
437 ptep = consistent_pte[idx] + off;
438 addr = c->vm_start;
439 do {
440 pte_t pte = ptep_get_and_clear(&init_mm, addr, ptep);
441 unsigned long pfn;
443 ptep++;
444 addr += PAGE_SIZE;
445 off++;
446 if (off >= PTRS_PER_PTE) {
447 off = 0;
448 ptep = consistent_pte[++idx];
451 if (!pte_none(pte) && pte_present(pte)) {
452 pfn = pte_pfn(pte);
454 if (pfn_valid(pfn)) {
455 struct page *page = pfn_to_page(pfn);
458 * x86 does not mark the pages reserved...
460 ClearPageReserved(page);
462 __free_page(page);
463 continue;
467 printk(KERN_CRIT "%s: bad page in kernel page table\n",
468 __func__);
469 } while (size -= PAGE_SIZE);
471 flush_tlb_kernel_range(c->vm_start, c->vm_end);
473 spin_lock_irqsave(&consistent_lock, flags);
474 list_del(&c->vm_list);
475 spin_unlock_irqrestore(&consistent_lock, flags);
477 kfree(c);
478 return;
480 no_area:
481 spin_unlock_irqrestore(&consistent_lock, flags);
482 printk(KERN_ERR "%s: trying to free invalid coherent area: %p\n",
483 __func__, cpu_addr);
484 dump_stack();
486 #else /* !CONFIG_MMU */
487 void dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, dma_addr_t handle)
489 if (dma_release_from_coherent(dev, get_order(size), cpu_addr))
490 return;
491 kfree(cpu_addr);
493 #endif /* CONFIG_MMU */
494 EXPORT_SYMBOL(dma_free_coherent);
497 * Initialise the consistent memory allocation.
499 static int __init consistent_init(void)
501 int ret = 0;
502 #ifdef CONFIG_MMU
503 pgd_t *pgd;
504 pmd_t *pmd;
505 pte_t *pte;
506 int i = 0;
507 u32 base = CONSISTENT_BASE;
509 do {
510 pgd = pgd_offset(&init_mm, base);
511 pmd = pmd_alloc(&init_mm, pgd, base);
512 if (!pmd) {
513 printk(KERN_ERR "%s: no pmd tables\n", __func__);
514 ret = -ENOMEM;
515 break;
517 WARN_ON(!pmd_none(*pmd));
519 pte = pte_alloc_kernel(pmd, base);
520 if (!pte) {
521 printk(KERN_ERR "%s: no pte tables\n", __func__);
522 ret = -ENOMEM;
523 break;
526 consistent_pte[i++] = pte;
527 base += (1 << PGDIR_SHIFT);
528 } while (base < CONSISTENT_END);
529 #endif /* !CONFIG_MMU */
531 return ret;
534 core_initcall(consistent_init);
537 * Make an area consistent for devices.
538 * Note: Drivers should NOT use this function directly, as it will break
539 * platforms with CONFIG_DMABOUNCE.
540 * Use the driver DMA support - see dma-mapping.h (dma_sync_*)
542 void dma_cache_maint(const void *start, size_t size, int direction)
544 void (*inner_op)(const void *, const void *);
545 void (*outer_op)(unsigned long, unsigned long);
547 BUG_ON(!virt_addr_valid(start) || !virt_addr_valid(start + size - 1));
549 switch (direction) {
550 case DMA_FROM_DEVICE: /* invalidate only */
551 inner_op = dmac_inv_range;
552 outer_op = outer_inv_range;
553 break;
554 case DMA_TO_DEVICE: /* writeback only */
555 inner_op = dmac_clean_range;
556 outer_op = outer_clean_range;
557 break;
558 case DMA_BIDIRECTIONAL: /* writeback and invalidate */
559 inner_op = dmac_flush_range;
560 outer_op = outer_flush_range;
561 break;
562 default:
563 BUG();
566 inner_op(start, start + size);
567 outer_op(__pa(start), __pa(start) + size);
569 EXPORT_SYMBOL(dma_cache_maint);
571 static void dma_cache_maint_contiguous(struct page *page, unsigned long offset,
572 size_t size, int direction)
574 void *vaddr;
575 unsigned long paddr;
576 void (*inner_op)(const void *, const void *);
577 void (*outer_op)(unsigned long, unsigned long);
579 switch (direction) {
580 case DMA_FROM_DEVICE: /* invalidate only */
581 inner_op = dmac_inv_range;
582 outer_op = outer_inv_range;
583 break;
584 case DMA_TO_DEVICE: /* writeback only */
585 inner_op = dmac_clean_range;
586 outer_op = outer_clean_range;
587 break;
588 case DMA_BIDIRECTIONAL: /* writeback and invalidate */
589 inner_op = dmac_flush_range;
590 outer_op = outer_flush_range;
591 break;
592 default:
593 BUG();
596 if (!PageHighMem(page)) {
597 vaddr = page_address(page) + offset;
598 inner_op(vaddr, vaddr + size);
599 } else {
600 vaddr = kmap_high_get(page);
601 if (vaddr) {
602 vaddr += offset;
603 inner_op(vaddr, vaddr + size);
604 kunmap_high(page);
608 paddr = page_to_phys(page) + offset;
609 outer_op(paddr, paddr + size);
612 void dma_cache_maint_page(struct page *page, unsigned long offset,
613 size_t size, int dir)
616 * A single sg entry may refer to multiple physically contiguous
617 * pages. But we still need to process highmem pages individually.
618 * If highmem is not configured then the bulk of this loop gets
619 * optimized out.
621 size_t left = size;
622 do {
623 size_t len = left;
624 if (PageHighMem(page) && len + offset > PAGE_SIZE) {
625 if (offset >= PAGE_SIZE) {
626 page += offset / PAGE_SIZE;
627 offset %= PAGE_SIZE;
629 len = PAGE_SIZE - offset;
631 dma_cache_maint_contiguous(page, offset, len, dir);
632 offset = 0;
633 page++;
634 left -= len;
635 } while (left);
637 EXPORT_SYMBOL(dma_cache_maint_page);
640 * dma_map_sg - map a set of SG buffers for streaming mode DMA
641 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
642 * @sg: list of buffers
643 * @nents: number of buffers to map
644 * @dir: DMA transfer direction
646 * Map a set of buffers described by scatterlist in streaming mode for DMA.
647 * This is the scatter-gather version of the dma_map_single interface.
648 * Here the scatter gather list elements are each tagged with the
649 * appropriate dma address and length. They are obtained via
650 * sg_dma_{address,length}.
652 * Device ownership issues as mentioned for dma_map_single are the same
653 * here.
655 int dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
656 enum dma_data_direction dir)
658 struct scatterlist *s;
659 int i, j;
661 for_each_sg(sg, s, nents, i) {
662 s->dma_address = dma_map_page(dev, sg_page(s), s->offset,
663 s->length, dir);
664 if (dma_mapping_error(dev, s->dma_address))
665 goto bad_mapping;
667 return nents;
669 bad_mapping:
670 for_each_sg(sg, s, i, j)
671 dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
672 return 0;
674 EXPORT_SYMBOL(dma_map_sg);
677 * dma_unmap_sg - unmap a set of SG buffers mapped by dma_map_sg
678 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
679 * @sg: list of buffers
680 * @nents: number of buffers to unmap (returned from dma_map_sg)
681 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
683 * Unmap a set of streaming mode DMA translations. Again, CPU access
684 * rules concerning calls here are the same as for dma_unmap_single().
686 void dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
687 enum dma_data_direction dir)
689 struct scatterlist *s;
690 int i;
692 for_each_sg(sg, s, nents, i)
693 dma_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir);
695 EXPORT_SYMBOL(dma_unmap_sg);
698 * dma_sync_sg_for_cpu
699 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
700 * @sg: list of buffers
701 * @nents: number of buffers to map (returned from dma_map_sg)
702 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
704 void dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
705 int nents, enum dma_data_direction dir)
707 struct scatterlist *s;
708 int i;
710 for_each_sg(sg, s, nents, i) {
711 dmabounce_sync_for_cpu(dev, sg_dma_address(s), 0,
712 sg_dma_len(s), dir);
715 EXPORT_SYMBOL(dma_sync_sg_for_cpu);
718 * dma_sync_sg_for_device
719 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
720 * @sg: list of buffers
721 * @nents: number of buffers to map (returned from dma_map_sg)
722 * @dir: DMA transfer direction (same as was passed to dma_map_sg)
724 void dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
725 int nents, enum dma_data_direction dir)
727 struct scatterlist *s;
728 int i;
730 for_each_sg(sg, s, nents, i) {
731 if (!dmabounce_sync_for_device(dev, sg_dma_address(s), 0,
732 sg_dma_len(s), dir))
733 continue;
735 if (!arch_is_coherent())
736 dma_cache_maint_page(sg_page(s), s->offset,
737 s->length, dir);
740 EXPORT_SYMBOL(dma_sync_sg_for_device);