public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Bard Liao <yung-chuan.liao@linux.intel.com>
Cc: alsa-devel@alsa-project.org, vkoul@kernel.org,
	vinod.koul@linaro.org, linux-kernel@vger.kernel.org,
	tiwai@suse.de, broonie@kernel.org,
	srinivas.kandagatla@linaro.org,
	pierre-louis.bossart@linux.intel.com, sanyog.r.kale@intel.com,
	bard.liao@intel.com
Subject: Re: [PATCH 2/2] ASoC: SOF: Intel: add trigger callback into sdw_callback
Date: Tue, 14 Jun 2022 09:12:21 +0200	[thread overview]
Message-ID: <Yqg01aSixhBq9d4+@kroah.com> (raw)
In-Reply-To: <20220614070817.2508-3-yung-chuan.liao@linux.intel.com>

On Tue, Jun 14, 2022 at 03:08:17PM +0800, Bard Liao wrote:
> For IPC4, we need to set pipeline state in BE DAI trigger.
> 
> Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
> Reviewed-by: Rander Wang <rander.wang@intel.com>
> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
> ---
>  sound/soc/sof/intel/hda-dai.c | 15 ++++++++++++---
>  sound/soc/sof/intel/hda.c     |  2 +-
>  sound/soc/sof/intel/hda.h     |  1 +
>  3 files changed, 14 insertions(+), 4 deletions(-)
> 
> diff --git a/sound/soc/sof/intel/hda-dai.c b/sound/soc/sof/intel/hda-dai.c
> index 228079a52c3d..6ed99fdc5793 100644
> --- a/sound/soc/sof/intel/hda-dai.c
> +++ b/sound/soc/sof/intel/hda-dai.c
> @@ -713,8 +713,7 @@ static const struct snd_soc_dai_ops ipc3_ssp_dai_ops = {
>  	.shutdown = ssp_dai_shutdown,
>  };
>  
> -static int ipc4_be_dai_trigger(struct snd_pcm_substream *substream,
> -			       int cmd, struct snd_soc_dai *dai)
> +static int ipc4_be_dai_common_trigger(struct snd_soc_dai *dai, int cmd, int stream)
>  {
>  	struct snd_sof_widget *pipe_widget;
>  	struct sof_ipc4_pipeline *pipeline;
> @@ -723,7 +722,7 @@ static int ipc4_be_dai_trigger(struct snd_pcm_substream *substream,
>  	struct snd_sof_dev *sdev;
>  	int ret;
>  
> -	w = snd_soc_dai_get_widget(dai, substream->stream);
> +	w = snd_soc_dai_get_widget(dai, stream);
>  	swidget = w->dobj.private;
>  	pipe_widget = swidget->pipe_widget;
>  	pipeline = pipe_widget->private;
> @@ -758,6 +757,12 @@ static int ipc4_be_dai_trigger(struct snd_pcm_substream *substream,
>  	return 0;
>  }
>  
> +static int ipc4_be_dai_trigger(struct snd_pcm_substream *substream,
> +			       int cmd, struct snd_soc_dai *dai)
> +{
> +	return ipc4_be_dai_common_trigger(dai, cmd, substream->stream);
> +}
> +
>  static const struct snd_soc_dai_ops ipc4_dmic_dai_ops = {
>  	.trigger = ipc4_be_dai_trigger,
>  };
> @@ -809,6 +814,10 @@ void hda_set_dai_drv_ops(struct snd_sof_dev *sdev, struct snd_sof_dsp_ops *ops)
>  		if (!hda_use_tplg_nhlt)
>  			ipc4_data->nhlt = intel_nhlt_init(sdev->dev);
>  
> +#if IS_ENABLED(CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE)
> +		sdw_callback.trigger = ipc4_be_dai_common_trigger;
> +#endif

#if should not be in .c files if at all possible.  Surely there's a
better way here...

thanks,

greg k-h

  reply	other threads:[~2022-06-14  7:12 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-14  7:08 [PATCH 0/2] ASoC/SoundWire: Intel: add sdw BE dai trigger Bard Liao
2022-06-14  7:08 ` [PATCH 1/2] soundwire: Intel: add trigger callback Bard Liao
2022-06-14  7:08 ` [PATCH 2/2] ASoC: SOF: Intel: add trigger callback into sdw_callback Bard Liao
2022-06-14  7:12   ` Greg KH [this message]
2022-06-14 14:55     ` Pierre-Louis Bossart
2022-06-14 15:14       ` Greg KH
2022-06-14 15:54         ` Pierre-Louis Bossart

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=Yqg01aSixhBq9d4+@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=bard.liao@intel.com \
    --cc=broonie@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pierre-louis.bossart@linux.intel.com \
    --cc=sanyog.r.kale@intel.com \
    --cc=srinivas.kandagatla@linaro.org \
    --cc=tiwai@suse.de \
    --cc=vinod.koul@linaro.org \
    --cc=vkoul@kernel.org \
    --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