brintos

brintos / linux-shallow public Read only

0
0
Text · 805 B · 1816086 Raw
41 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/watchdog/mediatek,mt7621-wdt.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Ralink Watchdog Timers8 9maintainers:10  - Sergio Paracuellos <sergio.paracuellos@gmail.com>11 12allOf:13  - $ref: watchdog.yaml#14 15properties:16  compatible:17    const: mediatek,mt7621-wdt18 19  reg:20    maxItems: 121 22  mediatek,sysctl:23    $ref: /schemas/types.yaml#/definitions/phandle24    description:25      phandle to system controller 'sysc' syscon node which26      controls system registers27 28required:29  - compatible30  - reg31 32additionalProperties: false33 34examples:35  - |36    watchdog@100 {37        compatible = "mediatek,mt7621-wdt";38        reg = <0x100 0x100>;39        mediatek,sysctl = <&sysc>;40    };41