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