From: Sergei Shtylyov <sergei.shtylyov@gmail.com>
To: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
gregkh@linuxfoundation.org, jirislaby@kernel.org
Cc: linux-serial@vger.kernel.org, linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH v3] serial: sh-sci: Stop dmaengine transfer in sci_stop_tx()
Date: Wed, 9 Jun 2021 15:29:44 +0300 [thread overview]
Message-ID: <ac930164-6150-4358-8fe9-ab87654f68ce@gmail.com> (raw)
In-Reply-To: <20210609014902.271237-1-yoshihiro.shimoda.uh@renesas.com>
On 6/9/21 4:49 AM, Yoshihiro Shimoda wrote:
> Stop dmaengine transfer in sci_stop_tx(). Otherwise, the following
> message is possible output when system enters suspend and while
> transferring data, because clearing TIE bit in SCSCR is not able to
> stop any dmaengine transfer.
>
> sh-sci e6550000.serial: ttySC1: Unable to drain transmitter
>
> Note that this patch uses dmaengine_terminate_async() so that
> we can apply this patch into longterm kernel v4.9.x or later.
>
> Fixes: 73a19e4c0301 ("serial: sh-sci: Add DMA support.")
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> ---
> Changes from v2:
> - Don't use a macro.
> - Revise the commit descrption.
> https://lore.kernel.org/linux-renesas-soc/20210604095704.756190-1-yoshihiro.shimoda.uh@renesas.com/
>
> Changes from v1:
> - Don't put #ifdef in the .c file.
> - Update the commit description.
> https://lore.kernel.org/linux-renesas-soc/20210602114108.510527-1-yoshihiro.shimoda.uh@renesas.com/
>
> drivers/tty/serial/sh-sci.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c
> index 4baf1316ea72..2d5487bf6855 100644
> --- a/drivers/tty/serial/sh-sci.c
> +++ b/drivers/tty/serial/sh-sci.c
> @@ -610,6 +610,14 @@ static void sci_stop_tx(struct uart_port *port)
> ctrl &= ~SCSCR_TIE;
>
> serial_port_out(port, SCSCR, ctrl);
> +
> +#ifdef CONFIG_SERIAL_SH_SCI_DMA
Why not use IS_ENABLED() instead? Gets rid of #ifdef. :-)
> + if (to_sci_port(port)->chan_tx &&
> + !dma_submit_error(to_sci_port(port)->cookie_tx)) {
> + dmaengine_terminate_async(to_sci_port(port)->chan_tx);
> + to_sci_port(port)->cookie_tx = -EINVAL;
> + }
> +#endif
> }
>
> static void sci_start_rx(struct uart_port *port)
MBR, Sergei
next prev parent reply other threads:[~2021-06-09 12:31 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-09 1:49 [PATCH v3] serial: sh-sci: Stop dmaengine transfer in sci_stop_tx() Yoshihiro Shimoda
2021-06-09 12:29 ` Sergei Shtylyov [this message]
2021-06-09 15:30 ` Geert Uytterhoeven
2021-06-10 0:50 ` Yoshihiro Shimoda
2021-06-10 6:58 ` Geert Uytterhoeven
2021-06-10 7:01 ` Greg KH
2021-06-10 7:28 ` Yoshihiro Shimoda
2021-06-09 12:37 ` Greg KH
2021-06-10 0:44 ` Yoshihiro Shimoda
2021-06-09 12:37 ` Greg KH
2021-06-10 0:45 ` Yoshihiro Shimoda
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ac930164-6150-4358-8fe9-ab87654f68ce@gmail.com \
--to=sergei.shtylyov@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=yoshihiro.shimoda.uh@renesas.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox