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: Casey Piper <cpiper@codeaurora.org>
This commit is contained in:
Casey Piper 2014-12-08 17:19:57 -08:00 committed by David Keitel
parent 0333e3acf2
commit 9250a95f05

View file

@ -151,6 +151,8 @@ static int mdss_pll_resource_parse(struct platform_device *pdev,
pll_res->pll_interface_type = MDSS_HDMI_PLL; pll_res->pll_interface_type = MDSS_HDMI_PLL;
} else if (!strcmp(compatible_stream, "qcom,mdss_hdmi_pll_8994")) { } else if (!strcmp(compatible_stream, "qcom,mdss_hdmi_pll_8994")) {
pll_res->pll_interface_type = MDSS_HDMI_PLL_20NM; 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 { } else {
goto err; goto err;
} }