blob: e698e348873567adf2ab39bd2040a9144347ec68 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001Altera 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};