Skip to content

Commit

Permalink
OMAP: PM: Clear DMA channel state after a wakeup
Browse files Browse the repository at this point in the history
Clear DMA channel states so that users can assume a known initial
state.

Signed-off-by: Aaro Koskinen <aaro.koskinen@nokia.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
  • Loading branch information
Aaro Koskinen authored and Kevin Hilman committed Nov 11, 2009
1 parent cb0cb2b commit bf07c9f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions arch/arm/plat-omap/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -2358,6 +2358,8 @@ void omap_dma_global_context_save(void)

void omap_dma_global_context_restore(void)
{
int ch;

dma_write(omap_dma_global_context.dma_gcr, GCR);
dma_write(omap_dma_global_context.dma_ocp_sysconfig,
OCP_SYSCONFIG);
Expand All @@ -2372,6 +2374,10 @@ void omap_dma_global_context_restore(void)
*/
if (cpu_is_omap34xx() && (omap_type() != OMAP2_DEVICE_TYPE_GP))
dma_write(0x3 , IRQSTATUS_L0);

for (ch = 0; ch < dma_chan_count; ch++)
if (dma_chan[ch].dev_id != -1)
omap_clear_dma(ch);
}

/*----------------------------------------------------------------------------*/
Expand Down

0 comments on commit bf07c9f

Please sign in to comment.