[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 0/5] Interrupt Remap support for emulated amd viommu
From: |
Santosh Shukla |
Subject: |
[PATCH 0/5] Interrupt Remap support for emulated amd viommu |
Date: |
Wed, 4 Sep 2024 05:02:52 -0500 |
Series adds following feature support for emulated amd vIOMMU
1) Pass Through(PT) mode
2) Interrupt Remapping(IR) mode
1) PT mode
Introducing the shared 'nodma' memory region that can be aliased
by all the devices in the PT mode. Shared memory with aliasing
approach will help run VM faster when lot of devices attached to
VM.
2) IR mode
Shared IR memory region with aliasing approach proposed for the
reason mentioned in 1). Also add support to invalidate Interrupt
remaping table(IRT).
Series based on f259e4cb8a8b4ef5463326fc214a7d8d7703d5de.
Testing:
1. nvme/fio testing for VM with > 255 vCPU with xtsup=on and x2apic
enabled
2. Windows Server 2022 VM testing for > 255 vCPU.
Suravee Suthikulpanit (5):
amd_iommu: Rename variable mmio to mr_mmio
amd_iommu: Add support for pass though mode
amd_iommu: Use shared memory region for Interrupt Remapping
amd_iommu: Send notification when invaldate interrupt entry cache
amd_iommu: Check APIC ID > 255 for XTSup
hw/i386/acpi-build.c | 4 +-
hw/i386/amd_iommu.c | 98 +++++++++++++++++++++++++++++++++++---------
hw/i386/amd_iommu.h | 5 ++-
3 files changed, 85 insertions(+), 22 deletions(-)
--
2.43.5
- [PATCH 0/5] Interrupt Remap support for emulated amd viommu,
Santosh Shukla <=
- [PATCH 1/5] amd_iommu: Rename variable mmio to mr_mmio, Santosh Shukla, 2024/09/04
- [PATCH 2/5] amd_iommu: Add support for pass though mode, Santosh Shukla, 2024/09/04
- [PATCH 3/5] amd_iommu: Use shared memory region for Interrupt Remapping, Santosh Shukla, 2024/09/04
- [PATCH 4/5] amd_iommu: Send notification when invaldate interrupt entry cache, Santosh Shukla, 2024/09/04
- [PATCH 5/5] amd_iommu: Check APIC ID > 255 for XTSup, Santosh Shukla, 2024/09/04
- Re: [PATCH 0/5] Interrupt Remap support for emulated amd viommu, Michael S. Tsirkin, 2024/09/10