0001 Altera Timer
0002
0003 Required properties:
0004
0005 - compatible : should be "altr,timer-1.0"
0006 - reg : Specifies base physical address and size of the registers.
0007 - interrupts : Should contain the timer interrupt number
0008 - clock-frequency : The frequency of the clock that drives the counter, in Hz.
0009
0010 Example:
0011
0012 timer {
0013 compatible = "altr,timer-1.0";
0014 reg = <0x00400000 0x00000020>;
0015 interrupt-parent = <&cpu>;
0016 interrupts = <11>;
0017 clock-frequency = <125000000>;
0018 };