Linux-libre 3.16.85-gnu
[librecmc/linux-libre.git] / include / linux / dma-mapping.h
1 #ifndef _LINUX_DMA_MAPPING_H
2 #define _LINUX_DMA_MAPPING_H
3
4 #include <linux/string.h>
5 #include <linux/device.h>
6 #include <linux/err.h>
7 #include <linux/dma-attrs.h>
8 #include <linux/dma-direction.h>
9 #include <linux/scatterlist.h>
10
11 /*
12  * A dma_addr_t can hold any valid DMA or bus address for the platform.
13  * It can be given to a device to use as a DMA source or target.  A CPU cannot
14  * reference a dma_addr_t directly because there may be translation between
15  * its physical address space and the bus address space.
16  */
17 struct dma_map_ops {
18         void* (*alloc)(struct device *dev, size_t size,
19                                 dma_addr_t *dma_handle, gfp_t gfp,
20                                 struct dma_attrs *attrs);
21         void (*free)(struct device *dev, size_t size,
22                               void *vaddr, dma_addr_t dma_handle,
23                               struct dma_attrs *attrs);
24         int (*mmap)(struct device *, struct vm_area_struct *,
25                           void *, dma_addr_t, size_t, struct dma_attrs *attrs);
26
27         int (*get_sgtable)(struct device *dev, struct sg_table *sgt, void *,
28                            dma_addr_t, size_t, struct dma_attrs *attrs);
29
30         dma_addr_t (*map_page)(struct device *dev, struct page *page,
31                                unsigned long offset, size_t size,
32                                enum dma_data_direction dir,
33                                struct dma_attrs *attrs);
34         void (*unmap_page)(struct device *dev, dma_addr_t dma_handle,
35                            size_t size, enum dma_data_direction dir,
36                            struct dma_attrs *attrs);
37         int (*map_sg)(struct device *dev, struct scatterlist *sg,
38                       int nents, enum dma_data_direction dir,
39                       struct dma_attrs *attrs);
40         void (*unmap_sg)(struct device *dev,
41                          struct scatterlist *sg, int nents,
42                          enum dma_data_direction dir,
43                          struct dma_attrs *attrs);
44         void (*sync_single_for_cpu)(struct device *dev,
45                                     dma_addr_t dma_handle, size_t size,
46                                     enum dma_data_direction dir);
47         void (*sync_single_for_device)(struct device *dev,
48                                        dma_addr_t dma_handle, size_t size,
49                                        enum dma_data_direction dir);
50         void (*sync_sg_for_cpu)(struct device *dev,
51                                 struct scatterlist *sg, int nents,
52                                 enum dma_data_direction dir);
53         void (*sync_sg_for_device)(struct device *dev,
54                                    struct scatterlist *sg, int nents,
55                                    enum dma_data_direction dir);
56         int (*mapping_error)(struct device *dev, dma_addr_t dma_addr);
57         int (*dma_supported)(struct device *dev, u64 mask);
58         int (*set_dma_mask)(struct device *dev, u64 mask);
59 #ifdef ARCH_HAS_DMA_GET_REQUIRED_MASK
60         u64 (*get_required_mask)(struct device *dev);
61 #endif
62         int is_phys;
63 };
64
65 #define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
66
67 #define DMA_MASK_NONE   0x0ULL
68
69 static inline int valid_dma_direction(int dma_direction)
70 {
71         return ((dma_direction == DMA_BIDIRECTIONAL) ||
72                 (dma_direction == DMA_TO_DEVICE) ||
73                 (dma_direction == DMA_FROM_DEVICE));
74 }
75
76 static inline int is_device_dma_capable(struct device *dev)
77 {
78         return dev->dma_mask != NULL && *dev->dma_mask != DMA_MASK_NONE;
79 }
80
81 #ifdef CONFIG_HAS_DMA
82 #include <asm/dma-mapping.h>
83 #else
84 #include <asm-generic/dma-mapping-broken.h>
85 #endif
86
87 static inline u64 dma_get_mask(struct device *dev)
88 {
89         if (dev && dev->dma_mask && *dev->dma_mask)
90                 return *dev->dma_mask;
91         return DMA_BIT_MASK(32);
92 }
93
94 #ifdef CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK
95 int dma_set_coherent_mask(struct device *dev, u64 mask);
96 #else
97 static inline int dma_set_coherent_mask(struct device *dev, u64 mask)
98 {
99         if (!dma_supported(dev, mask))
100                 return -EIO;
101         dev->coherent_dma_mask = mask;
102         return 0;
103 }
104 #endif
105
106 /*
107  * Set both the DMA mask and the coherent DMA mask to the same thing.
108  * Note that we don't check the return value from dma_set_coherent_mask()
109  * as the DMA API guarantees that the coherent DMA mask can be set to
110  * the same or smaller than the streaming DMA mask.
111  */
112 static inline int dma_set_mask_and_coherent(struct device *dev, u64 mask)
113 {
114         int rc = dma_set_mask(dev, mask);
115         if (rc == 0)
116                 dma_set_coherent_mask(dev, mask);
117         return rc;
118 }
119
120 /*
121  * Similar to the above, except it deals with the case where the device
122  * does not have dev->dma_mask appropriately setup.
123  */
124 static inline int dma_coerce_mask_and_coherent(struct device *dev, u64 mask)
125 {
126         dev->dma_mask = &dev->coherent_dma_mask;
127         return dma_set_mask_and_coherent(dev, mask);
128 }
129
130 extern u64 dma_get_required_mask(struct device *dev);
131
132 #ifndef set_arch_dma_coherent_ops
133 static inline int set_arch_dma_coherent_ops(struct device *dev)
134 {
135         return 0;
136 }
137 #endif
138
139 static inline unsigned int dma_get_max_seg_size(struct device *dev)
140 {
141         return dev->dma_parms ? dev->dma_parms->max_segment_size : 65536;
142 }
143
144 static inline unsigned int dma_set_max_seg_size(struct device *dev,
145                                                 unsigned int size)
146 {
147         if (dev->dma_parms) {
148                 dev->dma_parms->max_segment_size = size;
149                 return 0;
150         } else
151                 return -EIO;
152 }
153
154 static inline unsigned long dma_get_seg_boundary(struct device *dev)
155 {
156         return dev->dma_parms ?
157                 dev->dma_parms->segment_boundary_mask : 0xffffffff;
158 }
159
160 static inline int dma_set_seg_boundary(struct device *dev, unsigned long mask)
161 {
162         if (dev->dma_parms) {
163                 dev->dma_parms->segment_boundary_mask = mask;
164                 return 0;
165         } else
166                 return -EIO;
167 }
168
169 #ifndef dma_max_pfn
170 static inline unsigned long dma_max_pfn(struct device *dev)
171 {
172         return *dev->dma_mask >> PAGE_SHIFT;
173 }
174 #endif
175
176 static inline void *dma_zalloc_coherent(struct device *dev, size_t size,
177                                         dma_addr_t *dma_handle, gfp_t flag)
178 {
179         void *ret = dma_alloc_coherent(dev, size, dma_handle,
180                                        flag | __GFP_ZERO);
181         return ret;
182 }
183
184 static inline int dma_get_cache_alignment(void)
185 {
186 #ifdef ARCH_DMA_MINALIGN
187         return ARCH_DMA_MINALIGN;
188 #endif
189         return 1;
190 }
191
192 /* flags for the coherent memory api */
193 #define DMA_MEMORY_MAP                  0x01
194 #define DMA_MEMORY_IO                   0x02
195 #define DMA_MEMORY_INCLUDES_CHILDREN    0x04
196 #define DMA_MEMORY_EXCLUSIVE            0x08
197
198 #ifndef ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
199 static inline int
200 dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
201                             dma_addr_t device_addr, size_t size, int flags)
202 {
203         return 0;
204 }
205
206 static inline void
207 dma_release_declared_memory(struct device *dev)
208 {
209 }
210
211 static inline void *
212 dma_mark_declared_memory_occupied(struct device *dev,
213                                   dma_addr_t device_addr, size_t size)
214 {
215         return ERR_PTR(-EBUSY);
216 }
217 #endif
218
219 /*
220  * Managed DMA API
221  */
222 extern void *dmam_alloc_coherent(struct device *dev, size_t size,
223                                  dma_addr_t *dma_handle, gfp_t gfp);
224 extern void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
225                                dma_addr_t dma_handle);
226 extern void *dmam_alloc_noncoherent(struct device *dev, size_t size,
227                                     dma_addr_t *dma_handle, gfp_t gfp);
228 extern void dmam_free_noncoherent(struct device *dev, size_t size, void *vaddr,
229                                   dma_addr_t dma_handle);
230 #ifdef ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
231 extern int dmam_declare_coherent_memory(struct device *dev,
232                                         phys_addr_t phys_addr,
233                                         dma_addr_t device_addr, size_t size,
234                                         int flags);
235 extern void dmam_release_declared_memory(struct device *dev);
236 #else /* ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY */
237 static inline int dmam_declare_coherent_memory(struct device *dev,
238                                 phys_addr_t phys_addr, dma_addr_t device_addr,
239                                 size_t size, gfp_t gfp)
240 {
241         return 0;
242 }
243
244 static inline void dmam_release_declared_memory(struct device *dev)
245 {
246 }
247 #endif /* ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY */
248
249 #ifndef CONFIG_HAVE_DMA_ATTRS
250 struct dma_attrs;
251
252 #define dma_map_single_attrs(dev, cpu_addr, size, dir, attrs) \
253         dma_map_single(dev, cpu_addr, size, dir)
254
255 #define dma_unmap_single_attrs(dev, dma_addr, size, dir, attrs) \
256         dma_unmap_single(dev, dma_addr, size, dir)
257
258 #define dma_map_sg_attrs(dev, sgl, nents, dir, attrs) \
259         dma_map_sg(dev, sgl, nents, dir)
260
261 #define dma_unmap_sg_attrs(dev, sgl, nents, dir, attrs) \
262         dma_unmap_sg(dev, sgl, nents, dir)
263
264 #endif /* CONFIG_HAVE_DMA_ATTRS */
265
266 #ifdef CONFIG_NEED_DMA_MAP_STATE
267 #define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME)        dma_addr_t ADDR_NAME
268 #define DEFINE_DMA_UNMAP_LEN(LEN_NAME)          __u32 LEN_NAME
269 #define dma_unmap_addr(PTR, ADDR_NAME)           ((PTR)->ADDR_NAME)
270 #define dma_unmap_addr_set(PTR, ADDR_NAME, VAL)  (((PTR)->ADDR_NAME) = (VAL))
271 #define dma_unmap_len(PTR, LEN_NAME)             ((PTR)->LEN_NAME)
272 #define dma_unmap_len_set(PTR, LEN_NAME, VAL)    (((PTR)->LEN_NAME) = (VAL))
273 #else
274 #define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME)
275 #define DEFINE_DMA_UNMAP_LEN(LEN_NAME)
276 #define dma_unmap_addr(PTR, ADDR_NAME)           (0)
277 #define dma_unmap_addr_set(PTR, ADDR_NAME, VAL)  do { } while (0)
278 #define dma_unmap_len(PTR, LEN_NAME)             (0)
279 #define dma_unmap_len_set(PTR, LEN_NAME, VAL)    do { } while (0)
280 #endif
281
282 #endif