mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-15 14:10:43 +00:00
Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux
Pull drm intel fixes from Dave Airlie: "Two intel stable fixes, that should be it from me for this round" * 'drm-fixes' of git://people.freedesktop.org/~airlied/linux: drm/i915: Unlock panel even when LVDS is disabled drm/i915: More cautious with pch fifo underruns
This commit is contained in:
commit
ba2cb64b55
@ -4325,7 +4325,6 @@ static void ironlake_crtc_disable(struct drm_crtc *crtc)
|
|||||||
ironlake_fdi_disable(crtc);
|
ironlake_fdi_disable(crtc);
|
||||||
|
|
||||||
ironlake_disable_pch_transcoder(dev_priv, pipe);
|
ironlake_disable_pch_transcoder(dev_priv, pipe);
|
||||||
intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
|
|
||||||
|
|
||||||
if (HAS_PCH_CPT(dev)) {
|
if (HAS_PCH_CPT(dev)) {
|
||||||
/* disable TRANS_DP_CTL */
|
/* disable TRANS_DP_CTL */
|
||||||
@ -4389,7 +4388,6 @@ static void haswell_crtc_disable(struct drm_crtc *crtc)
|
|||||||
|
|
||||||
if (intel_crtc->config.has_pch_encoder) {
|
if (intel_crtc->config.has_pch_encoder) {
|
||||||
lpt_disable_pch_transcoder(dev_priv);
|
lpt_disable_pch_transcoder(dev_priv);
|
||||||
intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
|
|
||||||
intel_ddi_fdi_disable(crtc);
|
intel_ddi_fdi_disable(crtc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -899,6 +899,17 @@ void intel_lvds_init(struct drm_device *dev)
|
|||||||
int pipe;
|
int pipe;
|
||||||
u8 pin;
|
u8 pin;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Unlock registers and just leave them unlocked. Do this before
|
||||||
|
* checking quirk lists to avoid bogus WARNINGs.
|
||||||
|
*/
|
||||||
|
if (HAS_PCH_SPLIT(dev)) {
|
||||||
|
I915_WRITE(PCH_PP_CONTROL,
|
||||||
|
I915_READ(PCH_PP_CONTROL) | PANEL_UNLOCK_REGS);
|
||||||
|
} else {
|
||||||
|
I915_WRITE(PP_CONTROL,
|
||||||
|
I915_READ(PP_CONTROL) | PANEL_UNLOCK_REGS);
|
||||||
|
}
|
||||||
if (!intel_lvds_supported(dev))
|
if (!intel_lvds_supported(dev))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -1097,17 +1108,6 @@ out:
|
|||||||
lvds_encoder->a3_power = I915_READ(lvds_encoder->reg) &
|
lvds_encoder->a3_power = I915_READ(lvds_encoder->reg) &
|
||||||
LVDS_A3_POWER_MASK;
|
LVDS_A3_POWER_MASK;
|
||||||
|
|
||||||
/*
|
|
||||||
* Unlock registers and just
|
|
||||||
* leave them unlocked
|
|
||||||
*/
|
|
||||||
if (HAS_PCH_SPLIT(dev)) {
|
|
||||||
I915_WRITE(PCH_PP_CONTROL,
|
|
||||||
I915_READ(PCH_PP_CONTROL) | PANEL_UNLOCK_REGS);
|
|
||||||
} else {
|
|
||||||
I915_WRITE(PP_CONTROL,
|
|
||||||
I915_READ(PP_CONTROL) | PANEL_UNLOCK_REGS);
|
|
||||||
}
|
|
||||||
lvds_connector->lid_notifier.notifier_call = intel_lid_notify;
|
lvds_connector->lid_notifier.notifier_call = intel_lid_notify;
|
||||||
if (acpi_lid_notifier_register(&lvds_connector->lid_notifier)) {
|
if (acpi_lid_notifier_register(&lvds_connector->lid_notifier)) {
|
||||||
DRM_DEBUG_KMS("lid notifier registration failed\n");
|
DRM_DEBUG_KMS("lid notifier registration failed\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user