From: Ulf Hansson <ulf.hansson@linaro.org>
To: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Jiri Slaby <jirislaby@kernel.org>,
"Rafael J . Wysocki" <rafael@kernel.org>,
Rob Herring <robh@kernel.org>,
Saravana Kannan <saravanak@google.com>,
Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>,
Peng Fan <peng.fan@nxp.com>,
linux-pm@vger.kernel.org, linux-serial@vger.kernel.org,
linux-renesas-soc@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Subject: Re: [PATCH/RFC 0/3] pmdomain: renesas: rmobile-sysc: Remove serial console handling
Date: Wed, 5 Jun 2024 11:34:13 +0200 [thread overview]
Message-ID: <CAPDyKFpa4LZF3eN7x-NT+b9=dKB3Oe6RY8RAyetdRBSR1-LQoQ@mail.gmail.com> (raw)
In-Reply-To: <cover.1716811405.git.geert+renesas@glider.be>
+ Tomi
On Mon, 27 May 2024 at 14:41, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:
>
> Hi all,
>
> Since commit a47cf07f60dcb02d ("serial: core: Call
> device_set_awake_path() for console port"), the serial driver properly
> handles the case where the serial console is part of the awake path, and
> it looked like we could start removing special serial console handling
> from PM Domain drivers like the R-Mobile SYSC PM Domain driver.
> Unfortunately the devil is in the details, as usual...
>
> Earlycon relies on the serial port to be initialized by the firmware
> and/or bootloader. Linux is not aware of any hardware dependencies that
> must be met to keep the port working, and thus cannot guarantee they
> stay met, until the full serial driver takes over.
>
> E.g. all unused clocks and unused PM Domains are disabled in a late
> initcall. As this happens after the full serial driver has taken over,
> the serial port's clock and/or PM Domain are no longer deemed unused,
> and this is typically not a problem.
>
> However, if the serial port's clock or PM Domain is shared with another
> device, and that other device is runtime-suspended before the full
> serial driver has probed, the serial port's clock and/or PM Domain will
> be disabled inadvertently. Any subsequent serial console output will
> cause a crash or system lock-up. E.g. on R/SH-Mobile SoCs, the serial
> ports share their PM Domain with several other I/O devices. After the
> use of pwm (Armadillo-800-EVA) or i2c (KZM-A9-GT) during early boot,
> before the full serial driver takes over, the PM Domain containing the
> early serial port is powered down, causing a lock-up when booted with
> "earlycon".
Hi Geert,
Thanks for the detailed description of the problem! As pointed out in
regards to another similar recent patch [1], this is indeed a generic
problem, not limited to the serial console handling.
At Linaro Connect a few weeks ago I followed up with Saravana from the
earlier discussions at LPC last fall. We now have a generic solution
for genpd drafted on plain paper, based on fw_devlink and the
->sync_state() callback. I am currently working on the genpd series,
while Saravana will re-spin the series (can't find the link to the
last version) for the clock framework. Ideally, we want these things
to work in a very similar way.
That said, allow me to post the series for genpd in a week or two to
see if it can solve your problem too, for the serial console.
Kind regards
Uffe
[1]
https://lore.kernel.org/linux-arm-kernel/CAPDyKFqShuq98qV5nSPzSqwLLUZ7LxLvp1eihGRBkU4qUKdWwQ@mail.gmail.com/
>
> This RFC patch series aims to provide a mechanism for handling this, and
> to fix it for the PM Domain case:
> 1. The first patch provides a mechanism to let the clock and/or PM
> Domain subsystem or drivers handle this, by exporting the clock and
> PM Domain dependencies for the serial port, as available in the
> system's device tree,
> 2. The second patch introduces a new flag to handle a PM domain that
> must be kept powered-on during early boot, and by setting this flag
> if the PM Domain contains the serial console (originally I handled
> this inside rmobile-sysc, but it turned out to be easy to
> generalize this to other platforms in the core PM Domain code).
> 3. The third patch removes the no longer needed special console
> handling from the R-Mobile SYSC PM Domain driver.
>
> I did not fix the similar clock issue, as it is more complex (there can
> be multiple clocks, and each clock provider can have its own value of
> #clock-cells), and I do not need it for Renesas ARM platforms.
I will defer to Sarvana here, but ideally his series for the clock
framework should solve this case too.
>
> This has been tested on the APE6-EVM, Armadillo-800-EVA, and KZM-A9-GT
> development boards, with and without earlycon, including s2ram with and
> without no_console_suspend.
>
> Notes:
> - This should not be needed on RZ/G3S, where each serial port device
> has its own PM Domain,
> - drivers/clk/imx/clk.c and drivers/pmdomain/imx/scu-pd.c have special
> handling for the of_stdout device, but is probably not affected, as
> each serial port seems to share its PM Domain only with the serial
> port's clock controller.
>
> Thanks for your comments!
>
> Geert Uytterhoeven (3):
> earlycon: Export clock and PM Domain info from FDT
> pmdomain: core: Avoid earlycon power-down
> pmdomain: renesas: rmobile-sysc: Remove serial console handling
>
> drivers/pmdomain/core.c | 24 ++++++++++++++++--
> drivers/pmdomain/renesas/rmobile-sysc.c | 33 +------------------------
> drivers/tty/serial/earlycon.c | 14 ++++++++++-
> include/linux/pm_domain.h | 4 +++
> include/linux/serial_core.h | 10 ++++++++
> 5 files changed, 50 insertions(+), 35 deletions(-)
>
> --
Kind regards
Uffe
next prev parent reply other threads:[~2024-06-05 9:34 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-27 12:41 [PATCH/RFC 0/3] pmdomain: renesas: rmobile-sysc: Remove serial console handling Geert Uytterhoeven
2024-05-27 12:41 ` [PATCH/RFC 1/3] earlycon: Export clock and PM Domain info from FDT Geert Uytterhoeven
2024-05-29 9:01 ` Geert Uytterhoeven
2024-05-27 12:41 ` [PATCH/RFC 2/3] pmdomain: core: Avoid earlycon power-down Geert Uytterhoeven
2024-05-27 12:41 ` [PATCHPATCH 3/3] pmdomain: renesas: rmobile-sysc: Remove serial console handling Geert Uytterhoeven
2024-06-05 9:34 ` Ulf Hansson [this message]
2024-06-05 10:41 ` [PATCH/RFC 0/3] " Tomi Valkeinen
2024-06-05 10:53 ` Ulf Hansson
2024-06-05 11:16 ` Tomi Valkeinen
2024-06-21 1:07 ` Saravana Kannan
2024-06-21 7:07 ` Geert Uytterhoeven
2024-06-21 8:49 ` Tomi Valkeinen
2024-07-09 15:20 ` Ulf Hansson
2024-06-11 4:52 ` claudiu beznea
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='CAPDyKFpa4LZF3eN7x-NT+b9=dKB3Oe6RY8RAyetdRBSR1-LQoQ@mail.gmail.com' \
--to=ulf.hansson@linaro.org \
--cc=claudiu.beznea.uj@bp.renesas.com \
--cc=devicetree@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=peng.fan@nxp.com \
--cc=rafael@kernel.org \
--cc=robh@kernel.org \
--cc=saravanak@google.com \
--cc=tomi.valkeinen@ideasonboard.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;
as well as URLs for NNTP newsgroup(s).