armada-380-rtc.txt 717 B

123456789101112131415161718192021222324
  1. * Real Time Clock of the Armada 38x/7K/8K SoCs
  2. RTC controller for the Armada 38x, 7K and 8K SoCs
  3. Required properties:
  4. - compatible : Should be one of the following:
  5. "marvell,armada-380-rtc" for Armada 38x SoC
  6. "marvell,armada-8k-rtc" for Aramda 7K/8K SoCs
  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. Example:
  15. rtc@a3800 {
  16. compatible = "marvell,armada-380-rtc";
  17. reg = <0xa3800 0x20>, <0x184a0 0x0c>;
  18. reg-names = "rtc", "rtc-soc";
  19. interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
  20. };