global_timer.txt 711 B

12345678910111213141516171819202122232425262728
  1. * ARM Global Timer
  2. Cortex-A9 are often associated with a per-core Global timer.
  3. ** Timer node required properties:
  4. - compatible : should contain
  5. * "arm,cortex-a5-global-timer" for Cortex-A5 global timers.
  6. * "arm,cortex-a9-global-timer" for Cortex-A9 global
  7. timers or any compatible implementation. Note: driver
  8. supports versions r2p0 and above.
  9. - interrupts : One interrupt to each core
  10. - reg : Specify the base address and the size of the GT timer
  11. register window.
  12. - clocks : Should be phandle to a clock.
  13. Example:
  14. timer@2c000600 {
  15. compatible = "arm,cortex-a9-global-timer";
  16. reg = <0x2c000600 0x20>;
  17. interrupts = <1 13 0xf01>;
  18. clocks = <&arm_periph_clk>;
  19. };