* [PATCH 0/2] arm64: dts: ti: k3-am62/64: Add ESM Support
@ 2023-05-30 18:53 Nishanth Menon
2023-05-30 18:53 ` [PATCH 1/2] arm64: dts: ti: k3-am62: Add ESM support Nishanth Menon
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Nishanth Menon @ 2023-05-30 18:53 UTC (permalink / raw)
To: Conor Dooley, Krzysztof Kozlowski, Rob Herring
Cc: linux-kernel, devicetree, linux-arm-kernel, Tero Kristo,
Vignesh Raghavendra, Nishanth Menon, Udit Kumar, Nitin Yadav,
Neha Malcom Francis
Couple of follow on patches based on [1] adding ESM nodes and mapping
for AM62/AM64.
Nishanth Menon (2):
arm64: dts: ti: k3-am62: Add ESM support
arm64: dts: ti: k3-am64: Add ESM support
arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 6 ++++++
arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi | 6 ++++++
arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 6 ++++++
arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi | 6 ++++++
4 files changed, 24 insertions(+)
[1] https://lore.kernel.org/all/20230504080526.133149-1-n-francis@ti.com/
--
2.40.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] arm64: dts: ti: k3-am62: Add ESM support
2023-05-30 18:53 [PATCH 0/2] arm64: dts: ti: k3-am62/64: Add ESM Support Nishanth Menon
@ 2023-05-30 18:53 ` Nishanth Menon
2023-05-30 18:53 ` [PATCH 2/2] arm64: dts: ti: k3-am64: " Nishanth Menon
2023-06-15 13:34 ` [PATCH 0/2] arm64: dts: ti: k3-am62/64: Add ESM Support Vignesh Raghavendra
2 siblings, 0 replies; 4+ messages in thread
From: Nishanth Menon @ 2023-05-30 18:53 UTC (permalink / raw)
To: Conor Dooley, Krzysztof Kozlowski, Rob Herring
Cc: linux-kernel, devicetree, linux-arm-kernel, Tero Kristo,
Vignesh Raghavendra, Nishanth Menon, Udit Kumar, Nitin Yadav,
Neha Malcom Francis
Add Error Signaling Module (ESM) instances in MCU and MAIN domains.
Signed-off-by: Nishanth Menon <nm@ti.com>
---
Depends on https://lore.kernel.org/all/20230504080526.133149-1-n-francis@ti.com/
(to be merged via SoC tree)
arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 6 ++++++
arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi | 6 ++++++
2 files changed, 12 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
index bf3e054c72ce..2488e3a537fe 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
@@ -207,6 +207,12 @@ main_pmx0: pinctrl@f4000 {
pinctrl-single,function-mask = <0xffffffff>;
};
+ main_esm: esm@420000 {
+ compatible = "ti,j721e-esm";
+ reg = <0x00 0x420000 0x00 0x1000>;
+ ti,esm-pins = <160>, <161>, <162>, <163>, <177>, <178>;
+ };
+
main_timer0: timer@2400000 {
compatible = "ti,am654-timer";
reg = <0x00 0x2400000 0x00 0x400>;
diff --git a/arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi b/arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi
index 076601a41e84..19fc38157d94 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi
@@ -14,6 +14,12 @@ mcu_pmx0: pinctrl@4084000 {
pinctrl-single,function-mask = <0xffffffff>;
};
+ mcu_esm: esm@4100000 {
+ compatible = "ti,j721e-esm";
+ reg = <0x00 0x4100000 0x00 0x1000>;
+ ti,esm-pins = <0>, <1>, <2>, <85>;
+ };
+
/*
* The MCU domain timer interrupts are routed only to the ESM module,
* and not currently available for Linux. The MCU domain timers are
--
2.40.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] arm64: dts: ti: k3-am64: Add ESM support
2023-05-30 18:53 [PATCH 0/2] arm64: dts: ti: k3-am62/64: Add ESM Support Nishanth Menon
2023-05-30 18:53 ` [PATCH 1/2] arm64: dts: ti: k3-am62: Add ESM support Nishanth Menon
@ 2023-05-30 18:53 ` Nishanth Menon
2023-06-15 13:34 ` [PATCH 0/2] arm64: dts: ti: k3-am62/64: Add ESM Support Vignesh Raghavendra
2 siblings, 0 replies; 4+ messages in thread
From: Nishanth Menon @ 2023-05-30 18:53 UTC (permalink / raw)
To: Conor Dooley, Krzysztof Kozlowski, Rob Herring
Cc: linux-kernel, devicetree, linux-arm-kernel, Tero Kristo,
Vignesh Raghavendra, Nishanth Menon, Udit Kumar, Nitin Yadav,
Neha Malcom Francis
Add Error Signaling Module (ESM) instances in MCU and MAIN domains.
Signed-off-by: Nishanth Menon <nm@ti.com>
---
Depends on https://lore.kernel.org/all/20230504080526.133149-1-n-francis@ti.com/
(to be merged via SoC tree)
arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 6 ++++++
arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi | 6 ++++++
2 files changed, 12 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
index 5e8036f32d79..0742af804378 100644
--- a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
@@ -228,6 +228,12 @@ epwm_tbclk: clock@4140 {
};
};
+ main_esm: esm@420000 {
+ compatible = "ti,j721e-esm";
+ reg = <0x00 0x420000 0x00 0x1000>;
+ ti,esm-pins = <160>, <161>;
+ };
+
main_uart0: serial@2800000 {
compatible = "ti,am64-uart", "ti,am654-uart";
reg = <0x00 0x02800000 0x00 0x100>;
diff --git a/arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi b/arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi
index 38ddf0b3b8a0..825793767d41 100644
--- a/arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi
@@ -109,4 +109,10 @@ mcu_pmx0: pinctrl@4084000 {
pinctrl-single,register-width = <32>;
pinctrl-single,function-mask = <0xffffffff>;
};
+
+ mcu_esm: esm@4100000 {
+ compatible = "ti,j721e-esm";
+ reg = <0x00 0x4100000 0x00 0x1000>;
+ ti,esm-pins = <0>, <1>;
+ };
};
--
2.40.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] arm64: dts: ti: k3-am62/64: Add ESM Support
2023-05-30 18:53 [PATCH 0/2] arm64: dts: ti: k3-am62/64: Add ESM Support Nishanth Menon
2023-05-30 18:53 ` [PATCH 1/2] arm64: dts: ti: k3-am62: Add ESM support Nishanth Menon
2023-05-30 18:53 ` [PATCH 2/2] arm64: dts: ti: k3-am64: " Nishanth Menon
@ 2023-06-15 13:34 ` Vignesh Raghavendra
2 siblings, 0 replies; 4+ messages in thread
From: Vignesh Raghavendra @ 2023-06-15 13:34 UTC (permalink / raw)
To: Conor Dooley, Krzysztof Kozlowski, Rob Herring, Nishanth Menon
Cc: Vignesh Raghavendra, linux-kernel, devicetree, linux-arm-kernel,
Tero Kristo, Udit Kumar, Nitin Yadav, Neha Malcom Francis
Hi Nishanth Menon,
On Tue, 30 May 2023 13:53:33 -0500, Nishanth Menon wrote:
> Couple of follow on patches based on [1] adding ESM nodes and mapping
> for AM62/AM64.
>
> Nishanth Menon (2):
> arm64: dts: ti: k3-am62: Add ESM support
> arm64: dts: ti: k3-am64: Add ESM support
>
> [...]
I have applied the following to branch ti-k3-dts-next on [1].
Thank you!
[1/2] arm64: dts: ti: k3-am62: Add ESM support
commit: a58eedd1d195f17418c327482a79de5b84bc5aa8
[2/2] arm64: dts: ti: k3-am64: Add ESM support
commit: f049b541b81acd88133c2c2247d4fae6c33f1b99
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:[~2023-06-15 13:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-30 18:53 [PATCH 0/2] arm64: dts: ti: k3-am62/64: Add ESM Support Nishanth Menon
2023-05-30 18:53 ` [PATCH 1/2] arm64: dts: ti: k3-am62: Add ESM support Nishanth Menon
2023-05-30 18:53 ` [PATCH 2/2] arm64: dts: ti: k3-am64: " Nishanth Menon
2023-06-15 13:34 ` [PATCH 0/2] arm64: dts: ti: k3-am62/64: Add ESM Support Vignesh Raghavendra
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®