* [PATCH] arm64: dts: ti: iot2050: Disable mcasp nodes at dtsi level
@ 2021-11-17 5:38 Jayesh Choudhary
2021-12-07 8:46 ` Jayesh Choudhary
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jayesh Choudhary @ 2021-11-17 5:38 UTC (permalink / raw)
To: nm
Cc: vigneshr, kristo, robh+dt, jan.kiszka, j-choudhary,
linux-arm-kernel, devicetree, linux-kernel
Disable mcasp nodes 0-2 because several required properties
are not present in the dtsi file as they are board specific.
These nodes can be enabled via an overlay whenever required.
Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com>
---
arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi
index 65da226847f4..c9407ed67866 100644
--- a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi
@@ -731,3 +731,15 @@
&icssg2_mdio {
status = "disabled";
};
+
+&mcasp0 {
+ status = "disabled";
+};
+
+&mcasp1 {
+ status = "disabled";
+};
+
+&mcasp2 {
+ status = "disabled";
+};
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] arm64: dts: ti: iot2050: Disable mcasp nodes at dtsi level
2021-11-17 5:38 [PATCH] arm64: dts: ti: iot2050: Disable mcasp nodes at dtsi level Jayesh Choudhary
@ 2021-12-07 8:46 ` Jayesh Choudhary
2021-12-10 7:10 ` Jan Kiszka
2021-12-15 7:12 ` Vignesh Raghavendra
2 siblings, 0 replies; 4+ messages in thread
From: Jayesh Choudhary @ 2021-12-07 8:46 UTC (permalink / raw)
To: jan.kiszka
Cc: nm, vigneshr, kristo, robh+dt, linux-arm-kernel, devicetree,
linux-kernel
Hi Jan,
Could you please ACK this patch if you are okay with the changes?
On 17/11/21 11:08 am, Jayesh Choudhary wrote:
> Disable mcasp nodes 0-2 because several required properties
> are not present in the dtsi file as they are board specific.
> These nodes can be enabled via an overlay whenever required.
>
> Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com>
> ---
> arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi
> index 65da226847f4..c9407ed67866 100644
> --- a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi
> @@ -731,3 +731,15 @@
> &icssg2_mdio {
> status = "disabled";
> };
> +
> +&mcasp0 {
> + status = "disabled";
> +};
> +
> +&mcasp1 {
> + status = "disabled";
> +};
> +
> +&mcasp2 {
> + status = "disabled";
> +};
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] arm64: dts: ti: iot2050: Disable mcasp nodes at dtsi level
2021-11-17 5:38 [PATCH] arm64: dts: ti: iot2050: Disable mcasp nodes at dtsi level Jayesh Choudhary
2021-12-07 8:46 ` Jayesh Choudhary
@ 2021-12-10 7:10 ` Jan Kiszka
2021-12-15 7:12 ` Vignesh Raghavendra
2 siblings, 0 replies; 4+ messages in thread
From: Jan Kiszka @ 2021-12-10 7:10 UTC (permalink / raw)
To: Jayesh Choudhary, nm
Cc: vigneshr, kristo, robh+dt, linux-arm-kernel, devicetree,
linux-kernel
On 17.11.21 06:38, Jayesh Choudhary wrote:
> Disable mcasp nodes 0-2 because several required properties
> are not present in the dtsi file as they are board specific.
> These nodes can be enabled via an overlay whenever required.
>
> Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com>
> ---
> arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi
> index 65da226847f4..c9407ed67866 100644
> --- a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi
> @@ -731,3 +731,15 @@
> &icssg2_mdio {
> status = "disabled";
> };
> +
> +&mcasp0 {
> + status = "disabled";
> +};
> +
> +&mcasp1 {
> + status = "disabled";
> +};
> +
> +&mcasp2 {
> + status = "disabled";
> +};
>
Acked-by: Jan Kiszka <jan.kiszka@siemens.com>
Sorry for the delay.
Jan
--
Siemens AG, T RDA IOT
Corporate Competence Center Embedded Linux
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] arm64: dts: ti: iot2050: Disable mcasp nodes at dtsi level
2021-11-17 5:38 [PATCH] arm64: dts: ti: iot2050: Disable mcasp nodes at dtsi level Jayesh Choudhary
2021-12-07 8:46 ` Jayesh Choudhary
2021-12-10 7:10 ` Jan Kiszka
@ 2021-12-15 7:12 ` Vignesh Raghavendra
2 siblings, 0 replies; 4+ messages in thread
From: Vignesh Raghavendra @ 2021-12-15 7:12 UTC (permalink / raw)
To: nm, Jayesh Choudhary
Cc: Vignesh Raghavendra, kristo, robh+dt, linux-arm-kernel,
linux-kernel, jan.kiszka, devicetree
Hi Jayesh Choudhary,
On Wed, 17 Nov 2021 11:08:06 +0530, Jayesh Choudhary wrote:
> Disable mcasp nodes 0-2 because several required properties
> are not present in the dtsi file as they are board specific.
> These nodes can be enabled via an overlay whenever required.
>
>
I have applied the following to branch ti-k3-dts-next on [1].
Thank you!
[1/1] arm64: dts: ti: iot2050: Disable mcasp nodes at dtsi level
commit: 277ee96f89d806f110e3011ea324155dd69e798f
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant 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.
[1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
--
Vignesh
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-12-15 7:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-17 5:38 [PATCH] arm64: dts: ti: iot2050: Disable mcasp nodes at dtsi level Jayesh Choudhary
2021-12-07 8:46 ` Jayesh Choudhary
2021-12-10 7:10 ` Jan Kiszka
2021-12-15 7:12 ` Vignesh Raghavendra
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).