1# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/rtc/atmel,at91rm9200-rtc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Atmel AT91 RTC Device Tree Bindings
8
9allOf:
10  - $ref: "rtc.yaml#"
11
12maintainers:
13  - Alexandre Belloni <alexandre.belloni@bootlin.com>
14
15properties:
16  compatible:
17    enum:
18      - atmel,at91rm9200-rtc
19      - atmel,at91sam9x5-rtc
20      - microchip,sam9x60-rtc
21
22  reg:
23    maxItems: 1
24
25  interrupts:
26    maxItems: 1
27
28required:
29  - compatible
30  - reg
31  - interrupts
32
33additionalProperties: false
34
35examples:
36  - |
37    rtc@fffffe00 {
38        compatible = "atmel,at91rm9200-rtc";
39        reg = <0xfffffe00 0x100>;
40        interrupts = <1 4 7>;
41        clocks = <&clk32k>;
42    };
43...
44