diff options
author | Tero Kristo <t-kristo@ti.com> | 2021-06-11 11:45:13 +0300 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2021-06-11 16:34:52 +0530 |
commit | 0aa2930ca192a8738d1da8222fc6ac21d7c19182 (patch) | |
tree | 46c8ae1c129d6d1f390aa281cd7af55091028cfe /drivers/clk/ti/Makefile | |
parent | 6b7fd3128f71e8c1fa847c18be4b9a322f341ba7 (diff) | |
download | u-boot-0aa2930ca192a8738d1da8222fc6ac21d7c19182.tar.gz |
clk: add support for TI K3 SoC PLL
Add support for TI K3 SoC PLLs. This clock type supports
enabling/disabling/setting and querying the clock rate for the PLL. The
euclidean library routine is used to calculate divider/multiplier rates
for the PLLs.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Tero Kristo <kristo@kernel.org>
Diffstat (limited to 'drivers/clk/ti/Makefile')
-rw-r--r-- | drivers/clk/ti/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/ti/Makefile b/drivers/clk/ti/Makefile index 9f56b47736..47839213e5 100644 --- a/drivers/clk/ti/Makefile +++ b/drivers/clk/ti/Makefile @@ -11,3 +11,4 @@ obj-$(CONFIG_CLK_TI_DIVIDER) += clk-divider.o obj-$(CONFIG_CLK_TI_GATE) += clk-gate.o obj-$(CONFIG_CLK_TI_MUX) += clk-mux.o obj-$(CONFIG_CLK_TI_SCI) += clk-sci.o +obj-$(CONFIG_$(SPL_TPL_)CLK_K3_PLL) += clk-k3-pll.o |