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

Commit e41ef00f authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: clk: Add snapshot of Downstream DSI pll driver"

parents c8ac382b cf8460ab
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
Qualcomm MDSS pll for DSI/EDP/HDMI

mdss-pll is a pll controller device which supports pll devices that
are compatiable with MIPI display serial interface specification,
HDMI and edp.
mdss-pll is a pll controller device which supports pll devices that are
compatiable with MIPI display serial interface specification, HDMI and edp.

Required properties:
- compatible:		Compatible name used in the driver. Should be one of:
+2 −0
Original line number Diff line number Diff line
@@ -16,3 +16,5 @@ config MSM_CLK_CONTROLLER_V2
	   Generate clock data structures from definitions found in
	   device tree.

source "drivers/clk/msm/mdss/Kconfig"
+3 −0
Original line number Diff line number Diff line
@@ -17,3 +17,6 @@ obj-$(CONFIG_ARCH_MSM8953) += clock-gcc-8953.o
obj-$(CONFIG_ARCH_MSM8953)	+= clock-cpu-8953.o
obj-$(CONFIG_ARCH_MSM8953)	+= clock-rcgwr.o
endif

obj-y               += mdss/
+6 −0
Original line number Diff line number Diff line
config MSM_MDSS_PLL
	bool "MDSS pll programming"
	---help---
	It provides support for DSI, eDP and HDMI interface pll programming on MDSS
	hardware. It also handles the pll specific resources and turn them on/off when
	mdss pll client tries to enable/disable pll clocks.
+7 −0
Original line number Diff line number Diff line
obj-$(CONFIG_MSM_MDSS_PLL) += mdss-pll-util.o
obj-$(CONFIG_MSM_MDSS_PLL) += mdss-pll.o
obj-$(CONFIG_MSM_MDSS_PLL) += mdss-dsi-pll-util.o
obj-$(CONFIG_MSM_MDSS_PLL) += mdss-dsi-pll-28lpm.o
obj-$(CONFIG_MSM_MDSS_PLL) += mdss-dsi-pll-8996.o
obj-$(CONFIG_MSM_MDSS_PLL) += mdss-dsi-pll-8996-util.o
obj-$(CONFIG_MSM_MDSS_PLL) += mdss-hdmi-pll-8996.o
Loading