-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Somebody in the thread at some point said:
> Somebody in the thread at some point said:
> 
>> Great, at least we have 1 workaround here :)
> 
>> Do you think this could apply to kernel driver as well?
> 
> Sure, I am working on that one too.

This comes out to 72.5Hz refresh, I think there are a few more lines
than in U-Boot but it is still a big jump.  Maybe someone can test this
for flicker, I didn't know a good way to fill areas of solid colour with
what is in the rootfs in Linux.

- -Andy
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iD8DBQFH1UcuOjLpvpq7dMoRAkNKAJ45MTAVHGY3+Hn6H/QZk/tEawYshwCfdXrs
OB9kJFB5xhZDpBCIkLymtE4=
=/cXB
-----END PGP SIGNATURE-----
fix-glamofb-flicker-72hz-refresh.patch

From: Andy Green <[EMAIL PROTECTED]>

Move video timings from 60Hz to 72.5Hz by removing needless blanking pixels.

Also correct the video clock reported by X since Carsten said it showed
50Hz refresh, presumably due to wrong PCLK data in the same struct.

Signed-off-by: Andy Green <[EMAIL PROTECTED]>
---

 arch/arm/mach-s3c2440/mach-gta02.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/arch/arm/mach-s3c2440/mach-gta02.c b/arch/arm/mach-s3c2440/mach-gta02.c
index dad2c18..0fd4853 100644
--- a/arch/arm/mach-s3c2440/mach-gta02.c
+++ b/arch/arm/mach-s3c2440/mach-gta02.c
@@ -1112,9 +1112,9 @@ gta02_glamo_mmc_set_power(unsigned char power_mode, unsigned short vdd)
 static struct glamofb_platform_data gta02_glamo_pdata = {
 	.width		= 43,
 	.height		= 58,
-	.pixclock	= 50 * 1000, /* 50 ns */
+	.pixclock	= 40816, /* 24.5MHz nom, 40.816ns */
 	.left_margin	= 8,
-	.right_margin	= 104,
+	.right_margin	= 16,
 	.upper_margin	= 2,
 	.lower_margin	= 16,
 	.hsync_len	= 8,

Reply via email to