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