]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/rtc/s3c-rtc.txt
Merge remote-tracking branch 'kgdb/kgdb-next'
[karo-tx-linux.git] / Documentation / devicetree / bindings / rtc / s3c-rtc.txt
1 * Samsung's S3C Real Time Clock controller
2
3 Required properties:
4 - compatible: should be one of the following.
5     * "samsung,s3c2410-rtc" - for controllers compatible with s3c2410 rtc.
6     * "samsung,s3c2416-rtc" - for controllers compatible with s3c2416 rtc.
7     * "samsung,s3c2443-rtc" - for controllers compatible with s3c2443 rtc.
8     * "samsung,s3c6410-rtc" - for controllers compatible with s3c6410 rtc.
9     * "samsung,exynos3250-rtc" - (deprecated) for controllers compatible with
10                                  exynos3250 rtc (use "samsung,s3c6410-rtc").
11 - reg: physical base address of the controller and length of memory mapped
12   region.
13 - interrupts: Two interrupt numbers to the cpu should be specified. First
14   interrupt number is the rtc alarm interrupt and second interrupt number
15   is the rtc tick interrupt. The number of cells representing a interrupt
16   depends on the parent interrupt controller.
17
18 Example:
19
20         rtc@10070000 {
21                 compatible = "samsung,s3c6410-rtc";
22                 reg = <0x10070000 0x100>;
23                 interrupts = <44 0 45 0>;
24         };