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: smu13: Enable VCN_RESET for pgm 7 with appropriate firmware version

This patch extends the VCN_RESET capability check to include pgm 7 when the firmware version is 0x07551400 or newer.

Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
Reviewed-by: Lijo Lazar <lijo.lazar@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Jesse.Zhang and committed by
Alex Deucher
6f1ee58a 00dc2ff5

+2 -1
+2 -1
drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
··· 450 450 ((pgm == 4) && (fw_ver >= 0x4557000))) 451 451 smu_v13_0_6_cap_set(smu, SMU_CAP(SDMA_RESET)); 452 452 453 - if ((pgm == 0) && (fw_ver >= 0x00558200)) 453 + if ((pgm == 0 && fw_ver >= 0x00558200) || 454 + (pgm == 7 && fw_ver >= 0x07551400)) 454 455 smu_v13_0_6_cap_set(smu, SMU_CAP(VCN_RESET)); 455 456 } 456 457