* [PATCH 1/2] arm64: dts: imx8mm: Add sound-dai-cells to micfil node
@ 2023-10-04 23:01 Adam Ford
2023-10-04 23:01 ` [PATCH 2/2] arm64: dts: imx8mn: " Adam Ford
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Adam Ford @ 2023-10-04 23:01 UTC (permalink / raw)
To: linux-arm-kernel
Cc: aford, Adam Ford, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Shawn Guo, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
NXP Linux Team, devicetree, linux-kernel
Per the DT bindings, the micfil node should have a sound-dai-cells
entry.
Fixes: 3bd0788c43d9 ("arm64: dts: imx8mm: Add support for micfil")
Signed-off-by: Adam Ford <aford173@gmail.com>
diff --git a/arch/arm64/boot/dts/freescale/imx8mm.dtsi b/arch/arm64/boot/dts/freescale/imx8mm.dtsi
index 236fe44f779d..738024baaa57 100644
--- a/arch/arm64/boot/dts/freescale/imx8mm.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8mm.dtsi
@@ -399,6 +399,7 @@ micfil: audio-controller@30080000 {
"pll8k", "pll11k", "clkext3";
dmas = <&sdma2 24 25 0x80000000>;
dma-names = "rx";
+ #sound-dai-cells = <0>;
status = "disabled";
};
--
2.40.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] arm64: dts: imx8mn: Add sound-dai-cells to micfil node
2023-10-04 23:01 [PATCH 1/2] arm64: dts: imx8mm: Add sound-dai-cells to micfil node Adam Ford
@ 2023-10-04 23:01 ` Adam Ford
2023-10-04 23:55 ` Fabio Estevam
2023-10-04 23:54 ` [PATCH 1/2] arm64: dts: imx8mm: " Fabio Estevam
2023-10-10 2:21 ` Shawn Guo
2 siblings, 1 reply; 5+ messages in thread
From: Adam Ford @ 2023-10-04 23:01 UTC (permalink / raw)
To: linux-arm-kernel
Cc: aford, Adam Ford, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Shawn Guo, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
NXP Linux Team, devicetree, linux-kernel
Per the DT bindings, the micfil node should have a sound-dai-cells
entry.
Fixes: cca69ef6eba5 ("arm64: dts: imx8mn: Add support for micfil")
Signed-off-by: Adam Ford <aford173@gmail.com>
diff --git a/arch/arm64/boot/dts/freescale/imx8mn.dtsi b/arch/arm64/boot/dts/freescale/imx8mn.dtsi
index aa38dd6dc9ba..1bb1d0c1bae4 100644
--- a/arch/arm64/boot/dts/freescale/imx8mn.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8mn.dtsi
@@ -371,6 +371,7 @@ micfil: audio-controller@30080000 {
"pll8k", "pll11k", "clkext3";
dmas = <&sdma2 24 25 0x80000000>;
dma-names = "rx";
+ #sound-dai-cells = <0>;
status = "disabled";
};
--
2.40.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] arm64: dts: imx8mm: Add sound-dai-cells to micfil node
2023-10-04 23:01 [PATCH 1/2] arm64: dts: imx8mm: Add sound-dai-cells to micfil node Adam Ford
2023-10-04 23:01 ` [PATCH 2/2] arm64: dts: imx8mn: " Adam Ford
@ 2023-10-04 23:54 ` Fabio Estevam
2023-10-10 2:21 ` Shawn Guo
2 siblings, 0 replies; 5+ messages in thread
From: Fabio Estevam @ 2023-10-04 23:54 UTC (permalink / raw)
To: Adam Ford
Cc: linux-arm-kernel, aford, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Shawn Guo, Sascha Hauer, Pengutronix Kernel Team,
NXP Linux Team, devicetree, linux-kernel
On Wed, Oct 4, 2023 at 8:02 PM Adam Ford <aford173@gmail.com> wrote:
>
> Per the DT bindings, the micfil node should have a sound-dai-cells
> entry.
>
> Fixes: 3bd0788c43d9 ("arm64: dts: imx8mm: Add support for micfil")
> Signed-off-by: Adam Ford <aford173@gmail.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] arm64: dts: imx8mn: Add sound-dai-cells to micfil node
2023-10-04 23:01 ` [PATCH 2/2] arm64: dts: imx8mn: " Adam Ford
@ 2023-10-04 23:55 ` Fabio Estevam
0 siblings, 0 replies; 5+ messages in thread
From: Fabio Estevam @ 2023-10-04 23:55 UTC (permalink / raw)
To: Adam Ford
Cc: linux-arm-kernel, aford, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Shawn Guo, Sascha Hauer, Pengutronix Kernel Team,
NXP Linux Team, devicetree, linux-kernel
On Wed, Oct 4, 2023 at 8:02 PM Adam Ford <aford173@gmail.com> wrote:
>
> Per the DT bindings, the micfil node should have a sound-dai-cells
> entry.
>
> Fixes: cca69ef6eba5 ("arm64: dts: imx8mn: Add support for micfil")
> Signed-off-by: Adam Ford <aford173@gmail.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] arm64: dts: imx8mm: Add sound-dai-cells to micfil node
2023-10-04 23:01 [PATCH 1/2] arm64: dts: imx8mm: Add sound-dai-cells to micfil node Adam Ford
2023-10-04 23:01 ` [PATCH 2/2] arm64: dts: imx8mn: " Adam Ford
2023-10-04 23:54 ` [PATCH 1/2] arm64: dts: imx8mm: " Fabio Estevam
@ 2023-10-10 2:21 ` Shawn Guo
2 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2023-10-10 2:21 UTC (permalink / raw)
To: Adam Ford
Cc: linux-arm-kernel, aford, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Sascha Hauer, Pengutronix Kernel Team,
Fabio Estevam, NXP Linux Team, devicetree, linux-kernel
On Wed, Oct 04, 2023 at 06:01:58PM -0500, Adam Ford wrote:
> Per the DT bindings, the micfil node should have a sound-dai-cells
> entry.
>
> Fixes: 3bd0788c43d9 ("arm64: dts: imx8mm: Add support for micfil")
> Signed-off-by: Adam Ford <aford173@gmail.com>
Applied both, thanks!
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-10-10 2:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-04 23:01 [PATCH 1/2] arm64: dts: imx8mm: Add sound-dai-cells to micfil node Adam Ford
2023-10-04 23:01 ` [PATCH 2/2] arm64: dts: imx8mn: " Adam Ford
2023-10-04 23:55 ` Fabio Estevam
2023-10-04 23:54 ` [PATCH 1/2] arm64: dts: imx8mm: " Fabio Estevam
2023-10-10 2:21 ` Shawn Guo
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).