* [PATCH] serial: port: Don't suspend if the port is still busy
@ 2024-02-04 3:19 Yicong Yang
2024-02-05 6:51 ` Tony Lindgren
2024-02-05 8:47 ` John Ogness
0 siblings, 2 replies; 7+ messages in thread
From: Yicong Yang @ 2024-02-04 3:19 UTC (permalink / raw)
To: gregkh, jirislaby, tony, linux-kernel, linux-serial
Cc: john.ogness, andriy.shevchenko, tglx, yangyicong, linuxarm,
prime.zeng, jonathan.cameron, fanghao11
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 request an runtime resume for
handling this.
Cc: Tony Lindgren <tony@atomide.com>
Signed-off-by: Yicong Yang <yangyicong@hisilicon.com>
---
drivers/tty/serial/serial_port.c | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/drivers/tty/serial/serial_port.c b/drivers/tty/serial/serial_port.c
index 88975a4df306..60d1eec6b6b7 100644
--- a/drivers/tty/serial/serial_port.c
+++ b/drivers/tty/serial/serial_port.c
@@ -46,8 +46,28 @@ static int serial_port_runtime_resume(struct device *dev)
return 0;
}
+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;
+
+ port = port_dev->port;
+
+ if (port->flags & UPF_DEAD)
+ return 0;
+
+ spin_lock_irqsave(&port->lock, flags);
+ if (__serial_port_busy(port))
+ pm_request_resume(dev);
+ spin_unlock_irqrestore(&port->lock, flags);
+
+ return 0;
+}
+
static DEFINE_RUNTIME_DEV_PM_OPS(serial_port_pm,
- NULL, serial_port_runtime_resume, NULL);
+ serial_port_runtime_suspend,
+ serial_port_runtime_resume, NULL);
static int serial_port_probe(struct device *dev)
{
--
2.24.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] serial: port: Don't suspend if the port is still busy
2024-02-04 3:19 [PATCH] serial: port: Don't suspend if the port is still busy Yicong Yang
@ 2024-02-05 6:51 ` Tony Lindgren
2024-02-05 8:55 ` Yicong Yang
2024-02-05 8:47 ` John Ogness
1 sibling, 1 reply; 7+ messages in thread
From: Tony Lindgren @ 2024-02-05 6:51 UTC (permalink / raw)
To: Yicong Yang
Cc: gregkh, jirislaby, linux-kernel, linux-serial, john.ogness,
andriy.shevchenko, tglx, yangyicong, linuxarm, prime.zeng,
jonathan.cameron, fanghao11
* Yicong Yang <yangyicong@huawei.com> [240204 03:24]:
> 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()
Can you please confirm if this still happens also with commit 6f699743aebf
("serial: core: Fix runtime PM handling for pending tx")? It adds a check
for -EINPROGRESS.
> 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 request an runtime resume for
> handling this.
OK. Let's look at this further after you have checked what happens with
commit 6f699743aebf.
If needed, to me it seems that flushing tx and returning -EBUSY from
serial_port_runtime_suspend() if busy might do the trick though.
Regards,
Tony
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] serial: port: Don't suspend if the port is still busy
2024-02-04 3:19 [PATCH] serial: port: Don't suspend if the port is still busy Yicong Yang
2024-02-05 6:51 ` Tony Lindgren
@ 2024-02-05 8:47 ` John Ogness
2024-02-05 9:00 ` Yicong Yang
1 sibling, 1 reply; 7+ messages in thread
From: John Ogness @ 2024-02-05 8:47 UTC (permalink / raw)
To: Yicong Yang, gregkh, jirislaby, tony, linux-kernel, linux-serial
Cc: andriy.shevchenko, tglx, yangyicong, linuxarm, prime.zeng,
jonathan.cameron, fanghao11
On 2024-02-04, Yicong Yang <yangyicong@huawei.com> wrote:
> diff --git a/drivers/tty/serial/serial_port.c b/drivers/tty/serial/serial_port.c
> index 88975a4df306..60d1eec6b6b7 100644
> --- a/drivers/tty/serial/serial_port.c
> +++ b/drivers/tty/serial/serial_port.c
> @@ -46,8 +46,28 @@ static int serial_port_runtime_resume(struct device *dev)
> return 0;
> }
>
> +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;
> +
> + port = port_dev->port;
> +
> + if (port->flags & UPF_DEAD)
> + return 0;
> +
> + spin_lock_irqsave(&port->lock, flags);
> + if (__serial_port_busy(port))
> + pm_request_resume(dev);
> + spin_unlock_irqrestore(&port->lock, flags);
Please use the wrapper functions for the uart port lock:
uart_port_lock_irqsave()
uart_port_unlock_irqrestore()
John Ogness
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] serial: port: Don't suspend if the port is still busy
2024-02-05 6:51 ` Tony Lindgren
@ 2024-02-05 8:55 ` Yicong Yang
2024-02-05 9:07 ` Tony Lindgren
0 siblings, 1 reply; 7+ messages in thread
From: Yicong Yang @ 2024-02-05 8:55 UTC (permalink / raw)
To: Tony Lindgren
Cc: yangyicong, gregkh, jirislaby, linux-kernel, linux-serial,
john.ogness, andriy.shevchenko, tglx, linuxarm, prime.zeng,
jonathan.cameron, fanghao11
On 2024/2/5 14:51, Tony Lindgren wrote:
> * Yicong Yang <yangyicong@huawei.com> [240204 03:24]:
>> 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()
>
> Can you please confirm if this still happens also with commit 6f699743aebf
> ("serial: core: Fix runtime PM handling for pending tx")? It adds a check
> for -EINPROGRESS.
Tested nagetive on latest v6.8-rc3. Paste the current code snippet below in __uart_start():
/* Increment the runtime PM usage count for the active check below */
err = pm_runtime_get(&port_dev->dev);
if (err < 0 && err != -EINPROGRESS) {
pm_runtime_put_noidle(&port_dev->dev);
return;
}
/*
* Start TX if enabled, and kick runtime PM. If the device is not
* enabled, serial_port_runtime_resume() calls start_tx() again
* after enabling the device.
*/
if (pm_runtime_active(&port_dev->dev))
port->ops->start_tx(port);
In our issue case, the dev->power.runtime_status == RPM_RESUMING as analyzed in
commit. So we cannot pass the pm_runtime_active() check and the chars will still
be pending.
>
>> 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 request an runtime resume for
>> handling this.
>
> OK. Let's look at this further after you have checked what happens with
> commit 6f699743aebf.
>
> If needed, to me it seems that flushing tx and returning -EBUSY from
> serial_port_runtime_suspend() if busy might do the trick though.
>
Do you mean something like below?
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;
spin_lock_irqsave(&port->lock, flags);
if (__serial_port_busy(port)) {
port->ops->start_tx(port);
ret = -EBUSY;
}
spin_unlock_irqrestore(&port->lock, flags);
return ret;
}
If so will the port fail to suspend after flushing the pending chars? Considering
underlay driver like amba-pl011 doesn't implement runtime power management, does
anyone will get the port into suspend routine later? I'm not quite sure about it.
In the patch's implementation the pending chars will be flushed in runtime_resume()
callback and rpm_resume() will try to call rpm_idle() later.
Thanks.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] serial: port: Don't suspend if the port is still busy
2024-02-05 8:47 ` John Ogness
@ 2024-02-05 9:00 ` Yicong Yang
0 siblings, 0 replies; 7+ messages in thread
From: Yicong Yang @ 2024-02-05 9:00 UTC (permalink / raw)
To: John Ogness
Cc: gregkh, jirislaby, tony, linux-kernel, linux-serial, yangyicong,
andriy.shevchenko, tglx, linuxarm, prime.zeng, jonathan.cameron,
fanghao11
On 2024/2/5 16:47, John Ogness wrote:
> On 2024-02-04, Yicong Yang <yangyicong@huawei.com> wrote:
>> diff --git a/drivers/tty/serial/serial_port.c b/drivers/tty/serial/serial_port.c
>> index 88975a4df306..60d1eec6b6b7 100644
>> --- a/drivers/tty/serial/serial_port.c
>> +++ b/drivers/tty/serial/serial_port.c
>> @@ -46,8 +46,28 @@ static int serial_port_runtime_resume(struct device *dev)
>> return 0;
>> }
>>
>> +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;
>> +
>> + port = port_dev->port;
>> +
>> + if (port->flags & UPF_DEAD)
>> + return 0;
>> +
>> + spin_lock_irqsave(&port->lock, flags);
>> + if (__serial_port_busy(port))
>> + pm_request_resume(dev);
>> + spin_unlock_irqrestore(&port->lock, flags);
>
> Please use the wrapper functions for the uart port lock:
>
> uart_port_lock_irqsave()
> uart_port_unlock_irqrestore()
>
Sure. Thanks for the information.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] serial: port: Don't suspend if the port is still busy
2024-02-05 8:55 ` Yicong Yang
@ 2024-02-05 9:07 ` Tony Lindgren
2024-02-06 8:02 ` Yicong Yang
0 siblings, 1 reply; 7+ messages in thread
From: Tony Lindgren @ 2024-02-05 9:07 UTC (permalink / raw)
To: Yicong Yang
Cc: yangyicong, gregkh, jirislaby, linux-kernel, linux-serial,
john.ogness, andriy.shevchenko, tglx, linuxarm, prime.zeng,
jonathan.cameron, fanghao11
* Yicong Yang <yangyicong@huawei.com> [240205 08:55]:
> On 2024/2/5 14:51, Tony Lindgren wrote:
> > Can you please confirm if this still happens also with commit 6f699743aebf
> > ("serial: core: Fix runtime PM handling for pending tx")? It adds a check
> > for -EINPROGRESS.
>
> Tested nagetive on latest v6.8-rc3. Paste the current code snippet below in __uart_start():
OK thanks for confirming it.
> In our issue case, the dev->power.runtime_status == RPM_RESUMING as analyzed in
> commit. So we cannot pass the pm_runtime_active() check and the chars will still
> be pending.
OK
> Do you mean something like below?
>
> 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;
>
> spin_lock_irqsave(&port->lock, flags);
> if (__serial_port_busy(port)) {
> port->ops->start_tx(port);
> ret = -EBUSY;
> }
> spin_unlock_irqrestore(&port->lock, flags);
>
> return ret;
> }
Yes the above should work.
> If so will the port fail to suspend after flushing the pending chars? Considering
> underlay driver like amba-pl011 doesn't implement runtime power management, does
> anyone will get the port into suspend routine later? I'm not quite sure about it.
Hmm yeah you may need to also call pm_runtime_mark_last_busy() to
ensure the port gets idled later on. Not sure if PM runtime core does that for
you on returning -EBUSY, worth checking it :)
The PM runtime hierarchy will block the serial port controller driver from
suspending, so the port drivers won't runtime suspend.
> In the patch's implementation the pending chars will be flushed in runtime_resume()
> callback and rpm_resume() will try to call rpm_idle() later.
On serial_port_runtime_suspend() the serial port controller will be active, so
you can call start_tx() directly.
Regards,
Tony
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] serial: port: Don't suspend if the port is still busy
2024-02-05 9:07 ` Tony Lindgren
@ 2024-02-06 8:02 ` Yicong Yang
0 siblings, 0 replies; 7+ messages in thread
From: Yicong Yang @ 2024-02-06 8:02 UTC (permalink / raw)
To: Tony Lindgren
Cc: yangyicong, gregkh, jirislaby, linux-kernel, linux-serial,
john.ogness, andriy.shevchenko, tglx, linuxarm, prime.zeng,
jonathan.cameron, fanghao11
On 2024/2/5 17:07, Tony Lindgren wrote:
> * Yicong Yang <yangyicong@huawei.com> [240205 08:55]:
>> On 2024/2/5 14:51, Tony Lindgren wrote:
>>> Can you please confirm if this still happens also with commit 6f699743aebf
>>> ("serial: core: Fix runtime PM handling for pending tx")? It adds a check
>>> for -EINPROGRESS.
>>
>> Tested nagetive on latest v6.8-rc3. Paste the current code snippet below in __uart_start():
>
> OK thanks for confirming it.
>
>> In our issue case, the dev->power.runtime_status == RPM_RESUMING as analyzed in
>> commit. So we cannot pass the pm_runtime_active() check and the chars will still
>> be pending.
>
> OK
>
>> Do you mean something like below?
>>
>> 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;
>>
>> spin_lock_irqsave(&port->lock, flags);
>> if (__serial_port_busy(port)) {
>> port->ops->start_tx(port);
>> ret = -EBUSY;
>> }
>> spin_unlock_irqrestore(&port->lock, flags);
>>
>> return ret;
>> }
>
> Yes the above should work.
>
>> If so will the port fail to suspend after flushing the pending chars? Considering
>> underlay driver like amba-pl011 doesn't implement runtime power management, does
>> anyone will get the port into suspend routine later? I'm not quite sure about it.
>
> Hmm yeah you may need to also call pm_runtime_mark_last_busy() to
> ensure the port gets idled later on. Not sure if PM runtime core does that for
> you on returning -EBUSY, worth checking it :)
In this if the runtime_suspend() callback return -EBUSY, rpm core will try to
repeat to try to suspend the device. So this shall be ok.
So I respin a v2 as suggested:
https://lore.kernel.org/all/20240206073322.5560-1-yangyicong@huawei.com/
>
> The PM runtime hierarchy will block the serial port controller driver from
> suspending, so the port drivers won't runtime suspend.
>
>> In the patch's implementation the pending chars will be flushed in runtime_resume()
>> callback and rpm_resume() will try to call rpm_idle() later.
>
> On serial_port_runtime_suspend() the serial port controller will be active, so
> you can call start_tx() directly.
>
> Regards,
>
> Tony
>
> .
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-02-06 8:02 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-04 3:19 [PATCH] serial: port: Don't suspend if the port is still busy Yicong Yang
2024-02-05 6:51 ` Tony Lindgren
2024-02-05 8:55 ` Yicong Yang
2024-02-05 9:07 ` Tony Lindgren
2024-02-06 8:02 ` Yicong Yang
2024-02-05 8:47 ` John Ogness
2024-02-05 9:00 ` Yicong Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox