* [PATCH v2] dt-bindings: watchdog: lantiq,wdt: convert bindings to dtschema
@ 2025-10-18 9:29 Aleksander Jan Bajkowski
2025-10-18 15:48 ` Krzysztof Kozlowski
0 siblings, 1 reply; 2+ messages in thread
From: Aleksander Jan Bajkowski @ 2025-10-18 9:29 UTC (permalink / raw)
To: wim, linux, robh, krzk+dt, conor+dt, hauke, linux-watchdog,
devicetree, linux-kernel
Cc: Aleksander Jan Bajkowski
Convert the Lantiq WDT Watchdog bindings to yaml format.
Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
---
v2:
- requirement of lantiq,rcu is now expressed as a schema
---
.../bindings/watchdog/lantiq,wdt.yaml | 63 +++++++++++++++++++
.../bindings/watchdog/lantiq-wdt.txt | 24 -------
2 files changed, 63 insertions(+), 24 deletions(-)
create mode 100644 Documentation/devicetree/bindings/watchdog/lantiq,wdt.yaml
delete mode 100644 Documentation/devicetree/bindings/watchdog/lantiq-wdt.txt
diff --git a/Documentation/devicetree/bindings/watchdog/lantiq,wdt.yaml b/Documentation/devicetree/bindings/watchdog/lantiq,wdt.yaml
new file mode 100644
index 000000000000..204e16be2a79
--- /dev/null
+++ b/Documentation/devicetree/bindings/watchdog/lantiq,wdt.yaml
@@ -0,0 +1,63 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/watchdog/lantiq,wdt.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Lantiq WTD watchdog
+
+maintainers:
+ - Hauke Mehrtens <hauke@hauke-m.de>
+
+properties:
+ compatible:
+ oneOf:
+ - enum:
+ - lantiq,falcon-wdt
+ - lantiq,wdt
+ - lantiq,xrx100-wdt
+ - items:
+ - enum:
+ - lantiq,xrx200-wdt
+ - lantiq,xrx300-wdt
+ - const: lantiq,xrx100-wdt
+
+ reg:
+ maxItems: 1
+
+ lantiq,rcu:
+ $ref: /schemas/types.yaml#/definitions/phandle
+ description: Phandle to the RCU syscon node
+
+required:
+ - compatible
+ - reg
+
+allOf:
+ - if:
+ properties:
+ compatible:
+ contains:
+ const: lantiq,xrx100-wdt
+ then:
+ required:
+ - lantiq,rcu
+ - if:
+ properties:
+ compatible:
+ contains:
+ const: lantiq,falcon-wdt
+ then:
+ required:
+ - lantiq,rcu
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ watchdog@803f0 {
+ compatible = "lantiq,xrx200-wdt", "lantiq,xrx100-wdt";
+ reg = <0x803f0 0x10>;
+
+ lantiq,rcu = <&rcu0>;
+ };
diff --git a/Documentation/devicetree/bindings/watchdog/lantiq-wdt.txt b/Documentation/devicetree/bindings/watchdog/lantiq-wdt.txt
deleted file mode 100644
index 18d4d8302702..000000000000
--- a/Documentation/devicetree/bindings/watchdog/lantiq-wdt.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-Lantiq WTD watchdog binding
-============================
-
-This describes the binding of the Lantiq watchdog driver.
-
--------------------------------------------------------------------------------
-Required properties:
-- compatible : Should be one of
- "lantiq,wdt"
- "lantiq,xrx100-wdt"
- "lantiq,xrx200-wdt", "lantiq,xrx100-wdt"
- "lantiq,falcon-wdt"
-- reg : Address of the watchdog block
-- lantiq,rcu : A phandle to the RCU syscon (required for
- "lantiq,falcon-wdt" and "lantiq,xrx100-wdt")
-
--------------------------------------------------------------------------------
-Example for the watchdog on the xRX200 SoCs:
- watchdog@803f0 {
- compatible = "lantiq,xrx200-wdt", "lantiq,xrx100-wdt";
- reg = <0x803f0 0x10>;
-
- lantiq,rcu = <&rcu0>;
- };
--
2.47.3
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v2] dt-bindings: watchdog: lantiq,wdt: convert bindings to dtschema
2025-10-18 9:29 [PATCH v2] dt-bindings: watchdog: lantiq,wdt: convert bindings to dtschema Aleksander Jan Bajkowski
@ 2025-10-18 15:48 ` Krzysztof Kozlowski
0 siblings, 0 replies; 2+ messages in thread
From: Krzysztof Kozlowski @ 2025-10-18 15:48 UTC (permalink / raw)
To: Aleksander Jan Bajkowski, wim, linux, robh, krzk+dt, conor+dt,
hauke, linux-watchdog, devicetree, linux-kernel
On 18/10/2025 11:29, Aleksander Jan Bajkowski wrote:
> Convert the Lantiq WDT Watchdog bindings to yaml format.
>
> Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
> ---
> v2:
> - requirement of lantiq,rcu is now expressed as a schema
> ---
> .../bindings/watchdog/lantiq,wdt.yaml | 63 +++++++++++++++++++
> .../bindings/watchdog/lantiq-wdt.txt | 24 -------
> 2 files changed, 63 insertions(+), 24 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/watchdog/lantiq,wdt.yaml
> delete mode 100644 Documentation/devicetree/bindings/watchdog/lantiq-wdt.txt
>
> diff --git a/Documentation/devicetree/bindings/watchdog/lantiq,wdt.yaml b/Documentation/devicetree/bindings/watchdog/lantiq,wdt.yaml
> new file mode 100644
> index 000000000000..204e16be2a79
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/watchdog/lantiq,wdt.yaml
> @@ -0,0 +1,63 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/watchdog/lantiq,wdt.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Lantiq WTD watchdog
> +
> +maintainers:
> + - Hauke Mehrtens <hauke@hauke-m.de>
> +
> +properties:
> + compatible:
> + oneOf:
> + - enum:
> + - lantiq,falcon-wdt
> + - lantiq,wdt
> + - lantiq,xrx100-wdt
> + - items:
> + - enum:
> + - lantiq,xrx200-wdt
> + - lantiq,xrx300-wdt
This wasn't in the old binding. Any change from pure conversion has to
be explained WHY in the commit msg.
What is more - it does not exist. You cannot just stuff here new
compatibles and call it "conversion". Conversion from dev/null into new
compatible?
> + - const: lantiq,xrx100-wdt
> +
> + reg:
> + maxItems: 1
> +
> + lantiq,rcu:
> + $ref: /schemas/types.yaml#/definitions/phandle
> + description: Phandle to the RCU syscon node
> +
> +required:
> + - compatible
> + - reg
> +
> +allOf:
> + - if:
> + properties:
> + compatible:
> + contains:
> + const: lantiq,xrx100-wdt
> + then:
> + required:
> + - lantiq,rcu
> + - if:
> + properties:
> + compatible:
> + contains:
> + const: lantiq,falcon-wdt
That's just enum in previous contains.
> + then:
> + required:
> + - lantiq,rcu
Missing ref to watchdog. Otherwise why do you have unevaluatedProperties?
> +
> +unevaluatedProperties: false
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-10-18 15:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-18 9:29 [PATCH v2] dt-bindings: watchdog: lantiq,wdt: convert bindings to dtschema Aleksander Jan Bajkowski
2025-10-18 15:48 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox