alphascale,asm9260-rtc.txt 515 B

1234567891011121314151617181920
  1. * Alphascale asm9260 SoC Real Time Clock
  2. Required properties:
  3. - compatible: Should be "alphascale,asm9260-rtc"
  4. - reg: Physical base address of the controller and length
  5. of memory mapped region.
  6. - interrupts: IRQ line for the RTC.
  7. - clocks: Reference to the clock entry.
  8. - clock-names: should contain:
  9. * "ahb" for the SoC RTC clock
  10. Example:
  11. rtc0: rtc@800a0000 {
  12. compatible = "alphascale,asm9260-rtc";
  13. reg = <0x800a0000 0x100>;
  14. clocks = <&acc CLKID_AHB_RTC>;
  15. clock-names = "ahb";
  16. interrupts = <2>;
  17. };