2008-07-18 11:55:51 +07:00
|
|
|
#ifndef ___ASM_SPARC_DMA_MAPPING_H
|
|
|
|
#define ___ASM_SPARC_DMA_MAPPING_H
|
2009-05-14 23:23:11 +07:00
|
|
|
|
|
|
|
#include <linux/scatterlist.h>
|
|
|
|
#include <linux/mm.h>
|
2009-08-10 09:53:13 +07:00
|
|
|
#include <linux/dma-debug.h>
|
2009-05-14 23:23:08 +07:00
|
|
|
|
|
|
|
#define DMA_ERROR_CODE (~(dma_addr_t)0x0)
|
|
|
|
|
2014-05-17 04:25:50 +07:00
|
|
|
int dma_supported(struct device *dev, u64 mask);
|
2009-05-14 23:23:08 +07:00
|
|
|
|
2009-05-14 23:23:11 +07:00
|
|
|
#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
|
|
|
|
#define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
|
|
|
|
|
2012-05-26 20:56:03 +07: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 09:53:16 +07:00
|
|
|
extern struct bus_type pci_bus_type;
|
2009-05-14 23:23:11 +07:00
|
|
|
|
2009-08-10 09:53:13 +07:00
|
|
|
static inline struct dma_map_ops *get_dma_ops(struct device *dev)
|
2009-05-14 23:23:11 +07:00
|
|
|
{
|
2009-08-10 09:53:16 +07:00
|
|
|
#if defined(CONFIG_SPARC32) && defined(CONFIG_PCI)
|
2012-05-26 20:56:03 +07:00
|
|
|
if (sparc_cpu_model == sparc_leon)
|
|
|
|
return leon_dma_ops;
|
|
|
|
else if (dev->bus == &pci_bus_type)
|
2009-08-10 09:53:16 +07:00
|
|
|
return &pci32_dma_ops;
|
|
|
|
#endif
|
2009-08-10 09:53:13 +07:00
|
|
|
return dma_ops;
|
2009-05-14 23:23:11 +07:00
|
|
|
}
|
|
|
|
|
2009-08-10 09:53:13 +07:00
|
|
|
#include <asm-generic/dma-mapping-common.h>
|
2009-05-14 23:23:11 +07:00
|
|
|
|
2012-03-27 19:56:55 +07:00
|
|
|
#define dma_alloc_coherent(d,s,h,f) dma_alloc_attrs(d,s,h,f,NULL)
|
|
|
|
|
|
|
|
static inline void *dma_alloc_attrs(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t flag,
|
|
|
|
struct dma_attrs *attrs)
|
2009-05-14 23:23:11 +07:00
|
|
|
{
|
2009-08-10 09:53:13 +07:00
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
2009-08-10 09:53:17 +07:00
|
|
|
void *cpu_addr;
|
2009-05-14 23:23:11 +07:00
|
|
|
|
2012-03-27 19:56:55 +07:00
|
|
|
cpu_addr = ops->alloc(dev, size, dma_handle, flag, attrs);
|
2009-08-10 09:53:17 +07:00
|
|
|
debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr);
|
|
|
|
return cpu_addr;
|
2009-05-14 23:23:11 +07:00
|
|
|
}
|
2009-05-14 23:23:08 +07:00
|
|
|
|
2012-03-27 19:56:55 +07:00
|
|
|
#define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)
|
|
|
|
|
|
|
|
static inline void dma_free_attrs(struct device *dev, size_t size,
|
|
|
|
void *cpu_addr, dma_addr_t dma_handle,
|
|
|
|
struct dma_attrs *attrs)
|
2009-05-14 23:23:08 +07:00
|
|
|
{
|
2009-08-10 09:53:13 +07:00
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
2009-05-14 23:23:08 +07:00
|
|
|
|
2009-08-10 09:53:17 +07:00
|
|
|
debug_dma_free_coherent(dev, size, cpu_addr, dma_handle);
|
2012-03-27 19:56:55 +07:00
|
|
|
ops->free(dev, size, cpu_addr, dma_handle, attrs);
|
2009-05-14 23:23:08 +07:00
|
|
|
}
|
|
|
|
|
2009-05-14 23:23:11 +07:00
|
|
|
static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
|
|
|
|
{
|
2012-10-26 07:31:42 +07:00
|
|
|
debug_dma_mapping_error(dev, dma_addr);
|
2009-05-14 23:23:11 +07:00
|
|
|
return (dma_addr == DMA_ERROR_CODE);
|
|
|
|
}
|
|
|
|
|
2010-03-11 06:23:35 +07:00
|
|
|
static inline int dma_set_mask(struct device *dev, u64 mask)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
if (dev->bus == &pci_bus_type) {
|
|
|
|
if (!dev->dma_mask || !dma_supported(dev, mask))
|
|
|
|
return -EINVAL;
|
|
|
|
*dev->dma_mask = mask;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2008-07-18 11:55:51 +07:00
|
|
|
#endif
|