drm/amd/display: Fix warning observed in mode change on Vega
[Why] DOUBLE_BUFFER_EN bit is getting cleared before enable blanking. That leads to CRTC_BLANK_DATA_EN is getting updated immediately. [How] Get DOUBLE_BUFFER_EN bit set, the same as DCE110. Signed-off-by: Jerry (Fangzhi) Zuo <Jerry.Zuo@amd.com> Reviewed-by: Charlene Liu <Charlene.Liu@amd.com> Acked-by: Leo Li <sunpeng.li@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Родитель
321f65a623
Коммит
7cb5285507
|
@ -772,7 +772,7 @@ void dce120_tg_set_blank(struct timing_generator *tg,
|
|||
|
||||
CRTC_REG_SET(
|
||||
CRTC0_CRTC_DOUBLE_BUFFER_CONTROL,
|
||||
CRTC_BLANK_DATA_DOUBLE_BUFFER_EN, 0);
|
||||
CRTC_BLANK_DATA_DOUBLE_BUFFER_EN, 1);
|
||||
|
||||
if (enable_blanking)
|
||||
CRTC_REG_SET(CRTC0_CRTC_BLANK_CONTROL, CRTC_BLANK_DATA_EN, 1);
|
||||
|
|
Загрузка…
Ссылка в новой задаче