xref: /linux/Documentation/devicetree/bindings/rtc/nuvoton,ma35d1-rtc.yaml (revision 6e7fd890f1d6ac83805409e9c346240de2705584)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/rtc/nuvoton,ma35d1-rtc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Nuvoton MA35D1 Real Time Clock
8
9maintainers:
10  - Min-Jen Chen <mjchen@nuvoton.com>
11
12allOf:
13  - $ref: rtc.yaml#
14
15properties:
16  compatible:
17    enum:
18      - nuvoton,ma35d1-rtc
19
20  reg:
21    maxItems: 1
22
23  interrupts:
24    maxItems: 1
25
26  clocks:
27    maxItems: 1
28
29required:
30  - compatible
31  - reg
32  - interrupts
33  - clocks
34
35unevaluatedProperties: false
36
37examples:
38  - |
39    #include <dt-bindings/interrupt-controller/arm-gic.h>
40    #include <dt-bindings/clock/nuvoton,ma35d1-clk.h>
41    rtc@40410000 {
42        compatible = "nuvoton,ma35d1-rtc";
43        reg = <0x40410000 0x200>;
44        interrupts = <GIC_SPI 5 IRQ_TYPE_EDGE_RISING>;
45        clocks = <&clk RTC_GATE>;
46    };
47
48...
49