Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/common/dmabounce.c |
| 3 | * |
| 4 | * Special dma_{map/unmap/dma_sync}_* routines for systems that have |
| 5 | * limited DMA windows. These functions utilize bounce buffers to |
| 6 | * copy data to/from buffers located outside the DMA region. This |
| 7 | * only works for systems in which DMA memory is at the bottom of |
Erik Hovland | 3a2916a | 2006-03-22 21:02:11 +0000 | [diff] [blame] | 8 | * RAM, the remainder of memory is at the top and the DMA memory |
Simon Arlott | 6cbdc8c | 2007-05-11 20:40:30 +0100 | [diff] [blame] | 9 | * can be marked as ZONE_DMA. Anything beyond that such as discontiguous |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * DMA windows will require custom implementations that reserve memory |
| 11 | * areas at early bootup. |
| 12 | * |
| 13 | * Original version by Brad Parker (brad@heeltoe.com) |
| 14 | * Re-written by Christopher Hoover <ch@murgatroid.com> |
| 15 | * Made generic by Deepak Saxena <dsaxena@plexity.net> |
| 16 | * |
| 17 | * Copyright (C) 2002 Hewlett Packard Company. |
| 18 | * Copyright (C) 2004 MontaVista Software, Inc. |
| 19 | * |
| 20 | * This program is free software; you can redistribute it and/or |
| 21 | * modify it under the terms of the GNU General Public License |
| 22 | * version 2 as published by the Free Software Foundation. |
| 23 | */ |
| 24 | |
| 25 | #include <linux/module.h> |
| 26 | #include <linux/init.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/device.h> |
| 29 | #include <linux/dma-mapping.h> |
| 30 | #include <linux/dmapool.h> |
| 31 | #include <linux/list.h> |
FUJITA Tomonori | 9f2326b | 2007-10-23 09:11:41 +0200 | [diff] [blame] | 32 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Russell King | 14eb75b | 2005-06-20 16:56:08 +0100 | [diff] [blame] | 34 | #include <asm/cacheflush.h> |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #undef STATS |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #ifdef STATS |
| 39 | #define DO_STATS(X) do { X ; } while (0) |
| 40 | #else |
| 41 | #define DO_STATS(X) do { } while (0) |
| 42 | #endif |
| 43 | |
| 44 | /* ************************************************** */ |
| 45 | |
| 46 | struct safe_buffer { |
| 47 | struct list_head node; |
| 48 | |
| 49 | /* original request */ |
| 50 | void *ptr; |
| 51 | size_t size; |
| 52 | int direction; |
| 53 | |
| 54 | /* safe buffer info */ |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 55 | struct dmabounce_pool *pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | void *safe; |
| 57 | dma_addr_t safe_dma_addr; |
| 58 | }; |
| 59 | |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 60 | struct dmabounce_pool { |
| 61 | unsigned long size; |
| 62 | struct dma_pool *pool; |
| 63 | #ifdef STATS |
| 64 | unsigned long allocs; |
| 65 | #endif |
| 66 | }; |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | struct dmabounce_device_info { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | struct device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | struct list_head safe_buffers; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | #ifdef STATS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | unsigned long total_allocs; |
| 73 | unsigned long map_op_count; |
| 74 | unsigned long bounce_count; |
Russell King | 017cc02 | 2007-02-12 10:53:50 +0000 | [diff] [blame] | 75 | int attr_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #endif |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 77 | struct dmabounce_pool small; |
| 78 | struct dmabounce_pool large; |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 79 | |
| 80 | rwlock_t lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | }; |
| 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | #ifdef STATS |
Russell King | 017cc02 | 2007-02-12 10:53:50 +0000 | [diff] [blame] | 84 | static ssize_t dmabounce_show(struct device *dev, struct device_attribute *attr, |
| 85 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Russell King | 017cc02 | 2007-02-12 10:53:50 +0000 | [diff] [blame] | 87 | struct dmabounce_device_info *device_info = dev->archdata.dmabounce; |
| 88 | return sprintf(buf, "%lu %lu %lu %lu %lu %lu\n", |
| 89 | device_info->small.allocs, |
| 90 | device_info->large.allocs, |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 91 | device_info->total_allocs - device_info->small.allocs - |
| 92 | device_info->large.allocs, |
Russell King | 017cc02 | 2007-02-12 10:53:50 +0000 | [diff] [blame] | 93 | device_info->total_allocs, |
| 94 | device_info->map_op_count, |
| 95 | device_info->bounce_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } |
Russell King | 017cc02 | 2007-02-12 10:53:50 +0000 | [diff] [blame] | 97 | |
| 98 | static DEVICE_ATTR(dmabounce_stats, 0400, dmabounce_show, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | #endif |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
| 102 | /* allocate a 'safe' buffer and keep track of it */ |
| 103 | static inline struct safe_buffer * |
| 104 | alloc_safe_buffer(struct dmabounce_device_info *device_info, void *ptr, |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 105 | size_t size, enum dma_data_direction dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | { |
| 107 | struct safe_buffer *buf; |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 108 | struct dmabounce_pool *pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | struct device *dev = device_info->dev; |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 110 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | dev_dbg(dev, "%s(ptr=%p, size=%d, dir=%d)\n", |
| 113 | __func__, ptr, size, dir); |
| 114 | |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 115 | if (size <= device_info->small.size) { |
| 116 | pool = &device_info->small; |
| 117 | } else if (size <= device_info->large.size) { |
| 118 | pool = &device_info->large; |
| 119 | } else { |
| 120 | pool = NULL; |
| 121 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | buf = kmalloc(sizeof(struct safe_buffer), GFP_ATOMIC); |
| 124 | if (buf == NULL) { |
| 125 | dev_warn(dev, "%s: kmalloc failed\n", __func__); |
| 126 | return NULL; |
| 127 | } |
| 128 | |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 129 | buf->ptr = ptr; |
| 130 | buf->size = size; |
| 131 | buf->direction = dir; |
| 132 | buf->pool = pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 134 | if (pool) { |
| 135 | buf->safe = dma_pool_alloc(pool->pool, GFP_ATOMIC, |
| 136 | &buf->safe_dma_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | } else { |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 138 | buf->safe = dma_alloc_coherent(dev, size, &buf->safe_dma_addr, |
| 139 | GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 142 | if (buf->safe == NULL) { |
| 143 | dev_warn(dev, |
| 144 | "%s: could not alloc dma memory (size=%d)\n", |
| 145 | __func__, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | kfree(buf); |
| 147 | return NULL; |
| 148 | } |
| 149 | |
| 150 | #ifdef STATS |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 151 | if (pool) |
| 152 | pool->allocs++; |
| 153 | device_info->total_allocs++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | #endif |
| 155 | |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 156 | write_lock_irqsave(&device_info->lock, flags); |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | list_add(&buf->node, &device_info->safe_buffers); |
| 159 | |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 160 | write_unlock_irqrestore(&device_info->lock, flags); |
| 161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | return buf; |
| 163 | } |
| 164 | |
| 165 | /* determine if a buffer is from our "safe" pool */ |
| 166 | static inline struct safe_buffer * |
| 167 | find_safe_buffer(struct dmabounce_device_info *device_info, dma_addr_t safe_dma_addr) |
| 168 | { |
Kevin Hilman | e2785f0 | 2006-08-18 15:32:14 +0100 | [diff] [blame] | 169 | struct safe_buffer *b, *rb = NULL; |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 170 | unsigned long flags; |
| 171 | |
| 172 | read_lock_irqsave(&device_info->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Russell King | b46a58f | 2005-06-22 21:25:58 +0100 | [diff] [blame] | 174 | list_for_each_entry(b, &device_info->safe_buffers, node) |
Kevin Hilman | e2785f0 | 2006-08-18 15:32:14 +0100 | [diff] [blame] | 175 | if (b->safe_dma_addr == safe_dma_addr) { |
| 176 | rb = b; |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 177 | break; |
Kevin Hilman | e2785f0 | 2006-08-18 15:32:14 +0100 | [diff] [blame] | 178 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 180 | read_unlock_irqrestore(&device_info->lock, flags); |
Kevin Hilman | e2785f0 | 2006-08-18 15:32:14 +0100 | [diff] [blame] | 181 | return rb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | static inline void |
| 185 | free_safe_buffer(struct dmabounce_device_info *device_info, struct safe_buffer *buf) |
| 186 | { |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 187 | unsigned long flags; |
| 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | dev_dbg(device_info->dev, "%s(buf=%p)\n", __func__, buf); |
| 190 | |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 191 | write_lock_irqsave(&device_info->lock, flags); |
| 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | list_del(&buf->node); |
| 194 | |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 195 | write_unlock_irqrestore(&device_info->lock, flags); |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | if (buf->pool) |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 198 | dma_pool_free(buf->pool->pool, buf->safe, buf->safe_dma_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | else |
| 200 | dma_free_coherent(device_info->dev, buf->size, buf->safe, |
| 201 | buf->safe_dma_addr); |
| 202 | |
| 203 | kfree(buf); |
| 204 | } |
| 205 | |
| 206 | /* ************************************************** */ |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | static inline dma_addr_t |
| 209 | map_single(struct device *dev, void *ptr, size_t size, |
| 210 | enum dma_data_direction dir) |
| 211 | { |
Russell King | ab2c215 | 2007-02-12 10:28:24 +0000 | [diff] [blame] | 212 | struct dmabounce_device_info *device_info = dev->archdata.dmabounce; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | dma_addr_t dma_addr; |
| 214 | int needs_bounce = 0; |
| 215 | |
| 216 | if (device_info) |
| 217 | DO_STATS ( device_info->map_op_count++ ); |
| 218 | |
| 219 | dma_addr = virt_to_dma(dev, ptr); |
| 220 | |
| 221 | if (dev->dma_mask) { |
| 222 | unsigned long mask = *dev->dma_mask; |
| 223 | unsigned long limit; |
| 224 | |
| 225 | limit = (mask + 1) & ~mask; |
| 226 | if (limit && size > limit) { |
| 227 | dev_err(dev, "DMA mapping too big (requested %#x " |
| 228 | "mask %#Lx)\n", size, *dev->dma_mask); |
| 229 | return ~0; |
| 230 | } |
| 231 | |
| 232 | /* |
| 233 | * Figure out if we need to bounce from the DMA mask. |
| 234 | */ |
| 235 | needs_bounce = (dma_addr | (dma_addr + size - 1)) & ~mask; |
| 236 | } |
| 237 | |
| 238 | if (device_info && (needs_bounce || dma_needs_bounce(dev, dma_addr, size))) { |
| 239 | struct safe_buffer *buf; |
| 240 | |
| 241 | buf = alloc_safe_buffer(device_info, ptr, size, dir); |
| 242 | if (buf == 0) { |
| 243 | dev_err(dev, "%s: unable to map unsafe buffer %p!\n", |
| 244 | __func__, ptr); |
| 245 | return 0; |
| 246 | } |
| 247 | |
| 248 | dev_dbg(dev, |
Russell King | 98ed7d4 | 2008-08-10 12:10:49 +0100 | [diff] [blame^] | 249 | "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n", |
| 250 | __func__, buf->ptr, virt_to_dma(dev, buf->ptr), |
| 251 | buf->safe, buf->safe_dma_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
| 253 | if ((dir == DMA_TO_DEVICE) || |
| 254 | (dir == DMA_BIDIRECTIONAL)) { |
| 255 | dev_dbg(dev, "%s: copy unsafe %p to safe %p, size %d\n", |
| 256 | __func__, ptr, buf->safe, size); |
| 257 | memcpy(buf->safe, ptr, size); |
| 258 | } |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 259 | ptr = buf->safe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
| 261 | dma_addr = buf->safe_dma_addr; |
Russell King | 7f8e335 | 2007-02-06 17:29:53 +0000 | [diff] [blame] | 262 | } else { |
| 263 | /* |
| 264 | * We don't need to sync the DMA buffer since |
| 265 | * it was allocated via the coherent allocators. |
| 266 | */ |
Russell King | 84aa462 | 2007-10-09 14:17:01 +0100 | [diff] [blame] | 267 | dma_cache_maint(ptr, size, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | return dma_addr; |
| 271 | } |
| 272 | |
| 273 | static inline void |
| 274 | unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, |
| 275 | enum dma_data_direction dir) |
| 276 | { |
Russell King | ab2c215 | 2007-02-12 10:28:24 +0000 | [diff] [blame] | 277 | struct dmabounce_device_info *device_info = dev->archdata.dmabounce; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | struct safe_buffer *buf = NULL; |
| 279 | |
| 280 | /* |
| 281 | * Trying to unmap an invalid mapping |
| 282 | */ |
FUJITA Tomonori | 8d8bb39 | 2008-07-25 19:44:49 -0700 | [diff] [blame] | 283 | if (dma_mapping_error(dev, dma_addr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | dev_err(dev, "Trying to unmap invalid mapping\n"); |
| 285 | return; |
| 286 | } |
| 287 | |
| 288 | if (device_info) |
| 289 | buf = find_safe_buffer(device_info, dma_addr); |
| 290 | |
| 291 | if (buf) { |
| 292 | BUG_ON(buf->size != size); |
| 293 | |
| 294 | dev_dbg(dev, |
Russell King | 98ed7d4 | 2008-08-10 12:10:49 +0100 | [diff] [blame^] | 295 | "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n", |
| 296 | __func__, buf->ptr, virt_to_dma(dev, buf->ptr), |
| 297 | buf->safe, buf->safe_dma_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | DO_STATS ( device_info->bounce_count++ ); |
| 300 | |
Russell King | 5abc100 | 2005-06-20 12:31:14 +0100 | [diff] [blame] | 301 | if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL) { |
Russell King | 7ae5a76 | 2007-02-06 17:39:31 +0000 | [diff] [blame] | 302 | void *ptr = buf->ptr; |
Russell King | 5abc100 | 2005-06-20 12:31:14 +0100 | [diff] [blame] | 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | dev_dbg(dev, |
| 305 | "%s: copy back safe %p to unsafe %p size %d\n", |
Russell King | 7ae5a76 | 2007-02-06 17:39:31 +0000 | [diff] [blame] | 306 | __func__, buf->safe, ptr, size); |
| 307 | memcpy(ptr, buf->safe, size); |
Russell King | 5abc100 | 2005-06-20 12:31:14 +0100 | [diff] [blame] | 308 | |
| 309 | /* |
| 310 | * DMA buffers must have the same cache properties |
| 311 | * as if they were really used for DMA - which means |
| 312 | * data must be written back to RAM. Note that |
| 313 | * we don't use dmac_flush_range() here for the |
| 314 | * bidirectional case because we know the cache |
| 315 | * lines will be coherent with the data written. |
| 316 | */ |
Russell King | 5abc100 | 2005-06-20 12:31:14 +0100 | [diff] [blame] | 317 | dmac_clean_range(ptr, ptr + size); |
Catalin Marinas | 953233d | 2007-02-05 14:48:08 +0100 | [diff] [blame] | 318 | outer_clean_range(__pa(ptr), __pa(ptr) + size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
| 320 | free_safe_buffer(device_info, buf); |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | static inline void |
| 325 | sync_single(struct device *dev, dma_addr_t dma_addr, size_t size, |
| 326 | enum dma_data_direction dir) |
| 327 | { |
Russell King | ab2c215 | 2007-02-12 10:28:24 +0000 | [diff] [blame] | 328 | struct dmabounce_device_info *device_info = dev->archdata.dmabounce; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | struct safe_buffer *buf = NULL; |
| 330 | |
| 331 | if (device_info) |
| 332 | buf = find_safe_buffer(device_info, dma_addr); |
| 333 | |
| 334 | if (buf) { |
| 335 | /* |
| 336 | * Both of these checks from original code need to be |
| 337 | * commented out b/c some drivers rely on the following: |
| 338 | * |
| 339 | * 1) Drivers may map a large chunk of memory into DMA space |
| 340 | * but only sync a small portion of it. Good example is |
| 341 | * allocating a large buffer, mapping it, and then |
| 342 | * breaking it up into small descriptors. No point |
| 343 | * in syncing the whole buffer if you only have to |
| 344 | * touch one descriptor. |
| 345 | * |
| 346 | * 2) Buffers that are mapped as DMA_BIDIRECTIONAL are |
| 347 | * usually only synced in one dir at a time. |
| 348 | * |
| 349 | * See drivers/net/eepro100.c for examples of both cases. |
| 350 | * |
| 351 | * -ds |
| 352 | * |
| 353 | * BUG_ON(buf->size != size); |
| 354 | * BUG_ON(buf->direction != dir); |
| 355 | */ |
| 356 | |
| 357 | dev_dbg(dev, |
Russell King | 98ed7d4 | 2008-08-10 12:10:49 +0100 | [diff] [blame^] | 358 | "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n", |
| 359 | __func__, buf->ptr, virt_to_dma(dev, buf->ptr), |
| 360 | buf->safe, buf->safe_dma_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | DO_STATS ( device_info->bounce_count++ ); |
| 363 | |
| 364 | switch (dir) { |
| 365 | case DMA_FROM_DEVICE: |
| 366 | dev_dbg(dev, |
| 367 | "%s: copy back safe %p to unsafe %p size %d\n", |
| 368 | __func__, buf->safe, buf->ptr, size); |
| 369 | memcpy(buf->ptr, buf->safe, size); |
| 370 | break; |
| 371 | case DMA_TO_DEVICE: |
| 372 | dev_dbg(dev, |
| 373 | "%s: copy out unsafe %p to safe %p, size %d\n", |
| 374 | __func__,buf->ptr, buf->safe, size); |
| 375 | memcpy(buf->safe, buf->ptr, size); |
| 376 | break; |
| 377 | case DMA_BIDIRECTIONAL: |
| 378 | BUG(); /* is this allowed? what does it mean? */ |
| 379 | default: |
| 380 | BUG(); |
| 381 | } |
Russell King | 7f8e335 | 2007-02-06 17:29:53 +0000 | [diff] [blame] | 382 | /* |
| 383 | * No need to sync the safe buffer - it was allocated |
| 384 | * via the coherent allocators. |
| 385 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } else { |
Russell King | 84aa462 | 2007-10-09 14:17:01 +0100 | [diff] [blame] | 387 | dma_cache_maint(dma_to_virt(dev, dma_addr), size, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | } |
| 389 | } |
| 390 | |
| 391 | /* ************************************************** */ |
| 392 | |
| 393 | /* |
| 394 | * see if a buffer address is in an 'unsafe' range. if it is |
| 395 | * allocate a 'safe' buffer and copy the unsafe buffer into it. |
| 396 | * substitute the safe buffer for the unsafe one. |
| 397 | * (basically move the buffer from an unsafe area to a safe one) |
| 398 | */ |
| 399 | dma_addr_t |
| 400 | dma_map_single(struct device *dev, void *ptr, size_t size, |
| 401 | enum dma_data_direction dir) |
| 402 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | dma_addr_t dma_addr; |
| 404 | |
| 405 | dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n", |
| 406 | __func__, ptr, size, dir); |
| 407 | |
| 408 | BUG_ON(dir == DMA_NONE); |
| 409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | dma_addr = map_single(dev, ptr, size, dir); |
| 411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | return dma_addr; |
| 413 | } |
| 414 | |
| 415 | /* |
| 416 | * see if a mapped address was really a "safe" buffer and if so, copy |
| 417 | * the data from the safe buffer back to the unsafe buffer and free up |
| 418 | * the safe buffer. (basically return things back to the way they |
| 419 | * should be) |
| 420 | */ |
| 421 | |
| 422 | void |
| 423 | dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, |
| 424 | enum dma_data_direction dir) |
| 425 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n", |
| 427 | __func__, (void *) dma_addr, size, dir); |
| 428 | |
| 429 | BUG_ON(dir == DMA_NONE); |
| 430 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | unmap_single(dev, dma_addr, size, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | int |
| 435 | dma_map_sg(struct device *dev, struct scatterlist *sg, int nents, |
| 436 | enum dma_data_direction dir) |
| 437 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | int i; |
| 439 | |
| 440 | dev_dbg(dev, "%s(sg=%p,nents=%d,dir=%x)\n", |
| 441 | __func__, sg, nents, dir); |
| 442 | |
| 443 | BUG_ON(dir == DMA_NONE); |
| 444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | for (i = 0; i < nents; i++, sg++) { |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 446 | struct page *page = sg_page(sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | unsigned int offset = sg->offset; |
| 448 | unsigned int length = sg->length; |
| 449 | void *ptr = page_address(page) + offset; |
| 450 | |
| 451 | sg->dma_address = |
| 452 | map_single(dev, ptr, length, dir); |
| 453 | } |
| 454 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | return nents; |
| 456 | } |
| 457 | |
| 458 | void |
| 459 | dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents, |
| 460 | enum dma_data_direction dir) |
| 461 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | int i; |
| 463 | |
| 464 | dev_dbg(dev, "%s(sg=%p,nents=%d,dir=%x)\n", |
| 465 | __func__, sg, nents, dir); |
| 466 | |
| 467 | BUG_ON(dir == DMA_NONE); |
| 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | for (i = 0; i < nents; i++, sg++) { |
| 470 | dma_addr_t dma_addr = sg->dma_address; |
| 471 | unsigned int length = sg->length; |
| 472 | |
| 473 | unmap_single(dev, dma_addr, length, dir); |
| 474 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | void |
| 478 | dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_addr, size_t size, |
| 479 | enum dma_data_direction dir) |
| 480 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n", |
| 482 | __func__, (void *) dma_addr, size, dir); |
| 483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | sync_single(dev, dma_addr, size, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | void |
| 488 | dma_sync_single_for_device(struct device *dev, dma_addr_t dma_addr, size_t size, |
| 489 | enum dma_data_direction dir) |
| 490 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n", |
| 492 | __func__, (void *) dma_addr, size, dir); |
| 493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | sync_single(dev, dma_addr, size, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | void |
| 498 | dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nents, |
| 499 | enum dma_data_direction dir) |
| 500 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | int i; |
| 502 | |
| 503 | dev_dbg(dev, "%s(sg=%p,nents=%d,dir=%x)\n", |
| 504 | __func__, sg, nents, dir); |
| 505 | |
| 506 | BUG_ON(dir == DMA_NONE); |
| 507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | for (i = 0; i < nents; i++, sg++) { |
| 509 | dma_addr_t dma_addr = sg->dma_address; |
| 510 | unsigned int length = sg->length; |
| 511 | |
| 512 | sync_single(dev, dma_addr, length, dir); |
| 513 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | void |
| 517 | dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nents, |
| 518 | enum dma_data_direction dir) |
| 519 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | int i; |
| 521 | |
| 522 | dev_dbg(dev, "%s(sg=%p,nents=%d,dir=%x)\n", |
| 523 | __func__, sg, nents, dir); |
| 524 | |
| 525 | BUG_ON(dir == DMA_NONE); |
| 526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | for (i = 0; i < nents; i++, sg++) { |
| 528 | dma_addr_t dma_addr = sg->dma_address; |
| 529 | unsigned int length = sg->length; |
| 530 | |
| 531 | sync_single(dev, dma_addr, length, dir); |
| 532 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | } |
| 534 | |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 535 | static int |
| 536 | dmabounce_init_pool(struct dmabounce_pool *pool, struct device *dev, const char *name, |
| 537 | unsigned long size) |
| 538 | { |
| 539 | pool->size = size; |
| 540 | DO_STATS(pool->allocs = 0); |
| 541 | pool->pool = dma_pool_create(name, dev, size, |
| 542 | 0 /* byte alignment */, |
| 543 | 0 /* no page-crossing issues */); |
| 544 | |
| 545 | return pool->pool ? 0 : -ENOMEM; |
| 546 | } |
| 547 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | int |
| 549 | dmabounce_register_dev(struct device *dev, unsigned long small_buffer_size, |
| 550 | unsigned long large_buffer_size) |
| 551 | { |
| 552 | struct dmabounce_device_info *device_info; |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 553 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
| 555 | device_info = kmalloc(sizeof(struct dmabounce_device_info), GFP_ATOMIC); |
| 556 | if (!device_info) { |
Greg Kroah-Hartman | fc3a882 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 557 | dev_err(dev, |
| 558 | "Could not allocated dmabounce_device_info\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | return -ENOMEM; |
| 560 | } |
| 561 | |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 562 | ret = dmabounce_init_pool(&device_info->small, dev, |
| 563 | "small_dmabounce_pool", small_buffer_size); |
| 564 | if (ret) { |
| 565 | dev_err(dev, |
| 566 | "dmabounce: could not allocate DMA pool for %ld byte objects\n", |
| 567 | small_buffer_size); |
| 568 | goto err_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | if (large_buffer_size) { |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 572 | ret = dmabounce_init_pool(&device_info->large, dev, |
| 573 | "large_dmabounce_pool", |
| 574 | large_buffer_size); |
| 575 | if (ret) { |
| 576 | dev_err(dev, |
| 577 | "dmabounce: could not allocate DMA pool for %ld byte objects\n", |
| 578 | large_buffer_size); |
| 579 | goto err_destroy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } |
| 581 | } |
| 582 | |
| 583 | device_info->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | INIT_LIST_HEAD(&device_info->safe_buffers); |
Kevin Hilman | 823588c1 | 2006-06-22 22:27:14 +0100 | [diff] [blame] | 585 | rwlock_init(&device_info->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
| 587 | #ifdef STATS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | device_info->total_allocs = 0; |
| 589 | device_info->map_op_count = 0; |
| 590 | device_info->bounce_count = 0; |
Russell King | 017cc02 | 2007-02-12 10:53:50 +0000 | [diff] [blame] | 591 | device_info->attr_res = device_create_file(dev, &dev_attr_dmabounce_stats); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | #endif |
| 593 | |
Russell King | ab2c215 | 2007-02-12 10:28:24 +0000 | [diff] [blame] | 594 | dev->archdata.dmabounce = device_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
Greg Kroah-Hartman | fc3a882 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 596 | dev_info(dev, "dmabounce: registered device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
| 598 | return 0; |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 599 | |
| 600 | err_destroy: |
| 601 | dma_pool_destroy(device_info->small.pool); |
| 602 | err_free: |
| 603 | kfree(device_info); |
| 604 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | void |
| 608 | dmabounce_unregister_dev(struct device *dev) |
| 609 | { |
Russell King | ab2c215 | 2007-02-12 10:28:24 +0000 | [diff] [blame] | 610 | struct dmabounce_device_info *device_info = dev->archdata.dmabounce; |
| 611 | |
| 612 | dev->archdata.dmabounce = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
| 614 | if (!device_info) { |
Greg Kroah-Hartman | fc3a882 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 615 | dev_warn(dev, |
| 616 | "Never registered with dmabounce but attempting" |
| 617 | "to unregister!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | return; |
| 619 | } |
| 620 | |
| 621 | if (!list_empty(&device_info->safe_buffers)) { |
Greg Kroah-Hartman | fc3a882 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 622 | dev_err(dev, |
| 623 | "Removing from dmabounce with pending buffers!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | BUG(); |
| 625 | } |
| 626 | |
Russell King | cb7610d | 2005-10-30 21:12:08 +0000 | [diff] [blame] | 627 | if (device_info->small.pool) |
| 628 | dma_pool_destroy(device_info->small.pool); |
| 629 | if (device_info->large.pool) |
| 630 | dma_pool_destroy(device_info->large.pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
| 632 | #ifdef STATS |
Russell King | 017cc02 | 2007-02-12 10:53:50 +0000 | [diff] [blame] | 633 | if (device_info->attr_res == 0) |
| 634 | device_remove_file(dev, &dev_attr_dmabounce_stats); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | #endif |
| 636 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | kfree(device_info); |
| 638 | |
Greg Kroah-Hartman | fc3a882 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 639 | dev_info(dev, "dmabounce: device unregistered\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | |
| 643 | EXPORT_SYMBOL(dma_map_single); |
| 644 | EXPORT_SYMBOL(dma_unmap_single); |
| 645 | EXPORT_SYMBOL(dma_map_sg); |
| 646 | EXPORT_SYMBOL(dma_unmap_sg); |
Kevin Hilman | 7321818 | 2006-11-02 23:44:24 +0100 | [diff] [blame] | 647 | EXPORT_SYMBOL(dma_sync_single_for_cpu); |
| 648 | EXPORT_SYMBOL(dma_sync_single_for_device); |
Russell King | fc6e14f | 2008-06-22 15:41:30 +0100 | [diff] [blame] | 649 | EXPORT_SYMBOL(dma_sync_sg_for_cpu); |
| 650 | EXPORT_SYMBOL(dma_sync_sg_for_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | EXPORT_SYMBOL(dmabounce_register_dev); |
| 652 | EXPORT_SYMBOL(dmabounce_unregister_dev); |
| 653 | |
| 654 | MODULE_AUTHOR("Christopher Hoover <ch@hpl.hp.com>, Deepak Saxena <dsaxena@plexity.net>"); |
| 655 | MODULE_DESCRIPTION("Special dma_{map/unmap/dma_sync}_* routines for systems with limited DMA windows"); |
| 656 | MODULE_LICENSE("GPL"); |