nvidia,tegra20-timer.txt 527 B

123456789101112131415161718192021
  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. Example:
  9. timer {
  10. compatible = "nvidia,tegra20-timer";
  11. reg = <0x60005000 0x60>;
  12. interrupts = <0 0 0x04
  13. 0 1 0x04
  14. 0 41 0x04
  15. 0 42 0x04>;
  16. };