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