Commit a808d58d authored by Danila Tikhonov's avatar Danila Tikhonov Committed by Bjorn Andersson
Browse files

clk: qcom: Add Global Clock Controller (GCC) driver for SM7150



Add support for the global clock controller found on SM7150
based devices. This should allow most non-multimedia device
drivers to probe and control their clocks.

Co-developed-by: default avatarDavid Wronek <davidwronek@gmail.com>
Signed-off-by: default avatarDavid Wronek <davidwronek@gmail.com>
Signed-off-by: default avatarDanila Tikhonov <danila@jiaxyga.com>
Reviewed-by: default avatarKonrad Dybcio <konrad.dybcio@linaro.org>
Signed-off-by: default avatarBjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20230213165318.127160-3-danila@jiaxyga.com
parent 3097d5e2
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -759,6 +759,14 @@ config SM_GCC_6375
	  Say Y if you want to use peripheral devices such as UART,
	  SPI, I2C, USB, SD/UFS etc.

config SM_GCC_7150
	tristate "SM7150 Global Clock Controller"
	select QCOM_GDSC
	help
	  Support for the global clock controller on SM7150 devices.
	  Say Y if you want to use peripheral devices such as UART,
	  SPI, I2C, USB, SD/UFS, PCIe etc.

config SM_GCC_8150
	tristate "SM8150 Global Clock Controller"
	help
+1 −0
Original line number Diff line number Diff line
@@ -107,6 +107,7 @@ obj-$(CONFIG_SM_GCC_6115) += gcc-sm6115.o
obj-$(CONFIG_SM_GCC_6125) += gcc-sm6125.o
obj-$(CONFIG_SM_GCC_6350) += gcc-sm6350.o
obj-$(CONFIG_SM_GCC_6375) += gcc-sm6375.o
obj-$(CONFIG_SM_GCC_7150) += gcc-sm7150.o
obj-$(CONFIG_SM_GCC_8150) += gcc-sm8150.o
obj-$(CONFIG_SM_GCC_8250) += gcc-sm8250.o
obj-$(CONFIG_SM_GCC_8350) += gcc-sm8350.o
+3048 −0

File added.

Preview size limit exceeded, changes collapsed.