From: Guenter Roeck <linux@roeck-us.net>
To: Biju Das <biju.das.jz@bp.renesas.com>
Cc: Wim Van Sebroeck <wim@linux-watchdog.org>,
Rob Herring <robh+dt@kernel.org>,
Wolfram Sang <wsa+renesas@sang-engineering.com>,
Geert Uytterhoeven <geert+renesas@glider.be>,
linux-watchdog@vger.kernel.org, devicetree@vger.kernel.org,
Chris Paterson <Chris.Paterson2@renesas.com>,
Biju Das <biju.das@bp.renesas.com>,
Prabhakar Mahadev Lad <prabhakar.mahadev-lad.rj@bp.renesas.com>,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH v3 1/2] dt-bindings: watchdog: renesas,wdt: Add support for RZ/G2L
Date: Mon, 29 Nov 2021 07:33:39 -0800 [thread overview]
Message-ID: <20211129153339.GA2661363@roeck-us.net> (raw)
In-Reply-To: <20211122113554.15990-2-biju.das.jz@bp.renesas.com>
On Mon, Nov 22, 2021 at 11:35:53AM +0000, Biju Das wrote:
> Describe the WDT hardware in the RZ/G2L series.
>
> Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
> ---
> V2->v3:
> * No change.
> V1->V2:
> * No Change
> RFC->V1:
> * Added clock-names and interrupt-names as required properties for RZ/G2L
> * Re-order clocknames with internal module clock first
> ---
> .../bindings/watchdog/renesas,wdt.yaml | 75 ++++++++++++++-----
> 1 file changed, 57 insertions(+), 18 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml b/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> index ab66d3f0c476..91a98ccd4226 100644
> --- a/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> +++ b/Documentation/devicetree/bindings/watchdog/renesas,wdt.yaml
> @@ -10,9 +10,6 @@ maintainers:
> - Wolfram Sang <wsa+renesas@sang-engineering.com>
> - Geert Uytterhoeven <geert+renesas@glider.be>
>
> -allOf:
> - - $ref: "watchdog.yaml#"
> -
> properties:
> compatible:
> oneOf:
> @@ -22,6 +19,11 @@ properties:
> - renesas,r7s9210-wdt # RZ/A2
> - const: renesas,rza-wdt # RZ/A
>
> + - items:
> + - enum:
> + - renesas,r9a07g044-wdt # RZ/G2{L,LC}
> + - const: renesas,rzg2l-wdt # RZ/G2L
> +
> - items:
> - enum:
> - renesas,r8a7742-wdt # RZ/G1H
> @@ -56,11 +58,13 @@ properties:
> reg:
> maxItems: 1
>
> - interrupts:
> - maxItems: 1
> + interrupts: true
>
> - clocks:
> - maxItems: 1
> + interrupt-names: true
> +
> + clocks: true
> +
> + clock-names: true
>
> power-domains:
> maxItems: 1
> @@ -75,17 +79,52 @@ required:
> - reg
> - clocks
>
> -if:
> - not:
> - properties:
> - compatible:
> - contains:
> - enum:
> - - renesas,rza-wdt
> -then:
> - required:
> - - power-domains
> - - resets
> +allOf:
> + - $ref: "watchdog.yaml#"
> +
> + - if:
> + not:
> + properties:
> + compatible:
> + contains:
> + enum:
> + - renesas,rza-wdt
> + then:
> + required:
> + - power-domains
> + - resets
> +
> + - if:
> + properties:
> + compatible:
> + contains:
> + enum:
> + - renesas,rzg2l-wdt
> + then:
> + properties:
> + interrupts:
> + maxItems: 2
> + interrupt-names:
> + items:
> + - const: wdt
> + - const: perrout
> + clocks:
> + items:
> + - description: Register access clock
> + - description: Main clock
> + clock-names:
> + items:
> + - const: pclk
> + - const: oscclk
> + required:
> + - clock-names
> + - interrupt-names
> + else:
> + properties:
> + interrupts:
> + maxItems: 1
> + clocks:
> + maxItems: 1
>
> additionalProperties: false
>
> --
> 2.17.1
>
prev parent reply other threads:[~2021-11-29 19:14 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-22 11:35 [PATCH v3 0/2] Add WDT driver for RZ/G2L Biju Das
2021-11-22 11:35 ` [PATCH v3 1/2] dt-bindings: watchdog: renesas,wdt: Add support " Biju Das
2021-11-23 13:35 ` Geert Uytterhoeven
2021-11-29 0:38 ` Rob Herring
2021-11-29 15:33 ` Guenter Roeck [this message]
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=20211129153339.GA2661363@roeck-us.net \
--to=linux@roeck-us.net \
--cc=Chris.Paterson2@renesas.com \
--cc=biju.das.jz@bp.renesas.com \
--cc=biju.das@bp.renesas.com \
--cc=devicetree@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux-watchdog@vger.kernel.org \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=robh+dt@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;
as well as URLs for NNTP newsgroup(s).