1* Real Time Clock of the Armada 38x SoCs
2
3RTC controller for the Armada 38x SoCs
4
5Required properties:
6- compatible : Should be "marvell,armada-380-rtc"
7- reg: a list of base address and size pairs, one for each entry in
8  reg-names
9- reg names: should contain:
10  * "rtc" for the RTC registers
11  * "rtc-soc" for the SoC related registers and among them the one
12    related to the interrupt.
13- interrupts: IRQ line for the RTC.
14
15Example:
16
17rtc@a3800 {
18	compatible = "marvell,armada-380-rtc";
19	reg = <0xa3800 0x20>, <0x184a0 0x0c>;
20	reg-names = "rtc", "rtc-soc";
21	interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
22};
23