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