qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-arm] [RFC v6 19/22] memory.h: Add set_page_size_mask IOMMUMemoryRe


From: Eric Auger
Subject: [Qemu-arm] [RFC v6 19/22] memory.h: Add set_page_size_mask IOMMUMemoryRegion callback
Date: Mon, 12 Feb 2018 18:58:21 +0000

This callback allows to inform the IOMMU memory region about
restrictions on the supported page sizes.

Signed-off-by: Eric Auger <address@hidden>
---
 include/exec/memory.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/include/exec/memory.h b/include/exec/memory.h
index 783ef64..1c0374f 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -208,6 +208,10 @@ typedef struct IOMMUMemoryRegionClass {
                                IOMMUAccessFlags flag);
     /* Returns minimum supported page size */
     uint64_t (*get_min_page_size)(IOMMUMemoryRegion *iommu);
+
+    /* Limits the supported page sizes to @pgsizes */
+    void (*set_page_size_mask)(IOMMUMemoryRegion *iommu, uint64_t pgsizes);
+
     /* Called when IOMMU Notifier flag changed */
     void (*notify_flag_changed)(IOMMUMemoryRegion *iommu,
                                 IOMMUNotifierFlag old_flags,
-- 
1.9.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]