Linux Watchdog driver development
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Add support for RZ/G3E WDT
@ 2025-01-26 13:26 Biju Das
  2025-01-26 13:26 ` [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support Biju Das
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Biju Das @ 2025-01-26 13:26 UTC (permalink / raw)
  To: Wim Van Sebroeck, Guenter Roeck, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: Biju Das, Geert Uytterhoeven, Magnus Damm, Wolfram Sang,
	linux-watchdog, devicetree, linux-renesas-soc,
	Prabhakar Mahadev Lad, Biju Das

The RZ/G3E WDT IP is similar to RZ/V2H WDT. WDT0 can be used for CM33 cold
reset, system reset and asserting WDTUDFCM pin where as WDT1 can be used
for CA55 cold reset, system reset and asserting WDTUDFCA pin. Other 2
watchdogs can be used for system reset. So define WDT{1..3} in SoC dtsi.

v1->v2:
 * Dropped patch#2, #4 and #5 as it is queued for renesas_clk and
   renesas_devel.
 * Collected tags for patch#1.
 * Updated commit header and description for patch#2.
 * Replaced ARCH_R9A09G047->ARCH_RENESAS as both RZ/V2H and RZ/G3E belongs
   to ARCH_RENESAS family.

Biju Das (2):
  dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support
  watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS

 .../devicetree/bindings/watchdog/renesas,wdt.yaml          | 4 ++++
 drivers/watchdog/Kconfig                                   | 7 ++++---
 2 files changed, 8 insertions(+), 3 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support
  2025-01-26 13:26 [PATCH v2 0/2] Add support for RZ/G3E WDT Biju Das
@ 2025-01-26 13:26 ` Biju Das
  2025-03-12  9:24   ` Biju Das
  2025-01-26 13:26 ` [PATCH v2 2/2] watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS Biju Das
  2025-02-20 11:41 ` [PATCH v2 0/2] Add support for RZ/G3E WDT Biju Das
  2 siblings, 1 reply; 9+ messages in thread
From: Biju Das @ 2025-01-26 13:26 UTC (permalink / raw)
  To: Wim Van Sebroeck, Guenter Roeck, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: Biju Das, Geert Uytterhoeven, Magnus Damm, Wolfram Sang,
	linux-watchdog, devicetree, linux-renesas-soc,
	Prabhakar Mahadev Lad, Biju Das, Krzysztof Kozlowski,
	Tommaso Merciai

Document the support for the watchdog IP available on RZ/G3E SoC. The
watchdog IP available on RZ/G3E SoC is identical to the one found on
RZ/V2H SoC.

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
v1->v2:
 * Collected tags.
---
 Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml b/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
index 29ada89fdcdc..3e0a8747a357 100644
--- a/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
+++ b/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
@@ -75,6 +75,10 @@ properties:
               - renesas,r8a779h0-wdt     # R-Car V4M
           - const: renesas,rcar-gen4-wdt # R-Car Gen4
 
+      - items:
+          - const: renesas,r9a09g047-wdt # RZ/G3E
+          - const: renesas,r9a09g057-wdt # RZ/V2H(P)
+
       - const: renesas,r9a09g057-wdt       # RZ/V2H(P)
 
   reg:
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v2 2/2] watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS
  2025-01-26 13:26 [PATCH v2 0/2] Add support for RZ/G3E WDT Biju Das
  2025-01-26 13:26 ` [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support Biju Das
@ 2025-01-26 13:26 ` Biju Das
  2025-01-26 13:59   ` Guenter Roeck
  2025-01-27  9:34   ` Geert Uytterhoeven
  2025-02-20 11:41 ` [PATCH v2 0/2] Add support for RZ/G3E WDT Biju Das
  2 siblings, 2 replies; 9+ messages in thread
From: Biju Das @ 2025-01-26 13:26 UTC (permalink / raw)
  To: Wim Van Sebroeck, Guenter Roeck
  Cc: Biju Das, linux-watchdog, Geert Uytterhoeven,
	Prabhakar Mahadev Lad, Biju Das, linux-renesas-soc

RZ/G3E watchdog timer IP is similar to the one found on RZ/V2H. Both these
SoCs belong to the ARCH_RENESAS family. So, it makes sense to use
ARCH_RENESAS rather than ARCH_R9A09G057 to enable the RZV2HWDT driver.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
v1->v2:
 * Updated commit header and description.
 * Replaced ARCH_R9A09G047->ARCH_RENESAS as both RZ/V2H and RZ/G3E belongs
   to ARCH_RENESAS family.
---
 drivers/watchdog/Kconfig | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
index f81705f8539a..b9d23f98a436 100644
--- a/drivers/watchdog/Kconfig
+++ b/drivers/watchdog/Kconfig
@@ -963,13 +963,14 @@ config RENESAS_RZG2LWDT
 	  Renesas RZ/G2L SoCs. These watchdogs can be used to reset a system.
 
 config RENESAS_RZV2HWDT
-	tristate "Renesas RZ/V2H(P) WDT Watchdog"
-	depends on ARCH_R9A09G057 || COMPILE_TEST
+	tristate "Renesas RZ/{G3E,V2H(P)} WDT Watchdog"
+	depends on ARCH_RENESAS || COMPILE_TEST
 	depends on PM || COMPILE_TEST
 	select WATCHDOG_CORE
 	help
 	  This driver adds watchdog support for the integrated watchdogs in the
-	  Renesas RZ/V2H(P) SoCs. These watchdogs can be used to reset a system.
+	  Renesas RZ/{G3E,V2H(P)} SoCs. These watchdogs can be used to reset a
+	  system.
 
 config ASPEED_WATCHDOG
 	tristate "Aspeed BMC watchdog support"
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH v2 2/2] watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS
  2025-01-26 13:26 ` [PATCH v2 2/2] watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS Biju Das
@ 2025-01-26 13:59   ` Guenter Roeck
  2025-01-27  9:34   ` Geert Uytterhoeven
  1 sibling, 0 replies; 9+ messages in thread
From: Guenter Roeck @ 2025-01-26 13:59 UTC (permalink / raw)
  To: Biju Das, Wim Van Sebroeck
  Cc: linux-watchdog, Geert Uytterhoeven, Prabhakar Mahadev Lad,
	Biju Das, linux-renesas-soc

On 1/26/25 05:26, Biju Das wrote:
> RZ/G3E watchdog timer IP is similar to the one found on RZ/V2H. Both these
> SoCs belong to the ARCH_RENESAS family. So, it makes sense to use
> ARCH_RENESAS rather than ARCH_R9A09G057 to enable the RZV2HWDT driver.
> 
> Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
> v1->v2:
>   * Updated commit header and description.
>   * Replaced ARCH_R9A09G047->ARCH_RENESAS as both RZ/V2H and RZ/G3E belongs
>     to ARCH_RENESAS family.
> ---
>   drivers/watchdog/Kconfig | 7 ++++---
>   1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
> index f81705f8539a..b9d23f98a436 100644
> --- a/drivers/watchdog/Kconfig
> +++ b/drivers/watchdog/Kconfig
> @@ -963,13 +963,14 @@ config RENESAS_RZG2LWDT
>   	  Renesas RZ/G2L SoCs. These watchdogs can be used to reset a system.
>   
>   config RENESAS_RZV2HWDT
> -	tristate "Renesas RZ/V2H(P) WDT Watchdog"
> -	depends on ARCH_R9A09G057 || COMPILE_TEST
> +	tristate "Renesas RZ/{G3E,V2H(P)} WDT Watchdog"
> +	depends on ARCH_RENESAS || COMPILE_TEST
>   	depends on PM || COMPILE_TEST
>   	select WATCHDOG_CORE
>   	help
>   	  This driver adds watchdog support for the integrated watchdogs in the
> -	  Renesas RZ/V2H(P) SoCs. These watchdogs can be used to reset a system.
> +	  Renesas RZ/{G3E,V2H(P)} SoCs. These watchdogs can be used to reset a
> +	  system.
>   
>   config ASPEED_WATCHDOG
>   	tristate "Aspeed BMC watchdog support"


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2 2/2] watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS
  2025-01-26 13:26 ` [PATCH v2 2/2] watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS Biju Das
  2025-01-26 13:59   ` Guenter Roeck
@ 2025-01-27  9:34   ` Geert Uytterhoeven
  1 sibling, 0 replies; 9+ messages in thread
From: Geert Uytterhoeven @ 2025-01-27  9:34 UTC (permalink / raw)
  To: Biju Das
  Cc: Wim Van Sebroeck, Guenter Roeck, linux-watchdog,
	Geert Uytterhoeven, Prabhakar Mahadev Lad, Biju Das,
	linux-renesas-soc

On Sun, 26 Jan 2025 at 14:27, Biju Das <biju.das.jz@bp.renesas.com> wrote:
> RZ/G3E watchdog timer IP is similar to the one found on RZ/V2H. Both these
> SoCs belong to the ARCH_RENESAS family. So, it makes sense to use
> ARCH_RENESAS rather than ARCH_R9A09G057 to enable the RZV2HWDT driver.
>
> Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
> ---
> v1->v2:
>  * Updated commit header and description.
>  * Replaced ARCH_R9A09G047->ARCH_RENESAS as both RZ/V2H and RZ/G3E belongs
>    to ARCH_RENESAS family.

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: [PATCH v2 0/2] Add support for RZ/G3E WDT
  2025-01-26 13:26 [PATCH v2 0/2] Add support for RZ/G3E WDT Biju Das
  2025-01-26 13:26 ` [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support Biju Das
  2025-01-26 13:26 ` [PATCH v2 2/2] watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS Biju Das
@ 2025-02-20 11:41 ` Biju Das
  2025-03-06 15:14   ` Biju Das
  2 siblings, 1 reply; 9+ messages in thread
From: Biju Das @ 2025-02-20 11:41 UTC (permalink / raw)
  To: Biju Das, Wim Van Sebroeck, Guenter Roeck, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Geert Uytterhoeven, Magnus Damm, Wolfram Sang,
	linux-watchdog@vger.kernel.org, devicetree@vger.kernel.org,
	linux-renesas-soc@vger.kernel.org, Prabhakar Mahadev Lad,
	biju.das.au

Hi all,

> -----Original Message-----
> From: Biju Das <biju.das.jz@bp.renesas.com>
> Sent: 26 January 2025 13:26
> Subject: [PATCH v2 0/2] Add support for RZ/G3E WDT
> 
> The RZ/G3E WDT IP is similar to RZ/V2H WDT. WDT0 can be used for CM33 cold reset, system reset and
> asserting WDTUDFCM pin where as WDT1 can be used for CA55 cold reset, system reset and asserting
> WDTUDFCA pin. Other 2 watchdogs can be used for system reset. So define WDT{1..3} in SoC dtsi.
> 
> v1->v2:
>  * Dropped patch#2, #4 and #5 as it is queued for renesas_clk and
>    renesas_devel.
>  * Collected tags for patch#1.
>  * Updated commit header and description for patch#2.
>  * Replaced ARCH_R9A09G047->ARCH_RENESAS as both RZ/V2H and RZ/G3E belongs
>    to ARCH_RENESAS family.
> 
> Biju Das (2):
>   dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support
>   watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS
> 
>  .../devicetree/bindings/watchdog/renesas,wdt.yaml          | 4 ++++
>  drivers/watchdog/Kconfig                                   | 7 ++++---
>  2 files changed, 8 insertions(+), 3 deletions(-)
> 

Gentle ping.

Cheers,
Biju

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: [PATCH v2 0/2] Add support for RZ/G3E WDT
  2025-02-20 11:41 ` [PATCH v2 0/2] Add support for RZ/G3E WDT Biju Das
@ 2025-03-06 15:14   ` Biju Das
  0 siblings, 0 replies; 9+ messages in thread
From: Biju Das @ 2025-03-06 15:14 UTC (permalink / raw)
  To: Wim Van Sebroeck, Guenter Roeck, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: Geert Uytterhoeven, Magnus Damm, Wolfram Sang,
	linux-watchdog@vger.kernel.org, devicetree@vger.kernel.org,
	linux-renesas-soc@vger.kernel.org, Prabhakar Mahadev Lad,
	biju.das.au

Hi All,

> -----Original Message-----
> From: Biju Das <biju.das.jz@bp.renesas.com>
> Sent: 20 February 2025 11:41
> Subject: RE: [PATCH v2 0/2] Add support for RZ/G3E WDT
> 
> Hi all,
> 
> > -----Original Message-----
> > From: Biju Das <biju.das.jz@bp.renesas.com>
> > Sent: 26 January 2025 13:26
> > Subject: [PATCH v2 0/2] Add support for RZ/G3E WDT
> >
> > The RZ/G3E WDT IP is similar to RZ/V2H WDT. WDT0 can be used for CM33
> > cold reset, system reset and asserting WDTUDFCM pin where as WDT1 can
> > be used for CA55 cold reset, system reset and asserting WDTUDFCA pin. Other 2 watchdogs can be used
> for system reset. So define WDT{1..3} in SoC dtsi.
> >
> > v1->v2:
> >  * Dropped patch#2, #4 and #5 as it is queued for renesas_clk and
> >    renesas_devel.
> >  * Collected tags for patch#1.
> >  * Updated commit header and description for patch#2.
> >  * Replaced ARCH_R9A09G047->ARCH_RENESAS as both RZ/V2H and RZ/G3E belongs
> >    to ARCH_RENESAS family.
> >
> > Biju Das (2):
> >   dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support
> >   watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS
> >
> >  .../devicetree/bindings/watchdog/renesas,wdt.yaml          | 4 ++++
> >  drivers/watchdog/Kconfig                                   | 7 ++++---
> >  2 files changed, 8 insertions(+), 3 deletions(-)
> >
> 

Gentle ping. Are we happy with this patches?

Cheers,
Biju

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support
  2025-01-26 13:26 ` [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support Biju Das
@ 2025-03-12  9:24   ` Biju Das
  2025-03-12 12:29     ` Wim Van Sebroeck
  0 siblings, 1 reply; 9+ messages in thread
From: Biju Das @ 2025-03-12  9:24 UTC (permalink / raw)
  To: Biju Das, Wim Van Sebroeck, Guenter Roeck, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Geert Uytterhoeven, Magnus Damm, Wolfram Sang,
	linux-watchdog@vger.kernel.org, devicetree@vger.kernel.org,
	linux-renesas-soc@vger.kernel.org, Prabhakar Mahadev Lad,
	biju.das.au, Krzysztof Kozlowski, Tommaso Merciai

Hi Wim Van Sebroeck,


> -----Original Message-----
> From: Biju Das <biju.das.jz@bp.renesas.com>
> Sent: 26 January 2025 13:27
> Subject: [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support
> 
> Document the support for the watchdog IP available on RZ/G3E SoC. The watchdog IP available on RZ/G3E
> SoC is identical to the one found on RZ/V2H SoC.
> 
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> Reviewed-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
> Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
> ---
> v1->v2:
>  * Collected tags.
> ---
>  Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> b/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> index 29ada89fdcdc..3e0a8747a357 100644
> --- a/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> +++ b/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> @@ -75,6 +75,10 @@ properties:
>                - renesas,r8a779h0-wdt     # R-Car V4M
>            - const: renesas,rcar-gen4-wdt # R-Car Gen4
> 
> +      - items:
> +          - const: renesas,r9a09g047-wdt # RZ/G3E
> +          - const: renesas,r9a09g057-wdt # RZ/V2H(P)
> +
>        - const: renesas,r9a09g057-wdt       # RZ/V2H(P)
> 
>    reg:

Looks like you missed this patch from the series as [1]
hits in next or you expect it to go through DT tree?

[1] https://web.git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=next-20250311&id=331c8349605c8fa2f9040c39fe8c40afe3fdc3c3

Cheers,
Biju

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support
  2025-03-12  9:24   ` Biju Das
@ 2025-03-12 12:29     ` Wim Van Sebroeck
  0 siblings, 0 replies; 9+ messages in thread
From: Wim Van Sebroeck @ 2025-03-12 12:29 UTC (permalink / raw)
  To: Biju Das
  Cc: Wim Van Sebroeck, Guenter Roeck, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Geert Uytterhoeven, Magnus Damm, Wolfram Sang,
	linux-watchdog@vger.kernel.org, devicetree@vger.kernel.org,
	linux-renesas-soc@vger.kernel.org, Prabhakar Mahadev Lad,
	biju.das.au, Krzysztof Kozlowski, Tommaso Merciai

Hi Biju

> Hi Wim Van Sebroeck,
> 
> 
> > -----Original Message-----
> > From: Biju Das <biju.das.jz@bp.renesas.com>
> > Sent: 26 January 2025 13:27
> > Subject: [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support
> > 
> > Document the support for the watchdog IP available on RZ/G3E SoC. The watchdog IP available on RZ/G3E
> > SoC is identical to the one found on RZ/V2H SoC.
> > 
> > Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> > Reviewed-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
> > Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
> > ---
> > v1->v2:
> >  * Collected tags.
> > ---
> >  Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml | 4 ++++
> >  1 file changed, 4 insertions(+)
> > 
> > diff --git a/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> > b/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> > index 29ada89fdcdc..3e0a8747a357 100644
> > --- a/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> > +++ b/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> > @@ -75,6 +75,10 @@ properties:
> >                - renesas,r8a779h0-wdt     # R-Car V4M
> >            - const: renesas,rcar-gen4-wdt # R-Car Gen4
> > 
> > +      - items:
> > +          - const: renesas,r9a09g047-wdt # RZ/G3E
> > +          - const: renesas,r9a09g057-wdt # RZ/V2H(P)
> > +
> >        - const: renesas,r9a09g057-wdt       # RZ/V2H(P)
> > 
> >    reg:
> 
> Looks like you missed this patch from the series as [1]
> hits in next or you expect it to go through DT tree?
> 
> [1] https://web.git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=next-20250311&id=331c8349605c8fa2f9040c39fe8c40afe3fdc3c3
> 
> Cheers,
> Biju

Added.

Kind regards,
Wim.


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2025-03-12 13:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-26 13:26 [PATCH v2 0/2] Add support for RZ/G3E WDT Biju Das
2025-01-26 13:26 ` [PATCH v2 1/2] dt-bindings: watchdog: renesas,wdt: Document RZ/G3E support Biju Das
2025-03-12  9:24   ` Biju Das
2025-03-12 12:29     ` Wim Van Sebroeck
2025-01-26 13:26 ` [PATCH v2 2/2] watchdog: Enable RZV2HWDT driver depend on ARCH_RENESAS Biju Das
2025-01-26 13:59   ` Guenter Roeck
2025-01-27  9:34   ` Geert Uytterhoeven
2025-02-20 11:41 ` [PATCH v2 0/2] Add support for RZ/G3E WDT Biju Das
2025-03-06 15:14   ` Biju Das

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox