cadence,ttc-timer.txt 444 B

1234567891011121314151617
  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. Example:
  8. ttc0: ttc0@f8001000 {
  9. interrupt-parent = <&intc>;
  10. interrupts = < 0 10 4 0 11 4 0 12 4 >;
  11. compatible = "cdns,ttc";
  12. reg = <0xF8001000 0x1000>;
  13. clocks = <&cpu_clk 3>;
  14. };