All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vinod Koul <vinod.koul@intel.com>
To: Yong Zhi <yong.zhi@intel.com>
Cc: alsa-devel@alsa-project.org, yang.a.fang@intel.com,
	marc.herbert@intel.com, benzh@chromium.org, broonie@kernel.org,
	sathya.prakash.m.r@intel.com, jeeja.kp@intel.com,
	vedang.patel@intel.com
Subject: Re: [PATCH 1/2] ASoC: Intel: Skylake: Add channel constraints for refcap
Date: Thu, 19 May 2016 09:09:49 +0530	[thread overview]
Message-ID: <20160519033948.GV23734@localhost> (raw)
In-Reply-To: <1463503385-4535-1-git-send-email-yong.zhi@intel.com>

On Tue, May 17, 2016 at 09:43:04AM -0700, Yong Zhi wrote:
> Add constraint for ref DMIC to match with the
> topology firmware config.
> 
> Signed-off-by: Yong Zhi <yong.zhi@intel.com>

Both:

Acked-by: Vinod Koul <vinod.koul@intel.com>

> ---
>  sound/soc/intel/boards/skl_nau88l25_max98357a.c | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> diff --git a/sound/soc/intel/boards/skl_nau88l25_max98357a.c b/sound/soc/intel/boards/skl_nau88l25_max98357a.c
> index 7cc7251..463f0e5 100644
> --- a/sound/soc/intel/boards/skl_nau88l25_max98357a.c
> +++ b/sound/soc/intel/boards/skl_nau88l25_max98357a.c
> @@ -339,8 +339,22 @@ static struct snd_pcm_hw_constraint_list constraints_16000 = {
>  	.list  = rates_16000,
>  };
>  
> +static const unsigned int ch_mono[] = {
> +	1,
> +};
> +
> +static const struct snd_pcm_hw_constraint_list constraints_refcap = {
> +	.count = ARRAY_SIZE(ch_mono),
> +	.list  = ch_mono,
> +};
> +
>  static int skylake_refcap_startup(struct snd_pcm_substream *substream)
>  {
> +	substream->runtime->hw.channels_max = 1;
> +	snd_pcm_hw_constraint_list(substream->runtime, 0,
> +					SNDRV_PCM_HW_PARAM_CHANNELS,
> +					&constraints_refcap);
> +
>  	return snd_pcm_hw_constraint_list(substream->runtime, 0,
>  				SNDRV_PCM_HW_PARAM_RATE,
>  				&constraints_16000);
> -- 
> 1.9.1
> 

-- 
~Vinod

      parent reply	other threads:[~2016-05-19  3:33 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-17 16:43 [PATCH 1/2] ASoC: Intel: Skylake: Add channel constraints for refcap Yong Zhi
2016-05-17 16:43 ` [PATCH 2/2] ASoC: Intel: Skylake: Use refcap device for mono recording Yong Zhi
2016-05-19  3:39 ` Vinod Koul [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=20160519033948.GV23734@localhost \
    --to=vinod.koul@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=benzh@chromium.org \
    --cc=broonie@kernel.org \
    --cc=jeeja.kp@intel.com \
    --cc=marc.herbert@intel.com \
    --cc=sathya.prakash.m.r@intel.com \
    --cc=vedang.patel@intel.com \
    --cc=yang.a.fang@intel.com \
    --cc=yong.zhi@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.