forked from Minki/linux
ea8c64ace8
phys_to_dma, dma_to_phys and dma_capable are helpers published by architecture code for use of swiotlb and xen-swiotlb only. Drivers are not supposed to use these directly, but use the DMA API instead. Move these to a new asm/dma-direct.h helper, included by a linux/dma-direct.h wrapper that provides the default linear mapping unless the architecture wants to override it. In the MIPS case the existing dma-coherent.h is reused for now as untangling it will take a bit of work. Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Robin Murphy <robin.murphy@arm.com>
31 lines
853 B
C
31 lines
853 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ASM_X86_DMA_DIRECT_H
|
|
#define ASM_X86_DMA_DIRECT_H 1
|
|
|
|
#include <linux/mem_encrypt.h>
|
|
|
|
#ifdef CONFIG_X86_DMA_REMAP /* Platform code defines bridge-specific code */
|
|
bool dma_capable(struct device *dev, dma_addr_t addr, size_t size);
|
|
dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr);
|
|
phys_addr_t dma_to_phys(struct device *dev, dma_addr_t daddr);
|
|
#else
|
|
static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size)
|
|
{
|
|
if (!dev->dma_mask)
|
|
return 0;
|
|
|
|
return addr + size - 1 <= *dev->dma_mask;
|
|
}
|
|
|
|
static inline dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr)
|
|
{
|
|
return __sme_set(paddr);
|
|
}
|
|
|
|
static inline phys_addr_t dma_to_phys(struct device *dev, dma_addr_t daddr)
|
|
{
|
|
return __sme_clr(daddr);
|
|
}
|
|
#endif /* CONFIG_X86_DMA_REMAP */
|
|
#endif /* ASM_X86_DMA_DIRECT_H */
|