diff options
author | Vignesh Raghavendra <vigneshr@ti.com> | 2020-02-27 11:05:29 +0530 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2020-03-20 17:07:21 -0700 |
commit | 1aa0817e43c525c3ee035786a17a19077a0bb06a (patch) | |
tree | bb829072ed4f0f500c45f421b889647818e236c8 /drivers/clk/keystone/Makefile | |
parent | cf891c6be1ce287ea7043ee958555ec633fab71d (diff) | |
download | linux-next-1aa0817e43c525c3ee035786a17a19077a0bb06a.tar.gz |
clk: keystone: Add new driver to handle syscon based clocks
On TI's AM654/J721e SoCs, certain clocks can be gated/ungated by setting
a single bit in SoC's System Control Module registers. Sometime more
than one clock control can be in the same register.
Add a driver to support such clocks using syscon framework. Driver
currently supports controlling EHRPWM's TimeBase clock(TBCLK) for AM654
SoC.
Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
Link: https://lkml.kernel.org/r/20200227053529.16479-3-vigneshr@ti.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/keystone/Makefile')
-rw-r--r-- | drivers/clk/keystone/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/keystone/Makefile b/drivers/clk/keystone/Makefile index d044de6f965c..0e426e648f7c 100644 --- a/drivers/clk/keystone/Makefile +++ b/drivers/clk/keystone/Makefile @@ -1,3 +1,4 @@ # SPDX-License-Identifier: GPL-2.0-only obj-$(CONFIG_COMMON_CLK_KEYSTONE) += pll.o gate.o obj-$(CONFIG_TI_SCI_CLK) += sci-clk.o +obj-$(CONFIG_TI_SYSCON_CLK) += syscon-clk.o |