login
Header Space

 
 

Re: ALSA vs. non coherent DMA

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Timur Tabi <timur@...>
Cc: Takashi Iwai <tiwai@...>, <alsa-devel@...>, linuxppc-dev list <linuxppc-dev@...>, Linux Kernel list <linux-kernel@...>
Date: Wednesday, May 7, 2008 - 5:53 pm

On Wed, 2008-05-07 at 09:22 -0500, Timur Tabi wrote:

Yes, precisely. I was about to make a reply here. There is some
confusion at least in terminology, in Alsa. This is not DMA coherency,
though it is a problem with virtually tagged data caches that some archs
such as ARM have.

So this is ok for all PowerPC since they all have a physically tagged
data cache.

The real problem -is- still the DMA coherency issue and as I see it, is
two fold:

 - mmap'ing of the result of dma_alloc_coherent() doesn't work. There
are two issues at play here, one is the pgprot that -must- be set to
uncached for such a mapping on non coherent architectures (and non
coherent architectures only), and the other is our virt_to_page() that
will puke on virtual addresses coming from dma_alloc_coherent().

 - mmap'ing of SG lists for non coherent DMA. There the problem is a
mixture of how Alsa allocate the SG buffers mixes with the previous
problem.

I think it's never valid to create an SG list with the output of
dma_alloc_coherent though. We would need a dma_alloc_sg() for that...

sglists are made of pages, thus allocated with GFP, and later DMA mapped
with dma_map_*, however this brings a whole other set of issues/constra
ints such as bouce bufferring on some MMU less platforms if the memory
happens to come out of the wrong place. Also, such mapped buffers are
-not- coherent as they must not be modified via their virtual address
while mapped, -unless- they are also mapped in kernel and/or user space
(vmap & mmap) using some kind of "coherent" attributes such as
pgprot_noncached. (and provided that is possible at all in kernel place
for archs like MIPS).

I don't have an easy answer there, it seems the bogosity roots deep in
alsa, at least for the SG bits. For the non-SG bits, we can probably
work around with an accessor to get the right pgprot and maybe some
variant of virt_to_page() (dma_virt_to_page() ?) that would walk the
kernel page tables to obtain the pfn.

Ben.


--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
ALSA vs. non coherent DMA, Benjamin Herrenschmidt, (Mon May 5, 8:08 pm)
Re: ALSA vs. non coherent DMA, Takashi Iwai, (Tue May 6, 7:01 am)
Re: ALSA vs. non coherent DMA, Timur Tabi, (Wed May 7, 10:22 am)
Re: ALSA vs. non coherent DMA, Benjamin Herrenschmidt, (Wed May 7, 5:53 pm)
Re: ALSA vs. non coherent DMA, Takashi Iwai, (Thu May 8, 11:41 am)
Re: ALSA vs. non coherent DMA, Grant Likely, (Wed May 7, 11:44 am)
speck-geostationary