From: "Michael S. Tsirkin" <mst@redhat.com>
To: "Cédric Le Goater" <clg@redhat.com>
Cc: Zhenzhong Duan <zhenzhong.duan@intel.com>,
qemu-devel@nongnu.org, alex@shazbot.org, eric.auger@redhat.com,
jasowang@redhat.com, peterx@redhat.com, ddutile@redhat.com,
jgg@nvidia.com, nicolinc@nvidia.com, skolothumtho@nvidia.com,
joao.m.martins@oracle.com, clement.mathieu--drif@eviden.com,
kevin.tian@intel.com, yi.l.liu@intel.com, chao.p.peng@intel.com
Subject: Re: [PATCH v10 00/19] intel_iommu: Enable first stage translation for passthrough device
Date: Mon, 12 Jan 2026 17:04:56 -0500 [thread overview]
Message-ID: <20260112170421-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <a080e728-6754-4897-9531-61b875720b33@redhat.com>
On Fri, Jan 09, 2026 at 03:34:48PM +0100, Cédric Le Goater wrote:
> Michael,
>
> Since there are a couple of VFIO series depending on this one, do you mind
> if it goes through the VFIO queue ?
>
> Thanks,
>
> C.
Okay, I can drop it for now. Feel free to add:
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
>
>
>
> On 1/6/26 07:12, Zhenzhong Duan wrote:
> > Hi,
> >
> > Based on Cédric's suggestions[1], The nesting series v8 is split to
> > "base nesting series" + "ERRATA_772415_SPR17 quirk series", this is the
> > base nesting series.
> >
> > For passthrough device with intel_iommu.x-flts=on, we don't do shadowing of
> > guest page table but pass first stage page table to host side to construct a
> > nested HWPT. There was some effort to enable this feature in old days, see
> > [2] for details.
> >
> > The key design is to utilize the dual-stage IOMMU translation (also known as
> > IOMMU nested translation) capability in host IOMMU. As the below diagram shows,
> > guest I/O page table pointer in GPA (guest physical address) is passed to host
> > and be used to perform the first stage address translation. Along with it,
> > modifications to present mappings in the guest I/O page table should be followed
> > with an IOTLB invalidation.
> >
> > .-------------. .---------------------------.
> > | vIOMMU | | Guest I/O page table |
> > | | '---------------------------'
> > .----------------/
> > | PASID Entry |--- PASID cache flush --+
> > '-------------' |
> > | | V
> > | | I/O page table pointer in GPA
> > '-------------'
> > Guest
> > ------| Shadow |---------------------------|--------
> > v v v
> > Host
> > .-------------. .-----------------------------.
> > | pIOMMU | | First stage for GIOVA->GPA |
> > | | '-----------------------------'
> > .----------------/ |
> > | PASID Entry | V (Nested xlate)
> > '----------------\.--------------------------------------------.
> > | | | Second stage for GPA->HPA, unmanaged domain|
> > | | '--------------------------------------------'
> > '-------------'
> > <Intel VT-d Nested translation>
> >
> > This series reuse VFIO device's default HWPT as nesting parent instead of
> > creating new one. This way avoids duplicate code of a new memory listener,
> > all existing feature from VFIO listener can be shared, e.g., ram discard,
> > dirty tracking, etc. Two limitations are: 1) not supporting VFIO device
> > under a PCI bridge with emulated device, because emulated device wants
> > IOMMU AS and VFIO device stick to system AS; 2) not supporting kexec or
> > reboot from "intel_iommu=on,sm_on" to "intel_iommu=on,sm_off" on platform
> > with ERRATA_772415_SPR17, because VFIO device's default HWPT is created
> > with NEST_PARENT flag, kernel inhibit RO mappings when switch to shadow
> > mode.
> >
> > This series is also a prerequisite work for vSVA, i.e. Sharing guest
> > application address space with passthrough devices.
> >
> > There are some interactions between VFIO and vIOMMU
> > * vIOMMU registers PCIIOMMUOps [set|unset]_iommu_device to PCI
> > subsystem. VFIO calls them to register/unregister HostIOMMUDevice
> > instance to vIOMMU at vfio device realize stage.
> > * vIOMMU registers PCIIOMMUOps get_viommu_flags to PCI subsystem.
> > VFIO calls it to get vIOMMU exposed flags.
> > * vIOMMU calls HostIOMMUDeviceIOMMUFD interface [at|de]tach_hwpt
> > to bind/unbind device to IOMMUFD backed domains, either nested
> > domain or not.
> >
> > See below diagram:
> >
> > VFIO Device Intel IOMMU
> > .-----------------. .-------------------.
> > | | | |
> > | .---------|PCIIOMMUOps |.-------------. |
> > | | IOMMUFD |(set/unset_iommu_device) || Host IOMMU | |
> > | | Device |------------------------>|| Device list | |
> > | .---------|(get_viommu_flags) |.-------------. |
> > | | | | |
> > | | | V |
> > | .---------| HostIOMMUDeviceIOMMUFD | .-------------. |
> > | | IOMMUFD | (attach_hwpt)| | Host IOMMU | |
> > | | link |<------------------------| | Device | |
> > | .---------| (detach_hwpt)| .-------------. |
> > | | | | |
> > | | | ... |
> > .-----------------. .-------------------.
> >
> > Below is an example to enable first stage translation for passthrough device:
> >
> > -M q35,...
> > -device intel-iommu,x-scalable-mode=on,x-flts=on...
> > -object iommufd,id=iommufd0 -device vfio-pci,iommufd=iommufd0,...
> >
> > Test done:
> > - VFIO devices hotplug/unplug
> > - different VFIO devices linked to different iommufds
> > - vhost net device ping test
> > - migration with QAT passthrough
> >
> > PATCH01-08: Some preparing work
> > PATCH09-10: Compatibility check between vIOMMU and Host IOMMU
> > PATCH11-16: Implement first stage translation for passthrough device
> > PATCH17: Add migration support and optimization
> > PATCH18: Enable first stage translation for passthrough device
> > PATCH19: Add doc
> >
> > Qemu code can be found at [3], it's based on master 159107e.
> >
> > Fault event injection to guest isn't supported in this series, we presume guest
> > kernel always construct correct first stage page table for passthrough device.
> > For emulated devices, the emulation code already provided first stage fault
> > injection.
> >
> > TODO:
> > - Fault event injection to guest when HW first stage page table faults
> >
> > [1] https://lore.kernel.org/qemu-devel/bbc8412b-25c3-4c95-9fde-a1c9c29b54ce@redhat.com/
> > [2] https://patchwork.kernel.org/project/kvm/cover/20210302203827.437645-1-yi.l.liu@intel.com/
> > [3] https://github.com/yiliu1765/qemu/tree/zhenzhong/iommufd_nesting.v10
> >
> > Thanks
> > Zhenzhong
> >
> > Changelog:
> > v10:
> > - All headers under include/hw/ have been moved to include/hw/core/, do
> > the same for iommu.h (Cédric)
> >
> > v9:
> > - split v8 to base nesting series + ERRATA_772415_SPR17 series (Cédric)
> > - s/fs_hwpt/fs_hwpt_id, s/vtd_bind_guest_pasid/vtd_propagate_guest_pasid (Eric)
> > - polish error msg when CONFIG_VTD_ACCEL isn't defined (Eric)
> > - refactor hwpt_id assignment in vtd_device_attach_iommufd() (Eric)
> >
> > v8:
> > - add hw/i386/intel_iommu_accel.[hc] to hold accel code (Eric)
> > - return bool for all vtd accel related functions (Cédric, Eric)
> > - introduce a new PCIIOMMUOps::get_host_iommu_quirks() (Eric, Nicolin)
> > - minor polishment to comment and code (Cédric, Eric)
> > - drop some R-b as they have changes needing review again
> >
> > v7:
> > - s/host_iommu_extract_vendor_caps/host_iommu_extract_quirks (Nicolin)
> > - s/RID_PASID/PASID_0 (Eric)
> > - drop rid2pasid check in vtd_do_iommu_translate (Eric)
> > - refine DID check in vtd_pasid_cache_sync_locked (Liuyi)
> > - refine commit log (Nicolin, Eric, Liuyi)
> > - Fix doc build (Cédric)
> > - add migration support
> >
> > v6:
> > - delete RPS capability related supporting code (Eric, Yi)
> > - use terminology 'first/second stage' to replace 'first/second level" (Eric, Yi)
> > - use get_viommu_flags() instead of get_viommu_caps() (Nicolin)
> > - drop non-RID_PASID related code and simplify pasid invalidation handling (Eric, Yi)
> > - drop the patch that handle pasid replay when context invalidation (Eric)
> > - move vendor specific cap check from VFIO core to backend/iommufd.c (Nicolin)
> >
> > v5:
> > - refine commit log of patch2 (Cédric, Nicolin)
> > - introduce helper vfio_pci_from_vfio_device() (Cédric)
> > - introduce helper vfio_device_viommu_get_nested() (Cédric)
> > - pass 'bool bypass_ro' argument to vfio_listener_valid_section() instead of 'VFIOContainerBase *' (Cédric)
> > - fix a potential build error reported by Jim Shu
> >
> > v4:
> > - s/VIOMMU_CAP_STAGE1/VIOMMU_CAP_HW_NESTED (Eric, Nicolin, Donald, Shameer)
> > - clarify get_viommu_cap() return pure emulated caps and explain reason in commit log (Eric)
> > - retrieve the ce only if vtd_as->pasid in vtd_as_to_iommu_pasid_locked (Eric)
> > - refine doc comment and commit log in patch10-11 (Eric)
> >
> > v3:
> > - define enum type for VIOMMU_CAP_* (Eric)
> > - drop inline flag in the patch which uses the helper (Eric)
> > - use extract64 in new introduced MACRO (Eric)
> > - polish comments and fix typo error (Eric)
> > - split workaround patch for ERRATA_772415_SPR17 to two patches (Eric)
> > - optimize bind/unbind error path processing
> >
> > v2:
> > - introduce get_viommu_cap() to get STAGE1 flag to create nesting parent HWPT (Liuyi)
> > - reuse VFIO's default HWPT as parent HWPT of nested translation (Nicolin, Liuyi)
> > - abandon support of VFIO device under pcie-to-pci bridge to simplify design (Liuyi)
> > - bypass RO mapping in VFIO's default HWPT if ERRATA_772415_SPR17 (Liuyi)
> > - drop vtd_dev_to_context_entry optimization (Liuyi)
> >
> > v1:
> > - simplify vendor specific checking in vtd_check_hiod (Cédric, Nicolin)
> > - rebase to master
> >
> >
> > Yi Liu (3):
> > intel_iommu_accel: Propagate PASID-based iotlb invalidation to host
> > intel_iommu: Replay all pasid bindings when either SRTP or TE bit is
> > changed
> > intel_iommu: Replay pasid bindings after context cache invalidation
> >
> > Zhenzhong Duan (16):
> > intel_iommu: Rename vtd_ce_get_rid2pasid_entry to
> > vtd_ce_get_pasid_entry
> > intel_iommu: Delete RPS capability related supporting code
> > intel_iommu: Update terminology to match VTD spec
> > hw/pci: Export pci_device_get_iommu_bus_devfn() and return bool
> > hw/pci: Introduce pci_device_get_viommu_flags()
> > intel_iommu: Implement get_viommu_flags() callback
> > intel_iommu: Introduce a new structure VTDHostIOMMUDevice
> > vfio/iommufd: Force creating nesting parent HWPT
> > intel_iommu_accel: Check for compatibility with IOMMUFD backed device
> > when x-flts=on
> > intel_iommu_accel: Fail passthrough device under PCI bridge if
> > x-flts=on
> > intel_iommu_accel: Stick to system MR for IOMMUFD backed host device
> > when x-flts=on
> > intel_iommu: Add some macros and inline functions
> > intel_iommu_accel: Bind/unbind guest page table to host
> > intel_iommu: Add migration support with x-flts=on
> > intel_iommu: Enable host device when x-flts=on in scalable mode
> > docs/devel: Add IOMMUFD nesting documentation
> >
> > MAINTAINERS | 2 +
> > docs/devel/vfio-iommufd.rst | 17 ++
> > hw/i386/intel_iommu_accel.h | 51 ++++
> > hw/i386/intel_iommu_internal.h | 155 +++++++---
> > include/hw/core/iommu.h | 25 ++
> > include/hw/i386/intel_iommu.h | 6 +-
> > include/hw/pci/pci.h | 24 ++
> > include/hw/vfio/vfio-device.h | 2 +
> > hw/i386/intel_iommu.c | 528 +++++++++++++++++++--------------
> > hw/i386/intel_iommu_accel.c | 251 ++++++++++++++++
> > hw/pci/pci.c | 23 +-
> > hw/vfio/device.c | 12 +
> > hw/vfio/iommufd.c | 9 +
> > tests/qtest/intel-iommu-test.c | 4 +-
> > hw/i386/Kconfig | 5 +
> > hw/i386/meson.build | 1 +
> > hw/i386/trace-events | 4 +
> > 17 files changed, 833 insertions(+), 286 deletions(-)
> > create mode 100644 hw/i386/intel_iommu_accel.h
> > create mode 100644 include/hw/core/iommu.h
> > create mode 100644 hw/i386/intel_iommu_accel.c
> >
>
>
next prev parent reply other threads:[~2026-01-12 22:05 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-06 6:12 [PATCH v10 00/19] intel_iommu: Enable first stage translation for passthrough device Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 01/19] intel_iommu: Rename vtd_ce_get_rid2pasid_entry to vtd_ce_get_pasid_entry Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 02/19] intel_iommu: Delete RPS capability related supporting code Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 03/19] intel_iommu: Update terminology to match VTD spec Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 04/19] hw/pci: Export pci_device_get_iommu_bus_devfn() and return bool Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 05/19] hw/pci: Introduce pci_device_get_viommu_flags() Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 06/19] intel_iommu: Implement get_viommu_flags() callback Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 07/19] intel_iommu: Introduce a new structure VTDHostIOMMUDevice Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 08/19] vfio/iommufd: Force creating nesting parent HWPT Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 09/19] intel_iommu_accel: Check for compatibility with IOMMUFD backed device when x-flts=on Zhenzhong Duan
2026-01-13 3:12 ` Yi Liu
2026-01-06 6:12 ` [PATCH v10 10/19] intel_iommu_accel: Fail passthrough device under PCI bridge if x-flts=on Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 11/19] intel_iommu_accel: Stick to system MR for IOMMUFD backed host device when x-flts=on Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 12/19] intel_iommu: Add some macros and inline functions Zhenzhong Duan
2026-01-06 7:38 ` Eric Auger
2026-01-06 6:12 ` [PATCH v10 13/19] intel_iommu_accel: Bind/unbind guest page table to host Zhenzhong Duan
2026-01-06 7:46 ` Eric Auger
2026-01-06 6:12 ` [PATCH v10 14/19] intel_iommu_accel: Propagate PASID-based iotlb invalidation " Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 15/19] intel_iommu: Replay all pasid bindings when either SRTP or TE bit is changed Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 16/19] intel_iommu: Replay pasid bindings after context cache invalidation Zhenzhong Duan
2026-01-06 6:12 ` [PATCH v10 17/19] intel_iommu: Add migration support with x-flts=on Zhenzhong Duan
2026-01-06 6:13 ` [PATCH v10 18/19] intel_iommu: Enable host device when x-flts=on in scalable mode Zhenzhong Duan
2026-01-06 6:13 ` [PATCH v10 19/19] docs/devel: Add IOMMUFD nesting documentation Zhenzhong Duan
2026-01-09 14:34 ` [PATCH v10 00/19] intel_iommu: Enable first stage translation for passthrough device Cédric Le Goater
2026-01-09 14:50 ` Cédric Le Goater
2026-01-12 22:04 ` Michael S. Tsirkin [this message]
2026-01-13 3:12 ` Yi Liu
2026-01-13 7:35 ` Cédric Le Goater
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=20260112170421-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=alex@shazbot.org \
--cc=chao.p.peng@intel.com \
--cc=clement.mathieu--drif@eviden.com \
--cc=clg@redhat.com \
--cc=ddutile@redhat.com \
--cc=eric.auger@redhat.com \
--cc=jasowang@redhat.com \
--cc=jgg@nvidia.com \
--cc=joao.m.martins@oracle.com \
--cc=kevin.tian@intel.com \
--cc=nicolinc@nvidia.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=skolothumtho@nvidia.com \
--cc=yi.l.liu@intel.com \
--cc=zhenzhong.duan@intel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.