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

Add rpmsg audio support for i.MX94 and i.MX952 platform.

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

* [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX94
  2026-02-02 10:36 [PATCH 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform Chancel Liu
@ 2026-02-02 10:36 ` Chancel Liu
  2026-02-02 10:36 ` [PATCH 2/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX952 Chancel Liu
  1 sibling, 0 replies; 3+ messages in thread
From: Chancel Liu @ 2026-02-02 10:36 UTC (permalink / raw)
  To: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+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] 3+ messages in thread

* [PATCH 2/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX952
  2026-02-02 10:36 [PATCH 0/2] ASoC: fsl_rpmsg: Add support for i.MX94 and i.MX952 platform Chancel Liu
  2026-02-02 10:36 ` [PATCH 1/2] ASoC: dt-bindings: fsl_rpmsg: Add compatible string for i.MX94 Chancel Liu
@ 2026-02-02 10:36 ` Chancel Liu
  1 sibling, 0 replies; 3+ messages in thread
From: Chancel Liu @ 2026-02-02 10:36 UTC (permalink / raw)
  To: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+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] 3+ messages in thread

end of thread, other threads:[~2026-02-02 10:36 UTC | newest]

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

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