0001 * Real Time Clock of the Armada 38x/7K/8K SoCs
0002
0003 RTC controller for the Armada 38x, 7K and 8K SoCs
0004
0005 Required properties:
0006 - compatible : Should be one of the following:
0007 "marvell,armada-380-rtc" for Armada 38x SoC
0008 "marvell,armada-8k-rtc" for Aramda 7K/8K SoCs
0009 - reg: a list of base address and size pairs, one for each entry in
0010 reg-names
0011 - reg names: should contain:
0012 * "rtc" for the RTC registers
0013 * "rtc-soc" for the SoC related registers and among them the one
0014 related to the interrupt.
0015 - interrupts: IRQ line for the RTC.
0016
0017 Example:
0018
0019 rtc@a3800 {
0020 compatible = "marvell,armada-380-rtc";
0021 reg = <0xa3800 0x20>, <0x184a0 0x0c>;
0022 reg-names = "rtc", "rtc-soc";
0023 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
0024 };