arch_timer.txt 684 B

12345678910111213141516171819202122232425262728
  1. * ARM architected timer
  2. ARM cores may have a per-core architected timer, which provides per-cpu timers.
  3. The timer is attached to a GIC to deliver its per-processor interrupts.
  4. ** Timer node properties:
  5. - compatible : Should at least contain one of
  6. "arm,armv7-timer"
  7. "arm,armv8-timer"
  8. - interrupts : Interrupt list for secure, non-secure, virtual and
  9. hypervisor timers, in that order.
  10. - clock-frequency : The frequency of the main counter, in Hz. Optional.
  11. Example:
  12. timer {
  13. compatible = "arm,cortex-a15-timer",
  14. "arm,armv7-timer";
  15. interrupts = <1 13 0xf08>,
  16. <1 14 0xf08>,
  17. <1 11 0xf08>,
  18. <1 10 0xf08>;
  19. clock-frequency = <100000000>;
  20. };