* [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95
@ 2024-06-26 7:12 Chancel Liu
2024-06-26 7:12 ` [PATCH 2/2] ASoC: fsl_rpmsg: Add support for i.MX95 platform Chancel Liu
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Chancel Liu @ 2024-06-26 7:12 UTC (permalink / raw)
To: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt, conor+dt,
shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai,
linux-sound, alsa-devel, linux-kernel, linuxppc-dev, devicetree
Cc: Chancel Liu
Add compatible string for i.MX95 platform which supports audio
function through rpmsg channel between Cortex-A and Cortex-M core.
Signed-off-by: Chancel Liu <chancel.liu@nxp.com>
---
Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml b/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml
index 188f38baddec..3d5d435c765b 100644
--- a/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml
+++ b/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml
@@ -29,6 +29,7 @@ properties:
- fsl,imx8mp-rpmsg-audio
- fsl,imx8ulp-rpmsg-audio
- fsl,imx93-rpmsg-audio
+ - fsl,imx95-rpmsg-audio
clocks:
items:
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/2] ASoC: fsl_rpmsg: Add support for i.MX95 platform 2024-06-26 7:12 [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 Chancel Liu @ 2024-06-26 7:12 ` Chancel Liu 2024-07-01 2:38 ` Shengjiu Wang 2024-06-28 21:47 ` [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 Rob Herring (Arm) 2024-07-01 15:14 ` Mark Brown 2 siblings, 1 reply; 5+ messages in thread From: Chancel Liu @ 2024-06-26 7:12 UTC (permalink / raw) To: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt, conor+dt, shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai, linux-sound, alsa-devel, linux-kernel, linuxppc-dev, devicetree Cc: Chancel Liu Add compatible string and specific soc data to support rpmsg sound card on i.MX95 platform. Signed-off-by: Chancel Liu <chancel.liu@nxp.com> --- sound/soc/fsl/fsl_rpmsg.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sound/soc/fsl/fsl_rpmsg.c b/sound/soc/fsl/fsl_rpmsg.c index bc41a0666856..467d6bc9f956 100644 --- a/sound/soc/fsl/fsl_rpmsg.c +++ b/sound/soc/fsl/fsl_rpmsg.c @@ -175,6 +175,14 @@ static const struct fsl_rpmsg_soc_data imx93_data = { SNDRV_PCM_FMTBIT_S32_LE, }; +static const struct fsl_rpmsg_soc_data imx95_data = { + .rates = SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_32000 | + SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 | + SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000, + .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE | + SNDRV_PCM_FMTBIT_S32_LE, +}; + static const struct of_device_id fsl_rpmsg_ids[] = { { .compatible = "fsl,imx7ulp-rpmsg-audio", .data = &imx7ulp_data}, { .compatible = "fsl,imx8mm-rpmsg-audio", .data = &imx8mm_data}, @@ -182,6 +190,7 @@ static const struct of_device_id fsl_rpmsg_ids[] = { { .compatible = "fsl,imx8mp-rpmsg-audio", .data = &imx8mp_data}, { .compatible = "fsl,imx8ulp-rpmsg-audio", .data = &imx7ulp_data}, { .compatible = "fsl,imx93-rpmsg-audio", .data = &imx93_data}, + { .compatible = "fsl,imx95-rpmsg-audio", .data = &imx95_data}, { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, fsl_rpmsg_ids); -- 2.43.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] ASoC: fsl_rpmsg: Add support for i.MX95 platform 2024-06-26 7:12 ` [PATCH 2/2] ASoC: fsl_rpmsg: Add support for i.MX95 platform Chancel Liu @ 2024-07-01 2:38 ` Shengjiu Wang 0 siblings, 0 replies; 5+ messages in thread From: Shengjiu Wang @ 2024-07-01 2:38 UTC (permalink / raw) To: Chancel Liu Cc: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt, conor+dt, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai, linux-sound, alsa-devel, linux-kernel, linuxppc-dev, devicetree On Wed, Jun 26, 2024 at 3:12 PM Chancel Liu <chancel.liu@nxp.com> wrote: > > Add compatible string and specific soc data to support rpmsg sound card > on i.MX95 platform. > > Signed-off-by: Chancel Liu <chancel.liu@nxp.com> Acked-by: Shengjiu Wang <shengjiu.wang@gmail.com> Best regards Shengjiu Wang > --- > sound/soc/fsl/fsl_rpmsg.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/sound/soc/fsl/fsl_rpmsg.c b/sound/soc/fsl/fsl_rpmsg.c > index bc41a0666856..467d6bc9f956 100644 > --- a/sound/soc/fsl/fsl_rpmsg.c > +++ b/sound/soc/fsl/fsl_rpmsg.c > @@ -175,6 +175,14 @@ static const struct fsl_rpmsg_soc_data imx93_data = { > SNDRV_PCM_FMTBIT_S32_LE, > }; > > +static const struct fsl_rpmsg_soc_data imx95_data = { > + .rates = SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_32000 | > + SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 | > + SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000, > + .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE | > + SNDRV_PCM_FMTBIT_S32_LE, > +}; > + > static const struct of_device_id fsl_rpmsg_ids[] = { > { .compatible = "fsl,imx7ulp-rpmsg-audio", .data = &imx7ulp_data}, > { .compatible = "fsl,imx8mm-rpmsg-audio", .data = &imx8mm_data}, > @@ -182,6 +190,7 @@ static const struct of_device_id fsl_rpmsg_ids[] = { > { .compatible = "fsl,imx8mp-rpmsg-audio", .data = &imx8mp_data}, > { .compatible = "fsl,imx8ulp-rpmsg-audio", .data = &imx7ulp_data}, > { .compatible = "fsl,imx93-rpmsg-audio", .data = &imx93_data}, > + { .compatible = "fsl,imx95-rpmsg-audio", .data = &imx95_data}, > { /* sentinel */ } > }; > MODULE_DEVICE_TABLE(of, fsl_rpmsg_ids); > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 2024-06-26 7:12 [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 Chancel Liu 2024-06-26 7:12 ` [PATCH 2/2] ASoC: fsl_rpmsg: Add support for i.MX95 platform Chancel Liu @ 2024-06-28 21:47 ` Rob Herring (Arm) 2024-07-01 15:14 ` Mark Brown 2 siblings, 0 replies; 5+ messages in thread From: Rob Herring (Arm) @ 2024-06-28 21:47 UTC (permalink / raw) To: Chancel Liu Cc: krzysztof.kozlowski+dt, alsa-devel, broonie, shengjiu.wang, festevam, tiwai, nicoleotsuka, Xiubo.Lee, linux-sound, linuxppc-dev, robh+dt, lgirdwood, perex, devicetree, linux-kernel, conor+dt On Wed, 26 Jun 2024 16:12:01 +0900, Chancel Liu wrote: > Add compatible string for i.MX95 platform which supports audio > function through rpmsg channel between Cortex-A and Cortex-M core. > > Signed-off-by: Chancel Liu <chancel.liu@nxp.com> > --- > Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml | 1 + > 1 file changed, 1 insertion(+) > Acked-by: Rob Herring (Arm) <robh@kernel.org> ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 2024-06-26 7:12 [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 Chancel Liu 2024-06-26 7:12 ` [PATCH 2/2] ASoC: fsl_rpmsg: Add support for i.MX95 platform Chancel Liu 2024-06-28 21:47 ` [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 Rob Herring (Arm) @ 2024-07-01 15:14 ` Mark Brown 2 siblings, 0 replies; 5+ messages in thread From: Mark Brown @ 2024-07-01 15:14 UTC (permalink / raw) To: lgirdwood, robh+dt, krzysztof.kozlowski+dt, conor+dt, shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai, linux-sound, alsa-devel, linux-kernel, linuxppc-dev, devicetree, Chancel Liu On Wed, 26 Jun 2024 16:12:01 +0900, Chancel Liu wrote: > Add compatible string for i.MX95 platform which supports audio > function through rpmsg channel between Cortex-A and Cortex-M core. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 commit: 8e5c11963c5ca4af90b36147cabb4835e59990aa [2/2] ASoC: fsl_rpmsg: Add support for i.MX95 platform commit: 19dec6650e3fd02de8752c4e0ab1c4894ce7fcb7 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-07-01 15:14 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-26 7:12 [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 Chancel Liu 2024-06-26 7:12 ` [PATCH 2/2] ASoC: fsl_rpmsg: Add support for i.MX95 platform Chancel Liu 2024-07-01 2:38 ` Shengjiu Wang 2024-06-28 21:47 ` [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX95 Rob Herring (Arm) 2024-07-01 15:14 ` Mark Brown
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).