public inbox for cip-dev@lists.cip-project.org
 help / color / mirror / Atom feed
From: ben.hutchings@codethink.co.uk (Ben Hutchings)
To: cip-dev@lists.cip-project.org
Subject: [cip-dev] [PATCH] tty: serial: imx: disable irq after suspend
Date: Fri, 08 Dec 2017 16:17:24 +0000	[thread overview]
Message-ID: <1512749844.18523.251.camel@codethink.co.uk> (raw)
In-Reply-To: <20171127153721.24110-1-mosipov@ilbers.de>

On Mon, 2017-11-27 at 16:37 +0100, Maxim Yu. Osipov wrote:
> commit 81b289cc14ba349cc4707cf664aa1c72d7dff1d7 upstream.
> 
> If any key on console is pressed when board is suspended,
> board hangs.

This looks like something that should be applied to stable branches,
not just the CIP 4.4 branch.

Ben.

> Driver's interrupt handler must be guaranteed not to run while
> resume/suspend_noirq() are being executed. See include/linux/pm.h
> for details.
> 
> Tested on i.MX6 based board.
> 
> The idea of this fix is based on commit in official i.MX kernel tree:
> http://git.freescale.com/git/cgit.cgi/imx/linux-2.6-imx.git
> commit 81e8e7d91d81 ("tty: serial: imx: disable irq after suspend")
> 
> Disable rx irq after suspend to avoid interrupt coming in early
> resume.
> 
> Signed-off-by: Fugang Duan <B38611@freescale.com>
> Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
> ?drivers/tty/serial/imx.c | 2 ++
> ?1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
> index 016e4be05cec..fae8c83708b1 100644
> --- a/drivers/tty/serial/imx.c
> +++ b/drivers/tty/serial/imx.c
> @@ -2108,6 +2108,7 @@ static int imx_serial_port_suspend(struct
> device *dev)
> ?	serial_imx_enable_wakeup(sport, true);
> ?
> ?	uart_suspend_port(&imx_reg, &sport->port);
> +	disable_irq(sport->port.irq);
> ?
> ?	return 0;
> ?}
> @@ -2121,6 +2122,7 @@ static int imx_serial_port_resume(struct device
> *dev)
> ?	serial_imx_enable_wakeup(sport, false);
> ?
> ?	uart_resume_port(&imx_reg, &sport->port);
> +	enable_irq(sport->port.irq);
> ?
> ?	return 0;
> ?}
-- 
Ben Hutchings
Software Developer, Codethink Ltd.

      reply	other threads:[~2017-12-08 16:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-27 15:37 [cip-dev] [PATCH] tty: serial: imx: disable irq after suspend Maxim Yu. Osipov
2017-12-08 16:17 ` Ben Hutchings [this message]

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=1512749844.18523.251.camel@codethink.co.uk \
    --to=ben.hutchings@codethink.co.uk \
    --cc=cip-dev@lists.cip-project.org \
    /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