All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] drm/cirrus: Correct register values for 16bpp
@ 2013-01-25 16:21 Takashi Iwai
  2013-01-25 16:21 ` [PATCH 2/2] drm/cirrus: Use 16bpp as default Takashi Iwai
  2013-01-29  8:26 ` [PATCH 1/2] drm/cirrus: Correct register values for 16bpp Takashi Iwai
  0 siblings, 2 replies; 7+ messages in thread
From: Takashi Iwai @ 2013-01-25 16:21 UTC (permalink / raw)
  To: David Airlie; +Cc: Stefan Dirsch, Bernhard Wiedemann, dri-devel, linux-kernel

When the mode is set with 16bpp on QEMU, the output gets totally
broken.  The culprit is the bogus register values set for 16bpp,
which was likely copied from from a wrong place.

Bugzilla: https://bugzilla.novell.com/show_bug.cgi?id=799216

Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
 drivers/gpu/drm/cirrus/cirrus_mode.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/cirrus/cirrus_mode.c b/drivers/gpu/drm/cirrus/cirrus_mode.c
index 60685b2..379a47e 100644
--- a/drivers/gpu/drm/cirrus/cirrus_mode.c
+++ b/drivers/gpu/drm/cirrus/cirrus_mode.c
@@ -273,8 +273,8 @@ static int cirrus_crtc_mode_set(struct drm_crtc *crtc,
 		sr07 |= 0x11;
 		break;
 	case 16:
-		sr07 |= 0xc1;
-		hdr = 0xc0;
+		sr07 |= 0x17;
+		hdr = 0xc1;
 		break;
 	case 24:
 		sr07 |= 0x15;
-- 
1.8.1.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-01-29 10:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-25 16:21 [PATCH 1/2] drm/cirrus: Correct register values for 16bpp Takashi Iwai
2013-01-25 16:21 ` [PATCH 2/2] drm/cirrus: Use 16bpp as default Takashi Iwai
2013-01-29  8:29   ` [PATCH] drm/cirrus: Add bpp option Takashi Iwai
2013-01-29  9:53     ` Daniel Vetter
2013-01-29  9:57       ` Takashi Iwai
2013-01-29 10:03         ` Daniel Vetter
2013-01-29  8:26 ` [PATCH 1/2] drm/cirrus: Correct register values for 16bpp Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.