cirrus,clps711x-timer.txt 730 B

1234567891011121314151617181920212223242526272829
  1. * Cirrus Logic CLPS711X Timer Counter
  2. Required properties:
  3. - compatible: Shall contain "cirrus,clps711x-timer".
  4. - reg : Address and length of the register set.
  5. - interrupts: The interrupt number of the timer.
  6. - clocks : phandle of timer reference clock.
  7. Note: Each timer should have an alias correctly numbered in "aliases" node.
  8. Example:
  9. aliases {
  10. timer0 = &timer1;
  11. timer1 = &timer2;
  12. };
  13. timer1: timer@80000300 {
  14. compatible = "cirrus,ep7312-timer", "cirrus,clps711x-timer";
  15. reg = <0x80000300 0x4>;
  16. interrupts = <8>;
  17. clocks = <&clks 5>;
  18. };
  19. timer2: timer@80000340 {
  20. compatible = "cirrus,ep7312-timer", "cirrus,clps711x-timer";
  21. reg = <0x80000340 0x4>;
  22. interrupts = <9>;
  23. clocks = <&clks 6>;
  24. };