summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Chernovskiy <algonkvel@gmail.com>2014-08-11 21:53:46 +0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-10-05 13:40:55 -0700
commitac3e0959ede8f70c44eb936c7ea9b83fb41b2826 (patch)
tree723b14a375b1e3cec35d1bee644f9068fb056d3c
parent76325a92203b7db278a88d4e676de118bd4345f2 (diff)
drm/radeon: Add missing lines to ci_set_thermal_temperature_range
commit 6bce8d9772c1c606921a9c99e566eb14202f6669 upstream. Properly set the thermal min and max temp on CI. Otherwise, we end up setting the thermal ranges to 0 on resume and end up in the lowest power state. Signed-off-by: Oleg Chernovskiy <algonkvel@gmail.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/gpu/drm/radeon/ci_dpm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/ci_dpm.c b/drivers/gpu/drm/radeon/ci_dpm.c
index 022561e28707..d416bb2ff48d 100644
--- a/drivers/gpu/drm/radeon/ci_dpm.c
+++ b/drivers/gpu/drm/radeon/ci_dpm.c
@@ -869,6 +869,9 @@ static int ci_set_thermal_temperature_range(struct radeon_device *rdev,
WREG32_SMC(CG_THERMAL_CTRL, tmp);
#endif
+ rdev->pm.dpm.thermal.min_temp = low_temp;
+ rdev->pm.dpm.thermal.max_temp = high_temp;
+
return 0;
}