diff options
author | Patrick Bruenn <p.bruenn@beckhoff.com> | 2017-12-18 06:51:30 -0500 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2018-01-11 18:20:39 -0500 |
commit | 3394f594de244632c682f9faee054063158f8941 (patch) | |
tree | cc65d8bbfab6dac397aa7f9f86cb5e88a4ba4691 | |
parent | 298c8545206b2dd963079ff48fafd909e099856e (diff) |
dt-bindings: rtc: add bindings for i.MX53 SRTC
Document the binding for i.MX53 SRTC implemented by rtc-mxc_v2
Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
-rw-r--r-- | Documentation/devicetree/bindings/rtc/rtc-mxc_v2.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/rtc/rtc-mxc_v2.txt b/Documentation/devicetree/bindings/rtc/rtc-mxc_v2.txt new file mode 100644 index 000000000000..79d7e87b0d91 --- /dev/null +++ b/Documentation/devicetree/bindings/rtc/rtc-mxc_v2.txt | |||
@@ -0,0 +1,17 @@ | |||
1 | * i.MX53 Secure Real Time Clock (SRTC) | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: should be: "fsl,imx53-rtc" | ||
5 | - reg: physical base address of the controller and length of memory mapped | ||
6 | region. | ||
7 | - clocks: should contain the phandle for the rtc clock | ||
8 | - interrupts: rtc alarm interrupt | ||
9 | |||
10 | Example: | ||
11 | |||
12 | rtc@53fa4000 { | ||
13 | compatible = "fsl,imx53-rtc"; | ||
14 | reg = <0x53fa4000 0x4000>; | ||
15 | interrupts = <24>; | ||
16 | clocks = <&clks IMX5_CLK_SRTC_GATE>; | ||
17 | }; | ||