From: Frank Li <Frank.li@oss.nxp.com>
To: shengjiu.wang@oss.nxp.com
Cc: lgirdwood@gmail.com, broonie@kernel.org, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org, Frank.Li@nxp.com,
s.hauer@pengutronix.de, kernel@pengutronix.de,
festevam@gmail.com, shawnguo@kernel.org,
linux-sound@vger.kernel.org, devicetree@vger.kernel.org,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, shengjiu.wang@gmail.com,
Xiubo.Lee@gmail.com, nicoleotsuka@gmail.com, perex@perex.cz,
tiwai@suse.com, linuxppc-dev@lists.ozlabs.org,
Shengjiu Wang <shengjiu.wang@nxp.com>
Subject: Re: [RESEND PATCH v5 4/5] ASoC: fsl_asrc: expose individual DAIs per conversion path
Date: Wed, 23 Sep 2026 10:09:41 -0500 [thread overview]
Message-ID: <arPrtTnF3XBxYcAf@SMW015318> (raw)
In-Reply-To: <20260922033428.1690822-5-shengjiu.wang@oss.nxp.com>
On Tue, Sep 22, 2026 at 11:34:27AM +0800, shengjiu.wang@oss.nxp.com wrote:
> From: Shengjiu Wang <shengjiu.wang@nxp.com>
>
> The i.MX ASRC hardware supports three independent conversion pairs
> (A, B, C). The driver previously registered a single DAI with generic
> stream names "ASRC-Playback" and "ASRC-Capture", which prevents
> multiple independent conversion paths from being used simultaneously.
>
> Replace the single fsl_asrc_dai instance with an array of three DAI
> drivers to allow up to three independent conversion paths to be active
> at the same time:
>
> asrc-0 -- ASRC-Playback / ASRC-Capture (backward compatible)
> asrc-1 -- ASRC1-Playback / ASRC1-Capture
> asrc-2 -- ASRC2-Playback / ASRC2-Capture
>
> asrc-0 retains the original generic stream names to preserve backward
> compatibility with existing machine drivers and board configurations.
> Each DAI retains the same channel, rate and format capabilities as the
> original. Update the devm_snd_soc_register_component() call to register
> all three DAIs.
>
> Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
> ---
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> sound/soc/fsl/fsl_asrc.c | 89 +++++++++++++++++++++++++++++++---------
> 1 file changed, 69 insertions(+), 20 deletions(-)
>
> diff --git a/sound/soc/fsl/fsl_asrc.c b/sound/soc/fsl/fsl_asrc.c
> index 6007786aca66..56604fa1613a 100644
> --- a/sound/soc/fsl/fsl_asrc.c
> +++ b/sound/soc/fsl/fsl_asrc.c
> @@ -792,27 +792,76 @@ static const struct snd_soc_dai_ops fsl_asrc_dai_ops = {
> SNDRV_PCM_FMTBIT_S16_LE | \
> SNDRV_PCM_FMTBIT_S24_3LE)
>
> -static struct snd_soc_dai_driver fsl_asrc_dai = {
> - .playback = {
> - .stream_name = "ASRC-Playback",
> - .channels_min = 1,
> - .channels_max = 10,
> - .rate_min = 5512,
> - .rate_max = 192000,
> - .rates = SNDRV_PCM_RATE_KNOT,
> - .formats = FSL_ASRC_FORMATS |
> - SNDRV_PCM_FMTBIT_S8,
> +static struct snd_soc_dai_driver fsl_asrc_dai[] = {
> + {
> + .name = "asrc-0",
> + .playback = {
> + .stream_name = "ASRC-Playback",
> + .channels_min = 1,
> + .channels_max = 10,
> + .rate_min = 5512,
> + .rate_max = 192000,
> + .rates = SNDRV_PCM_RATE_KNOT,
> + .formats = FSL_ASRC_FORMATS |
> + SNDRV_PCM_FMTBIT_S8,
> + },
> + .capture = {
> + .stream_name = "ASRC-Capture",
> + .channels_min = 1,
> + .channels_max = 10,
> + .rate_min = 5512,
> + .rate_max = 192000,
> + .rates = SNDRV_PCM_RATE_KNOT,
> + .formats = FSL_ASRC_FORMATS,
> + },
> + .ops = &fsl_asrc_dai_ops,
> + },
> + {
> + .name = "asrc-1",
> + .playback = {
> + .stream_name = "ASRC1-Playback",
> + .channels_min = 1,
> + .channels_max = 10,
> + .rate_min = 5512,
> + .rate_max = 192000,
> + .rates = SNDRV_PCM_RATE_KNOT,
> + .formats = FSL_ASRC_FORMATS |
> + SNDRV_PCM_FMTBIT_S8,
> + },
> + .capture = {
> + .stream_name = "ASRC1-Capture",
> + .channels_min = 1,
> + .channels_max = 10,
> + .rate_min = 5512,
> + .rate_max = 192000,
> + .rates = SNDRV_PCM_RATE_KNOT,
> + .formats = FSL_ASRC_FORMATS,
> + },
> + .ops = &fsl_asrc_dai_ops,
> },
> - .capture = {
> - .stream_name = "ASRC-Capture",
> - .channels_min = 1,
> - .channels_max = 10,
> - .rate_min = 5512,
> - .rate_max = 192000,
> - .rates = SNDRV_PCM_RATE_KNOT,
> - .formats = FSL_ASRC_FORMATS,
> + {
> + .name = "asrc-2",
> + .playback = {
> + .stream_name = "ASRC2-Playback",
> + .channels_min = 1,
> + .channels_max = 10,
> + .rate_min = 5512,
> + .rate_max = 192000,
> + .rates = SNDRV_PCM_RATE_KNOT,
> + .formats = FSL_ASRC_FORMATS |
> + SNDRV_PCM_FMTBIT_S8,
> + },
> + .capture = {
> + .stream_name = "ASRC2-Capture",
> + .channels_min = 1,
> + .channels_max = 10,
> + .rate_min = 5512,
> + .rate_max = 192000,
> + .rates = SNDRV_PCM_RATE_KNOT,
> + .formats = FSL_ASRC_FORMATS,
> + },
> + .ops = &fsl_asrc_dai_ops,
> },
> - .ops = &fsl_asrc_dai_ops,
> };
>
> static bool fsl_asrc_readable_reg(struct device *dev, unsigned int reg)
> @@ -1393,7 +1442,7 @@ static int fsl_asrc_probe(struct platform_device *pdev)
> goto err_pm_get_sync;
>
> ret = devm_snd_soc_register_component(&pdev->dev, &fsl_asrc_component,
> - &fsl_asrc_dai, 1);
> + fsl_asrc_dai, ARRAY_SIZE(fsl_asrc_dai));
> if (ret) {
> dev_err(&pdev->dev, "failed to register ASoC DAI\n");
> goto err_pm_get_sync;
> --
> 2.34.1
>
>
next prev parent reply other threads:[~2026-09-23 15:09 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-22 3:34 [RESEND PATCH v5 0/5] ASoC: fsl_asrc/fsl_easrc: expose per-pair/context DAIs and fix DMA race shengjiu.wang
2026-09-22 3:34 ` [RESEND PATCH v5 1/5] ASoC: dt-bindings: fsl,imx-asrc: update port binding to support multiple paths shengjiu.wang
2026-09-23 15:08 ` Frank Li
2026-09-22 3:34 ` [RESEND PATCH v5 2/5] ASoC: dt-bindings: fsl,easrc: add ports binding for multiple conversion paths shengjiu.wang
2026-09-22 3:34 ` [RESEND PATCH v5 3/5] ASoC: fsl_asrc/fsl_easrc: move DMA params into pair/context struct shengjiu.wang
2026-09-23 15:32 ` Daniel Baluta
2026-09-22 3:34 ` [RESEND PATCH v5 4/5] ASoC: fsl_asrc: expose individual DAIs per conversion path shengjiu.wang
2026-09-22 6:01 ` Chancel Liu
2026-09-23 15:09 ` Frank Li [this message]
2026-09-22 3:34 ` [RESEND PATCH v5 5/5] ASoC: fsl_easrc: " shengjiu.wang
2026-09-22 6:02 ` Chancel Liu
2026-09-23 15:10 ` Frank Li
2026-09-23 15:25 ` Daniel Baluta
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=arPrtTnF3XBxYcAf@SMW015318 \
--to=frank.li@oss.nxp.com \
--cc=Frank.Li@nxp.com \
--cc=Xiubo.Lee@gmail.com \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=nicoleotsuka@gmail.com \
--cc=perex@perex.cz \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=shengjiu.wang@gmail.com \
--cc=shengjiu.wang@nxp.com \
--cc=shengjiu.wang@oss.nxp.com \
--cc=tiwai@suse.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®