From: Santosh Shukla <santosh.shukla@amd.com>
To: <qemu-devel@nongnu.org>
Cc: <pbonzini@redhat.com>, <joao.m.martins@oracle.com>,
<Suravee.Suthikulpanit@amd.com>, <vasant.hegde@amd.com>,
<mtosatti@redhat.com>, <mst@redhat.com>,
<marcel.apfelbaum@gmail.com>
Subject: [PATCH 4/5] amd_iommu: Send notification when invaldate interrupt entry cache
Date: Wed, 4 Sep 2024 05:02:56 -0500 [thread overview]
Message-ID: <20240904100257.184851-5-santosh.shukla@amd.com> (raw)
In-Reply-To: <20240904100257.184851-1-santosh.shukla@amd.com>
From: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
In order to support AMD IOMMU interrupt remapping emulation with PCI
pass-through devices, QEMU needs to notify VFIO when guest IOMMU driver
updates and invalidate the guest interrupt remapping table (IRT), and
communicate information so that the host IOMMU driver can update
the shadowed interrupt remapping table in the host IOMMU.
Therefore, send notification when guet IOMMU emulates the IRT invalidation
commands.
Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Signed-off-by: Santosh Shukla <santosh.shukla@amd.com>
---
hw/i386/amd_iommu.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/hw/i386/amd_iommu.c b/hw/i386/amd_iommu.c
index ffe91dff3986..5acb40fb909c 100644
--- a/hw/i386/amd_iommu.c
+++ b/hw/i386/amd_iommu.c
@@ -431,6 +431,12 @@ static void amdvi_complete_ppr(AMDVIState *s, uint64_t *cmd)
trace_amdvi_ppr_exec();
}
+static void amdvi_intremap_inval_notify_all(AMDVIState *s, bool global,
+ uint32_t index, uint32_t mask)
+{
+ x86_iommu_iec_notify_all(X86_IOMMU_DEVICE(s), global, index, mask);
+}
+
static void amdvi_inval_all(AMDVIState *s, uint64_t *cmd)
{
if (extract64(cmd[0], 0, 60) || cmd[1]) {
@@ -438,6 +444,9 @@ static void amdvi_inval_all(AMDVIState *s, uint64_t *cmd)
s->cmdbuf + s->cmdbuf_head);
}
+ /* Notify global invalidation */
+ amdvi_intremap_inval_notify_all(s, true, 0, 0);
+
amdvi_iotlb_reset(s);
trace_amdvi_all_inval();
}
@@ -486,6 +495,9 @@ static void amdvi_inval_inttable(AMDVIState *s, uint64_t *cmd)
return;
}
+ /* Notify global invalidation */
+ amdvi_intremap_inval_notify_all(s, true, 0, 0);
+
trace_amdvi_intr_inval();
}
--
2.43.5
next prev parent reply other threads:[~2024-09-04 10:05 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-04 10:02 [PATCH 0/5] Interrupt Remap support for emulated amd viommu Santosh Shukla
2024-09-04 10:02 ` [PATCH 1/5] amd_iommu: Rename variable mmio to mr_mmio Santosh Shukla
2024-09-04 10:02 ` [PATCH 2/5] amd_iommu: Add support for pass though mode Santosh Shukla
2024-09-04 10:02 ` [PATCH 3/5] amd_iommu: Use shared memory region for Interrupt Remapping Santosh Shukla
2024-09-04 10:02 ` Santosh Shukla [this message]
2024-09-04 10:02 ` [PATCH 5/5] amd_iommu: Check APIC ID > 255 for XTSup Santosh Shukla
2024-09-10 20:14 ` [PATCH 0/5] Interrupt Remap support for emulated amd viommu Michael S. Tsirkin
2024-09-12 5:40 ` Shukla, Santosh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240904100257.184851-5-santosh.shukla@amd.com \
--to=santosh.shukla@amd.com \
--cc=Suravee.Suthikulpanit@amd.com \
--cc=joao.m.martins@oracle.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=mtosatti@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=vasant.hegde@amd.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).