Linux Sound subsystem development
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: wangdich9700@163.com
Cc: bo.liu@senarytech.com, perex@perex.cz, tiwai@suse.com,
	linux-sound@vger.kernel.org, linux-kernel@vger.kernel.org,
	wangdicheng <wangdicheng@kylinos.cn>
Subject: Re: [PATCH 2/4] ALSA: hda/senary: Implement proper resume callback
Date: Thu, 05 Mar 2026 12:35:14 +0100	[thread overview]
Message-ID: <87eclyy0el.wl-tiwai@suse.de> (raw)
In-Reply-To: <20260305032728.235630-1-wangdich9700@163.com>

On Thu, 05 Mar 2026 04:27:28 +0100,
wangdich9700@163.com wrote:
> 
> From: wangdicheng <wangdicheng@kylinos.cn>
> 
> The SN6186 codec requires register re-synchronization after resume from
> S3 state.

When no resume callback is set, regcache_sync() is called via
snd_hdac_regmap_sync(), but after snd_hda_codec_init().

So this looks superfluous to me.  Please check whether something
really missing or not.


thanks,

Takashi


> 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 11:35 UTC|newest]

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

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=87eclyy0el.wl-tiwai@suse.de \
    --to=tiwai@suse.de \
    --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=wangdich9700@163.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