brintos

brintos / linux-shallow public Read only

0
0
Text · 947 B · 7e4bfef Raw
46 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/technologic,ts7200-wdt.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Technologic Systems TS-72xx based SBCs watchdog8 9maintainers:10  - Nikita Shubin <nikita.shubin@maquefel.me>11 12allOf:13  - $ref: watchdog.yaml#14 15properties:16  compatible:17    oneOf:18      - const: technologic,ts7200-wdt19      - items:20          - enum:21              - technologic,ts7300-wdt22              - technologic,ts7260-wdt23              - technologic,ts7250-wdt24          - const: technologic,ts7200-wdt25 26  reg:27    items:28      - description: control register29      - description: feed register30 31required:32  - compatible33  - reg34 35unevaluatedProperties: false36 37examples:38  - |39    watchdog@23800000 {40      compatible = "technologic,ts7200-wdt";41      reg = <0x23800000 0x01>, <0x23c00000 0x01>;42      timeout-sec = <30>;43    };44 45...46