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

doc: dt: add documentation for alphascale,asm9260-rtc

Document Alphascale asm9260 RTC bindings

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>

authored by

Oleksij Rempel and committed by
Alexandre Belloni
7444845b 125e550f

+19
+19
Documentation/devicetree/bindings/rtc/alphascale,asm9260-rtc.txt
··· 1 + * Alphascale asm9260 SoC Real Time Clock 2 + 3 + Required properties: 4 + - compatible: Should be "alphascale,asm9260-rtc" 5 + - reg: Physical base address of the controller and length 6 + of memory mapped region. 7 + - interrupts: IRQ line for the RTC. 8 + - clocks: Reference to the clock entry. 9 + - clock-names: should contain: 10 + * "ahb" for the SoC RTC clock 11 + 12 + Example: 13 + rtc0: rtc@800a0000 { 14 + compatible = "alphascale,asm9260-rtc"; 15 + reg = <0x800a0000 0x100>; 16 + clocks = <&acc CLKID_AHB_RTC>; 17 + clock-names = "ahb"; 18 + interrupts = <2>; 19 + };