brintos

brintos / linux-shallow public Read only

0
0
Text · 963 B · d0eff1e Raw
51 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2# Copyright 2019 BayLibre, SAS3%YAML 1.24---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 timer9 10maintainers:11  - Neil Armstrong <neil.armstrong@linaro.org>12 13allOf:14  - $ref: watchdog.yaml#15 16properties:17  compatible:18    oneOf:19      - enum:20          - amlogic,meson-gxbb-wdt21          - amlogic,t7-wdt22      - items:23          - enum:24              - amlogic,a4-wdt25              - amlogic,c3-wdt26              - amlogic,s4-wdt27          - const: amlogic,t7-wdt28 29  reg:30    maxItems: 131 32  clocks:33    maxItems: 134    description:35      A phandle to the clock of this PHY36 37required:38  - compatible39  - reg40  - clocks41 42unevaluatedProperties: false43 44examples:45  - |46    watchdog@98d0 {47        compatible = "amlogic,meson-gxbb-wdt";48        reg = <0x98d0 0x10>;49        clocks = <&xtal>;50    };51