dma-mapping.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * File: arch/blackfin/kernel/dma-mapping.c
  3. * Based on:
  4. * Author:
  5. *
  6. * Created:
  7. * Description: Dynamic DMA mapping support.
  8. *
  9. * Modified:
  10. * Copyright 2004-2006 Analog Devices Inc.
  11. *
  12. * Bugs: Enter bugs at http://blackfin.uclinux.org/
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, see the file COPYING, or write
  26. * to the Free Software Foundation, Inc.,
  27. * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  28. */
  29. #include <linux/types.h>
  30. #include <linux/mm.h>
  31. #include <linux/string.h>
  32. #include <linux/bootmem.h>
  33. #include <linux/spinlock.h>
  34. #include <linux/device.h>
  35. #include <linux/dma-mapping.h>
  36. #include <linux/io.h>
  37. #include <linux/scatterlist.h>
  38. #include <asm/cacheflush.h>
  39. #include <asm/bfin-global.h>
  40. static spinlock_t dma_page_lock;
  41. static unsigned int *dma_page;
  42. static unsigned int dma_pages;
  43. static unsigned long dma_base;
  44. static unsigned long dma_size;
  45. static unsigned int dma_initialized;
  46. void dma_alloc_init(unsigned long start, unsigned long end)
  47. {
  48. spin_lock_init(&dma_page_lock);
  49. dma_initialized = 0;
  50. dma_page = (unsigned int *)__get_free_page(GFP_KERNEL);
  51. memset(dma_page, 0, PAGE_SIZE);
  52. dma_base = PAGE_ALIGN(start);
  53. dma_size = PAGE_ALIGN(end) - PAGE_ALIGN(start);
  54. dma_pages = dma_size >> PAGE_SHIFT;
  55. memset((void *)dma_base, 0, DMA_UNCACHED_REGION);
  56. dma_initialized = 1;
  57. printk(KERN_INFO "%s: dma_page @ 0x%p - %d pages at 0x%08lx\n", __func__,
  58. dma_page, dma_pages, dma_base);
  59. }
  60. static inline unsigned int get_pages(size_t size)
  61. {
  62. return ((size - 1) >> PAGE_SHIFT) + 1;
  63. }
  64. static unsigned long __alloc_dma_pages(unsigned int pages)
  65. {
  66. unsigned long ret = 0, flags;
  67. int i, count = 0;
  68. if (dma_initialized == 0)
  69. dma_alloc_init(_ramend - DMA_UNCACHED_REGION, _ramend);
  70. spin_lock_irqsave(&dma_page_lock, flags);
  71. for (i = 0; i < dma_pages;) {
  72. if (dma_page[i++] == 0) {
  73. if (++count == pages) {
  74. while (count--)
  75. dma_page[--i] = 1;
  76. ret = dma_base + (i << PAGE_SHIFT);
  77. break;
  78. }
  79. } else
  80. count = 0;
  81. }
  82. spin_unlock_irqrestore(&dma_page_lock, flags);
  83. return ret;
  84. }
  85. static void __free_dma_pages(unsigned long addr, unsigned int pages)
  86. {
  87. unsigned long page = (addr - dma_base) >> PAGE_SHIFT;
  88. unsigned long flags;
  89. int i;
  90. if ((page + pages) > dma_pages) {
  91. printk(KERN_ERR "%s: freeing outside range.\n", __func__);
  92. BUG();
  93. }
  94. spin_lock_irqsave(&dma_page_lock, flags);
  95. for (i = page; i < page + pages; i++) {
  96. dma_page[i] = 0;
  97. }
  98. spin_unlock_irqrestore(&dma_page_lock, flags);
  99. }
  100. void *dma_alloc_coherent(struct device *dev, size_t size,
  101. dma_addr_t * dma_handle, gfp_t gfp)
  102. {
  103. void *ret;
  104. ret = (void *)__alloc_dma_pages(get_pages(size));
  105. if (ret) {
  106. memset(ret, 0, size);
  107. *dma_handle = virt_to_phys(ret);
  108. }
  109. return ret;
  110. }
  111. EXPORT_SYMBOL(dma_alloc_coherent);
  112. void
  113. dma_free_coherent(struct device *dev, size_t size, void *vaddr,
  114. dma_addr_t dma_handle)
  115. {
  116. __free_dma_pages((unsigned long)vaddr, get_pages(size));
  117. }
  118. EXPORT_SYMBOL(dma_free_coherent);
  119. /*
  120. * Dummy functions defined for some existing drivers
  121. */
  122. dma_addr_t
  123. dma_map_single(struct device *dev, void *ptr, size_t size,
  124. enum dma_data_direction direction)
  125. {
  126. BUG_ON(direction == DMA_NONE);
  127. invalidate_dcache_range((unsigned long)ptr,
  128. (unsigned long)ptr + size);
  129. return (dma_addr_t) ptr;
  130. }
  131. EXPORT_SYMBOL(dma_map_single);
  132. int
  133. dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
  134. enum dma_data_direction direction)
  135. {
  136. int i;
  137. BUG_ON(direction == DMA_NONE);
  138. for (i = 0; i < nents; i++, sg++) {
  139. sg->dma_address = (dma_addr_t) sg_virt(sg);
  140. invalidate_dcache_range(sg_dma_address(sg),
  141. sg_dma_address(sg) +
  142. sg_dma_len(sg));
  143. }
  144. return nents;
  145. }
  146. EXPORT_SYMBOL(dma_map_sg);
  147. void dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
  148. enum dma_data_direction direction)
  149. {
  150. BUG_ON(direction == DMA_NONE);
  151. }
  152. EXPORT_SYMBOL(dma_unmap_single);
  153. void dma_unmap_sg(struct device *dev, struct scatterlist *sg,
  154. int nhwentries, enum dma_data_direction direction)
  155. {
  156. BUG_ON(direction == DMA_NONE);
  157. }
  158. EXPORT_SYMBOL(dma_unmap_sg);