From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Yicong Yang <yangyicong@huawei.com>
Cc: gregkh@linuxfoundation.org, jirislaby@kernel.org,
tony@atomide.com, linux-kernel@vger.kernel.org,
linux-serial@vger.kernel.org, john.ogness@linutronix.de,
tglx@linutronix.de, yangyicong@hisilicon.com,
linuxarm@huawei.com, prime.zeng@hisilicon.com,
jonathan.cameron@huawei.com, fanghao11@huawei.com
Subject: Re: [PATCH v2] serial: port: Don't suspend if the port is still busy
Date: Tue, 6 Feb 2024 15:11:54 +0200 [thread overview]
Message-ID: <ZcIwGm-W4A2rupOi@smile.fi.intel.com> (raw)
In-Reply-To: <ZcIvjC1qzD4atwlT@smile.fi.intel.com>
On Tue, Feb 06, 2024 at 03:09:32PM +0200, Andy Shevchenko wrote:
> On Tue, Feb 06, 2024 at 03:33:22PM +0800, Yicong Yang wrote:
> > From: Yicong Yang <yangyicong@hisilicon.com>
> >
> > We accidently met the issue that the bash prompt is not shown after the
> > previous command done and until the next input if there's only one CPU
> > (In our issue other CPUs are isolated by isolcpus=). Further analysis
> > shows it's because the port entering runtime suspend even if there's
> > still pending chars in the buffer and the pending chars will only be
> > processed in next device resuming. We are using amba-pl011 and the
> > problematic flow is like below:
> >
> > Bash kworker
> > tty_write()
> > file_tty_write()
> > n_tty_write()
> > uart_write()
> > __uart_start()
> > pm_runtime_get() // wakeup waker
> > queue_work()
> > pm_runtime_work()
> > rpm_resume()
> > status = RPM_RESUMING
> > serial_port_runtime_resume()
> > port->ops->start_tx()
> > pl011_tx_chars()
> > uart_write_wakeup()
> > […]
> > __uart_start()
> > pm_runtime_get() < 0 // because runtime status = RPM_RESUMING
> > // later data are not commit to the port driver
> > status = RPM_ACTIVE
> > rpm_idle() -> rpm_suspend()
> >
> > This patch tries to fix this by checking the port busy before entering
> > runtime suspending. A runtime_suspend callback is added for the port
> > driver. When entering runtime suspend the callback is invoked, if there's
> > still pending chars in the buffer then flush the buffer.
...
> > +static int serial_port_runtime_suspend(struct device *dev)
> > +{
> > + struct serial_port_device *port_dev = to_serial_base_port_device(dev);
> > + struct uart_port *port;
> > + unsigned long flags;
> > + int ret = 0;
> > +
> > + port = port_dev->port;
> > +
> > + if (port->flags & UPF_DEAD)
> > + return ret;
> > +
> > + uart_port_lock_irqsave(port, &flags);
> > + if (__serial_port_busy(port)) {
> > + port->ops->start_tx(port);
>
> > + pm_runtime_mark_last_busy(dev);
>
> Do you think we need to call this under a lock?
>
> > + ret = -EBUSY;
> > + }
> > + uart_port_unlock_irqrestore(port, flags);
> > +
> > + return ret;
> > +}
>
> With the above I would rather write it as
>
> static int __serial_port_busy(struct uart_port *port)
> {
> if (uart_tx_stopped(port))
> return 0;
>
> if (uart_circ_chars_pending(&port->state->xmit)
> return -EBUSY;
>
> return 0;
> }
>
> static int serial_port_runtime_suspend(struct device *dev)
> {
> int ret;
> ...
> uart_port_lock_irqsave(port, &flags);
> ret = __serial_port_busy(port);
> if (ret)
> port->ops->start_tx(port);
> uart_port_unlock_irqrestore(port, flags);
> if (ret)
> pm_runtime_mark_last_busy(dev);
And obvious question here: why in case of 0 we can't mark this as busy as well?
I.o.w. why do we need to mark it only when error is set?
> return ret;
> }
>
> It also seems aligned with the resume implementation above.
>
> ...
>
> For the consistency's sake the resume can be refactored as
>
> static int serial_port_runtime_resume(struct device *dev)
> {
> ...
> int ret;
> ...
> ret = __serial_port_busy(port);
> if (ret)
> ...
> }
>
> but this can be done later.
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2024-02-06 13:12 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-06 7:33 [PATCH v2] serial: port: Don't suspend if the port is still busy Yicong Yang
2024-02-06 8:34 ` Tony Lindgren
2024-02-06 9:44 ` Greg KH
2024-02-06 10:20 ` Yicong Yang
2024-02-06 13:09 ` Andy Shevchenko
2024-02-06 13:11 ` Andy Shevchenko [this message]
2024-02-06 13:21 ` Tony Lindgren
2024-02-07 7:22 ` Yicong Yang
2024-02-07 14:47 ` Andy Shevchenko
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=ZcIwGm-W4A2rupOi@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=fanghao11@huawei.com \
--cc=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=john.ogness@linutronix.de \
--cc=jonathan.cameron@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=prime.zeng@hisilicon.com \
--cc=tglx@linutronix.de \
--cc=tony@atomide.com \
--cc=yangyicong@hisilicon.com \
--cc=yangyicong@huawei.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