1Rockchip rk3288 timer
2
3Required properties:
4- compatible: shall be "rockchip,rk3288-timer"
5- reg: base address of the timer register starting with TIMERS CONTROL register
6- interrupts: should contain the interrupts for Timer0
7- clocks : must contain an entry for each entry in clock-names
8- clock-names : must include the following entries:
9  "timer", "pclk"
10
11Example:
12	timer: timer@ff810000 {
13		compatible = "rockchip,rk3288-timer";
14		reg = <0xff810000 0x20>;
15		interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
16		clocks = <&xin24m>, <&cru PCLK_TIMER>;
17		clock-names = "timer", "pclk";
18	};
19