1
0
Fork 0

drm/amdgpu: enable powerplay module by default for tonga.

Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
hifive-unleashed-5.1
Rex Zhu 2015-10-17 17:57:58 +08:00 committed by Alex Deucher
parent bbb207f3da
commit 76c8cc6b3b
1 changed files with 8 additions and 0 deletions

View File

@ -96,6 +96,14 @@ static int amdgpu_pp_early_init(void *handle)
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
int ret = 0;
switch (adev->asic_type) {
case CHIP_TONGA:
amdgpu_powerplay = 1;
break;
default:
break;
}
ret = amdgpu_powerplay_init(adev);
if (ret)
return ret;