WIP FPC-III support
[linux/fpc-iii.git] / Documentation / devicetree / bindings / rtc / imxdi-rtc.yaml
blob06bd737821c1871245d796358b2cbc6910f5c276
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/rtc/imxdi-rtc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: i.MX25 Real Time Clock controller
9 maintainers:
10   - Roland Stigge <stigge@antcom.de>
12 properties:
13   compatible:
14     const: fsl,imx25-rtc
16   reg:
17     maxItems: 1
19   interrupts:
20     items:
21       - description: rtc alarm interrupt
22       - description: dryice security violation interrupt
23     minItems: 1
24     maxItems: 2
26   clocks:
27     maxItems: 1
29 required:
30   - compatible
31   - reg
32   - interrupts
33   - clocks
35 additionalProperties: false
37 examples:
38   - |
39     rtc@53ffc000 {
40         compatible = "fsl,imx25-rtc";
41         reg = <0x53ffc000 0x4000>;
42         clocks = <&clks 81>;
43         interrupts = <25>, <56>;
44     };