RE: How to make mmap'ed kernel buffer non-cacheable



Hi Alan,

I believe that dma_alloc_coherent will mark the kernel buffer as uncached at alocation time.
But that is not my intention. I have mapped some user space memory to the kernel buffer and I wish to ensure that the contents of both are coherent and correctly ordered.

In other words I wish to flush the contents of the kernel buffer to user space as soon as new data is available in my kernel buffer. How to do that? Will doing mysnc from the user space help?

Rather than flushing everytime (or msyncing) I intend to make my user-to-kernel mapping as non cacheable so that multiple flushing can be avoided.

Bhuvan

Hi,
I am working on an audio device driver development on Linux. I have a kernel buffer which I have mapped to user space using mmap call from user space. My problem is that the data which comes to the kernel buffer is getting dropped in user space and I get only 50-60% of the data which is randomly ordered. The user to kernel level buffer address translation code is fine and I suspect this data dropping is occurring coz the kernel buffer is cacheable. Please suggest me some way of making the entire buffer non cacheable. I am stuck on this for quite a while now.

The dma mapping API (or the PCI equivalent) provide the neccessary
behaviours for DMA receive, DMA send and consistent memory space in a
portable fashion.

That may not be done using uncachable memory in all cases as not all
processors even support uncacheable memory spaces.

If you are using the ALSA core routines (snd_dma_alloc_coherent) then
ALSA already uses dma_alloc_coherent to ensure the memory is allocated
for the appropriate use and will be kernel marked uncached.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



Relevant Pages

  • Re: dma to user space
    ... >> I would like to DMA this data to user space so that it can be saved to ... >> the physical addresses so I can create a scatter gather list for DMA. ... >> All the 2.6 kernel documentation seems to imply that you must allocate ... >> DMA memory in the kernel. ...
    (comp.os.linux.development.system)
  • Re: dma to user space
    ... >I would like to DMA this data to user space so that it can be saved to ... then lock the memory with mlock. ... >the physical addresses so I can create a scatter gather list for DMA. ... >DMA memory in the kernel. ...
    (comp.os.linux.development.system)
  • Re: dma to user space
    ... > I would like to DMA this data to user space so that it can be saved to ... then lock the memory with mlock. ... > the physical addresses so I can create a scatter gather list for DMA. ... > DMA memory in the kernel. ...
    (comp.os.linux.development.system)
  • Re: CE device driver help, virtual memory and physical memory
    ... a mistake somewhere with the Virtualxxx flags. ... my driver needs to allocate some memory for DMA purposes. ... make it available up in user space for R/W ...
    (microsoft.public.windowsce.embedded)
  • Re: + edac-new-opteron-athlon64-memory-controller-driver.patch added to -
    ... So we can kill the processes using that memory. ... What is the chipsets idea of which DIMM the memory error occurred on. ... There has always been enough information to determine the hardware ... some that are not easily accessible to user space so a kernel driver ...
    (Linux-Kernel)