Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4b3cf448 authored by Anand Gadiyar's avatar Anand Gadiyar Committed by Tony Lindgren
Browse files

ARM: OMAP: Fix DMA CCR programming for request line > 63, v3



Bug in existing code causes synchro control to be set +32 if request
line greater than 63 is used.

Also clean up the function a bit by removing extra parens and
clearing the bits at before write.

Reported by Wenbiao Wang.

Signed-off-by: default avatarAnand Gadiyar <gadiyar@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 3a26e331
Loading
Loading
Loading
Loading
+5 −8
Original line number Original line Diff line number Diff line
@@ -278,14 +278,11 @@ void omap_set_dma_transfer_params(int lch, int data_type, int elem_count,
		u32 val;
		u32 val;


		val = dma_read(CCR(lch));
		val = dma_read(CCR(lch));
		val &= ~(3 << 19);

		if (dma_trigger > 63)
		/* DMA_SYNCHRO_CONTROL_UPPER depends on the channel number */
			val |= 1 << 20;
		val &= ~((3 << 19) | 0x1f);
		if (dma_trigger > 31)
		val |= (dma_trigger & ~0x1f) << 14;
			val |= 1 << 19;
		val |= dma_trigger & 0x1f;

		val &= ~(0x1f);
		val |= (dma_trigger & 0x1f);


		if (sync_mode & OMAP_DMA_SYNC_FRAME)
		if (sync_mode & OMAP_DMA_SYNC_FRAME)
			val |= 1 << 5;
			val |= 1 << 5;