Commit 1daec8cf authored by Taniya Das's avatar Taniya Das Committed by Stephen Boyd
Browse files

clk: qcom: camcc: Add camera clock controller driver for SC7280



Add support for the camera clock controller found on SC7280 based
devices.
This would allow camera drivers to probe and control their clocks.

Signed-off-by: default avatarTaniya Das <tdas@codeaurora.org>
Link: https://lore.kernel.org/r/1633567425-11953-2-git-send-email-tdas@codeaurora.org


[sboyd@kernel.org: Make some VCOs unsigned long]
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent a764e1ed
Loading
Loading
Loading
Loading
+9 −0
Original line number Original line Diff line number Diff line
@@ -348,6 +348,15 @@ config SC_CAMCC_7180
	  Say Y if you want to support camera devices and functionality such as
	  Say Y if you want to support camera devices and functionality such as
	  capturing pictures.
	  capturing pictures.


config SC_CAMCC_7280
	tristate "SC7280 Camera Clock Controller"
	select SC_GCC_7280
	help
	  Support for the camera clock controller on Qualcomm Technologies, Inc
	  SC7280 devices.
	  Say Y if you want to support camera devices and functionality such as
	  capturing pictures.

config SC_DISPCC_7180
config SC_DISPCC_7180
	tristate "SC7180 Display Clock Controller"
	tristate "SC7180 Display Clock Controller"
	select SC_GCC_7180
	select SC_GCC_7180
+1 −0
Original line number Original line Diff line number Diff line
@@ -59,6 +59,7 @@ obj-$(CONFIG_QCS_GCC_404) += gcc-qcs404.o
obj-$(CONFIG_QCS_Q6SSTOP_404) += q6sstop-qcs404.o
obj-$(CONFIG_QCS_Q6SSTOP_404) += q6sstop-qcs404.o
obj-$(CONFIG_QCS_TURING_404) += turingcc-qcs404.o
obj-$(CONFIG_QCS_TURING_404) += turingcc-qcs404.o
obj-$(CONFIG_SC_CAMCC_7180) += camcc-sc7180.o
obj-$(CONFIG_SC_CAMCC_7180) += camcc-sc7180.o
obj-$(CONFIG_SC_CAMCC_7280) += camcc-sc7280.o
obj-$(CONFIG_SC_DISPCC_7180) += dispcc-sc7180.o
obj-$(CONFIG_SC_DISPCC_7180) += dispcc-sc7180.o
obj-$(CONFIG_SC_DISPCC_7280) += dispcc-sc7280.o
obj-$(CONFIG_SC_DISPCC_7280) += dispcc-sc7280.o
obj-$(CONFIG_SC_GCC_7180) += gcc-sc7180.o
obj-$(CONFIG_SC_GCC_7180) += gcc-sc7180.o
+2484 −0

File added.

Preview size limit exceeded, changes collapsed.