brintos

brintos / linux-shallow public Read only

0
0
Text · 447 B · e698e34 Raw
19 lines · plain
1Altera Timer2 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 number8- 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};19