1809Sjoehw# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2968Sfyuan# Copyright 2019 BayLibre, SAS
3809Sjoehw%YAML 1.2
4809Sjoehw---
5809Sjoehw$id: http://devicetree.org/schemas/watchdog/amlogic,meson-gxbb-wdt.yaml#
6809Sjoehw$schema: http://devicetree.org/meta-schemas/core.yaml#
7809Sjoehw
8809Sjoehwtitle: Meson GXBB SoCs Watchdog timer
9809Sjoehw
10809Sjoehwmaintainers:
11809Sjoehw  - Neil Armstrong <neil.armstrong@linaro.org>
12809Sjoehw
13809SjoehwallOf:
14809Sjoehw  - $ref: watchdog.yaml#
15809Sjoehw
16809Sjoehwproperties:
17809Sjoehw  compatible:
18809Sjoehw    oneOf:
19809Sjoehw      - enum:
20809Sjoehw          - amlogic,meson-gxbb-wdt
21809Sjoehw          - amlogic,t7-wdt
22809Sjoehw      - items:
23809Sjoehw          - enum:
24809Sjoehw              - amlogic,c3-wdt
25809Sjoehw              - amlogic,s4-wdt
26809Sjoehw          - const: amlogic,t7-wdt
27809Sjoehw
28809Sjoehw  reg:
29809Sjoehw    maxItems: 1
30809Sjoehw
31809Sjoehw  clocks:
32968Sfyuan    maxItems: 1
33809Sjoehw    description:
34809Sjoehw      A phandle to the clock of this PHY
35809Sjoehw
36809Sjoehwrequired:
37809Sjoehw  - compatible
38968Sfyuan  - reg
39968Sfyuan  - clocks
40968Sfyuan
41809SjoehwunevaluatedProperties: false
42809Sjoehw
43968Sfyuanexamples:
44809Sjoehw  - |
45809Sjoehw    watchdog@98d0 {
46809Sjoehw        compatible = "amlogic,meson-gxbb-wdt";
47809Sjoehw        reg = <0x98d0 0x10>;
48809Sjoehw        clocks = <&xtal>;
49809Sjoehw    };
50809Sjoehw