Linux Watchdog driver development
 help / color / mirror / Atom feed
From: Conor Dooley <conor@kernel.org>
To: Wolfram Sang <wsa+renesas@sang-engineering.com>
Cc: linux-renesas-soc@vger.kernel.org,
	Wim Van Sebroeck <wim@linux-watchdog.org>,
	Guenter Roeck <linux@roeck-us.net>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Magnus Damm <magnus.damm@gmail.com>,
	linux-watchdog@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH 1/2] dt-bindings: watchdog: Add Renesas WWDT
Date: Wed, 17 Sep 2025 20:16:38 +0100	[thread overview]
Message-ID: <20250917-village-oversized-e532df10644a@spud> (raw)
In-Reply-To: <20250917185651.12428-2-wsa+renesas@sang-engineering.com>

[-- Attachment #1: Type: text/plain, Size: 3016 bytes --]

On Wed, Sep 17, 2025 at 08:56:48PM +0200, Wolfram Sang wrote:
> Describe the Window Watchdog Timer found on Renesas R-Car SoCs from late
> Gen3 onwards.
> 
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> 
> Passes the binding check here.
> 
>  .../bindings/watchdog/renesas,wwdt.yaml       | 78 +++++++++++++++++++
>  1 file changed, 78 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/watchdog/renesas,wwdt.yaml
> 
> diff --git a/Documentation/devicetree/bindings/watchdog/renesas,wwdt.yaml b/Documentation/devicetree/bindings/watchdog/renesas,wwdt.yaml
> new file mode 100644
> index 000000000000..921713dd40fa
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/watchdog/renesas,wwdt.yaml

filename matching the base compatible please

> @@ -0,0 +1,78 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/watchdog/renesas,wwdt.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Renesas Window Watchdog Timer (WWDT) Controller
> +
> +maintainers:
> +  - Wolfram Sang <wsa+renesas@sang-engineering.com>
> +
> +properties:
> +  compatible:
> +    items:
> +      - const: renesas,r8a779g0-wwdt  # V4H
> +      - const: renesas,rcar-gen4-wwdt
> +
> +  reg:
> +    maxItems: 1
> +
> +  interrupts:
> +    items:
> +      - description: Pretimeout, 75% of overflow reached
> +      - description: Error occurred
> +
> +  interrupt-names:
> +    items:
> +      - const: pretimeout
> +      - const: error
> +
> +  clocks:
> +    items:
> +      - description: Bus clock
> +      - description: Counting clock
> +
> +  clock-names:
> +    items:
> +      - const: bus
> +      - const: cnt
> +
> +  power-domains:
> +    maxItems: 1
> +
> +  resets:
> +    maxItems: 1
> +
> +required:
> +  - compatible
> +  - reg
> +  - clocks
> +  - clock-names
> +  - resets
> +  - power-domains
> +
> +allOf:
> +  - $ref: watchdog.yaml#
> +
> +additionalProperties: false
> +
> +examples:
> +  - |
> +    #include <dt-bindings/clock/r8a779g0-cpg-mssr.h>
> +    #include <dt-bindings/power/r8a779g0-sysc.h>
> +    #include <dt-bindings/interrupt-controller/arm-gic.h>
> +
> +    wwdt0: watchdog@ffc90000 {

and remove the wwwdt0 label here as it has no users.

> +            compatible = "renesas,r8a779g0-wwdt",
> +                         "renesas,rcar-gen4-wwdt";
> +            reg = <0xffc90000 0x10>;
> +            interrupts = <GIC_SPI 310 IRQ_TYPE_LEVEL_HIGH>,
> +                         <GIC_SPI 311 IRQ_TYPE_LEVEL_HIGH>;
> +            interrupt-names = "pretimeout", "error";
> +            clocks = <&cpg CPG_CORE R8A779G0_CLK_SASYNCRT>,
> +                     <&cpg CPG_CORE R8A779G0_CLK_R>;
> +            clock-names = "bus", "cnt";
> +            power-domains = <&sysc R8A779G0_PD_ALWAYS_ON>;
> +            resets = <&cpg 1200>;
> +    };
> -- 
> 2.47.2
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

  reply	other threads:[~2025-09-17 19:16 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-17 18:56 [PATCH 0/2] watchdog: add Renesas Window Watchdog support Wolfram Sang
2025-09-17 18:56 ` [PATCH 1/2] dt-bindings: watchdog: Add Renesas WWDT Wolfram Sang
2025-09-17 19:16   ` Conor Dooley [this message]
2025-09-17 18:56 ` [PATCH 2/2] watchdog: renesas_wwdt: add driver Wolfram Sang
2025-09-18 14:22   ` kernel test robot
2025-10-06 11:58   ` Geert Uytterhoeven

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250917-village-oversized-e532df10644a@spud \
    --to=conor@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=geert+renesas@glider.be \
    --cc=krzk+dt@kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=magnus.damm@gmail.com \
    --cc=robh@kernel.org \
    --cc=wim@linux-watchdog.org \
    --cc=wsa+renesas@sang-engineering.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox