forked from mirrors/linux
		
	-----BEGIN PGP SIGNATURE----- iQFSBAABCAA8FiEEq68RxlopcLEwq+PEeb4+QwBBGIYFAl0Os1seHHRvcnZhbGRz QGxpbnV4LWZvdW5kYXRpb24ub3JnAAoJEHm+PkMAQRiGtx4H/j6i482XzcGFKTBm A7mBoQpy+kLtoUov4EtBAR62OuwI8rsahW9di37QKndPoQrczWaKBmr3De6LCdPe v3pl3O6wBbvH5ru+qBPFX9PdNbDvimEChh7LHxmMxNQq3M+AjZAZVJyfpoiFnx35 Fbge+LZaH/k8HMwZmkMr5t9Mpkip715qKg2o9Bua6dkH0AqlcpLlC8d9a+HIVw/z aAsyGSU8jRwhoAOJsE9bJf0acQ/pZSqmFp0rDKqeFTSDMsbDRKLGq/dgv4nW0RiW s7xqsjb/rdcvirRj3rv9+lcTVkOtEqwk0PVdL9WOf7g4iYrb3SOIZh8ZyViaDSeH VTS5zps= =huBY -----END PGP SIGNATURE----- Merge tag 'v5.2-rc6' into generic-dma-ops Linux 5.2-rc6
		
			
				
	
	
		
			82 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0-only */
 | 
						|
/*
 | 
						|
 * Copyright (C) 2014-2015 ARM Ltd.
 | 
						|
 */
 | 
						|
#ifndef __DMA_IOMMU_H
 | 
						|
#define __DMA_IOMMU_H
 | 
						|
 | 
						|
#include <linux/errno.h>
 | 
						|
#include <linux/types.h>
 | 
						|
 | 
						|
#ifdef CONFIG_IOMMU_DMA
 | 
						|
#include <linux/dma-mapping.h>
 | 
						|
#include <linux/iommu.h>
 | 
						|
#include <linux/msi.h>
 | 
						|
 | 
						|
/* Domain management interface for IOMMU drivers */
 | 
						|
int iommu_get_dma_cookie(struct iommu_domain *domain);
 | 
						|
int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base);
 | 
						|
void iommu_put_dma_cookie(struct iommu_domain *domain);
 | 
						|
 | 
						|
/* Setup call for arch DMA mapping code */
 | 
						|
void iommu_setup_dma_ops(struct device *dev, u64 dma_base, u64 size);
 | 
						|
 | 
						|
/* The DMA API isn't _quite_ the whole story, though... */
 | 
						|
/*
 | 
						|
 * iommu_dma_prepare_msi() - Map the MSI page in the IOMMU device
 | 
						|
 *
 | 
						|
 * The MSI page will be stored in @desc.
 | 
						|
 *
 | 
						|
 * Return: 0 on success otherwise an error describing the failure.
 | 
						|
 */
 | 
						|
int iommu_dma_prepare_msi(struct msi_desc *desc, phys_addr_t msi_addr);
 | 
						|
 | 
						|
/* Update the MSI message if required. */
 | 
						|
void iommu_dma_compose_msi_msg(struct msi_desc *desc,
 | 
						|
			       struct msi_msg *msg);
 | 
						|
 | 
						|
void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list);
 | 
						|
 | 
						|
#else /* CONFIG_IOMMU_DMA */
 | 
						|
 | 
						|
struct iommu_domain;
 | 
						|
struct msi_desc;
 | 
						|
struct msi_msg;
 | 
						|
struct device;
 | 
						|
 | 
						|
static inline void iommu_setup_dma_ops(struct device *dev, u64 dma_base,
 | 
						|
		u64 size)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
static inline int iommu_get_dma_cookie(struct iommu_domain *domain)
 | 
						|
{
 | 
						|
	return -ENODEV;
 | 
						|
}
 | 
						|
 | 
						|
static inline int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base)
 | 
						|
{
 | 
						|
	return -ENODEV;
 | 
						|
}
 | 
						|
 | 
						|
static inline void iommu_put_dma_cookie(struct iommu_domain *domain)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
static inline int iommu_dma_prepare_msi(struct msi_desc *desc,
 | 
						|
					phys_addr_t msi_addr)
 | 
						|
{
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
static inline void iommu_dma_compose_msi_msg(struct msi_desc *desc,
 | 
						|
					     struct msi_msg *msg)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
static inline void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
#endif	/* CONFIG_IOMMU_DMA */
 | 
						|
#endif	/* __DMA_IOMMU_H */
 |