diff options
author | Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp> | 2021-10-25 12:10:37 +0900 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2022-01-05 17:12:31 -0800 |
commit | b4cbe606dc3674b25cb661e7cd1a1c6ddaaafaaa (patch) | |
tree | c558657127dc3d53e6c8edc15936b4b87feb52c1 /drivers/clk/Makefile | |
parent | ffa81a03267b450cb8c7bc0d327c05c99de579a4 (diff) | |
download | linux-b4cbe606dc3674b25cb661e7cd1a1c6ddaaafaaa.tar.gz linux-b4cbe606dc3674b25cb661e7cd1a1c6ddaaafaaa.tar.bz2 linux-b4cbe606dc3674b25cb661e7cd1a1c6ddaaafaaa.zip |
clk: visconti: Add support common clock driver and reset driver
Add support for common interface of the common clock and reset driver
for Toshiba Visconti5 and its SoC, TMPV7708. The PIPLLCT provides the PLL,
and the PISMU provides clock and reset functionality.
Each drivers are provided in this patch.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
Link: https://lore.kernel.org/r/20211025031038.4180686-4-nobuhiro1.iwamatsu@toshiba.co.jp
[sboyd@kernel.org: Add bitfield.h include to pll.c]
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/Makefile')
-rw-r--r-- | drivers/clk/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index e42312121e51..4271fffc87a2 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile @@ -116,6 +116,7 @@ obj-y += ti/ obj-$(CONFIG_CLK_UNIPHIER) += uniphier/ obj-$(CONFIG_ARCH_U8500) += ux500/ obj-y += versatile/ +obj-$(CONFIG_COMMON_CLK_VISCONTI) += visconti/ ifeq ($(CONFIG_COMMON_CLK), y) obj-$(CONFIG_X86) += x86/ endif |