1 #ifndef _ASM_DMA_MAPPING_H
2 #define _ASM_DMA_MAPPING_H
4 #include <asm/scatterlist.h>
5 #include <asm/dma-coherence.h>
7 #include <asm-generic/dma-coherent.h>
9 #ifndef CONFIG_SGI_IP27 /* Kludge to fix 2.6.39 build for IP27 */
10 #include <dma-coherence.h>
13 extern struct dma_map_ops
*mips_dma_map_ops
;
15 static inline struct dma_map_ops
*get_dma_ops(struct device
*dev
)
17 if (dev
&& dev
->archdata
.dma_ops
)
18 return dev
->archdata
.dma_ops
;
20 return mips_dma_map_ops
;
23 static inline bool dma_capable(struct device
*dev
, dma_addr_t addr
, size_t size
)
28 return addr
+ size
<= *dev
->dma_mask
;
31 static inline void dma_mark_clean(void *addr
, size_t size
) {}
33 #include <asm-generic/dma-mapping-common.h>
35 static inline int dma_supported(struct device
*dev
, u64 mask
)
37 struct dma_map_ops
*ops
= get_dma_ops(dev
);
38 return ops
->dma_supported(dev
, mask
);
41 static inline int dma_mapping_error(struct device
*dev
, u64 mask
)
43 struct dma_map_ops
*ops
= get_dma_ops(dev
);
45 debug_dma_mapping_error(dev
, mask
);
46 return ops
->mapping_error(dev
, mask
);
50 dma_set_mask(struct device
*dev
, u64 mask
)
52 if(!dev
->dma_mask
|| !dma_supported(dev
, mask
))
55 *dev
->dma_mask
= mask
;
60 extern void dma_cache_sync(struct device
*dev
, void *vaddr
, size_t size
,
61 enum dma_data_direction direction
);
63 #define dma_alloc_coherent(d,s,h,f) dma_alloc_attrs(d,s,h,f,NULL)
65 static inline void *dma_alloc_attrs(struct device
*dev
, size_t size
,
66 dma_addr_t
*dma_handle
, gfp_t gfp
,
67 struct dma_attrs
*attrs
)
70 struct dma_map_ops
*ops
= get_dma_ops(dev
);
72 ret
= ops
->alloc(dev
, size
, dma_handle
, gfp
, attrs
);
74 debug_dma_alloc_coherent(dev
, size
, *dma_handle
, ret
);
79 #define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)
81 static inline void dma_free_attrs(struct device
*dev
, size_t size
,
82 void *vaddr
, dma_addr_t dma_handle
,
83 struct dma_attrs
*attrs
)
85 struct dma_map_ops
*ops
= get_dma_ops(dev
);
87 ops
->free(dev
, size
, vaddr
, dma_handle
, attrs
);
89 debug_dma_free_coherent(dev
, size
, vaddr
, dma_handle
);
93 void *dma_alloc_noncoherent(struct device
*dev
, size_t size
,
94 dma_addr_t
*dma_handle
, gfp_t flag
);
96 void dma_free_noncoherent(struct device
*dev
, size_t size
,
97 void *vaddr
, dma_addr_t dma_handle
);
99 #endif /* _ASM_DMA_MAPPING_H */