backlight: lp855x: Add enable regulator
[linux/fpc-iii.git] / Documentation / devicetree / bindings / timer / rockchip,rk3288-timer.txt
blob87f0b0042bae8650711729b0994766b0e2cc5e43
1 Rockchip rk3288 timer
3 Required 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"
11 Example:
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         };