Patch "drm/amd/display: Fix FCLK deviation and tool compile issues" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/amd/display: Fix FCLK deviation and tool compile issues

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-amd-display-fix-fclk-deviation-and-tool-compile-.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit fbfadf5a40a8a4ef522047fa6f56cdbba0d026c1
Author: Chaitanya Dhere <chaitanya.dhere@xxxxxxx>
Date:   Thu Oct 27 09:51:19 2022 -0400

    drm/amd/display: Fix FCLK deviation and tool compile issues
    
    [ Upstream commit 0d5c5c210a4d4e655feb93b379647f0b179cdafe ]
    
    [Why]
    Recent backports from open source do not have header inclusion pattern
    that is consistent with inclusion style in the rest of the file. This
    breaks the internal tool builds as well. A recent commit erronously
    modified the original DML formula for calculating
    ActiveClockChangeLatencyHidingY. This resulted in a FCLK deviation
    from the golden values.
    
    [How]
    Change the way in which display_mode_vba.h is included so that it is
    consistent with the inclusion style in rest of the file which also fixes
    the tool build. Restore the DML formula to its original state to fix the
    FCLK deviation.
    
    Reviewed-by: Aurabindo Pillai <Aurabindo.Pillai@xxxxxxx>
    Reviewed-by: Jun Lei <Jun.Lei@xxxxxxx>
    Acked-by: Alan Liu <HaoPing.Liu@xxxxxxx>
    Signed-off-by: Chaitanya Dhere <chaitanya.dhere@xxxxxxx>
    Tested-by: Daniel Wheeler <daniel.wheeler@xxxxxxx>
    Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.c b/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.c
index 67af8f4df8b8..d9141ef2fefd 100644
--- a/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.c
+++ b/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.c
@@ -4396,7 +4396,7 @@ void dml32_CalculateWatermarksMALLUseAndDRAMSpeedChangeSupport(
 
 		if (v->NumberOfActiveSurfaces > 1) {
 			ActiveClockChangeLatencyHidingY = ActiveClockChangeLatencyHidingY
-					- (1 - 1 / v->NumberOfActiveSurfaces) * SwathHeightY[k] * v->HTotal[k]
+					- (1.0 - 1.0 / v->NumberOfActiveSurfaces) * SwathHeightY[k] * v->HTotal[k]
 							/ v->PixelClock[k] / v->VRatio[k];
 		}
 
diff --git a/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.h b/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.h
index 0b427d89b3c5..f174f5c5ff92 100644
--- a/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.h
+++ b/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.h
@@ -30,7 +30,7 @@
 #include "os_types.h"
 #include "../dc_features.h"
 #include "../display_mode_structs.h"
-#include "dml/display_mode_vba.h"
+#include "../display_mode_vba.h"
 
 unsigned int dml32_dscceComputeDelay(
 		unsigned int bpc,



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux