microchip,pic32-rtc.txt 612 B

12345678910111213141516171819202122
  1. * Microchip PIC32 Real Time Clock and Calendar
  2. The RTCC keeps time in hours, minutes, and seconds, and one half second. It
  3. provides a calendar in weekday, date, month, and year. It also provides a
  4. configurable alarm.
  5. Required properties:
  6. - compatible: should be: "microchip,pic32mzda-rtc"
  7. - reg: physical base address of the controller and length of memory mapped
  8. region.
  9. - interrupts: RTC alarm/event interrupt
  10. - clocks: clock phandle
  11. Example:
  12. rtc: rtc@1f8c0000 {
  13. compatible = "microchip,pic32mzda-rtc";
  14. reg = <0x1f8c0000 0x60>;
  15. interrupts = <166 IRQ_TYPE_EDGE_RISING>;
  16. clocks = <&PBCLK6>;
  17. };