Skip to content

Commit 3e65e42

Browse files
Fabio Estevammmind
authored andcommitted
clk: rockchip: Add clock controller for the RV1103B
Add the clock and reset tree definitions for the RV1103B SoC. Based on the 5.10 Rockchip vendor kernel driver. Signed-off-by: Fabio Estevam <festevam@nabladev.com> Link: https://patch.msgid.link/20260210022620.172570-2-festevam@gmail.com Signed-off-by: Heiko Stuebner <heiko@sntech.de>
1 parent 75d627e commit 3e65e42

4 files changed

Lines changed: 715 additions & 0 deletions

File tree

drivers/clk/rockchip/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ config CLK_PX30
1616
help
1717
Build the driver for PX30 Clock Driver.
1818

19+
config CLK_RV1103B
20+
bool "Rockchip RV1103B clock controller support"
21+
depends on ARM || COMPILE_TEST
22+
default y
23+
help
24+
Build the driver for RV1103B Clock Driver.
25+
1926
config CLK_RV110X
2027
bool "Rockchip RV110x clock controller support"
2128
depends on ARM || COMPILE_TEST

drivers/clk/rockchip/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ clk-rockchip-y += gate-link.o
1818
clk-rockchip-$(CONFIG_RESET_CONTROLLER) += softrst.o
1919

2020
obj-$(CONFIG_CLK_PX30) += clk-px30.o
21+
obj-$(CONFIG_CLK_RV1103B) += clk-rv1103b.o
2122
obj-$(CONFIG_CLK_RV110X) += clk-rv1108.o
2223
obj-$(CONFIG_CLK_RV1126) += clk-rv1126.o
2324
obj-$(CONFIG_CLK_RV1126B) += clk-rv1126b.o rst-rv1126b.o

0 commit comments

Comments
 (0)