cadence,ttc-timer.txt 547 B

123456789101112131415161718192021
  1. Cadence TTC - Triple Timer Counter
  2. Required properties:
  3. - compatible : Should be "cdns,ttc".
  4. - reg : Specifies base physical address and size of the registers.
  5. - interrupts : A list of 3 interrupts; one per timer channel.
  6. - clocks: phandle to the source clock
  7. Optional properties:
  8. - timer-width: Bit width of the timer, necessary if not 16.
  9. Example:
  10. ttc0: ttc0@f8001000 {
  11. interrupt-parent = <&intc>;
  12. interrupts = < 0 10 4 0 11 4 0 12 4 >;
  13. compatible = "cdns,ttc";
  14. reg = <0xF8001000 0x1000>;
  15. clocks = <&cpu_clk 3>;
  16. timer-width = <32>;
  17. };