mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 09:02:17 +00:00
e1162cba4e
The RTC needs an input clock, it is the slow clock. It is required as it will not function without it. Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
18 lines
426 B
Plaintext
18 lines
426 B
Plaintext
Atmel AT91RM9200 Real Time Clock
|
|
|
|
Required properties:
|
|
- compatible: should be: "atmel,at91rm9200-rtc" or "atmel,at91sam9x5-rtc"
|
|
- reg: physical base address of the controller and length of memory mapped
|
|
region.
|
|
- interrupts: rtc alarm/event interrupt
|
|
- clocks: phandle to input clock.
|
|
|
|
Example:
|
|
|
|
rtc@fffffe00 {
|
|
compatible = "atmel,at91rm9200-rtc";
|
|
reg = <0xfffffe00 0x100>;
|
|
interrupts = <1 4 7>;
|
|
clocks = <&clk32k>;
|
|
};
|