rtc-mxc.txt 678 B

1234567891011121314151617181920212223242526
  1. * Real Time Clock of the i.MX SoCs
  2. RTC controller for the i.MX SoCs
  3. Required properties:
  4. - compatible: Should be "fsl,imx1-rtc" or "fsl,imx21-rtc".
  5. - reg: physical base address of the controller and length of memory mapped
  6. region.
  7. - interrupts: IRQ line for the RTC.
  8. - clocks: should contain two entries:
  9. * one for the input reference
  10. * one for the the SoC RTC
  11. - clock-names: should contain:
  12. * "ref" for the input reference clock
  13. * "ipg" for the SoC RTC clock
  14. Example:
  15. rtc@10007000 {
  16. compatible = "fsl,imx21-rtc";
  17. reg = <0x10007000 0x1000>;
  18. interrupts = <22>;
  19. clocks = <&clks IMX27_CLK_CKIL>,
  20. <&clks IMX27_CLK_RTC_IPG_GATE>;
  21. clock-names = "ref", "ipg";
  22. };