blob: b331a8d3a7cf01a40aad2b4fca7e6997494f8a2f [file] [log] [blame]
Glauber Costa6f536632008-03-25 18:36:20 -03001#ifndef _ASM_DMA_MAPPING_H_
2#define _ASM_DMA_MAPPING_H_
3
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>
12
13struct dma_mapping_ops {
14 int (*mapping_error)(dma_addr_t dma_addr);
15 void* (*alloc_coherent)(struct device *dev, size_t size,
16 dma_addr_t *dma_handle, gfp_t gfp);
17 void (*free_coherent)(struct device *dev, size_t size,
18 void *vaddr, dma_addr_t dma_handle);
Ingo Molnar2be62142008-04-19 19:19:56 +020019 dma_addr_t (*map_single)(struct device *hwdev, phys_addr_t ptr,
Glauber Costa6f536632008-03-25 18:36:20 -030020 size_t size, int direction);
21 /* like map_single, but doesn't check the device mask */
Ingo Molnar2be62142008-04-19 19:19:56 +020022 dma_addr_t (*map_simple)(struct device *hwdev, phys_addr_t ptr,
Glauber Costa6f536632008-03-25 18:36:20 -030023 size_t size, int direction);
24 void (*unmap_single)(struct device *dev, dma_addr_t addr,
25 size_t size, int direction);
26 void (*sync_single_for_cpu)(struct device *hwdev,
27 dma_addr_t dma_handle, size_t size,
28 int direction);
29 void (*sync_single_for_device)(struct device *hwdev,
30 dma_addr_t dma_handle, size_t size,
31 int direction);
32 void (*sync_single_range_for_cpu)(struct device *hwdev,
33 dma_addr_t dma_handle, unsigned long offset,
34 size_t size, int direction);
35 void (*sync_single_range_for_device)(struct device *hwdev,
36 dma_addr_t dma_handle, unsigned long offset,
37 size_t size, int direction);
38 void (*sync_sg_for_cpu)(struct device *hwdev,
39 struct scatterlist *sg, int nelems,
40 int direction);
41 void (*sync_sg_for_device)(struct device *hwdev,
42 struct scatterlist *sg, int nelems,
43 int direction);
44 int (*map_sg)(struct device *hwdev, struct scatterlist *sg,
45 int nents, int direction);
46 void (*unmap_sg)(struct device *hwdev,
47 struct scatterlist *sg, int nents,
48 int direction);
49 int (*dma_supported)(struct device *hwdev, u64 mask);
50 int is_phys;
51};
52
Glauber Costa22456b92008-03-25 18:36:21 -030053extern const struct dma_mapping_ops *dma_ops;
54
Glauber Costa8d396de2008-03-25 18:36:31 -030055#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
56#define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
57
58void *dma_alloc_coherent(struct device *dev, size_t size,
59 dma_addr_t *dma_handle, gfp_t flag);
60
61void dma_free_coherent(struct device *dev, size_t size,
62 void *vaddr, dma_addr_t dma_handle);
63
64
Thomas Gleixner96a388d2007-10-11 11:20:03 +020065#ifdef CONFIG_X86_32
66# include "dma-mapping_32.h"
67#else
68# include "dma-mapping_64.h"
69#endif
Glauber Costa6f536632008-03-25 18:36:20 -030070
Glauber Costa22456b92008-03-25 18:36:21 -030071static inline dma_addr_t
72dma_map_single(struct device *hwdev, void *ptr, size_t size,
73 int direction)
74{
75 BUG_ON(!valid_dma_direction(direction));
Ingo Molnar2be62142008-04-19 19:19:56 +020076 return dma_ops->map_single(hwdev, virt_to_phys(ptr), size, direction);
Glauber Costa22456b92008-03-25 18:36:21 -030077}
78
Glauber Costa0cb0ae62008-03-25 18:36:22 -030079static inline void
80dma_unmap_single(struct device *dev, dma_addr_t addr, size_t size,
81 int direction)
82{
83 BUG_ON(!valid_dma_direction(direction));
84 if (dma_ops->unmap_single)
85 dma_ops->unmap_single(dev, addr, size, direction);
86}
87
Glauber Costa16a3ce92008-03-25 18:36:23 -030088static inline int
89dma_map_sg(struct device *hwdev, struct scatterlist *sg,
90 int nents, int direction)
91{
92 BUG_ON(!valid_dma_direction(direction));
93 return dma_ops->map_sg(hwdev, sg, nents, direction);
94}
Glauber Costa72c784f2008-03-25 18:36:24 -030095
96static inline void
97dma_unmap_sg(struct device *hwdev, struct scatterlist *sg, int nents,
98 int direction)
99{
100 BUG_ON(!valid_dma_direction(direction));
101 if (dma_ops->unmap_sg)
102 dma_ops->unmap_sg(hwdev, sg, nents, direction);
103}
Glauber Costac01dd8c2008-03-25 18:36:25 -0300104
105static inline void
106dma_sync_single_for_cpu(struct device *hwdev, dma_addr_t dma_handle,
107 size_t size, int direction)
108{
109 BUG_ON(!valid_dma_direction(direction));
110 if (dma_ops->sync_single_for_cpu)
111 dma_ops->sync_single_for_cpu(hwdev, dma_handle, size,
112 direction);
113 flush_write_buffers();
114}
115
Glauber Costa9231b262008-03-25 18:36:26 -0300116static inline void
117dma_sync_single_for_device(struct device *hwdev, dma_addr_t dma_handle,
118 size_t size, int direction)
119{
120 BUG_ON(!valid_dma_direction(direction));
121 if (dma_ops->sync_single_for_device)
122 dma_ops->sync_single_for_device(hwdev, dma_handle, size,
123 direction);
124 flush_write_buffers();
125}
126
Glauber Costa627610f2008-03-25 18:36:27 -0300127static inline void
128dma_sync_single_range_for_cpu(struct device *hwdev, dma_addr_t dma_handle,
129 unsigned long offset, size_t size, int direction)
130{
131 BUG_ON(!valid_dma_direction(direction));
132 if (dma_ops->sync_single_range_for_cpu)
133 dma_ops->sync_single_range_for_cpu(hwdev, dma_handle, offset,
134 size, direction);
135
136 flush_write_buffers();
137}
Glauber Costa71362332008-03-25 18:36:28 -0300138
139static inline void
140dma_sync_single_range_for_device(struct device *hwdev, dma_addr_t dma_handle,
141 unsigned long offset, size_t size,
142 int direction)
143{
144 BUG_ON(!valid_dma_direction(direction));
145 if (dma_ops->sync_single_range_for_device)
146 dma_ops->sync_single_range_for_device(hwdev, dma_handle,
147 offset, size, direction);
148
149 flush_write_buffers();
150}
151
Glauber Costaed435de2008-03-25 18:36:29 -0300152static inline void
153dma_sync_sg_for_cpu(struct device *hwdev, struct scatterlist *sg,
154 int nelems, int direction)
155{
156 BUG_ON(!valid_dma_direction(direction));
157 if (dma_ops->sync_sg_for_cpu)
158 dma_ops->sync_sg_for_cpu(hwdev, sg, nelems, direction);
159 flush_write_buffers();
160}
Glauber Costae7f3a912008-03-25 18:36:30 -0300161
162static inline void
163dma_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg,
164 int nelems, int direction)
165{
166 BUG_ON(!valid_dma_direction(direction));
167 if (dma_ops->sync_sg_for_device)
168 dma_ops->sync_sg_for_device(hwdev, sg, nelems, direction);
169
170 flush_write_buffers();
171}
Glauber Costa4d92fbf2008-03-25 18:36:32 -0300172
173static inline dma_addr_t dma_map_page(struct device *dev, struct page *page,
174 size_t offset, size_t size,
175 int direction)
176{
Ingo Molnar2be62142008-04-19 19:19:56 +0200177 BUG_ON(!valid_dma_direction(direction));
178 return dma_ops->map_single(dev, page_to_phys(page)+offset,
179 size, direction);
Glauber Costa4d92fbf2008-03-25 18:36:32 -0300180}
181
182static inline void dma_unmap_page(struct device *dev, dma_addr_t addr,
183 size_t size, int direction)
184{
185 dma_unmap_single(dev, addr, size, direction);
186}
187
Glauber Costa6f536632008-03-25 18:36:20 -0300188#endif