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

This commit is contained in:
qctecmdr
2021-05-28 13:41:24 -07:00
committed by Gerrit - the friendly Code Review server
4 changed files with 7 additions and 0 deletions

View File

@@ -730,6 +730,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;
@@ -748,6 +749,7 @@ struct msm_mode_info {
u32 allowed_mode_switches;
u32 *bit_clk_rates;
u32 bit_clk_count;
bool disable_rsc_solver;
};
/**