rockchip,rk-timer.txt 686 B

123456789101112131415161718192021
  1. Rockchip rk timer
  2. Required properties:
  3. - compatible: shall be one of:
  4. "rockchip,rk3288-timer" - for rk3066, rk3036, rk3188, rk322x, rk3288, rk3368
  5. "rockchip,rk3399-timer" - for rk3399
  6. - reg: base address of the timer register starting with TIMERS CONTROL register
  7. - interrupts: should contain the interrupts for Timer0
  8. - clocks : must contain an entry for each entry in clock-names
  9. - clock-names : must include the following entries:
  10. "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. };