The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/timer/rockchip,rk-timer.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 3987c1c2cbf5638dc458156a5b2d2411


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.