diff options
author | Taniya Das <tdas@codeaurora.org> | 2018-11-30 23:51:29 +0530 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-12-03 09:38:05 -0800 |
commit | 8d3e5b9c1f2cdb9c81073e1f51643617078076ed (patch) | |
tree | 85965b236707862f2ab9e4a61a5b6e332bf540c4 /drivers/clk/qcom/Makefile | |
parent | 8ff1a156cb0b40a267fe7a2c69c06a6d566a7524 (diff) | |
download | linux-8d3e5b9c1f2cdb9c81073e1f51643617078076ed.tar.gz linux-8d3e5b9c1f2cdb9c81073e1f51643617078076ed.tar.bz2 linux-8d3e5b9c1f2cdb9c81073e1f51643617078076ed.zip |
clk: qcom: Add lpass clock controller driver for SDM845
Add support for the lpass clock controller found on SDM845 based devices.
This would allow lpass peripheral loader drivers to control the clocks to
bring the subsystem out of reset.
LPASS clocks present on the global clock controller would be registered
with the clock framework based on the protected-clock flag. Also do not
gate these clocks if they are left unused, as the lpass clocks require
the global clock controller lpass clocks to be enabled before they are
accessed. Mark the GCC lpass clocks as CRITICAL, for the LPASS clock
access.
Signed-off-by: Taniya Das <tdas@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/qcom/Makefile')
-rw-r--r-- | drivers/clk/qcom/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/qcom/Makefile b/drivers/clk/qcom/Makefile index 981882e16189..3d530b19bf4a 100644 --- a/drivers/clk/qcom/Makefile +++ b/drivers/clk/qcom/Makefile @@ -46,6 +46,7 @@ obj-$(CONFIG_SDM_CAMCC_845) += camcc-sdm845.o obj-$(CONFIG_SDM_DISPCC_845) += dispcc-sdm845.o obj-$(CONFIG_SDM_GCC_660) += gcc-sdm660.o obj-$(CONFIG_SDM_GCC_845) += gcc-sdm845.o +obj-$(CONFIG_SDM_LPASSCC_845) += lpasscc-sdm845.o obj-$(CONFIG_SDM_VIDEOCC_845) += videocc-sdm845.o obj-$(CONFIG_SPMI_PMIC_CLKDIV) += clk-spmi-pmic-div.o obj-$(CONFIG_KPSS_XCC) += kpss-xcc.o |