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

Documentation: dt: rtc: at91rm9200: add clocks property

The RTC needs an input clock, it is the slow clock. It is required as it
will not function without it.

Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>

+2
+2
Documentation/devicetree/bindings/rtc/atmel,at91rm9200-rtc.txt
··· 5 5 - reg: physical base address of the controller and length of memory mapped 6 6 region. 7 7 - interrupts: rtc alarm/event interrupt 8 + - clocks: phandle to input clock. 8 9 9 10 Example: 10 11 ··· 13 12 compatible = "atmel,at91rm9200-rtc"; 14 13 reg = <0xfffffe00 0x100>; 15 14 interrupts = <1 4 7>; 15 + clocks = <&clk32k>; 16 16 };