blob: 32e9cc6ca7d91d903df09fb1daba0997c77b440e [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;
Russell King0703ed22011-07-04 08:32:21 +010082
83 int (*needs_bounce)(struct device *, dma_addr_t, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#ifdef STATS
Russell King017cc022007-02-12 10:53:50 +000087static ssize_t dmabounce_show(struct device *dev, struct device_attribute *attr,
88 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Russell King017cc022007-02-12 10:53:50 +000090 struct dmabounce_device_info *device_info = dev->archdata.dmabounce;
91 return sprintf(buf, "%lu %lu %lu %lu %lu %lu\n",
92 device_info->small.allocs,
93 device_info->large.allocs,
Russell Kingcb7610d2005-10-30 21:12:08 +000094 device_info->total_allocs - device_info->small.allocs -
95 device_info->large.allocs,
Russell King017cc022007-02-12 10:53:50 +000096 device_info->total_allocs,
97 device_info->map_op_count,
98 device_info->bounce_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
Russell King017cc022007-02-12 10:53:50 +0000100
101static DEVICE_ATTR(dmabounce_stats, 0400, dmabounce_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#endif
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/* allocate a 'safe' buffer and keep track of it */
106static inline struct safe_buffer *
107alloc_safe_buffer(struct dmabounce_device_info *device_info, void *ptr,
Russell Kingcb7610d2005-10-30 21:12:08 +0000108 size_t size, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 struct safe_buffer *buf;
Russell Kingcb7610d2005-10-30 21:12:08 +0000111 struct dmabounce_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 struct device *dev = device_info->dev;
Kevin Hilman823588c2006-06-22 22:27:14 +0100113 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 dev_dbg(dev, "%s(ptr=%p, size=%d, dir=%d)\n",
116 __func__, ptr, size, dir);
117
Russell Kingcb7610d2005-10-30 21:12:08 +0000118 if (size <= device_info->small.size) {
119 pool = &device_info->small;
120 } else if (size <= device_info->large.size) {
121 pool = &device_info->large;
122 } else {
123 pool = NULL;
124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 buf = kmalloc(sizeof(struct safe_buffer), GFP_ATOMIC);
127 if (buf == NULL) {
128 dev_warn(dev, "%s: kmalloc failed\n", __func__);
129 return NULL;
130 }
131
Russell Kingcb7610d2005-10-30 21:12:08 +0000132 buf->ptr = ptr;
133 buf->size = size;
134 buf->direction = dir;
135 buf->pool = pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Russell Kingcb7610d2005-10-30 21:12:08 +0000137 if (pool) {
138 buf->safe = dma_pool_alloc(pool->pool, GFP_ATOMIC,
139 &buf->safe_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 } else {
Russell Kingcb7610d2005-10-30 21:12:08 +0000141 buf->safe = dma_alloc_coherent(dev, size, &buf->safe_dma_addr,
142 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144
Russell Kingcb7610d2005-10-30 21:12:08 +0000145 if (buf->safe == NULL) {
146 dev_warn(dev,
147 "%s: could not alloc dma memory (size=%d)\n",
148 __func__, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 kfree(buf);
150 return NULL;
151 }
152
153#ifdef STATS
Russell Kingcb7610d2005-10-30 21:12:08 +0000154 if (pool)
155 pool->allocs++;
156 device_info->total_allocs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#endif
158
Kevin Hilman823588c2006-06-22 22:27:14 +0100159 write_lock_irqsave(&device_info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 list_add(&buf->node, &device_info->safe_buffers);
Kevin Hilman823588c2006-06-22 22:27:14 +0100161 write_unlock_irqrestore(&device_info->lock, flags);
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return buf;
164}
165
166/* determine if a buffer is from our "safe" pool */
167static inline struct safe_buffer *
168find_safe_buffer(struct dmabounce_device_info *device_info, dma_addr_t safe_dma_addr)
169{
Kevin Hilmane2785f02006-08-18 15:32:14 +0100170 struct safe_buffer *b, *rb = NULL;
Kevin Hilman823588c2006-06-22 22:27:14 +0100171 unsigned long flags;
172
173 read_lock_irqsave(&device_info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Russell Kingb46a58f2005-06-22 21:25:58 +0100175 list_for_each_entry(b, &device_info->safe_buffers, node)
Marek Szyprowski2d0d5ba2012-02-10 19:55:20 +0100176 if (b->safe_dma_addr <= safe_dma_addr &&
177 b->safe_dma_addr + b->size > safe_dma_addr) {
Kevin Hilmane2785f02006-08-18 15:32:14 +0100178 rb = b;
Kevin Hilman823588c2006-06-22 22:27:14 +0100179 break;
Kevin Hilmane2785f02006-08-18 15:32:14 +0100180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Kevin Hilman823588c2006-06-22 22:27:14 +0100182 read_unlock_irqrestore(&device_info->lock, flags);
Kevin Hilmane2785f02006-08-18 15:32:14 +0100183 return rb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186static inline void
187free_safe_buffer(struct dmabounce_device_info *device_info, struct safe_buffer *buf)
188{
Kevin Hilman823588c2006-06-22 22:27:14 +0100189 unsigned long flags;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 dev_dbg(device_info->dev, "%s(buf=%p)\n", __func__, buf);
192
Kevin Hilman823588c2006-06-22 22:27:14 +0100193 write_lock_irqsave(&device_info->lock, flags);
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 list_del(&buf->node);
196
Kevin Hilman823588c2006-06-22 22:27:14 +0100197 write_unlock_irqrestore(&device_info->lock, flags);
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (buf->pool)
Russell Kingcb7610d2005-10-30 21:12:08 +0000200 dma_pool_free(buf->pool->pool, buf->safe, buf->safe_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 else
202 dma_free_coherent(device_info->dev, buf->size, buf->safe,
203 buf->safe_dma_addr);
204
205 kfree(buf);
206}
207
208/* ************************************************** */
209
Russell King125ab122008-09-25 22:16:22 +0100210static struct safe_buffer *find_safe_buffer_dev(struct device *dev,
211 dma_addr_t dma_addr, const char *where)
212{
213 if (!dev || !dev->archdata.dmabounce)
214 return NULL;
215 if (dma_mapping_error(dev, dma_addr)) {
Russell Kinge2f521e2011-07-03 23:53:13 +0100216 dev_err(dev, "Trying to %s invalid mapping\n", where);
Russell King125ab122008-09-25 22:16:22 +0100217 return NULL;
218 }
219 return find_safe_buffer(dev->archdata.dmabounce, dma_addr);
220}
221
Russell King23bc9872011-07-03 22:28:32 +0100222static int needs_bounce(struct device *dev, dma_addr_t dma_addr, size_t size)
223{
224 if (!dev || !dev->archdata.dmabounce)
225 return 0;
226
227 if (dev->dma_mask) {
228 unsigned long limit, mask = *dev->dma_mask;
229
230 limit = (mask + 1) & ~mask;
231 if (limit && size > limit) {
232 dev_err(dev, "DMA mapping too big (requested %#x "
233 "mask %#Lx)\n", size, *dev->dma_mask);
234 return -E2BIG;
235 }
236
237 /* Figure out if we need to bounce from the DMA mask. */
238 if ((dma_addr | (dma_addr + size - 1)) & ~mask)
239 return 1;
240 }
241
Russell King0703ed22011-07-04 08:32:21 +0100242 return !!dev->archdata.dmabounce->needs_bounce(dev, dma_addr, size);
Russell King23bc9872011-07-03 22:28:32 +0100243}
244
Russell King3216a972008-09-25 22:23:31 +0100245static inline dma_addr_t map_single(struct device *dev, void *ptr, size_t size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 enum dma_data_direction dir)
247{
Russell Kingab2c2152007-02-12 10:28:24 +0000248 struct dmabounce_device_info *device_info = dev->archdata.dmabounce;
Russell Kingdd3641f2011-07-03 22:39:43 +0100249 struct safe_buffer *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (device_info)
252 DO_STATS ( device_info->map_op_count++ );
253
Russell Kingdd3641f2011-07-03 22:39:43 +0100254 buf = alloc_safe_buffer(device_info, ptr, size, dir);
Russell Kingdfa322f2011-07-03 23:54:34 +0100255 if (buf == NULL) {
Russell Kingdd3641f2011-07-03 22:39:43 +0100256 dev_err(dev, "%s: unable to map unsafe buffer %p!\n",
257 __func__, ptr);
Marek Szyprowski1dc8f002012-02-29 14:45:28 +0100258 return DMA_ERROR_CODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260
Russell Kingdd3641f2011-07-03 22:39:43 +0100261 dev_dbg(dev, "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n",
262 __func__, buf->ptr, virt_to_dma(dev, buf->ptr),
263 buf->safe, buf->safe_dma_addr);
264
265 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL) {
266 dev_dbg(dev, "%s: copy unsafe %p to safe %p, size %d\n",
267 __func__, ptr, buf->safe, size);
268 memcpy(buf->safe, ptr, size);
269 }
270
271 return buf->safe_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
Russell Kingdd3641f2011-07-03 22:39:43 +0100274static inline void unmap_single(struct device *dev, struct safe_buffer *buf,
Russell King3216a972008-09-25 22:23:31 +0100275 size_t size, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Russell Kingdd3641f2011-07-03 22:39:43 +0100277 BUG_ON(buf->size != size);
278 BUG_ON(buf->direction != dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Russell Kingdd3641f2011-07-03 22:39:43 +0100280 dev_dbg(dev, "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n",
281 __func__, buf->ptr, virt_to_dma(dev, buf->ptr),
282 buf->safe, buf->safe_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Russell Kingdd3641f2011-07-03 22:39:43 +0100284 DO_STATS(dev->archdata.dmabounce->bounce_count++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Russell Kingdd3641f2011-07-03 22:39:43 +0100286 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL) {
287 void *ptr = buf->ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Russell Kingdd3641f2011-07-03 22:39:43 +0100289 dev_dbg(dev, "%s: copy back safe %p to unsafe %p size %d\n",
290 __func__, buf->safe, ptr, size);
291 memcpy(ptr, buf->safe, size);
Russell King5abc1002005-06-20 12:31:14 +0100292
Russell Kingdd3641f2011-07-03 22:39:43 +0100293 /*
294 * Since we may have written to a page cache page,
295 * we need to ensure that the data will be coherent
296 * with user mappings.
297 */
298 __cpuc_flush_dcache_area(ptr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
Russell Kingdd3641f2011-07-03 22:39:43 +0100300 free_safe_buffer(dev->archdata.dmabounce, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303/* ************************************************** */
304
305/*
306 * see if a buffer address is in an 'unsafe' range. if it is
307 * allocate a 'safe' buffer and copy the unsafe buffer into it.
308 * substitute the safe buffer for the unsafe one.
309 * (basically move the buffer from an unsafe area to a safe one)
310 */
Russell King24056f52011-01-03 11:29:28 +0000311dma_addr_t __dma_map_page(struct device *dev, struct page *page,
Russell King3216a972008-09-25 22:23:31 +0100312 unsigned long offset, size_t size, enum dma_data_direction dir)
Russell King56f55f82008-09-25 20:59:12 +0100313{
Russell Kingdd3641f2011-07-03 22:39:43 +0100314 dma_addr_t dma_addr;
315 int ret;
316
Russell King56f55f82008-09-25 20:59:12 +0100317 dev_dbg(dev, "%s(page=%p,off=%#lx,size=%zx,dir=%x)\n",
318 __func__, page, offset, size, dir);
319
Russell Kingdd3641f2011-07-03 22:39:43 +0100320 dma_addr = pfn_to_dma(dev, page_to_pfn(page)) + offset;
321
322 ret = needs_bounce(dev, dma_addr, size);
323 if (ret < 0)
Marek Szyprowski1dc8f002012-02-29 14:45:28 +0100324 return DMA_ERROR_CODE;
Russell Kingdd3641f2011-07-03 22:39:43 +0100325
326 if (ret == 0) {
327 __dma_page_cpu_to_dev(page, offset, size, dir);
328 return dma_addr;
329 }
330
Nicolas Pitre58edb512008-09-09 15:54:13 -0400331 if (PageHighMem(page)) {
Russell Kingdd3641f2011-07-03 22:39:43 +0100332 dev_err(dev, "DMA buffer bouncing of HIGHMEM pages is not supported\n");
Marek Szyprowski1dc8f002012-02-29 14:45:28 +0100333 return DMA_ERROR_CODE;
Nicolas Pitre58edb512008-09-09 15:54:13 -0400334 }
335
Russell King56f55f82008-09-25 20:59:12 +0100336 return map_single(dev, page_address(page) + offset, size, dir);
337}
Russell King24056f52011-01-03 11:29:28 +0000338EXPORT_SYMBOL(__dma_map_page);
Russell King56f55f82008-09-25 20:59:12 +0100339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/*
341 * see if a mapped address was really a "safe" buffer and if so, copy
342 * the data from the safe buffer back to the unsafe buffer and free up
343 * the safe buffer. (basically return things back to the way they
344 * should be)
345 */
Russell King24056f52011-01-03 11:29:28 +0000346void __dma_unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
Russell King3216a972008-09-25 22:23:31 +0100347 enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Russell Kingdd3641f2011-07-03 22:39:43 +0100349 struct safe_buffer *buf;
350
Russell Kingc289b2e2011-07-03 23:56:17 +0100351 dev_dbg(dev, "%s(dma=%#x,size=%d,dir=%x)\n",
352 __func__, dma_addr, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Russell Kingdd3641f2011-07-03 22:39:43 +0100354 buf = find_safe_buffer_dev(dev, dma_addr, __func__);
355 if (!buf) {
356 __dma_page_dev_to_cpu(pfn_to_page(dma_to_pfn(dev, dma_addr)),
357 dma_addr & ~PAGE_MASK, size, dir);
358 return;
359 }
360
361 unmap_single(dev, buf, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
Russell King24056f52011-01-03 11:29:28 +0000363EXPORT_SYMBOL(__dma_unmap_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Russell King2638b4d2008-09-25 21:38:41 +0100365int dmabounce_sync_for_cpu(struct device *dev, dma_addr_t addr,
Marek Szyprowski2d0d5ba2012-02-10 19:55:20 +0100366 size_t sz, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Russell King125ab122008-09-25 22:16:22 +0100368 struct safe_buffer *buf;
Marek Szyprowski2d0d5ba2012-02-10 19:55:20 +0100369 unsigned long off;
Russell King125ab122008-09-25 22:16:22 +0100370
371 dev_dbg(dev, "%s(dma=%#x,off=%#lx,sz=%zx,dir=%x)\n",
Russell King2638b4d2008-09-25 21:38:41 +0100372 __func__, addr, off, sz, dir);
Russell King125ab122008-09-25 22:16:22 +0100373
374 buf = find_safe_buffer_dev(dev, addr, __func__);
375 if (!buf)
376 return 1;
377
Marek Szyprowski2d0d5ba2012-02-10 19:55:20 +0100378 off = addr - buf->safe_dma_addr;
379
Russell King0e18b5d2008-09-29 13:48:17 +0100380 BUG_ON(buf->direction != dir);
381
Russell King125ab122008-09-25 22:16:22 +0100382 dev_dbg(dev, "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n",
383 __func__, buf->ptr, virt_to_dma(dev, buf->ptr),
384 buf->safe, buf->safe_dma_addr);
385
386 DO_STATS(dev->archdata.dmabounce->bounce_count++);
387
388 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL) {
389 dev_dbg(dev, "%s: copy back safe %p to unsafe %p size %d\n",
390 __func__, buf->safe + off, buf->ptr + off, sz);
391 memcpy(buf->ptr + off, buf->safe + off, sz);
392 }
393 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
Russell King2638b4d2008-09-25 21:38:41 +0100395EXPORT_SYMBOL(dmabounce_sync_for_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Russell King2638b4d2008-09-25 21:38:41 +0100397int dmabounce_sync_for_device(struct device *dev, dma_addr_t addr,
Marek Szyprowski2d0d5ba2012-02-10 19:55:20 +0100398 size_t sz, enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Russell King125ab122008-09-25 22:16:22 +0100400 struct safe_buffer *buf;
Marek Szyprowski2d0d5ba2012-02-10 19:55:20 +0100401 unsigned long off;
Russell King125ab122008-09-25 22:16:22 +0100402
403 dev_dbg(dev, "%s(dma=%#x,off=%#lx,sz=%zx,dir=%x)\n",
Russell King2638b4d2008-09-25 21:38:41 +0100404 __func__, addr, off, sz, dir);
Russell King125ab122008-09-25 22:16:22 +0100405
406 buf = find_safe_buffer_dev(dev, addr, __func__);
407 if (!buf)
408 return 1;
409
Marek Szyprowski2d0d5ba2012-02-10 19:55:20 +0100410 off = addr - buf->safe_dma_addr;
411
Russell King0e18b5d2008-09-29 13:48:17 +0100412 BUG_ON(buf->direction != dir);
413
Russell King125ab122008-09-25 22:16:22 +0100414 dev_dbg(dev, "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n",
415 __func__, buf->ptr, virt_to_dma(dev, buf->ptr),
416 buf->safe, buf->safe_dma_addr);
417
418 DO_STATS(dev->archdata.dmabounce->bounce_count++);
419
420 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL) {
421 dev_dbg(dev, "%s: copy out unsafe %p to safe %p, size %d\n",
422 __func__,buf->ptr + off, buf->safe + off, sz);
423 memcpy(buf->safe + off, buf->ptr + off, sz);
424 }
425 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
Russell King2638b4d2008-09-25 21:38:41 +0100427EXPORT_SYMBOL(dmabounce_sync_for_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Russell King3216a972008-09-25 22:23:31 +0100429static int dmabounce_init_pool(struct dmabounce_pool *pool, struct device *dev,
430 const char *name, unsigned long size)
Russell Kingcb7610d2005-10-30 21:12:08 +0000431{
432 pool->size = size;
433 DO_STATS(pool->allocs = 0);
434 pool->pool = dma_pool_create(name, dev, size,
435 0 /* byte alignment */,
436 0 /* no page-crossing issues */);
437
438 return pool->pool ? 0 : -ENOMEM;
439}
440
Russell King3216a972008-09-25 22:23:31 +0100441int dmabounce_register_dev(struct device *dev, unsigned long small_buffer_size,
Russell King0703ed22011-07-04 08:32:21 +0100442 unsigned long large_buffer_size,
443 int (*needs_bounce_fn)(struct device *, dma_addr_t, size_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 struct dmabounce_device_info *device_info;
Russell Kingcb7610d2005-10-30 21:12:08 +0000446 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 device_info = kmalloc(sizeof(struct dmabounce_device_info), GFP_ATOMIC);
449 if (!device_info) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200450 dev_err(dev,
451 "Could not allocated dmabounce_device_info\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return -ENOMEM;
453 }
454
Russell Kingcb7610d2005-10-30 21:12:08 +0000455 ret = dmabounce_init_pool(&device_info->small, dev,
456 "small_dmabounce_pool", small_buffer_size);
457 if (ret) {
458 dev_err(dev,
459 "dmabounce: could not allocate DMA pool for %ld byte objects\n",
460 small_buffer_size);
461 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
464 if (large_buffer_size) {
Russell Kingcb7610d2005-10-30 21:12:08 +0000465 ret = dmabounce_init_pool(&device_info->large, dev,
466 "large_dmabounce_pool",
467 large_buffer_size);
468 if (ret) {
469 dev_err(dev,
470 "dmabounce: could not allocate DMA pool for %ld byte objects\n",
471 large_buffer_size);
472 goto err_destroy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474 }
475
476 device_info->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 INIT_LIST_HEAD(&device_info->safe_buffers);
Kevin Hilman823588c2006-06-22 22:27:14 +0100478 rwlock_init(&device_info->lock);
Russell King0703ed22011-07-04 08:32:21 +0100479 device_info->needs_bounce = needs_bounce_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481#ifdef STATS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 device_info->total_allocs = 0;
483 device_info->map_op_count = 0;
484 device_info->bounce_count = 0;
Russell King017cc022007-02-12 10:53:50 +0000485 device_info->attr_res = device_create_file(dev, &dev_attr_dmabounce_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486#endif
487
Russell Kingab2c2152007-02-12 10:28:24 +0000488 dev->archdata.dmabounce = device_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200490 dev_info(dev, "dmabounce: registered device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 return 0;
Russell Kingcb7610d2005-10-30 21:12:08 +0000493
494 err_destroy:
495 dma_pool_destroy(device_info->small.pool);
496 err_free:
497 kfree(device_info);
498 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
Russell King3216a972008-09-25 22:23:31 +0100500EXPORT_SYMBOL(dmabounce_register_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Russell King3216a972008-09-25 22:23:31 +0100502void dmabounce_unregister_dev(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Russell Kingab2c2152007-02-12 10:28:24 +0000504 struct dmabounce_device_info *device_info = dev->archdata.dmabounce;
505
506 dev->archdata.dmabounce = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 if (!device_info) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200509 dev_warn(dev,
510 "Never registered with dmabounce but attempting"
511 "to unregister!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return;
513 }
514
515 if (!list_empty(&device_info->safe_buffers)) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200516 dev_err(dev,
517 "Removing from dmabounce with pending buffers!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 BUG();
519 }
520
Russell Kingcb7610d2005-10-30 21:12:08 +0000521 if (device_info->small.pool)
522 dma_pool_destroy(device_info->small.pool);
523 if (device_info->large.pool)
524 dma_pool_destroy(device_info->large.pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526#ifdef STATS
Russell King017cc022007-02-12 10:53:50 +0000527 if (device_info->attr_res == 0)
528 device_remove_file(dev, &dev_attr_dmabounce_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529#endif
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 kfree(device_info);
532
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200533 dev_info(dev, "dmabounce: device unregistered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535EXPORT_SYMBOL(dmabounce_unregister_dev);
536
537MODULE_AUTHOR("Christopher Hoover <ch@hpl.hp.com>, Deepak Saxena <dsaxena@plexity.net>");
538MODULE_DESCRIPTION("Special dma_{map/unmap/dma_sync}_* routines for systems with limited DMA windows");
539MODULE_LICENSE("GPL");