rtc-omap.txt 832 B

1234567891011121314151617181920212223242526272829
  1. TI Real Time Clock
  2. Required properties:
  3. - compatible:
  4. - "ti,da830-rtc" - for RTC IP used similar to that on DA8xx SoC family.
  5. - "ti,am3352-rtc" - for RTC IP used similar to that on AM335x SoC family.
  6. This RTC IP has special WAKE-EN Register to enable
  7. Wakeup generation for event Alarm. It can also be
  8. used to control an external PMIC via the
  9. pmic_power_en pin.
  10. - reg: Address range of rtc register set
  11. - interrupts: rtc timer, alarm interrupts in order
  12. - interrupt-parent: phandle for the interrupt controller
  13. Optional properties:
  14. - system-power-controller: whether the rtc is controlling the system power
  15. through pmic_power_en
  16. Example:
  17. rtc@1c23000 {
  18. compatible = "ti,da830-rtc";
  19. reg = <0x23000 0x1000>;
  20. interrupts = <19
  21. 19>;
  22. interrupt-parent = <&intc>;
  23. system-power-controller;
  24. };