Merge tag 'locks-v3.16-2' of git://git.samba.org/jlayton/linux
[linux/fpc-iii.git] / arch / sh / include / asm / dma-mapping.h
blobb437f2c780b83f6c84d427f18af4416fa9e42fd7
1 #ifndef __ASM_SH_DMA_MAPPING_H
2 #define __ASM_SH_DMA_MAPPING_H
4 extern struct dma_map_ops *dma_ops;
5 extern void no_iommu_init(void);
7 static inline struct dma_map_ops *get_dma_ops(struct device *dev)
9 return dma_ops;
12 #include <asm-generic/dma-coherent.h>
13 #include <asm-generic/dma-mapping-common.h>
15 static inline int dma_supported(struct device *dev, u64 mask)
17 struct dma_map_ops *ops = get_dma_ops(dev);
19 if (ops->dma_supported)
20 return ops->dma_supported(dev, mask);
22 return 1;
25 static inline int dma_set_mask(struct device *dev, u64 mask)
27 struct dma_map_ops *ops = get_dma_ops(dev);
29 if (!dev->dma_mask || !dma_supported(dev, mask))
30 return -EIO;
31 if (ops->set_dma_mask)
32 return ops->set_dma_mask(dev, mask);
34 *dev->dma_mask = mask;
36 return 0;
39 void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
40 enum dma_data_direction dir);
42 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
43 #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
45 static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
47 struct dma_map_ops *ops = get_dma_ops(dev);
49 debug_dma_mapping_error(dev, dma_addr);
50 if (ops->mapping_error)
51 return ops->mapping_error(dev, dma_addr);
53 return dma_addr == 0;
56 #define dma_alloc_coherent(d,s,h,f) dma_alloc_attrs(d,s,h,f,NULL)
58 static inline void *dma_alloc_attrs(struct device *dev, size_t size,
59 dma_addr_t *dma_handle, gfp_t gfp,
60 struct dma_attrs *attrs)
62 struct dma_map_ops *ops = get_dma_ops(dev);
63 void *memory;
65 if (dma_alloc_from_coherent(dev, size, dma_handle, &memory))
66 return memory;
67 if (!ops->alloc)
68 return NULL;
70 memory = ops->alloc(dev, size, dma_handle, gfp, attrs);
71 debug_dma_alloc_coherent(dev, size, *dma_handle, memory);
73 return memory;
76 #define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)
78 static inline void dma_free_attrs(struct device *dev, size_t size,
79 void *vaddr, dma_addr_t dma_handle,
80 struct dma_attrs *attrs)
82 struct dma_map_ops *ops = get_dma_ops(dev);
84 if (dma_release_from_coherent(dev, get_order(size), vaddr))
85 return;
87 debug_dma_free_coherent(dev, size, vaddr, dma_handle);
88 if (ops->free)
89 ops->free(dev, size, vaddr, dma_handle, attrs);
92 /* arch/sh/mm/consistent.c */
93 extern void *dma_generic_alloc_coherent(struct device *dev, size_t size,
94 dma_addr_t *dma_addr, gfp_t flag,
95 struct dma_attrs *attrs);
96 extern void dma_generic_free_coherent(struct device *dev, size_t size,
97 void *vaddr, dma_addr_t dma_handle,
98 struct dma_attrs *attrs);
100 #endif /* __ASM_SH_DMA_MAPPING_H */