]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
ASoC: sun4i-i2s: Increase DMA max burst to 8
authorMylène Josserand <mylene.josserand@free-electrons.com>
Tue, 17 Jan 2017 14:02:21 +0000 (15:02 +0100)
committerMark Brown <broonie@kernel.org>
Tue, 17 Jan 2017 18:43:13 +0000 (18:43 +0000)
As done previously for sun4i-codec, the DMA maxburst of 4
is not supported by every SoCs so the DMA controller engine
returns "unsupported value".

As a maxburst of 8 is supported by all variants, this patch
increases it to 8.

For more details, see commit from Chen-Yu Tsai:
commit 730e2dd0cbc7 ("ASoC: sun4i-codec: Increase DMA max burst to 8")

Signed-off-by: Mylène Josserand <mylene.josserand@free-electrons.com>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sunxi/sun4i-i2s.c

index f24d19526603c2d2a31ef9af1cff07ed4dd8d1ca..4237323ef5945a37c11c0097f5f4ff62babca0f1 100644 (file)
@@ -694,10 +694,10 @@ static int sun4i_i2s_probe(struct platform_device *pdev)
        }
        
        i2s->playback_dma_data.addr = res->start + SUN4I_I2S_FIFO_TX_REG;
-       i2s->playback_dma_data.maxburst = 4;
+       i2s->playback_dma_data.maxburst = 8;
 
        i2s->capture_dma_data.addr = res->start + SUN4I_I2S_FIFO_RX_REG;
-       i2s->capture_dma_data.maxburst = 4;
+       i2s->capture_dma_data.maxburst = 8;
 
        pm_runtime_enable(&pdev->dev);
        if (!pm_runtime_enabled(&pdev->dev)) {