dma-mapping.h 552 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9
#ifndef _ASM_DMA_MAPPING_H
#define _ASM_DMA_MAPPING_H

#include <asm/cache.h>
#include <asm/cacheflush.h>

extern unsigned long __nongprelbss dma_coherent_mem_start;
extern unsigned long __nongprelbss dma_coherent_mem_end;

10
extern const struct dma_map_ops frv_dma_ops;
L
Linus Torvalds 已提交
11

12
static inline const struct dma_map_ops *get_dma_ops(struct device *dev)
L
Linus Torvalds 已提交
13
{
C
Christoph Hellwig 已提交
14
	return &frv_dma_ops;
L
Linus Torvalds 已提交
15 16 17
}

static inline
18
void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
L
Linus Torvalds 已提交
19 20 21 22 23 24
		    enum dma_data_direction direction)
{
	flush_write_buffers();
}

#endif  /* _ASM_DMA_MAPPING_H */