blob: e6708b3ad343f478e15a7d1102a90df2c7f61841 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Baechle9a88cbb2006-11-16 02:56:12 +00007 * Copyright (C) 2000, 2001, 06 Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * swiped from i386, and cloned for MIPS by Geert, polished by Ralf.
9 */
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/types.h>
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000012#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/mm.h>
14#include <linux/module.h>
Jens Axboe4fcc47a2007-10-23 12:32:34 +020015#include <linux/scatterlist.h>
Ralf Baechle6e86b0b2007-10-29 19:35:33 +000016#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/cache.h>
19#include <asm/io.h>
20
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000021#include <dma-coherence.h>
22
Franck Bui-Huuc9d06962007-03-19 17:36:42 +010023static 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 Torvalds1da177e2005-04-16 15:20:36 -070030/*
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 Baechle9a88cbb2006-11-16 02:56:12 +000036static inline int cpu_is_noncoherent_r10000(struct device *dev)
37{
38 return !plat_device_is_coherent(dev) &&
Ralf Baechle10cc3522007-10-11 23:46:15 +010039 (current_cpu_type() == CPU_R10000 ||
40 current_cpu_type() == CPU_R12000);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000041}
42
Ralf Baechlecce335a2007-11-03 02:05:43 +000043static 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 Bogendoerfer32016712007-12-30 12:45:40 +010048#ifdef CONFIG_ZONE_DMA
Ralf Baechlecce335a2007-11-03 02:05:43 +000049 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 Torvalds1da177e2005-04-16 15:20:36 -070068void *dma_alloc_noncoherent(struct device *dev, size_t size,
Al Viro185a8ff2005-10-21 03:21:23 -040069 dma_addr_t * dma_handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 void *ret;
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000072
Ralf Baechlecce335a2007-11-03 02:05:43 +000073 gfp = massage_gfp_flags(dev, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 ret = (void *) __get_free_pages(gfp, get_order(size));
76
77 if (ret != NULL) {
78 memset(ret, 0, size);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000079 *dma_handle = plat_map_dma_mem(dev, ret, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
81
82 return ret;
83}
84
85EXPORT_SYMBOL(dma_alloc_noncoherent);
86
87void *dma_alloc_coherent(struct device *dev, size_t size,
Al Viro185a8ff2005-10-21 03:21:23 -040088 dma_addr_t * dma_handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 void *ret;
91
Ralf Baechlecce335a2007-11-03 02:05:43 +000092 gfp = massage_gfp_flags(dev, gfp);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000093
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000094 ret = (void *) __get_free_pages(gfp, get_order(size));
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (ret) {
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000097 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 Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
106 return ret;
107}
108
109EXPORT_SYMBOL(dma_alloc_coherent);
110
111void dma_free_noncoherent(struct device *dev, size_t size, void *vaddr,
112 dma_addr_t dma_handle)
113{
David Daney11531ac2008-12-10 18:14:45 -0800114 plat_unmap_dma_mem(dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 free_pages((unsigned long) vaddr, get_order(size));
116}
117
118EXPORT_SYMBOL(dma_free_noncoherent);
119
120void 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 Daney11531ac2008-12-10 18:14:45 -0800125 plat_unmap_dma_mem(dma_handle);
126
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000127 if (!plat_device_is_coherent(dev))
128 addr = CAC_ADDR(addr);
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 free_pages(addr, get_order(size));
131}
132
133EXPORT_SYMBOL(dma_free_coherent);
134
135static 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
156dma_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 Baechle9a88cbb2006-11-16 02:56:12 +0000161 if (!plat_device_is_coherent(dev))
162 __dma_sync(addr, size, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000164 return plat_map_dma_mem(dev, ptr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
167EXPORT_SYMBOL(dma_map_single);
168
169void dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
170 enum dma_data_direction direction)
171{
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000172 if (cpu_is_noncoherent_r10000(dev))
Franck Bui-Huuc9d06962007-03-19 17:36:42 +0100173 __dma_sync(dma_addr_to_virt(dma_addr), size,
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000174 direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000176 plat_unmap_dma_mem(dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179EXPORT_SYMBOL(dma_unmap_single);
180
181int 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 Baechle42a3b4f2005-09-03 15:56:17 -0700190
Jens Axboe58b053e2007-10-22 20:02:46 +0200191 addr = (unsigned long) sg_virt(sg);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000192 if (!plat_device_is_coherent(dev) && addr)
Jens Axboe58b053e2007-10-22 20:02:46 +0200193 __dma_sync(addr, sg->length, direction);
Thomas Bogendoerferfbd56042007-05-18 14:32:36 +0200194 sg->dma_address = plat_map_dma_mem(dev,
Jens Axboe58b053e2007-10-22 20:02:46 +0200195 (void *)addr, sg->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197
198 return nents;
199}
200
201EXPORT_SYMBOL(dma_map_sg);
202
203dma_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 Torvalds1da177e2005-04-16 15:20:36 -0700206 BUG_ON(direction == DMA_NONE);
207
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000208 if (!plat_device_is_coherent(dev)) {
209 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000211 addr = (unsigned long) page_address(page) + offset;
212 dma_cache_wback_inv(addr, size);
213 }
214
215 return plat_map_dma_mem_page(dev, page) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218EXPORT_SYMBOL(dma_map_page);
219
220void dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size,
221 enum dma_data_direction direction)
222{
223 BUG_ON(direction == DMA_NONE);
224
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000225 if (!plat_device_is_coherent(dev) && direction != DMA_TO_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 unsigned long addr;
227
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000228 addr = plat_dma_addr_to_phys(dma_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 dma_cache_wback_inv(addr, size);
230 }
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000231
232 plat_unmap_dma_mem(dma_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235EXPORT_SYMBOL(dma_unmap_page);
236
237void dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nhwentries,
238 enum dma_data_direction direction)
239{
240 unsigned long addr;
241 int i;
242
243 BUG_ON(direction == DMA_NONE);
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 for (i = 0; i < nhwentries; i++, sg++) {
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000246 if (!plat_device_is_coherent(dev) &&
247 direction != DMA_TO_DEVICE) {
Jens Axboe58b053e2007-10-22 20:02:46 +0200248 addr = (unsigned long) sg_virt(sg);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000249 if (addr)
Jens Axboe58b053e2007-10-22 20:02:46 +0200250 __dma_sync(addr, sg->length, direction);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000251 }
252 plat_unmap_dma_mem(sg->dma_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254}
255
256EXPORT_SYMBOL(dma_unmap_sg);
257
258void dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
259 size_t size, enum dma_data_direction direction)
260{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 BUG_ON(direction == DMA_NONE);
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700262
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000263 if (cpu_is_noncoherent_r10000(dev)) {
264 unsigned long addr;
265
Franck Bui-Huuc9d06962007-03-19 17:36:42 +0100266 addr = dma_addr_to_virt(dma_handle);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000267 __dma_sync(addr, size, direction);
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271EXPORT_SYMBOL(dma_sync_single_for_cpu);
272
273void dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle,
274 size_t size, enum dma_data_direction direction)
275{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 BUG_ON(direction == DMA_NONE);
277
Thomas Bogendoerfer9b43fb62007-02-23 19:58:48 +0100278 if (!plat_device_is_coherent(dev)) {
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000279 unsigned long addr;
280
Franck Bui-Huuc9d06962007-03-19 17:36:42 +0100281 addr = dma_addr_to_virt(dma_handle);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000282 __dma_sync(addr, size, direction);
283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286EXPORT_SYMBOL(dma_sync_single_for_device);
287
288void dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle,
289 unsigned long offset, size_t size, enum dma_data_direction direction)
290{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 BUG_ON(direction == DMA_NONE);
292
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000293 if (cpu_is_noncoherent_r10000(dev)) {
294 unsigned long addr;
295
Franck Bui-Huuc9d06962007-03-19 17:36:42 +0100296 addr = dma_addr_to_virt(dma_handle);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000297 __dma_sync(addr + offset, size, direction);
298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
301EXPORT_SYMBOL(dma_sync_single_range_for_cpu);
302
303void dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle,
304 unsigned long offset, size_t size, enum dma_data_direction direction)
305{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 BUG_ON(direction == DMA_NONE);
307
Thomas Bogendoerfer9b43fb62007-02-23 19:58:48 +0100308 if (!plat_device_is_coherent(dev)) {
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000309 unsigned long addr;
310
Franck Bui-Huuc9d06962007-03-19 17:36:42 +0100311 addr = dma_addr_to_virt(dma_handle);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000312 __dma_sync(addr + offset, size, direction);
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316EXPORT_SYMBOL(dma_sync_single_range_for_device);
317
318void dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nelems,
319 enum dma_data_direction direction)
320{
321 int i;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 BUG_ON(direction == DMA_NONE);
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 /* Make sure that gcc doesn't leave the empty loop body. */
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000326 for (i = 0; i < nelems; i++, sg++) {
Ralf Baechle5b648a92007-03-02 11:42:11 +0000327 if (cpu_is_noncoherent_r10000(dev))
Jens Axboe58b053e2007-10-22 20:02:46 +0200328 __dma_sync((unsigned long)page_address(sg_page(sg)),
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000329 sg->length, direction);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333EXPORT_SYMBOL(dma_sync_sg_for_cpu);
334
335void dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems,
336 enum dma_data_direction direction)
337{
338 int i;
339
340 BUG_ON(direction == DMA_NONE);
341
342 /* Make sure that gcc doesn't leave the empty loop body. */
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000343 for (i = 0; i < nelems; i++, sg++) {
344 if (!plat_device_is_coherent(dev))
Jens Axboe58b053e2007-10-22 20:02:46 +0200345 __dma_sync((unsigned long)page_address(sg_page(sg)),
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000346 sg->length, direction);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350EXPORT_SYMBOL(dma_sync_sg_for_device);
351
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700352int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 return 0;
355}
356
357EXPORT_SYMBOL(dma_mapping_error);
358
359int dma_supported(struct device *dev, u64 mask)
360{
361 /*
362 * we fall back to GFP_DMA when the mask isn't all 1s,
363 * so we can't guarantee allocations that must be
364 * within a tighter range than GFP_DMA..
365 */
Ralf Baechlecce335a2007-11-03 02:05:43 +0000366 if (mask < DMA_BIT_MASK(24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return 0;
368
369 return 1;
370}
371
372EXPORT_SYMBOL(dma_supported);
373
Ralf Baechlef67637e2006-12-06 20:38:54 -0800374int dma_is_consistent(struct device *dev, dma_addr_t dma_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000376 return plat_device_is_coherent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379EXPORT_SYMBOL(dma_is_consistent);
380
Ralf Baechled3fa72e2006-12-06 20:38:56 -0800381void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000382 enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000384 BUG_ON(direction == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000386 if (!plat_device_is_coherent(dev))
Thomas Bogendoerferc7c6b392007-11-27 19:31:33 +0100387 __dma_sync((unsigned long)vaddr, size, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
390EXPORT_SYMBOL(dma_cache_sync);