dma-mapping.h 1.0 KB
Newer Older
1 2 3 4 5 6
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2003 - 2005 Tensilica Inc.
7
 * Copyright (C) 2015 Cadence Design Systems Inc.
8 9 10 11 12 13 14
 */

#ifndef _XTENSA_DMA_MAPPING_H
#define _XTENSA_DMA_MAPPING_H

#include <asm/cache.h>
#include <asm/io.h>
15

16
#include <linux/mm.h>
17
#include <linux/scatterlist.h>
18

19 20
#define DMA_ERROR_CODE		(~(dma_addr_t)0x0)

21
extern const struct dma_map_ops xtensa_dma_map_ops;
22

23
static inline const struct dma_map_ops *get_dma_ops(struct device *dev)
24
{
25 26
	if (dev && dev->dma_ops)
		return dev->dma_ops;
27 28
	else
		return &xtensa_dma_map_ops;
29 30
}

31 32
void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
		    enum dma_data_direction direction);
33

34 35 36 37 38 39 40 41 42 43
static inline dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr)
{
	return (dma_addr_t)paddr;
}

static inline phys_addr_t dma_to_phys(struct device *dev, dma_addr_t daddr)
{
	return (phys_addr_t)daddr;
}

44
#endif	/* _XTENSA_DMA_MAPPING_H */