Skip to content
Snippets Groups Projects
Commit 6af015b8 authored by Peter Tyser's avatar Peter Tyser Committed by Kumar Gala
Browse files

fsl_dma: Make DMA transactions snoopable


Make DMA transactions snoopable so that CPUs can keep caches up-to-date.
This allows dma transactions to be used for operations such as memory
copies without any additional cache control operations.

Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent 0d595f76
No related branches found
No related tags found
No related merge requests found
...@@ -72,8 +72,8 @@ static uint dma_check(void) { ...@@ -72,8 +72,8 @@ static uint dma_check(void) {
void dma_init(void) { void dma_init(void) {
volatile fsl_dma_t *dma = &dma_base->dma[0]; volatile fsl_dma_t *dma = &dma_base->dma[0];
out_be32(&dma->satr, FSL_DMA_SATR_SREAD_NO_SNOOP); out_be32(&dma->satr, FSL_DMA_SATR_SREAD_SNOOP);
out_be32(&dma->datr, FSL_DMA_DATR_DWRITE_NO_SNOOP); out_be32(&dma->datr, FSL_DMA_DATR_DWRITE_SNOOP);
out_be32(&dma->sr, 0xffffffff); /* clear any errors */ out_be32(&dma->sr, 0xffffffff); /* clear any errors */
dma_sync(); dma_sync();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment