Commit 54c825a9 authored by Huang Rui's avatar Huang Rui Committed by Alex Deucher

drm/amdgpu: enable iceland powerplay manually

It's able to enable iceland powerplay manually via the module
parameter. The default state is disabled.
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 025f8bfb
...@@ -112,13 +112,15 @@ static int amdgpu_pp_early_init(void *handle) ...@@ -112,13 +112,15 @@ static int amdgpu_pp_early_init(void *handle)
case CHIP_STONEY: case CHIP_STONEY:
adev->pp_enabled = (amdgpu_powerplay > 0) ? true : false; adev->pp_enabled = (amdgpu_powerplay > 0) ? true : false;
break; break;
case CHIP_TOPAZ:
adev->pp_enabled = (amdgpu_powerplay > 0) ? true : false;
break;
/* These chips don't have powerplay implemenations */ /* These chips don't have powerplay implemenations */
case CHIP_BONAIRE: case CHIP_BONAIRE:
case CHIP_HAWAII: case CHIP_HAWAII:
case CHIP_KABINI: case CHIP_KABINI:
case CHIP_MULLINS: case CHIP_MULLINS:
case CHIP_KAVERI: case CHIP_KAVERI:
case CHIP_TOPAZ:
default: default:
adev->pp_enabled = false; adev->pp_enabled = false;
break; break;
......
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