From: Timur Kristóf Date: Sun, 29 Mar 2026 16:03:03 +0000 (+0200) Subject: drm/amd/pm/ci: Clear EnabledForActivity field for memory levels X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5facfd4c4c67e8500116ffec0d9da35d92b9c787;p=thirdparty%2Flinux.git drm/amd/pm/ci: Clear EnabledForActivity field for memory levels Follow what radeon did and what amdgpu does for other GPUs with SMU7. Fixes: 9f4b35411cfe ("drm/amd/powerplay: add CI asics support to smumgr (v3)") Signed-off-by: Timur Kristóf Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/pm/powerplay/smumgr/ci_smumgr.c b/drivers/gpu/drm/amd/pm/powerplay/smumgr/ci_smumgr.c index b474561357e0..fa21a04fd7f0 100644 --- a/drivers/gpu/drm/amd/pm/powerplay/smumgr/ci_smumgr.c +++ b/drivers/gpu/drm/amd/pm/powerplay/smumgr/ci_smumgr.c @@ -1217,7 +1217,7 @@ static int ci_populate_single_memory_level( } memory_level->EnabledForThrottle = 1; - memory_level->EnabledForActivity = 1; + memory_level->EnabledForActivity = 0; memory_level->UpH = data->current_profile_setting.mclk_up_hyst; memory_level->DownH = data->current_profile_setting.mclk_down_hyst; memory_level->VoltageDownH = 0;