nxp,lpc1788-rtc.txt 675 B

123456789101112131415161718192021
  1. NXP LPC1788 real-time clock
  2. The LPC1788 RTC provides calendar and clock functionality
  3. together with periodic tick and alarm interrupt support.
  4. Required properties:
  5. - compatible : must contain "nxp,lpc1788-rtc"
  6. - reg : Specifies base physical address and size of the registers.
  7. - interrupts : A single interrupt specifier.
  8. - clocks : Must contain clock specifiers for rtc and register clock
  9. - clock-names : Must contain "rtc" and "reg"
  10. See ../clocks/clock-bindings.txt for details.
  11. Example:
  12. rtc: rtc@40046000 {
  13. compatible = "nxp,lpc1788-rtc";
  14. reg = <0x40046000 0x1000>;
  15. interrupts = <47>;
  16. clocks = <&creg_clk 0>, <&ccu1 CLK_CPU_BUS>;
  17. clock-names = "rtc", "reg";
  18. };