14f12de0aSAlexandre Belloni# SPDX-License-Identifier: GPL-2.0
24f12de0aSAlexandre Belloni%YAML 1.2
34f12de0aSAlexandre Belloni---
44f12de0aSAlexandre Belloni$id: http://devicetree.org/schemas/rtc/atmel,at91rm9200-rtc.yaml#
54f12de0aSAlexandre Belloni$schema: http://devicetree.org/meta-schemas/core.yaml#
64f12de0aSAlexandre Belloni
74f12de0aSAlexandre Bellonititle: Atmel AT91 RTC Device Tree Bindings
84f12de0aSAlexandre Belloni
94f12de0aSAlexandre BelloniallOf:
104f12de0aSAlexandre Belloni  - $ref: "rtc.yaml#"
114f12de0aSAlexandre Belloni
124f12de0aSAlexandre Bellonimaintainers:
134f12de0aSAlexandre Belloni  - Alexandre Belloni <alexandre.belloni@bootlin.com>
144f12de0aSAlexandre Belloni
154f12de0aSAlexandre Belloniproperties:
164f12de0aSAlexandre Belloni  compatible:
174f12de0aSAlexandre Belloni    enum:
184f12de0aSAlexandre Belloni      - atmel,at91rm9200-rtc
194f12de0aSAlexandre Belloni      - atmel,at91sam9x5-rtc
20ca3fdc98SAlexandre Belloni      - atmel,sama5d4-rtc
21ca3fdc98SAlexandre Belloni      - atmel,sama5d2-rtc
224f12de0aSAlexandre Belloni      - microchip,sam9x60-rtc
234f12de0aSAlexandre Belloni
244f12de0aSAlexandre Belloni  reg:
254f12de0aSAlexandre Belloni    maxItems: 1
264f12de0aSAlexandre Belloni
274f12de0aSAlexandre Belloni  interrupts:
284f12de0aSAlexandre Belloni    maxItems: 1
294f12de0aSAlexandre Belloni
304f12de0aSAlexandre Bellonirequired:
314f12de0aSAlexandre Belloni  - compatible
324f12de0aSAlexandre Belloni  - reg
334f12de0aSAlexandre Belloni  - interrupts
344f12de0aSAlexandre Belloni
354f12de0aSAlexandre BelloniadditionalProperties: false
364f12de0aSAlexandre Belloni
374f12de0aSAlexandre Belloniexamples:
384f12de0aSAlexandre Belloni  - |
394f12de0aSAlexandre Belloni    rtc@fffffe00 {
404f12de0aSAlexandre Belloni        compatible = "atmel,at91rm9200-rtc";
414f12de0aSAlexandre Belloni        reg = <0xfffffe00 0x100>;
424f12de0aSAlexandre Belloni        interrupts = <1 4 7>;
434f12de0aSAlexandre Belloni        clocks = <&clk32k>;
444f12de0aSAlexandre Belloni    };
454f12de0aSAlexandre Belloni...
46