xref: /freebsd/sys/contrib/device-tree/Bindings/timer/st,spear-timer.txt (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot* SPEAr ARM Timer
2*c66ec88fSEmmanuel Vadot
3*c66ec88fSEmmanuel Vadot** Timer node required properties:
4*c66ec88fSEmmanuel Vadot
5*c66ec88fSEmmanuel Vadot- compatible : Should be:
6*c66ec88fSEmmanuel Vadot	"st,spear-timer"
7*c66ec88fSEmmanuel Vadot- reg: Address range of the timer registers
8*c66ec88fSEmmanuel Vadot- interrupt: Should contain the timer interrupt number
9*c66ec88fSEmmanuel Vadot
10*c66ec88fSEmmanuel VadotExample:
11*c66ec88fSEmmanuel Vadot
12*c66ec88fSEmmanuel Vadot	timer@f0000000 {
13*c66ec88fSEmmanuel Vadot		compatible = "st,spear-timer";
14*c66ec88fSEmmanuel Vadot		reg = <0xf0000000 0x400>;
15*c66ec88fSEmmanuel Vadot		interrupts = <2>;
16*c66ec88fSEmmanuel Vadot	};
17