78 lines
2.6 KiB
Diff
78 lines
2.6 KiB
Diff
From 9286a0bc63de32c66d894b45dcf048a072a84cd7 Mon Sep 17 00:00:00 2001
|
|
From: Adam Jackson <ajax@redhat.com>
|
|
Date: Mon, 19 Apr 2010 15:57:25 -0400
|
|
Subject: [PATCH 1/4] drm/i915: Use spatio-temporal dithering on PCH
|
|
|
|
Spatial dither is better than nothing, but ST is even better.
|
|
|
|
(from ajax's followup message:)
|
|
I noticed this with:
|
|
|
|
http://ajax.fedorapeople.org/YellowFlower.jpg
|
|
|
|
set as my desktop background in Gnome on a 1280x800 machine (in
|
|
particular, a Sony Vaio VPCB1 with 6-bit panel and a rather bright black
|
|
level). Easiest way to test this is by poking at PIPEACONF with
|
|
intel_reg_write directly:
|
|
|
|
% sudo intel_reg_write 0x70008 0xc0000040 # no dither
|
|
% sudo intel_reg_write 0x70008 0xc0000050 # spatial
|
|
% sudo intel_reg_write 0x70008 0xc0000054 # ST
|
|
|
|
I notice it especially strongly in the relatively flat dark area in the
|
|
top left. Closer than about 18" I can see a noticeable checkerboard
|
|
pattern with plain spatial dithering. ST smooths that out; I can still
|
|
tell that it's lacking color precision, but it's not offensive.
|
|
|
|
Signed-off-by: Adam Jackson <ajax@redhat.com>
|
|
Signed-off-by: Eric Anholt <eric@anholt.net>
|
|
---
|
|
drivers/gpu/drm/i915/i915_reg.h | 5 ++++-
|
|
drivers/gpu/drm/i915/intel_display.c | 10 ++++++----
|
|
2 files changed, 10 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
|
|
index 4cbc521..89b6efc 100644
|
|
--- a/drivers/gpu/drm/i915/i915_reg.h
|
|
+++ b/drivers/gpu/drm/i915/i915_reg.h
|
|
@@ -1924,7 +1924,10 @@
|
|
/* Display & cursor control */
|
|
|
|
/* dithering flag on Ironlake */
|
|
-#define PIPE_ENABLE_DITHER (1 << 4)
|
|
+#define PIPE_ENABLE_DITHER (1 << 4)
|
|
+#define PIPE_DITHER_TYPE_MASK (3 << 2)
|
|
+#define PIPE_DITHER_TYPE_SPATIAL (0 << 2)
|
|
+#define PIPE_DITHER_TYPE_ST01 (1 << 2)
|
|
/* Pipe A */
|
|
#define PIPEADSL 0x70000
|
|
#define PIPEACONF 0x70008
|
|
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
|
|
index c7502b6..f1a37d9 100644
|
|
--- a/drivers/gpu/drm/i915/intel_display.c
|
|
+++ b/drivers/gpu/drm/i915/intel_display.c
|
|
@@ -3321,14 +3321,16 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc,
|
|
/* set the dithering flag */
|
|
if (IS_I965G(dev)) {
|
|
if (dev_priv->lvds_dither) {
|
|
- if (HAS_PCH_SPLIT(dev))
|
|
+ if (HAS_PCH_SPLIT(dev)) {
|
|
pipeconf |= PIPE_ENABLE_DITHER;
|
|
- else
|
|
+ pipeconf |= PIPE_DITHER_TYPE_ST01;
|
|
+ } else
|
|
lvds |= LVDS_ENABLE_DITHER;
|
|
} else {
|
|
- if (HAS_PCH_SPLIT(dev))
|
|
+ if (HAS_PCH_SPLIT(dev)) {
|
|
pipeconf &= ~PIPE_ENABLE_DITHER;
|
|
- else
|
|
+ pipeconf &= ~PIPE_DITHER_TYPE_MASK;
|
|
+ } else
|
|
lvds &= ~LVDS_ENABLE_DITHER;
|
|
}
|
|
}
|
|
--
|
|
1.7.0.1
|
|
|