aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorHuang Shijie <shijie8@gmail.com>2014-09-19 03:33:12 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-28 21:26:38 -0400
commit45564a6656b4944fa90aabd59f8ec082e8f7a969 (patch)
treeed78f64eb2e407b88adbb828a75d2280c15a0169 /drivers/tty
parentbb2f861ad00fc09dab955d22280c51cead795bca (diff)
serial: imx: terminate the RX DMA when the UART is suspending
When the uart port is suspending, the RX data is useless. So in this case, we can terminate the RX DMA right now. Signed-off-by: Huang Shijie <b32955@freescale.com> Signed-off-by: Fugang Duan <B38611@freescale.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/imx.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
index c7683d747c18..db749f768ac4 100644
--- a/drivers/tty/serial/imx.c
+++ b/drivers/tty/serial/imx.c
@@ -436,12 +436,14 @@ static void imx_stop_rx(struct uart_port *port)
436 struct imx_port *sport = (struct imx_port *)port; 436 struct imx_port *sport = (struct imx_port *)port;
437 unsigned long temp; 437 unsigned long temp;
438 438
439 /* 439 if (sport->dma_is_enabled && sport->dma_is_rxing) {
440 * We are maybe in the SMP context, so if the DMA TX thread is running 440 if (sport->port.suspended) {
441 * on other cpu, we have to wait for it to finish. 441 dmaengine_terminate_all(sport->dma_chan_rx);
442 */ 442 sport->dma_is_rxing = 0;
443 if (sport->dma_is_enabled && sport->dma_is_rxing) 443 } else {
444 return; 444 return;
445 }
446 }
445 447
446 temp = readl(sport->port.membase + UCR2); 448 temp = readl(sport->port.membase + UCR2);
447 writel(temp & ~UCR2_RXEN, sport->port.membase + UCR2); 449 writel(temp & ~UCR2_RXEN, sport->port.membase + UCR2);