From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH v3 4/7] ASoC: intel - add Skylake HDA platform driver Date: Wed, 29 Apr 2015 14:31:02 +0200 Message-ID: References: <1430250870-3169-1-git-send-email-vinod.koul@intel.com> <1430250870-3169-5-git-send-email-vinod.koul@intel.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx2.suse.de (cantor2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id 47B5726059D for ; Wed, 29 Apr 2015 14:31:03 +0200 (CEST) In-Reply-To: <1430250870-3169-5-git-send-email-vinod.koul@intel.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Vinod Koul Cc: alsa-devel@alsa-project.org, patches.audio@intel.com, liam.r.girdwood@linux.intel.com, broonie@kernel.org, Jeeja KP , "Subhransu S. Prusty" List-Id: alsa-devel@alsa-project.org At Wed, 29 Apr 2015 01:24:27 +0530, Vinod Koul wrote: > > +static struct snd_soc_dai_driver soc_hda_platform_dai[] = { > +{ > + .name = "System Pin", > + .ops = &hda_pcm_dai_ops, > + .playback = { > + .stream_name = "System Playback", > + .channels_min = HDA_MONO, > + .channels_max = HDA_STEREO, > + .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_8000, > + .formats = SNDRV_PCM_FMTBIT_S16_LE, > + }, > + .capture = { > + .stream_name = "System Capture", > + .channels_min = HDA_MONO, > + .channels_max = HDA_STEREO, > + .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000, > + .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE, Is it really S24_LE? It's packed in lower 3 bytes of 4 bytes format. > + }, > +}, > +{ > + .name = "Deepbuffer Pin", > + .ops = &hda_pcm_dai_ops, > + .playback = { > + .stream_name = "Deepbuffer Playback", > + .channels_min = HDA_STEREO, > + .channels_max = HDA_STEREO, > + .rates = SNDRV_PCM_RATE_48000, > + .formats = SNDRV_PCM_FMTBIT_S16_LE, > + }, > +}, > +{ > + .name = "LowLatency Pin", > + .ops = &hda_pcm_dai_ops, > + .playback = { > + .stream_name = "Low Latency Playback", > + .channels_min = HDA_STEREO, > + .channels_max = HDA_STEREO, > + .rates = SNDRV_PCM_RATE_48000, > + .formats = SNDRV_PCM_FMTBIT_S16_LE, > + }, Are there no S32_LE support at all for all dais? Takashi