0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/rtc/imxdi-rtc.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: i.MX25 Real Time Clock controller
0008
0009 maintainers:
0010 - Roland Stigge <stigge@antcom.de>
0011
0012 properties:
0013 compatible:
0014 const: fsl,imx25-rtc
0015
0016 reg:
0017 maxItems: 1
0018
0019 interrupts:
0020 items:
0021 - description: rtc alarm interrupt
0022 - description: dryice security violation interrupt
0023 minItems: 1
0024
0025 clocks:
0026 maxItems: 1
0027
0028 required:
0029 - compatible
0030 - reg
0031 - interrupts
0032 - clocks
0033
0034 additionalProperties: false
0035
0036 examples:
0037 - |
0038 rtc@53ffc000 {
0039 compatible = "fsl,imx25-rtc";
0040 reg = <0x53ffc000 0x4000>;
0041 clocks = <&clks 81>;
0042 interrupts = <25>, <56>;
0043 };