]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/linux/dma-mapping.h
Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-eoan-kernel.git] / include / linux / dma-mapping.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
96532bab
RD
2#ifndef _LINUX_DMA_MAPPING_H
3#define _LINUX_DMA_MAPPING_H
1da177e4 4
002edb6f 5#include <linux/sizes.h>
842fa69f 6#include <linux/string.h>
1da177e4
LT
7#include <linux/device.h>
8#include <linux/err.h>
e1c7e324 9#include <linux/dma-debug.h>
b7f080cf 10#include <linux/dma-direction.h>
f0402a26 11#include <linux/scatterlist.h>
e1c7e324 12#include <linux/bug.h>
648babb7 13#include <linux/mem_encrypt.h>
1da177e4 14
00085f1e
KK
15/**
16 * List of possible attributes associated with a DMA mapping. The semantics
17 * of each attribute should be defined in Documentation/DMA-attributes.txt.
18 *
19 * DMA_ATTR_WRITE_BARRIER: DMA to a memory region with this attribute
20 * forces all pending DMA writes to complete.
21 */
22#define DMA_ATTR_WRITE_BARRIER (1UL << 0)
23/*
24 * DMA_ATTR_WEAK_ORDERING: Specifies that reads and writes to the mapping
25 * may be weakly ordered, that is that reads and writes may pass each other.
26 */
27#define DMA_ATTR_WEAK_ORDERING (1UL << 1)
28/*
29 * DMA_ATTR_WRITE_COMBINE: Specifies that writes to the mapping may be
30 * buffered to improve performance.
31 */
32#define DMA_ATTR_WRITE_COMBINE (1UL << 2)
33/*
34 * DMA_ATTR_NON_CONSISTENT: Lets the platform to choose to return either
35 * consistent or non-consistent memory as it sees fit.
36 */
37#define DMA_ATTR_NON_CONSISTENT (1UL << 3)
38/*
39 * DMA_ATTR_NO_KERNEL_MAPPING: Lets the platform to avoid creating a kernel
40 * virtual mapping for the allocated buffer.
41 */
42#define DMA_ATTR_NO_KERNEL_MAPPING (1UL << 4)
43/*
44 * DMA_ATTR_SKIP_CPU_SYNC: Allows platform code to skip synchronization of
45 * the CPU cache for the given buffer assuming that it has been already
46 * transferred to 'device' domain.
47 */
48#define DMA_ATTR_SKIP_CPU_SYNC (1UL << 5)
49/*
50 * DMA_ATTR_FORCE_CONTIGUOUS: Forces contiguous allocation of the buffer
51 * in physical memory.
52 */
53#define DMA_ATTR_FORCE_CONTIGUOUS (1UL << 6)
54/*
55 * DMA_ATTR_ALLOC_SINGLE_PAGES: This is a hint to the DMA-mapping subsystem
56 * that it's probably not worth the time to try to allocate memory to in a way
57 * that gives better TLB efficiency.
58 */
59#define DMA_ATTR_ALLOC_SINGLE_PAGES (1UL << 7)
a9a62c93
MFO
60/*
61 * DMA_ATTR_NO_WARN: This tells the DMA-mapping subsystem to suppress
62 * allocation failure reports (similarly to __GFP_NOWARN).
63 */
64#define DMA_ATTR_NO_WARN (1UL << 8)
00085f1e 65
b2fb3664
MH
66/*
67 * DMA_ATTR_PRIVILEGED: used to indicate that the buffer is fully
68 * accessible at an elevated privilege level (and ideally inaccessible or
69 * at least read-only at lesser-privileged levels).
70 */
71#define DMA_ATTR_PRIVILEGED (1UL << 9)
72
77f2ea2f
BH
73/*
74 * A dma_addr_t can hold any valid DMA or bus address for the platform.
75 * It can be given to a device to use as a DMA source or target. A CPU cannot
76 * reference a dma_addr_t directly because there may be translation between
77 * its physical address space and the bus address space.
78 */
f0402a26 79struct dma_map_ops {
613c4578
MS
80 void* (*alloc)(struct device *dev, size_t size,
81 dma_addr_t *dma_handle, gfp_t gfp,
00085f1e 82 unsigned long attrs);
613c4578
MS
83 void (*free)(struct device *dev, size_t size,
84 void *vaddr, dma_addr_t dma_handle,
00085f1e 85 unsigned long attrs);
9adc5374 86 int (*mmap)(struct device *, struct vm_area_struct *,
00085f1e
KK
87 void *, dma_addr_t, size_t,
88 unsigned long attrs);
9adc5374 89
d2b7428e 90 int (*get_sgtable)(struct device *dev, struct sg_table *sgt, void *,
00085f1e 91 dma_addr_t, size_t, unsigned long attrs);
d2b7428e 92
f0402a26
FT
93 dma_addr_t (*map_page)(struct device *dev, struct page *page,
94 unsigned long offset, size_t size,
95 enum dma_data_direction dir,
00085f1e 96 unsigned long attrs);
f0402a26
FT
97 void (*unmap_page)(struct device *dev, dma_addr_t dma_handle,
98 size_t size, enum dma_data_direction dir,
00085f1e 99 unsigned long attrs);
04abab69
RRD
100 /*
101 * map_sg returns 0 on error and a value > 0 on success.
102 * It should never return a value < 0.
103 */
f0402a26
FT
104 int (*map_sg)(struct device *dev, struct scatterlist *sg,
105 int nents, enum dma_data_direction dir,
00085f1e 106 unsigned long attrs);
f0402a26
FT
107 void (*unmap_sg)(struct device *dev,
108 struct scatterlist *sg, int nents,
109 enum dma_data_direction dir,
00085f1e 110 unsigned long attrs);
ba409b31
NS
111 dma_addr_t (*map_resource)(struct device *dev, phys_addr_t phys_addr,
112 size_t size, enum dma_data_direction dir,
113 unsigned long attrs);
114 void (*unmap_resource)(struct device *dev, dma_addr_t dma_handle,
115 size_t size, enum dma_data_direction dir,
116 unsigned long attrs);
f0402a26
FT
117 void (*sync_single_for_cpu)(struct device *dev,
118 dma_addr_t dma_handle, size_t size,
119 enum dma_data_direction dir);
120 void (*sync_single_for_device)(struct device *dev,
121 dma_addr_t dma_handle, size_t size,
122 enum dma_data_direction dir);
f0402a26
FT
123 void (*sync_sg_for_cpu)(struct device *dev,
124 struct scatterlist *sg, int nents,
125 enum dma_data_direction dir);
126 void (*sync_sg_for_device)(struct device *dev,
127 struct scatterlist *sg, int nents,
128 enum dma_data_direction dir);
c9eb6172
CH
129 void (*cache_sync)(struct device *dev, void *vaddr, size_t size,
130 enum dma_data_direction direction);
f0402a26 131 int (*dma_supported)(struct device *dev, u64 mask);
3a8f7558 132 u64 (*get_required_mask)(struct device *dev);
133d624b 133 size_t (*max_mapping_size)(struct device *dev);
f0402a26
FT
134};
135
42ee3cae
CH
136#define DMA_MAPPING_ERROR (~(dma_addr_t)0)
137
551199ac 138extern const struct dma_map_ops dma_virt_ops;
90ac706e 139extern const struct dma_map_ops dma_dummy_ops;
a8463d4b 140
8f286c33 141#define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
34c65384 142
32e8f702
JB
143#define DMA_MASK_NONE 0x0ULL
144
d6bd3a39
REB
145static inline int valid_dma_direction(int dma_direction)
146{
147 return ((dma_direction == DMA_BIDIRECTIONAL) ||
148 (dma_direction == DMA_TO_DEVICE) ||
149 (dma_direction == DMA_FROM_DEVICE));
150}
151
32e8f702
JB
152static inline int is_device_dma_capable(struct device *dev)
153{
154 return dev->dma_mask != NULL && *dev->dma_mask != DMA_MASK_NONE;
155}
156
ff4c25f2 157#ifdef CONFIG_DMA_DECLARE_COHERENT
20d666e4
CH
158/*
159 * These three functions are only for dma allocator.
160 * Don't use them in device drivers.
161 */
43fc509c 162int dma_alloc_from_dev_coherent(struct device *dev, ssize_t size,
20d666e4 163 dma_addr_t *dma_handle, void **ret);
43fc509c 164int dma_release_from_dev_coherent(struct device *dev, int order, void *vaddr);
20d666e4 165
43fc509c 166int dma_mmap_from_dev_coherent(struct device *dev, struct vm_area_struct *vma,
20d666e4 167 void *cpu_addr, size_t size, int *ret);
43fc509c
VM
168
169void *dma_alloc_from_global_coherent(ssize_t size, dma_addr_t *dma_handle);
170int dma_release_from_global_coherent(int order, void *vaddr);
171int dma_mmap_from_global_coherent(struct vm_area_struct *vma, void *cpu_addr,
172 size_t size, int *ret);
173
20d666e4 174#else
43fc509c
VM
175#define dma_alloc_from_dev_coherent(dev, size, handle, ret) (0)
176#define dma_release_from_dev_coherent(dev, order, vaddr) (0)
177#define dma_mmap_from_dev_coherent(dev, vma, vaddr, order, ret) (0)
178
179static inline void *dma_alloc_from_global_coherent(ssize_t size,
180 dma_addr_t *dma_handle)
181{
182 return NULL;
183}
184
185static inline int dma_release_from_global_coherent(int order, void *vaddr)
186{
187 return 0;
188}
189
190static inline int dma_mmap_from_global_coherent(struct vm_area_struct *vma,
191 void *cpu_addr, size_t size,
192 int *ret)
193{
194 return 0;
195}
ff4c25f2 196#endif /* CONFIG_DMA_DECLARE_COHERENT */
20d666e4 197
356da6d0
CH
198static inline bool dma_is_direct(const struct dma_map_ops *ops)
199{
200 return likely(!ops);
201}
202
203/*
204 * All the dma_direct_* declarations are here just for the indirect call bypass,
205 * and must not be used directly drivers!
206 */
207dma_addr_t dma_direct_map_page(struct device *dev, struct page *page,
208 unsigned long offset, size_t size, enum dma_data_direction dir,
209 unsigned long attrs);
210int dma_direct_map_sg(struct device *dev, struct scatterlist *sgl, int nents,
211 enum dma_data_direction dir, unsigned long attrs);
cfced786
CH
212dma_addr_t dma_direct_map_resource(struct device *dev, phys_addr_t paddr,
213 size_t size, enum dma_data_direction dir, unsigned long attrs);
356da6d0
CH
214
215#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
216 defined(CONFIG_SWIOTLB)
217void dma_direct_sync_single_for_device(struct device *dev,
218 dma_addr_t addr, size_t size, enum dma_data_direction dir);
219void dma_direct_sync_sg_for_device(struct device *dev,
220 struct scatterlist *sgl, int nents, enum dma_data_direction dir);
221#else
222static inline void dma_direct_sync_single_for_device(struct device *dev,
223 dma_addr_t addr, size_t size, enum dma_data_direction dir)
224{
225}
226static inline void dma_direct_sync_sg_for_device(struct device *dev,
227 struct scatterlist *sgl, int nents, enum dma_data_direction dir)
228{
229}
230#endif
231
232#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
233 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL) || \
234 defined(CONFIG_SWIOTLB)
235void dma_direct_unmap_page(struct device *dev, dma_addr_t addr,
236 size_t size, enum dma_data_direction dir, unsigned long attrs);
237void dma_direct_unmap_sg(struct device *dev, struct scatterlist *sgl,
238 int nents, enum dma_data_direction dir, unsigned long attrs);
239void dma_direct_sync_single_for_cpu(struct device *dev,
240 dma_addr_t addr, size_t size, enum dma_data_direction dir);
241void dma_direct_sync_sg_for_cpu(struct device *dev,
242 struct scatterlist *sgl, int nents, enum dma_data_direction dir);
243#else
244static inline void dma_direct_unmap_page(struct device *dev, dma_addr_t addr,
245 size_t size, enum dma_data_direction dir, unsigned long attrs)
246{
247}
248static inline void dma_direct_unmap_sg(struct device *dev,
249 struct scatterlist *sgl, int nents, enum dma_data_direction dir,
250 unsigned long attrs)
251{
252}
253static inline void dma_direct_sync_single_for_cpu(struct device *dev,
254 dma_addr_t addr, size_t size, enum dma_data_direction dir)
255{
256}
257static inline void dma_direct_sync_sg_for_cpu(struct device *dev,
258 struct scatterlist *sgl, int nents, enum dma_data_direction dir)
259{
260}
261#endif
262
133d624b
JR
263size_t dma_direct_max_mapping_size(struct device *dev);
264
ed6ccf10
CH
265#ifdef CONFIG_HAS_DMA
266#include <asm/dma-mapping.h>
267
268static inline const struct dma_map_ops *get_dma_ops(struct device *dev)
269{
d7e02a93 270 if (dev->dma_ops)
ed6ccf10 271 return dev->dma_ops;
d7e02a93 272 return get_arch_dma_ops(dev->bus);
ed6ccf10
CH
273}
274
275static inline void set_dma_ops(struct device *dev,
276 const struct dma_map_ops *dma_ops)
277{
278 dev->dma_ops = dma_ops;
279}
280
2e05ea5c
CH
281static inline dma_addr_t dma_map_page_attrs(struct device *dev,
282 struct page *page, size_t offset, size_t size,
283 enum dma_data_direction dir, unsigned long attrs)
e1c7e324 284{
5299709d 285 const struct dma_map_ops *ops = get_dma_ops(dev);
e1c7e324
CH
286 dma_addr_t addr;
287
e1c7e324 288 BUG_ON(!valid_dma_direction(dir));
356da6d0 289 if (dma_is_direct(ops))
2e05ea5c 290 addr = dma_direct_map_page(dev, page, offset, size, dir, attrs);
356da6d0 291 else
2e05ea5c
CH
292 addr = ops->map_page(dev, page, offset, size, dir, attrs);
293 debug_dma_map_page(dev, page, offset, size, dir, addr);
294
e1c7e324
CH
295 return addr;
296}
297
2e05ea5c
CH
298static inline void dma_unmap_page_attrs(struct device *dev, dma_addr_t addr,
299 size_t size, enum dma_data_direction dir, unsigned long attrs)
e1c7e324 300{
5299709d 301 const struct dma_map_ops *ops = get_dma_ops(dev);
e1c7e324
CH
302
303 BUG_ON(!valid_dma_direction(dir));
356da6d0
CH
304 if (dma_is_direct(ops))
305 dma_direct_unmap_page(dev, addr, size, dir, attrs);
306 else if (ops->unmap_page)
e1c7e324 307 ops->unmap_page(dev, addr, size, dir, attrs);
2e05ea5c 308 debug_dma_unmap_page(dev, addr, size, dir);
7f0fee24
CH
309}
310
e1c7e324
CH
311/*
312 * dma_maps_sg_attrs returns 0 on error and > 0 on success.
313 * It should never return a value < 0.
314 */
315static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg,
316 int nents, enum dma_data_direction dir,
00085f1e 317 unsigned long attrs)
e1c7e324 318{
5299709d 319 const struct dma_map_ops *ops = get_dma_ops(dev);
49502766 320 int ents;
e1c7e324 321
e1c7e324 322 BUG_ON(!valid_dma_direction(dir));
356da6d0
CH
323 if (dma_is_direct(ops))
324 ents = dma_direct_map_sg(dev, sg, nents, dir, attrs);
325 else
326 ents = ops->map_sg(dev, sg, nents, dir, attrs);
e1c7e324
CH
327 BUG_ON(ents < 0);
328 debug_dma_map_sg(dev, sg, nents, ents, dir);
329
330 return ents;
331}
332
333static inline void dma_unmap_sg_attrs(struct device *dev, struct scatterlist *sg,
334 int nents, enum dma_data_direction dir,
00085f1e 335 unsigned long attrs)
e1c7e324 336{
5299709d 337 const struct dma_map_ops *ops = get_dma_ops(dev);
e1c7e324
CH
338
339 BUG_ON(!valid_dma_direction(dir));
340 debug_dma_unmap_sg(dev, sg, nents, dir);
356da6d0
CH
341 if (dma_is_direct(ops))
342 dma_direct_unmap_sg(dev, sg, nents, dir, attrs);
343 else if (ops->unmap_sg)
e1c7e324
CH
344 ops->unmap_sg(dev, sg, nents, dir, attrs);
345}
346
6f3d8796
NS
347static inline dma_addr_t dma_map_resource(struct device *dev,
348 phys_addr_t phys_addr,
349 size_t size,
350 enum dma_data_direction dir,
351 unsigned long attrs)
352{
5299709d 353 const struct dma_map_ops *ops = get_dma_ops(dev);
cfced786 354 dma_addr_t addr = DMA_MAPPING_ERROR;
6f3d8796
NS
355
356 BUG_ON(!valid_dma_direction(dir));
357
358 /* Don't allow RAM to be mapped */
645386df
CH
359 if (WARN_ON_ONCE(pfn_valid(PHYS_PFN(phys_addr))))
360 return DMA_MAPPING_ERROR;
6f3d8796 361
cfced786
CH
362 if (dma_is_direct(ops))
363 addr = dma_direct_map_resource(dev, phys_addr, size, dir, attrs);
364 else if (ops->map_resource)
6f3d8796
NS
365 addr = ops->map_resource(dev, phys_addr, size, dir, attrs);
366
367 debug_dma_map_resource(dev, phys_addr, size, dir, addr);
6f3d8796
NS
368 return addr;
369}
370
371static inline void dma_unmap_resource(struct device *dev, dma_addr_t addr,
372 size_t size, enum dma_data_direction dir,
373 unsigned long attrs)
374{
5299709d 375 const struct dma_map_ops *ops = get_dma_ops(dev);
6f3d8796
NS
376
377 BUG_ON(!valid_dma_direction(dir));
cfced786 378 if (!dma_is_direct(ops) && ops->unmap_resource)
6f3d8796
NS
379 ops->unmap_resource(dev, addr, size, dir, attrs);
380 debug_dma_unmap_resource(dev, addr, size, dir);
381}
382
e1c7e324
CH
383static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr,
384 size_t size,
385 enum dma_data_direction dir)
386{
5299709d 387 const struct dma_map_ops *ops = get_dma_ops(dev);
e1c7e324
CH
388
389 BUG_ON(!valid_dma_direction(dir));
356da6d0
CH
390 if (dma_is_direct(ops))
391 dma_direct_sync_single_for_cpu(dev, addr, size, dir);
392 else if (ops->sync_single_for_cpu)
e1c7e324
CH
393 ops->sync_single_for_cpu(dev, addr, size, dir);
394 debug_dma_sync_single_for_cpu(dev, addr, size, dir);
395}
396
397static inline void dma_sync_single_for_device(struct device *dev,
398 dma_addr_t addr, size_t size,
399 enum dma_data_direction dir)
400{
5299709d 401 const struct dma_map_ops *ops = get_dma_ops(dev);
e1c7e324
CH
402
403 BUG_ON(!valid_dma_direction(dir));
356da6d0
CH
404 if (dma_is_direct(ops))
405 dma_direct_sync_single_for_device(dev, addr, size, dir);
406 else if (ops->sync_single_for_device)
e1c7e324
CH
407 ops->sync_single_for_device(dev, addr, size, dir);
408 debug_dma_sync_single_for_device(dev, addr, size, dir);
409}
410
e1c7e324
CH
411static inline void
412dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
413 int nelems, enum dma_data_direction dir)
414{
5299709d 415 const struct dma_map_ops *ops = get_dma_ops(dev);
e1c7e324
CH
416
417 BUG_ON(!valid_dma_direction(dir));
356da6d0
CH
418 if (dma_is_direct(ops))
419 dma_direct_sync_sg_for_cpu(dev, sg, nelems, dir);
420 else if (ops->sync_sg_for_cpu)
e1c7e324
CH
421 ops->sync_sg_for_cpu(dev, sg, nelems, dir);
422 debug_dma_sync_sg_for_cpu(dev, sg, nelems, dir);
423}
424
425static inline void
426dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
427 int nelems, enum dma_data_direction dir)
428{
5299709d 429 const struct dma_map_ops *ops = get_dma_ops(dev);
e1c7e324
CH
430
431 BUG_ON(!valid_dma_direction(dir));
356da6d0
CH
432 if (dma_is_direct(ops))
433 dma_direct_sync_sg_for_device(dev, sg, nelems, dir);
434 else if (ops->sync_sg_for_device)
e1c7e324
CH
435 ops->sync_sg_for_device(dev, sg, nelems, dir);
436 debug_dma_sync_sg_for_device(dev, sg, nelems, dir);
437
438}
439
ed6ccf10
CH
440static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
441{
442 debug_dma_mapping_error(dev, dma_addr);
443
444 if (dma_addr == DMA_MAPPING_ERROR)
445 return -ENOMEM;
446 return 0;
447}
448
449void *dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
450 gfp_t flag, unsigned long attrs);
451void dma_free_attrs(struct device *dev, size_t size, void *cpu_addr,
452 dma_addr_t dma_handle, unsigned long attrs);
453void *dmam_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
454 gfp_t gfp, unsigned long attrs);
455void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
456 dma_addr_t dma_handle);
457void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
458 enum dma_data_direction dir);
459int dma_get_sgtable_attrs(struct device *dev, struct sg_table *sgt,
460 void *cpu_addr, dma_addr_t dma_addr, size_t size,
461 unsigned long attrs);
462int dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma,
463 void *cpu_addr, dma_addr_t dma_addr, size_t size,
464 unsigned long attrs);
465int dma_supported(struct device *dev, u64 mask);
466int dma_set_mask(struct device *dev, u64 mask);
467int dma_set_coherent_mask(struct device *dev, u64 mask);
468u64 dma_get_required_mask(struct device *dev);
133d624b 469size_t dma_max_mapping_size(struct device *dev);
ed6ccf10
CH
470#else /* CONFIG_HAS_DMA */
471static inline dma_addr_t dma_map_page_attrs(struct device *dev,
472 struct page *page, size_t offset, size_t size,
473 enum dma_data_direction dir, unsigned long attrs)
474{
475 return DMA_MAPPING_ERROR;
476}
477static inline void dma_unmap_page_attrs(struct device *dev, dma_addr_t addr,
478 size_t size, enum dma_data_direction dir, unsigned long attrs)
479{
480}
481static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg,
482 int nents, enum dma_data_direction dir, unsigned long attrs)
483{
484 return 0;
485}
486static inline void dma_unmap_sg_attrs(struct device *dev,
487 struct scatterlist *sg, int nents, enum dma_data_direction dir,
488 unsigned long attrs)
489{
490}
491static inline dma_addr_t dma_map_resource(struct device *dev,
492 phys_addr_t phys_addr, size_t size, enum dma_data_direction dir,
493 unsigned long attrs)
494{
495 return DMA_MAPPING_ERROR;
496}
497static inline void dma_unmap_resource(struct device *dev, dma_addr_t addr,
498 size_t size, enum dma_data_direction dir, unsigned long attrs)
499{
500}
501static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr,
502 size_t size, enum dma_data_direction dir)
503{
504}
505static inline void dma_sync_single_for_device(struct device *dev,
506 dma_addr_t addr, size_t size, enum dma_data_direction dir)
507{
508}
509static inline void dma_sync_sg_for_cpu(struct device *dev,
510 struct scatterlist *sg, int nelems, enum dma_data_direction dir)
511{
512}
513static inline void dma_sync_sg_for_device(struct device *dev,
514 struct scatterlist *sg, int nelems, enum dma_data_direction dir)
515{
516}
517static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
518{
519 return -ENOMEM;
520}
521static inline void *dma_alloc_attrs(struct device *dev, size_t size,
522 dma_addr_t *dma_handle, gfp_t flag, unsigned long attrs)
523{
524 return NULL;
525}
526static void dma_free_attrs(struct device *dev, size_t size, void *cpu_addr,
527 dma_addr_t dma_handle, unsigned long attrs)
528{
529}
530static inline void *dmam_alloc_attrs(struct device *dev, size_t size,
531 dma_addr_t *dma_handle, gfp_t gfp, unsigned long attrs)
532{
533 return NULL;
534}
535static inline void dmam_free_coherent(struct device *dev, size_t size,
536 void *vaddr, dma_addr_t dma_handle)
537{
538}
539static inline void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
540 enum dma_data_direction dir)
541{
542}
543static inline int dma_get_sgtable_attrs(struct device *dev,
544 struct sg_table *sgt, void *cpu_addr, dma_addr_t dma_addr,
545 size_t size, unsigned long attrs)
546{
547 return -ENXIO;
548}
549static inline int dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma,
550 void *cpu_addr, dma_addr_t dma_addr, size_t size,
551 unsigned long attrs)
552{
553 return -ENXIO;
554}
555static inline int dma_supported(struct device *dev, u64 mask)
556{
557 return 0;
558}
559static inline int dma_set_mask(struct device *dev, u64 mask)
560{
561 return -EIO;
562}
563static inline int dma_set_coherent_mask(struct device *dev, u64 mask)
564{
565 return -EIO;
566}
567static inline u64 dma_get_required_mask(struct device *dev)
568{
569 return 0;
570}
133d624b
JR
571static inline size_t dma_max_mapping_size(struct device *dev)
572{
573 return 0;
574}
ed6ccf10
CH
575#endif /* CONFIG_HAS_DMA */
576
2e05ea5c
CH
577static inline dma_addr_t dma_map_single_attrs(struct device *dev, void *ptr,
578 size_t size, enum dma_data_direction dir, unsigned long attrs)
579{
580 debug_dma_map_single(dev, ptr, size);
581 return dma_map_page_attrs(dev, virt_to_page(ptr), offset_in_page(ptr),
582 size, dir, attrs);
583}
584
585static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t addr,
586 size_t size, enum dma_data_direction dir, unsigned long attrs)
587{
588 return dma_unmap_page_attrs(dev, addr, size, dir, attrs);
589}
590
ed6ccf10
CH
591static inline void dma_sync_single_range_for_cpu(struct device *dev,
592 dma_addr_t addr, unsigned long offset, size_t size,
593 enum dma_data_direction dir)
594{
595 return dma_sync_single_for_cpu(dev, addr + offset, size, dir);
596}
597
598static inline void dma_sync_single_range_for_device(struct device *dev,
599 dma_addr_t addr, unsigned long offset, size_t size,
600 enum dma_data_direction dir)
601{
602 return dma_sync_single_for_device(dev, addr + offset, size, dir);
603}
604
00085f1e
KK
605#define dma_map_single(d, a, s, r) dma_map_single_attrs(d, a, s, r, 0)
606#define dma_unmap_single(d, a, s, r) dma_unmap_single_attrs(d, a, s, r, 0)
607#define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, 0)
608#define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, 0)
0495c3d3
AD
609#define dma_map_page(d, p, o, s, r) dma_map_page_attrs(d, p, o, s, r, 0)
610#define dma_unmap_page(d, a, s, r) dma_unmap_page_attrs(d, a, s, r, 0)
ed6ccf10
CH
611#define dma_get_sgtable(d, t, v, h, s) dma_get_sgtable_attrs(d, t, v, h, s, 0)
612#define dma_mmap_coherent(d, v, c, h, s) dma_mmap_attrs(d, v, c, h, s, 0)
c9eb6172 613
e1c7e324 614extern int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
58b04406
CH
615 void *cpu_addr, dma_addr_t dma_addr, size_t size,
616 unsigned long attrs);
e1c7e324
CH
617
618void *dma_common_contiguous_remap(struct page *page, size_t size,
619 unsigned long vm_flags,
620 pgprot_t prot, const void *caller);
621
622void *dma_common_pages_remap(struct page **pages, size_t size,
623 unsigned long vm_flags, pgprot_t prot,
624 const void *caller);
625void dma_common_free_remap(void *cpu_addr, size_t size, unsigned long vm_flags);
626
0c3b3171
CH
627int __init dma_atomic_pool_init(gfp_t gfp, pgprot_t prot);
628bool dma_in_atomic_pool(void *start, size_t size);
629void *dma_alloc_from_pool(size_t size, struct page **ret_page, gfp_t flags);
630bool dma_free_from_pool(void *start, size_t size);
e1c7e324 631
e1c7e324 632int
9406a49f
CH
633dma_common_get_sgtable(struct device *dev, struct sg_table *sgt, void *cpu_addr,
634 dma_addr_t dma_addr, size_t size, unsigned long attrs);
e1c7e324 635
e1c7e324 636static inline void *dma_alloc_coherent(struct device *dev, size_t size,
7ed1d91a 637 dma_addr_t *dma_handle, gfp_t gfp)
e1c7e324 638{
7ed1d91a
CH
639
640 return dma_alloc_attrs(dev, size, dma_handle, gfp,
641 (gfp & __GFP_NOWARN) ? DMA_ATTR_NO_WARN : 0);
e1c7e324
CH
642}
643
644static inline void dma_free_coherent(struct device *dev, size_t size,
645 void *cpu_addr, dma_addr_t dma_handle)
646{
00085f1e 647 return dma_free_attrs(dev, size, cpu_addr, dma_handle, 0);
e1c7e324
CH
648}
649
1da177e4 650
589fc9a6
FT
651static inline u64 dma_get_mask(struct device *dev)
652{
d7e02a93 653 if (dev->dma_mask && *dev->dma_mask)
589fc9a6 654 return *dev->dma_mask;
284901a9 655 return DMA_BIT_MASK(32);
589fc9a6
FT
656}
657
4aa806b7
RK
658/*
659 * Set both the DMA mask and the coherent DMA mask to the same thing.
660 * Note that we don't check the return value from dma_set_coherent_mask()
661 * as the DMA API guarantees that the coherent DMA mask can be set to
662 * the same or smaller than the streaming DMA mask.
663 */
664static inline int dma_set_mask_and_coherent(struct device *dev, u64 mask)
665{
666 int rc = dma_set_mask(dev, mask);
667 if (rc == 0)
668 dma_set_coherent_mask(dev, mask);
669 return rc;
670}
671
fa6a8d6d
RK
672/*
673 * Similar to the above, except it deals with the case where the device
674 * does not have dev->dma_mask appropriately setup.
675 */
676static inline int dma_coerce_mask_and_coherent(struct device *dev, u64 mask)
677{
678 dev->dma_mask = &dev->coherent_dma_mask;
679 return dma_set_mask_and_coherent(dev, mask);
680}
681
347cb6af
CH
682#ifdef CONFIG_ARCH_HAS_SETUP_DMA_OPS
683void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size,
684 const struct iommu_ops *iommu, bool coherent);
685#else
97890ba9 686static inline void arch_setup_dma_ops(struct device *dev, u64 dma_base,
347cb6af
CH
687 u64 size, const struct iommu_ops *iommu, bool coherent)
688{
689}
690#endif /* CONFIG_ARCH_HAS_SETUP_DMA_OPS */
97890ba9 691
dc2acded
CH
692#ifdef CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS
693void arch_teardown_dma_ops(struct device *dev);
694#else
695static inline void arch_teardown_dma_ops(struct device *dev)
696{
697}
698#endif /* CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS */
591c1ee4 699
6b7b6510
FT
700static inline unsigned int dma_get_max_seg_size(struct device *dev)
701{
002edb6f
RM
702 if (dev->dma_parms && dev->dma_parms->max_segment_size)
703 return dev->dma_parms->max_segment_size;
704 return SZ_64K;
6b7b6510
FT
705}
706
c9d76d06 707static inline int dma_set_max_seg_size(struct device *dev, unsigned int size)
6b7b6510
FT
708{
709 if (dev->dma_parms) {
710 dev->dma_parms->max_segment_size = size;
711 return 0;
002edb6f
RM
712 }
713 return -EIO;
6b7b6510
FT
714}
715
d22a6966
FT
716static inline unsigned long dma_get_seg_boundary(struct device *dev)
717{
002edb6f
RM
718 if (dev->dma_parms && dev->dma_parms->segment_boundary_mask)
719 return dev->dma_parms->segment_boundary_mask;
720 return DMA_BIT_MASK(32);
d22a6966
FT
721}
722
723static inline int dma_set_seg_boundary(struct device *dev, unsigned long mask)
724{
725 if (dev->dma_parms) {
726 dev->dma_parms->segment_boundary_mask = mask;
727 return 0;
002edb6f
RM
728 }
729 return -EIO;
d22a6966
FT
730}
731
00c8f162
SS
732#ifndef dma_max_pfn
733static inline unsigned long dma_max_pfn(struct device *dev)
734{
a41ef1e4 735 return (*dev->dma_mask >> PAGE_SHIFT) + dev->dma_pfn_offset;
00c8f162
SS
736}
737#endif
738
4565f017
FT
739static inline int dma_get_cache_alignment(void)
740{
741#ifdef ARCH_DMA_MINALIGN
742 return ARCH_DMA_MINALIGN;
743#endif
744 return 1;
745}
746
ff4c25f2 747#ifdef CONFIG_DMA_DECLARE_COHERENT
20d666e4 748int dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
82c5de0a 749 dma_addr_t device_addr, size_t size);
20d666e4 750void dma_release_declared_memory(struct device *dev);
20d666e4 751#else
1da177e4 752static inline int
88a984ba 753dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
82c5de0a 754 dma_addr_t device_addr, size_t size)
1da177e4 755{
2436bdcd 756 return -ENOSYS;
1da177e4
LT
757}
758
759static inline void
760dma_release_declared_memory(struct device *dev)
761{
762}
ff4c25f2 763#endif /* CONFIG_DMA_DECLARE_COHERENT */
1da177e4 764
d7076f07
CH
765static inline void *dmam_alloc_coherent(struct device *dev, size_t size,
766 dma_addr_t *dma_handle, gfp_t gfp)
767{
768 return dmam_alloc_attrs(dev, size, dma_handle, gfp,
769 (gfp & __GFP_NOWARN) ? DMA_ATTR_NO_WARN : 0);
770}
771
f6e45661
LR
772static inline void *dma_alloc_wc(struct device *dev, size_t size,
773 dma_addr_t *dma_addr, gfp_t gfp)
b4bbb107 774{
0cd60eb1 775 unsigned long attrs = DMA_ATTR_WRITE_COMBINE;
7ed1d91a
CH
776
777 if (gfp & __GFP_NOWARN)
778 attrs |= DMA_ATTR_NO_WARN;
779
780 return dma_alloc_attrs(dev, size, dma_addr, gfp, attrs);
b4bbb107 781}
f6e45661
LR
782#ifndef dma_alloc_writecombine
783#define dma_alloc_writecombine dma_alloc_wc
784#endif
b4bbb107 785
f6e45661
LR
786static inline void dma_free_wc(struct device *dev, size_t size,
787 void *cpu_addr, dma_addr_t dma_addr)
b4bbb107 788{
00085f1e
KK
789 return dma_free_attrs(dev, size, cpu_addr, dma_addr,
790 DMA_ATTR_WRITE_COMBINE);
b4bbb107 791}
f6e45661
LR
792#ifndef dma_free_writecombine
793#define dma_free_writecombine dma_free_wc
794#endif
b4bbb107 795
f6e45661
LR
796static inline int dma_mmap_wc(struct device *dev,
797 struct vm_area_struct *vma,
798 void *cpu_addr, dma_addr_t dma_addr,
799 size_t size)
b4bbb107 800{
00085f1e
KK
801 return dma_mmap_attrs(dev, vma, cpu_addr, dma_addr, size,
802 DMA_ATTR_WRITE_COMBINE);
b4bbb107 803}
f6e45661
LR
804#ifndef dma_mmap_writecombine
805#define dma_mmap_writecombine dma_mmap_wc
806#endif
74bc7cee 807
f616ab59 808#ifdef CONFIG_NEED_DMA_MAP_STATE
0acedc12
FT
809#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME
810#define DEFINE_DMA_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME
811#define dma_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME)
812#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL))
813#define dma_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME)
814#define dma_unmap_len_set(PTR, LEN_NAME, VAL) (((PTR)->LEN_NAME) = (VAL))
815#else
816#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME)
817#define DEFINE_DMA_UNMAP_LEN(LEN_NAME)
818#define dma_unmap_addr(PTR, ADDR_NAME) (0)
819#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
820#define dma_unmap_len(PTR, LEN_NAME) (0)
821#define dma_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
822#endif
823
9ac7849e 824#endif