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

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

Merge "clk: qcom: gcc: Add global clock controller driver for QCS405"

parents b089c702 e92d4894
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -20,6 +20,8 @@ Required properties :
			"qcom,gcc-mdm9615"
			"qcom,gcc-sm8150"
			"qcom,gcc-sdmshrike"
			"qcom,gcc-qcs405"
			"qcom,gcc-mdss-qcs405"

- reg : shall contain base register location and length
- #clock-cells : shall contain 1
+9 −0
Original line number Diff line number Diff line
@@ -315,3 +315,12 @@ config MSM_CAMCC_SDMSHRIKE
	  SDMSHRIKE devices.
          Say Y if you want to support camera devices and functionality such as
	  capturing pictures.

config MDM_GCC_QCS405
	tristate "QCS405 Global Clock Controller"
	depends on COMMON_CLK_QCOM
	help
	 Support for the global clock controller on Qualcomm Technologies, Inc
	 QCS405 devices.
	 Say Y if you want to use peripheral devices such as UART, SPI, I2C,
	 USB, SD/eMMC, PCIe, etc.
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ obj-$(CONFIG_IPQ_GCC_806X) += gcc-ipq806x.o
obj-$(CONFIG_IPQ_GCC_8074) += gcc-ipq8074.o
obj-$(CONFIG_IPQ_LCC_806X) += lcc-ipq806x.o
obj-$(CONFIG_MDM_GCC_9615) += gcc-mdm9615.o
obj-$(CONFIG_MDM_GCC_QCS405) += gcc-qcs405.o
obj-$(CONFIG_MDM_LCC_9615) += lcc-mdm9615.o
obj-$(CONFIG_MSM_CAMCC_SM8150) += camcc-sm8150.o
obj-$(CONFIG_MSM_CAMCC_SDMSHRIKE) += camcc-sdmshrike.o
Loading