[PATCH 3/5] dt-bindings: watchdog: renesas,rzn1-wdt: Document the reset line

From: Herve Codina (Schneider Electric)

Date: Tue Mar 10 2026 - 13:33:45 EST


Watchdogs available in the RZ/N1 SoC can use their specific hardware
reset line to reset the system on watchdog timeout.

This line is not documented in the current binding.

Fill this lack and describe this per watchdog reset line.

Signed-off-by: Herve Codina (Schneider Electric) <herve.codina@xxxxxxxxxxx>
---
.../bindings/watchdog/renesas,rzn1-wdt.yaml | 22 +++++++++++++++++++
.../dt-bindings/watchdog/renesas,rzn1-wdt.h | 16 ++++++++++++++
2 files changed, 38 insertions(+)
create mode 100644 include/dt-bindings/watchdog/renesas,rzn1-wdt.h

diff --git a/Documentation/devicetree/bindings/watchdog/renesas,rzn1-wdt.yaml b/Documentation/devicetree/bindings/watchdog/renesas,rzn1-wdt.yaml
index 7e3ee533cd56..40a9a4ebc716 100644
--- a/Documentation/devicetree/bindings/watchdog/renesas,rzn1-wdt.yaml
+++ b/Documentation/devicetree/bindings/watchdog/renesas,rzn1-wdt.yaml
@@ -26,6 +26,26 @@ properties:

timeout-sec: true

+ renesas,reset-line:
+ $ref: /schemas/types.yaml#/definitions/uint32
+ enum: [0, 1]
+ description: |
+ The watchdog reset line (dt-bindings/watchdog/renesas,rzn1-wdt.h defines
+ these values). A wachdog timeout asserts this reset line to perform a
+ hardware system reset. Two watchdogs are present in the RZ/N1 SoC and
+ each of them has a dedicated reset line.
+
+ - 0: RZN1_WDT_A7_0
+ This reset line can be asserted only by the A7 0 watchdog. This
+ watchdog is the one mapped at 0x40008000 on RZ/N1 SoCs.
+
+ - 1: RZN1_WDT_A7_1
+ This reset line can be asserted only by the A7 1 watchdog. This
+ watchdog is the one mapped at 0x40009000 on RZ/N1 SoCs.
+
+ If the renesas,reset-line property is not present, the watchdog timeout
+ only triggers an interrupt.
+
required:
- compatible
- reg
@@ -41,10 +61,12 @@ examples:
- |
#include <dt-bindings/clock/r9a06g032-sysctrl.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>
+ #include <dt-bindings/watchdog/renesas,rzn1-wdt.h>

watchdog@40008000 {
compatible = "renesas,r9a06g032-wdt", "renesas,rzn1-wdt";
reg = <0x40008000 0x1000>;
interrupts = <GIC_SPI 73 IRQ_TYPE_EDGE_RISING>;
clocks = <&sysctrl R9A06G032_CLK_WATCHDOG>;
+ renesas,reset-line = <RZN1_WDT_A7_0>;
};
diff --git a/include/dt-bindings/watchdog/renesas,rzn1-wdt.h b/include/dt-bindings/watchdog/renesas,rzn1-wdt.h
new file mode 100644
index 000000000000..fe534aff0609
--- /dev/null
+++ b/include/dt-bindings/watchdog/renesas,rzn1-wdt.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
+/*
+ * RZ/N1 watchdog reset lines
+ *
+ * Copyright (C) 2026 Bootlin
+ *
+ * Herve Codina <herve.codina@xxxxxxxxxxx>
+ */
+
+#ifndef __DT_BINDINGS_RZN1_WDT_H__
+#define __DT_BINDINGS_RZN1_WDT_H__
+
+#define RZN1_WDT_A7_0 0
+#define RZN1_WDT_A7_1 1
+
+#endif /* __DT_BINDINGS_RZN1_WDT_H__ */
--
2.53.0