clk: qcom: add MDSS PLL support for msmfalcon
Add the msmfalcon compatible string to MDSS PLL driver dt table list so that MDSS PLL driver initialization takes place for msmflacon platform. Change-Id: I806456737485dfcbca8a71d59db0927bbd843708 Signed-off-by: Sandeep Panda <spanda@codeaurora.org>
This commit is contained in:
parent
e379f786aa
commit
f9bf3dd7e9
3 changed files with 7 additions and 1 deletions
|
@ -15,7 +15,7 @@ Required properties:
|
|||
"qcom,mdss_hdmi_pll_8996_v2", "qcom,mdss_dsi_pll_8996_v2",
|
||||
"qcom,mdss_hdmi_pll_8996_v3", "qcom,mdss_hdmi_pll_8996_v3_1p8",
|
||||
"qcom,mdss_dsi_pll_8998", "qcom,mdss_dp_pll_8998",
|
||||
"qcom,mdss_hdmi_pll_8998"
|
||||
"qcom,mdss_hdmi_pll_8998", "qcom,mdss_dsi_pll_msmfalcon"
|
||||
- cell-index: Specifies the controller used
|
||||
- reg: offset and length of the register set for the device.
|
||||
- reg-names : names to refer to register sets related to this device
|
||||
|
|
|
@ -133,6 +133,10 @@ static int mdss_pll_resource_parse(struct platform_device *pdev,
|
|||
pll_res->pll_interface_type = MDSS_DSI_PLL_8996;
|
||||
pll_res->target_id = MDSS_PLL_TARGET_8996;
|
||||
pll_res->revision = 2;
|
||||
} else if (!strcmp(compatible_stream, "qcom,mdss_dsi_pll_msmfalcon")) {
|
||||
pll_res->pll_interface_type = MDSS_DSI_PLL_8996;
|
||||
pll_res->target_id = MDSS_PLL_TARGET_MSMFALCON;
|
||||
pll_res->revision = 2;
|
||||
} else if (!strcmp(compatible_stream, "qcom,mdss_dsi_pll_8998")) {
|
||||
pll_res->pll_interface_type = MDSS_DSI_PLL_8998;
|
||||
} else if (!strcmp(compatible_stream, "qcom,mdss_dp_pll_8998")) {
|
||||
|
@ -378,6 +382,7 @@ static const struct of_device_id mdss_pll_dt_match[] = {
|
|||
{.compatible = "qcom,mdss_hdmi_pll_8996_v3_1p8"},
|
||||
{.compatible = "qcom,mdss_dp_pll_8998"},
|
||||
{.compatible = "qcom,mdss_hdmi_pll_8998"},
|
||||
{.compatible = "qcom,mdss_dsi_pll_msmfalcon"},
|
||||
{}
|
||||
};
|
||||
|
||||
|
|
|
@ -51,6 +51,7 @@ enum {
|
|||
|
||||
enum {
|
||||
MDSS_PLL_TARGET_8996,
|
||||
MDSS_PLL_TARGET_MSMFALCON,
|
||||
};
|
||||
|
||||
#define DFPS_MAX_NUM_OF_FRAME_RATES 20
|
||||
|
|
Loading…
Add table
Reference in a new issue