blob: 5d3791e789c6ba6ca04f9f17dda5f3c9aeafe83c [file] [log] [blame]
Joachim Eastwood7c1b68d2013-04-29 16:20:15 -07001Atmel AT91RM9200 Real Time Clock
2
3Required properties:
Johan Hovoldbba00e52013-06-12 14:04:57 -07004- compatible: should be: "atmel,at91rm9200-rtc" or "atmel,at91sam9x5-rtc"
Joachim Eastwood7c1b68d2013-04-29 16:20:15 -07005- reg: physical base address of the controller and length of memory mapped
6 region.
7- interrupts: rtc alarm/event interrupt
Alexandre Bellonie1162cb2015-07-30 00:49:44 +02008- clocks: phandle to input clock.
Joachim Eastwood7c1b68d2013-04-29 16:20:15 -07009
10Example:
11
12rtc@fffffe00 {
13 compatible = "atmel,at91rm9200-rtc";
14 reg = <0xfffffe00 0x100>;
15 interrupts = <1 4 7>;
Alexandre Bellonie1162cb2015-07-30 00:49:44 +020016 clocks = <&clk32k>;
Joachim Eastwood7c1b68d2013-04-29 16:20:15 -070017};