mirror of
https://github.com/Evolution-X-Devices/kernel_xiaomi_sm8450-devicetrees
synced 2026-02-01 08:51:30 +00:00
Add devicetree bindings snapshot to the devicetree project.
This snapshot is taken as of the
'commit 5fba1b18cfc72e264e5f3ce49020ed322aa6ac9f ("Merge 5.6-rc3
into android-mainline")' of the kernel project.
Change-Id: Ia087ab2b7d4a2616ea446a69683a8b5b821d0448
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
Rockchip rk timer
|
|
|
|
Required properties:
|
|
- compatible: should be:
|
|
"rockchip,rv1108-timer", "rockchip,rk3288-timer": for Rockchip RV1108
|
|
"rockchip,rk3036-timer", "rockchip,rk3288-timer": for Rockchip RK3036
|
|
"rockchip,rk3066-timer", "rockchip,rk3288-timer": for Rockchip RK3066
|
|
"rockchip,rk3188-timer", "rockchip,rk3288-timer": for Rockchip RK3188
|
|
"rockchip,rk3228-timer", "rockchip,rk3288-timer": for Rockchip RK3228
|
|
"rockchip,rk3229-timer", "rockchip,rk3288-timer": for Rockchip RK3229
|
|
"rockchip,rk3288-timer": for Rockchip RK3288
|
|
"rockchip,rk3368-timer", "rockchip,rk3288-timer": for Rockchip RK3368
|
|
"rockchip,rk3399-timer": for Rockchip RK3399
|
|
- reg: base address of the timer register starting with TIMERS CONTROL register
|
|
- interrupts: should contain the interrupts for Timer0
|
|
- clocks : must contain an entry for each entry in clock-names
|
|
- clock-names : must include the following entries:
|
|
"timer", "pclk"
|
|
|
|
Example:
|
|
timer: timer@ff810000 {
|
|
compatible = "rockchip,rk3288-timer";
|
|
reg = <0xff810000 0x20>;
|
|
interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&xin24m>, <&cru PCLK_TIMER>;
|
|
clock-names = "timer", "pclk";
|
|
};
|