Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/sh/mm/consistent.c |
| 3 | * |
Paul Mundt | 8a7bcf0 | 2007-11-11 17:07:06 +0900 | [diff] [blame] | 4 | * Copyright (C) 2004 - 2007 Paul Mundt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
Magnus Damm | f93e97e | 2008-01-24 18:35:10 +0900 | [diff] [blame] | 6 | * Declared coherent memory functions based on arch/x86/kernel/pci-dma_32.c |
| 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Paul Mundt | 7b41f56 | 2009-04-14 15:22:15 +0900 | [diff] [blame] | 13 | #include <linux/init.h> |
Magnus Damm | 1eca5c9 | 2008-07-16 19:02:54 +0900 | [diff] [blame] | 14 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/dma-mapping.h> |
Paul Mundt | f802d96 | 2009-04-09 10:36:54 -0700 | [diff] [blame] | 16 | #include <linux/dma-debug.h> |
Paul Mundt | 7b41f56 | 2009-04-14 15:22:15 +0900 | [diff] [blame] | 17 | #include <linux/io.h> |
Paul Mundt | 73c926b | 2009-10-20 12:55:56 +0900 | [diff] [blame] | 18 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/gfp.h> |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 20 | #include <asm/cacheflush.h> |
| 21 | #include <asm/addrspace.h> |
Paul Mundt | 7b41f56 | 2009-04-14 15:22:15 +0900 | [diff] [blame] | 22 | |
| 23 | #define PREALLOC_DMA_DEBUG_ENTRIES 4096 |
| 24 | |
Paul Mundt | 73c926b | 2009-10-20 12:55:56 +0900 | [diff] [blame] | 25 | struct dma_map_ops *dma_ops; |
| 26 | EXPORT_SYMBOL(dma_ops); |
| 27 | |
Paul Mundt | 7b41f56 | 2009-04-14 15:22:15 +0900 | [diff] [blame] | 28 | static int __init dma_init(void) |
| 29 | { |
| 30 | dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES); |
| 31 | return 0; |
| 32 | } |
| 33 | fs_initcall(dma_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Paul Mundt | f32154c9 | 2009-10-26 09:50:51 +0900 | [diff] [blame] | 35 | void *dma_generic_alloc_coherent(struct device *dev, size_t size, |
Andrzej Pietrasiewicz | 552c0d3 | 2011-12-14 12:11:13 +0100 | [diff] [blame] | 36 | dma_addr_t *dma_handle, gfp_t gfp, |
| 37 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | { |
Magnus Damm | 2a3eeba | 2008-01-25 12:42:48 +0900 | [diff] [blame] | 39 | void *ret, *ret_nocache; |
Magnus Damm | f93e97e | 2008-01-24 18:35:10 +0900 | [diff] [blame] | 40 | int order = get_order(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Andrew Murray | 5768282 | 2010-08-04 16:38:35 +0900 | [diff] [blame] | 42 | gfp |= __GFP_ZERO; |
| 43 | |
Magnus Damm | f93e97e | 2008-01-24 18:35:10 +0900 | [diff] [blame] | 44 | ret = (void *)__get_free_pages(gfp, order); |
Magnus Damm | 2a3eeba | 2008-01-25 12:42:48 +0900 | [diff] [blame] | 45 | if (!ret) |
| 46 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Magnus Damm | 2a3eeba | 2008-01-25 12:42:48 +0900 | [diff] [blame] | 48 | /* |
| 49 | * Pages from the page allocator may have data present in |
| 50 | * cache. So flush the cache before using uncached memory. |
| 51 | */ |
| 52 | dma_cache_sync(dev, ret, size, DMA_BIDIRECTIONAL); |
| 53 | |
Paul Mundt | fa43972 | 2008-09-04 18:53:58 +0900 | [diff] [blame] | 54 | ret_nocache = (void __force *)ioremap_nocache(virt_to_phys(ret), size); |
Magnus Damm | 2a3eeba | 2008-01-25 12:42:48 +0900 | [diff] [blame] | 55 | if (!ret_nocache) { |
| 56 | free_pages((unsigned long)ret, order); |
| 57 | return NULL; |
Magnus Damm | f93e97e | 2008-01-24 18:35:10 +0900 | [diff] [blame] | 58 | } |
Magnus Damm | 2a3eeba | 2008-01-25 12:42:48 +0900 | [diff] [blame] | 59 | |
Magnus Damm | da9fdc8 | 2008-12-17 17:18:45 +0900 | [diff] [blame] | 60 | split_page(pfn_to_page(virt_to_phys(ret) >> PAGE_SHIFT), order); |
| 61 | |
Magnus Damm | 2a3eeba | 2008-01-25 12:42:48 +0900 | [diff] [blame] | 62 | *dma_handle = virt_to_phys(ret); |
Paul Mundt | f802d96 | 2009-04-09 10:36:54 -0700 | [diff] [blame] | 63 | |
Magnus Damm | 2a3eeba | 2008-01-25 12:42:48 +0900 | [diff] [blame] | 64 | return ret_nocache; |
Magnus Damm | f93e97e | 2008-01-24 18:35:10 +0900 | [diff] [blame] | 65 | } |
Magnus Damm | f93e97e | 2008-01-24 18:35:10 +0900 | [diff] [blame] | 66 | |
Paul Mundt | f32154c9 | 2009-10-26 09:50:51 +0900 | [diff] [blame] | 67 | void dma_generic_free_coherent(struct device *dev, size_t size, |
Andrzej Pietrasiewicz | 552c0d3 | 2011-12-14 12:11:13 +0100 | [diff] [blame] | 68 | void *vaddr, dma_addr_t dma_handle, |
| 69 | struct dma_attrs *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
Magnus Damm | f93e97e | 2008-01-24 18:35:10 +0900 | [diff] [blame] | 71 | int order = get_order(size); |
Magnus Damm | da9fdc8 | 2008-12-17 17:18:45 +0900 | [diff] [blame] | 72 | unsigned long pfn = dma_handle >> PAGE_SHIFT; |
| 73 | int k; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Paul Mundt | f802d96 | 2009-04-09 10:36:54 -0700 | [diff] [blame] | 75 | for (k = 0; k < (1 << order); k++) |
| 76 | __free_pages(pfn_to_page(pfn + k), 0); |
Paul Mundt | f32154c9 | 2009-10-26 09:50:51 +0900 | [diff] [blame] | 77 | |
Paul Mundt | f802d96 | 2009-04-09 10:36:54 -0700 | [diff] [blame] | 78 | iounmap(vaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Magnus Damm | f93e97e | 2008-01-24 18:35:10 +0900 | [diff] [blame] | 81 | void dma_cache_sync(struct device *dev, void *vaddr, size_t size, |
| 82 | enum dma_data_direction direction) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { |
Paul Mundt | e2fcf74 | 2010-11-04 12:32:24 +0900 | [diff] [blame] | 84 | void *addr; |
| 85 | |
| 86 | addr = __in_29bit_mode() ? |
Paul Mundt | 3f9b8520 | 2011-05-31 14:38:29 +0900 | [diff] [blame] | 87 | (void *)CAC_ADDR((unsigned long)vaddr) : vaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | switch (direction) { |
| 90 | case DMA_FROM_DEVICE: /* invalidate only */ |
Paul Mundt | e2fcf74 | 2010-11-04 12:32:24 +0900 | [diff] [blame] | 91 | __flush_invalidate_region(addr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | break; |
| 93 | case DMA_TO_DEVICE: /* writeback only */ |
Paul Mundt | e2fcf74 | 2010-11-04 12:32:24 +0900 | [diff] [blame] | 94 | __flush_wback_region(addr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | break; |
| 96 | case DMA_BIDIRECTIONAL: /* writeback and invalidate */ |
Paul Mundt | e2fcf74 | 2010-11-04 12:32:24 +0900 | [diff] [blame] | 97 | __flush_purge_region(addr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | break; |
| 99 | default: |
| 100 | BUG(); |
| 101 | } |
| 102 | } |
Magnus Damm | f93e97e | 2008-01-24 18:35:10 +0900 | [diff] [blame] | 103 | EXPORT_SYMBOL(dma_cache_sync); |
Magnus Damm | 1eca5c9 | 2008-07-16 19:02:54 +0900 | [diff] [blame] | 104 | |
Magnus Damm | 0c13bf1 | 2008-08-11 15:13:24 +0900 | [diff] [blame] | 105 | static int __init memchunk_setup(char *str) |
| 106 | { |
| 107 | return 1; /* accept anything that begins with "memchunk." */ |
| 108 | } |
| 109 | __setup("memchunk.", memchunk_setup); |
| 110 | |
Magnus Damm | c773d8a | 2008-08-27 18:21:29 +0900 | [diff] [blame] | 111 | static void __init memchunk_cmdline_override(char *name, unsigned long *sizep) |
Magnus Damm | 0c13bf1 | 2008-08-11 15:13:24 +0900 | [diff] [blame] | 112 | { |
| 113 | char *p = boot_command_line; |
| 114 | int k = strlen(name); |
| 115 | |
| 116 | while ((p = strstr(p, "memchunk."))) { |
| 117 | p += 9; /* strlen("memchunk.") */ |
| 118 | if (!strncmp(name, p, k) && p[k] == '=') { |
| 119 | p += k + 1; |
| 120 | *sizep = memparse(p, NULL); |
| 121 | pr_info("%s: forcing memory chunk size to 0x%08lx\n", |
| 122 | name, *sizep); |
| 123 | break; |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | |
Magnus Damm | c773d8a | 2008-08-27 18:21:29 +0900 | [diff] [blame] | 128 | int __init platform_resource_setup_memory(struct platform_device *pdev, |
| 129 | char *name, unsigned long memsize) |
Magnus Damm | 1eca5c9 | 2008-07-16 19:02:54 +0900 | [diff] [blame] | 130 | { |
| 131 | struct resource *r; |
| 132 | dma_addr_t dma_handle; |
| 133 | void *buf; |
| 134 | |
| 135 | r = pdev->resource + pdev->num_resources - 1; |
| 136 | if (r->flags) { |
| 137 | pr_warning("%s: unable to find empty space for resource\n", |
| 138 | name); |
| 139 | return -EINVAL; |
| 140 | } |
| 141 | |
Magnus Damm | 0c13bf1 | 2008-08-11 15:13:24 +0900 | [diff] [blame] | 142 | memchunk_cmdline_override(name, &memsize); |
| 143 | if (!memsize) |
| 144 | return 0; |
| 145 | |
Magnus Damm | 1eca5c9 | 2008-07-16 19:02:54 +0900 | [diff] [blame] | 146 | buf = dma_alloc_coherent(NULL, memsize, &dma_handle, GFP_KERNEL); |
| 147 | if (!buf) { |
| 148 | pr_warning("%s: unable to allocate memory\n", name); |
| 149 | return -ENOMEM; |
| 150 | } |
| 151 | |
| 152 | memset(buf, 0, memsize); |
| 153 | |
| 154 | r->flags = IORESOURCE_MEM; |
| 155 | r->start = dma_handle; |
| 156 | r->end = r->start + memsize - 1; |
| 157 | r->name = name; |
| 158 | return 0; |
| 159 | } |