s3c-rtc.txt 738 B

123456789101112131415161718192021
  1. * Samsung's S3C Real Time Clock controller
  2. Required properties:
  3. - compatible: should be one of the following.
  4. * "samsung,s3c2410-rtc" - for controllers compatible with s3c2410 rtc.
  5. * "samsung,s3c6410-rtc" - for controllers compatible with s3c6410 rtc.
  6. - reg: physical base address of the controller and length of memory mapped
  7. region.
  8. - interrupts: Two interrupt numbers to the cpu should be specified. First
  9. interrupt number is the rtc alarm interupt and second interrupt number
  10. is the rtc tick interrupt. The number of cells representing a interrupt
  11. depends on the parent interrupt controller.
  12. Example:
  13. rtc@10070000 {
  14. compatible = "samsung,s3c6410-rtc";
  15. reg = <0x10070000 0x100>;
  16. interrupts = <44 0 45 0>;
  17. };