blob: cc0a932bbea90780f659becc4ee7d93087ab61cf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Hovland3a2916a2006-03-22 21:02:11 +00008 * RAM, the remainder of memory is at the top and the DMA memory
Simon Arlott6cbdc8c2007-05-11 20:40:30 +01009 * can be marked as ZONE_DMA. Anything beyond that such as discontiguous
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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>
Nicolas Pitre58edb512008-09-09 15:54:13 -040028#include <linux/page-flags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/device.h>
30#include <linux/dma-mapping.h>
31#include <linux/dmapool.h>
32#include <linux/list.h>
FUJITA Tomonori9f2326b2007-10-23 09:11:41 +020033#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Russell King14eb75b2005-06-20 16:56:08 +010035#include <asm/cacheflush.h>
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#undef STATS
Russell Kingcb7610d2005-10-30 21:12:08 +000038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#ifdef STATS
40#define DO_STATS(X) do { X ; } while (0)
41#else
42#define DO_STATS(X) do { } while (0)
43#endif
44
45/* ************************************************** */
46
47struct safe_buffer {
48 struct list_head node;
49
50 /* original request */
51 void *ptr;
52 size_t size;
53 int direction;
54
55 /* safe buffer info */
Russell Kingcb7610d2005-10-30 21:12:08 +000056 struct dmabounce_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 void *safe;
58 dma_addr_t safe_dma_addr;
59};
60
Russell Kingcb7610d2005-10-30 21:12:08 +000061struct dmabounce_pool {
62 unsigned long size;
63 struct dma_pool *pool;
64#ifdef STATS
65 unsigned long allocs;
66#endif
67};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069struct dmabounce_device_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 struct list_head safe_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#ifdef STATS
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 unsigned long total_allocs;
74 unsigned long map_op_count;
75 unsigned long bounce_count;
Russell King017cc022007-02-12 10:53:50 +000076 int attr_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#endif
Russell Kingcb7610d2005-10-30 21:12:08 +000078 struct dmabounce_pool small;
79 struct dmabounce_pool large;
Kevin Hilman823588c2006-06-22 22:27:14 +010080
81 rwlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#ifdef STATS
Russell King017cc022007-02-12 10:53:50 +000085static ssize_t dmabounce_show(struct device *dev, struct device_attribute *attr,
86 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Russell King017cc022007-02-12 10:53:50 +000088 struct dmabounce_device_info *device_info = dev->archdata.dmabounce;
89 return sprintf(buf, "%lu %lu %lu %lu %lu %lu\n",
90 device_info->small.allocs,
91 device_info->large.allocs,
Russell Kingcb7610d2005-10-30 21:12:08 +000092 device_info->total_allocs - device_info->small.allocs -
93 device_info->large.allocs,
Russell King017cc022007-02-12 10:53:50 +000094 device_info->total_allocs,
95 device_info->map_op_count,
96 device_info->bounce_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
Russell King017cc022007-02-12 10:53:50 +000098
99static DEVICE_ATTR(dmabounce_stats, 0400, dmabounce_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#endif
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/* allocate a 'safe' buffer and keep track of it */
104static inline struct safe_buffer *
105alloc_safe_buffer(struct dmabounce_device_info *device_info, void *ptr,
Russell Kingcb7610d2005-10-30 21:12:08 +0000106 size_t size, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 struct safe_buffer *buf;
Russell Kingcb7610d2005-10-30 21:12:08 +0000109 struct dmabounce_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 struct device *dev = device_info->dev;
Kevin Hilman823588c2006-06-22 22:27:14 +0100111 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 dev_dbg(dev, "%s(ptr=%p, size=%d, dir=%d)\n",
114 __func__, ptr, size, dir);
115
Russell Kingcb7610d2005-10-30 21:12:08 +0000116 if (size <= device_info->small.size) {
117 pool = &device_info->small;
118 } else if (size <= device_info->large.size) {
119 pool = &device_info->large;
120 } else {
121 pool = NULL;
122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 buf = kmalloc(sizeof(struct safe_buffer), GFP_ATOMIC);
125 if (buf == NULL) {
126 dev_warn(dev, "%s: kmalloc failed\n", __func__);
127 return NULL;
128 }
129
Russell Kingcb7610d2005-10-30 21:12:08 +0000130 buf->ptr = ptr;
131 buf->size = size;
132 buf->direction = dir;
133 buf->pool = pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Russell Kingcb7610d2005-10-30 21:12:08 +0000135 if (pool) {
136 buf->safe = dma_pool_alloc(pool->pool, GFP_ATOMIC,
137 &buf->safe_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 } else {
Russell Kingcb7610d2005-10-30 21:12:08 +0000139 buf->safe = dma_alloc_coherent(dev, size, &buf->safe_dma_addr,
140 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142
Russell Kingcb7610d2005-10-30 21:12:08 +0000143 if (buf->safe == NULL) {
144 dev_warn(dev,
145 "%s: could not alloc dma memory (size=%d)\n",
146 __func__, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 kfree(buf);
148 return NULL;
149 }
150
151#ifdef STATS
Russell Kingcb7610d2005-10-30 21:12:08 +0000152 if (pool)
153 pool->allocs++;
154 device_info->total_allocs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#endif
156
Kevin Hilman823588c2006-06-22 22:27:14 +0100157 write_lock_irqsave(&device_info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 list_add(&buf->node, &device_info->safe_buffers);
Kevin Hilman823588c2006-06-22 22:27:14 +0100159 write_unlock_irqrestore(&device_info->lock, flags);
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return buf;
162}
163
164/* determine if a buffer is from our "safe" pool */
165static inline struct safe_buffer *
166find_safe_buffer(struct dmabounce_device_info *device_info, dma_addr_t safe_dma_addr)
167{
Kevin Hilmane2785f02006-08-18 15:32:14 +0100168 struct safe_buffer *b, *rb = NULL;
Kevin Hilman823588c2006-06-22 22:27:14 +0100169 unsigned long flags;
170
171 read_lock_irqsave(&device_info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Russell Kingb46a58fd2005-06-22 21:25:58 +0100173 list_for_each_entry(b, &device_info->safe_buffers, node)
Kevin Hilmane2785f02006-08-18 15:32:14 +0100174 if (b->safe_dma_addr == safe_dma_addr) {
175 rb = b;
Kevin Hilman823588c2006-06-22 22:27:14 +0100176 break;
Kevin Hilmane2785f02006-08-18 15:32:14 +0100177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Kevin Hilman823588c2006-06-22 22:27:14 +0100179 read_unlock_irqrestore(&device_info->lock, flags);
Kevin Hilmane2785f02006-08-18 15:32:14 +0100180 return rb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
183static inline void
184free_safe_buffer(struct dmabounce_device_info *device_info, struct safe_buffer *buf)
185{
Kevin Hilman823588c2006-06-22 22:27:14 +0100186 unsigned long flags;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 dev_dbg(device_info->dev, "%s(buf=%p)\n", __func__, buf);
189
Kevin Hilman823588c2006-06-22 22:27:14 +0100190 write_lock_irqsave(&device_info->lock, flags);
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 list_del(&buf->node);
193
Kevin Hilman823588c2006-06-22 22:27:14 +0100194 write_unlock_irqrestore(&device_info->lock, flags);
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (buf->pool)
Russell Kingcb7610d2005-10-30 21:12:08 +0000197 dma_pool_free(buf->pool->pool, buf->safe, buf->safe_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 else
199 dma_free_coherent(device_info->dev, buf->size, buf->safe,
200 buf->safe_dma_addr);
201
202 kfree(buf);
203}
204
205/* ************************************************** */
206
Russell King125ab122008-09-25 22:16:22 +0100207static struct safe_buffer *find_safe_buffer_dev(struct device *dev,
208 dma_addr_t dma_addr, const char *where)
209{
210 if (!dev || !dev->archdata.dmabounce)
211 return NULL;
212 if (dma_mapping_error(dev, dma_addr)) {
213 if (dev)
214 dev_err(dev, "Trying to %s invalid mapping\n", where);
215 else
216 pr_err("unknown device: Trying to %s invalid mapping\n", where);
217 return NULL;
218 }
219 return find_safe_buffer(dev->archdata.dmabounce, dma_addr);
220}
221
Russell King3216a972008-09-25 22:23:31 +0100222static inline dma_addr_t map_single(struct device *dev, void *ptr, size_t size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 enum dma_data_direction dir)
224{
Russell Kingab2c2152007-02-12 10:28:24 +0000225 struct dmabounce_device_info *device_info = dev->archdata.dmabounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 dma_addr_t dma_addr;
227 int needs_bounce = 0;
228
229 if (device_info)
230 DO_STATS ( device_info->map_op_count++ );
231
232 dma_addr = virt_to_dma(dev, ptr);
233
234 if (dev->dma_mask) {
235 unsigned long mask = *dev->dma_mask;
236 unsigned long limit;
237
238 limit = (mask + 1) & ~mask;
239 if (limit && size > limit) {
240 dev_err(dev, "DMA mapping too big (requested %#x "
241 "mask %#Lx)\n", size, *dev->dma_mask);
242 return ~0;
243 }
244
245 /*
246 * Figure out if we need to bounce from the DMA mask.
247 */
248 needs_bounce = (dma_addr | (dma_addr + size - 1)) & ~mask;
249 }
250
251 if (device_info && (needs_bounce || dma_needs_bounce(dev, dma_addr, size))) {
252 struct safe_buffer *buf;
253
254 buf = alloc_safe_buffer(device_info, ptr, size, dir);
255 if (buf == 0) {
256 dev_err(dev, "%s: unable to map unsafe buffer %p!\n",
257 __func__, ptr);
258 return 0;
259 }
260
261 dev_dbg(dev,
Russell King98ed7d42008-08-10 12:10:49 +0100262 "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n",
263 __func__, buf->ptr, virt_to_dma(dev, buf->ptr),
264 buf->safe, buf->safe_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if ((dir == DMA_TO_DEVICE) ||
267 (dir == DMA_BIDIRECTIONAL)) {
268 dev_dbg(dev, "%s: copy unsafe %p to safe %p, size %d\n",
269 __func__, ptr, buf->safe, size);
270 memcpy(buf->safe, ptr, size);
271 }
Russell Kingcb7610d2005-10-30 21:12:08 +0000272 ptr = buf->safe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 dma_addr = buf->safe_dma_addr;
Russell King7f8e3352007-02-06 17:29:53 +0000275 } else {
276 /*
277 * We don't need to sync the DMA buffer since
278 * it was allocated via the coherent allocators.
279 */
Russell King18eabe22009-10-31 16:52:16 +0000280 __dma_single_cpu_to_dev(ptr, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282
283 return dma_addr;
284}
285
Russell King3216a972008-09-25 22:23:31 +0100286static inline void unmap_single(struct device *dev, dma_addr_t dma_addr,
287 size_t size, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Russell King125ab122008-09-25 22:16:22 +0100289 struct safe_buffer *buf = find_safe_buffer_dev(dev, dma_addr, "unmap");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 if (buf) {
292 BUG_ON(buf->size != size);
Russell King0e18b5d2008-09-29 13:48:17 +0100293 BUG_ON(buf->direction != dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 dev_dbg(dev,
Russell King98ed7d42008-08-10 12:10:49 +0100296 "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n",
297 __func__, buf->ptr, virt_to_dma(dev, buf->ptr),
298 buf->safe, buf->safe_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Russell King125ab122008-09-25 22:16:22 +0100300 DO_STATS(dev->archdata.dmabounce->bounce_count++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Russell King5abc1002005-06-20 12:31:14 +0100302 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL) {
Russell King7ae5a762007-02-06 17:39:31 +0000303 void *ptr = buf->ptr;
Russell King5abc1002005-06-20 12:31:14 +0100304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 dev_dbg(dev,
306 "%s: copy back safe %p to unsafe %p size %d\n",
Russell King7ae5a762007-02-06 17:39:31 +0000307 __func__, buf->safe, ptr, size);
308 memcpy(ptr, buf->safe, size);
Russell King5abc1002005-06-20 12:31:14 +0100309
310 /*
Russell Kingf74f7e52009-11-26 12:31:15 +0000311 * Since we may have written to a page cache page,
312 * we need to ensure that the data will be coherent
313 * with user mappings.
Russell King5abc1002005-06-20 12:31:14 +0100314 */
Mike Rapoportd9fd3ab2009-12-22 07:31:04 +0100315 __cpuc_flush_dcache_area(ptr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
Russell King125ab122008-09-25 22:16:22 +0100317 free_safe_buffer(dev->archdata.dmabounce, buf);
Russell King18eabe22009-10-31 16:52:16 +0000318 } else {
319 __dma_single_dev_to_cpu(dma_to_virt(dev, dma_addr), size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321}
322
323/* ************************************************** */
324
325/*
326 * see if a buffer address is in an 'unsafe' range. if it is
327 * allocate a 'safe' buffer and copy the unsafe buffer into it.
328 * substitute the safe buffer for the unsafe one.
329 * (basically move the buffer from an unsafe area to a safe one)
330 */
Russell King3216a972008-09-25 22:23:31 +0100331dma_addr_t dma_map_single(struct device *dev, void *ptr, size_t size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 enum dma_data_direction dir)
333{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n",
335 __func__, ptr, size, dir);
336
Russell King0e18b5d2008-09-29 13:48:17 +0100337 BUG_ON(!valid_dma_direction(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Russell King3216a972008-09-25 22:23:31 +0100339 return map_single(dev, ptr, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
Russell King3216a972008-09-25 22:23:31 +0100341EXPORT_SYMBOL(dma_map_single);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Russell King29cb8d02009-10-31 16:10:10 +0000343/*
344 * see if a mapped address was really a "safe" buffer and if so, copy
345 * the data from the safe buffer back to the unsafe buffer and free up
346 * the safe buffer. (basically return things back to the way they
347 * should be)
348 */
349void dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
350 enum dma_data_direction dir)
351{
352 dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n",
353 __func__, (void *) dma_addr, size, dir);
354
355 unmap_single(dev, dma_addr, size, dir);
356}
357EXPORT_SYMBOL(dma_unmap_single);
358
Russell King56f55f82008-09-25 20:59:12 +0100359dma_addr_t dma_map_page(struct device *dev, struct page *page,
Russell King3216a972008-09-25 22:23:31 +0100360 unsigned long offset, size_t size, enum dma_data_direction dir)
Russell King56f55f82008-09-25 20:59:12 +0100361{
362 dev_dbg(dev, "%s(page=%p,off=%#lx,size=%zx,dir=%x)\n",
363 __func__, page, offset, size, dir);
364
Russell King0e18b5d2008-09-29 13:48:17 +0100365 BUG_ON(!valid_dma_direction(dir));
Russell King56f55f82008-09-25 20:59:12 +0100366
Nicolas Pitre58edb512008-09-09 15:54:13 -0400367 if (PageHighMem(page)) {
368 dev_err(dev, "DMA buffer bouncing of HIGHMEM pages "
369 "is not supported\n");
370 return ~0;
371 }
372
Russell King56f55f82008-09-25 20:59:12 +0100373 return map_single(dev, page_address(page) + offset, size, dir);
374}
375EXPORT_SYMBOL(dma_map_page);
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/*
378 * see if a mapped address was really a "safe" buffer and if so, copy
379 * the data from the safe buffer back to the unsafe buffer and free up
380 * the safe buffer. (basically return things back to the way they
381 * should be)
382 */
Russell King29cb8d02009-10-31 16:10:10 +0000383void dma_unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
Russell King3216a972008-09-25 22:23:31 +0100384 enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n",
387 __func__, (void *) dma_addr, size, dir);
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 unmap_single(dev, dma_addr, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
Russell King29cb8d02009-10-31 16:10:10 +0000391EXPORT_SYMBOL(dma_unmap_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Russell King2638b4d2008-09-25 21:38:41 +0100393int dmabounce_sync_for_cpu(struct device *dev, dma_addr_t addr,
394 unsigned long off, size_t sz, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Russell King125ab122008-09-25 22:16:22 +0100396 struct safe_buffer *buf;
397
398 dev_dbg(dev, "%s(dma=%#x,off=%#lx,sz=%zx,dir=%x)\n",
Russell King2638b4d2008-09-25 21:38:41 +0100399 __func__, addr, off, sz, dir);
Russell King125ab122008-09-25 22:16:22 +0100400
401 buf = find_safe_buffer_dev(dev, addr, __func__);
402 if (!buf)
403 return 1;
404
Russell King0e18b5d2008-09-29 13:48:17 +0100405 BUG_ON(buf->direction != dir);
406
Russell King125ab122008-09-25 22:16:22 +0100407 dev_dbg(dev, "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n",
408 __func__, buf->ptr, virt_to_dma(dev, buf->ptr),
409 buf->safe, buf->safe_dma_addr);
410
411 DO_STATS(dev->archdata.dmabounce->bounce_count++);
412
413 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL) {
414 dev_dbg(dev, "%s: copy back safe %p to unsafe %p size %d\n",
415 __func__, buf->safe + off, buf->ptr + off, sz);
416 memcpy(buf->ptr + off, buf->safe + off, sz);
417 }
418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
Russell King2638b4d2008-09-25 21:38:41 +0100420EXPORT_SYMBOL(dmabounce_sync_for_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Russell King2638b4d2008-09-25 21:38:41 +0100422int dmabounce_sync_for_device(struct device *dev, dma_addr_t addr,
423 unsigned long off, size_t sz, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Russell King125ab122008-09-25 22:16:22 +0100425 struct safe_buffer *buf;
426
427 dev_dbg(dev, "%s(dma=%#x,off=%#lx,sz=%zx,dir=%x)\n",
Russell King2638b4d2008-09-25 21:38:41 +0100428 __func__, addr, off, sz, dir);
Russell King125ab122008-09-25 22:16:22 +0100429
430 buf = find_safe_buffer_dev(dev, addr, __func__);
431 if (!buf)
432 return 1;
433
Russell King0e18b5d2008-09-29 13:48:17 +0100434 BUG_ON(buf->direction != dir);
435
Russell King125ab122008-09-25 22:16:22 +0100436 dev_dbg(dev, "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n",
437 __func__, buf->ptr, virt_to_dma(dev, buf->ptr),
438 buf->safe, buf->safe_dma_addr);
439
440 DO_STATS(dev->archdata.dmabounce->bounce_count++);
441
442 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL) {
443 dev_dbg(dev, "%s: copy out unsafe %p to safe %p, size %d\n",
444 __func__,buf->ptr + off, buf->safe + off, sz);
445 memcpy(buf->safe + off, buf->ptr + off, sz);
446 }
447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
Russell King2638b4d2008-09-25 21:38:41 +0100449EXPORT_SYMBOL(dmabounce_sync_for_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Russell King3216a972008-09-25 22:23:31 +0100451static int dmabounce_init_pool(struct dmabounce_pool *pool, struct device *dev,
452 const char *name, unsigned long size)
Russell Kingcb7610d2005-10-30 21:12:08 +0000453{
454 pool->size = size;
455 DO_STATS(pool->allocs = 0);
456 pool->pool = dma_pool_create(name, dev, size,
457 0 /* byte alignment */,
458 0 /* no page-crossing issues */);
459
460 return pool->pool ? 0 : -ENOMEM;
461}
462
Russell King3216a972008-09-25 22:23:31 +0100463int dmabounce_register_dev(struct device *dev, unsigned long small_buffer_size,
464 unsigned long large_buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 struct dmabounce_device_info *device_info;
Russell Kingcb7610d2005-10-30 21:12:08 +0000467 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 device_info = kmalloc(sizeof(struct dmabounce_device_info), GFP_ATOMIC);
470 if (!device_info) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200471 dev_err(dev,
472 "Could not allocated dmabounce_device_info\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return -ENOMEM;
474 }
475
Russell Kingcb7610d2005-10-30 21:12:08 +0000476 ret = dmabounce_init_pool(&device_info->small, dev,
477 "small_dmabounce_pool", small_buffer_size);
478 if (ret) {
479 dev_err(dev,
480 "dmabounce: could not allocate DMA pool for %ld byte objects\n",
481 small_buffer_size);
482 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
485 if (large_buffer_size) {
Russell Kingcb7610d2005-10-30 21:12:08 +0000486 ret = dmabounce_init_pool(&device_info->large, dev,
487 "large_dmabounce_pool",
488 large_buffer_size);
489 if (ret) {
490 dev_err(dev,
491 "dmabounce: could not allocate DMA pool for %ld byte objects\n",
492 large_buffer_size);
493 goto err_destroy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495 }
496
497 device_info->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 INIT_LIST_HEAD(&device_info->safe_buffers);
Kevin Hilman823588c2006-06-22 22:27:14 +0100499 rwlock_init(&device_info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501#ifdef STATS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 device_info->total_allocs = 0;
503 device_info->map_op_count = 0;
504 device_info->bounce_count = 0;
Russell King017cc022007-02-12 10:53:50 +0000505 device_info->attr_res = device_create_file(dev, &dev_attr_dmabounce_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506#endif
507
Russell Kingab2c2152007-02-12 10:28:24 +0000508 dev->archdata.dmabounce = device_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200510 dev_info(dev, "dmabounce: registered device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 return 0;
Russell Kingcb7610d2005-10-30 21:12:08 +0000513
514 err_destroy:
515 dma_pool_destroy(device_info->small.pool);
516 err_free:
517 kfree(device_info);
518 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
Russell King3216a972008-09-25 22:23:31 +0100520EXPORT_SYMBOL(dmabounce_register_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Russell King3216a972008-09-25 22:23:31 +0100522void dmabounce_unregister_dev(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Russell Kingab2c2152007-02-12 10:28:24 +0000524 struct dmabounce_device_info *device_info = dev->archdata.dmabounce;
525
526 dev->archdata.dmabounce = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 if (!device_info) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200529 dev_warn(dev,
530 "Never registered with dmabounce but attempting"
531 "to unregister!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return;
533 }
534
535 if (!list_empty(&device_info->safe_buffers)) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200536 dev_err(dev,
537 "Removing from dmabounce with pending buffers!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 BUG();
539 }
540
Russell Kingcb7610d2005-10-30 21:12:08 +0000541 if (device_info->small.pool)
542 dma_pool_destroy(device_info->small.pool);
543 if (device_info->large.pool)
544 dma_pool_destroy(device_info->large.pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546#ifdef STATS
Russell King017cc022007-02-12 10:53:50 +0000547 if (device_info->attr_res == 0)
548 device_remove_file(dev, &dev_attr_dmabounce_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#endif
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 kfree(device_info);
552
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200553 dev_info(dev, "dmabounce: device unregistered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555EXPORT_SYMBOL(dmabounce_unregister_dev);
556
557MODULE_AUTHOR("Christopher Hoover <ch@hpl.hp.com>, Deepak Saxena <dsaxena@plexity.net>");
558MODULE_DESCRIPTION("Special dma_{map/unmap/dma_sync}_* routines for systems with limited DMA windows");
559MODULE_LICENSE("GPL");