[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 10/10] intel-hda: Use PCI DMA stub functions
From: |
David Gibson |
Subject: |
[Qemu-devel] [PATCH 10/10] intel-hda: Use PCI DMA stub functions |
Date: |
Thu, 1 Sep 2011 15:01:03 +1000 |
This updates the intel-hda device emulation to use the explicit PCI DMA
functions, instead of directly calling physical memory access functions.
Signed-off-by: David Gibson <address@hidden>
---
hw/intel-hda.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/hw/intel-hda.c b/hw/intel-hda.c
index 4272204..392bfc5 100644
--- a/hw/intel-hda.c
+++ b/hw/intel-hda.c
@@ -24,6 +24,7 @@
#include "audiodev.h"
#include "intel-hda.h"
#include "intel-hda-defs.h"
+#include "dma.h"
/* --------------------------------------------------------------------- */
/* hda bus */
@@ -425,8 +426,7 @@ static bool intel_hda_xfer(HDACodecDevice *dev, uint32_t
stnr, bool output,
dprint(d, 3, "dma: entry %d, pos %d/%d, copy %d\n",
st->be, st->bp, st->bpl[st->be].len, copy);
- cpu_physical_memory_rw(st->bpl[st->be].addr + st->bp,
- buf, copy, !output);
+ pci_dma_rw(&d->pci, st->bpl[st->be].addr + st->bp, buf, copy, !output);
st->lpib += copy;
st->bp += copy;
buf += copy;
@@ -470,7 +470,7 @@ static void intel_hda_parse_bdl(IntelHDAState *d,
IntelHDAStream *st)
g_free(st->bpl);
st->bpl = g_malloc(sizeof(bpl) * st->bentries);
for (i = 0; i < st->bentries; i++, addr += 16) {
- cpu_physical_memory_read(addr, buf, 16);
+ pci_dma_read(&d->pci, addr, buf, 16);
st->bpl[i].addr = le64_to_cpu(*(uint64_t *)buf);
st->bpl[i].len = le32_to_cpu(*(uint32_t *)(buf + 8));
st->bpl[i].flags = le32_to_cpu(*(uint32_t *)(buf + 12));
--
1.7.5.4
- Re: [Qemu-devel] [PATCH 01/10] Add stub functions for PCI device models to do PCI DMA, (continued)
- Re: [Qemu-devel] [PATCH 01/10] Add stub functions for PCI device models to do PCI DMA, David Gibson, 2011/09/01
- Re: [Qemu-devel] [PATCH 01/10] Add stub functions for PCI device models to do PCI DMA, Avi Kivity, 2011/09/02
- Re: [Qemu-devel] [PATCH 01/10] Add stub functions for PCI device models to do PCI DMA, Eduard - Gabriel Munteanu, 2011/09/02
- Re: [Qemu-devel] [PATCH 01/10] Add stub functions for PCI device models to do PCI DMA, David Gibson, 2011/09/02
- Re: [Qemu-devel] [PATCH 01/10] Add stub functions for PCI device models to do PCI DMA, Richard Henderson, 2011/09/02
Re: [Qemu-devel] [PATCH 01/10] Add stub functions for PCI device models to do PCI DMA, Anthony Liguori, 2011/09/23
[Qemu-devel] [PATCH 10/10] intel-hda: Use PCI DMA stub functions,
David Gibson <=
[Qemu-devel] [PATCH 03/10] eepro100: Use PCI DMA stub functions, David Gibson, 2011/09/01
[Qemu-devel] [PATCH 04/10] ac97: Use PCI DMA stub functions, David Gibson, 2011/09/01
[Qemu-devel] [PATCH 07/10] lsi53c895a: Use PCI DMA stub functions, David Gibson, 2011/09/01
[Qemu-devel] [PATCH 08/10] pcnet-pci: Use PCI DMA stub functions, David Gibson, 2011/09/01
[Qemu-devel] [PATCH 05/10] es1370: Use PCI DMA stub functions, David Gibson, 2011/09/01
[Qemu-devel] [PATCH 02/10] rtl8139: Use PCI DMA stub functions, David Gibson, 2011/09/01
[Qemu-devel] [PATCH 06/10] e1000: Use PCI DMA stub functions, David Gibson, 2011/09/01
[Qemu-devel] [PATCH 09/10] usb-ohci: Use PCI DMA stub functions, David Gibson, 2011/09/01