From: sashiko-bot@kernel.org
To: "John Madieu" <john.madieu.xa@bp.renesas.com>
Cc: robh@kernel.org, devicetree@vger.kernel.org,
wsa+renesas@sang-engineering.com, conor+dt@kernel.org
Subject: Re: [PATCH v7 18/18] ASoC: rsnd: Add system suspend/resume support
Date: Mon, 25 May 2026 12:23:00 +0000 [thread overview]
Message-ID: <20260525122301.206D01F00A3A@smtp.kernel.org> (raw)
In-Reply-To: <20260525110230.4014435-19-john.madieu.xa@bp.renesas.com>
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
- [High] Incorrect clock and reset ordering in `rsnd_suspend_clk_reset` and `rsnd_resume_clk_reset`.
- [Medium] The `scu_supply` clock is omitted from suspend/resume management in the SRC module.
- [Medium] Return values from critical resource management functions are silently ignored during system resume.
--
commit 0690a34131ef80f23f3d83d8daa691b816da9afc
Author: John Madieu <john.madieu.xa@bp.renesas.com>
Date: Mon May 25 11:02:30 2026 +0000
ASoC: rsnd: Add system suspend/resume support
This commit adds system suspend and resume support for the ASoC rsnd driver,
distributing the module-specific suspend/resume operations across individual
files instead of centralizing them in core.c.
> diff --git a/sound/soc/renesas/rcar/core.c b/sound/soc/renesas/rcar/core.c
> index fbf7f72364600..9ce56cd84f46d 100644
> --- a/sound/soc/renesas/rcar/core.c
> +++ b/sound/soc/renesas/rcar/core.c
[ ... ]
> @@ -2159,11 +2160,35 @@ static void rsnd_remove(struct platform_device *pdev)
> remove_func[i](priv);
> }
>
> +void rsnd_suspend_clk_reset(struct clk *clk, struct reset_control *rstc)
> +{
> + clk_unprepare(clk);
> + reset_control_assert(rstc);
[Severity: High]
Will this sequence send the reset command to an unclocked IP block?
Looking at the driver's normal module quit sequence in rsnd_mod_quit(), the
reset is asserted before unpreparing the clock. Could asserting the reset
after unpreparing the clock here cause the IP blocks to hang?
> +}
> +
> +void rsnd_resume_clk_reset(struct clk *clk, struct reset_control *rstc)
> +{
> + reset_control_deassert(rstc);
> + clk_prepare(clk);
[Severity: High]
Is it safe to deassert the reset before the clock is prepared?
The hardware typically requires the clock to be stable before deasserting
the reset, which is explicitly noted in rsnd_dma_resume() and done correctly
in rsnd_mod_init(). Will deasserting early here cause issues for the
modules using this helper (SSI, SRC, CTU, MIX, DVC, and ADG)?
[Severity: Medium]
Should the return values of clk_prepare() and reset_control_deassert() be
checked here?
If a clock fails to prepare or a reset fails to deassert, these failures
are silently ignored. Could subsequent register accesses to these IP blocks
trigger a synchronous external abort if they didn't actually resume?
> +}
[ ... ]
> diff --git a/sound/soc/renesas/rcar/dma.c b/sound/soc/renesas/rcar/dma.c
> index 537b71841f8e2..793dd4adbe5c6 100644
> --- a/sound/soc/renesas/rcar/dma.c
> +++ b/sound/soc/renesas/rcar/dma.c
[ ... ]
> @@ -1035,3 +1035,25 @@ int rsnd_dma_probe(struct rsnd_priv *priv)
> +void rsnd_dma_resume(struct rsnd_priv *priv)
> +{
> + struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
> +
> + if (dmac) {
> + /* Clock must be stable before reset is deasserted */
> + clk_prepare_enable(dmac->audmapp_clk);
[Severity: Medium]
Is it necessary to check the return value of clk_prepare_enable() here?
If enabling the DMA clock fails, the hardware won't be accessible, and the
error will be silently dropped, potentially leading to panics when the block
is accessed.
> + rsnd_resume_clk_reset(NULL, dmac->audmapp_rstc);
> + }
> +}
[ ... ]
> diff --git a/sound/soc/renesas/rcar/src.c b/sound/soc/renesas/rcar/src.c
> index cad15fcc37f22..ac806bdc96d9e 100644
> --- a/sound/soc/renesas/rcar/src.c
> +++ b/sound/soc/renesas/rcar/src.c
[ ... ]
> @@ -834,3 +834,37 @@ void rsnd_src_remove(struct rsnd_priv *priv)
> +void rsnd_src_suspend(struct rsnd_priv *priv)
> +{
> + struct rsnd_src_ctrl *src_ctrl = rsnd_priv_to_src_ctrl(priv);
> + struct rsnd_src *src;
> + int i;
> +
> + if (!src_ctrl)
> + return;
> +
> + for_each_rsnd_src(src, priv, i)
> + rsnd_suspend_clk_reset(rsnd_mod_get(src)->clk,
> + rsnd_mod_get(src)->rstc);
> +
> + clk_disable_unprepare(src_ctrl->scu_x2);
> + clk_disable_unprepare(src_ctrl->scu);
[Severity: Medium]
Does this skip disabling the scu_supply clock during suspend?
During rsnd_src_probe(), scu, scu_x2, and scu_supply are all acquired and
enabled. If scu_supply is omitted here, will it remain enabled throughout
system suspend and prevent the clock domain from entering a low-power state?
> +}
> +
> +void rsnd_src_resume(struct rsnd_priv *priv)
> +{
> + struct rsnd_src_ctrl *src_ctrl = rsnd_priv_to_src_ctrl(priv);
> + struct rsnd_src *src;
> + int i;
> +
> + if (!src_ctrl)
> + return;
> +
> + clk_prepare_enable(src_ctrl->scu);
> + clk_prepare_enable(src_ctrl->scu_x2);
[Severity: Medium]
Should the return values of these clk_prepare_enable() calls be checked?
If the clocks fail to prepare, the error is discarded.
Also, similar to the suspend path, should scu_supply be re-enabled here?
> +
> + for_each_rsnd_src(src, priv, i)
> + rsnd_resume_clk_reset(rsnd_mod_get(src)->clk,
> + rsnd_mod_get(src)->rstc);
> +}
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260525110230.4014435-1-john.madieu.xa@bp.renesas.com?part=18
next prev parent reply other threads:[~2026-05-25 12:23 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-25 11:02 [PATCH v7 00/18] ASoC: rsnd: Add RZ/G3E audio driver support John Madieu
2026-05-25 11:02 ` [PATCH v7 01/18] ASoC: dt-bindings: sound: Add DT binding for RZ/G3E sound John Madieu
2026-05-25 11:23 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 02/18] ASoC: rsnd: Fix RSND_SOC_MASK width to single nibble John Madieu
2026-05-25 11:02 ` [PATCH v7 03/18] ASoC: rsnd: Add reset controller support to rsnd_mod John Madieu
2026-05-25 11:02 ` [PATCH v7 04/18] ASoC: rsnd: Support hyphen or dot in indexed clock and reset names John Madieu
2026-05-25 11:02 ` [PATCH v7 05/18] ASoC: rsnd: Add RZ/G3E SoC probing and register map John Madieu
2026-05-25 12:23 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 06/18] ASoC: rsnd: Add audmapp clock and reset support for RZ/G3E John Madieu
2026-05-25 11:02 ` [PATCH v7 07/18] ASoC: rsnd: Refactor DMA address tables with named structs John Madieu
2026-05-25 11:23 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 08/18] ASoC: rsnd: Add RZ/G3E DMA address calculation support John Madieu
2026-05-25 11:29 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 09/18] ASoC: rsnd: ssiu: Add shared SSI reset controller support John Madieu
2026-05-25 11:41 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 10/18] ASoC: rsnd: ssiu: Add RZ/G3E BUSIF support John Madieu
2026-05-25 11:47 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 11/18] ASoC: rsnd: Add SSI reset support for RZ/G3E platform John Madieu
2026-05-25 11:48 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 12/18] ASoC: rsnd: Add ADG reset support for RZ/G3E John Madieu
2026-05-25 11:49 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 13/18] ASoC: rsnd: adg: Add per-SSI ADG and SSIF supply clock management John Madieu
2026-05-25 12:14 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 14/18] ASoC: rsnd: adg: Look up RZ/G3E clkin under audio-clk{a,b,c,i} John Madieu
2026-05-25 11:53 ` sashiko-bot
2026-05-25 11:02 ` [PATCH v7 15/18] ASoC: rsnd: src: Acquire shared SCU clocks for RZ/G3E John Madieu
2026-05-25 11:02 ` [PATCH v7 16/18] ASoC: rsnd: src: Add SRC reset support " John Madieu
2026-05-25 11:02 ` [PATCH v7 17/18] ASoC: rsnd: Support unprefixed DT node names " John Madieu
2026-05-25 11:02 ` [PATCH v7 18/18] ASoC: rsnd: Add system suspend/resume support John Madieu
2026-05-25 12:23 ` sashiko-bot [this message]
2026-05-25 22:45 ` [PATCH v7 00/18] ASoC: rsnd: Add RZ/G3E audio driver support Kuninori Morimoto
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=20260525122301.206D01F00A3A@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=john.madieu.xa@bp.renesas.com \
--cc=robh@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
--cc=wsa+renesas@sang-engineering.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