diff options
| author | Chengming Gui <[email protected]> | 2022-02-21 15:42:00 +0800 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2022-05-05 16:53:07 -0400 |
| commit | 113cc31dde66e3153f7290141b6c008dce8ab2bf (patch) | |
| tree | d2e885d1bfc36388fd0335fb95d59baa201a3556 /drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c | |
| parent | 0c2a2d1c811fc1a695e8f88bf530fefc8d1e65f8 (diff) | |
drm/amd/pm: add SMU_13_0_7 ppt_funcs for SMU_13_0_7
Add initial support for SMU 13.0.7.
V2: unify ppt name, fix copyright format, add missing break (Kenneth/Evan)
V3: Split PMFW headers as separate patch (Alex)
Signed-off-by: Chengming Gui <[email protected]>
Reviewed-by: Evan Quan <[email protected]>
Acked-by: Alex Deucher <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c')
| -rw-r--r-- | drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c b/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c index 6c71106b12c3..395f266be690 100644 --- a/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c +++ b/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c @@ -39,6 +39,7 @@ #include "cyan_skillfish_ppt.h" #include "smu_v13_0_0_ppt.h" #include "smu_v13_0_5_ppt.h" +#include "smu_v13_0_7_ppt.h" #include "amd_pcie.h" /* @@ -569,6 +570,9 @@ static int smu_set_funcs(struct amdgpu_device *adev) case IP_VERSION(13, 0, 0): smu_v13_0_0_set_ppt_funcs(smu); break; + case IP_VERSION(13, 0, 7): + smu_v13_0_7_set_ppt_funcs(smu); + break; default: return -EINVAL; } |