armada-380-rtc.txt 611 B

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