dma-alloc.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* MN10300 Dynamic DMA mapping support
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. * Derived from: arch/i386/kernel/pci-dma.c
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public Licence
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the Licence, or (at your option) any later version.
  11. */
  12. #include <linux/types.h>
  13. #include <linux/mm.h>
  14. #include <linux/string.h>
  15. #include <linux/pci.h>
  16. #include <asm/io.h>
  17. void *dma_alloc_coherent(struct device *dev, size_t size,
  18. dma_addr_t *dma_handle, int gfp)
  19. {
  20. unsigned long addr;
  21. void *ret;
  22. /* ignore region specifiers */
  23. gfp &= ~(__GFP_DMA | __GFP_HIGHMEM);
  24. if (dev == NULL || dev->coherent_dma_mask < 0xffffffff)
  25. gfp |= GFP_DMA;
  26. addr = __get_free_pages(gfp, get_order(size));
  27. if (!addr)
  28. return NULL;
  29. /* map the coherent memory through the uncached memory window */
  30. ret = (void *) (addr | 0x20000000);
  31. /* fill the memory with obvious rubbish */
  32. memset((void *) addr, 0xfb, size);
  33. /* write back and evict all cache lines covering this region */
  34. mn10300_dcache_flush_inv_range2(virt_to_phys((void *) addr), PAGE_SIZE);
  35. *dma_handle = virt_to_bus((void *) addr);
  36. return ret;
  37. }
  38. EXPORT_SYMBOL(dma_alloc_coherent);
  39. void dma_free_coherent(struct device *dev, size_t size, void *vaddr,
  40. dma_addr_t dma_handle)
  41. {
  42. unsigned long addr = (unsigned long) vaddr & ~0x20000000;
  43. free_pages(addr, get_order(size));
  44. }
  45. EXPORT_SYMBOL(dma_free_coherent);