diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2013-09-13 20:07:03 +0200 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2013-09-16 02:27:52 +0200 |
commit | 1cd8b21aa22c4fe8835abe614da5fa989c66dca9 (patch) | |
tree | 3244aadc48b955547d5f3df5a3d35367dff3f01e /drivers/gpu/drm/radeon/kv_dpm.c | |
parent | drm/radeon: Fix hmdi typo (diff) | |
download | linux-1cd8b21aa22c4fe8835abe614da5fa989c66dca9.tar.xz linux-1cd8b21aa22c4fe8835abe614da5fa989c66dca9.zip |
drm/radeon/dpm: rework auto performance level enable
Calling force_performance_level() from set_power_state()
doesn't work on some asics because the current power
state pointer has not been properly updated at that point.
Move the calls to force_performance_level() out of the
asic specific set_power_state() functions and into
the main power state sequence.
Fixes dpm resume on SI.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/kv_dpm.c')
-rw-r--r-- | drivers/gpu/drm/radeon/kv_dpm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/kv_dpm.c b/drivers/gpu/drm/radeon/kv_dpm.c index b98b9c97b732..71399065db04 100644 --- a/drivers/gpu/drm/radeon/kv_dpm.c +++ b/drivers/gpu/drm/radeon/kv_dpm.c @@ -1854,7 +1854,6 @@ int kv_dpm_set_power_state(struct radeon_device *rdev) RADEON_CG_BLOCK_BIF | RADEON_CG_BLOCK_HDP), true); - rdev->pm.dpm.forced_level = RADEON_DPM_FORCED_LEVEL_AUTO; return 0; } |