dmaengine: sprd: Fix block length overflow
authorEric Long <eric.long@unisoc.com>
Mon, 6 May 2019 07:28:31 +0000 (15:28 +0800)
committerVinod Koul <vkoul@kernel.org>
Tue, 21 May 2019 13:53:54 +0000 (19:23 +0530)
The maximum value of block length is 0xffff, so if the configured transfer length
is more than 0xffff, that will cause block length overflow to lead a configuration
error.

Thus we can set block length as the maximum burst length to avoid this issue, since
the maximum burst length will not be a big value which is more than 0xffff.

Signed-off-by: Eric Long <eric.long@unisoc.com>
Signed-off-by: Baolin Wang <baolin.wang@linaro.org>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/sprd-dma.c

index 0f92e60529d163ccc18e4a8dfb2a1eb785e01cfd..a01c232466323eaa951b87a32aa8f7d7c5d4265f 100644 (file)
@@ -778,7 +778,7 @@ static int sprd_dma_fill_desc(struct dma_chan *chan,
        temp |= slave_cfg->src_maxburst & SPRD_DMA_FRG_LEN_MASK;
        hw->frg_len = temp;
 
-       hw->blk_len = len & SPRD_DMA_BLK_LEN_MASK;
+       hw->blk_len = slave_cfg->src_maxburst & SPRD_DMA_BLK_LEN_MASK;
        hw->trsc_len = len & SPRD_DMA_TRSC_LEN_MASK;
 
        temp = (dst_step & SPRD_DMA_TRSF_STEP_MASK) << SPRD_DMA_DEST_TRSF_STEP_OFFSET;