aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/include/asm/dma-mapping.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ia64/include/asm/dma-mapping.h')
-rw-r--r--arch/ia64/include/asm/dma-mapping.h41
1 files changed, 24 insertions, 17 deletions
diff --git a/arch/ia64/include/asm/dma-mapping.h b/arch/ia64/include/asm/dma-mapping.h
index 5298f4064e3..bac3159379f 100644
--- a/arch/ia64/include/asm/dma-mapping.h
+++ b/arch/ia64/include/asm/dma-mapping.h
@@ -68,13 +68,15 @@ extern void set_iommu_machvec(void);
68static inline void *dma_alloc_coherent(struct device *dev, size_t size, 68static inline void *dma_alloc_coherent(struct device *dev, size_t size,
69 dma_addr_t *daddr, gfp_t gfp) 69 dma_addr_t *daddr, gfp_t gfp)
70{ 70{
71 return dma_ops->alloc_coherent(dev, size, daddr, gfp | GFP_DMA); 71 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
72 return ops->alloc_coherent(dev, size, daddr, gfp | GFP_DMA);
72} 73}
73 74
74static inline void dma_free_coherent(struct device *dev, size_t size, 75static inline void dma_free_coherent(struct device *dev, size_t size,
75 void *caddr, dma_addr_t daddr) 76 void *caddr, dma_addr_t daddr)
76{ 77{
77 dma_ops->free_coherent(dev, size, caddr, daddr); 78 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
79 ops->free_coherent(dev, size, caddr, daddr);
78} 80}
79 81
80#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f) 82#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
@@ -85,7 +87,8 @@ static inline dma_addr_t dma_map_single_attrs(struct device *dev,
85 enum dma_data_direction dir, 87 enum dma_data_direction dir,
86 struct dma_attrs *attrs) 88 struct dma_attrs *attrs)
87{ 89{
88 return dma_ops->map_single_attrs(dev, caddr, size, dir, attrs); 90 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
91 return ops->map_single_attrs(dev, caddr, size, dir, attrs);
89} 92}
90 93
91static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t daddr, 94static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t daddr,
@@ -93,7 +96,8 @@ static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t daddr,
93 enum dma_data_direction dir, 96 enum dma_data_direction dir,
94 struct dma_attrs *attrs) 97 struct dma_attrs *attrs)
95{ 98{
96 dma_ops->unmap_single_attrs(dev, daddr, size, dir, attrs); 99 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
100 ops->unmap_single_attrs(dev, daddr, size, dir, attrs);
97} 101}
98 102
99#define dma_map_single(d, a, s, r) dma_map_single_attrs(d, a, s, r, NULL) 103#define dma_map_single(d, a, s, r) dma_map_single_attrs(d, a, s, r, NULL)
@@ -103,7 +107,8 @@ static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sgl,
103 int nents, enum dma_data_direction dir, 107 int nents, enum dma_data_direction dir,
104 struct dma_attrs *attrs) 108 struct dma_attrs *attrs)
105{ 109{
106 return dma_ops->map_sg_attrs(dev, sgl, nents, dir, attrs); 110 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
111 return ops->map_sg_attrs(dev, sgl, nents, dir, attrs);
107} 112}
108 113
109static inline void dma_unmap_sg_attrs(struct device *dev, 114static inline void dma_unmap_sg_attrs(struct device *dev,
@@ -111,7 +116,8 @@ static inline void dma_unmap_sg_attrs(struct device *dev,
111 enum dma_data_direction dir, 116 enum dma_data_direction dir,
112 struct dma_attrs *attrs) 117 struct dma_attrs *attrs)
113{ 118{
114 dma_ops->unmap_sg_attrs(dev, sgl, nents, dir, attrs); 119 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
120 ops->unmap_sg_attrs(dev, sgl, nents, dir, attrs);
115} 121}
116 122
117#define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, NULL) 123#define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, NULL)
@@ -121,14 +127,16 @@ static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t daddr,
121 size_t size, 127 size_t size,
122 enum dma_data_direction dir) 128 enum dma_data_direction dir)
123{ 129{
124 dma_ops->sync_single_for_cpu(dev, daddr, size, dir); 130 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
131 ops->sync_single_for_cpu(dev, daddr, size, dir);
125} 132}
126 133
127static inline void dma_sync_sg_for_cpu(struct device *dev, 134static inline void dma_sync_sg_for_cpu(struct device *dev,
128 struct scatterlist *sgl, 135 struct scatterlist *sgl,
129 int nents, enum dma_data_direction dir) 136 int nents, enum dma_data_direction dir)
130{ 137{
131 dma_ops->sync_sg_for_cpu(dev, sgl, nents, dir); 138 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
139 ops->sync_sg_for_cpu(dev, sgl, nents, dir);
132} 140}
133 141
134static inline void dma_sync_single_for_device(struct device *dev, 142static inline void dma_sync_single_for_device(struct device *dev,
@@ -136,7 +144,8 @@ static inline void dma_sync_single_for_device(struct device *dev,
136 size_t size, 144 size_t size,
137 enum dma_data_direction dir) 145 enum dma_data_direction dir)
138{ 146{
139 dma_ops->sync_single_for_device(dev, daddr, size, dir); 147 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
148 ops->sync_single_for_device(dev, daddr, size, dir);
140} 149}
141 150
142static inline void dma_sync_sg_for_device(struct device *dev, 151static inline void dma_sync_sg_for_device(struct device *dev,
@@ -144,12 +153,14 @@ static inline void dma_sync_sg_for_device(struct device *dev,
144 int nents, 153 int nents,
145 enum dma_data_direction dir) 154 enum dma_data_direction dir)
146{ 155{
147 dma_ops->sync_sg_for_device(dev, sgl, nents, dir); 156 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
157 ops->sync_sg_for_device(dev, sgl, nents, dir);
148} 158}
149 159
150static inline int dma_mapping_error(struct device *dev, dma_addr_t daddr) 160static inline int dma_mapping_error(struct device *dev, dma_addr_t daddr)
151{ 161{
152 return dma_ops->mapping_error(dev, daddr); 162 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
163 return ops->mapping_error(dev, daddr);
153} 164}
154 165
155#define dma_map_page(dev, pg, off, size, dir) \ 166#define dma_map_page(dev, pg, off, size, dir) \
@@ -169,7 +180,8 @@ static inline int dma_mapping_error(struct device *dev, dma_addr_t daddr)
169 180
170static inline int dma_supported(struct device *dev, u64 mask) 181static inline int dma_supported(struct device *dev, u64 mask)
171{ 182{
172 return dma_ops->dma_supported_op(dev, mask); 183 struct dma_mapping_ops *ops = platform_dma_get_ops(dev);
184 return ops->dma_supported_op(dev, mask);
173} 185}
174 186
175static inline int 187static inline int
@@ -196,9 +208,4 @@ dma_cache_sync (struct device *dev, void *vaddr, size_t size,
196 208
197#define dma_is_consistent(d, h) (1) /* all we do is coherent memory... */ 209#define dma_is_consistent(d, h) (1) /* all we do is coherent memory... */
198 210
199static inline struct dma_mapping_ops *get_dma_ops(struct device *dev)
200{
201 return dma_ops;
202}
203
204#endif /* _ASM_IA64_DMA_MAPPING_H */ 211#endif /* _ASM_IA64_DMA_MAPPING_H */