lsi,zevio-timer.txt 719 B

123456789101112131415161718192021222324252627282930313233
  1. TI-NSPIRE timer
  2. Required properties:
  3. - compatible : should be "lsi,zevio-timer".
  4. - reg : The physical base address and size of the timer (always first).
  5. - clocks: phandle to the source clock.
  6. Optional properties:
  7. - interrupts : The interrupt number of the first timer.
  8. - reg : The interrupt acknowledgement registers
  9. (always after timer base address)
  10. If any of the optional properties are not given, the timer is added as a
  11. clock-source only.
  12. Example:
  13. timer {
  14. compatible = "lsi,zevio-timer";
  15. reg = <0x900D0000 0x1000>, <0x900A0020 0x8>;
  16. interrupts = <19>;
  17. clocks = <&timer_clk>;
  18. };
  19. Example (no clock-events):
  20. timer {
  21. compatible = "lsi,zevio-timer";
  22. reg = <0x900D0000 0x1000>;
  23. clocks = <&timer_clk>;
  24. };