ti,keystone-timer.txt 974 B

1234567891011121314151617181920212223242526272829
  1. * Device tree bindings for Texas instruments Keystone timer
  2. This document provides bindings for the 64-bit timer in the KeyStone
  3. architecture devices. The timer can be configured as a general-purpose 64-bit
  4. timer, dual general-purpose 32-bit timers. When configured as dual 32-bit
  5. timers, each half can operate in conjunction (chain mode) or independently
  6. (unchained mode) of each other.
  7. It is global timer is a free running up-counter and can generate interrupt
  8. when the counter reaches preset counter values.
  9. Documentation:
  10. http://www.ti.com/lit/ug/sprugv5a/sprugv5a.pdf
  11. Required properties:
  12. - compatible : should be "ti,keystone-timer".
  13. - reg : specifies base physical address and count of the registers.
  14. - interrupts : interrupt generated by the timer.
  15. - clocks : the clock feeding the timer clock.
  16. Example:
  17. timer@22f0000 {
  18. compatible = "ti,keystone-timer";
  19. reg = <0x022f0000 0x80>;
  20. interrupts = <GIC_SPI 110 IRQ_TYPE_EDGE_RISING>;
  21. clocks = <&clktimer15>;
  22. };