atmel,at91sam9-rtc.txt 754 B

1234567891011121314151617181920212223
  1. Atmel AT91SAM9260 Real Time Timer
  2. Required properties:
  3. - compatible: should be: "atmel,at91sam9260-rtt"
  4. - reg: should encode the memory region of the RTT controller
  5. - interrupts: rtt alarm/event interrupt
  6. - clocks: should contain the 32 KHz slow clk that will drive the RTT block.
  7. - atmel,rtt-rtc-time-reg: should encode the GPBR register used to store
  8. the time base when the RTT is used as an RTC.
  9. The first cell should point to the GPBR node and the second one
  10. encode the offset within the GPBR block (or in other words, the
  11. GPBR register used to store the time base).
  12. Example:
  13. rtt@fffffd20 {
  14. compatible = "atmel,at91sam9260-rtt";
  15. reg = <0xfffffd20 0x10>;
  16. interrupts = <1 4 7>;
  17. clocks = <&clk32k>;
  18. atmel,rtt-rtc-time-reg = <&gpbr 0x0>;
  19. };