consistent.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * arch/sh/mm/consistent.c
  3. *
  4. * Copyright (C) 2004 - 2007 Paul Mundt
  5. *
  6. * Declared coherent memory functions based on arch/x86/kernel/pci-dma_32.c
  7. *
  8. * This file is subject to the terms and conditions of the GNU General Public
  9. * License. See the file "COPYING" in the main directory of this archive
  10. * for more details.
  11. */
  12. #include <linux/mm.h>
  13. #include <linux/init.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/dma-mapping.h>
  16. #include <linux/dma-debug.h>
  17. #include <linux/io.h>
  18. #include <linux/module.h>
  19. #include <asm/cacheflush.h>
  20. #include <asm/addrspace.h>
  21. #define PREALLOC_DMA_DEBUG_ENTRIES 4096
  22. struct dma_map_ops *dma_ops;
  23. EXPORT_SYMBOL(dma_ops);
  24. static int __init dma_init(void)
  25. {
  26. dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
  27. return 0;
  28. }
  29. fs_initcall(dma_init);
  30. void *dma_generic_alloc_coherent(struct device *dev, size_t size,
  31. dma_addr_t *dma_handle, gfp_t gfp)
  32. {
  33. void *ret, *ret_nocache;
  34. int order = get_order(size);
  35. ret = (void *)__get_free_pages(gfp, order);
  36. if (!ret)
  37. return NULL;
  38. memset(ret, 0, size);
  39. /*
  40. * Pages from the page allocator may have data present in
  41. * cache. So flush the cache before using uncached memory.
  42. */
  43. dma_cache_sync(dev, ret, size, DMA_BIDIRECTIONAL);
  44. ret_nocache = (void __force *)ioremap_nocache(virt_to_phys(ret), size);
  45. if (!ret_nocache) {
  46. free_pages((unsigned long)ret, order);
  47. return NULL;
  48. }
  49. split_page(pfn_to_page(virt_to_phys(ret) >> PAGE_SHIFT), order);
  50. *dma_handle = virt_to_phys(ret);
  51. return ret_nocache;
  52. }
  53. void dma_generic_free_coherent(struct device *dev, size_t size,
  54. void *vaddr, dma_addr_t dma_handle)
  55. {
  56. int order = get_order(size);
  57. unsigned long pfn = dma_handle >> PAGE_SHIFT;
  58. int k;
  59. for (k = 0; k < (1 << order); k++)
  60. __free_pages(pfn_to_page(pfn + k), 0);
  61. iounmap(vaddr);
  62. }
  63. void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
  64. enum dma_data_direction direction)
  65. {
  66. #if defined(CONFIG_CPU_SH5) || defined(CONFIG_PMB)
  67. void *p1addr = vaddr;
  68. #else
  69. void *p1addr = (void*) P1SEGADDR((unsigned long)vaddr);
  70. #endif
  71. switch (direction) {
  72. case DMA_FROM_DEVICE: /* invalidate only */
  73. __flush_invalidate_region(p1addr, size);
  74. break;
  75. case DMA_TO_DEVICE: /* writeback only */
  76. __flush_wback_region(p1addr, size);
  77. break;
  78. case DMA_BIDIRECTIONAL: /* writeback and invalidate */
  79. __flush_purge_region(p1addr, size);
  80. break;
  81. default:
  82. BUG();
  83. }
  84. }
  85. EXPORT_SYMBOL(dma_cache_sync);
  86. static int __init memchunk_setup(char *str)
  87. {
  88. return 1; /* accept anything that begins with "memchunk." */
  89. }
  90. __setup("memchunk.", memchunk_setup);
  91. static void __init memchunk_cmdline_override(char *name, unsigned long *sizep)
  92. {
  93. char *p = boot_command_line;
  94. int k = strlen(name);
  95. while ((p = strstr(p, "memchunk."))) {
  96. p += 9; /* strlen("memchunk.") */
  97. if (!strncmp(name, p, k) && p[k] == '=') {
  98. p += k + 1;
  99. *sizep = memparse(p, NULL);
  100. pr_info("%s: forcing memory chunk size to 0x%08lx\n",
  101. name, *sizep);
  102. break;
  103. }
  104. }
  105. }
  106. int __init platform_resource_setup_memory(struct platform_device *pdev,
  107. char *name, unsigned long memsize)
  108. {
  109. struct resource *r;
  110. dma_addr_t dma_handle;
  111. void *buf;
  112. r = pdev->resource + pdev->num_resources - 1;
  113. if (r->flags) {
  114. pr_warning("%s: unable to find empty space for resource\n",
  115. name);
  116. return -EINVAL;
  117. }
  118. memchunk_cmdline_override(name, &memsize);
  119. if (!memsize)
  120. return 0;
  121. buf = dma_alloc_coherent(NULL, memsize, &dma_handle, GFP_KERNEL);
  122. if (!buf) {
  123. pr_warning("%s: unable to allocate memory\n", name);
  124. return -ENOMEM;
  125. }
  126. memset(buf, 0, memsize);
  127. r->flags = IORESOURCE_MEM;
  128. r->start = dma_handle;
  129. r->end = r->start + memsize - 1;
  130. r->name = name;
  131. return 0;
  132. }