Re: [RFC] /dev/ioasid uAPI proposal

From: Jason Wang
Date: Thu Jun 03 2021 - 21:11:19 EST



在 2021/6/3 下午9:09, Jason Gunthorpe 写道:
On Thu, Jun 03, 2021 at 10:52:51AM +0800, Jason Wang wrote:

Basically, we don't want to bother with pseudo KVM device like what VFIO
did. So for simplicity, we rules out the IOMMU that can't enforce coherency
in vhost-vDPA if the parent purely depends on the platform IOMMU:
VDPA HW cannot issue no-snoop TLPs in the first place.


Note that virtio/vDPA is not necessarily a PCI device.



virtio does not define a protocol to discover such a functionality,


Actually we had:

VIRTIO_F_ACCESS_PLATFORM(33)
This feature indicates that the device can be used on a platform where device access to data in memory is limited and/or translated. E.g. this is the case if the device can be located behind an IOMMU that translates bus addresses from the device into physical addresses in memory, if the device can be limited to only access certain memory addresses or if special commands such as a cache flush can be needed to synchronise data in memory with the device.


nor do any virtio drivers implement the required platform specific
cache flushing to make no-snoop TLPs work.


I don't get why virtio drivers needs to do that. I think DMA API should hide those arch/platform specific stuffs from us.



It is fundamentally part of the virtio HW PCI API that a device vendor
cannot alter.


The spec doesn't forbid this, and it just leave the detection and action to the driver in a platform specific way.

Thanks



Basically since we already know that the virtio kernel drivers do not
call the cache flush instruction we don't need the weird KVM logic to
turn it on at all.

Enforcing no-snoop at the IOMMU here is redundant/confusing.

Jason