aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/rtc/lpc32xx-rtc.txt
diff options
context:
space:
mode:
authorRoland Stigge <stigge@antcom.de>2012-05-29 15:07:39 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2012-05-29 16:22:34 -0700
commite862e7c4ee52c2d1a0af37a8c3a2bda079042b06 (patch)
tree41284c9cc0bb04039f61b8cbf2719dfa9a0aac5b /Documentation/devicetree/bindings/rtc/lpc32xx-rtc.txt
parentdrivers/rtc/rtc-m41t93.c: don't let get_time() reset M41T93_FLAG_OF (diff)
downloadlinux-dev-e862e7c4ee52c2d1a0af37a8c3a2bda079042b06.tar.xz
linux-dev-e862e7c4ee52c2d1a0af37a8c3a2bda079042b06.zip
drivers/rtc/rtc-lpc32xx.c: add device tree support
Adds device tree support for rtc-lpc32xx.c Signed-off-by: Roland Stigge <stigge@antcom.de> Acked-by: Rob Herring <rob.herring@calxeda.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Cc: Alessandro Zummo <a.zummo@towertech.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/devicetree/bindings/rtc/lpc32xx-rtc.txt')
-rw-r--r--Documentation/devicetree/bindings/rtc/lpc32xx-rtc.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/rtc/lpc32xx-rtc.txt b/Documentation/devicetree/bindings/rtc/lpc32xx-rtc.txt
new file mode 100644
index 000000000000..a87a1e9bc060
--- /dev/null
+++ b/Documentation/devicetree/bindings/rtc/lpc32xx-rtc.txt
@@ -0,0 +1,15 @@
+* NXP LPC32xx SoC Real Time Clock controller
+
+Required properties:
+- compatible: must be "nxp,lpc3220-rtc"
+- reg: physical base address of the controller and length of memory mapped
+ region.
+- interrupts: The RTC interrupt
+
+Example:
+
+ rtc@40024000 {
+ compatible = "nxp,lpc3220-rtc";
+ reg = <0x40024000 0x1000>;
+ interrupts = <52 0>;
+ };