nvidia,tegra20-timer.txt 660 B

123456789101112131415161718192021222324
  1. NVIDIA Tegra20 timer
  2. The Tegra20 timer provides four 29-bit timer channels and a single 32-bit free
  3. running counter. The first two channels may also trigger a watchdog reset.
  4. Required properties:
  5. - compatible : should be "nvidia,tegra20-timer".
  6. - reg : Specifies base physical address and size of the registers.
  7. - interrupts : A list of 4 interrupts; one per timer channel.
  8. - clocks : Must contain one entry, for the module clock.
  9. See ../clocks/clock-bindings.txt for details.
  10. Example:
  11. timer {
  12. compatible = "nvidia,tegra20-timer";
  13. reg = <0x60005000 0x60>;
  14. interrupts = <0 0 0x04
  15. 0 1 0x04
  16. 0 41 0x04
  17. 0 42 0x04>;
  18. clocks = <&tegra_car 132>;
  19. };