* [PATCHv2] serial: 8250: Fix runtime PM for start_tx() for empty buffer
@ 2022-04-11 11:16 Tony Lindgren
2022-04-11 12:00 ` Johan Hovold
2022-04-11 12:14 ` Uwe Kleine-König
0 siblings, 2 replies; 3+ messages in thread
From: Tony Lindgren @ 2022-04-11 11:16 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Andy Shevchenko, Ilpo Järvinen, Jiri Slaby, Johan Hovold,
Sebastian Andrzej Siewior, Vignesh Raghavendra, linux-serial,
linux-omap, linux-kernel, Steffen Trumtrar,
Uwe Kleine-König
Commit 932d596378b0 ("serial: 8250: Return early in .start_tx() if there
are no chars to send") caused a regression where the drivers implementing
runtime PM stopped idling. This is because serial8250_rpm_put_tx() is now
unbalanced on early return, it normally gets called at __stop_tx().
Fixes: 932d596378b0 ("serial: 8250: Return early in .start_tx() if there are no chars to send")
Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
Changes since v1:
- Call serial8250_rpm_get_tx() only after buffer empty test as suggested
by Uwe and Johan
- Drop RS885 related patch for now, it needs to be investigated further
---
drivers/tty/serial/8250/8250_port.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/tty/serial/8250/8250_port.c b/drivers/tty/serial/8250/8250_port.c
--- a/drivers/tty/serial/8250/8250_port.c
+++ b/drivers/tty/serial/8250/8250_port.c
@@ -1675,11 +1675,11 @@ static void serial8250_start_tx(struct uart_port *port)
struct uart_8250_port *up = up_to_u8250p(port);
struct uart_8250_em485 *em485 = up->em485;
- serial8250_rpm_get_tx(up);
-
if (!port->x_char && uart_circ_empty(&port->state->xmit))
return;
+ serial8250_rpm_get_tx(up);
+
if (em485 &&
em485->active_timer == &em485->start_tx_timer)
return;
--
2.35.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCHv2] serial: 8250: Fix runtime PM for start_tx() for empty buffer
2022-04-11 11:16 [PATCHv2] serial: 8250: Fix runtime PM for start_tx() for empty buffer Tony Lindgren
@ 2022-04-11 12:00 ` Johan Hovold
2022-04-11 12:14 ` Uwe Kleine-König
1 sibling, 0 replies; 3+ messages in thread
From: Johan Hovold @ 2022-04-11 12:00 UTC (permalink / raw)
To: Tony Lindgren
Cc: Greg Kroah-Hartman, Andy Shevchenko, Ilpo Järvinen,
Jiri Slaby, Sebastian Andrzej Siewior, Vignesh Raghavendra,
linux-serial, linux-omap, linux-kernel, Steffen Trumtrar,
Uwe Kleine-König
On Mon, Apr 11, 2022 at 02:16:57PM +0300, Tony Lindgren wrote:
> Commit 932d596378b0 ("serial: 8250: Return early in .start_tx() if there
> are no chars to send") caused a regression where the drivers implementing
> runtime PM stopped idling. This is because serial8250_rpm_put_tx() is now
> unbalanced on early return, it normally gets called at __stop_tx().
>
> Fixes: 932d596378b0 ("serial: 8250: Return early in .start_tx() if there are no chars to send")
> Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>
> Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> Signed-off-by: Tony Lindgren <tony@atomide.com>
> ---
>
> Changes since v1:
>
> - Call serial8250_rpm_get_tx() only after buffer empty test as suggested
> by Uwe and Johan
>
> - Drop RS885 related patch for now, it needs to be investigated further
>
> ---
> drivers/tty/serial/8250/8250_port.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/tty/serial/8250/8250_port.c b/drivers/tty/serial/8250/8250_port.c
> --- a/drivers/tty/serial/8250/8250_port.c
> +++ b/drivers/tty/serial/8250/8250_port.c
> @@ -1675,11 +1675,11 @@ static void serial8250_start_tx(struct uart_port *port)
> struct uart_8250_port *up = up_to_u8250p(port);
> struct uart_8250_em485 *em485 = up->em485;
>
> - serial8250_rpm_get_tx(up);
> -
> if (!port->x_char && uart_circ_empty(&port->state->xmit))
> return;
>
> + serial8250_rpm_get_tx(up);
> +
> if (em485 &&
> em485->active_timer == &em485->start_tx_timer)
> return;
Reviewed-by: Johan Hovold <johan@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCHv2] serial: 8250: Fix runtime PM for start_tx() for empty buffer
2022-04-11 11:16 [PATCHv2] serial: 8250: Fix runtime PM for start_tx() for empty buffer Tony Lindgren
2022-04-11 12:00 ` Johan Hovold
@ 2022-04-11 12:14 ` Uwe Kleine-König
1 sibling, 0 replies; 3+ messages in thread
From: Uwe Kleine-König @ 2022-04-11 12:14 UTC (permalink / raw)
To: Tony Lindgren
Cc: Greg Kroah-Hartman, Andy Shevchenko, Ilpo Järvinen,
Jiri Slaby, Johan Hovold, Sebastian Andrzej Siewior,
Vignesh Raghavendra, linux-serial, linux-omap, linux-kernel,
Steffen Trumtrar
[-- Attachment #1: Type: text/plain, Size: 895 bytes --]
On Mon, Apr 11, 2022 at 02:16:57PM +0300, Tony Lindgren wrote:
> Commit 932d596378b0 ("serial: 8250: Return early in .start_tx() if there
> are no chars to send") caused a regression where the drivers implementing
> runtime PM stopped idling. This is because serial8250_rpm_put_tx() is now
> unbalanced on early return, it normally gets called at __stop_tx().
>
> Fixes: 932d596378b0 ("serial: 8250: Return early in .start_tx() if there are no chars to send")
> Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>
> Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> Signed-off-by: Tony Lindgren <tony@atomide.com>
Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thanks for cleaning up behind me,
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | https://www.pengutronix.de/ |
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-04-11 12:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-11 11:16 [PATCHv2] serial: 8250: Fix runtime PM for start_tx() for empty buffer Tony Lindgren
2022-04-11 12:00 ` Johan Hovold
2022-04-11 12:14 ` Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®