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

4
#include <linux/dma-attrs.h>
L
Linus Torvalds 已提交
5

6
extern struct dma_map_ops *dma_ops;
L
Linus Torvalds 已提交
7

8 9 10 11
static inline struct dma_map_ops *get_dma_ops(struct device *dev)
{
	return dma_ops;
}
L
Linus Torvalds 已提交
12

13
#include <asm-generic/dma-mapping-common.h>
L
Linus Torvalds 已提交
14

15 16 17 18 19
#define dma_alloc_coherent(d,s,h,f)	dma_alloc_attrs(d,s,h,f,NULL)

static inline void *dma_alloc_attrs(struct device *dev, size_t size,
				    dma_addr_t *dma_handle, gfp_t gfp,
				    struct dma_attrs *attrs)
20
{
21
	return get_dma_ops(dev)->alloc(dev, size, dma_handle, gfp, attrs);
22
}
L
Linus Torvalds 已提交
23

24 25 26 27 28
#define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)

static inline void dma_free_attrs(struct device *dev, size_t size,
				  void *vaddr, dma_addr_t dma_handle,
				  struct dma_attrs *attrs)
29
{
30
	get_dma_ops(dev)->free(dev, size, vaddr, dma_handle, attrs);
31
}
I
Ivan Kokshaysky 已提交
32

33 34 35 36
static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
{
	return get_dma_ops(dev)->mapping_error(dev, dma_addr);
}
L
Linus Torvalds 已提交
37

38 39 40 41
static inline int dma_supported(struct device *dev, u64 mask)
{
	return get_dma_ops(dev)->dma_supported(dev, mask);
}
L
Linus Torvalds 已提交
42

43 44 45 46
static inline int dma_set_mask(struct device *dev, u64 mask)
{
	return get_dma_ops(dev)->set_dma_mask(dev, mask);
}
L
Linus Torvalds 已提交
47 48 49 50

#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)

51
#define dma_cache_sync(dev, va, size, dir)		  ((void)0)
L
Linus Torvalds 已提交
52 53

#endif	/* _ALPHA_DMA_MAPPING_H */