2012-11-29 21:33:30 +08:00
|
|
|
#ifndef _ASM_S390_DMA_MAPPING_H
|
|
|
|
#define _ASM_S390_DMA_MAPPING_H
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/scatterlist.h>
|
|
|
|
#include <linux/dma-debug.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
|
|
|
|
#define DMA_ERROR_CODE (~(dma_addr_t) 0x0)
|
|
|
|
|
2017-01-21 05:04:01 +08:00
|
|
|
extern const struct dma_map_ops s390_pci_dma_ops;
|
2012-11-29 21:33:30 +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)
|
2012-11-29 21:33:30 +08:00
|
|
|
{
|
2016-02-03 13:46:34 +08:00
|
|
|
return &dma_noop_ops;
|
2012-11-29 21:33:30 +08:00
|
|
|
}
|
|
|
|
|
2013-01-30 21:16:02 +08:00
|
|
|
static inline void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
|
|
|
|
enum dma_data_direction direction)
|
|
|
|
{
|
|
|
|
}
|
2012-11-29 21:33:30 +08:00
|
|
|
|
|
|
|
static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size)
|
|
|
|
{
|
|
|
|
if (!dev->dma_mask)
|
2015-03-31 07:46:05 +08:00
|
|
|
return false;
|
2012-11-29 21:33:30 +08:00
|
|
|
return addr + size - 1 <= *dev->dma_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _ASM_S390_DMA_MAPPING_H */
|