nvidia,tegra30-timer.txt 972 B

12345678910111213141516171819202122232425262728
  1. NVIDIA Tegra30 timer
  2. The Tegra30 timer provides ten 29-bit timer channels, a single 32-bit free
  3. running counter, and 5 watchdog modules. The first two channels may also
  4. trigger a legacy watchdog reset.
  5. Required properties:
  6. - compatible : For Tegra30, must contain "nvidia,tegra30-timer". Otherwise,
  7. must contain '"nvidia,<chip>-timer", "nvidia,tegra30-timer"' where
  8. <chip> is tegra124 or tegra132.
  9. - reg : Specifies base physical address and size of the registers.
  10. - interrupts : A list of 6 interrupts; one per each of timer channels 1
  11. through 5, and one for the shared interrupt for the remaining channels.
  12. - clocks : Must contain one entry, for the module clock.
  13. See ../clocks/clock-bindings.txt for details.
  14. timer {
  15. compatible = "nvidia,tegra30-timer", "nvidia,tegra20-timer";
  16. reg = <0x60005000 0x400>;
  17. interrupts = <0 0 0x04
  18. 0 1 0x04
  19. 0 41 0x04
  20. 0 42 0x04
  21. 0 121 0x04
  22. 0 122 0x04>;
  23. clocks = <&tegra_car 214>;
  24. };