arm,mps2-timer.txt 682 B

1234567891011121314151617181920212223242526272829
  1. ARM MPS2 timer
  2. The MPS2 platform has simple general-purpose 32 bits timers.
  3. Required properties:
  4. - compatible : Should be "arm,mps2-timer"
  5. - reg : Address and length of the register set
  6. - interrupts : Reference to the timer interrupt
  7. Required clocking property, have to be one of:
  8. - clocks : The input clock of the timer
  9. - clock-frequency : The rate in HZ in input of the ARM MPS2 timer
  10. Examples:
  11. timer1: mps2-timer@40000000 {
  12. compatible = "arm,mps2-timer";
  13. reg = <0x40000000 0x1000>;
  14. interrupts = <8>;
  15. clocks = <&sysclk>;
  16. };
  17. timer2: mps2-timer@40001000 {
  18. compatible = "arm,mps2-timer";
  19. reg = <0x40001000 0x1000>;
  20. interrupts = <9>;
  21. clock-frequency = <25000000>;
  22. };