blob: 652d1ff2e8beb6f9ca33d145be74f2e12fb0eacf [file] [log] [blame]
Stephen Warren380e04a2012-09-19 12:13:16 -06001NVIDIA Tegra20 real-time clock
2
3The Tegra RTC maintains seconds and milliseconds counters, and five alarm
4registers. The alarms and other interrupts may wake the system from low-power
5state.
6
7Required properties:
8
9- compatible : should be "nvidia,tegra20-rtc".
10- reg : Specifies base physical address and size of the registers.
11- interrupts : A single interrupt specifier.
Stephen Warrend8f64792013-11-06 14:00:25 -070012- clocks : Must contain one entry, for the module clock.
13 See ../clocks/clock-bindings.txt for details.
Stephen Warren380e04a2012-09-19 12:13:16 -060014
15Example:
16
17timer {
18 compatible = "nvidia,tegra20-rtc";
19 reg = <0x7000e000 0x100>;
20 interrupts = <0 2 0x04>;
Stephen Warrend8f64792013-11-06 14:00:25 -070021 clocks = <&tegra_car 4>;
Stephen Warren380e04a2012-09-19 12:13:16 -060022};