提交 b0211a22 编写于 作者: A Andy Shevchenko 提交者: Yang Yingliang

dmaengine: hsu: Revert "set HSU_CH_MTSR to memory width"

[ Upstream commit c24a5c735f87d0549060de31367c095e8810b895 ]

The commit

  080edf75 ("dmaengine: hsu: set HSU_CH_MTSR to memory width")

has been mistakenly submitted. The further investigations show that
the original code does better job since the memory side transfer size
has never been configured by DMA users.

As per latest revision of documentation: "Channel minimum transfer size
(CHnMTSR)... For IOSF UART, maximum value that can be programmed is 64 and
minimum value that can be programmed is 1."

This reverts commit 080edf75.

Fixes: 080edf75 ("dmaengine: hsu: set HSU_CH_MTSR to memory width")
Signed-off-by: NAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: NVinod Koul <vkoul@kernel.org>
Signed-off-by: NSasha Levin <sashal@kernel.org>
Signed-off-by: NYang Yingliang <yangyingliang@huawei.com>
上级 97b9eadb
...@@ -64,10 +64,10 @@ static void hsu_dma_chan_start(struct hsu_dma_chan *hsuc) ...@@ -64,10 +64,10 @@ static void hsu_dma_chan_start(struct hsu_dma_chan *hsuc)
if (hsuc->direction == DMA_MEM_TO_DEV) { if (hsuc->direction == DMA_MEM_TO_DEV) {
bsr = config->dst_maxburst; bsr = config->dst_maxburst;
mtsr = config->src_addr_width; mtsr = config->dst_addr_width;
} else if (hsuc->direction == DMA_DEV_TO_MEM) { } else if (hsuc->direction == DMA_DEV_TO_MEM) {
bsr = config->src_maxburst; bsr = config->src_maxburst;
mtsr = config->dst_addr_width; mtsr = config->src_addr_width;
} }
hsu_chan_disable(hsuc); hsu_chan_disable(hsuc);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册