Re: [PATCH v3 29/29] iommu/arm-smmu-v3-kvm: Add IOMMU ops
From: Jason Gunthorpe <jgg@ziepe.ca>
Date: 2025-08-01 18:59:32
Also in:
kvmarm, linux-iommu, lkml
On Thu, Jul 31, 2025 at 05:44:55PM +0000, Mostafa Saleh wrote:
quoted
quoted
They are not random, as part of this series the SMMUv3 driver is split where some of the code goes to “arm-smmu-v3-common.c” which is used by both drivers, this reduces a lot of duplication.I find it very confusing. It made sense to factor some of the code out so that pKVM can have it's own smmv3 HW driver, sure. But I don't understand why a paravirtualized iommu driver for pKVM has any relation to smmuv3. Shouldn't it just be calling some hypercalls to set IDENTITY/BLOCKING?Well it’s not really “paravirtualized” as virtio-iommu, this is an SMMUv3 driver (it uses the same binding a the smmu-v3)
It re-use the same probe code, fw/hw parsing and so on (inside the kernel), also re-use the same structs to make that possible.
I think this is not quite true, I think you have some part of the smmu driver bootstrap the pkvm protected driver. But then the pkvm takes over all the registers and the command queue. Are you saying the event queue is left behind for the kernel? How does that work if it doesn't have access to the registers? So what is left of the actual *iommu subsystem* driver is just some pkvm hypercalls? It seems more sensible to me to have a pkvm HW driver for SMMUv3 that is split between pkvm and kernel, that operates the HW - but is NOT an iommu subsystem driver Then an iommu subsystem driver that does the hypercalls, that is NOT connected to SMMUv3 at all. In other words you have two cleanly seperate concerns here, an "pkvm iommu subsystem" that lets pkvm control iommu HW - and the current "iommu subsystem" that lets the kernel control iommu HW. The same driver should not register to both.
As mentioned in the cover letter, we can also still build nesting on top of this driver, and I plan to post an RFC for that, once this one is sorted.
I would expect nesting to present an actual paravirtualized SMMUv3 though, with a proper normal SMMUv3 IOMMU subystem driver. This is how ARM architecture is built to work, why mess it up? So my advice above seems cleaner, you have the pkvm iommu HW driver that turns around and presents a completely normal SMMUv3 HW API which is bound by the ordinately SMMUv3 iommu subsystem driver. Jason