2 * Copyright (C) 2004 IBM
4 * Implements the generic device dma API for powerpc.
5 * the pci and vio busses
7 #ifndef _ASM_DMA_MAPPING_H
8 #define _ASM_DMA_MAPPING_H
11 #include <linux/config.h>
12 #include <linux/types.h>
13 #include <linux/cache.h>
14 /* need struct page definitions */
16 #include <asm/scatterlist.h>
19 #define DMA_ERROR_CODE (~(dma_addr_t)0x0)
21 #ifdef CONFIG_NOT_COHERENT_CACHE
23 * DMA-consistent mapping functions for PowerPCs that don't support
24 * cache snooping. These allocate/free a region of uncached mapped
25 * memory space for use with DMA devices. Alternatively, you could
26 * allocate the space "normally" and use the cache management functions
27 * to ensure it is consistent.
29 extern void *__dma_alloc_coherent(size_t size
, dma_addr_t
*handle
, gfp_t gfp
);
30 extern void __dma_free_coherent(size_t size
, void *vaddr
);
31 extern void __dma_sync(void *vaddr
, size_t size
, int direction
);
32 extern void __dma_sync_page(struct page
*page
, unsigned long offset
,
33 size_t size
, int direction
);
35 #else /* ! CONFIG_NOT_COHERENT_CACHE */
37 * Cache coherent cores.
40 #define __dma_alloc_coherent(gfp, size, handle) NULL
41 #define __dma_free_coherent(size, addr) do { } while (0)
42 #define __dma_sync(addr, size, rw) do { } while (0)
43 #define __dma_sync_page(pg, off, sz, rw) do { } while (0)
45 #endif /* ! CONFIG_NOT_COHERENT_CACHE */
49 extern int dma_supported(struct device
*dev
, u64 mask
);
50 extern int dma_set_mask(struct device
*dev
, u64 dma_mask
);
51 extern void *dma_alloc_coherent(struct device
*dev
, size_t size
,
52 dma_addr_t
*dma_handle
, gfp_t flag
);
53 extern void dma_free_coherent(struct device
*dev
, size_t size
, void *cpu_addr
,
54 dma_addr_t dma_handle
);
55 extern dma_addr_t
dma_map_single(struct device
*dev
, void *cpu_addr
,
56 size_t size
, enum dma_data_direction direction
);
57 extern void dma_unmap_single(struct device
*dev
, dma_addr_t dma_addr
,
58 size_t size
, enum dma_data_direction direction
);
59 extern dma_addr_t
dma_map_page(struct device
*dev
, struct page
*page
,
60 unsigned long offset
, size_t size
,
61 enum dma_data_direction direction
);
62 extern void dma_unmap_page(struct device
*dev
, dma_addr_t dma_address
,
63 size_t size
, enum dma_data_direction direction
);
64 extern int dma_map_sg(struct device
*dev
, struct scatterlist
*sg
, int nents
,
65 enum dma_data_direction direction
);
66 extern void dma_unmap_sg(struct device
*dev
, struct scatterlist
*sg
,
67 int nhwentries
, enum dma_data_direction direction
);
69 #else /* CONFIG_PPC64 */
71 #define dma_supported(dev, mask) (1)
73 static inline int dma_set_mask(struct device
*dev
, u64 dma_mask
)
75 if (!dev
->dma_mask
|| !dma_supported(dev
, mask
))
78 *dev
->dma_mask
= dma_mask
;
83 static inline void *dma_alloc_coherent(struct device
*dev
, size_t size
,
84 dma_addr_t
* dma_handle
,
87 #ifdef CONFIG_NOT_COHERENT_CACHE
88 return __dma_alloc_coherent(size
, dma_handle
, gfp
);
91 /* ignore region specifiers */
92 gfp
&= ~(__GFP_DMA
| __GFP_HIGHMEM
);
94 if (dev
== NULL
|| dev
->coherent_dma_mask
< 0xffffffff)
97 ret
= (void *)__get_free_pages(gfp
, get_order(size
));
100 memset(ret
, 0, size
);
101 *dma_handle
= virt_to_bus(ret
);
109 dma_free_coherent(struct device
*dev
, size_t size
, void *vaddr
,
110 dma_addr_t dma_handle
)
112 #ifdef CONFIG_NOT_COHERENT_CACHE
113 __dma_free_coherent(size
, vaddr
);
115 free_pages((unsigned long)vaddr
, get_order(size
));
119 static inline dma_addr_t
120 dma_map_single(struct device
*dev
, void *ptr
, size_t size
,
121 enum dma_data_direction direction
)
123 BUG_ON(direction
== DMA_NONE
);
125 __dma_sync(ptr
, size
, direction
);
127 return virt_to_bus(ptr
);
131 #define dma_unmap_single(dev, addr, size, dir) do { } while (0)
133 static inline dma_addr_t
134 dma_map_page(struct device
*dev
, struct page
*page
,
135 unsigned long offset
, size_t size
,
136 enum dma_data_direction direction
)
138 BUG_ON(direction
== DMA_NONE
);
140 __dma_sync_page(page
, offset
, size
, direction
);
142 return page_to_bus(page
) + offset
;
146 #define dma_unmap_page(dev, handle, size, dir) do { } while (0)
149 dma_map_sg(struct device
*dev
, struct scatterlist
*sg
, int nents
,
150 enum dma_data_direction direction
)
154 BUG_ON(direction
== DMA_NONE
);
156 for (i
= 0; i
< nents
; i
++, sg
++) {
158 __dma_sync_page(sg
->page
, sg
->offset
, sg
->length
, direction
);
159 sg
->dma_address
= page_to_bus(sg
->page
) + sg
->offset
;
165 /* We don't do anything here. */
166 #define dma_unmap_sg(dev, sg, nents, dir) do { } while (0)
168 #endif /* CONFIG_PPC64 */
170 static inline void dma_sync_single_for_cpu(struct device
*dev
,
171 dma_addr_t dma_handle
, size_t size
,
172 enum dma_data_direction direction
)
174 BUG_ON(direction
== DMA_NONE
);
175 __dma_sync(bus_to_virt(dma_handle
), size
, direction
);
178 static inline void dma_sync_single_for_device(struct device
*dev
,
179 dma_addr_t dma_handle
, size_t size
,
180 enum dma_data_direction direction
)
182 BUG_ON(direction
== DMA_NONE
);
183 __dma_sync(bus_to_virt(dma_handle
), size
, direction
);
186 static inline void dma_sync_sg_for_cpu(struct device
*dev
,
187 struct scatterlist
*sg
, int nents
,
188 enum dma_data_direction direction
)
192 BUG_ON(direction
== DMA_NONE
);
194 for (i
= 0; i
< nents
; i
++, sg
++)
195 __dma_sync_page(sg
->page
, sg
->offset
, sg
->length
, direction
);
198 static inline void dma_sync_sg_for_device(struct device
*dev
,
199 struct scatterlist
*sg
, int nents
,
200 enum dma_data_direction direction
)
204 BUG_ON(direction
== DMA_NONE
);
206 for (i
= 0; i
< nents
; i
++, sg
++)
207 __dma_sync_page(sg
->page
, sg
->offset
, sg
->length
, direction
);
210 static inline int dma_mapping_error(dma_addr_t dma_addr
)
213 return (dma_addr
== DMA_ERROR_CODE
);
219 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
220 #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
221 #ifdef CONFIG_NOT_COHERENT_CACHE
222 #define dma_is_consistent(d) (0)
224 #define dma_is_consistent(d) (1)
227 static inline int dma_get_cache_alignment(void)
230 /* no easy way to get cache size on all processors, so return
231 * the maximum possible, to be safe */
232 return (1 << INTERNODE_CACHE_SHIFT
);
235 * Each processor family will define its own L1_CACHE_SHIFT,
236 * L1_CACHE_BYTES wraps to this, so this is always safe.
238 return L1_CACHE_BYTES
;
242 static inline void dma_sync_single_range_for_cpu(struct device
*dev
,
243 dma_addr_t dma_handle
, unsigned long offset
, size_t size
,
244 enum dma_data_direction direction
)
246 /* just sync everything for now */
247 dma_sync_single_for_cpu(dev
, dma_handle
, offset
+ size
, direction
);
250 static inline void dma_sync_single_range_for_device(struct device
*dev
,
251 dma_addr_t dma_handle
, unsigned long offset
, size_t size
,
252 enum dma_data_direction direction
)
254 /* just sync everything for now */
255 dma_sync_single_for_device(dev
, dma_handle
, offset
+ size
, direction
);
258 static inline void dma_cache_sync(void *vaddr
, size_t size
,
259 enum dma_data_direction direction
)
261 BUG_ON(direction
== DMA_NONE
);
262 __dma_sync(vaddr
, size
, (int)direction
);
266 * DMA operations are abstracted for G5 vs. i/pSeries, PCI vs. VIO
268 struct dma_mapping_ops
{
269 void * (*alloc_coherent
)(struct device
*dev
, size_t size
,
270 dma_addr_t
*dma_handle
, gfp_t flag
);
271 void (*free_coherent
)(struct device
*dev
, size_t size
,
272 void *vaddr
, dma_addr_t dma_handle
);
273 dma_addr_t (*map_single
)(struct device
*dev
, void *ptr
,
274 size_t size
, enum dma_data_direction direction
);
275 void (*unmap_single
)(struct device
*dev
, dma_addr_t dma_addr
,
276 size_t size
, enum dma_data_direction direction
);
277 int (*map_sg
)(struct device
*dev
, struct scatterlist
*sg
,
278 int nents
, enum dma_data_direction direction
);
279 void (*unmap_sg
)(struct device
*dev
, struct scatterlist
*sg
,
280 int nents
, enum dma_data_direction direction
);
281 int (*dma_supported
)(struct device
*dev
, u64 mask
);
282 int (*dac_dma_supported
)(struct device
*dev
, u64 mask
);
285 #endif /* __KERNEL__ */
286 #endif /* _ASM_DMA_MAPPING_H */