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