Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amd/pm: fix missing fine-grained dpm table flag on aldebaran

Add the missing SMU_DPM_TABLE_FINE_GRAINED flag to aldebaran DPM table.
This fixes the pp_dpm_sclk node issue caused by missing flag configuration.

Fixes: 7ea1c722fe1d ("drm/amd/pm: Use common helper for aldebaran dpm table")
Signed-off-by: Yang Wang <kevinyang.wang@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit 3427dea3a48ebddb491a26093f3627384b3cb2c2)

authored by

Yang Wang and committed by
Alex Deucher
ccf8932e 36d65da7

+1
+1
drivers/gpu/drm/amd/pm/swsmu/smu13/aldebaran_ppt.c
··· 425 425 dpm_table->dpm_levels[0].enabled = true; 426 426 dpm_table->dpm_levels[1].value = pptable->GfxclkFmax; 427 427 dpm_table->dpm_levels[1].enabled = true; 428 + dpm_table->flags |= SMU_DPM_TABLE_FINE_GRAINED; 428 429 } else { 429 430 dpm_table->count = 1; 430 431 dpm_table->dpm_levels[0].value = smu->smu_table.boot_values.gfxclk / 100;