blob: 750efd40c72e5f1bc0e5d52d5e2178e7c6a31138 [file] [log] [blame]
Afzal Mohammed9e0344d2012-12-17 16:02:15 -08001TI Real Time Clock
2
3Required properties:
Hebbar Gururaja8af750e2013-09-11 14:24:18 -07004- compatible:
5 - "ti,da830-rtc" - for RTC IP used similar to that on DA8xx SoC family.
6 - "ti,am3352-rtc" - for RTC IP used similar to that on AM335x SoC family.
7 This RTC IP has special WAKE-EN Register to enable
Johan Hovold222a12f2014-12-10 15:53:13 -08008 Wakeup generation for event Alarm. It can also be
9 used to control an external PMIC via the
10 pmic_power_en pin.
Afzal Mohammed9e0344d2012-12-17 16:02:15 -080011- reg: Address range of rtc register set
12- interrupts: rtc timer, alarm interrupts in order
13- interrupt-parent: phandle for the interrupt controller
14
Johan Hovold222a12f2014-12-10 15:53:13 -080015Optional properties:
16- ti,system-power-controller: whether the rtc is controlling the system power
17 through pmic_power_en
18
Afzal Mohammed9e0344d2012-12-17 16:02:15 -080019Example:
20
21rtc@1c23000 {
22 compatible = "ti,da830-rtc";
23 reg = <0x23000 0x1000>;
24 interrupts = <19
25 19>;
26 interrupt-parent = <&intc>;
Johan Hovold222a12f2014-12-10 15:53:13 -080027 ti,system-power-controller;
Afzal Mohammed9e0344d2012-12-17 16:02:15 -080028};