Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) |
| 2 | %YAML 1.2 |
| 3 | --- |
| 4 | $id: http://devicetree.org/schemas/watchdog/maxim,max63xx.yaml# |
| 5 | $schema: http://devicetree.org/meta-schemas/core.yaml# |
| 6 | |
| 7 | title: Maxim 63xx Watchdog Timers |
| 8 | |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 9 | maintainers: |
| 10 | - Marc Zyngier <maz@kernel.org> |
| 11 | - Linus Walleij <linus.walleij@linaro.org> |
| 12 | |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame] | 13 | allOf: |
| 14 | - $ref: watchdog.yaml# |
| 15 | - $ref: /schemas/memory-controllers/mc-peripheral-props.yaml# |
| 16 | |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 17 | properties: |
| 18 | compatible: |
| 19 | enum: |
| 20 | - maxim,max6369 |
| 21 | - maxim,max6370 |
| 22 | - maxim,max6371 |
| 23 | - maxim,max6372 |
| 24 | - maxim,max6373 |
| 25 | - maxim,max6374 |
| 26 | |
| 27 | reg: |
| 28 | description: This is a 1-byte memory-mapped address |
| 29 | maxItems: 1 |
| 30 | |
| 31 | required: |
| 32 | - compatible |
| 33 | - reg |
| 34 | |
| 35 | unevaluatedProperties: false |
| 36 | |
| 37 | examples: |
| 38 | - | |
| 39 | wdt: watchdog@50000000 { |
| 40 | compatible = "maxim,max6369"; |
| 41 | reg = <0x50000000 0x1>; |
| 42 | timeout-sec = <10>; |
| 43 | }; |
| 44 | |
| 45 | ... |