xref: /freebsd/sys/contrib/device-tree/Bindings/rtc/sa1100-rtc.txt (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot* Marvell Real Time Clock controller
2*c66ec88fSEmmanuel Vadot
3*c66ec88fSEmmanuel VadotRequired properties:
4*c66ec88fSEmmanuel Vadot- compatible: should be "mrvl,sa1100-rtc"
5*c66ec88fSEmmanuel Vadot- reg: physical base address of the controller and length of memory mapped
6*c66ec88fSEmmanuel Vadot  region.
7*c66ec88fSEmmanuel Vadot- interrupts: Should be two. The first interrupt number is the rtc alarm
8*c66ec88fSEmmanuel Vadot  interrupt and the second interrupt number is the rtc hz interrupt.
9*c66ec88fSEmmanuel Vadot- interrupt-names: Assign name of irq resource.
10*c66ec88fSEmmanuel Vadot
11*c66ec88fSEmmanuel VadotExample:
12*c66ec88fSEmmanuel Vadot	rtc: rtc@d4010000 {
13*c66ec88fSEmmanuel Vadot		compatible = "mrvl,mmp-rtc";
14*c66ec88fSEmmanuel Vadot		reg = <0xd4010000 0x1000>;
15*c66ec88fSEmmanuel Vadot		interrupts = <5>, <6>;
16*c66ec88fSEmmanuel Vadot		interrupt-names = "rtc 1Hz", "rtc alarm";
17*c66ec88fSEmmanuel Vadot	};
18