drm/i915/gen9: Disable DC states if power well support is disabled
authorImre Deak <imre.deak@intel.com>
Mon, 29 Feb 2016 20:49:04 +0000 (22:49 +0200)
committerImre Deak <imre.deak@intel.com>
Tue, 1 Mar 2016 17:12:04 +0000 (19:12 +0200)
If power well support is disabled via the i915.disable_power_well module
option we should never enable DC states. Currently we would enable DC
states even in this case during system suspend, where we need to disable
all power wells regardless of the disable_power_well option.

CC: Patrik Jakobsson <patrik.jakobsson@linux.intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Patrik Jakobsson <patrik.jakobsson@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1456778945-5411-3-git-send-email-imre.deak@intel.com
drivers/gpu/drm/i915/intel_runtime_pm.c

index 30df9de25ccbaa74c61a5b542d3a4e30f83d7bb3..f0ca5134621ef75952008fbac5ab534ffbfa96a1 100644 (file)
@@ -2034,6 +2034,9 @@ static uint32_t get_allowed_dc_mask(const struct drm_i915_private *dev_priv,
                mask = 0;
        }
 
+       if (!i915.disable_power_well)
+               max_dc = 0;
+
        if (enable_dc >= 0 && enable_dc <= max_dc) {
                requested_dc = enable_dc;
        } else if (enable_dc == -1) {
This page took 0.029816 seconds and 5 git commands to generate.