提交 dd474ded 编写于 作者: T Tudor Ambarus 提交者: Zheng Zengkai

tty: serial: atmel: Call dma_async_issue_pending()

stable inclusion
from stable-v5.10.94
commit f93c9aa1d36f594b065c93d8bd17151d21fe02d8
bugzilla: https://gitee.com/openeuler/kernel/issues/I531X9

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=f93c9aa1d36f594b065c93d8bd17151d21fe02d8

--------------------------------

[ Upstream commit 4f4b9b58 ]

The driver wrongly assummed that tx_submit() will start the transfer,
which is not the case, now that the at_xdmac driver is fixed. tx_submit
is supposed to push the current transaction descriptor to a pending queue,
waiting for issue_pending to be called. issue_pending must start the
transfer, not tx_submit.

Fixes: 34df42f5 ("serial: at91: add rx dma support")
Fixes: 08f738be ("serial: at91: add tx dma support")
Signed-off-by: NTudor Ambarus <tudor.ambarus@microchip.com>
Link: https://lore.kernel.org/r/20211125090028.786832-4-tudor.ambarus@microchip.comSigned-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: NSasha Levin <sashal@kernel.org>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
Acked-by: NXie XiuQi <xiexiuqi@huawei.com>
上级 c9e4d841
......@@ -1009,6 +1009,8 @@ static void atmel_tx_dma(struct uart_port *port)
atmel_port->cookie_tx);
return;
}
dma_async_issue_pending(chan);
}
if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
......@@ -1275,6 +1277,8 @@ static int atmel_prepare_rx_dma(struct uart_port *port)
goto chan_err;
}
dma_async_issue_pending(atmel_port->chan_rx);
return 0;
chan_err:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册