blob: 968ac820254bbbae3ddd8cdb5b9e174c6a477083 [file] [log] [blame]
Haojian Zhuang46e446d2012-03-01 13:49:57 +08001* Marvell Real Time Clock controller
2
3Required properties:
4- compatible: should be "mrvl,sa1100-rtc"
5- reg: physical base address of the controller and length of memory mapped
6 region.
7- interrupts: Should be two. The first interrupt number is the rtc alarm
8 interrupt and the second interrupt number is the rtc hz interrupt.
9- interrupt-names: Assign name of irq resource.
10
11Example:
12 rtc: rtc@d4010000 {
13 compatible = "mrvl,mmp-rtc";
14 reg = <0xd4010000 0x1000>;
15 interrupts = <5>, <6>;
Geert Uytterhoeven01dc6992016-04-20 17:32:18 +020016 interrupt-names = "rtc 1Hz", "rtc alarm";
Haojian Zhuang46e446d2012-03-01 13:49:57 +080017 };