Linux Sound subsystem development
 help / color / mirror / Atom feed
* [RESEND 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform
@ 2026-02-02 10:56 Chancel Liu
  2026-02-02 10:56 ` [RESEND 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX94 Chancel Liu
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Chancel Liu @ 2026-02-02 10:56 UTC (permalink / raw)
  To: lgirdwood, broonie, robh, krzk+dt, conor+dt, shengjiu.wang,
	linux-sound, devicetree, linux-kernel

Add rpmsg audio support for i.MX94 and i.MX952 platform.
Resend to correct recipient list.

Chancel Liu (2):
  ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX94
  ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX952

 .../devicetree/bindings/sound/fsl,rpmsg.yaml  | 22 ++++++++++++-------
 1 file changed, 14 insertions(+), 8 deletions(-)

--
2.50.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [RESEND 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX94
  2026-02-02 10:56 [RESEND 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform Chancel Liu
@ 2026-02-02 10:56 ` Chancel Liu
  2026-02-02 10:56 ` [RESEND 2/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX952 Chancel Liu
  2026-02-05 11:04 ` [RESEND 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Chancel Liu @ 2026-02-02 10:56 UTC (permalink / raw)
  To: lgirdwood, broonie, robh, krzk+dt, conor+dt, shengjiu.wang,
	linux-sound, devicetree, linux-kernel

Add compatible string "fsl,imx94-rpmsg-audio" for i.MX94 platform,
which is backward compatible with i.MX95. Set it to fall back to
"fsl,imx95-rpmsg-audio".

Signed-off-by: Chancel Liu <chancel.liu@nxp.com>
---
 .../devicetree/bindings/sound/fsl,rpmsg.yaml  | 21 ++++++++++++-------
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml b/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml
index 3d5d435c765b..48cd5fbeb8af 100644
--- a/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml
+++ b/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml
@@ -22,14 +22,19 @@ allOf:
 
 properties:
   compatible:
-    enum:
-      - fsl,imx7ulp-rpmsg-audio
-      - fsl,imx8mn-rpmsg-audio
-      - fsl,imx8mm-rpmsg-audio
-      - fsl,imx8mp-rpmsg-audio
-      - fsl,imx8ulp-rpmsg-audio
-      - fsl,imx93-rpmsg-audio
-      - fsl,imx95-rpmsg-audio
+    oneOf:
+      - enum:
+          - fsl,imx7ulp-rpmsg-audio
+          - fsl,imx8mn-rpmsg-audio
+          - fsl,imx8mm-rpmsg-audio
+          - fsl,imx8mp-rpmsg-audio
+          - fsl,imx8ulp-rpmsg-audio
+          - fsl,imx93-rpmsg-audio
+          - fsl,imx95-rpmsg-audio
+      - items:
+          - enum:
+              - fsl,imx94-rpmsg-audio
+          - const: fsl,imx95-rpmsg-audio
 
   clocks:
     items:
-- 
2.50.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [RESEND 2/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX952
  2026-02-02 10:56 [RESEND 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform Chancel Liu
  2026-02-02 10:56 ` [RESEND 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX94 Chancel Liu
@ 2026-02-02 10:56 ` Chancel Liu
  2026-02-05 11:04 ` [RESEND 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Chancel Liu @ 2026-02-02 10:56 UTC (permalink / raw)
  To: lgirdwood, broonie, robh, krzk+dt, conor+dt, shengjiu.wang,
	linux-sound, devicetree, linux-kernel

Add compatible string "fsl,imx952-rpmsg-audio" for i.MX952 platform,
which is backward compatible with i.MX95. Set it to fall back to
"fsl,imx95-rpmsg-audio".

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 48cd5fbeb8af..3a32f7517d0c 100644
--- a/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml
+++ b/Documentation/devicetree/bindings/sound/fsl,rpmsg.yaml
@@ -34,6 +34,7 @@ properties:
       - items:
           - enum:
               - fsl,imx94-rpmsg-audio
+              - fsl,imx952-rpmsg-audio
           - const: fsl,imx95-rpmsg-audio
 
   clocks:
-- 
2.50.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [RESEND 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform
  2026-02-02 10:56 [RESEND 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform Chancel Liu
  2026-02-02 10:56 ` [RESEND 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX94 Chancel Liu
  2026-02-02 10:56 ` [RESEND 2/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX952 Chancel Liu
@ 2026-02-05 11:04 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2026-02-05 11:04 UTC (permalink / raw)
  To: lgirdwood, robh, krzk+dt, conor+dt, shengjiu.wang, linux-sound,
	devicetree, linux-kernel, Chancel Liu

On Mon, 02 Feb 2026 19:56:20 +0900, Chancel Liu wrote:
> Add rpmsg audio support for i.MX94 and i.MX952 platform.
> Resend to correct recipient list.
> 
> Chancel Liu (2):
>   ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX94
>   ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX952
> 
> [...]

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.MX94
      commit: 19e45247288574d7875c2bfd3c9d3f4f61fd9d92
[2/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX952
      commit: e50de21fd7ce54d34a461d5f5ba6331271be57fb

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] 4+ messages in thread

end of thread, other threads:[~2026-02-05 11:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-02 10:56 [RESEND 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform Chancel Liu
2026-02-02 10:56 ` [RESEND 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX94 Chancel Liu
2026-02-02 10:56 ` [RESEND 2/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX952 Chancel Liu
2026-02-05 11:04 ` [RESEND 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox