Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
| 6 | * Copyright (C) 2000 Ani Joshi <ajoshi@unixbox.com> |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 7 | * Copyright (C) 2000, 2001, 06 Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * swiped from i386, and cloned for MIPS by Geert, polished by Ralf. |
| 9 | */ |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/types.h> |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 12 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/mm.h> |
| 14 | #include <linux/module.h> |
Jens Axboe | 4fcc47a | 2007-10-23 12:32:34 +0200 | [diff] [blame] | 15 | #include <linux/scatterlist.h> |
Ralf Baechle | 6e86b0b | 2007-10-29 19:35:33 +0000 | [diff] [blame] | 16 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | #include <asm/cache.h> |
| 19 | #include <asm/io.h> |
| 20 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 21 | #include <dma-coherence.h> |
| 22 | |
Kevin Cernekee | 3807ef3 | 2009-04-23 17:25:12 -0700 | [diff] [blame] | 23 | static inline unsigned long dma_addr_to_virt(struct device *dev, |
| 24 | dma_addr_t dma_addr) |
Franck Bui-Huu | c9d0696 | 2007-03-19 17:36:42 +0100 | [diff] [blame] | 25 | { |
Kevin Cernekee | 3807ef3 | 2009-04-23 17:25:12 -0700 | [diff] [blame] | 26 | unsigned long addr = plat_dma_addr_to_phys(dev, dma_addr); |
Franck Bui-Huu | c9d0696 | 2007-03-19 17:36:42 +0100 | [diff] [blame] | 27 | |
| 28 | return (unsigned long)phys_to_virt(addr); |
| 29 | } |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | /* |
| 32 | * Warning on the terminology - Linux calls an uncached area coherent; |
| 33 | * MIPS terminology calls memory areas with hardware maintained coherency |
| 34 | * coherent. |
| 35 | */ |
| 36 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 37 | static inline int cpu_is_noncoherent_r10000(struct device *dev) |
| 38 | { |
| 39 | return !plat_device_is_coherent(dev) && |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 40 | (current_cpu_type() == CPU_R10000 || |
| 41 | current_cpu_type() == CPU_R12000); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 42 | } |
| 43 | |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 44 | static gfp_t massage_gfp_flags(const struct device *dev, gfp_t gfp) |
| 45 | { |
| 46 | /* ignore region specifiers */ |
| 47 | gfp &= ~(__GFP_DMA | __GFP_DMA32 | __GFP_HIGHMEM); |
| 48 | |
Thomas Bogendoerfer | 3201671 | 2007-12-30 12:45:40 +0100 | [diff] [blame] | 49 | #ifdef CONFIG_ZONE_DMA |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 50 | if (dev == NULL) |
| 51 | gfp |= __GFP_DMA; |
| 52 | else if (dev->coherent_dma_mask < DMA_BIT_MASK(24)) |
| 53 | gfp |= __GFP_DMA; |
| 54 | else |
| 55 | #endif |
| 56 | #ifdef CONFIG_ZONE_DMA32 |
| 57 | if (dev->coherent_dma_mask < DMA_BIT_MASK(32)) |
| 58 | gfp |= __GFP_DMA32; |
| 59 | else |
| 60 | #endif |
| 61 | ; |
| 62 | |
| 63 | /* Don't invoke OOM killer */ |
| 64 | gfp |= __GFP_NORETRY; |
| 65 | |
| 66 | return gfp; |
| 67 | } |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | void *dma_alloc_noncoherent(struct device *dev, size_t size, |
Al Viro | 185a8ff | 2005-10-21 03:21:23 -0400 | [diff] [blame] | 70 | dma_addr_t * dma_handle, gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
| 72 | void *ret; |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 73 | |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 74 | gfp = massage_gfp_flags(dev, gfp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | ret = (void *) __get_free_pages(gfp, get_order(size)); |
| 77 | |
| 78 | if (ret != NULL) { |
| 79 | memset(ret, 0, size); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 80 | *dma_handle = plat_map_dma_mem(dev, ret, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | return ret; |
| 84 | } |
| 85 | |
| 86 | EXPORT_SYMBOL(dma_alloc_noncoherent); |
| 87 | |
| 88 | void *dma_alloc_coherent(struct device *dev, size_t size, |
Al Viro | 185a8ff | 2005-10-21 03:21:23 -0400 | [diff] [blame] | 89 | dma_addr_t * dma_handle, gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
| 91 | void *ret; |
| 92 | |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 93 | gfp = massage_gfp_flags(dev, gfp); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 94 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 95 | ret = (void *) __get_free_pages(gfp, get_order(size)); |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | if (ret) { |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 98 | memset(ret, 0, size); |
| 99 | *dma_handle = plat_map_dma_mem(dev, ret, size); |
| 100 | |
| 101 | if (!plat_device_is_coherent(dev)) { |
| 102 | dma_cache_wback_inv((unsigned long) ret, size); |
| 103 | ret = UNCAC_ADDR(ret); |
| 104 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | return ret; |
| 108 | } |
| 109 | |
| 110 | EXPORT_SYMBOL(dma_alloc_coherent); |
| 111 | |
| 112 | void dma_free_noncoherent(struct device *dev, size_t size, void *vaddr, |
| 113 | dma_addr_t dma_handle) |
| 114 | { |
Kevin Cernekee | d3f634b | 2009-04-23 17:03:43 -0700 | [diff] [blame] | 115 | plat_unmap_dma_mem(dev, dma_handle, size, DMA_BIDIRECTIONAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | free_pages((unsigned long) vaddr, get_order(size)); |
| 117 | } |
| 118 | |
| 119 | EXPORT_SYMBOL(dma_free_noncoherent); |
| 120 | |
| 121 | void dma_free_coherent(struct device *dev, size_t size, void *vaddr, |
| 122 | dma_addr_t dma_handle) |
| 123 | { |
| 124 | unsigned long addr = (unsigned long) vaddr; |
| 125 | |
Kevin Cernekee | d3f634b | 2009-04-23 17:03:43 -0700 | [diff] [blame] | 126 | plat_unmap_dma_mem(dev, dma_handle, size, DMA_BIDIRECTIONAL); |
David Daney | 11531ac | 2008-12-10 18:14:45 -0800 | [diff] [blame] | 127 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 128 | if (!plat_device_is_coherent(dev)) |
| 129 | addr = CAC_ADDR(addr); |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | free_pages(addr, get_order(size)); |
| 132 | } |
| 133 | |
| 134 | EXPORT_SYMBOL(dma_free_coherent); |
| 135 | |
| 136 | static inline void __dma_sync(unsigned long addr, size_t size, |
| 137 | enum dma_data_direction direction) |
| 138 | { |
| 139 | switch (direction) { |
| 140 | case DMA_TO_DEVICE: |
| 141 | dma_cache_wback(addr, size); |
| 142 | break; |
| 143 | |
| 144 | case DMA_FROM_DEVICE: |
| 145 | dma_cache_inv(addr, size); |
| 146 | break; |
| 147 | |
| 148 | case DMA_BIDIRECTIONAL: |
| 149 | dma_cache_wback_inv(addr, size); |
| 150 | break; |
| 151 | |
| 152 | default: |
| 153 | BUG(); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | dma_addr_t dma_map_single(struct device *dev, void *ptr, size_t size, |
| 158 | enum dma_data_direction direction) |
| 159 | { |
| 160 | unsigned long addr = (unsigned long) ptr; |
| 161 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 162 | if (!plat_device_is_coherent(dev)) |
| 163 | __dma_sync(addr, size, direction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 165 | return plat_map_dma_mem(dev, ptr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | EXPORT_SYMBOL(dma_map_single); |
| 169 | |
| 170 | void dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, |
| 171 | enum dma_data_direction direction) |
| 172 | { |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 173 | if (cpu_is_noncoherent_r10000(dev)) |
Kevin Cernekee | 3807ef3 | 2009-04-23 17:25:12 -0700 | [diff] [blame] | 174 | __dma_sync(dma_addr_to_virt(dev, dma_addr), size, |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 175 | direction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
Kevin Cernekee | d3f634b | 2009-04-23 17:03:43 -0700 | [diff] [blame] | 177 | plat_unmap_dma_mem(dev, dma_addr, size, direction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | EXPORT_SYMBOL(dma_unmap_single); |
| 181 | |
| 182 | int dma_map_sg(struct device *dev, struct scatterlist *sg, int nents, |
| 183 | enum dma_data_direction direction) |
| 184 | { |
| 185 | int i; |
| 186 | |
| 187 | BUG_ON(direction == DMA_NONE); |
| 188 | |
| 189 | for (i = 0; i < nents; i++, sg++) { |
| 190 | unsigned long addr; |
Ralf Baechle | 42a3b4f | 2005-09-03 15:56:17 -0700 | [diff] [blame] | 191 | |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 192 | addr = (unsigned long) sg_virt(sg); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 193 | if (!plat_device_is_coherent(dev) && addr) |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 194 | __dma_sync(addr, sg->length, direction); |
Thomas Bogendoerfer | fbd5604 | 2007-05-18 14:32:36 +0200 | [diff] [blame] | 195 | sg->dma_address = plat_map_dma_mem(dev, |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 196 | (void *)addr, sg->length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | return nents; |
| 200 | } |
| 201 | |
| 202 | EXPORT_SYMBOL(dma_map_sg); |
| 203 | |
| 204 | dma_addr_t dma_map_page(struct device *dev, struct page *page, |
| 205 | unsigned long offset, size_t size, enum dma_data_direction direction) |
| 206 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | BUG_ON(direction == DMA_NONE); |
| 208 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 209 | if (!plat_device_is_coherent(dev)) { |
| 210 | unsigned long addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 212 | addr = (unsigned long) page_address(page) + offset; |
Atsushi Nemoto | 4f29c05 | 2009-01-23 00:42:11 +0900 | [diff] [blame] | 213 | __dma_sync(addr, size, direction); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | return plat_map_dma_mem_page(dev, page) + offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | EXPORT_SYMBOL(dma_map_page); |
| 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | void dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nhwentries, |
| 222 | enum dma_data_direction direction) |
| 223 | { |
| 224 | unsigned long addr; |
| 225 | int i; |
| 226 | |
| 227 | BUG_ON(direction == DMA_NONE); |
| 228 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | for (i = 0; i < nhwentries; i++, sg++) { |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 230 | if (!plat_device_is_coherent(dev) && |
| 231 | direction != DMA_TO_DEVICE) { |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 232 | addr = (unsigned long) sg_virt(sg); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 233 | if (addr) |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 234 | __dma_sync(addr, sg->length, direction); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 235 | } |
Kevin Cernekee | d3f634b | 2009-04-23 17:03:43 -0700 | [diff] [blame] | 236 | plat_unmap_dma_mem(dev, sg->dma_address, sg->length, direction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
| 238 | } |
| 239 | |
| 240 | EXPORT_SYMBOL(dma_unmap_sg); |
| 241 | |
| 242 | void dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, |
| 243 | size_t size, enum dma_data_direction direction) |
| 244 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | BUG_ON(direction == DMA_NONE); |
Ralf Baechle | 42a3b4f | 2005-09-03 15:56:17 -0700 | [diff] [blame] | 246 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 247 | if (cpu_is_noncoherent_r10000(dev)) { |
| 248 | unsigned long addr; |
| 249 | |
Kevin Cernekee | 3807ef3 | 2009-04-23 17:25:12 -0700 | [diff] [blame] | 250 | addr = dma_addr_to_virt(dev, dma_handle); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 251 | __dma_sync(addr, size, direction); |
| 252 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | EXPORT_SYMBOL(dma_sync_single_for_cpu); |
| 256 | |
| 257 | void dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, |
| 258 | size_t size, enum dma_data_direction direction) |
| 259 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | BUG_ON(direction == DMA_NONE); |
| 261 | |
David Daney | 843aef4 | 2008-12-11 15:33:36 -0800 | [diff] [blame] | 262 | plat_extra_sync_for_device(dev); |
Thomas Bogendoerfer | 9b43fb6 | 2007-02-23 19:58:48 +0100 | [diff] [blame] | 263 | if (!plat_device_is_coherent(dev)) { |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 264 | unsigned long addr; |
| 265 | |
Kevin Cernekee | 3807ef3 | 2009-04-23 17:25:12 -0700 | [diff] [blame] | 266 | addr = dma_addr_to_virt(dev, dma_handle); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 267 | __dma_sync(addr, size, direction); |
| 268 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | EXPORT_SYMBOL(dma_sync_single_for_device); |
| 272 | |
| 273 | void dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle, |
| 274 | unsigned long offset, size_t size, enum dma_data_direction direction) |
| 275 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | BUG_ON(direction == DMA_NONE); |
| 277 | |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 278 | if (cpu_is_noncoherent_r10000(dev)) { |
| 279 | unsigned long addr; |
| 280 | |
Kevin Cernekee | 3807ef3 | 2009-04-23 17:25:12 -0700 | [diff] [blame] | 281 | addr = dma_addr_to_virt(dev, dma_handle); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 282 | __dma_sync(addr + offset, size, direction); |
| 283 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | EXPORT_SYMBOL(dma_sync_single_range_for_cpu); |
| 287 | |
| 288 | void dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle, |
| 289 | unsigned long offset, size_t size, enum dma_data_direction direction) |
| 290 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | BUG_ON(direction == DMA_NONE); |
| 292 | |
David Daney | 843aef4 | 2008-12-11 15:33:36 -0800 | [diff] [blame] | 293 | plat_extra_sync_for_device(dev); |
Thomas Bogendoerfer | 9b43fb6 | 2007-02-23 19:58:48 +0100 | [diff] [blame] | 294 | if (!plat_device_is_coherent(dev)) { |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 295 | unsigned long addr; |
| 296 | |
Kevin Cernekee | 3807ef3 | 2009-04-23 17:25:12 -0700 | [diff] [blame] | 297 | addr = dma_addr_to_virt(dev, dma_handle); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 298 | __dma_sync(addr + offset, size, direction); |
| 299 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | EXPORT_SYMBOL(dma_sync_single_range_for_device); |
| 303 | |
| 304 | void dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nelems, |
| 305 | enum dma_data_direction direction) |
| 306 | { |
| 307 | int i; |
Ralf Baechle | 42a3b4f | 2005-09-03 15:56:17 -0700 | [diff] [blame] | 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | BUG_ON(direction == DMA_NONE); |
Ralf Baechle | 42a3b4f | 2005-09-03 15:56:17 -0700 | [diff] [blame] | 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | /* Make sure that gcc doesn't leave the empty loop body. */ |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 312 | for (i = 0; i < nelems; i++, sg++) { |
Ralf Baechle | 5b648a9 | 2007-03-02 11:42:11 +0000 | [diff] [blame] | 313 | if (cpu_is_noncoherent_r10000(dev)) |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 314 | __dma_sync((unsigned long)page_address(sg_page(sg)), |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 315 | sg->length, direction); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 316 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | EXPORT_SYMBOL(dma_sync_sg_for_cpu); |
| 320 | |
| 321 | void dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems, |
| 322 | enum dma_data_direction direction) |
| 323 | { |
| 324 | int i; |
| 325 | |
| 326 | BUG_ON(direction == DMA_NONE); |
| 327 | |
| 328 | /* Make sure that gcc doesn't leave the empty loop body. */ |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 329 | for (i = 0; i < nelems; i++, sg++) { |
| 330 | if (!plat_device_is_coherent(dev)) |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 331 | __dma_sync((unsigned long)page_address(sg_page(sg)), |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 332 | sg->length, direction); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 333 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | EXPORT_SYMBOL(dma_sync_sg_for_device); |
| 337 | |
FUJITA Tomonori | 8d8bb39 | 2008-07-25 19:44:49 -0700 | [diff] [blame] | 338 | int dma_mapping_error(struct device *dev, dma_addr_t dma_addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | { |
David Daney | 843aef4 | 2008-12-11 15:33:36 -0800 | [diff] [blame] | 340 | return plat_dma_mapping_error(dev, dma_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | EXPORT_SYMBOL(dma_mapping_error); |
| 344 | |
| 345 | int dma_supported(struct device *dev, u64 mask) |
| 346 | { |
David Daney | 843aef4 | 2008-12-11 15:33:36 -0800 | [diff] [blame] | 347 | return plat_dma_supported(dev, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | EXPORT_SYMBOL(dma_supported); |
| 351 | |
Ralf Baechle | f67637e | 2006-12-06 20:38:54 -0800 | [diff] [blame] | 352 | int dma_is_consistent(struct device *dev, dma_addr_t dma_addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 354 | return plat_device_is_coherent(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | EXPORT_SYMBOL(dma_is_consistent); |
| 358 | |
Ralf Baechle | d3fa72e | 2006-12-06 20:38:56 -0800 | [diff] [blame] | 359 | void dma_cache_sync(struct device *dev, void *vaddr, size_t size, |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 360 | enum dma_data_direction direction) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | { |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 362 | BUG_ON(direction == DMA_NONE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
David Daney | 843aef4 | 2008-12-11 15:33:36 -0800 | [diff] [blame] | 364 | plat_extra_sync_for_device(dev); |
Ralf Baechle | 9a88cbb | 2006-11-16 02:56:12 +0000 | [diff] [blame] | 365 | if (!plat_device_is_coherent(dev)) |
Thomas Bogendoerfer | c7c6b39 | 2007-11-27 19:31:33 +0100 | [diff] [blame] | 366 | __dma_sync((unsigned long)vaddr, size, direction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | EXPORT_SYMBOL(dma_cache_sync); |