blob: b7d98ed3e098c5206e5846993a70899b3830be35 [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
Paul Walmsley193c9d22015-01-30 15:11:04 -07009- compatible : For Tegra20, must contain "nvidia,tegra20-rtc". Otherwise,
10 must contain '"nvidia,<chip>-rtc", "nvidia,tegra20-rtc"', where <chip>
11 can be tegra30, tegra114, tegra124, or tegra132.
Stephen Warren380e04a2012-09-19 12:13:16 -060012- reg : Specifies base physical address and size of the registers.
13- interrupts : A single interrupt specifier.
Stephen Warrend8f64792013-11-06 14:00:25 -070014- clocks : Must contain one entry, for the module clock.
15 See ../clocks/clock-bindings.txt for details.
Stephen Warren380e04a2012-09-19 12:13:16 -060016
17Example:
18
19timer {
20 compatible = "nvidia,tegra20-rtc";
21 reg = <0x7000e000 0x100>;
22 interrupts = <0 2 0x04>;
Stephen Warrend8f64792013-11-06 14:00:25 -070023 clocks = <&tegra_car 4>;
Stephen Warren380e04a2012-09-19 12:13:16 -060024};