blob: b406261d88871206742d827d38772941ebfa6a32 [file] [log] [blame]
Joerg Roedel16489932008-10-15 22:01:03 -07001#ifndef __LINUX_SWIOTLB_H
2#define __LINUX_SWIOTLB_H
3
4#include <linux/types.h>
5
6struct device;
7struct dma_attrs;
8struct scatterlist;
9
FUJITA Tomonori69594502009-11-14 20:46:38 +090010extern int swiotlb_force;
11
Ian Campbell0016fde2008-12-16 12:17:27 -080012/*
13 * Maximum allowable number of contiguous slabs to map,
14 * must be a power of 2. What is the appropriate value ?
15 * The complexity of {map,unmap}_single is linearly dependent on this value.
16 */
17#define IO_TLB_SEGSIZE 128
18
Ian Campbell0016fde2008-12-16 12:17:27 -080019/*
20 * log of the size of each IO TLB slab. The number of slabs is command line
21 * controllable.
22 */
23#define IO_TLB_SHIFT 11
24
FUJITA Tomonoriad32e8c2009-11-10 19:46:19 +090025extern void swiotlb_init(int verbose);
FUJITA Tomonoriabbceff2010-05-10 15:15:12 -040026extern void swiotlb_init_with_tbl(char *tlb, unsigned long nslabs, int verbose);
Joerg Roedel16489932008-10-15 22:01:03 -070027
Joerg Roedel16489932008-10-15 22:01:03 -070028extern void
29*swiotlb_alloc_coherent(struct device *hwdev, size_t size,
30 dma_addr_t *dma_handle, gfp_t flags);
31
32extern void
33swiotlb_free_coherent(struct device *hwdev, size_t size,
34 void *vaddr, dma_addr_t dma_handle);
35
FUJITA Tomonorif98eee82009-01-05 23:59:03 +090036extern dma_addr_t swiotlb_map_page(struct device *dev, struct page *page,
37 unsigned long offset, size_t size,
38 enum dma_data_direction dir,
39 struct dma_attrs *attrs);
40extern void swiotlb_unmap_page(struct device *hwdev, dma_addr_t dev_addr,
41 size_t size, enum dma_data_direction dir,
42 struct dma_attrs *attrs);
Joerg Roedel16489932008-10-15 22:01:03 -070043
44extern int
45swiotlb_map_sg(struct device *hwdev, struct scatterlist *sg, int nents,
46 int direction);
47
48extern void
49swiotlb_unmap_sg(struct device *hwdev, struct scatterlist *sg, int nents,
50 int direction);
51
52extern int
53swiotlb_map_sg_attrs(struct device *hwdev, struct scatterlist *sgl, int nelems,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +090054 enum dma_data_direction dir, struct dma_attrs *attrs);
Joerg Roedel16489932008-10-15 22:01:03 -070055
56extern void
57swiotlb_unmap_sg_attrs(struct device *hwdev, struct scatterlist *sgl,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +090058 int nelems, enum dma_data_direction dir,
59 struct dma_attrs *attrs);
Joerg Roedel16489932008-10-15 22:01:03 -070060
61extern void
62swiotlb_sync_single_for_cpu(struct device *hwdev, dma_addr_t dev_addr,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +090063 size_t size, enum dma_data_direction dir);
Joerg Roedel16489932008-10-15 22:01:03 -070064
65extern void
66swiotlb_sync_sg_for_cpu(struct device *hwdev, struct scatterlist *sg,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +090067 int nelems, enum dma_data_direction dir);
Joerg Roedel16489932008-10-15 22:01:03 -070068
69extern void
70swiotlb_sync_single_for_device(struct device *hwdev, dma_addr_t dev_addr,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +090071 size_t size, enum dma_data_direction dir);
Joerg Roedel16489932008-10-15 22:01:03 -070072
73extern void
74swiotlb_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +090075 int nelems, enum dma_data_direction dir);
Joerg Roedel16489932008-10-15 22:01:03 -070076
Joerg Roedel16489932008-10-15 22:01:03 -070077extern int
78swiotlb_dma_mapping_error(struct device *hwdev, dma_addr_t dma_addr);
79
80extern int
81swiotlb_dma_supported(struct device *hwdev, u64 mask);
82
FUJITA Tomonori5740afd2009-11-10 19:46:18 +090083#ifdef CONFIG_SWIOTLB
84extern void __init swiotlb_free(void);
85#else
86static inline void swiotlb_free(void) { }
87#endif
88
FUJITA Tomonoriad32e8c2009-11-10 19:46:19 +090089extern void swiotlb_print_info(void);
Joerg Roedel16489932008-10-15 22:01:03 -070090#endif /* __LINUX_SWIOTLB_H */