Commit 140f074c authored by Jian Hu's avatar Jian Hu Committed by Jerome Brunet
Browse files

clk: meson: t7: add support for the T7 SoC PLL clock



Add PLL clock controller driver for the Amlogic T7 SoC family.

Signed-off-by: default avatarJian Hu <jian.hu@amlogic.com>
Link: https://lore.kernel.org/r/20251212022619.3072132-5-jian.hu@amlogic.com


Signed-off-by: default avatarJerome Brunet <jbrunet@baylibre.com>
parent b4156204
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -201,4 +201,19 @@ config COMMON_CLK_S4_PERIPHERALS
	help
	  Support for the peripherals clock controller on Amlogic S805X2 and S905Y4
	  devices, AKA S4. Say Y if you want S4 peripherals clock controller to work.

config COMMON_CLK_T7_PLL
	tristate "Amlogic T7 SoC PLL controller support"
	depends on ARM64
	default ARCH_MESON
	select COMMON_CLK_MESON_REGMAP
	select COMMON_CLK_MESON_CLKC_UTILS
	select COMMON_CLK_MESON_MPLL
	select COMMON_CLK_MESON_PLL
	imply COMMON_CLK_SCMI
	help
	  Support for the PLL clock controller on Amlogic A311D2 based
	  device, AKA T7. PLLs are required by most peripheral to operate.
	  Say Y if you want T7 PLL clock controller to work.

endmenu
+1 −0
Original line number Diff line number Diff line
@@ -26,3 +26,4 @@ obj-$(CONFIG_COMMON_CLK_G12A) += g12a.o g12a-aoclk.o
obj-$(CONFIG_COMMON_CLK_MESON8B) += meson8b.o meson8-ddr.o
obj-$(CONFIG_COMMON_CLK_S4_PLL) += s4-pll.o
obj-$(CONFIG_COMMON_CLK_S4_PERIPHERALS) += s4-peripherals.o
obj-$(CONFIG_COMMON_CLK_T7_PLL) += t7-pll.o
+1074 −0

File added.

Preview size limit exceeded, changes collapsed.