2008-07-18 12:55:51 +08:00
|
|
|
#ifndef ___ASM_SPARC_DMA_MAPPING_H
|
|
|
|
#define ___ASM_SPARC_DMA_MAPPING_H
|
2009-05-15 00:23:11 +08:00
|
|
|
|
|
|
|
#include <linux/scatterlist.h>
|
|
|
|
#include <linux/mm.h>
|
2009-08-10 10:53:13 +08:00
|
|
|
#include <linux/dma-debug.h>
|
2009-05-15 00:23:08 +08:00
|
|
|
|
|
|
|
#define DMA_ERROR_CODE (~(dma_addr_t)0x0)
|
|
|
|
|
2015-09-10 06:39:49 +08:00
|
|
|
#define HAVE_ARCH_DMA_SUPPORTED 1
|
2014-05-17 05:25:50 +08:00
|
|
|
int dma_supported(struct device *dev, u64 mask);
|
2009-05-15 00:23:08 +08:00
|
|
|
|
2014-11-27 05:36:41 +08:00
|
|
|
static inline void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
|
|
|
|
enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
/* Since dma_{alloc,free}_noncoherent() allocated coherent memory, this
|
|
|
|
* routine can be a nop.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2012-05-26 21:56:03 +08:00
|
|
|
extern struct dma_map_ops *dma_ops;
|
|
|
|
extern struct dma_map_ops *leon_dma_ops;
|
|
|
|
extern struct dma_map_ops pci32_dma_ops;
|
|
|
|
|
2009-08-10 10:53:16 +08:00
|
|
|
extern struct bus_type pci_bus_type;
|
2009-05-15 00:23:11 +08:00
|
|
|
|
2009-08-10 10:53:13 +08:00
|
|
|
static inline struct dma_map_ops *get_dma_ops(struct device *dev)
|
2009-05-15 00:23:11 +08:00
|
|
|
{
|
2014-09-08 15:48:52 +08:00
|
|
|
#ifdef CONFIG_SPARC_LEON
|
2012-05-26 21:56:03 +08:00
|
|
|
if (sparc_cpu_model == sparc_leon)
|
|
|
|
return leon_dma_ops;
|
2014-09-08 15:48:52 +08:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_SPARC32) && defined(CONFIG_PCI)
|
|
|
|
if (dev->bus == &pci_bus_type)
|
2009-08-10 10:53:16 +08:00
|
|
|
return &pci32_dma_ops;
|
|
|
|
#endif
|
2009-08-10 10:53:13 +08:00
|
|
|
return dma_ops;
|
2009-05-15 00:23:11 +08:00
|
|
|
}
|
|
|
|
|
2008-07-18 12:55:51 +08:00
|
|
|
#endif
|