1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2# Copyright 2019 BayLibre, SAS 3%YAML 1.2 4--- 5$id: "http://devicetree.org/schemas/watchdog/amlogic,meson-gxbb-wdt.yaml#" 6$schema: "http://devicetree.org/meta-schemas/core.yaml#" 7 8title: Meson GXBB SoCs Watchdog timer 9 10maintainers: 11 - Neil Armstrong <narmstrong@baylibre.com> 12 13properties: 14 compatible: 15 enum: 16 - amlogic,meson-gxbb-wdt 17 18 reg: 19 maxItems: 1 20 21 clocks: 22 maxItems: 1 23 description: 24 A phandle to the clock of this PHY 25 26required: 27 - compatible 28 - reg 29 - clocks 30 31examples: 32 - | 33 watchdog@98d0 { 34 compatible = "amlogic,meson-gxbb-wdt"; 35 reg = <0x98d0 0x10>; 36 clocks = <&xtal>; 37 }; 38