qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] hw/pxa2xx_dma.c


From: andrzej zaborowski
Subject: Re: [Qemu-devel] [PATCH] hw/pxa2xx_dma.c
Date: Sat, 17 Nov 2007 16:12:39 +0100

Hi,

On 15/11/2007, Thorsten Zitterell <address@hidden> wrote:
> The following patch fixes the problem that DMA transfers are not performed 
> when
> the DCSR_STOPINTR bit is set.
> --
> Thorsten
>
> Index: hw/pxa2xx_dma.c
> ===================================================================
> RCS file: /sources/qemu/qemu/hw/pxa2xx_dma.c,v
> retrieving revision 1.5
> diff -u -r1.5 pxa2xx_dma.c
> --- hw/pxa2xx_dma.c     11 Nov 2007 19:47:58 -0000      1.5
> +++ hw/pxa2xx_dma.c     15 Nov 2007 09:28:22 -0000
> @@ -186,7 +186,8 @@
>          s->running = 1;
>          for (c = 0; c < s->channels; c ++) {
>              ch = &s->chan[c];
> -
> +
> +            ch->state &= ~DCSR_STOPINTR;
>              while ((ch->state & DCSR_RUN) && !(ch->state & DCSR_STOPINTR)) {
>                  /* Test for pending requests */
>                  if ((ch->cmd & (DCMD_FLOWSRC | DCMD_FLOWTRG)) && 
> !ch->request)
>
>

Can you check if the following change would make the gumstix NIC work
too?  In my understanding of the specs it's more correct, but I'm not
sure.

diff --git a/hw/pxa2xx_dma.c b/hw/pxa2xx_dma.c
index 4c60ffd..7067a78 100644
--- a/hw/pxa2xx_dma.c
+++ b/hw/pxa2xx_dma.c
@@ -342,7 +343,7 @@ static void pxa2xx_dma_write(void *opaque,
                          DCSR_STARTINTR | DCSR_BUSERRINTR));
         s->chan[channel].state |= value & 0xfc800000;

-        if (s->chan[channel].state & DCSR_STOPIRQEN)
+        if (s->chan[channel].state & (DCSR_STOPIRQEN | DCSR_RUN))
             s->chan[channel].state &= ~DCSR_STOPINTR;

         if (value & DCSR_NODESCFETCH) {
@@ -352,7 +353,6 @@ static void pxa2xx_dma_write(void *opaque,
         } else {
             /* Descriptor-fetch mode */
             if (value & DCSR_RUN) {
-                s->chan[channel].state &= ~DCSR_STOPINTR;
                 pxa2xx_dma_descriptor_fetch(s, channel);
                 pxa2xx_dma_run(s);
             }
Regards

Attachment: pxa-dma-stopintr-clear.patch
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]