]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/include/asm/dma-mapping.h
UBUNTU: Ubuntu-4.13.0-45.50
[mirror_ubuntu-artful-kernel.git] / arch / x86 / include / asm / dma-mapping.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_DMA_MAPPING_H
2#define _ASM_X86_DMA_MAPPING_H
6f536635
GC
3
4/*
395cf969 5 * IOMMU interface. See Documentation/DMA-API-HOWTO.txt and
5872fb94 6 * Documentation/DMA-API.txt for documentation.
6f536635
GC
7 */
8
d7002857 9#include <linux/kmemcheck.h>
6f536635 10#include <linux/scatterlist.h>
2118d0c5 11#include <linux/dma-debug.h>
6f536635
GC
12#include <asm/io.h>
13#include <asm/swiotlb.h>
0a2b9a6e 14#include <linux/dma-contiguous.h>
6f536635 15
eb647138
JB
16#ifdef CONFIG_ISA
17# define ISA_DMA_BIT_MASK DMA_BIT_MASK(24)
18#else
19# define ISA_DMA_BIT_MASK DMA_BIT_MASK(32)
20#endif
21
b7107a3d 22extern int iommu_merge;
6c505ce3 23extern struct device x86_dma_fallback_dev;
b7107a3d 24extern int panic_on_overflow;
7c183416 25
5299709d 26extern const struct dma_map_ops *dma_ops;
160c1d8e 27
815dd187 28static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
c786df08 29{
8d8bb39b 30 return dma_ops;
8d8bb39b
FT
31}
32
6894258e
CH
33bool arch_dma_alloc_attrs(struct device **dev, gfp_t *gfp);
34#define arch_dma_alloc_attrs arch_dma_alloc_attrs
35
9f6ac577 36extern void *dma_generic_alloc_coherent(struct device *dev, size_t size,
baa676fc 37 dma_addr_t *dma_addr, gfp_t flag,
00085f1e 38 unsigned long attrs);
9f6ac577 39
0a2b9a6e
MS
40extern void dma_generic_free_coherent(struct device *dev, size_t size,
41 void *vaddr, dma_addr_t dma_addr,
00085f1e 42 unsigned long attrs);
0a2b9a6e 43
f7219a53
AR
44#ifdef CONFIG_X86_DMA_REMAP /* Platform code defines bridge-specific code */
45extern bool dma_capable(struct device *dev, dma_addr_t addr, size_t size);
46extern dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr);
47extern phys_addr_t dma_to_phys(struct device *dev, dma_addr_t daddr);
48#else
49
99becaca
FT
50static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size)
51{
52 if (!dev->dma_mask)
53 return 0;
54
ac2b3e67 55 return addr + size - 1 <= *dev->dma_mask;
99becaca
FT
56}
57
8d4f5339
FT
58static inline dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr)
59{
60 return paddr;
61}
62
63static inline phys_addr_t dma_to_phys(struct device *dev, dma_addr_t daddr)
64{
65 return daddr;
66}
f7219a53 67#endif /* CONFIG_X86_DMA_REMAP */
8d4f5339 68
3cb6a917
GC
69static inline void
70dma_cache_sync(struct device *dev, void *vaddr, size_t size,
71 enum dma_data_direction dir)
72{
73 flush_write_buffers();
74}
ae17a63b 75
823e7e8c
FT
76static inline unsigned long dma_alloc_coherent_mask(struct device *dev,
77 gfp_t gfp)
78{
79 unsigned long dma_mask = 0;
b7107a3d 80
823e7e8c
FT
81 dma_mask = dev->coherent_dma_mask;
82 if (!dma_mask)
2f4f27d4 83 dma_mask = (gfp & GFP_DMA) ? DMA_BIT_MASK(24) : DMA_BIT_MASK(32);
823e7e8c
FT
84
85 return dma_mask;
86}
87
88static inline gfp_t dma_alloc_coherent_gfp_flags(struct device *dev, gfp_t gfp)
89{
90 unsigned long dma_mask = dma_alloc_coherent_mask(dev, gfp);
91
2f4f27d4 92 if (dma_mask <= DMA_BIT_MASK(24))
75bebb7f
FT
93 gfp |= GFP_DMA;
94#ifdef CONFIG_X86_64
284901a9 95 if (dma_mask <= DMA_BIT_MASK(32) && !(gfp & GFP_DMA))
823e7e8c
FT
96 gfp |= GFP_DMA32;
97#endif
98 return gfp;
99}
100
6f536635 101#endif