blob: 2a0ea1696317c63d3bad63c1a8cd257c7c21a577 [file] [log] [blame]
Tom Rini93743d22024-04-01 09:08:13 -04001# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/watchdog/realtek,rtd1295-watchdog.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Realtek RTD1295 Watchdog
8
9maintainers:
10 - Andreas Färber <afaerber@suse.de>
11
12allOf:
13 - $ref: watchdog.yaml#
14
15properties:
16 compatible:
17 const: realtek,rtd1295-watchdog
18
19 reg:
20 maxItems: 1
21
22 clocks:
23 maxItems: 1
24
25required:
26 - compatible
27 - reg
28 - clocks
29
30unevaluatedProperties: false
31
32examples:
33 - |
34 watchdog@98007680 {
35 compatible = "realtek,rtd1295-watchdog";
36 reg = <0x98007680 0x100>;
37 clocks = <&osc27M>;
38 };