disp: msm: dsi: add parsing for RSC solver disable property

For higher refresh, to provide higher transfer time we need to disable
RSC solver in MDP. This can be configured through the panel timing node
devicetree property. This change adds the parsing of the devicetree
property.

Change-Id: I9e708325da35086d2f955cbcc80bb164ccb116cd
Signed-off-by: Satya Rama Aditya Pinapala <psraditya30@codeaurora.org>
This commit is contained in:
Satya Rama Aditya Pinapala
2021-05-11 14:51:01 -07:00
parent 807f03d2c9
commit 134e62f655
4 changed files with 7 additions and 0 deletions

View File

@@ -626,6 +626,7 @@ struct dyn_clk_list {
* @roi_caps: Panel ROI capabilities
* @widebus_support 48 bit wide data bus is supported by hw
* @allowed_mode_switch: BIT mask to mark allowed mode switches
* @disable_rsc_solver: Dynamically disable RSC solver for the timing mode.
*/
struct dsi_display_mode_priv_info {
struct dsi_panel_cmd_set cmd_sets[DSI_CMD_SET_MAX];
@@ -651,6 +652,7 @@ struct dsi_display_mode_priv_info {
struct msm_roi_caps roi_caps;
bool widebus_support;
u32 allowed_mode_switch;
bool disable_rsc_solver;
};
/**