Linux Sound subsystem development
 help / color / mirror / Atom feed
From: wangdich9700@163.com
To: bo.liu@senarytech.com, perex@perex.cz, tiwai@suse.com
Cc: linux-sound@vger.kernel.org, linux-kernel@vger.kernel.org,
	wangdicheng <wangdicheng@kylinos.cn>
Subject: [PATCH 2/4] ALSA: hda/senary: Implement proper resume callback
Date: Thu,  5 Mar 2026 11:27:28 +0800	[thread overview]
Message-ID: <20260305032728.235630-1-wangdich9700@163.com> (raw)

From: wangdicheng <wangdicheng@kylinos.cn>

The SN6186 codec requires register re-synchronization after resume from
S3 state. The current driver lacks a resume callback, which may lead to
loss of hardware state or audio malfunction after system resume.

This patch adds a resume callback that:
1. Syncs the regcache to restore register values.
2. Re-applies the vendor-specific hardware init verbs.
3. Reports jack status to update the audio path.

Signed-off-by: wangdicheng <wangdicheng@kylinos.cn>
---
 sound/hda/codecs/senarytech.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/sound/hda/codecs/senarytech.c b/sound/hda/codecs/senarytech.c
index f9a389df3a17..8ebd974817ac 100644
--- a/sound/hda/codecs/senarytech.c
+++ b/sound/hda/codecs/senarytech.c
@@ -205,6 +205,18 @@ static int senary_suspend(struct hda_codec *codec)
 	return 0;
 }
 
+static int senary_resume(struct hda_codec *codec)
+{
+	/* Re-sync registers */
+	regcache_sync(codec->core.regmap);
+
+	/* Re-run init verbs to restore hardware state */
+	senary_init_verb(codec);
+
+	snd_hda_jack_report_sync(codec);
+	return 0;
+}
+
 static int senary_probe(struct hda_codec *codec, const struct hda_device_id *id)
 {
 	struct senary_spec *spec;
@@ -286,6 +298,7 @@ static const struct hda_codec_ops senary_codec_ops = {
 	.init = senary_init,
 	.unsol_event = snd_hda_jack_unsol_event,
 	.suspend = senary_suspend,
+	.resume = senary_resume,
 	.check_power_status = snd_hda_gen_check_power_status,
 	.stream_pm = snd_hda_gen_stream_pm,
 };
-- 
2.25.1


             reply	other threads:[~2026-03-05  3:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-05  3:27 wangdich9700 [this message]
2026-03-05 11:35 ` [PATCH 2/4] ALSA: hda/senary: Implement proper resume callback Takashi Iwai

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=20260305032728.235630-1-wangdich9700@163.com \
    --to=wangdich9700@163.com \
    --cc=bo.liu@senarytech.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=perex@perex.cz \
    --cc=tiwai@suse.com \
    --cc=wangdicheng@kylinos.cn \
    /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