Merge tag '5.15-rc-cifs-part2' of git://git.samba.org/sfrench/cifs-2.6
[linux-block.git] / include / linux / dma-iommu.h
CommitLineData
caab277b 1/* SPDX-License-Identifier: GPL-2.0-only */
0db2e5d1
RM
2/*
3 * Copyright (C) 2014-2015 ARM Ltd.
0db2e5d1
RM
4 */
5#ifndef __DMA_IOMMU_H
6#define __DMA_IOMMU_H
7
185da893 8#include <linux/errno.h>
8a22a3e1 9#include <linux/types.h>
0db2e5d1
RM
10
11#ifdef CONFIG_IOMMU_DMA
461a6946 12#include <linux/dma-mapping.h>
0db2e5d1 13#include <linux/iommu.h>
44bb7e24 14#include <linux/msi.h>
0db2e5d1 15
0db2e5d1
RM
16/* Domain management interface for IOMMU drivers */
17int iommu_get_dma_cookie(struct iommu_domain *domain);
fdbe574e 18int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base);
0db2e5d1
RM
19void iommu_put_dma_cookie(struct iommu_domain *domain);
20
21/* Setup call for arch DMA mapping code */
ac6d7046 22void iommu_setup_dma_ops(struct device *dev, u64 dma_base, u64 dma_limit);
452e69b5 23int iommu_dma_init_fq(struct iommu_domain *domain);
0db2e5d1 24
44bb7e24 25/* The DMA API isn't _quite_ the whole story, though... */
ece6e6f0
JG
26/*
27 * iommu_dma_prepare_msi() - Map the MSI page in the IOMMU device
28 *
29 * The MSI page will be stored in @desc.
30 *
31 * Return: 0 on success otherwise an error describing the failure.
32 */
33int iommu_dma_prepare_msi(struct msi_desc *desc, phys_addr_t msi_addr);
34
35/* Update the MSI message if required. */
36void iommu_dma_compose_msi_msg(struct msi_desc *desc,
37 struct msi_msg *msg);
38
273df963 39void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list);
44bb7e24 40
230309d0
TM
41void iommu_dma_free_cpu_cached_iovas(unsigned int cpu,
42 struct iommu_domain *domain);
43
3542dcb1
RM
44extern bool iommu_dma_forcedac;
45
185da893 46#else /* CONFIG_IOMMU_DMA */
0db2e5d1
RM
47
48struct iommu_domain;
ece6e6f0 49struct msi_desc;
44bb7e24 50struct msi_msg;
4b1c8898 51struct device;
0db2e5d1 52
06d60728 53static inline void iommu_setup_dma_ops(struct device *dev, u64 dma_base,
ac6d7046 54 u64 dma_limit)
0db2e5d1 55{
0db2e5d1
RM
56}
57
452e69b5
RM
58static inline int iommu_dma_init_fq(struct iommu_domain *domain)
59{
60 return -EINVAL;
61}
62
0db2e5d1
RM
63static inline int iommu_get_dma_cookie(struct iommu_domain *domain)
64{
65 return -ENODEV;
66}
67
fdbe574e
RM
68static inline int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base)
69{
70 return -ENODEV;
71}
72
0db2e5d1
RM
73static inline void iommu_put_dma_cookie(struct iommu_domain *domain)
74{
75}
76
ece6e6f0
JG
77static inline int iommu_dma_prepare_msi(struct msi_desc *desc,
78 phys_addr_t msi_addr)
79{
80 return 0;
81}
82
83static inline void iommu_dma_compose_msi_msg(struct msi_desc *desc,
84 struct msi_msg *msg)
85{
86}
87
273df963
RM
88static inline void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list)
89{
90}
91
0db2e5d1 92#endif /* CONFIG_IOMMU_DMA */
0db2e5d1 93#endif /* __DMA_IOMMU_H */