drm/amd/powerplay: enable power features

the below smu related power features can be enabled now.
1.Prefetcher
2.GFX DPM
3.SOCCLK DPM
4.MP0CLK DPM
5.LCLK DPM
6.GFX ULV
7.CG
8.PPT
9.TDC
10.GFX EDC
11.VR0HOT
12.Fan Control
13.Thermal Control
14.LED Display
15.MMHub PG
16.ATHub PG

Signed-off-by: Kenneth Feng <kenneth.feng@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Kenneth Feng 2019-03-11 16:06:03 +08:00 committed by Alex Deucher
parent 5ba80a0a81
commit 1e87e0124b
1 changed files with 2 additions and 2 deletions

View File

@ -119,8 +119,8 @@ navi10_get_unallowed_feature_mask(struct smu_context *smu,
if (num > 2)
return -EINVAL;
feature_mask[0] = 0xffffffe4;
feature_mask[1] = 0xffffffff; /* bit32~bit63 is Unsupported */
feature_mask[0] = 0xdc3f7f8c;
feature_mask[1] = 0xfffffcec; /* bit32~bit63 is Unsupported */
return 0;
}