summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/rtc/rtc-omap.txt
diff options
context:
space:
mode:
Diffstat (limited to 'dts/Bindings/rtc/rtc-omap.txt')
-rw-r--r--dts/Bindings/rtc/rtc-omap.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/dts/Bindings/rtc/rtc-omap.txt b/dts/Bindings/rtc/rtc-omap.txt
new file mode 100644
index 0000000000..5a0f02d34d
--- /dev/null
+++ b/dts/Bindings/rtc/rtc-omap.txt
@@ -0,0 +1,21 @@
+TI Real Time Clock
+
+Required properties:
+- compatible:
+ - "ti,da830-rtc" - for RTC IP used similar to that on DA8xx SoC family.
+ - "ti,am3352-rtc" - for RTC IP used similar to that on AM335x SoC family.
+ This RTC IP has special WAKE-EN Register to enable
+ Wakeup generation for event Alarm.
+- reg: Address range of rtc register set
+- interrupts: rtc timer, alarm interrupts in order
+- interrupt-parent: phandle for the interrupt controller
+
+Example:
+
+rtc@1c23000 {
+ compatible = "ti,da830-rtc";
+ reg = <0x23000 0x1000>;
+ interrupts = <19
+ 19>;
+ interrupt-parent = <&intc>;
+};