From: "Amadeusz Sławiński" <amadeuszx.slawinski@linux.intel.com>
To: Ban Tao <fengzheng923@gmail.com>,
lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz,
tiwai@suse.com, wens@csie.org, jernej.skrabec@gmail.com,
samuel@sholland.org
Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-sunxi@lists.linux.dev
Subject: Re: [PATCH v8 1/2] ASoC: sunxi: Add Allwinner H6 Digital MIC driver
Date: Fri, 12 Aug 2022 17:20:31 +0200 [thread overview]
Message-ID: <73dceca7-5244-ffa6-6ead-d4de84584b68@linux.intel.com> (raw)
In-Reply-To: <1660229343-14133-1-git-send-email-fengzheng923@gmail.com>
On 8/11/2022 4:49 PM, Ban Tao wrote:
> The Allwinner H6 and later SoCs have an DMIC block
> which is capable of capture.
>
> Signed-off-by: Ban Tao <fengzheng923@gmail.com>
> ---
...
> +
> +#define SUN50I_DMIC_RATES (SNDRV_PCM_RATE_8000_48000)
Seeing supported rates in hw_params callback, you probably want to take
a look at SNDRV_PCM_RATE_KNOT?
> +#define SUN50I_DMIC_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE)
> +
> +static struct snd_soc_dai_driver sun50i_dmic_dai = {
> + .capture = {
> + .channels_min = 1,
> + .channels_max = 8,
> + .rates = SUN50I_DMIC_RATES,
> + .formats = SUN50I_DMIC_FORMATS,
> + .sig_bits = 21,
> + },
> + .probe = sun50i_dmic_soc_dai_probe,
> + .ops = &sun50i_dmic_dai_ops,
> + .name = "dmic",
> +};
> +
...
WARNING: multiple messages have this Message-ID (diff)
From: "Amadeusz Sławiński" <amadeuszx.slawinski@linux.intel.com>
To: Ban Tao <fengzheng923@gmail.com>,
lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz,
tiwai@suse.com, wens@csie.org, jernej.skrabec@gmail.com,
samuel@sholland.org
Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-sunxi@lists.linux.dev
Subject: Re: [PATCH v8 1/2] ASoC: sunxi: Add Allwinner H6 Digital MIC driver
Date: Fri, 12 Aug 2022 17:20:31 +0200 [thread overview]
Message-ID: <73dceca7-5244-ffa6-6ead-d4de84584b68@linux.intel.com> (raw)
In-Reply-To: <1660229343-14133-1-git-send-email-fengzheng923@gmail.com>
On 8/11/2022 4:49 PM, Ban Tao wrote:
> The Allwinner H6 and later SoCs have an DMIC block
> which is capable of capture.
>
> Signed-off-by: Ban Tao <fengzheng923@gmail.com>
> ---
...
> +
> +#define SUN50I_DMIC_RATES (SNDRV_PCM_RATE_8000_48000)
Seeing supported rates in hw_params callback, you probably want to take
a look at SNDRV_PCM_RATE_KNOT?
> +#define SUN50I_DMIC_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE)
> +
> +static struct snd_soc_dai_driver sun50i_dmic_dai = {
> + .capture = {
> + .channels_min = 1,
> + .channels_max = 8,
> + .rates = SUN50I_DMIC_RATES,
> + .formats = SUN50I_DMIC_FORMATS,
> + .sig_bits = 21,
> + },
> + .probe = sun50i_dmic_soc_dai_probe,
> + .ops = &sun50i_dmic_dai_ops,
> + .name = "dmic",
> +};
> +
...
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2022-08-12 15:20 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-11 14:49 [PATCH v8 1/2] ASoC: sunxi: Add Allwinner H6 Digital MIC driver Ban Tao
2022-08-11 14:49 ` Ban Tao
2022-08-11 14:49 ` Ban Tao
2022-08-12 15:20 ` Amadeusz Sławiński [this message]
2022-08-12 15:20 ` Amadeusz Sławiński
2022-08-23 15:05 ` 班涛
2022-08-20 6:57 ` Samuel Holland
2022-08-20 6:57 ` Samuel Holland
2022-08-20 6:57 ` Samuel Holland
2022-08-23 15:08 ` 班涛
2022-08-26 3:35 ` Samuel Holland
2022-08-26 3:35 ` Samuel Holland
2022-08-26 3:35 ` Samuel Holland
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=73dceca7-5244-ffa6-6ead-d4de84584b68@linux.intel.com \
--to=amadeuszx.slawinski@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=fengzheng923@gmail.com \
--cc=jernej.skrabec@gmail.com \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=perex@perex.cz \
--cc=samuel@sholland.org \
--cc=tiwai@suse.com \
--cc=wens@csie.org \
/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.