From: Valerio Setti <vsetti@baylibre.com>
To: Jerome Brunet <jbrunet@baylibre.com>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Neil Armstrong <neil.armstrong@linaro.org>,
Kevin Hilman <khilman@baylibre.com>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>
Cc: linux-sound@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org,
Valerio Setti <vsetti@baylibre.com>
Subject: [PATCH v3 3/7] ASoC: meson: aiu-encoder-i2s: ensure clk divider gets disabled in hw_free
Date: Tue, 22 Sep 2026 18:00:48 +0200 [thread overview]
Message-ID: <20260922-audin-v3-3-a760312c076c@baylibre.com> (raw)
In-Reply-To: <20260922-audin-v3-0-a760312c076c@baylibre.com>
A recent Sashiko review [1] on this code revealed the following problem:
If a user opens both streams so snd_soc_dai_active(dai) evaluates to 2,
and explicitly calls SNDRV_PCM_IOCTL_HW_FREE before closing them,
snd_soc_dai_active(dai) remains 2. This skips disabling the clock
divider.
When the streams are subsequently closed, the ALSA core skips invoking
hw_free again because the state was already changed to
SNDRV_PCM_STATE_OPEN. This would leave the clock divider permanently
enabled, potentially draining battery or blocking system suspend.
This commit resolves this problem by using the 'clk_enabled' field of
'struct gx_stream'. In particular when 'hw_free()' is called on a stream
the code check what is the status of the other stream and then only if
both are off the clock divider is disabled.
[1]: https://lore.kernel.org/all/20260917212019.4ECE61F00893@smtp.kernel.org/
Signed-off-by: Valerio Setti <vsetti@baylibre.com>
---
sound/soc/meson/aiu-encoder-i2s.c | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/sound/soc/meson/aiu-encoder-i2s.c b/sound/soc/meson/aiu-encoder-i2s.c
index 58dce9f08c9d..70ea39c77b32 100644
--- a/sound/soc/meson/aiu-encoder-i2s.c
+++ b/sound/soc/meson/aiu-encoder-i2s.c
@@ -219,16 +219,14 @@ static int aiu_encoder_i2s_hw_free(struct snd_pcm_substream *substream,
struct snd_soc_dai *dai)
{
struct gx_stream *ts = snd_soc_dai_get_dma_data(dai, substream);
+ struct gx_stream *other = snd_soc_dai_dma_data_get(dai, !substream->stream);
struct snd_soc_component *component = dai->component;
- /*
- * If this is the last substream being closed then disable the i2s
- * clock divider.
- */
- if (snd_soc_dai_active(dai) <= 1)
- aiu_encoder_i2s_divider_enable(component, 0);
-
if (ts->clk_enabled) {
+ /* Disable the clk divider only if also the other stream is not using it */
+ if (!other || !other->clk_enabled)
+ aiu_encoder_i2s_divider_enable(component, false);
+
clk_disable_unprepare(ts->iface->mclk);
ts->clk_enabled = false;
}
--
2.47.3
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
next prev parent reply other threads:[~2026-09-22 16:01 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-22 16:00 [PATCH v3 0/7] ASoC: meson: gx: add base support for I2S audio input Valerio Setti
2026-09-22 16:00 ` [PATCH v3 1/7] ASoC: dt-bindings: amlogic,gx-audin: add schema Valerio Setti
2026-09-22 16:00 ` [PATCH v3 2/7] ASoC: meson: build gx-formatter as a separate module Valerio Setti
2026-09-22 16:00 ` Valerio Setti [this message]
2026-09-22 16:00 ` [PATCH v3 4/7] ASoC: meson: add AUDIN driver Valerio Setti
2026-09-22 16:17 ` sashiko-bot
2026-09-22 16:00 ` [PATCH v3 5/7] ASoC: meson: aiu: add I2S Capture DAI Valerio Setti
2026-09-22 16:15 ` sashiko-bot
2026-09-22 16:00 ` [PATCH v3 6/7] ASoC: meson: gx-card: add support for audin FIFO Valerio Setti
2026-09-22 16:00 ` [PATCH v3 7/7] arm64: dts: amlogic: gx: add AUDIN node Valerio Setti
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=20260922-audin-v3-3-a760312c076c@baylibre.com \
--to=vsetti@baylibre.com \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jbrunet@baylibre.com \
--cc=khilman@baylibre.com \
--cc=krzk+dt@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=martin.blumenstingl@googlemail.com \
--cc=neil.armstrong@linaro.org \
--cc=perex@perex.cz \
--cc=robh@kernel.org \
--cc=tiwai@suse.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
all inboxes | Powered by JetHome®