1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#ifndef __DMA_IOMMU_H
17#define __DMA_IOMMU_H
18
19#ifdef __KERNEL__
20#include <linux/types.h>
21#include <asm/errno.h>
22
23#ifdef CONFIG_IOMMU_DMA
24#include <linux/dma-mapping.h>
25#include <linux/iommu.h>
26#include <linux/msi.h>
27
28int iommu_dma_init(void);
29
30
31int iommu_get_dma_cookie(struct iommu_domain *domain);
32int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base);
33void iommu_put_dma_cookie(struct iommu_domain *domain);
34
35
36int iommu_dma_init_domain(struct iommu_domain *domain, dma_addr_t base,
37 u64 size, struct device *dev);
38
39
40int dma_info_to_prot(enum dma_data_direction dir, bool coherent,
41 unsigned long attrs);
42
43
44
45
46
47struct page **iommu_dma_alloc(struct device *dev, size_t size, gfp_t gfp,
48 unsigned long attrs, int prot, dma_addr_t *handle,
49 void (*flush_page)(struct device *, const void *, phys_addr_t));
50void iommu_dma_free(struct device *dev, struct page **pages, size_t size,
51 dma_addr_t *handle);
52
53int iommu_dma_mmap(struct page **pages, size_t size, struct vm_area_struct *vma);
54
55dma_addr_t iommu_dma_map_page(struct device *dev, struct page *page,
56 unsigned long offset, size_t size, int prot);
57int iommu_dma_map_sg(struct device *dev, struct scatterlist *sg,
58 int nents, int prot);
59
60
61
62
63
64void iommu_dma_unmap_page(struct device *dev, dma_addr_t handle, size_t size,
65 enum dma_data_direction dir, unsigned long attrs);
66void iommu_dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
67 enum dma_data_direction dir, unsigned long attrs);
68dma_addr_t iommu_dma_map_resource(struct device *dev, phys_addr_t phys,
69 size_t size, enum dma_data_direction dir, unsigned long attrs);
70void iommu_dma_unmap_resource(struct device *dev, dma_addr_t handle,
71 size_t size, enum dma_data_direction dir, unsigned long attrs);
72
73
74void iommu_dma_map_msi_msg(int irq, struct msi_msg *msg);
75void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list);
76
77#else
78
79struct iommu_domain;
80struct msi_msg;
81struct device;
82
83static inline int iommu_dma_init(void)
84{
85 return 0;
86}
87
88static inline int iommu_get_dma_cookie(struct iommu_domain *domain)
89{
90 return -ENODEV;
91}
92
93static inline int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base)
94{
95 return -ENODEV;
96}
97
98static inline void iommu_put_dma_cookie(struct iommu_domain *domain)
99{
100}
101
102static inline void iommu_dma_map_msi_msg(int irq, struct msi_msg *msg)
103{
104}
105
106static inline void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list)
107{
108}
109
110#endif
111#endif
112#endif
113