Skip to content

Commit 6627d84

Browse files
Likun Gaoalexdeucher
authored andcommitted
drm/amd/swsmu: support SMU_14_0_2 ppt_funcs
Add smu v14_0_2 ppt fucs support. v2: squash in updates (Alex) Signed-off-by: Likun Gao <Likun.Gao@amd.com> Reviewed-by: Kenneth Feng <kenneth.feng@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent 3e55845 commit 6627d84

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
#include "smu_v13_0_6_ppt.h"
4646
#include "smu_v13_0_7_ppt.h"
4747
#include "smu_v14_0_0_ppt.h"
48+
#include "smu_v14_0_2_ppt.h"
4849
#include "amd_pcie.h"
4950

5051
/*
@@ -715,6 +716,10 @@ static int smu_set_funcs(struct amdgpu_device *adev)
715716
case IP_VERSION(14, 0, 1):
716717
smu_v14_0_0_set_ppt_funcs(smu);
717718
break;
719+
case IP_VERSION(14, 0, 2):
720+
case IP_VERSION(14, 0, 3):
721+
smu_v14_0_2_set_ppt_funcs(smu);
722+
break;
718723
default:
719724
return -EINVAL;
720725
}

0 commit comments

Comments
 (0)