diff options
-rw-r--r-- | arch/powerpc/include/asm/device.h | 4 | ||||
-rw-r--r-- | arch/powerpc/include/asm/dma-mapping.h | 84 | ||||
-rw-r--r-- | arch/powerpc/include/asm/pci.h | 4 | ||||
-rw-r--r-- | arch/powerpc/include/asm/swiotlb.h | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/dma-iommu.c | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/dma-swiotlb.c | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/dma.c | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/ibmebus.c | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/pci-common.c | 6 | ||||
-rw-r--r-- | arch/powerpc/kernel/vio.c | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/cell/iommu.c | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/ps3/system-bus.c | 4 |
12 files changed, 37 insertions, 79 deletions
diff --git a/arch/powerpc/include/asm/device.h b/arch/powerpc/include/asm/device.h index 0086f8d46f1c..67fcd7f89d99 100644 --- a/arch/powerpc/include/asm/device.h +++ b/arch/powerpc/include/asm/device.h | |||
@@ -6,7 +6,7 @@ | |||
6 | #ifndef _ASM_POWERPC_DEVICE_H | 6 | #ifndef _ASM_POWERPC_DEVICE_H |
7 | #define _ASM_POWERPC_DEVICE_H | 7 | #define _ASM_POWERPC_DEVICE_H |
8 | 8 | ||
9 | struct dma_mapping_ops; | 9 | struct dma_map_ops; |
10 | struct device_node; | 10 | struct device_node; |
11 | 11 | ||
12 | struct dev_archdata { | 12 | struct dev_archdata { |
@@ -14,7 +14,7 @@ struct dev_archdata { | |||
14 | struct device_node *of_node; | 14 | struct device_node *of_node; |
15 | 15 | ||
16 | /* DMA operations on that device */ | 16 | /* DMA operations on that device */ |
17 | struct dma_mapping_ops *dma_ops; | 17 | struct dma_map_ops *dma_ops; |
18 | void *dma_data; | 18 | void *dma_data; |
19 | #ifdef CONFIG_SWIOTLB | 19 | #ifdef CONFIG_SWIOTLB |
20 | dma_addr_t max_direct_dma_addr; | 20 | dma_addr_t max_direct_dma_addr; |
diff --git a/arch/powerpc/include/asm/dma-mapping.h b/arch/powerpc/include/asm/dma-mapping.h index 1765c379138a..8ca2b5183c56 100644 --- a/arch/powerpc/include/asm/dma-mapping.h +++ b/arch/powerpc/include/asm/dma-mapping.h | |||
@@ -64,56 +64,14 @@ static inline unsigned long device_to_mask(struct device *dev) | |||
64 | } | 64 | } |
65 | 65 | ||
66 | /* | 66 | /* |
67 | * DMA operations are abstracted for G5 vs. i/pSeries, PCI vs. VIO | ||
68 | */ | ||
69 | struct dma_mapping_ops { | ||
70 | void * (*alloc_coherent)(struct device *dev, size_t size, | ||
71 | dma_addr_t *dma_handle, gfp_t flag); | ||
72 | void (*free_coherent)(struct device *dev, size_t size, | ||
73 | void *vaddr, dma_addr_t dma_handle); | ||
74 | int (*map_sg)(struct device *dev, struct scatterlist *sg, | ||
75 | int nents, enum dma_data_direction direction, | ||
76 | struct dma_attrs *attrs); | ||
77 | void (*unmap_sg)(struct device *dev, struct scatterlist *sg, | ||
78 | int nents, enum dma_data_direction direction, | ||
79 | struct dma_attrs *attrs); | ||
80 | int (*dma_supported)(struct device *dev, u64 mask); | ||
81 | int (*set_dma_mask)(struct device *dev, u64 dma_mask); | ||
82 | dma_addr_t (*map_page)(struct device *dev, struct page *page, | ||
83 | unsigned long offset, size_t size, | ||
84 | enum dma_data_direction direction, | ||
85 | struct dma_attrs *attrs); | ||
86 | void (*unmap_page)(struct device *dev, | ||
87 | dma_addr_t dma_address, size_t size, | ||
88 | enum dma_data_direction direction, | ||
89 | struct dma_attrs *attrs); | ||
90 | #ifdef CONFIG_PPC_NEED_DMA_SYNC_OPS | ||
91 | void (*sync_single_range_for_cpu)(struct device *hwdev, | ||
92 | dma_addr_t dma_handle, unsigned long offset, | ||
93 | size_t size, | ||
94 | enum dma_data_direction direction); | ||
95 | void (*sync_single_range_for_device)(struct device *hwdev, | ||
96 | dma_addr_t dma_handle, unsigned long offset, | ||
97 | size_t size, | ||
98 | enum dma_data_direction direction); | ||
99 | void (*sync_sg_for_cpu)(struct device *hwdev, | ||
100 | struct scatterlist *sg, int nelems, | ||
101 | enum dma_data_direction direction); | ||
102 | void (*sync_sg_for_device)(struct device *hwdev, | ||
103 | struct scatterlist *sg, int nelems, | ||
104 | enum dma_data_direction direction); | ||
105 | #endif | ||
106 | }; | ||
107 | |||
108 | /* | ||
109 | * Available generic sets of operations | 67 | * Available generic sets of operations |
110 | */ | 68 | */ |
111 | #ifdef CONFIG_PPC64 | 69 | #ifdef CONFIG_PPC64 |
112 | extern struct dma_mapping_ops dma_iommu_ops; | 70 | extern struct dma_map_ops dma_iommu_ops; |
113 | #endif | 71 | #endif |
114 | extern struct dma_mapping_ops dma_direct_ops; | 72 | extern struct dma_map_ops dma_direct_ops; |
115 | 73 | ||
116 | static inline struct dma_mapping_ops *get_dma_ops(struct device *dev) | 74 | static inline struct dma_map_ops *get_dma_ops(struct device *dev) |
117 | { | 75 | { |
118 | /* We don't handle the NULL dev case for ISA for now. We could | 76 | /* We don't handle the NULL dev case for ISA for now. We could |
119 | * do it via an out of line call but it is not needed for now. The | 77 | * do it via an out of line call but it is not needed for now. The |
@@ -126,14 +84,14 @@ static inline struct dma_mapping_ops *get_dma_ops(struct device *dev) | |||
126 | return dev->archdata.dma_ops; | 84 | return dev->archdata.dma_ops; |
127 | } | 85 | } |
128 | 86 | ||
129 | static inline void set_dma_ops(struct device *dev, struct dma_mapping_ops *ops) | 87 | static inline void set_dma_ops(struct device *dev, struct dma_map_ops *ops) |
130 | { | 88 | { |
131 | dev->archdata.dma_ops = ops; | 89 | dev->archdata.dma_ops = ops; |
132 | } | 90 | } |
133 | 91 | ||
134 | static inline int dma_supported(struct device *dev, u64 mask) | 92 | static inline int dma_supported(struct device *dev, u64 mask) |
135 | { | 93 | { |
136 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 94 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
137 | 95 | ||
138 | if (unlikely(dma_ops == NULL)) | 96 | if (unlikely(dma_ops == NULL)) |
139 | return 0; | 97 | return 0; |
@@ -147,7 +105,7 @@ static inline int dma_supported(struct device *dev, u64 mask) | |||
147 | 105 | ||
148 | static inline int dma_set_mask(struct device *dev, u64 dma_mask) | 106 | static inline int dma_set_mask(struct device *dev, u64 dma_mask) |
149 | { | 107 | { |
150 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 108 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
151 | 109 | ||
152 | if (unlikely(dma_ops == NULL)) | 110 | if (unlikely(dma_ops == NULL)) |
153 | return -EIO; | 111 | return -EIO; |
@@ -161,7 +119,7 @@ static inline int dma_set_mask(struct device *dev, u64 dma_mask) | |||
161 | 119 | ||
162 | /* | 120 | /* |
163 | * map_/unmap_single actually call through to map/unmap_page now that all the | 121 | * map_/unmap_single actually call through to map/unmap_page now that all the |
164 | * dma_mapping_ops have been converted over. We just have to get the page and | 122 | * dma_map_ops have been converted over. We just have to get the page and |
165 | * offset to pass through to map_page | 123 | * offset to pass through to map_page |
166 | */ | 124 | */ |
167 | static inline dma_addr_t dma_map_single_attrs(struct device *dev, | 125 | static inline dma_addr_t dma_map_single_attrs(struct device *dev, |
@@ -170,7 +128,7 @@ static inline dma_addr_t dma_map_single_attrs(struct device *dev, | |||
170 | enum dma_data_direction direction, | 128 | enum dma_data_direction direction, |
171 | struct dma_attrs *attrs) | 129 | struct dma_attrs *attrs) |
172 | { | 130 | { |
173 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 131 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
174 | 132 | ||
175 | BUG_ON(!dma_ops); | 133 | BUG_ON(!dma_ops); |
176 | 134 | ||
@@ -185,7 +143,7 @@ static inline void dma_unmap_single_attrs(struct device *dev, | |||
185 | enum dma_data_direction direction, | 143 | enum dma_data_direction direction, |
186 | struct dma_attrs *attrs) | 144 | struct dma_attrs *attrs) |
187 | { | 145 | { |
188 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 146 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
189 | 147 | ||
190 | BUG_ON(!dma_ops); | 148 | BUG_ON(!dma_ops); |
191 | 149 | ||
@@ -198,7 +156,7 @@ static inline dma_addr_t dma_map_page_attrs(struct device *dev, | |||
198 | enum dma_data_direction direction, | 156 | enum dma_data_direction direction, |
199 | struct dma_attrs *attrs) | 157 | struct dma_attrs *attrs) |
200 | { | 158 | { |
201 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 159 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
202 | 160 | ||
203 | BUG_ON(!dma_ops); | 161 | BUG_ON(!dma_ops); |
204 | 162 | ||
@@ -211,7 +169,7 @@ static inline void dma_unmap_page_attrs(struct device *dev, | |||
211 | enum dma_data_direction direction, | 169 | enum dma_data_direction direction, |
212 | struct dma_attrs *attrs) | 170 | struct dma_attrs *attrs) |
213 | { | 171 | { |
214 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 172 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
215 | 173 | ||
216 | BUG_ON(!dma_ops); | 174 | BUG_ON(!dma_ops); |
217 | 175 | ||
@@ -222,7 +180,7 @@ static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg, | |||
222 | int nents, enum dma_data_direction direction, | 180 | int nents, enum dma_data_direction direction, |
223 | struct dma_attrs *attrs) | 181 | struct dma_attrs *attrs) |
224 | { | 182 | { |
225 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 183 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
226 | 184 | ||
227 | BUG_ON(!dma_ops); | 185 | BUG_ON(!dma_ops); |
228 | return dma_ops->map_sg(dev, sg, nents, direction, attrs); | 186 | return dma_ops->map_sg(dev, sg, nents, direction, attrs); |
@@ -234,7 +192,7 @@ static inline void dma_unmap_sg_attrs(struct device *dev, | |||
234 | enum dma_data_direction direction, | 192 | enum dma_data_direction direction, |
235 | struct dma_attrs *attrs) | 193 | struct dma_attrs *attrs) |
236 | { | 194 | { |
237 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 195 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
238 | 196 | ||
239 | BUG_ON(!dma_ops); | 197 | BUG_ON(!dma_ops); |
240 | dma_ops->unmap_sg(dev, sg, nhwentries, direction, attrs); | 198 | dma_ops->unmap_sg(dev, sg, nhwentries, direction, attrs); |
@@ -243,7 +201,7 @@ static inline void dma_unmap_sg_attrs(struct device *dev, | |||
243 | static inline void *dma_alloc_coherent(struct device *dev, size_t size, | 201 | static inline void *dma_alloc_coherent(struct device *dev, size_t size, |
244 | dma_addr_t *dma_handle, gfp_t flag) | 202 | dma_addr_t *dma_handle, gfp_t flag) |
245 | { | 203 | { |
246 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 204 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
247 | 205 | ||
248 | BUG_ON(!dma_ops); | 206 | BUG_ON(!dma_ops); |
249 | return dma_ops->alloc_coherent(dev, size, dma_handle, flag); | 207 | return dma_ops->alloc_coherent(dev, size, dma_handle, flag); |
@@ -252,7 +210,7 @@ static inline void *dma_alloc_coherent(struct device *dev, size_t size, | |||
252 | static inline void dma_free_coherent(struct device *dev, size_t size, | 210 | static inline void dma_free_coherent(struct device *dev, size_t size, |
253 | void *cpu_addr, dma_addr_t dma_handle) | 211 | void *cpu_addr, dma_addr_t dma_handle) |
254 | { | 212 | { |
255 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 213 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
256 | 214 | ||
257 | BUG_ON(!dma_ops); | 215 | BUG_ON(!dma_ops); |
258 | dma_ops->free_coherent(dev, size, cpu_addr, dma_handle); | 216 | dma_ops->free_coherent(dev, size, cpu_addr, dma_handle); |
@@ -304,7 +262,7 @@ static inline void dma_sync_single_for_cpu(struct device *dev, | |||
304 | dma_addr_t dma_handle, size_t size, | 262 | dma_addr_t dma_handle, size_t size, |
305 | enum dma_data_direction direction) | 263 | enum dma_data_direction direction) |
306 | { | 264 | { |
307 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 265 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
308 | 266 | ||
309 | BUG_ON(!dma_ops); | 267 | BUG_ON(!dma_ops); |
310 | 268 | ||
@@ -317,7 +275,7 @@ static inline void dma_sync_single_for_device(struct device *dev, | |||
317 | dma_addr_t dma_handle, size_t size, | 275 | dma_addr_t dma_handle, size_t size, |
318 | enum dma_data_direction direction) | 276 | enum dma_data_direction direction) |
319 | { | 277 | { |
320 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 278 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
321 | 279 | ||
322 | BUG_ON(!dma_ops); | 280 | BUG_ON(!dma_ops); |
323 | 281 | ||
@@ -330,7 +288,7 @@ static inline void dma_sync_sg_for_cpu(struct device *dev, | |||
330 | struct scatterlist *sgl, int nents, | 288 | struct scatterlist *sgl, int nents, |
331 | enum dma_data_direction direction) | 289 | enum dma_data_direction direction) |
332 | { | 290 | { |
333 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 291 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
334 | 292 | ||
335 | BUG_ON(!dma_ops); | 293 | BUG_ON(!dma_ops); |
336 | 294 | ||
@@ -342,7 +300,7 @@ static inline void dma_sync_sg_for_device(struct device *dev, | |||
342 | struct scatterlist *sgl, int nents, | 300 | struct scatterlist *sgl, int nents, |
343 | enum dma_data_direction direction) | 301 | enum dma_data_direction direction) |
344 | { | 302 | { |
345 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 303 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
346 | 304 | ||
347 | BUG_ON(!dma_ops); | 305 | BUG_ON(!dma_ops); |
348 | 306 | ||
@@ -354,7 +312,7 @@ static inline void dma_sync_single_range_for_cpu(struct device *dev, | |||
354 | dma_addr_t dma_handle, unsigned long offset, size_t size, | 312 | dma_addr_t dma_handle, unsigned long offset, size_t size, |
355 | enum dma_data_direction direction) | 313 | enum dma_data_direction direction) |
356 | { | 314 | { |
357 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 315 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
358 | 316 | ||
359 | BUG_ON(!dma_ops); | 317 | BUG_ON(!dma_ops); |
360 | 318 | ||
@@ -367,7 +325,7 @@ static inline void dma_sync_single_range_for_device(struct device *dev, | |||
367 | dma_addr_t dma_handle, unsigned long offset, size_t size, | 325 | dma_addr_t dma_handle, unsigned long offset, size_t size, |
368 | enum dma_data_direction direction) | 326 | enum dma_data_direction direction) |
369 | { | 327 | { |
370 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 328 | struct dma_map_ops *dma_ops = get_dma_ops(dev); |
371 | 329 | ||
372 | BUG_ON(!dma_ops); | 330 | BUG_ON(!dma_ops); |
373 | 331 | ||
diff --git a/arch/powerpc/include/asm/pci.h b/arch/powerpc/include/asm/pci.h index d9483c504d2d..7ae46d7e270d 100644 --- a/arch/powerpc/include/asm/pci.h +++ b/arch/powerpc/include/asm/pci.h | |||
@@ -61,8 +61,8 @@ static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel) | |||
61 | } | 61 | } |
62 | 62 | ||
63 | #ifdef CONFIG_PCI | 63 | #ifdef CONFIG_PCI |
64 | extern void set_pci_dma_ops(struct dma_mapping_ops *dma_ops); | 64 | extern void set_pci_dma_ops(struct dma_map_ops *dma_ops); |
65 | extern struct dma_mapping_ops *get_pci_dma_ops(void); | 65 | extern struct dma_map_ops *get_pci_dma_ops(void); |
66 | #else /* CONFIG_PCI */ | 66 | #else /* CONFIG_PCI */ |
67 | #define set_pci_dma_ops(d) | 67 | #define set_pci_dma_ops(d) |
68 | #define get_pci_dma_ops() NULL | 68 | #define get_pci_dma_ops() NULL |
diff --git a/arch/powerpc/include/asm/swiotlb.h b/arch/powerpc/include/asm/swiotlb.h index 21ce0a3b4941..8979d4cd3d70 100644 --- a/arch/powerpc/include/asm/swiotlb.h +++ b/arch/powerpc/include/asm/swiotlb.h | |||
@@ -13,7 +13,7 @@ | |||
13 | 13 | ||
14 | #include <linux/swiotlb.h> | 14 | #include <linux/swiotlb.h> |
15 | 15 | ||
16 | extern struct dma_mapping_ops swiotlb_dma_ops; | 16 | extern struct dma_map_ops swiotlb_dma_ops; |
17 | 17 | ||
18 | static inline void dma_mark_clean(void *addr, size_t size) {} | 18 | static inline void dma_mark_clean(void *addr, size_t size) {} |
19 | 19 | ||
diff --git a/arch/powerpc/kernel/dma-iommu.c b/arch/powerpc/kernel/dma-iommu.c index 2983adac8cc3..87ddb3fb948c 100644 --- a/arch/powerpc/kernel/dma-iommu.c +++ b/arch/powerpc/kernel/dma-iommu.c | |||
@@ -89,7 +89,7 @@ static int dma_iommu_dma_supported(struct device *dev, u64 mask) | |||
89 | return 1; | 89 | return 1; |
90 | } | 90 | } |
91 | 91 | ||
92 | struct dma_mapping_ops dma_iommu_ops = { | 92 | struct dma_map_ops dma_iommu_ops = { |
93 | .alloc_coherent = dma_iommu_alloc_coherent, | 93 | .alloc_coherent = dma_iommu_alloc_coherent, |
94 | .free_coherent = dma_iommu_free_coherent, | 94 | .free_coherent = dma_iommu_free_coherent, |
95 | .map_sg = dma_iommu_map_sg, | 95 | .map_sg = dma_iommu_map_sg, |
diff --git a/arch/powerpc/kernel/dma-swiotlb.c b/arch/powerpc/kernel/dma-swiotlb.c index ca141e108ae3..d1143a68d82a 100644 --- a/arch/powerpc/kernel/dma-swiotlb.c +++ b/arch/powerpc/kernel/dma-swiotlb.c | |||
@@ -31,7 +31,7 @@ unsigned int ppc_swiotlb_enable; | |||
31 | * map_page, and unmap_page on highmem, use normal dma_ops | 31 | * map_page, and unmap_page on highmem, use normal dma_ops |
32 | * for everything else. | 32 | * for everything else. |
33 | */ | 33 | */ |
34 | struct dma_mapping_ops swiotlb_dma_ops = { | 34 | struct dma_map_ops swiotlb_dma_ops = { |
35 | .alloc_coherent = dma_direct_alloc_coherent, | 35 | .alloc_coherent = dma_direct_alloc_coherent, |
36 | .free_coherent = dma_direct_free_coherent, | 36 | .free_coherent = dma_direct_free_coherent, |
37 | .map_sg = swiotlb_map_sg_attrs, | 37 | .map_sg = swiotlb_map_sg_attrs, |
diff --git a/arch/powerpc/kernel/dma.c b/arch/powerpc/kernel/dma.c index ccf129d47d84..c61f70e145ad 100644 --- a/arch/powerpc/kernel/dma.c +++ b/arch/powerpc/kernel/dma.c | |||
@@ -140,7 +140,7 @@ static inline void dma_direct_sync_single_range(struct device *dev, | |||
140 | } | 140 | } |
141 | #endif | 141 | #endif |
142 | 142 | ||
143 | struct dma_mapping_ops dma_direct_ops = { | 143 | struct dma_map_ops dma_direct_ops = { |
144 | .alloc_coherent = dma_direct_alloc_coherent, | 144 | .alloc_coherent = dma_direct_alloc_coherent, |
145 | .free_coherent = dma_direct_free_coherent, | 145 | .free_coherent = dma_direct_free_coherent, |
146 | .map_sg = dma_direct_map_sg, | 146 | .map_sg = dma_direct_map_sg, |
diff --git a/arch/powerpc/kernel/ibmebus.c b/arch/powerpc/kernel/ibmebus.c index 6e3f62493659..a4c8b38b0ba1 100644 --- a/arch/powerpc/kernel/ibmebus.c +++ b/arch/powerpc/kernel/ibmebus.c | |||
@@ -127,7 +127,7 @@ static int ibmebus_dma_supported(struct device *dev, u64 mask) | |||
127 | return 1; | 127 | return 1; |
128 | } | 128 | } |
129 | 129 | ||
130 | static struct dma_mapping_ops ibmebus_dma_ops = { | 130 | static struct dma_map_ops ibmebus_dma_ops = { |
131 | .alloc_coherent = ibmebus_alloc_coherent, | 131 | .alloc_coherent = ibmebus_alloc_coherent, |
132 | .free_coherent = ibmebus_free_coherent, | 132 | .free_coherent = ibmebus_free_coherent, |
133 | .map_sg = ibmebus_map_sg, | 133 | .map_sg = ibmebus_map_sg, |
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c index 5a56e97c5ac0..7585f1fc26db 100644 --- a/arch/powerpc/kernel/pci-common.c +++ b/arch/powerpc/kernel/pci-common.c | |||
@@ -50,14 +50,14 @@ resource_size_t isa_mem_base; | |||
50 | unsigned int ppc_pci_flags = 0; | 50 | unsigned int ppc_pci_flags = 0; |
51 | 51 | ||
52 | 52 | ||
53 | static struct dma_mapping_ops *pci_dma_ops = &dma_direct_ops; | 53 | static struct dma_map_ops *pci_dma_ops = &dma_direct_ops; |
54 | 54 | ||
55 | void set_pci_dma_ops(struct dma_mapping_ops *dma_ops) | 55 | void set_pci_dma_ops(struct dma_map_ops *dma_ops) |
56 | { | 56 | { |
57 | pci_dma_ops = dma_ops; | 57 | pci_dma_ops = dma_ops; |
58 | } | 58 | } |
59 | 59 | ||
60 | struct dma_mapping_ops *get_pci_dma_ops(void) | 60 | struct dma_map_ops *get_pci_dma_ops(void) |
61 | { | 61 | { |
62 | return pci_dma_ops; | 62 | return pci_dma_ops; |
63 | } | 63 | } |
diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index 819e59f6f7c7..bc7b41edbdfc 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c | |||
@@ -601,7 +601,7 @@ static void vio_dma_iommu_unmap_sg(struct device *dev, | |||
601 | vio_cmo_dealloc(viodev, alloc_size); | 601 | vio_cmo_dealloc(viodev, alloc_size); |
602 | } | 602 | } |
603 | 603 | ||
604 | struct dma_mapping_ops vio_dma_mapping_ops = { | 604 | struct dma_map_ops vio_dma_mapping_ops = { |
605 | .alloc_coherent = vio_dma_iommu_alloc_coherent, | 605 | .alloc_coherent = vio_dma_iommu_alloc_coherent, |
606 | .free_coherent = vio_dma_iommu_free_coherent, | 606 | .free_coherent = vio_dma_iommu_free_coherent, |
607 | .map_sg = vio_dma_iommu_map_sg, | 607 | .map_sg = vio_dma_iommu_map_sg, |
diff --git a/arch/powerpc/platforms/cell/iommu.c b/arch/powerpc/platforms/cell/iommu.c index 5b34fc211f35..416db17eb18f 100644 --- a/arch/powerpc/platforms/cell/iommu.c +++ b/arch/powerpc/platforms/cell/iommu.c | |||
@@ -642,7 +642,7 @@ static int dma_fixed_dma_supported(struct device *dev, u64 mask) | |||
642 | 642 | ||
643 | static int dma_set_mask_and_switch(struct device *dev, u64 dma_mask); | 643 | static int dma_set_mask_and_switch(struct device *dev, u64 dma_mask); |
644 | 644 | ||
645 | struct dma_mapping_ops dma_iommu_fixed_ops = { | 645 | struct dma_map_ops dma_iommu_fixed_ops = { |
646 | .alloc_coherent = dma_fixed_alloc_coherent, | 646 | .alloc_coherent = dma_fixed_alloc_coherent, |
647 | .free_coherent = dma_fixed_free_coherent, | 647 | .free_coherent = dma_fixed_free_coherent, |
648 | .map_sg = dma_fixed_map_sg, | 648 | .map_sg = dma_fixed_map_sg, |
diff --git a/arch/powerpc/platforms/ps3/system-bus.c b/arch/powerpc/platforms/ps3/system-bus.c index 676f989ed4e4..e34b305a7a52 100644 --- a/arch/powerpc/platforms/ps3/system-bus.c +++ b/arch/powerpc/platforms/ps3/system-bus.c | |||
@@ -694,7 +694,7 @@ static int ps3_dma_supported(struct device *_dev, u64 mask) | |||
694 | return mask >= DMA_BIT_MASK(32); | 694 | return mask >= DMA_BIT_MASK(32); |
695 | } | 695 | } |
696 | 696 | ||
697 | static struct dma_mapping_ops ps3_sb_dma_ops = { | 697 | static struct dma_map_ops ps3_sb_dma_ops = { |
698 | .alloc_coherent = ps3_alloc_coherent, | 698 | .alloc_coherent = ps3_alloc_coherent, |
699 | .free_coherent = ps3_free_coherent, | 699 | .free_coherent = ps3_free_coherent, |
700 | .map_sg = ps3_sb_map_sg, | 700 | .map_sg = ps3_sb_map_sg, |
@@ -704,7 +704,7 @@ static struct dma_mapping_ops ps3_sb_dma_ops = { | |||
704 | .unmap_page = ps3_unmap_page, | 704 | .unmap_page = ps3_unmap_page, |
705 | }; | 705 | }; |
706 | 706 | ||
707 | static struct dma_mapping_ops ps3_ioc0_dma_ops = { | 707 | static struct dma_map_ops ps3_ioc0_dma_ops = { |
708 | .alloc_coherent = ps3_alloc_coherent, | 708 | .alloc_coherent = ps3_alloc_coherent, |
709 | .free_coherent = ps3_free_coherent, | 709 | .free_coherent = ps3_free_coherent, |
710 | .map_sg = ps3_ioc0_map_sg, | 710 | .map_sg = ps3_ioc0_map_sg, |