diff options
author | David Gibson | 2012-06-27 06:50:41 +0200 |
---|---|---|
committer | Anthony Liguori | 2012-06-27 23:33:25 +0200 |
commit | 10ca2943aab6646839769d78f80b0d5499efcbe9 (patch) | |
tree | a5b6dccc0b5aafb5d3d9ddef3532f8ca53c2bc5b /hw/ide/ich.c | |
parent | iommu: Make sglists and dma_bdrv helpers use new universal DMA helpers (diff) | |
download | qemu-10ca2943aab6646839769d78f80b0d5499efcbe9.tar.gz qemu-10ca2943aab6646839769d78f80b0d5499efcbe9.tar.xz qemu-10ca2943aab6646839769d78f80b0d5499efcbe9.zip |
ide/ahci: Use universal DMA helper functions
The AHCI device can provide both PCI and SysBus AHCI device
emulations. For this reason, it wasn't previously converted to use
the pci_dma_*() helper functions. Now that we have universal DMA
helper functions, this converts AHCI to use them.
The DMAContext is obtained from pci_dma_context() in the PCI case and
set to NULL in the SysBus case (i.e. we assume for now that a SysBus
AHCI has no IOMMU translation).
Cc: Kevin Wolf <kwolf@redhat.com>
Cc: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/ide/ich.c')
-rw-r--r-- | hw/ide/ich.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/ich.c b/hw/ide/ich.c index e3eaaea882..319bc2bb10 100644 --- a/hw/ide/ich.c +++ b/hw/ide/ich.c @@ -98,7 +98,7 @@ static int pci_ich9_ahci_init(PCIDevice *dev) uint8_t *sata_cap; d = DO_UPCAST(struct AHCIPCIState, card, dev); - ahci_init(&d->ahci, &dev->qdev, 6); + ahci_init(&d->ahci, &dev->qdev, pci_dma_context(dev), 6); pci_config_set_prog_interface(d->card.config, AHCI_PROGMODE_MAJOR_REV_1); |