Commit fd0fc248 authored by Huang Rui's avatar Huang Rui Committed by Alex Deucher

drm/amd/powerplay: add vangogh ppt into swSMU

This patch is to add vangogh ppt funcions into swSMU block.
Signed-off-by: default avatarHuang Rui <ray.huang@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent fd8ba3f1
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include "navi10_ppt.h" #include "navi10_ppt.h"
#include "sienna_cichlid_ppt.h" #include "sienna_cichlid_ppt.h"
#include "renoir_ppt.h" #include "renoir_ppt.h"
#include "vangogh_ppt.h"
#include "amd_pcie.h" #include "amd_pcie.h"
/* /*
...@@ -401,6 +402,9 @@ static int smu_set_funcs(struct amdgpu_device *adev) ...@@ -401,6 +402,9 @@ static int smu_set_funcs(struct amdgpu_device *adev)
case CHIP_RENOIR: case CHIP_RENOIR:
renoir_set_ppt_funcs(smu); renoir_set_ppt_funcs(smu);
break; break;
case CHIP_VANGOGH:
vangogh_set_ppt_funcs(smu);
break;
default: default:
return -EINVAL; return -EINVAL;
} }
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
SMU11_MGR = arcturus_ppt.o \ SMU11_MGR = arcturus_ppt.o \
navi10_ppt.o \ navi10_ppt.o \
sienna_cichlid_ppt.o \ sienna_cichlid_ppt.o \
vangogh_ppt.o \
smu_v11_0.o smu_v11_0.o
AMD_SWSMU_SMU11MGR = $(addprefix $(AMD_SWSMU_PATH)/smu11/,$(SMU11_MGR)) AMD_SWSMU_SMU11MGR = $(addprefix $(AMD_SWSMU_PATH)/smu11/,$(SMU11_MGR))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment