sa1100-rtc.txt 539 B

1234567891011121314151617
  1. * Marvell Real Time Clock controller
  2. Required properties:
  3. - compatible: should be "mrvl,sa1100-rtc"
  4. - reg: physical base address of the controller and length of memory mapped
  5. region.
  6. - interrupts: Should be two. The first interrupt number is the rtc alarm
  7. interrupt and the second interrupt number is the rtc hz interrupt.
  8. - interrupt-names: Assign name of irq resource.
  9. Example:
  10. rtc: rtc@d4010000 {
  11. compatible = "mrvl,mmp-rtc";
  12. reg = <0xd4010000 0x1000>;
  13. interrupts = <5>, <6>;
  14. interrupt-name = "rtc 1Hz", "rtc alarm";
  15. };