]> Git Repo - qemu.git/commit
iommu: Make sglists and dma_bdrv helpers use new universal DMA helpers
authorDavid Gibson <[email protected]>
Wed, 27 Jun 2012 04:50:40 +0000 (14:50 +1000)
committerAnthony Liguori <[email protected]>
Wed, 27 Jun 2012 21:33:25 +0000 (16:33 -0500)
commitc65bcef30659442a45ed0842de80d246d0162fd7
tree618cbb6e19627aef4627b15ba6380306530dd3f9
parent9ac6a217f26d2044929ac4261826d24cc8c3dda5
iommu: Make sglists and dma_bdrv helpers use new universal DMA helpers

dma-helpers.c contains a number of helper functions for doing
scatter/gather DMA, and various block device related DMA.  Currently,
these directly access guest memory using cpu_physical_memory_*(),
assuming no IOMMU translation.

This patch updates this code to use the new universal DMA helper
functions.  qemu_sglist_init() now takes a DMAContext * to describe
the DMA address space in which the scatter/gather will take place.

We minimally update the callers qemu_sglist_init() to pass NULL
(i.e. no translation, same as current behaviour).  Some of those
callers should pass something else in some cases to allow proper IOMMU
translation in future, but that will be fixed in later patches.

Cc: Kevin Wolf <[email protected]>
Cc: Michael S. Tsirkin <[email protected]>
Cc: Paolo Bonzini <[email protected]>
Signed-off-by: David Gibson <[email protected]>
Signed-off-by: Benjamin Herrenschmidt <[email protected]>
Signed-off-by: Anthony Liguori <[email protected]>
dma-helpers.c
dma.h
hw/ide/ahci.c
hw/ide/macio.c
hw/pci.h
This page took 0.027576 seconds and 4 git commands to generate.