nvidia,tegra20-rtc.txt 767 B

123456789101112131415161718192021222324
  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 : For Tegra20, must contain "nvidia,tegra20-rtc". Otherwise,
  7. must contain '"nvidia,<chip>-rtc", "nvidia,tegra20-rtc"', where <chip>
  8. can be tegra30, tegra114, tegra124, or tegra132.
  9. - reg : Specifies base physical address and size of the registers.
  10. - interrupts : A single interrupt specifier.
  11. - clocks : Must contain one entry, for the module clock.
  12. See ../clocks/clock-bindings.txt for details.
  13. Example:
  14. timer {
  15. compatible = "nvidia,tegra20-rtc";
  16. reg = <0x7000e000 0x100>;
  17. interrupts = <0 2 0x04>;
  18. clocks = <&tegra_car 4>;
  19. };