aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/davinci
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@ti.com>2014-04-01 15:55:12 +0300
committerMark Brown <broonie@linaro.org>2014-04-14 17:24:11 +0100
commit33445643c3146fa43af3e9aa1cce08da9fe03157 (patch)
tree22f23357ea12951fd3a7881e8799f34969733c74 /sound/soc/davinci
parentASoC: davinic-mcasp: Adopt the AFIFO/DMA configuration to the stream (dynamic depth) (diff)
downloadlinux-dev-33445643c3146fa43af3e9aa1cce08da9fe03157.tar.xz
linux-dev-33445643c3146fa43af3e9aa1cce08da9fe03157.zip
ASoC: davinci-mcasp: Fine tune and correct the DMA burst configuration
When the AFIFO is not enabled but more than one serializers are used the DMA need to transfer number of words equal to active serializers when a DMA request is generated. When configuring the burst for the DMA avoid using value '1' for the burst since it is going to enable additional logic in the DMA drivers. Burst '1' means that the DMA should send/receive one word per DMA requests. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/davinci')
-rw-r--r--sound/soc/davinci/davinci-mcasp.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c
index 9454d123f4bb..196158f2d1c4 100644
--- a/sound/soc/davinci/davinci-mcasp.c
+++ b/sound/soc/davinci/davinci-mcasp.c
@@ -529,8 +529,19 @@ static int mcasp_common_hw_param(struct davinci_mcasp *mcasp, int stream,
/* AFIFO is not in use */
if (!numevt) {
/* Configure the burst size for platform drivers */
- dma_params->fifo_level = 0;
- dma_data->maxburst = 0;
+ if (active_serializers > 1) {
+ /*
+ * If more than one serializers are in use we have one
+ * DMA request to provide data for all serializers.
+ * For example if three serializers are enabled the DMA
+ * need to transfer three words per DMA request.
+ */
+ dma_params->fifo_level = active_serializers;
+ dma_data->maxburst = active_serializers;
+ } else {
+ dma_params->fifo_level = 0;
+ dma_data->maxburst = 0;
+ }
return 0;
}
@@ -558,6 +569,8 @@ static int mcasp_common_hw_param(struct davinci_mcasp *mcasp, int stream,
mcasp_mod_bits(mcasp, reg, NUMEVT(numevt), NUMEVT_MASK);
/* Configure the burst size for platform drivers */
+ if (numevt == 1)
+ numevt = 0;
dma_params->fifo_level = numevt;
dma_data->maxburst = numevt;