Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Patrick Bruenn and committed by
Alexandre Belloni
3394f594 298c8545

+17
+17
Documentation/devicetree/bindings/rtc/rtc-mxc_v2.txt
··· 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 + };