diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2013-07-31 12:41:35 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2013-08-07 17:37:09 -0400 |
commit | fda837241f3680e5dc554c26e178c2deec7a039c (patch) | |
tree | fea4895f83a15b287e16aa3c003693407c4ca821 /drivers/gpu/drm/radeon/si_dpm.c | |
parent | e1accbf0543eecfdb161131208c3dfefee22d61f (diff) |
drm/radeon/dpm: adjust thermal protection requirements
On rv770 and newer, clock gating is not required
for thermal protection. The only requirement is that
the design utilizes a thermal sensor.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/si_dpm.c')
-rw-r--r-- | drivers/gpu/drm/radeon/si_dpm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/radeon/si_dpm.c b/drivers/gpu/drm/radeon/si_dpm.c index 41825575b403..dc06e433048a 100644 --- a/drivers/gpu/drm/radeon/si_dpm.c +++ b/drivers/gpu/drm/radeon/si_dpm.c | |||
@@ -6366,8 +6366,7 @@ int si_dpm_init(struct radeon_device *rdev) | |||
6366 | eg_pi->sclk_deep_sleep = true; | 6366 | eg_pi->sclk_deep_sleep = true; |
6367 | si_pi->sclk_deep_sleep_above_low = false; | 6367 | si_pi->sclk_deep_sleep_above_low = false; |
6368 | 6368 | ||
6369 | if (pi->gfx_clock_gating && | 6369 | if (rdev->pm.int_thermal_type != THERMAL_TYPE_NONE) |
6370 | (rdev->pm.int_thermal_type != THERMAL_TYPE_NONE)) | ||
6371 | pi->thermal_protection = true; | 6370 | pi->thermal_protection = true; |
6372 | else | 6371 | else |
6373 | pi->thermal_protection = false; | 6372 | pi->thermal_protection = false; |