]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: Samsung: Do not queue cyclic buffers multiple times
authorTomasz Figa <tomasz.figa@gmail.com>
Sun, 11 Aug 2013 17:59:21 +0000 (19:59 +0200)
committerMark Brown <broonie@linaro.org>
Thu, 29 Aug 2013 16:31:02 +0000 (17:31 +0100)
commit49e7f16fc4bca6879309947e3702b424ae5d1fc7
tree560f45835378128d12f4c4a54365d2eb04464aec
parentf2a4bd5e098c51cf412647699b475f55dacbd04e
ASoC: Samsung: Do not queue cyclic buffers multiple times

The legacy S3C-DMA API required every period of a cyclic buffer to be
queued separately. After conversion of Samsung ASoC to Samsung DMA
wrappers somebody made an assumption that the same is needed for DMA
engine API, which is not true.

In effect, Samsung ASoC DMA code was queuing the whole cyclic buffer
multiple times with a shift of one period per iteration, leading to:
  a) severe memory waste - up to 13x times more DMA transfer descriptors
     are allocated than needed,
  b) possible memory corruption, because further cyclic buffers were out
     of the original buffers, due to the offset.

This patch fixes this problem by making the legacy S3C-DMA API use the
same semantics as DMA engine (the whole cyclic buffer is enqueued at
once) and modifying users of Samsung DMA wrappers in cyclic mode to
behave appropriately.

Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
arch/arm/plat-samsung/s3c-dma-ops.c
sound/soc/samsung/dma.c