diff options
author | Likun Gao <Likun.Gao@amd.com> | 2019-01-31 01:11:04 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2019-03-19 16:04:02 -0400 |
commit | 3b94fb101f4071da2b555632d8d68a353a9dde79 (patch) | |
tree | 5d678dcc34bc745ae84419a0586220172c673954 /drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.h | |
parent | a8394cfa42335f0d634be5715bcca51caa178f6a (diff) |
drm/amd/powerplay: add limit of pp_feature for smu (v3)
Move pp_feature from the struct of amd_powerplay to amdgpu_device.
Add pp_feature limit for overdrive interface.
v2: put pp_feature into struct amdgpu_pm.
v3: merge feature_mask with pp_feature.
Signed-off-by: Likun Gao <Likun.Gao@amd.com>
Reviewed-by: Kevin Wang <kevin1.wang@amd.com>
Suggested-by: Alex Deucher <alexander.deucher@amd.com>
Suggested-by: Huang Rui <ray.huang@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.h index 2fda77fec930..dca35407879d 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.h | |||
@@ -445,6 +445,9 @@ struct amdgpu_pm { | |||
445 | uint32_t smu_prv_buffer_size; | 445 | uint32_t smu_prv_buffer_size; |
446 | struct amdgpu_bo *smu_prv_buffer; | 446 | struct amdgpu_bo *smu_prv_buffer; |
447 | bool ac_power; | 447 | bool ac_power; |
448 | /* powerplay feature */ | ||
449 | uint32_t pp_feature; | ||
450 | |||
448 | }; | 451 | }; |
449 | 452 | ||
450 | #define R600_SSTU_DFLT 0 | 453 | #define R600_SSTU_DFLT 0 |