ASoC: AMD: Do not generate interrups for every captured sample
authorDaniel Kurtz <djkurtz@chromium.org>
Mon, 2 Jul 2018 21:19:54 +0000 (15:19 -0600)
committerMark Brown <broonie@kernel.org>
Tue, 3 Jul 2018 15:14:31 +0000 (16:14 +0100)
commit8c6b964eddd2c39a9796899b2be099ece1b6c6ca
tree8300fbd8dbc2190570e4e77a967432a9c2ccc98a
parent55af49ac1b8627dfbfa2689af118d994d7a0ba1b
ASoC: AMD: Do not generate interrups for every captured sample

On capture, audio data is first copied from I2S to ACP memory, and then
from ACP to SYSRAM.  The I2S_TO_ACP_DMA interrupt fires on every sample
transferred from I2S to ACP memory.  That is it fires ~48000 times per
second when capturing @ 48 kHz.  Since we don't do anything on this
interrupt anyway, disable it to save quite a few unnecessary interrupts.
The real "work" (calling snd_pcm_period_elapsed()) is done when transfer
from ACP to SYSRAM is complete.

Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/amd/acp-pcm-dma.c