brintos

brintos / linux-shallow public Read only

0
0
Text · 873 B · 5dbe891 Raw
43 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/cirrus,ep9301-wdt.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Cirrus Logic EP93xx Watchdog Timer8 9maintainers:10  - Nikita Shubin <nikita.shubin@maquefel.me>11  - Alexander Sverdlin <alexander.sverdlin@gmail.com>12 13allOf:14  - $ref: watchdog.yaml#15 16properties:17  compatible:18    oneOf:19      - const: cirrus,ep9301-wdt20      - items:21          - enum:22              - cirrus,ep9302-wdt23              - cirrus,ep9307-wdt24              - cirrus,ep9312-wdt25              - cirrus,ep9315-wdt26          - const: cirrus,ep9301-wdt27 28  reg:29    maxItems: 130 31required:32  - compatible33  - reg34 35unevaluatedProperties: false36 37examples:38  - |39    watchdog@80940000 {40        compatible = "cirrus,ep9301-wdt";41        reg = <0x80940000 0x08>;42    };43