dma-mapping.h 1.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef __ASM_SH_DMA_MAPPING_H
#define __ASM_SH_DMA_MAPPING_H

4 5
extern struct dma_map_ops *dma_ops;
extern void no_iommu_init(void);
L
Linus Torvalds 已提交
6

7 8 9 10 11 12 13 14
static inline struct dma_map_ops *get_dma_ops(struct device *dev)
{
	return dma_ops;
}

static inline int dma_supported(struct device *dev, u64 mask)
{
	struct dma_map_ops *ops = get_dma_ops(dev);
L
Linus Torvalds 已提交
15

16 17 18 19 20
	if (ops->dma_supported)
		return ops->dma_supported(dev, mask);

	return 1;
}
L
Linus Torvalds 已提交
21 22 23

static inline int dma_set_mask(struct device *dev, u64 mask)
{
24 25
	struct dma_map_ops *ops = get_dma_ops(dev);

L
Linus Torvalds 已提交
26 27
	if (!dev->dma_mask || !dma_supported(dev, mask))
		return -EIO;
28 29
	if (ops->set_dma_mask)
		return ops->set_dma_mask(dev, mask);
L
Linus Torvalds 已提交
30 31 32 33 34 35

	*dev->dma_mask = mask;

	return 0;
}

36 37
void *dma_alloc_coherent(struct device *dev, size_t size,
			 dma_addr_t *dma_handle, gfp_t flag);
L
Linus Torvalds 已提交
38

39 40
void dma_free_coherent(struct device *dev, size_t size,
		       void *vaddr, dma_addr_t dma_handle);
L
Linus Torvalds 已提交
41

42 43
void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
		    enum dma_data_direction dir);
L
Linus Torvalds 已提交
44

45 46 47 48
#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
#define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
#define dma_is_consistent(d, h) (1)

L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56 57
static inline int dma_get_cache_alignment(void)
{
	/*
	 * Each processor family will define its own L1_CACHE_SHIFT,
	 * L1_CACHE_BYTES wraps to this, so this is always safe.
	 */
	return L1_CACHE_BYTES;
}

58
static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
L
Linus Torvalds 已提交
59
{
60
	struct dma_map_ops *ops = get_dma_ops(dev);
61

62 63
	if (ops->mapping_error)
		return ops->mapping_error(dev, dma_addr);
64

65 66
	return dma_addr == 0;
}
67

68 69
#include <asm-generic/dma-coherent.h>
#include <asm-generic/dma-mapping-common.h>
70

L
Linus Torvalds 已提交
71
#endif /* __ASM_SH_DMA_MAPPING_H */