]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/amd/pm/ci: Clear EnabledForActivity field for memory levels
authorTimur Kristóf <timur.kristof@gmail.com>
Sun, 29 Mar 2026 16:03:03 +0000 (18:03 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 30 Mar 2026 20:48:41 +0000 (16:48 -0400)
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 <timur.kristof@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/powerplay/smumgr/ci_smumgr.c

index b474561357e0de05efa7851dbf415d3a27f4bfd5..fa21a04fd7f06b397b0ec10d43102dc02a2db9cc 100644 (file)
@@ -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;