* DMA buffer synchronisation
@ 2006-07-25 9:09 Phil Nitschke
0 siblings, 0 replies; only message in thread
From: Phil Nitschke @ 2006-07-25 9:09 UTC (permalink / raw)
To: linuxppc-embedded
Hi,
I'm transferring data using DMA from a custom PCI device memory into
RAM. Can someone advise me on the correct buffer synchronisation
strategy for the following 3 scenarios:
Assuming I have three buffers, buf_A, and buf_B, both created using
dma_alloc_noncoherent(NULL, 32 * PAGE_SIZE, ...), and buf_C (much
larger), remapped into the processor's virtual address space using
ioremap(), and 'n' is the number of bytes to copy using DMA channel
'dmanr', ...
1/. DMA copy from PCI device memory into buf_B:
/* ...prepare DMA engine, then: */
WARN_ON(buf_B != L1_CACHE_ALIGN(buf_B));
dma_sync_single_range_for_device(NULL, buf_B, 0, n, DMA_FROM_DEVICE);
mv64x6x_enable_dma(dmanr);
wait_for_completion_interruptible_timeout(...)
dma_sync_single_range_for_cpu(NULL, buf_B, 0, n, DMA_FROM_DEVICE);
2/. DMA copy from buf_A to buf_B (same as above, except now sync the src
buffer prior to DMA):
/* ...prepare DMA engine, check buffer alignment (x2), then: */
dma_sync_single_range_for_device(NULL, buf_A, 0, n, DMA_TO_DEVICE);
dma_sync_single_range_for_device(NULL, buf_B, 0, n, DMA_FROM_DEVICE);
mv64x6x_enable_dma(dmanr);
wait_for_completion_interruptible_timeout(...)
dma_sync_single_range_for_cpu(NULL, buf_B, 0, n, DMA_FROM_DEVICE);
3/. DMA from PCI device memory into ioremap()'ed buffer, buf_C:
/* ...prepare DMA engine, check buffer alignment, then: */
/* No buffer sync-ing is required? */
mv64x6x_enable_dma(dmanr);
wait_for_completion_interruptible_timeout(...)
/* No buffer sync'ing is required? */
Will this approach work (particularly case 3/.)? I tried dma_sync-ing
the region, but got an 'oops' (kernel access of bad area).
I'm using the 2.6.16 kernel (compiled with CONFIG_NOT_COHERENT_CACHE
defined) on an Artesyn PmPPC7448 processor. The processor utilises its
Marvell MV64460 as the DMA controller for the transaction.
Thanks,
--
Phil
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-07-25 9:21 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-25 9:09 DMA buffer synchronisation Phil Nitschke
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox