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
7dd3cb467SAndrew Lunntitle: Atmel AT91 RTC
84f12de0aSAlexandre Belloni
94f12de0aSAlexandre BelloniallOf:
10ab0fccc3SRob Herring  - $ref: rtc.yaml#
114f12de0aSAlexandre Belloni
124f12de0aSAlexandre Bellonimaintainers:
134f12de0aSAlexandre Belloni  - Alexandre Belloni <alexandre.belloni@bootlin.com>
144f12de0aSAlexandre Belloni
154f12de0aSAlexandre Belloniproperties:
164f12de0aSAlexandre Belloni  compatible:
17*0197a7cbSVarshini Rajendran    oneOf:
18*0197a7cbSVarshini Rajendran      - enum:
194f12de0aSAlexandre Belloni          - atmel,at91rm9200-rtc
204f12de0aSAlexandre Belloni          - atmel,at91sam9x5-rtc
21ca3fdc98SAlexandre Belloni          - atmel,sama5d4-rtc
22ca3fdc98SAlexandre Belloni          - atmel,sama5d2-rtc
234f12de0aSAlexandre Belloni          - microchip,sam9x60-rtc
2451f9b1f8SClaudiu Beznea          - microchip,sama7g5-rtc
25*0197a7cbSVarshini Rajendran      - items:
26*0197a7cbSVarshini Rajendran          - const: microchip,sam9x7-rtc
27*0197a7cbSVarshini Rajendran          - const: microchip,sam9x60-rtc
284f12de0aSAlexandre Belloni
294f12de0aSAlexandre Belloni  reg:
304f12de0aSAlexandre Belloni    maxItems: 1
314f12de0aSAlexandre Belloni
324f12de0aSAlexandre Belloni  interrupts:
334f12de0aSAlexandre Belloni    maxItems: 1
344f12de0aSAlexandre Belloni
35f4571924SAlexandre Belloni  clocks:
36f4571924SAlexandre Belloni    maxItems: 1
37f4571924SAlexandre Belloni
384f12de0aSAlexandre Bellonirequired:
394f12de0aSAlexandre Belloni  - compatible
404f12de0aSAlexandre Belloni  - reg
414f12de0aSAlexandre Belloni  - interrupts
42f4571924SAlexandre Belloni  - clocks
434f12de0aSAlexandre Belloni
444f12de0aSAlexandre BelloniadditionalProperties: false
454f12de0aSAlexandre Belloni
464f12de0aSAlexandre Belloniexamples:
474f12de0aSAlexandre Belloni  - |
484f12de0aSAlexandre Belloni    rtc@fffffe00 {
494f12de0aSAlexandre Belloni        compatible = "atmel,at91rm9200-rtc";
504f12de0aSAlexandre Belloni        reg = <0xfffffe00 0x100>;
514f12de0aSAlexandre Belloni        interrupts = <1 4 7>;
524f12de0aSAlexandre Belloni        clocks = <&clk32k>;
534f12de0aSAlexandre Belloni    };
544f12de0aSAlexandre Belloni...
55