diff options
author | Paulo Zanoni <paulo.r.zanoni@intel.com> | 2012-11-20 10:27:42 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2012-11-21 11:47:10 -0500 |
commit | 54075a7d75732147c32f7a99af5218f7d0f62596 (patch) | |
tree | 5bd656dfff524d17b128a39afe5a01097253f054 | |
parent | 13888d78c664a1f61d7b09d282f5916993827a40 (diff) |
drm/i915: make the panel fitter work on pipes B and C on Haswell
This goes on a separate patch since it won't apply on the stable
trees and there's nothing using panel fitter on HSW on the older
Kernels.
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Reviewed-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | drivers/gpu/drm/i915/intel_display.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index c2ef6cdf66c3..1e405a3b6604 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c | |||
@@ -3467,7 +3467,8 @@ static void haswell_crtc_enable(struct drm_crtc *crtc) | |||
3467 | * as some pre-programmed values are broken, | 3467 | * as some pre-programmed values are broken, |
3468 | * e.g. x201. | 3468 | * e.g. x201. |
3469 | */ | 3469 | */ |
3470 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3); | 3470 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 | |
3471 | PF_PIPE_SEL_IVB(pipe)); | ||
3471 | I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos); | 3472 | I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos); |
3472 | I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size); | 3473 | I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size); |
3473 | } | 3474 | } |