aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2011-01-17 16:35:57 -0500
committerChris Wilson <chris@chris-wilson.co.uk>2011-01-18 04:50:08 -0500
commit1ffa325bac55982d72a61ccab1a4190501e37148 (patch)
tree357afa5393b50c3d2c61620587ec68b1d4ebee2d /drivers
parente6f597a1425b5af64917be3448b29e2d5a585ac8 (diff)
drm/i915: set more FBC chicken bits
Add a couple of missing workaround bits for ILK & SNB. These disable clock gating on a couple of units that would otherwise prevent FBC from working. Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/i915/i915_reg.h2
-rw-r--r--drivers/gpu/drm/i915/intel_display.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 40a407f41f6..6abb15f13c2 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -2626,6 +2626,8 @@
2626#define DISPLAY_PORT_PLL_BIOS_2 0x46014 2626#define DISPLAY_PORT_PLL_BIOS_2 0x46014
2627 2627
2628#define PCH_DSPCLK_GATE_D 0x42020 2628#define PCH_DSPCLK_GATE_D 0x42020
2629# define DPFCUNIT_CLOCK_GATE_DISABLE (1 << 9)
2630# define DPFCRUNIT_CLOCK_GATE_DISABLE (1 << 8)
2629# define DPFDUNIT_CLOCK_GATE_DISABLE (1 << 7) 2631# define DPFDUNIT_CLOCK_GATE_DISABLE (1 << 7)
2630# define DPARBUNIT_CLOCK_GATE_DISABLE (1 << 5) 2632# define DPARBUNIT_CLOCK_GATE_DISABLE (1 << 5)
2631 2633
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 98967f3b772..d2ef1c2c65e 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -6286,7 +6286,9 @@ void intel_enable_clock_gating(struct drm_device *dev)
6286 6286
6287 if (IS_GEN5(dev)) { 6287 if (IS_GEN5(dev)) {
6288 /* Required for FBC */ 6288 /* Required for FBC */
6289 dspclk_gate |= DPFDUNIT_CLOCK_GATE_DISABLE; 6289 dspclk_gate |= DPFCUNIT_CLOCK_GATE_DISABLE |
6290 DPFCRUNIT_CLOCK_GATE_DISABLE |
6291 DPFDUNIT_CLOCK_GATE_DISABLE;
6290 /* Required for CxSR */ 6292 /* Required for CxSR */
6291 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE; 6293 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE;
6292 6294