OSDN Git Service

Merge tag 'v4.4.210' into 10
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / include / asm-generic / dma-mapping-common.h
1 #ifndef _ASM_GENERIC_DMA_MAPPING_H
2 #define _ASM_GENERIC_DMA_MAPPING_H
3
4 #include <linux/kmemcheck.h>
5 #include <linux/bug.h>
6 #include <linux/scatterlist.h>
7 #include <linux/dma-debug.h>
8 #include <linux/dma-attrs.h>
9 #include <asm-generic/dma-coherent.h>
10
11 static inline dma_addr_t dma_map_single_attrs(struct device *dev, void *ptr,
12                                               size_t size,
13                                               enum dma_data_direction dir,
14                                               struct dma_attrs *attrs)
15 {
16         const struct dma_map_ops *ops = get_dma_ops(dev);
17         dma_addr_t addr;
18
19         kmemcheck_mark_initialized(ptr, size);
20         BUG_ON(!valid_dma_direction(dir));
21         addr = ops->map_page(dev, virt_to_page(ptr),
22                              (unsigned long)ptr & ~PAGE_MASK, size,
23                              dir, attrs);
24         debug_dma_map_page(dev, virt_to_page(ptr),
25                            (unsigned long)ptr & ~PAGE_MASK, size,
26                            dir, addr, true);
27         return addr;
28 }
29
30 static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t addr,
31                                           size_t size,
32                                           enum dma_data_direction dir,
33                                           struct dma_attrs *attrs)
34 {
35         const struct dma_map_ops *ops = get_dma_ops(dev);
36
37         BUG_ON(!valid_dma_direction(dir));
38         if (ops->unmap_page)
39                 ops->unmap_page(dev, addr, size, dir, attrs);
40         debug_dma_unmap_page(dev, addr, size, dir, true);
41 }
42
43 /*
44  * dma_maps_sg_attrs returns 0 on error and > 0 on success.
45  * It should never return a value < 0.
46  */
47 static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg,
48                                    int nents, enum dma_data_direction dir,
49                                    struct dma_attrs *attrs)
50 {
51         const struct dma_map_ops *ops = get_dma_ops(dev);
52         int i, ents;
53         struct scatterlist *s;
54
55         for_each_sg(sg, s, nents, i)
56                 kmemcheck_mark_initialized(sg_virt(s), s->length);
57         BUG_ON(!valid_dma_direction(dir));
58         ents = ops->map_sg(dev, sg, nents, dir, attrs);
59         BUG_ON(ents < 0);
60         debug_dma_map_sg(dev, sg, nents, ents, dir);
61
62         return ents;
63 }
64
65 static inline void dma_unmap_sg_attrs(struct device *dev, struct scatterlist *sg,
66                                       int nents, enum dma_data_direction dir,
67                                       struct dma_attrs *attrs)
68 {
69         const struct dma_map_ops *ops = get_dma_ops(dev);
70
71         BUG_ON(!valid_dma_direction(dir));
72         debug_dma_unmap_sg(dev, sg, nents, dir);
73         if (ops->unmap_sg)
74                 ops->unmap_sg(dev, sg, nents, dir, attrs);
75 }
76
77 static inline dma_addr_t dma_map_page(struct device *dev, struct page *page,
78                                       size_t offset, size_t size,
79                                       enum dma_data_direction dir)
80 {
81         const struct dma_map_ops *ops = get_dma_ops(dev);
82         dma_addr_t addr;
83
84         kmemcheck_mark_initialized(page_address(page) + offset, size);
85         BUG_ON(!valid_dma_direction(dir));
86         addr = ops->map_page(dev, page, offset, size, dir, NULL);
87         debug_dma_map_page(dev, page, offset, size, dir, addr, false);
88
89         return addr;
90 }
91
92 static inline void dma_unmap_page(struct device *dev, dma_addr_t addr,
93                                   size_t size, enum dma_data_direction dir)
94 {
95         const struct dma_map_ops *ops = get_dma_ops(dev);
96
97         BUG_ON(!valid_dma_direction(dir));
98         if (ops->unmap_page)
99                 ops->unmap_page(dev, addr, size, dir, NULL);
100         debug_dma_unmap_page(dev, addr, size, dir, false);
101 }
102
103 static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr,
104                                            size_t size,
105                                            enum dma_data_direction dir)
106 {
107         const struct dma_map_ops *ops = get_dma_ops(dev);
108
109         BUG_ON(!valid_dma_direction(dir));
110         if (ops->sync_single_for_cpu)
111                 ops->sync_single_for_cpu(dev, addr, size, dir);
112         debug_dma_sync_single_for_cpu(dev, addr, size, dir);
113 }
114
115 static inline void dma_sync_single_for_device(struct device *dev,
116                                               dma_addr_t addr, size_t size,
117                                               enum dma_data_direction dir)
118 {
119         const struct dma_map_ops *ops = get_dma_ops(dev);
120
121         BUG_ON(!valid_dma_direction(dir));
122         if (ops->sync_single_for_device)
123                 ops->sync_single_for_device(dev, addr, size, dir);
124         debug_dma_sync_single_for_device(dev, addr, size, dir);
125 }
126
127 static inline void dma_sync_single_range_for_cpu(struct device *dev,
128                                                  dma_addr_t addr,
129                                                  unsigned long offset,
130                                                  size_t size,
131                                                  enum dma_data_direction dir)
132 {
133         const struct dma_map_ops *ops = get_dma_ops(dev);
134
135         BUG_ON(!valid_dma_direction(dir));
136         if (ops->sync_single_for_cpu)
137                 ops->sync_single_for_cpu(dev, addr + offset, size, dir);
138         debug_dma_sync_single_range_for_cpu(dev, addr, offset, size, dir);
139 }
140
141 static inline void dma_sync_single_range_for_device(struct device *dev,
142                                                     dma_addr_t addr,
143                                                     unsigned long offset,
144                                                     size_t size,
145                                                     enum dma_data_direction dir)
146 {
147         const struct dma_map_ops *ops = get_dma_ops(dev);
148
149         BUG_ON(!valid_dma_direction(dir));
150         if (ops->sync_single_for_device)
151                 ops->sync_single_for_device(dev, addr + offset, size, dir);
152         debug_dma_sync_single_range_for_device(dev, addr, offset, size, dir);
153 }
154
155 static inline void
156 dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
157                     int nelems, enum dma_data_direction dir)
158 {
159         const struct dma_map_ops *ops = get_dma_ops(dev);
160
161         BUG_ON(!valid_dma_direction(dir));
162         if (ops->sync_sg_for_cpu)
163                 ops->sync_sg_for_cpu(dev, sg, nelems, dir);
164         debug_dma_sync_sg_for_cpu(dev, sg, nelems, dir);
165 }
166
167 static inline void
168 dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
169                        int nelems, enum dma_data_direction dir)
170 {
171         const struct dma_map_ops *ops = get_dma_ops(dev);
172
173         BUG_ON(!valid_dma_direction(dir));
174         if (ops->sync_sg_for_device)
175                 ops->sync_sg_for_device(dev, sg, nelems, dir);
176         debug_dma_sync_sg_for_device(dev, sg, nelems, dir);
177
178 }
179
180 #define dma_map_single(d, a, s, r) dma_map_single_attrs(d, a, s, r, NULL)
181 #define dma_unmap_single(d, a, s, r) dma_unmap_single_attrs(d, a, s, r, NULL)
182 #define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, NULL)
183 #define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, NULL)
184
185 extern int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
186                            void *cpu_addr, dma_addr_t dma_addr, size_t size);
187
188 void *dma_common_contiguous_remap(struct page *page, size_t size,
189                         unsigned long vm_flags,
190                         pgprot_t prot, const void *caller);
191
192 void *dma_common_pages_remap(struct page **pages, size_t size,
193                         unsigned long vm_flags, pgprot_t prot,
194                         const void *caller);
195 void dma_common_free_remap(void *cpu_addr, size_t size, unsigned long vm_flags,
196                                 bool no_warn);
197
198 /**
199  * dma_mmap_attrs - map a coherent DMA allocation into user space
200  * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
201  * @vma: vm_area_struct describing requested user mapping
202  * @cpu_addr: kernel CPU-view address returned from dma_alloc_attrs
203  * @handle: device-view address returned from dma_alloc_attrs
204  * @size: size of memory originally requested in dma_alloc_attrs
205  * @attrs: attributes of mapping properties requested in dma_alloc_attrs
206  *
207  * Map a coherent DMA buffer previously allocated by dma_alloc_attrs
208  * into user space.  The coherent DMA buffer must not be freed by the
209  * driver until the user space mapping has been released.
210  */
211 static inline int
212 dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma, void *cpu_addr,
213                dma_addr_t dma_addr, size_t size, struct dma_attrs *attrs)
214 {
215         const struct dma_map_ops *ops = get_dma_ops(dev);
216         BUG_ON(!ops);
217         if (ops->mmap)
218                 return ops->mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
219         return dma_common_mmap(dev, vma, cpu_addr, dma_addr, size);
220 }
221
222 #define dma_mmap_coherent(d, v, c, h, s) dma_mmap_attrs(d, v, c, h, s, NULL)
223
224 int
225 dma_common_get_sgtable(struct device *dev, struct sg_table *sgt,
226                        void *cpu_addr, dma_addr_t dma_addr, size_t size);
227
228 static inline int
229 dma_get_sgtable_attrs(struct device *dev, struct sg_table *sgt, void *cpu_addr,
230                       dma_addr_t dma_addr, size_t size, struct dma_attrs *attrs)
231 {
232         const struct dma_map_ops *ops = get_dma_ops(dev);
233         BUG_ON(!ops);
234         if (ops->get_sgtable)
235                 return ops->get_sgtable(dev, sgt, cpu_addr, dma_addr, size,
236                                         attrs);
237         return dma_common_get_sgtable(dev, sgt, cpu_addr, dma_addr, size);
238 }
239
240 #define dma_get_sgtable(d, t, v, h, s) dma_get_sgtable_attrs(d, t, v, h, s, NULL)
241
242 #ifndef arch_dma_alloc_attrs
243 #define arch_dma_alloc_attrs(dev, flag) (true)
244 #endif
245
246 static inline void *dma_alloc_attrs(struct device *dev, size_t size,
247                                        dma_addr_t *dma_handle, gfp_t flag,
248                                        struct dma_attrs *attrs)
249 {
250         const struct dma_map_ops *ops = get_dma_ops(dev);
251         void *cpu_addr;
252
253         BUG_ON(!ops);
254
255         if (dma_alloc_from_coherent(dev, size, dma_handle, &cpu_addr))
256                 return cpu_addr;
257
258         if (!arch_dma_alloc_attrs(&dev, &flag))
259                 return NULL;
260         if (!ops->alloc)
261                 return NULL;
262
263         cpu_addr = ops->alloc(dev, size, dma_handle, flag, attrs);
264         debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr);
265         return cpu_addr;
266 }
267
268 static inline void dma_free_attrs(struct device *dev, size_t size,
269                                      void *cpu_addr, dma_addr_t dma_handle,
270                                      struct dma_attrs *attrs)
271 {
272         const struct dma_map_ops *ops = get_dma_ops(dev);
273
274         BUG_ON(!ops);
275         WARN_ON(irqs_disabled());
276
277         if (dma_release_from_coherent(dev, get_order(size), cpu_addr))
278                 return;
279
280         if (!ops->free)
281                 return;
282
283         debug_dma_free_coherent(dev, size, cpu_addr, dma_handle);
284         ops->free(dev, size, cpu_addr, dma_handle, attrs);
285 }
286
287 static inline void *dma_alloc_coherent(struct device *dev, size_t size,
288                 dma_addr_t *dma_handle, gfp_t flag)
289 {
290         return dma_alloc_attrs(dev, size, dma_handle, flag, NULL);
291 }
292
293 static inline void dma_free_coherent(struct device *dev, size_t size,
294                 void *cpu_addr, dma_addr_t dma_handle)
295 {
296         return dma_free_attrs(dev, size, cpu_addr, dma_handle, NULL);
297 }
298
299 static inline void *dma_alloc_noncoherent(struct device *dev, size_t size,
300                 dma_addr_t *dma_handle, gfp_t gfp)
301 {
302         DEFINE_DMA_ATTRS(attrs);
303
304         dma_set_attr(DMA_ATTR_NON_CONSISTENT, &attrs);
305         return dma_alloc_attrs(dev, size, dma_handle, gfp, &attrs);
306 }
307
308 static inline void dma_free_noncoherent(struct device *dev, size_t size,
309                 void *cpu_addr, dma_addr_t dma_handle)
310 {
311         DEFINE_DMA_ATTRS(attrs);
312
313         dma_set_attr(DMA_ATTR_NON_CONSISTENT, &attrs);
314         dma_free_attrs(dev, size, cpu_addr, dma_handle, &attrs);
315 }
316
317 static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
318 {
319         debug_dma_mapping_error(dev, dma_addr);
320
321         if (get_dma_ops(dev)->mapping_error)
322                 return get_dma_ops(dev)->mapping_error(dev, dma_addr);
323
324 #ifdef DMA_ERROR_CODE
325         return dma_addr == DMA_ERROR_CODE;
326 #else
327         return 0;
328 #endif
329 }
330
331 static inline void *dma_alloc_nonconsistent(struct device *dev, size_t size,
332                                         dma_addr_t *dma_handle, gfp_t flag)
333 {
334         DEFINE_DMA_ATTRS(attrs);
335         dma_set_attr(DMA_ATTR_NON_CONSISTENT, &attrs);
336         return dma_alloc_attrs(dev, size, dma_handle, flag, &attrs);
337 }
338
339 static inline void dma_free_nonconsistent(struct device *dev, size_t size,
340                                         void *cpu_addr, dma_addr_t dma_handle)
341 {
342         DEFINE_DMA_ATTRS(attrs);
343         dma_set_attr(DMA_ATTR_NON_CONSISTENT, &attrs);
344         return dma_free_attrs(dev, size, cpu_addr, dma_handle, &attrs);
345 }
346
347 static inline int dma_mmap_nonconsistent(struct device *dev,
348                 struct vm_area_struct *vma, void *cpu_addr,
349                 dma_addr_t dma_addr, size_t size)
350 {
351         DEFINE_DMA_ATTRS(attrs);
352         dma_set_attr(DMA_ATTR_NON_CONSISTENT, &attrs);
353         return dma_mmap_attrs(dev, vma, cpu_addr, dma_addr, size, &attrs);
354 }
355
356 #ifndef HAVE_ARCH_DMA_SUPPORTED
357 static inline int dma_supported(struct device *dev, u64 mask)
358 {
359         const struct dma_map_ops *ops = get_dma_ops(dev);
360
361         if (!ops)
362                 return 0;
363         if (!ops->dma_supported)
364                 return 1;
365         return ops->dma_supported(dev, mask);
366 }
367 #endif
368
369 #ifndef HAVE_ARCH_DMA_SET_MASK
370 static inline int dma_set_mask(struct device *dev, u64 mask)
371 {
372         const struct dma_map_ops *ops = get_dma_ops(dev);
373
374         if (ops->set_dma_mask)
375                 return ops->set_dma_mask(dev, mask);
376
377         if (!dev->dma_mask || !dma_supported(dev, mask))
378                 return -EIO;
379         *dev->dma_mask = mask;
380         return 0;
381 }
382 #endif
383
384 #endif