From: sashiko-bot@kernel.org
To: "John Madieu" <john.madieu.xa@bp.renesas.com>
Cc: devicetree@vger.kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, robh@kernel.org,
wsa+renesas@sang-engineering.com
Subject: Re: [PATCH v6 03/16] ASoC: rsnd: Add reset controller support to rsnd_mod
Date: Thu, 14 May 2026 00:07:20 +0000 [thread overview]
Message-ID: <20260514000720.8EE14C19425@smtp.kernel.org> (raw)
In-Reply-To: <20260512182631.3842065-4-john.madieu.xa@bp.renesas.com>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [High] Incorrect hardware teardown sequence in `rsnd_mod_quit()`.
- [Low] Unused `<linux/delay.h>` header inclusion.
--
commit 15ebc4bc5eee087115d0971e0b8a5f59090c9c82
Author: John Madieu <john.madieu.xa@bp.renesas.com>
ASoC: rsnd: Add reset controller support to rsnd_mod
This commit adds reset controller support to the Renesas sound (rsnd) module.
It updates rsnd_mod_init to accept a reset control parameter, deasserts it
during initialization, and mirrors this with an assert in rsnd_mod_quit.
> diff --git a/sound/soc/renesas/rcar/core.c b/sound/soc/renesas/rcar/core.c
> index 2dc078358612d..c3c139a6fc60a 100644
> --- a/sound/soc/renesas/rcar/core.c
> +++ b/sound/soc/renesas/rcar/core.c
> @@ -90,6 +90,7 @@
> *
> */
>
> +#include <linux/delay.h>
This isn't a bug, but is the inclusion of linux/delay.h necessary?
I don't see any delay functions used in the updated code. Was a hardware
stabilization delay intended after the reset_control_deassert() call, or
can this inclusion be safely removed?
[ ... ]
> @@ -217,6 +229,8 @@ void rsnd_mod_quit(struct rsnd_mod *mod)
> {
> clk_unprepare(mod->clk);
> mod->clk = NULL;
> + reset_control_assert(mod->rstc);
Does the hardware require the clock to be running to latch the reset state
change?
In rsnd_mod_init(), the initialization sequence enables the clock before
deasserting the reset. This suggests the IP block needs an active clock
to propagate the reset.
However, in rsnd_mod_quit(), clk_unprepare() is called before
reset_control_assert(). Since the clock is unprepared and not enabled
when the reset is asserted, can the hardware fail to latch the reset state,
or potentially hang the bus when the reset controller accesses a
powered-down domain?
Should the teardown sequence mirror the initialization by temporarily
enabling the clock, asserting the reset, and then disabling and
unpreparing the clock?
Also, a later patch in the series (ASoC: rsnd: Add system suspend/resume
support) appears to introduce rsnd_suspend_clk_reset() which repeats this
exact sequence of an unprepared clock followed by reset assertion.
> + mod->rstc = NULL;
> }
>
> void rsnd_mod_interrupt(struct rsnd_mod *mod,
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260512182631.3842065-1-john.madieu.xa@bp.renesas.com?part=3
next prev parent reply other threads:[~2026-05-14 0:07 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-12 18:26 [PATCH v6 00/16] ASoC: rsnd: Add RZ/G3E audio driver support John Madieu
2026-05-12 18:26 ` [PATCH v6 01/16] ASoC: dt-bindings: sound: Add DT binding for RZ/G3E sound John Madieu
2026-05-13 23:45 ` sashiko-bot
2026-05-12 18:26 ` [PATCH v6 02/16] ASoC: rsnd: Fix RSND_SOC_MASK width to single nibble John Madieu
2026-05-12 18:26 ` [PATCH v6 03/16] ASoC: rsnd: Add reset controller support to rsnd_mod John Madieu
2026-05-14 0:07 ` sashiko-bot [this message]
2026-05-12 18:26 ` [PATCH v6 04/16] ASoC: rsnd: Support hyphen or dot in indexed clock and reset names John Madieu
2026-05-14 0:45 ` Mark Brown
2026-05-12 18:26 ` [PATCH v6 05/16] ASoC: rsnd: Add RZ/G3E SoC probing and register map John Madieu
2026-05-14 0:51 ` sashiko-bot
2026-05-12 18:26 ` [PATCH v6 06/16] ASoC: rsnd: Add audmacpp clock and reset support for RZ/G3E John Madieu
2026-05-14 1:11 ` sashiko-bot
2026-05-12 18:26 ` [PATCH v6 07/16] ASoC: rsnd: Refactor DMA address tables with named structs John Madieu
2026-05-12 18:26 ` [PATCH v6 08/16] ASoC: rsnd: Add RZ/G3E DMA address calculation support John Madieu
2026-05-14 2:13 ` sashiko-bot
2026-05-12 18:26 ` [PATCH v6 09/16] ASoC: rsnd: ssui: Add RZ/G3E SSIU BUSIF support John Madieu
2026-05-13 0:35 ` Kuninori Morimoto
2026-05-13 5:04 ` John Madieu
2026-05-13 23:02 ` Kuninori Morimoto
2026-05-13 9:41 ` Geert Uytterhoeven
2026-05-13 15:30 ` John Madieu
2026-05-14 2:58 ` sashiko-bot
2026-05-12 18:26 ` [PATCH v6 10/16] ASoC: rsnd: Add SSI reset support for RZ/G3E platform John Madieu
2026-05-12 18:26 ` [PATCH v6 11/16] ASoC: rsnd: Add ADG reset support for RZ/G3E John Madieu
2026-05-12 18:26 ` [PATCH v6 12/16] ASoC: rsnd: adg: Add per-SSI ADG and SSIF supply clock management John Madieu
2026-05-12 18:26 ` [PATCH v6 13/16] ASoC: rsnd: adg: Look up RZ/G3E clkin under audio-clk{a,b,c,i} John Madieu
2026-05-12 18:26 ` [PATCH v6 14/16] ASoC: rsnd: src: Add SRC reset and clock support for RZ/G3E John Madieu
2026-05-13 0:44 ` Kuninori Morimoto
2026-05-13 5:17 ` John Madieu
2026-05-12 18:26 ` [PATCH v6 15/16] ASoC: rsnd: Support unprefixed DT node names " John Madieu
2026-05-12 18:26 ` [PATCH v6 16/16] ASoC: rsnd: Add system suspend/resume support John Madieu
2026-05-14 0:46 ` Mark Brown
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=20260514000720.8EE14C19425@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=krzk+dt@kernel.org \
--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