Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329264
b: refs/heads/master
c: 20b46e5
h: refs/heads/master
v: v3
  • Loading branch information
Daniel Vetter committed Jul 26, 2012
1 parent a603c07 commit e791e4d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e6994aeedcee4f71998d89d2c10c5baa419ebeac
refs/heads/master: 20b46e59dd102665ce7168baa215e5b1ee66b69b
43 changes: 25 additions & 18 deletions trunk/drivers/gpu/drm/i915/intel_pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2267,21 +2267,33 @@ static void ironlake_disable_drps(struct drm_device *dev)

}

void gen6_set_rps(struct drm_device *dev, u8 val)
static u32 gen6_rps_limits(struct drm_i915_private *dev_priv, u8 val)
{
struct drm_i915_private *dev_priv = dev->dev_private;
u32 limits;

limits = 0;
if (val >= dev_priv->max_delay)
val = dev_priv->max_delay;
else
limits |= dev_priv->max_delay << 24;

if (val <= dev_priv->min_delay)
limits |= dev_priv->max_delay << 24;

/* Only set the down limit when we've reached the lowest level to avoid
* getting more interrupts, otherwise leave this clear. This prevents a
* race in the hw when coming out of rc6: There's a tiny window where
* the hw runs at the minimal clock before selecting the desired
* frequency, if the down threshold expires in that window we will not
* receive a down interrupt. */
if (val <= dev_priv->min_delay) {
val = dev_priv->min_delay;
else
limits |= dev_priv->min_delay << 16;
}

return limits;
}

void gen6_set_rps(struct drm_device *dev, u8 val)
{
struct drm_i915_private *dev_priv = dev->dev_private;
u32 limits = gen6_rps_limits(dev_priv, val);

if (val == dev_priv->cur_delay)
return;
Expand Down Expand Up @@ -3741,25 +3753,20 @@ void intel_init_clock_gating(struct drm_device *dev)
static void gen6_sanitize_pm(struct drm_device *dev)
{
struct drm_i915_private *dev_priv = dev->dev_private;
u32 limits, delay, old;
u32 limits, current_limits;

gen6_gt_force_wake_get(dev_priv);

old = limits = I915_READ(GEN6_RP_INTERRUPT_LIMITS);
current_limits = I915_READ(GEN6_RP_INTERRUPT_LIMITS);
/* Make sure we continue to get interrupts
* until we hit the minimum or maximum frequencies.
*/
limits &= ~(0x3f << 16 | 0x3f << 24);
delay = dev_priv->cur_delay;
if (delay < dev_priv->max_delay)
limits |= (dev_priv->max_delay & 0x3f) << 24;
if (delay > dev_priv->min_delay)
limits |= (dev_priv->min_delay & 0x3f) << 16;

if (old != limits) {
limits = gen6_rps_limits(dev_priv, dev_priv->cur_delay);

if (current_limits != limits) {
/* Note that the known failure case is to read back 0. */
DRM_DEBUG_DRIVER("Power management discrepancy: GEN6_RP_INTERRUPT_LIMITS "
"expected %08x, was %08x\n", limits, old);
"expected %08x, was %08x\n", limits, current_limits);
I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, limits);
}

Expand Down

0 comments on commit e791e4d

Please sign in to comment.