altr,timer-1.0.txt 447 B

123456789101112131415161718
  1. Altera Timer
  2. Required properties:
  3. - compatible : should be "altr,timer-1.0"
  4. - reg : Specifies base physical address and size of the registers.
  5. - interrupts : Should contain the timer interrupt number
  6. - clock-frequency : The frequency of the clock that drives the counter, in Hz.
  7. Example:
  8. timer {
  9. compatible = "altr,timer-1.0";
  10. reg = <0x00400000 0x00000020>;
  11. interrupt-parent = <&cpu>;
  12. interrupts = <11>;
  13. clock-frequency = <125000000>;
  14. };