mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-13 10:24:51 +00:00
fe209fa47d
All patches automatically rebased Build system: x86_64 Build-tested: bcm2711/RPi4B, mt7622/RT3200 Run-tested: bcm2711/RPi4B, mt7622/RT3200 Signed-off-by: John Audia <therealgraysky@proton.me>
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
--- a/drivers/clk/Kconfig
|
|
+++ b/drivers/clk/Kconfig
|
|
@@ -192,6 +192,15 @@ config COMMON_CLK_CS2000_CP
|
|
help
|
|
If you say yes here you get support for the CS2000 clock multiplier.
|
|
|
|
+config COMMON_CLK_EN7523
|
|
+ bool "Clock driver for Airoha EN7523 SoC system clocks"
|
|
+ depends on OF
|
|
+ depends on ARCH_AIROHA || COMPILE_TEST
|
|
+ default ARCH_AIROHA
|
|
+ help
|
|
+ This driver provides the fixed clocks and gates present on Airoha
|
|
+ ARM silicon.
|
|
+
|
|
config COMMON_CLK_FSL_FLEXSPI
|
|
tristate "Clock driver for FlexSPI on Layerscape SoCs"
|
|
depends on ARCH_LAYERSCAPE || COMPILE_TEST
|
|
--- a/drivers/clk/Makefile
|
|
+++ b/drivers/clk/Makefile
|
|
@@ -27,6 +27,7 @@ obj-$(CONFIG_COMMON_CLK_CDCE925) += clk-
|
|
obj-$(CONFIG_ARCH_CLPS711X) += clk-clps711x.o
|
|
obj-$(CONFIG_COMMON_CLK_CS2000_CP) += clk-cs2000-cp.o
|
|
obj-$(CONFIG_ARCH_SPARX5) += clk-sparx5.o
|
|
+obj-$(CONFIG_COMMON_CLK_EN7523) += clk-en7523.o
|
|
obj-$(CONFIG_COMMON_CLK_FIXED_MMIO) += clk-fixed-mmio.o
|
|
obj-$(CONFIG_COMMON_CLK_FSL_FLEXSPI) += clk-fsl-flexspi.o
|
|
obj-$(CONFIG_COMMON_CLK_FSL_SAI) += clk-fsl-sai.o
|