Commit a37786ab authored by Murton Liu's avatar Murton Liu Committed by Alex Deucher

drm/amd/display: HLK Periodic Frame Notification test failed

[Why]
Due to a small pre-fetch window, the active vline timing is a couple
of lines off when compared to what it should be.

[How]
Changed the calculation for the start vline to account for this window.
Signed-off-by: default avatarMurton Liu <murton.liu@amd.com>
Reviewed-by: default avatarAric Cyr <Aric.Cyr@amd.com>
Acked-by: default avatarLeo Li <sunpeng.li@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 4a0ad70d
...@@ -150,7 +150,7 @@ void optc1_program_vline_interrupt( ...@@ -150,7 +150,7 @@ void optc1_program_vline_interrupt(
req_delta_lines--; req_delta_lines--;
if (req_delta_lines > vsync_line) if (req_delta_lines > vsync_line)
start_line = dc_crtc_timing->v_total - (req_delta_lines - vsync_line) - 1; start_line = dc_crtc_timing->v_total - (req_delta_lines - vsync_line) + 2;
else else
start_line = vsync_line - req_delta_lines; start_line = vsync_line - req_delta_lines;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment