rockchip,rk-timer.txt 1.1 KB

1234567891011121314151617181920212223242526
  1. Rockchip rk timer
  2. Required properties:
  3. - compatible: should be:
  4. "rockchip,rk3036-timer", "rockchip,rk3288-timer": for Rockchip RK3036
  5. "rockchip,rk3066-timer", "rockchip,rk3288-timer": for Rockchip RK3066
  6. "rockchip,rk3188-timer", "rockchip,rk3288-timer": for Rockchip RK3188
  7. "rockchip,rk3228-timer", "rockchip,rk3288-timer": for Rockchip RK3228
  8. "rockchip,rk3229-timer", "rockchip,rk3288-timer": for Rockchip RK3229
  9. "rockchip,rk3288-timer": for Rockchip RK3288
  10. "rockchip,rk3368-timer", "rockchip,rk3288-timer": for Rockchip RK3368
  11. "rockchip,rk3399-timer": for Rockchip RK3399
  12. - reg: base address of the timer register starting with TIMERS CONTROL register
  13. - interrupts: should contain the interrupts for Timer0
  14. - clocks : must contain an entry for each entry in clock-names
  15. - clock-names : must include the following entries:
  16. "timer", "pclk"
  17. Example:
  18. timer: timer@ff810000 {
  19. compatible = "rockchip,rk3288-timer";
  20. reg = <0xff810000 0x20>;
  21. interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
  22. clocks = <&xin24m>, <&cru PCLK_TIMER>;
  23. clock-names = "timer", "pclk";
  24. };