linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "G, Manjunath Kondaiah" <manjugk@ti.com>
To: Kevin Hilman <khilman@ti.com>
Cc: "G, Manjunath Kondaiah" <manjugk@ti.com>,
	linux-omap@vger.kernel.org,
	linux-arm-kernel@lists.arm.linux.org.uk, paul@pwsan.com,
	tony@atomide.com
Subject: Re: [PATCH v2 4/4] OMAP: DMA: Fix: context restore during off mode
Date: Sat, 19 Mar 2011 08:50:14 +0530	[thread overview]
Message-ID: <20110319032014.GC13784@m-desktop> (raw)
In-Reply-To: <87wrjxwj3h.fsf@ti.com>

On Thu, Mar 17, 2011 at 02:08:34PM -0700, Kevin Hilman wrote:
> "G, Manjunath Kondaiah" <manjugk@ti.com> writes:
> 
> > The current DMA context restore clears all the DMA channel registers
> > even if the channels are in use. This will result in transfer failures
> > if repeated DMA transfers are initiated with one time DMA channel
> > configuration.
> >
> > Also, remove access to sysconfig register during context save/restore
> > since it will be handled through hwmod layer.
> >
> > Tested on OMAP3430 Zoom2 with
> >  - off mode enabled
> >  - one time DMA channel configuration
> >  - repeated DMA transfers
> >
> > Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
> 
> This patch introduces a compiler warning:
> 
> /work/kernel/omap/pm/arch/arm/plat-omap/dma.c: In function 'omap_dma_global_context_restore':
> /work/kernel/omap/pm/arch/arm/plat-omap/dma.c:2068:6: warning: unused variable 'ch'
> 
> because...
> 
> > ---
> >  arch/arm/plat-omap/dma.c |    7 -------
> >  1 files changed, 0 insertions(+), 7 deletions(-)
> >
> > diff --git a/arch/arm/plat-omap/dma.c b/arch/arm/plat-omap/dma.c
> > index 5cca56b..bb0b7e2 100644
> > --- a/arch/arm/plat-omap/dma.c
> > +++ b/arch/arm/plat-omap/dma.c
> > @@ -2059,8 +2059,6 @@ void omap_dma_global_context_save(void)
> >  	pm_runtime_get_sync(dev);
> >  	omap_dma_global_context.dma_irqenable_l0 =
> >  		p->dma_read(IRQENABLE_L0, 0);
> > -	omap_dma_global_context.dma_ocp_sysconfig =
> > -		p->dma_read(OCP_SYSCONFIG, 0);
> >  	omap_dma_global_context.dma_gcr = p->dma_read(GCR, 0);
> >  	pm_runtime_put_autosuspend(dev);
> >  }
> > @@ -2071,17 +2069,12 @@ void omap_dma_global_context_restore(void)
> >  
> >  	pm_runtime_get_sync(dev);
> >  	p->dma_write(omap_dma_global_context.dma_gcr, GCR, 0);
> > -	p->dma_write(omap_dma_global_context.dma_ocp_sysconfig,
> > -		OCP_SYSCONFIG, 0);
> >  	p->dma_write(omap_dma_global_context.dma_irqenable_l0,
> >  		IRQENABLE_L0, 0);
> >  
> >  	if (IS_DMA_ERRATA(DMA_ROMCODE_BUG))
> >  		p->dma_write(0x3 , IRQSTATUS_L0, 0);
> >  
> > -	for (ch = 0; ch < dma_chan_count; ch++)
> > -		if (dma_chan[ch].dev_id != -1)
> > -			omap_clear_dma(ch);
> >  	pm_runtime_put_autosuspend(dev);
> >  }
> 
> ...you removed the usage if 'ch' but not it's declaration.
sorry. I missed this warning and will fix it.

-Manjunath
> 
> Kevin
> 
> 
> 

  reply	other threads:[~2011-03-19  3:23 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-11 14:20 [PATCH v2 0/4] OMAP: DMA: mstandby mode and runtime pm support G, Manjunath Kondaiah
2011-03-11 14:20 ` [PATCH v2 1/4] OMAP2+: PM: omap device: API's for handling mstandby mode G, Manjunath Kondaiah
2011-03-11 14:20 ` [PATCH v2 2/4] OMAP2+: DMA: prevent races while setting M idle mode to nostandby G, Manjunath Kondaiah
2011-03-11 14:20 ` [PATCH v2 3/4] OMAP: PM: DMA: Enable runtime pm G, Manjunath Kondaiah
2011-03-11 14:20 ` [PATCH v2 4/4] OMAP: DMA: Fix: context restore during off mode G, Manjunath Kondaiah
2011-03-17 21:08   ` Kevin Hilman
2011-03-19  3:20     ` G, Manjunath Kondaiah [this message]
2011-03-16 14:38 ` [PATCH v2 0/4] OMAP: DMA: mstandby mode and runtime pm support G, Manjunath Kondaiah
2011-03-17 21:29 ` Kevin Hilman
2011-03-18 10:00   ` G, Manjunath Kondaiah
2011-03-18 18:27     ` Kevin Hilman
2011-03-19  3:16       ` G, Manjunath Kondaiah
2011-03-23 12:12         ` G, Manjunath Kondaiah
2011-03-23 14:11           ` Kevin Hilman
2011-03-23 15:29             ` Kevin Hilman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110319032014.GC13784@m-desktop \
    --to=manjugk@ti.com \
    --cc=khilman@ti.com \
    --cc=linux-arm-kernel@lists.arm.linux.org.uk \
    --cc=linux-omap@vger.kernel.org \
    --cc=paul@pwsan.com \
    --cc=tony@atomide.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).