blob: 4a5397bfce276dc11caa1956ac9eebeab4e0c128 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_DMA_MAPPING_H
2#define _ASM_X86_DMA_MAPPING_H
Glauber Costa6f536632008-03-25 18:36:20 -03003
4/*
5 * IOMMU interface. See Documentation/DMA-mapping.txt and DMA-API.txt for
6 * documentation.
7 */
8
9#include <linux/scatterlist.h>
10#include <asm/io.h>
11#include <asm/swiotlb.h>
Joerg Roedel6c505ce2008-08-19 16:32:45 +020012#include <asm-generic/dma-coherent.h>
Glauber Costa6f536632008-03-25 18:36:20 -030013
Glauber Costa7c183412008-03-25 18:36:36 -030014extern dma_addr_t bad_dma_address;
Glauber Costab7107a32008-03-25 18:36:39 -030015extern int iommu_merge;
Joerg Roedel6c505ce2008-08-19 16:32:45 +020016extern struct device x86_dma_fallback_dev;
Glauber Costab7107a32008-03-25 18:36:39 -030017extern int panic_on_overflow;
Glauber Costa7c183412008-03-25 18:36:36 -030018
Glauber Costa6f536632008-03-25 18:36:20 -030019struct dma_mapping_ops {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070020 int (*mapping_error)(struct device *dev,
21 dma_addr_t dma_addr);
Glauber Costa6f536632008-03-25 18:36:20 -030022 void* (*alloc_coherent)(struct device *dev, size_t size,
23 dma_addr_t *dma_handle, gfp_t gfp);
24 void (*free_coherent)(struct device *dev, size_t size,
25 void *vaddr, dma_addr_t dma_handle);
Ingo Molnar2be62142008-04-19 19:19:56 +020026 dma_addr_t (*map_single)(struct device *hwdev, phys_addr_t ptr,
Glauber Costa6f536632008-03-25 18:36:20 -030027 size_t size, int direction);
Glauber Costa6f536632008-03-25 18:36:20 -030028 void (*unmap_single)(struct device *dev, dma_addr_t addr,
29 size_t size, int direction);
30 void (*sync_single_for_cpu)(struct device *hwdev,
31 dma_addr_t dma_handle, size_t size,
32 int direction);
33 void (*sync_single_for_device)(struct device *hwdev,
34 dma_addr_t dma_handle, size_t size,
35 int direction);
36 void (*sync_single_range_for_cpu)(struct device *hwdev,
37 dma_addr_t dma_handle, unsigned long offset,
38 size_t size, int direction);
39 void (*sync_single_range_for_device)(struct device *hwdev,
40 dma_addr_t dma_handle, unsigned long offset,
41 size_t size, int direction);
42 void (*sync_sg_for_cpu)(struct device *hwdev,
43 struct scatterlist *sg, int nelems,
44 int direction);
45 void (*sync_sg_for_device)(struct device *hwdev,
46 struct scatterlist *sg, int nelems,
47 int direction);
48 int (*map_sg)(struct device *hwdev, struct scatterlist *sg,
49 int nents, int direction);
50 void (*unmap_sg)(struct device *hwdev,
51 struct scatterlist *sg, int nents,
52 int direction);
53 int (*dma_supported)(struct device *hwdev, u64 mask);
54 int is_phys;
55};
56
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070057extern struct dma_mapping_ops *dma_ops;
Glauber Costa22456b92008-03-25 18:36:21 -030058
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070059static inline struct dma_mapping_ops *get_dma_ops(struct device *dev)
Glauber Costac786df02008-03-25 18:36:37 -030060{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070061#ifdef CONFIG_X86_32
62 return dma_ops;
63#else
64 if (unlikely(!dev) || !dev->archdata.dma_ops)
65 return dma_ops;
66 else
67 return dev->archdata.dma_ops;
H. Peter Anvin1965aae2008-10-22 22:26:29 -070068#endif /* _ASM_X86_DMA_MAPPING_H */
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070069}
70
71/* Make sure we keep the same behaviour */
72static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
73{
74#ifdef CONFIG_X86_32
75 return 0;
76#else
77 struct dma_mapping_ops *ops = get_dma_ops(dev);
78 if (ops->mapping_error)
79 return ops->mapping_error(dev, dma_addr);
Glauber Costac786df02008-03-25 18:36:37 -030080
81 return (dma_addr == bad_dma_address);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070082#endif
Glauber Costac786df02008-03-25 18:36:37 -030083}
84
Glauber Costa8d396de2008-03-25 18:36:31 -030085#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
86#define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
Joerg Roedel6c505ce2008-08-19 16:32:45 +020087#define dma_is_consistent(d, h) (1)
Glauber Costa8d396de2008-03-25 18:36:31 -030088
Glauber Costa802c1f62008-03-25 18:36:34 -030089extern int dma_supported(struct device *hwdev, u64 mask);
90extern int dma_set_mask(struct device *dev, u64 mask);
91
FUJITA Tomonori9f6ac572008-09-24 20:48:35 +090092extern void *dma_generic_alloc_coherent(struct device *dev, size_t size,
93 dma_addr_t *dma_addr, gfp_t flag);
94
Glauber Costa22456b92008-03-25 18:36:21 -030095static inline dma_addr_t
96dma_map_single(struct device *hwdev, void *ptr, size_t size,
97 int direction)
98{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070099 struct dma_mapping_ops *ops = get_dma_ops(hwdev);
100
Glauber Costa22456b92008-03-25 18:36:21 -0300101 BUG_ON(!valid_dma_direction(direction));
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700102 return ops->map_single(hwdev, virt_to_phys(ptr), size, direction);
Glauber Costa22456b92008-03-25 18:36:21 -0300103}
104
Glauber Costa0cb0ae62008-03-25 18:36:22 -0300105static inline void
106dma_unmap_single(struct device *dev, dma_addr_t addr, size_t size,
107 int direction)
108{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700109 struct dma_mapping_ops *ops = get_dma_ops(dev);
110
Glauber Costa0cb0ae62008-03-25 18:36:22 -0300111 BUG_ON(!valid_dma_direction(direction));
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700112 if (ops->unmap_single)
113 ops->unmap_single(dev, addr, size, direction);
Glauber Costa0cb0ae62008-03-25 18:36:22 -0300114}
115
Glauber Costa16a3ce92008-03-25 18:36:23 -0300116static inline int
117dma_map_sg(struct device *hwdev, struct scatterlist *sg,
118 int nents, int direction)
119{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700120 struct dma_mapping_ops *ops = get_dma_ops(hwdev);
121
Glauber Costa16a3ce92008-03-25 18:36:23 -0300122 BUG_ON(!valid_dma_direction(direction));
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700123 return ops->map_sg(hwdev, sg, nents, direction);
Glauber Costa16a3ce92008-03-25 18:36:23 -0300124}
Glauber Costa72c784f2008-03-25 18:36:24 -0300125
126static inline void
127dma_unmap_sg(struct device *hwdev, struct scatterlist *sg, int nents,
128 int direction)
129{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700130 struct dma_mapping_ops *ops = get_dma_ops(hwdev);
131
Glauber Costa72c784f2008-03-25 18:36:24 -0300132 BUG_ON(!valid_dma_direction(direction));
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700133 if (ops->unmap_sg)
134 ops->unmap_sg(hwdev, sg, nents, direction);
Glauber Costa72c784f2008-03-25 18:36:24 -0300135}
Glauber Costac01dd8c2008-03-25 18:36:25 -0300136
137static inline void
138dma_sync_single_for_cpu(struct device *hwdev, dma_addr_t dma_handle,
139 size_t size, int direction)
140{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700141 struct dma_mapping_ops *ops = get_dma_ops(hwdev);
142
Glauber Costac01dd8c2008-03-25 18:36:25 -0300143 BUG_ON(!valid_dma_direction(direction));
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700144 if (ops->sync_single_for_cpu)
145 ops->sync_single_for_cpu(hwdev, dma_handle, size, direction);
Glauber Costac01dd8c2008-03-25 18:36:25 -0300146 flush_write_buffers();
147}
148
Glauber Costa9231b262008-03-25 18:36:26 -0300149static inline void
150dma_sync_single_for_device(struct device *hwdev, dma_addr_t dma_handle,
151 size_t size, int direction)
152{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700153 struct dma_mapping_ops *ops = get_dma_ops(hwdev);
154
Glauber Costa9231b262008-03-25 18:36:26 -0300155 BUG_ON(!valid_dma_direction(direction));
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700156 if (ops->sync_single_for_device)
157 ops->sync_single_for_device(hwdev, dma_handle, size, direction);
Glauber Costa9231b262008-03-25 18:36:26 -0300158 flush_write_buffers();
159}
160
Glauber Costa627610f2008-03-25 18:36:27 -0300161static inline void
162dma_sync_single_range_for_cpu(struct device *hwdev, dma_addr_t dma_handle,
163 unsigned long offset, size_t size, int direction)
164{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700165 struct dma_mapping_ops *ops = get_dma_ops(hwdev);
Glauber Costa627610f2008-03-25 18:36:27 -0300166
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700167 BUG_ON(!valid_dma_direction(direction));
168 if (ops->sync_single_range_for_cpu)
169 ops->sync_single_range_for_cpu(hwdev, dma_handle, offset,
170 size, direction);
Glauber Costa627610f2008-03-25 18:36:27 -0300171 flush_write_buffers();
172}
Glauber Costa71362332008-03-25 18:36:28 -0300173
174static inline void
175dma_sync_single_range_for_device(struct device *hwdev, dma_addr_t dma_handle,
176 unsigned long offset, size_t size,
177 int direction)
178{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700179 struct dma_mapping_ops *ops = get_dma_ops(hwdev);
Glauber Costa71362332008-03-25 18:36:28 -0300180
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700181 BUG_ON(!valid_dma_direction(direction));
182 if (ops->sync_single_range_for_device)
183 ops->sync_single_range_for_device(hwdev, dma_handle,
184 offset, size, direction);
Glauber Costa71362332008-03-25 18:36:28 -0300185 flush_write_buffers();
186}
187
Glauber Costaed435de2008-03-25 18:36:29 -0300188static inline void
189dma_sync_sg_for_cpu(struct device *hwdev, struct scatterlist *sg,
190 int nelems, int direction)
191{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700192 struct dma_mapping_ops *ops = get_dma_ops(hwdev);
193
Glauber Costaed435de2008-03-25 18:36:29 -0300194 BUG_ON(!valid_dma_direction(direction));
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700195 if (ops->sync_sg_for_cpu)
196 ops->sync_sg_for_cpu(hwdev, sg, nelems, direction);
Glauber Costaed435de2008-03-25 18:36:29 -0300197 flush_write_buffers();
198}
Glauber Costae7f3a912008-03-25 18:36:30 -0300199
200static inline void
201dma_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg,
202 int nelems, int direction)
203{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700204 struct dma_mapping_ops *ops = get_dma_ops(hwdev);
205
Glauber Costae7f3a912008-03-25 18:36:30 -0300206 BUG_ON(!valid_dma_direction(direction));
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700207 if (ops->sync_sg_for_device)
208 ops->sync_sg_for_device(hwdev, sg, nelems, direction);
Glauber Costae7f3a912008-03-25 18:36:30 -0300209
210 flush_write_buffers();
211}
Glauber Costa4d92fbf2008-03-25 18:36:32 -0300212
213static inline dma_addr_t dma_map_page(struct device *dev, struct page *page,
214 size_t offset, size_t size,
215 int direction)
216{
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700217 struct dma_mapping_ops *ops = get_dma_ops(dev);
218
Ingo Molnar2be62142008-04-19 19:19:56 +0200219 BUG_ON(!valid_dma_direction(direction));
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700220 return ops->map_single(dev, page_to_phys(page) + offset,
221 size, direction);
Glauber Costa4d92fbf2008-03-25 18:36:32 -0300222}
223
224static inline void dma_unmap_page(struct device *dev, dma_addr_t addr,
225 size_t size, int direction)
226{
227 dma_unmap_single(dev, addr, size, direction);
228}
229
Glauber Costa3cb6a912008-03-25 18:36:33 -0300230static inline void
231dma_cache_sync(struct device *dev, void *vaddr, size_t size,
232 enum dma_data_direction dir)
233{
234 flush_write_buffers();
235}
Glauber Costaae17a63b2008-03-25 18:36:38 -0300236
Glauber Costab7107a32008-03-25 18:36:39 -0300237static inline int dma_get_cache_alignment(void)
238{
239 /* no easy way to get cache size on all x86, so return the
240 * maximum possible, to be safe */
241 return boot_cpu_data.x86_clflush_size;
242}
243
FUJITA Tomonori823e7e82008-09-08 18:10:13 +0900244static inline unsigned long dma_alloc_coherent_mask(struct device *dev,
245 gfp_t gfp)
246{
247 unsigned long dma_mask = 0;
Glauber Costab7107a32008-03-25 18:36:39 -0300248
FUJITA Tomonori823e7e82008-09-08 18:10:13 +0900249 dma_mask = dev->coherent_dma_mask;
250 if (!dma_mask)
251 dma_mask = (gfp & GFP_DMA) ? DMA_24BIT_MASK : DMA_32BIT_MASK;
252
253 return dma_mask;
254}
255
256static inline gfp_t dma_alloc_coherent_gfp_flags(struct device *dev, gfp_t gfp)
257{
Steven Noonan9fcaff02008-09-08 16:19:11 -0700258#ifdef CONFIG_X86_64
FUJITA Tomonori823e7e82008-09-08 18:10:13 +0900259 unsigned long dma_mask = dma_alloc_coherent_mask(dev, gfp);
260
FUJITA Tomonori823e7e82008-09-08 18:10:13 +0900261 if (dma_mask <= DMA_32BIT_MASK && !(gfp & GFP_DMA))
262 gfp |= GFP_DMA32;
263#endif
264 return gfp;
265}
266
Joerg Roedel6c505ce2008-08-19 16:32:45 +0200267static inline void *
268dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
269 gfp_t gfp)
270{
271 struct dma_mapping_ops *ops = get_dma_ops(dev);
272 void *memory;
Glauber Costaae17a63b2008-03-25 18:36:38 -0300273
FUJITA Tomonori8a53ad62008-09-08 18:10:12 +0900274 gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
275
Joerg Roedel6c505ce2008-08-19 16:32:45 +0200276 if (dma_alloc_from_coherent(dev, size, dma_handle, &memory))
277 return memory;
278
279 if (!dev) {
280 dev = &x86_dma_fallback_dev;
281 gfp |= GFP_DMA;
282 }
283
FUJITA Tomonori98216262008-09-10 00:49:48 +0900284 if (!is_device_dma_capable(dev))
FUJITA Tomonoride9f5212008-09-08 18:10:11 +0900285 return NULL;
286
FUJITA Tomonori823e7e82008-09-08 18:10:13 +0900287 if (!ops->alloc_coherent)
288 return NULL;
289
290 return ops->alloc_coherent(dev, size, dma_handle,
291 dma_alloc_coherent_gfp_flags(dev, gfp));
Joerg Roedel6c505ce2008-08-19 16:32:45 +0200292}
293
294static inline void dma_free_coherent(struct device *dev, size_t size,
295 void *vaddr, dma_addr_t bus)
296{
297 struct dma_mapping_ops *ops = get_dma_ops(dev);
298
299 WARN_ON(irqs_disabled()); /* for portability */
300
301 if (dma_release_from_coherent(dev, get_order(size), vaddr))
302 return;
303
304 if (ops->free_coherent)
305 ops->free_coherent(dev, size, vaddr, bus);
306}
307
Glauber Costa6f536632008-03-25 18:36:20 -0300308#endif