rockchip,rk3288-timer.txt 588 B

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