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

Commit d90e0768 authored by Casey Piper's avatar Casey Piper Committed by Narendra Muppalla
Browse files

clk: qcom: mdss: add 20nm hdmi pll support for msm8992



Parse HDMI PLL string for msm8992 to set the PLL
interface type to 20nm HDMI PLL.

Change-Id: I7fe187148395d530871dd85ccd59f0645f894096
Signed-off-by: default avatarCasey Piper <cpiper@codeaurora.org>
parent cb2cd1f4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -152,6 +152,8 @@ static int mdss_pll_resource_parse(struct platform_device *pdev,
		pll_res->pll_interface_type = MDSS_HDMI_PLL;
	} else if (!strcmp(compatible_stream, "qcom,mdss_hdmi_pll_8994")) {
		pll_res->pll_interface_type = MDSS_HDMI_PLL_20NM;
	} else if (!strcmp(compatible_stream, "qcom,mdss_hdmi_pll_8992")) {
		pll_res->pll_interface_type = MDSS_HDMI_PLL_20NM;
	} else {
		goto err;
	}