Re: [RFC 0/4] Virtio uses DMA API for all devices
From: "Michael S. Tsirkin" <mst@redhat.com>
Date: 2018-08-05 00:10:05
Also in:
lkml
On Sat, Aug 04, 2018 at 01:15:00AM -0700, Christoph Hellwig wrote:
On Fri, Aug 03, 2018 at 10:17:32PM +0300, Michael S. Tsirkin wrote:quoted
It seems reasonable to teach a platform to override dma-range for a specific device e.g. in case it knows about bugs in ACPI.A platform will be able override dma-range using the dev->bus_dma_mask field starting in 4.19. But we'll still need a way how to a) document in the virtio spec that all bus dma quirks are to be applied
I agree it's a good idea. In particular I suspect that PLATFORM_IOMMU should be extended to cover that. But see below.
b) a way to document in a virtio-related spec how the bus handles
dma for Ben's totally fucked up hypervisor. Without that there
is not way we'll get interoperable implementations.So in this case however I'm not sure what exactly do we want to add. It seems that from point of view of the device, there is nothing special - it just gets a PA and writes there. It also seems that guest does not need to get any info from the device either. Instead guest itself needs device to DMA into specific addresses, for its own reasons. It seems that the fact that within guest it's implemented using a bounce buffer and that it's easiest to do by switching virtio to use the DMA API isn't something virtio spec concerns itself with. I'm open to suggestions. -- MST