consistent.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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/platform_device.h>
  14. #include <linux/dma-mapping.h>
  15. #include <asm/cacheflush.h>
  16. #include <asm/addrspace.h>
  17. #include <asm/io.h>
  18. void *dma_alloc_coherent(struct device *dev, size_t size,
  19. dma_addr_t *dma_handle, gfp_t gfp)
  20. {
  21. void *ret, *ret_nocache;
  22. int order = get_order(size);
  23. if (dma_alloc_from_coherent(dev, size, dma_handle, &ret))
  24. return ret;
  25. ret = (void *)__get_free_pages(gfp, order);
  26. if (!ret)
  27. return NULL;
  28. memset(ret, 0, size);
  29. /*
  30. * Pages from the page allocator may have data present in
  31. * cache. So flush the cache before using uncached memory.
  32. */
  33. dma_cache_sync(dev, ret, size, DMA_BIDIRECTIONAL);
  34. ret_nocache = (void __force *)ioremap_nocache(virt_to_phys(ret), size);
  35. if (!ret_nocache) {
  36. free_pages((unsigned long)ret, order);
  37. return NULL;
  38. }
  39. *dma_handle = virt_to_phys(ret);
  40. return ret_nocache;
  41. }
  42. EXPORT_SYMBOL(dma_alloc_coherent);
  43. void dma_free_coherent(struct device *dev, size_t size,
  44. void *vaddr, dma_addr_t dma_handle)
  45. {
  46. int order = get_order(size);
  47. if (!dma_release_from_coherent(dev, order, vaddr)) {
  48. WARN_ON(irqs_disabled()); /* for portability */
  49. free_pages((unsigned long)phys_to_virt(dma_handle), order);
  50. iounmap(vaddr);
  51. }
  52. }
  53. EXPORT_SYMBOL(dma_free_coherent);
  54. void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
  55. enum dma_data_direction direction)
  56. {
  57. #ifdef CONFIG_CPU_SH5
  58. void *p1addr = vaddr;
  59. #else
  60. void *p1addr = (void*) P1SEGADDR((unsigned long)vaddr);
  61. #endif
  62. switch (direction) {
  63. case DMA_FROM_DEVICE: /* invalidate only */
  64. __flush_invalidate_region(p1addr, size);
  65. break;
  66. case DMA_TO_DEVICE: /* writeback only */
  67. __flush_wback_region(p1addr, size);
  68. break;
  69. case DMA_BIDIRECTIONAL: /* writeback and invalidate */
  70. __flush_purge_region(p1addr, size);
  71. break;
  72. default:
  73. BUG();
  74. }
  75. }
  76. EXPORT_SYMBOL(dma_cache_sync);
  77. static int __init memchunk_setup(char *str)
  78. {
  79. return 1; /* accept anything that begins with "memchunk." */
  80. }
  81. __setup("memchunk.", memchunk_setup);
  82. static void __init memchunk_cmdline_override(char *name, unsigned long *sizep)
  83. {
  84. char *p = boot_command_line;
  85. int k = strlen(name);
  86. while ((p = strstr(p, "memchunk."))) {
  87. p += 9; /* strlen("memchunk.") */
  88. if (!strncmp(name, p, k) && p[k] == '=') {
  89. p += k + 1;
  90. *sizep = memparse(p, NULL);
  91. pr_info("%s: forcing memory chunk size to 0x%08lx\n",
  92. name, *sizep);
  93. break;
  94. }
  95. }
  96. }
  97. int __init platform_resource_setup_memory(struct platform_device *pdev,
  98. char *name, unsigned long memsize)
  99. {
  100. struct resource *r;
  101. dma_addr_t dma_handle;
  102. void *buf;
  103. r = pdev->resource + pdev->num_resources - 1;
  104. if (r->flags) {
  105. pr_warning("%s: unable to find empty space for resource\n",
  106. name);
  107. return -EINVAL;
  108. }
  109. memchunk_cmdline_override(name, &memsize);
  110. if (!memsize)
  111. return 0;
  112. buf = dma_alloc_coherent(NULL, memsize, &dma_handle, GFP_KERNEL);
  113. if (!buf) {
  114. pr_warning("%s: unable to allocate memory\n", name);
  115. return -ENOMEM;
  116. }
  117. memset(buf, 0, memsize);
  118. r->flags = IORESOURCE_MEM;
  119. r->start = dma_handle;
  120. r->end = r->start + memsize - 1;
  121. r->name = name;
  122. return 0;
  123. }