]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: usb-audio: Allow non-vmalloc buffer for PCM buffers
authorTakashi Iwai <tiwai@suse.de>
Sun, 27 May 2018 11:01:17 +0000 (13:01 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 29 May 2018 08:01:54 +0000 (10:01 +0200)
commit44b423667610e25af3322cbfa95e655c1c9fde29
treea8d94fa80a0630b108c93a37ab5433081112e182
parent11576f8205fac28c3a4f4ba1f71b2fac24fcdc98
ALSA: usb-audio: Allow non-vmalloc buffer for PCM buffers

Currently, USB-audio driver allocates the PCM buffer via vmalloc(), as
this serves merely as an intermediate buffer that is copied to each
URB transfer buffer.  This works well in general on x86, but on some
archs this may result in cache coherency issues when mmap is used.
OTOH, it works also on such arch unless mmap is used.

This patch is a step for mitigating the inconvenience; a new module
option "use_vmalloc" is provided so that user can choose to allocate
the DMA coherent buffer instead of the existing vmalloc buffer.
The drawback is that it'd be the standard dma_alloc_coherent() calls
and the system would require contiguous pages on non-x86 archs.

Note that it's a global option and not dynamically switchable since
the buffer is pre-allocated at the probe time.  In theory, it's
possible to be switchable, but it'd be trickier and racier.

As default use_vmalloc option is set to true, so that the old behavior
is kept.  For allowing the coherent mmap on ARM or MIPS, pass
use_vmalloc=0 option explicitly.

Reported-and-tested-by: Daniel Danzberger <daniel@dd-wrt.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Documentation/sound/alsa-configuration.rst
sound/usb/card.c
sound/usb/pcm.c
sound/usb/pcm.h
sound/usb/stream.c
sound/usb/usbaudio.h