From: sashiko-bot@kernel.org
To: "Rosen Penev" <rosenp@gmail.com>
Cc: linux-serial@vger.kernel.org
Subject: Re: [PATCH] serial: 8250: Add Armada 38x earlycon support
Date: Wed, 02 Sep 2026 22:25:54 +0000 [thread overview]
Message-ID: <20260902222555.30C151F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260902221709.340393-1-rosenp@gmail.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Runtime PM circular dependency during port registration in `dw8250_probe()`.
--
commit b5bac3793a0a37f84d80f37cd62c9577811449ef
Author: Rosen Penev <rosenp@gmail.com>
serial: 8250: Add Armada 38x earlycon support
This commit registers the Armada 38x UART compatible with the built-in 8250
earlycon implementation. This allows stdout-path to enable an early console
while preserving the vendor-specific compatible to retain DesignWare driver
runtime handling.
> diff --git a/drivers/tty/serial/8250/8250_early.c b/drivers/tty/serial/8250/8250_early.c
> index 44ec209f37c47..265d49850e150 100644
> --- a/drivers/tty/serial/8250/8250_early.c
> +++ b/drivers/tty/serial/8250/8250_early.c
> @@ -175,6 +175,7 @@ EARLYCON_DECLARE(uart8250, early_serial8250_setup);
> EARLYCON_DECLARE(uart, early_serial8250_setup);
> OF_EARLYCON_DECLARE(ns16550, "ns16550", early_serial8250_setup);
> OF_EARLYCON_DECLARE(ns16550a, "ns16550a", early_serial8250_setup);
> +OF_EARLYCON_DECLARE(uart, "marvell,armada-38x-uart", early_serial8250_setup);
[Severity: High]
This is a pre-existing issue, but since this patch relies on preserving the
DesignWare driver's runtime handling, could the current runtime PM logic
cause a circular dependency during port registration?
Looking at dw8250_probe() in drivers/tty/serial/8250/8250_dw.c, port
registration happens before runtime PM is enabled:
drivers/tty/serial/8250/8250_dw.c:dw8250_probe() {
...
data->data.line = serial8250_register_8250_port(up);
if (data->data.line < 0)
return data->data.line;
platform_set_drvdata(pdev, data);
pm_runtime_enable(dev);
...
}
The registration call eventually reaches uart_add_one_port(), which
synchronously invokes the pm callback dw8250_do_pm(). This callback
attempts to use runtime PM APIs:
drivers/tty/serial/8250/8250_dw.c:dw8250_do_pm() {
if (!state)
pm_runtime_get_sync(port->dev);
serial8250_do_pm(port, state, old);
if (state)
pm_runtime_put_sync_suspend(port->dev);
}
Since pm_runtime_enable() hasn't been called yet when the callback runs,
would pm_runtime_get_sync() operate on an uninitialized device? Does this
sequence risk blocking tasks and hanging worker threads during device probe?
> OF_EARLYCON_DECLARE(uart, "nvidia,tegra20-uart", early_serial8250_setup);
> OF_EARLYCON_DECLARE(uart, "snps,dw-apb-uart", early_serial8250_setup);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260902221709.340393-1-rosenp@gmail.com?part=1
prev parent reply other threads:[~2026-09-02 22:25 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-02 22:17 [PATCH] serial: 8250: Add Armada 38x earlycon support Rosen Penev
2026-09-02 22:25 ` sashiko-bot [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=20260902222555.30C151F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=rosenp@gmail.com \
--cc=sashiko-reviews@lists.linux.dev \
/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