44 lines
780 B
YAML
Raw Normal View History

2026-01-21 18:59:54 +08:00
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
# Copyright 2019 BayLibre, SAS
%YAML 1.2
---
2026-01-29 22:25:33 +08:00
$id: http://devicetree.org/schemas/watchdog/amlogic,meson-gxbb-wdt.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
2026-01-21 18:59:54 +08:00
title: Meson GXBB SoCs Watchdog timer
maintainers:
2026-01-29 22:25:33 +08:00
- Neil Armstrong <neil.armstrong@linaro.org>
2026-01-21 18:59:54 +08:00
allOf:
- $ref: watchdog.yaml#
properties:
compatible:
enum:
- amlogic,meson-gxbb-wdt
2026-01-29 22:25:33 +08:00
- amlogic,t7-wdt
2026-01-21 18:59:54 +08:00
reg:
maxItems: 1
clocks:
maxItems: 1
description:
A phandle to the clock of this PHY
required:
- compatible
- reg
- clocks
unevaluatedProperties: false
examples:
- |
watchdog@98d0 {
2026-01-29 22:25:33 +08:00
compatible = "amlogic,meson-gxbb-wdt";
reg = <0x98d0 0x10>;
clocks = <&xtal>;
2026-01-21 18:59:54 +08:00
};