dma-mapping.h 448 Bytes
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds's avatar
Linus Torvalds committed
2 3 4 5 6 7 8 9 10
#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;

11
extern const struct dma_map_ops frv_dma_ops;
Linus Torvalds's avatar
Linus Torvalds committed
12

13
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
Linus Torvalds's avatar
Linus Torvalds committed
14
{
15
	return &frv_dma_ops;
Linus Torvalds's avatar
Linus Torvalds committed
16 17 18
}

#endif  /* _ASM_DMA_MAPPING_H */