[Intel-gfx] [PATCH] drm/i915: make default minimum frequency RP1 instead of RPN
Jesse Barnes
jbarnes at virtuousgeek.org
Fri Oct 26 19:17:39 CEST 2012
We should only ever go below RP1 for thermal reasons. Users can still
control this through sysfs by manually reducing the minimum frequency
(and max if they want to clamp their frequency for power reasons, e.g.
to keep fans off or something).
Signed-off-by: Jesse Barnes <jbarnes at virtuousgeek.org>
---
drivers/gpu/drm/i915/intel_pm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
index 59068be..2c2701e 100644
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -2432,7 +2432,7 @@ static void gen6_enable_rps(struct drm_device *dev)
/* In units of 100MHz */
dev_priv->rps.max_delay = rp_state_cap & 0xff;
- dev_priv->rps.min_delay = (rp_state_cap & 0xff0000) >> 16;
+ dev_priv->rps.min_delay = (rp_state_cap & 0xff00) >> 8;
dev_priv->rps.cur_delay = 0;
/* disable the counters and set deterministic thresholds */
--
1.7.9.5
More information about the Intel-gfx
mailing list