aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/iommu.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/iommu.h')
-rw-r--r--include/linux/iommu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/iommu.h b/include/linux/iommu.h
index e6a7c9ff72f2..e438b30f062b 100644
--- a/include/linux/iommu.h
+++ b/include/linux/iommu.h
@@ -27,7 +27,7 @@
27#define IOMMU_READ (1 << 0) 27#define IOMMU_READ (1 << 0)
28#define IOMMU_WRITE (1 << 1) 28#define IOMMU_WRITE (1 << 1)
29#define IOMMU_CACHE (1 << 2) /* DMA cache coherency */ 29#define IOMMU_CACHE (1 << 2) /* DMA cache coherency */
30#define IOMMU_EXEC (1 << 3) 30#define IOMMU_NOEXEC (1 << 3)
31 31
32struct iommu_ops; 32struct iommu_ops;
33struct iommu_group; 33struct iommu_group;
@@ -61,6 +61,7 @@ enum iommu_cap {
61 IOMMU_CAP_CACHE_COHERENCY, /* IOMMU can enforce cache coherent DMA 61 IOMMU_CAP_CACHE_COHERENCY, /* IOMMU can enforce cache coherent DMA
62 transactions */ 62 transactions */
63 IOMMU_CAP_INTR_REMAP, /* IOMMU supports interrupt isolation */ 63 IOMMU_CAP_INTR_REMAP, /* IOMMU supports interrupt isolation */
64 IOMMU_CAP_NOEXEC, /* IOMMU_NOEXEC flag */
64}; 65};
65 66
66/* 67/*