mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-27 15:08:10 -04:00
drm/amd/display: correct DML calc error of UrgentLatency
[Why] The input UrgentLatency in CalculateUrgentBurstFactor of prefect check is wrong. [How] Correct to the correct one to keep same as HW formula Reviewed-by: Charlene Liu <Charlene.Liu@amd.com> Acked-by: Stylon Wang <stylon.wang@amd.com> Signed-off-by: Zhongwei <Zhongwei.Zhang@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
@@ -4851,7 +4851,7 @@ void dml30_ModeSupportAndSystemConfigurationFull(struct display_mode_lib *mode_l
|
||||
v->SwathHeightYThisState[k],
|
||||
v->SwathHeightCThisState[k],
|
||||
v->HTotal[k] / v->PixelClock[k],
|
||||
v->UrgentLatency,
|
||||
v->UrgLatency[i],
|
||||
v->CursorBufferSize,
|
||||
v->CursorWidth[k][0],
|
||||
v->CursorBPP[k][0],
|
||||
|
||||
@@ -5082,7 +5082,7 @@ void dml31_ModeSupportAndSystemConfigurationFull(struct display_mode_lib *mode_l
|
||||
v->SwathHeightYThisState[k],
|
||||
v->SwathHeightCThisState[k],
|
||||
v->HTotal[k] / v->PixelClock[k],
|
||||
v->UrgentLatency,
|
||||
v->UrgLatency[i],
|
||||
v->CursorBufferSize,
|
||||
v->CursorWidth[k][0],
|
||||
v->CursorBPP[k][0],
|
||||
|
||||
@@ -5179,7 +5179,7 @@ void dml314_ModeSupportAndSystemConfigurationFull(struct display_mode_lib *mode_
|
||||
v->SwathHeightYThisState[k],
|
||||
v->SwathHeightCThisState[k],
|
||||
v->HTotal[k] / v->PixelClock[k],
|
||||
v->UrgentLatency,
|
||||
v->UrgLatency[i],
|
||||
v->CursorBufferSize,
|
||||
v->CursorWidth[k][0],
|
||||
v->CursorBPP[k][0],
|
||||
|
||||
Reference in New Issue
Block a user