Commit 6e9aff55 authored by Biju Das's avatar Biju Das Committed by Stephen Boyd
Browse files

clk: Add support for versa3 clock driver



Add support for Renesas versa3 clock driver(5p35023).
The clock generator provides 6 output clocks.

Signed-off-by: default avatarBiju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20230705171000.85786-3-biju.das.jz@bp.renesas.com


[sboyd@kernel.org: Add newline to printk]
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent a03d23f8
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -385,6 +385,15 @@ config COMMON_CLK_SI521XX
	  This driver supports the SkyWorks Si521xx PCIe clock generator
	  models Si52144/Si52146/Si52147.

config COMMON_CLK_VC3
	tristate "Clock driver for Renesas VersaClock 3 devices"
	depends on I2C
	depends on OF
	select REGMAP_I2C
	help
	  This driver supports the Renesas VersaClock 3 programmable clock
	  generators.

config COMMON_CLK_VC5
	tristate "Clock driver for IDT VersaClock 5,6 devices"
	depends on I2C
+1 −0
Original line number Diff line number Diff line
@@ -76,6 +76,7 @@ obj-$(CONFIG_CLK_TWL6040) += clk-twl6040.o
obj-$(CONFIG_ARCH_VT8500)		+= clk-vt8500.o
obj-$(CONFIG_COMMON_CLK_RS9_PCIE)	+= clk-renesas-pcie.o
obj-$(CONFIG_COMMON_CLK_SI521XX)	+= clk-si521xx.o
obj-$(CONFIG_COMMON_CLK_VC3)		+= clk-versaclock3.o
obj-$(CONFIG_COMMON_CLK_VC5)		+= clk-versaclock5.o
obj-$(CONFIG_COMMON_CLK_VC7)		+= clk-versaclock7.o
obj-$(CONFIG_COMMON_CLK_WM831X)		+= clk-wm831x.o
+1143 −0

File added.

Preview size limit exceeded, changes collapsed.