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
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2017-01-21 05:04:01 +08:00
|
|
|
extern const struct dma_map_ops *dma_ops;
|
|
|
|
extern const struct dma_map_ops pci32_dma_ops;
|
2012-05-26 21:56:03 +08:00
|
|
|
|
2009-08-10 10:53:16 +08:00
|
|
|
extern struct bus_type pci_bus_type;
|
2009-05-15 00:23:11 +08:00
|
|
|
|
2017-01-21 05:04:04 +08:00
|
|
|
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
|
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)
|
2017-05-22 15:06:26 +08:00
|
|
|
return &pci32_dma_ops;
|
2014-09-08 15:48:52 +08:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_SPARC32) && defined(CONFIG_PCI)
|
2017-01-21 05:04:04 +08:00
|
|
|
if (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
|