diff options
author | Oleg Chernovskiy <algonkvel@gmail.com> | 2014-08-11 21:53:46 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-05 14:52:12 -0700 |
commit | 0a60cb9ca541e75012e0d227e1028e51759f8080 (patch) | |
tree | c9f205049d44f7823ab2339a39a14afc85d72d46 /drivers/gpu | |
parent | 6f99d1d231ffebdc7afe1290ffbe7083c50abb1a (diff) | |
download | lwn-0a60cb9ca541e75012e0d227e1028e51759f8080.tar.gz lwn-0a60cb9ca541e75012e0d227e1028e51759f8080.zip |
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>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/radeon/ci_dpm.c | 3 |
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 027b10c2061d..543ba2d4a659 100644 --- a/drivers/gpu/drm/radeon/ci_dpm.c +++ b/drivers/gpu/drm/radeon/ci_dpm.c @@ -851,6 +851,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; } |