Merge "disp: msm: sde: fix bandwidth voting in resume usecase"

This commit is contained in:
qctecmdr
2020-05-28 11:37:41 -07:00
committed by Gerrit - the friendly Code Review server
melakukan 707ce010fe
2 mengubah file dengan 5 tambahan dan 0 penghapusan

Melihat File

@@ -666,6 +666,8 @@ static void _sde_core_perf_crtc_update_bus(struct sde_kms *kms,
}
bus_ab_quota = max(bw_sum_of_intfs, kms->perf.perf_tune.min_bus_vote);
bus_ab_quota = min(bus_ab_quota,
kms->catalog->perf.max_bw_high*1000ULL);
bus_ib_quota = perf.max_per_pipe_ib[bus_id];
if (kms->perf.perf_tune.mode == SDE_PERF_MODE_FIXED) {

Melihat File

@@ -5614,6 +5614,9 @@ int sde_crtc_helper_reset_custom_properties(struct drm_crtc *crtc,
}
}
/* disable clk and bw control until clk & bw properties are set */
cstate->bw_control = false;
cstate->bw_split_vote = false;
return 0;
}