brintos

brintos / linux-shallow public Read only

0
0
Text · 778 B · 51e00de Raw
47 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/ralink,rt2880-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: ralink,rt2880-wdt18 19  reg:20    maxItems: 121 22  clocks:23    maxItems: 124 25  resets:26    maxItems: 127 28  interrupts:29    maxItems: 130 31required:32  - compatible33  - reg34 35unevaluatedProperties: false36 37examples:38  - |39    watchdog@100 {40      compatible = "ralink,rt2880-wdt";41      reg = <0x120 0x10>;42      clocks = <&clkref>;43      resets = <&rstctrl 8>;44      interrupt-parent = <&intc>;45      interrupts = <1>;46    };47