]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/i915: Call intel_opregion_notify_encoder in intel_sanitize_encoder, v2.
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Wed, 16 May 2018 08:50:38 +0000 (10:50 +0200)
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Thu, 31 May 2018 08:42:37 +0000 (10:42 +0200)
Normally this is called on a modeset, but the call is missing when
we inherit the mode from the BIOS, so make sure it's called somewhere
in hardware readout.

Changes since v1:
- Unconditionally call intel_opregion_notify_encoder. (Ville)

Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180516085038.36785-1-maarten.lankhorst@linux.intel.com
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
drivers/gpu/drm/i915/intel_display.c

index 8d4c9e249c44fa0e0785177ac79e0059d41d7996..da251ff6aca93a430dda05e3600f70eebe96d71f 100644 (file)
@@ -15251,6 +15251,9 @@ static void intel_sanitize_encoder(struct intel_encoder *encoder)
                connector->base.dpms = DRM_MODE_DPMS_OFF;
                connector->base.encoder = NULL;
        }
+
+       /* notify opregion of the sanitized encoder state */
+       intel_opregion_notify_encoder(encoder, connector && has_active_crtc);
 }
 
 void i915_redisable_vga_power_on(struct drm_i915_private *dev_priv)