Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba3bea6f authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "clk: qcom: Add the clock controller drivers for SDM660"

parents c7ccce47 aa7eb668
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
@@ -544,6 +544,35 @@ config QM_DEBUGCC_SCUBA
	  SCUBA devices.
	  Say Y if you want to support the clock measurement functionality.

config SDM_GCC_660
	tristate "SDM660 Global Clock Controller"
	depends on COMMON_CLK_QCOM
	help
	  Support for the global clock controller on Qualcomm Technologies, Inc
	  SDM660 devices.
	  Say Y if you want to use peripheral devices such as UART, SPI, I2C,
	  USB, UFS, SD/eMMC, PCIe, etc.

config SDM_GPUCC_660
	tristate "SDM660 Graphics Clock Controller"
	select SDM_GCC_660
	depends on COMMON_CLK_QCOM
	help
	  Support for the graphics clock controller on Qualcomm Technologies, Inc
	  SDM660 devices.
	  Say Y if you want to support graphics controller devices which will
	  be required to enable those device.

config SDM_MMCC_660
	tristate "SDM660 Multimedia Clock Controller"
	select SDM_GCC_660
	depends on COMMON_CLK_QCOM
	help
	  Support for the multimedia clock controller on Qualcomm Technologies, Inc
	  SDM660 devices.
	  Say Y if you want to support multimedia devices such as display,
	  video encode/decode, camera, etc.

config CLOCK_CPU_OSM_660
	tristate "OSM CPU Clock Controller for SDM660"
	depends on COMMON_CLK_QCOM
+3 −0
Original line number Diff line number Diff line
@@ -58,9 +58,12 @@ obj-$(CONFIG_SDM_CAMCC_LAGOON) += camcc-lagoon.o
obj-$(CONFIG_SDM_DEBUGCC_LAGOON) += debugcc-lagoon.o
obj-$(CONFIG_SDM_DISPCC_845) += dispcc-sdm845.o
obj-$(CONFIG_SDM_DISPCC_LAGOON) += dispcc-lagoon.o
obj-$(CONFIG_SDM_GCC_660) += gcc-sdm660.o
obj-$(CONFIG_SDM_GCC_845) += gcc-sdm845.o
obj-$(CONFIG_SDM_GCC_LAGOON) += gcc-lagoon.o
obj-$(CONFIG_SDM_GPUCC_660) += gpucc-sdm660.o
obj-$(CONFIG_SDM_GPUCC_LAGOON) += gpucc-lagoon.o
obj-$(CONFIG_SDM_MMCC_660) += mmcc-sdm660.o
obj-$(CONFIG_SDM_NPUCC_LAGOON) += npucc-lagoon.o
obj-$(CONFIG_SDM_VIDEOCC_845) += videocc-sdm845.o
obj-$(CONFIG_SDM_VIDEOCC_LAGOON) += videocc-lagoon.o
Loading