2008-07-18 04:55:51 +00:00
|
|
|
#ifndef ___ASM_SPARC_DMA_MAPPING_H
|
|
|
|
#define ___ASM_SPARC_DMA_MAPPING_H
|
2009-05-14 16:23:11 +00:00
|
|
|
|
|
|
|
#include <linux/scatterlist.h>
|
|
|
|
#include <linux/mm.h>
|
2009-08-10 02:53:13 +00:00
|
|
|
#include <linux/dma-debug.h>
|
2009-05-14 16:23:08 +00:00
|
|
|
|
2015-09-09 22:39:49 +00:00
|
|
|
#define HAVE_ARCH_DMA_SUPPORTED 1
|
2014-05-16 21:25:50 +00:00
|
|
|
int dma_supported(struct device *dev, u64 mask);
|
2009-05-14 16:23:08 +00:00
|
|
|
|
2014-11-26 21:36:41 +00: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.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2017-01-20 21:04:01 +00:00
|
|
|
extern const struct dma_map_ops *dma_ops;
|
|
|
|
extern const struct dma_map_ops *leon_dma_ops;
|
|
|
|
extern const struct dma_map_ops pci32_dma_ops;
|
2012-05-26 13:56:03 +00:00
|
|
|
|
2009-08-10 02:53:16 +00:00
|
|
|
extern struct bus_type pci_bus_type;
|
2009-05-14 16:23:11 +00:00
|
|
|
|
2017-01-20 21:04:04 +00:00
|
|
|
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
|
2009-05-14 16:23:11 +00:00
|
|
|
{
|
2014-09-08 07:48:52 +00:00
|
|
|
#ifdef CONFIG_SPARC_LEON
|
2012-05-26 13:56:03 +00:00
|
|
|
if (sparc_cpu_model == sparc_leon)
|
|
|
|
return leon_dma_ops;
|
2014-09-08 07:48:52 +00:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_SPARC32) && defined(CONFIG_PCI)
|
2017-01-20 21:04:04 +00:00
|
|
|
if (bus == &pci_bus_type)
|
2009-08-10 02:53:16 +00:00
|
|
|
return &pci32_dma_ops;
|
|
|
|
#endif
|
2009-08-10 02:53:13 +00:00
|
|
|
return dma_ops;
|
2009-05-14 16:23:11 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 04:55:51 +00:00
|
|
|
#endif
|