x86, ia64: convert to use generic dma_map_ops struct
[linux-2.6] / include / linux / swiotlb.h
1 #ifndef __LINUX_SWIOTLB_H
2 #define __LINUX_SWIOTLB_H
3
4 #include <linux/types.h>
5
6 struct device;
7 struct dma_attrs;
8 struct scatterlist;
9
10 /*
11  * Maximum allowable number of contiguous slabs to map,
12  * must be a power of 2.  What is the appropriate value ?
13  * The complexity of {map,unmap}_single is linearly dependent on this value.
14  */
15 #define IO_TLB_SEGSIZE  128
16
17
18 /*
19  * log of the size of each IO TLB slab.  The number of slabs is command line
20  * controllable.
21  */
22 #define IO_TLB_SHIFT 11
23
24 extern void
25 swiotlb_init(void);
26
27 extern void *swiotlb_alloc_boot(size_t bytes, unsigned long nslabs);
28 extern void *swiotlb_alloc(unsigned order, unsigned long nslabs);
29
30 extern dma_addr_t swiotlb_phys_to_bus(struct device *hwdev,
31                                       phys_addr_t address);
32 extern phys_addr_t swiotlb_bus_to_phys(dma_addr_t address);
33
34 extern int swiotlb_arch_range_needs_mapping(void *ptr, size_t size);
35
36 extern void
37 *swiotlb_alloc_coherent(struct device *hwdev, size_t size,
38                         dma_addr_t *dma_handle, gfp_t flags);
39
40 extern void
41 swiotlb_free_coherent(struct device *hwdev, size_t size,
42                       void *vaddr, dma_addr_t dma_handle);
43
44 extern dma_addr_t
45 swiotlb_map_single(struct device *hwdev, void *ptr, size_t size, int dir);
46
47 extern void
48 swiotlb_unmap_single(struct device *hwdev, dma_addr_t dev_addr,
49                      size_t size, int dir);
50
51 extern dma_addr_t
52 swiotlb_map_single_attrs(struct device *hwdev, void *ptr, size_t size,
53                          int dir, struct dma_attrs *attrs);
54
55 extern void
56 swiotlb_unmap_single_attrs(struct device *hwdev, dma_addr_t dev_addr,
57                            size_t size, int dir, struct dma_attrs *attrs);
58
59 extern int
60 swiotlb_map_sg(struct device *hwdev, struct scatterlist *sg, int nents,
61                int direction);
62
63 extern void
64 swiotlb_unmap_sg(struct device *hwdev, struct scatterlist *sg, int nents,
65                  int direction);
66
67 extern int
68 swiotlb_map_sg_attrs(struct device *hwdev, struct scatterlist *sgl, int nelems,
69                      enum dma_data_direction dir, struct dma_attrs *attrs);
70
71 extern void
72 swiotlb_unmap_sg_attrs(struct device *hwdev, struct scatterlist *sgl,
73                        int nelems, enum dma_data_direction dir,
74                        struct dma_attrs *attrs);
75
76 extern void
77 swiotlb_sync_single_for_cpu(struct device *hwdev, dma_addr_t dev_addr,
78                             size_t size, enum dma_data_direction dir);
79
80 extern void
81 swiotlb_sync_sg_for_cpu(struct device *hwdev, struct scatterlist *sg,
82                         int nelems, enum dma_data_direction dir);
83
84 extern void
85 swiotlb_sync_single_for_device(struct device *hwdev, dma_addr_t dev_addr,
86                                size_t size, enum dma_data_direction dir);
87
88 extern void
89 swiotlb_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg,
90                            int nelems, enum dma_data_direction dir);
91
92 extern void
93 swiotlb_sync_single_range_for_cpu(struct device *hwdev, dma_addr_t dev_addr,
94                                   unsigned long offset, size_t size,
95                                   enum dma_data_direction dir);
96
97 extern void
98 swiotlb_sync_single_range_for_device(struct device *hwdev, dma_addr_t dev_addr,
99                                      unsigned long offset, size_t size,
100                                      enum dma_data_direction dir);
101
102 extern int
103 swiotlb_dma_mapping_error(struct device *hwdev, dma_addr_t dma_addr);
104
105 extern int
106 swiotlb_dma_supported(struct device *hwdev, u64 mask);
107
108 #endif /* __LINUX_SWIOTLB_H */