disp: msm: dp: add support for continuous PPS command

Add support to send PPS command with every frame for DP.
This is needed to satisfy the requirement of certain bridge
chips which need the PPS to be sent every frame.

Change-Id: I8711dff41e60d8b1e1c515a5d34a370a2409ce14
Signed-off-by: Abhinav Kumar <abhinavk@codeaurora.org>
Signed-off-by: Sudarsan Ramesh <sudarame@codeaurora.org>
This commit is contained in:
Abhinav Kumar
2020-07-24 14:06:47 -04:00
committed by Sudarsan Ramesh
parent 316f28ff40
commit 6db41ed532
10 changed files with 42 additions and 3 deletions

View File

@@ -727,8 +727,13 @@ static void dp_parser_dsc(struct dp_parser *parser)
parser->dsc_feature_enable = of_property_read_bool(dev->of_node,
"qcom,dsc-feature-enable");
parser->dsc_continuous_pps = of_property_read_bool(dev->of_node,
"qcom,dsc-continuous-pps");
DP_DEBUG("dsc parsing successful. dsc:%d\n",
parser->dsc_feature_enable);
DP_DEBUG("cont_pps:%d\n",
parser->dsc_continuous_pps);
}
static void dp_parser_fec(struct dp_parser *parser)