rtc-omap.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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. - "ti,am4372-rtc" - for RTC IP used similar to that on AM437X SoC family.
  11. - reg: Address range of rtc register set
  12. - interrupts: rtc timer, alarm interrupts in order
  13. - interrupt-parent: phandle for the interrupt controller
  14. Optional properties:
  15. - system-power-controller: whether the rtc is controlling the system power
  16. through pmic_power_en
  17. - clocks: Any internal or external clocks feeding in to rtc
  18. - clock-names: Corresponding names of the clocks
  19. Example:
  20. rtc@1c23000 {
  21. compatible = "ti,da830-rtc";
  22. reg = <0x23000 0x1000>;
  23. interrupts = <19
  24. 19>;
  25. interrupt-parent = <&intc>;
  26. system-power-controller;
  27. clocks = <&clk_32k_rtc>, <&clk_32768_ck>;
  28. clock-names = "ext-clk", "int-clk";
  29. };