nvidia,tegra20-rtc.txt 615 B

12345678910111213141516171819202122
  1. NVIDIA Tegra20 real-time clock
  2. The Tegra RTC maintains seconds and milliseconds counters, and five alarm
  3. registers. The alarms and other interrupts may wake the system from low-power
  4. state.
  5. Required properties:
  6. - compatible : should be "nvidia,tegra20-rtc".
  7. - reg : Specifies base physical address and size of the registers.
  8. - interrupts : A single interrupt specifier.
  9. - clocks : Must contain one entry, for the module clock.
  10. See ../clocks/clock-bindings.txt for details.
  11. Example:
  12. timer {
  13. compatible = "nvidia,tegra20-rtc";
  14. reg = <0x7000e000 0x100>;
  15. interrupts = <0 2 0x04>;
  16. clocks = <&tegra_car 4>;
  17. };