blob: 9367e33fbd1822d92f55302a38fb872982e2fb7d [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
Kevin Cernekee3807ef32009-04-23 17:25:12 -070023static inline unsigned long dma_addr_to_virt(struct device *dev,
24 dma_addr_t dma_addr)
Franck Bui-Huuc9d06962007-03-19 17:36:42 +010025{
Kevin Cernekee3807ef32009-04-23 17:25:12 -070026 unsigned long addr = plat_dma_addr_to_phys(dev, dma_addr);
Franck Bui-Huuc9d06962007-03-19 17:36:42 +010027
28 return (unsigned long)phys_to_virt(addr);
29}
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*
32 * Warning on the terminology - Linux calls an uncached area coherent;
33 * MIPS terminology calls memory areas with hardware maintained coherency
34 * coherent.
35 */
36
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000037static inline int cpu_is_noncoherent_r10000(struct device *dev)
38{
39 return !plat_device_is_coherent(dev) &&
Ralf Baechle10cc3522007-10-11 23:46:15 +010040 (current_cpu_type() == CPU_R10000 ||
41 current_cpu_type() == CPU_R12000);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000042}
43
Ralf Baechlecce335ae2007-11-03 02:05:43 +000044static gfp_t massage_gfp_flags(const struct device *dev, gfp_t gfp)
45{
46 /* ignore region specifiers */
47 gfp &= ~(__GFP_DMA | __GFP_DMA32 | __GFP_HIGHMEM);
48
Thomas Bogendoerfer32016712007-12-30 12:45:40 +010049#ifdef CONFIG_ZONE_DMA
Ralf Baechlecce335ae2007-11-03 02:05:43 +000050 if (dev == NULL)
51 gfp |= __GFP_DMA;
52 else if (dev->coherent_dma_mask < DMA_BIT_MASK(24))
53 gfp |= __GFP_DMA;
54 else
55#endif
56#ifdef CONFIG_ZONE_DMA32
57 if (dev->coherent_dma_mask < DMA_BIT_MASK(32))
58 gfp |= __GFP_DMA32;
59 else
60#endif
61 ;
62
63 /* Don't invoke OOM killer */
64 gfp |= __GFP_NORETRY;
65
66 return gfp;
67}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069void *dma_alloc_noncoherent(struct device *dev, size_t size,
Al Viro185a8ff2005-10-21 03:21:23 -040070 dma_addr_t * dma_handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 void *ret;
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000073
Ralf Baechlecce335ae2007-11-03 02:05:43 +000074 gfp = massage_gfp_flags(dev, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 ret = (void *) __get_free_pages(gfp, get_order(size));
77
78 if (ret != NULL) {
79 memset(ret, 0, size);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000080 *dma_handle = plat_map_dma_mem(dev, ret, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
82
83 return ret;
84}
85
86EXPORT_SYMBOL(dma_alloc_noncoherent);
87
88void *dma_alloc_coherent(struct device *dev, size_t size,
Al Viro185a8ff2005-10-21 03:21:23 -040089 dma_addr_t * dma_handle, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 void *ret;
92
Yoichi Yuasaf8ac04252009-06-04 00:16:04 +090093 if (dma_alloc_from_coherent(dev, size, dma_handle, &ret))
94 return ret;
95
Ralf Baechlecce335ae2007-11-03 02:05:43 +000096 gfp = massage_gfp_flags(dev, gfp);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000097
Ralf Baechle9a88cbb2006-11-16 02:56:12 +000098 ret = (void *) __get_free_pages(gfp, get_order(size));
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (ret) {
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000101 memset(ret, 0, size);
102 *dma_handle = plat_map_dma_mem(dev, ret, size);
103
104 if (!plat_device_is_coherent(dev)) {
105 dma_cache_wback_inv((unsigned long) ret, size);
106 ret = UNCAC_ADDR(ret);
107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109
110 return ret;
111}
112
113EXPORT_SYMBOL(dma_alloc_coherent);
114
115void dma_free_noncoherent(struct device *dev, size_t size, void *vaddr,
116 dma_addr_t dma_handle)
117{
Kevin Cernekeed3f634b2009-04-23 17:03:43 -0700118 plat_unmap_dma_mem(dev, dma_handle, size, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 free_pages((unsigned long) vaddr, get_order(size));
120}
121
122EXPORT_SYMBOL(dma_free_noncoherent);
123
124void dma_free_coherent(struct device *dev, size_t size, void *vaddr,
125 dma_addr_t dma_handle)
126{
127 unsigned long addr = (unsigned long) vaddr;
Yoichi Yuasaf8ac04252009-06-04 00:16:04 +0900128 int order = get_order(size);
129
130 if (dma_release_from_coherent(dev, order, vaddr))
131 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Kevin Cernekeed3f634b2009-04-23 17:03:43 -0700133 plat_unmap_dma_mem(dev, dma_handle, size, DMA_BIDIRECTIONAL);
David Daney11531ac2008-12-10 18:14:45 -0800134
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000135 if (!plat_device_is_coherent(dev))
136 addr = CAC_ADDR(addr);
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 free_pages(addr, get_order(size));
139}
140
141EXPORT_SYMBOL(dma_free_coherent);
142
143static inline void __dma_sync(unsigned long addr, size_t size,
144 enum dma_data_direction direction)
145{
146 switch (direction) {
147 case DMA_TO_DEVICE:
148 dma_cache_wback(addr, size);
149 break;
150
151 case DMA_FROM_DEVICE:
152 dma_cache_inv(addr, size);
153 break;
154
155 case DMA_BIDIRECTIONAL:
156 dma_cache_wback_inv(addr, size);
157 break;
158
159 default:
160 BUG();
161 }
162}
163
164dma_addr_t dma_map_single(struct device *dev, void *ptr, size_t size,
165 enum dma_data_direction direction)
166{
167 unsigned long addr = (unsigned long) ptr;
168
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000169 if (!plat_device_is_coherent(dev))
170 __dma_sync(addr, size, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000172 return plat_map_dma_mem(dev, ptr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175EXPORT_SYMBOL(dma_map_single);
176
177void dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
178 enum dma_data_direction direction)
179{
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000180 if (cpu_is_noncoherent_r10000(dev))
Kevin Cernekee3807ef32009-04-23 17:25:12 -0700181 __dma_sync(dma_addr_to_virt(dev, dma_addr), size,
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000182 direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Kevin Cernekeed3f634b2009-04-23 17:03:43 -0700184 plat_unmap_dma_mem(dev, dma_addr, size, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
187EXPORT_SYMBOL(dma_unmap_single);
188
189int dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
190 enum dma_data_direction direction)
191{
192 int i;
193
194 BUG_ON(direction == DMA_NONE);
195
196 for (i = 0; i < nents; i++, sg++) {
197 unsigned long addr;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700198
Jens Axboe58b053e2007-10-22 20:02:46 +0200199 addr = (unsigned long) sg_virt(sg);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000200 if (!plat_device_is_coherent(dev) && addr)
Jens Axboe58b053e2007-10-22 20:02:46 +0200201 __dma_sync(addr, sg->length, direction);
Thomas Bogendoerferfbd56042007-05-18 14:32:36 +0200202 sg->dma_address = plat_map_dma_mem(dev,
Jens Axboe58b053e2007-10-22 20:02:46 +0200203 (void *)addr, sg->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
206 return nents;
207}
208
209EXPORT_SYMBOL(dma_map_sg);
210
211dma_addr_t dma_map_page(struct device *dev, struct page *page,
212 unsigned long offset, size_t size, enum dma_data_direction direction)
213{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 BUG_ON(direction == DMA_NONE);
215
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000216 if (!plat_device_is_coherent(dev)) {
217 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000219 addr = (unsigned long) page_address(page) + offset;
Atsushi Nemoto4f29c052009-01-23 00:42:11 +0900220 __dma_sync(addr, size, direction);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000221 }
222
223 return plat_map_dma_mem_page(dev, page) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226EXPORT_SYMBOL(dma_map_page);
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228void dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nhwentries,
229 enum dma_data_direction direction)
230{
231 unsigned long addr;
232 int i;
233
234 BUG_ON(direction == DMA_NONE);
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 for (i = 0; i < nhwentries; i++, sg++) {
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000237 if (!plat_device_is_coherent(dev) &&
238 direction != DMA_TO_DEVICE) {
Jens Axboe58b053e2007-10-22 20:02:46 +0200239 addr = (unsigned long) sg_virt(sg);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000240 if (addr)
Jens Axboe58b053e2007-10-22 20:02:46 +0200241 __dma_sync(addr, sg->length, direction);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000242 }
Kevin Cernekeed3f634b2009-04-23 17:03:43 -0700243 plat_unmap_dma_mem(dev, sg->dma_address, sg->length, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245}
246
247EXPORT_SYMBOL(dma_unmap_sg);
248
249void dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
250 size_t size, enum dma_data_direction direction)
251{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 BUG_ON(direction == DMA_NONE);
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700253
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000254 if (cpu_is_noncoherent_r10000(dev)) {
255 unsigned long addr;
256
Kevin Cernekee3807ef32009-04-23 17:25:12 -0700257 addr = dma_addr_to_virt(dev, dma_handle);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000258 __dma_sync(addr, size, direction);
259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262EXPORT_SYMBOL(dma_sync_single_for_cpu);
263
264void dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle,
265 size_t size, enum dma_data_direction direction)
266{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 BUG_ON(direction == DMA_NONE);
268
David Daney843aef42008-12-11 15:33:36 -0800269 plat_extra_sync_for_device(dev);
Thomas Bogendoerfer9b43fb62007-02-23 19:58:48 +0100270 if (!plat_device_is_coherent(dev)) {
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000271 unsigned long addr;
272
Kevin Cernekee3807ef32009-04-23 17:25:12 -0700273 addr = dma_addr_to_virt(dev, dma_handle);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000274 __dma_sync(addr, size, direction);
275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278EXPORT_SYMBOL(dma_sync_single_for_device);
279
280void dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle,
281 unsigned long offset, size_t size, enum dma_data_direction direction)
282{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 BUG_ON(direction == DMA_NONE);
284
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000285 if (cpu_is_noncoherent_r10000(dev)) {
286 unsigned long addr;
287
Kevin Cernekee3807ef32009-04-23 17:25:12 -0700288 addr = dma_addr_to_virt(dev, dma_handle);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000289 __dma_sync(addr + offset, size, direction);
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293EXPORT_SYMBOL(dma_sync_single_range_for_cpu);
294
295void dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle,
296 unsigned long offset, size_t size, enum dma_data_direction direction)
297{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 BUG_ON(direction == DMA_NONE);
299
David Daney843aef42008-12-11 15:33:36 -0800300 plat_extra_sync_for_device(dev);
Thomas Bogendoerfer9b43fb62007-02-23 19:58:48 +0100301 if (!plat_device_is_coherent(dev)) {
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000302 unsigned long addr;
303
Kevin Cernekee3807ef32009-04-23 17:25:12 -0700304 addr = dma_addr_to_virt(dev, dma_handle);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000305 __dma_sync(addr + offset, size, direction);
306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309EXPORT_SYMBOL(dma_sync_single_range_for_device);
310
311void dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nelems,
312 enum dma_data_direction direction)
313{
314 int i;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 BUG_ON(direction == DMA_NONE);
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* Make sure that gcc doesn't leave the empty loop body. */
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000319 for (i = 0; i < nelems; i++, sg++) {
Ralf Baechle5b648a92007-03-02 11:42:11 +0000320 if (cpu_is_noncoherent_r10000(dev))
Jens Axboe58b053e2007-10-22 20:02:46 +0200321 __dma_sync((unsigned long)page_address(sg_page(sg)),
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000322 sg->length, direction);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326EXPORT_SYMBOL(dma_sync_sg_for_cpu);
327
328void dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems,
329 enum dma_data_direction direction)
330{
331 int i;
332
333 BUG_ON(direction == DMA_NONE);
334
335 /* Make sure that gcc doesn't leave the empty loop body. */
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000336 for (i = 0; i < nelems; i++, sg++) {
337 if (!plat_device_is_coherent(dev))
Jens Axboe58b053e2007-10-22 20:02:46 +0200338 __dma_sync((unsigned long)page_address(sg_page(sg)),
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000339 sg->length, direction);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343EXPORT_SYMBOL(dma_sync_sg_for_device);
344
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700345int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
David Daney843aef42008-12-11 15:33:36 -0800347 return plat_dma_mapping_error(dev, dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350EXPORT_SYMBOL(dma_mapping_error);
351
352int dma_supported(struct device *dev, u64 mask)
353{
David Daney843aef42008-12-11 15:33:36 -0800354 return plat_dma_supported(dev, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
357EXPORT_SYMBOL(dma_supported);
358
Ralf Baechlef67637e2006-12-06 20:38:54 -0800359int dma_is_consistent(struct device *dev, dma_addr_t dma_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000361 return plat_device_is_coherent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
364EXPORT_SYMBOL(dma_is_consistent);
365
Ralf Baechled3fa72e2006-12-06 20:38:56 -0800366void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000367 enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000369 BUG_ON(direction == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
David Daney843aef42008-12-11 15:33:36 -0800371 plat_extra_sync_for_device(dev);
Ralf Baechle9a88cbb2006-11-16 02:56:12 +0000372 if (!plat_device_is_coherent(dev))
Thomas Bogendoerferc7c6b392007-11-27 19:31:33 +0100373 __dma_sync((unsigned long)vaddr, size, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376EXPORT_SYMBOL(dma_cache_sync);