Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1Altera Timer
2
3Required properties:
4
5- compatible : should be "altr,timer-1.0"
6- reg : Specifies base physical address and size of the registers.
7- interrupts : Should contain the timer interrupt number
8- clock-frequency : The frequency of the clock that drives the counter, in Hz.
9
10Example:
11
12timer {
13 compatible = "altr,timer-1.0";
14 reg = <0x00400000 0x00000020>;
15 interrupt-parent = <&cpu>;
16 interrupts = <11>;
17 clock-frequency = <125000000>;
18};