[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 4/9] ac97: Use PCI DMA stub functions
From: |
David Gibson |
Subject: |
[Qemu-devel] [PATCH 4/9] ac97: Use PCI DMA stub functions |
Date: |
Mon, 5 Sep 2011 14:34:59 +1000 |
From: Eduard - Gabriel Munteanu <address@hidden>
This updates the ac97 device emulation to use the explicit PCI DMA
functions, instead of directly calling physical memory access functions.
Signed-off-by: Eduard - Gabriel Munteanu <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
hw/ac97.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/hw/ac97.c b/hw/ac97.c
index 541d9a4..14bdbcd 100644
--- a/hw/ac97.c
+++ b/hw/ac97.c
@@ -18,6 +18,7 @@
#include "audiodev.h"
#include "audio/audio.h"
#include "pci.h"
+#include "dma.h"
enum {
AC97_Reset = 0x00,
@@ -224,7 +225,7 @@ static void fetch_bd (AC97LinkState *s, AC97BusMasterRegs
*r)
{
uint8_t b[8];
- cpu_physical_memory_read (r->bdbar + r->civ * 8, b, 8);
+ pci_dma_read (&s->dev, r->bdbar + r->civ * 8, b, 8);
r->bd_valid = 1;
r->bd.addr = le32_to_cpu (*(uint32_t *) &b[0]) & ~3;
r->bd.ctl_len = le32_to_cpu (*(uint32_t *) &b[4]);
@@ -973,7 +974,7 @@ static int write_audio (AC97LinkState *s, AC97BusMasterRegs
*r,
while (temp) {
int copied;
to_copy = audio_MIN (temp, sizeof (tmpbuf));
- cpu_physical_memory_read (addr, tmpbuf, to_copy);
+ pci_dma_read (&s->dev, addr, tmpbuf, to_copy);
copied = AUD_write (s->voice_po, tmpbuf, to_copy);
dolog ("write_audio max=%x to_copy=%x copied=%x\n",
max, to_copy, copied);
@@ -1054,7 +1055,7 @@ static int read_audio (AC97LinkState *s,
AC97BusMasterRegs *r,
*stop = 1;
break;
}
- cpu_physical_memory_write (addr, tmpbuf, acquired);
+ pci_dma_write (&s->dev, addr, tmpbuf, acquired);
temp -= acquired;
addr += acquired;
nread += acquired;
--
1.7.5.4
- [Qemu-devel] [0/9] Preliminary work for IOMMU emulation support; the easy bits (v2), David Gibson, 2011/09/05
- [Qemu-devel] [PATCH 6/9] e1000: Use PCI DMA stub functions, David Gibson, 2011/09/05
- [Qemu-devel] [PATCH 8/9] pcnet-pci: Use PCI DMA stub functions, David Gibson, 2011/09/05
- [Qemu-devel] [PATCH 1/9] Add stub functions for PCI device models to do PCI DMA, David Gibson, 2011/09/05
- [Qemu-devel] [PATCH 5/9] es1370: Use PCI DMA stub functions, David Gibson, 2011/09/05
- [Qemu-devel] [PATCH 7/9] lsi53c895a: Use PCI DMA stub functions, David Gibson, 2011/09/05
- [Qemu-devel] [PATCH 2/9] rtl8139: Use PCI DMA stub functions, David Gibson, 2011/09/05
- [Qemu-devel] [PATCH 4/9] ac97: Use PCI DMA stub functions,
David Gibson <=
- [Qemu-devel] [PATCH 3/9] eepro100: Use PCI DMA stub functions, David Gibson, 2011/09/05
- [Qemu-devel] [PATCH 9/9] intel-hda: Use PCI DMA stub functions, David Gibson, 2011/09/05
- Re: [Qemu-devel] [0/9] Preliminary work for IOMMU emulation support; the easy bits (v2), David Gibson, 2011/09/16