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>
Этот коммит содержится в:
Satya Rama Aditya Pinapala
2021-05-11 14:51:01 -07:00
родитель 807f03d2c9
Коммит 134e62f655
4 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@@ -709,6 +709,7 @@ struct msm_display_topology {
* @allowed_mode_switches: bit mask to indicate supported mode switch.
* @bit_clk_rates: list of supported bit clock rates
* @bit_clk_count: number of supported bit clock rates
* @disable_rsc_solver: Dynamically disable RSC solver for the timing mode due to lower bitclk rate.
*/
struct msm_mode_info {
uint32_t frame_rate;
@@ -727,6 +728,7 @@ struct msm_mode_info {
u32 allowed_mode_switches;
u32 *bit_clk_rates;
u32 bit_clk_count;
bool disable_rsc_solver;
};
/**