-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: watchdog: img,pdc-wdt: Convert to dtschema
Convert txt bindings of ImgTec's PDC watchdog timer to dtschema to allow for validation. Signed-off-by: Shresth Prasad <shrestprasad7@gmail.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20240527195811.7897-2-shresthprasad7@gmail.com Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
- Loading branch information
Shresth Prasad
authored and
Rob Herring (Arm)
committed
Jul 8, 2024
1 parent
bd7db32
commit fdd81e9
Showing
2 changed files
with
55 additions
and
19 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
Documentation/devicetree/bindings/watchdog/img,pdc-wdt.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/watchdog/img,pdc-wdt.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: ImgTec PowerDown Controller (PDC) Watchdog Timer (WDT) | ||
|
||
maintainers: | ||
- Shresth Prasad <shresthprasad7@gmail.com> | ||
|
||
allOf: | ||
- $ref: watchdog.yaml# | ||
|
||
properties: | ||
compatible: | ||
enum: | ||
- img,pdc-wdt | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks: | ||
items: | ||
- description: watchdog counter clock | ||
- description: register interface clock | ||
|
||
clock-names: | ||
items: | ||
- const: wdt | ||
- const: sys | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- clocks | ||
- clock-names | ||
- interrupts | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
watchdog@18102100 { | ||
compatible = "img,pdc-wdt"; | ||
reg = <0x18102100 0x100>; | ||
clocks = <&pdc_wdt_clk>, <&sys_clk>; | ||
clock-names = "wdt", "sys"; | ||
interrupts = <0 52 IRQ_TYPE_LEVEL_HIGH>; | ||
}; |
This file was deleted.
Oops, something went wrong.