2021-03-07 11:46:29

by Peng Fan (OSS)

[permalink] [raw]
Subject: [PATCH V2] arm64: dts: imx8mp: add wdog2/3 nodes

From: Peng Fan <[email protected]>

There is wdog[2,3] in i.MX8MP, so add them.

Signed-off-by: Peng Fan <[email protected]>
---

V2:
Update commit log

arch/arm64/boot/dts/freescale/imx8mp.dtsi | 16 ++++++++++++++++
1 file changed, 16 insertions(+)

diff --git a/arch/arm64/boot/dts/freescale/imx8mp.dtsi b/arch/arm64/boot/dts/freescale/imx8mp.dtsi
index c7523fd4eae9..05dd04116f2e 100644
--- a/arch/arm64/boot/dts/freescale/imx8mp.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8mp.dtsi
@@ -312,6 +312,22 @@ wdog1: watchdog@30280000 {
status = "disabled";
};

+ wdog2: watchdog@30290000 {
+ compatible = "fsl,imx8mp-wdt", "fsl,imx21-wdt";
+ reg = <0x30290000 0x10000>;
+ interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&clk IMX8MP_CLK_WDOG2_ROOT>;
+ status = "disabled";
+ };
+
+ wdog3: watchdog@302a0000 {
+ compatible = "fsl,imx8mp-wdt", "fsl,imx21-wdt";
+ reg = <0x302a0000 0x10000>;
+ interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&clk IMX8MP_CLK_WDOG3_ROOT>;
+ status = "disabled";
+ };
+
iomuxc: pinctrl@30330000 {
compatible = "fsl,imx8mp-iomuxc";
reg = <0x30330000 0x10000>;
--
2.30.0


2021-03-07 19:24:22

by Fabio Estevam

[permalink] [raw]
Subject: Re: [PATCH V2] arm64: dts: imx8mp: add wdog2/3 nodes

On Sun, Mar 7, 2021 at 7:42 AM <[email protected]> wrote:
>
> From: Peng Fan <[email protected]>
>
> There is wdog[2,3] in i.MX8MP, so add them.
>
> Signed-off-by: Peng Fan <[email protected]>

Reviewed-by: Fabio Estevam <[email protected]>

2021-03-08 08:36:56

by Shawn Guo

[permalink] [raw]
Subject: Re: [PATCH V2] arm64: dts: imx8mp: add wdog2/3 nodes

On Sun, Mar 07, 2021 at 06:30:03PM +0800, [email protected] wrote:
> From: Peng Fan <[email protected]>
>
> There is wdog[2,3] in i.MX8MP, so add them.
>
> Signed-off-by: Peng Fan <[email protected]>

Applied, thanks.