From: Takashi Iwai <tiwai@suse.de>
To: Kai-Heng Feng <kai.heng.feng@canonical.com>
Cc: pierre-louis.bossart@linux.intel.com, lgirdwood@gmail.com,
ranjani.sridharan@linux.intel.com, kai.vehmanen@linux.intel.com,
daniel.baluta@nxp.com, Mark Brown <broonie@kernel.org>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>,
Rander Wang <rander.wang@intel.com>,
Payal Kshirsagar <payalskshirsagar1234@gmail.com>,
Keyon Jie <yang.jie@linux.intel.com>,
Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
Marcin Rajwa <marcin.rajwa@linux.intel.com>,
Cezary Rojewski <cezary.rojewski@intel.com>,
Fred Oh <fred.oh@linux.intel.com>,
Bard Liao <yung-chuan.liao@linux.intel.com>,
Amery Song <chao.song@intel.com>,
sound-open-firmware@alsa-project.org (moderated list:SOUND -
SOUND OPEN FIRMWARE (SOF) DRIVERS),
alsa-devel@alsa-project.org (moderated list:SOUND - SOC LAYER /
DYNAMIC AUDIO POWER MANAGEM...),
linux-kernel@vger.kernel.org (open list)
Subject: Re: [PATCH 1/2] ASoC: SOF: Intel: hda: Modify existing helper to disable WAKEEN
Date: Thu, 31 Dec 2020 11:52:14 +0100 [thread overview]
Message-ID: <s5hsg7mb63l.wl-tiwai@suse.de> (raw)
In-Reply-To: <20201229133817.190160-1-kai.heng.feng@canonical.com>
On Tue, 29 Dec 2020 14:38:14 +0100,
Kai-Heng Feng wrote:
>
> Modify hda_codec_jack_wake_enable() to also support disable WAKEEN.
> This is a preparation for next patch.
>
> No functional change intended.
Maybe it's better to mention that this patch moves the WAKEEN
disablement call out of hda_codec_jack_check() into
hda_codec_jack_wake_enable(), too.
thanks,
Takashi
>
> Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com>
> ---
> sound/soc/sof/intel/hda-codec.c | 16 +++++++---------
> sound/soc/sof/intel/hda-dsp.c | 6 ++++--
> sound/soc/sof/intel/hda.h | 2 +-
> 3 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/sound/soc/sof/intel/hda-codec.c b/sound/soc/sof/intel/hda-codec.c
> index 6875fa570c2c..bc9ac4abdab5 100644
> --- a/sound/soc/sof/intel/hda-codec.c
> +++ b/sound/soc/sof/intel/hda-codec.c
> @@ -63,16 +63,18 @@ static int hda_codec_load_module(struct hda_codec *codec)
> }
>
> /* enable controller wake up event for all codecs with jack connectors */
> -void hda_codec_jack_wake_enable(struct snd_sof_dev *sdev)
> +void hda_codec_jack_wake_enable(struct snd_sof_dev *sdev, bool enable)
> {
> struct hda_bus *hbus = sof_to_hbus(sdev);
> struct hdac_bus *bus = sof_to_bus(sdev);
> struct hda_codec *codec;
> unsigned int mask = 0;
>
> - list_for_each_codec(codec, hbus)
> - if (codec->jacktbl.used)
> - mask |= BIT(codec->core.addr);
> + if (enable) {
> + list_for_each_codec(codec, hbus)
> + if (codec->jacktbl.used)
> + mask |= BIT(codec->core.addr);
> + }
>
> snd_hdac_chip_updatew(bus, WAKEEN, STATESTS_INT_MASK, mask);
> }
> @@ -81,12 +83,8 @@ void hda_codec_jack_wake_enable(struct snd_sof_dev *sdev)
> void hda_codec_jack_check(struct snd_sof_dev *sdev)
> {
> struct hda_bus *hbus = sof_to_hbus(sdev);
> - struct hdac_bus *bus = sof_to_bus(sdev);
> struct hda_codec *codec;
>
> - /* disable controller Wake Up event*/
> - snd_hdac_chip_updatew(bus, WAKEEN, STATESTS_INT_MASK, 0);
> -
> list_for_each_codec(codec, hbus)
> /*
> * Wake up all jack-detecting codecs regardless whether an event
> @@ -97,7 +95,7 @@ void hda_codec_jack_check(struct snd_sof_dev *sdev)
> codec->jackpoll_interval);
> }
> #else
> -void hda_codec_jack_wake_enable(struct snd_sof_dev *sdev) {}
> +void hda_codec_jack_wake_enable(struct snd_sof_dev *sdev, bool enable) {}
> void hda_codec_jack_check(struct snd_sof_dev *sdev) {}
> #endif /* CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC */
> EXPORT_SYMBOL_NS(hda_codec_jack_wake_enable, SND_SOC_SOF_HDA_AUDIO_CODEC);
> diff --git a/sound/soc/sof/intel/hda-dsp.c b/sound/soc/sof/intel/hda-dsp.c
> index 2b001151fe37..7d00107cf3b2 100644
> --- a/sound/soc/sof/intel/hda-dsp.c
> +++ b/sound/soc/sof/intel/hda-dsp.c
> @@ -617,7 +617,7 @@ static int hda_suspend(struct snd_sof_dev *sdev, bool runtime_suspend)
>
> #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA)
> if (runtime_suspend)
> - hda_codec_jack_wake_enable(sdev);
> + hda_codec_jack_wake_enable(sdev, true);
>
> /* power down all hda link */
> snd_hdac_ext_bus_link_power_down_all(bus);
> @@ -683,8 +683,10 @@ static int hda_resume(struct snd_sof_dev *sdev, bool runtime_resume)
>
> #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA)
> /* check jack status */
> - if (runtime_resume)
> + if (runtime_resume) {
> + hda_codec_jack_wake_enable(sdev, false);
> hda_codec_jack_check(sdev);
> + }
>
> /* turn off the links that were off before suspend */
> list_for_each_entry(hlink, &bus->hlink_list, list) {
> diff --git a/sound/soc/sof/intel/hda.h b/sound/soc/sof/intel/hda.h
> index 9ec8ae0fd649..a3b6f3e9121c 100644
> --- a/sound/soc/sof/intel/hda.h
> +++ b/sound/soc/sof/intel/hda.h
> @@ -650,7 +650,7 @@ void sof_hda_bus_init(struct hdac_bus *bus, struct device *dev);
> */
> void hda_codec_probe_bus(struct snd_sof_dev *sdev,
> bool hda_codec_use_common_hdmi);
> -void hda_codec_jack_wake_enable(struct snd_sof_dev *sdev);
> +void hda_codec_jack_wake_enable(struct snd_sof_dev *sdev, bool enable);
> void hda_codec_jack_check(struct snd_sof_dev *sdev);
>
> #endif /* CONFIG_SND_SOC_SOF_HDA */
> --
> 2.29.2
>
next prev parent reply other threads:[~2020-12-31 10:53 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-29 13:38 Kai-Heng Feng
2020-12-29 13:38 ` [PATCH 2/2] ASoC: SOF: Intel: hda: Avoid checking jack on system suspend Kai-Heng Feng
2020-12-31 10:55 ` Takashi Iwai
2020-12-31 18:06 ` Kai-Heng Feng
2021-01-01 8:07 ` Takashi Iwai
2021-01-04 8:15 ` Kai-Heng Feng
2020-12-31 10:52 ` Takashi Iwai [this message]
2020-12-31 18:07 ` [PATCH 1/2] ASoC: SOF: Intel: hda: Modify existing helper to disable WAKEEN Kai-Heng Feng
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=s5hsg7mb63l.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=cezary.rojewski@intel.com \
--cc=chao.song@intel.com \
--cc=daniel.baluta@nxp.com \
--cc=fred.oh@linux.intel.com \
--cc=guennadi.liakhovetski@linux.intel.com \
--cc=kai.heng.feng@canonical.com \
--cc=kai.vehmanen@linux.intel.com \
--cc=kuninori.morimoto.gx@renesas.com \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=marcin.rajwa@linux.intel.com \
--cc=payalskshirsagar1234@gmail.com \
--cc=perex@perex.cz \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=rander.wang@intel.com \
--cc=ranjani.sridharan@linux.intel.com \
--cc=sound-open-firmware@alsa-project.org \
--cc=tiwai@suse.com \
--cc=yang.jie@linux.intel.com \
--cc=yung-chuan.liao@linux.intel.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®