diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-06-23 15:40:06 +0200 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2010-06-23 15:40:06 +0200 |
commit | 3951d7043e3002d34780618cfa2ccf378bd14edd (patch) | |
tree | 3c2d288ffc1367c77399b8f882a76ff5f48a6f94 | |
parent | 1e47708c768b5d7ff2f214ac7467a28201ba254c (diff) |
commit b90406de472c1aa5371ab593a2bb79136d5de658
Author: Thomas White <taw@bitwiz.org.uk>
Date: Thu Nov 26 11:55:33 2009 +0300
Subject: mfd: glamo: Enable FIFO stage for the LCD engine's memory access
By avoiding conflicts of memory access inside Glamo, this doubles the
speed of internal memory access.
Signed-off-by: Thomas White <taw@bitwiz.org.uk>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
-rw-r--r-- | drivers/video/glamo-fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/glamo-fb.c b/drivers/video/glamo-fb.c index c71fa1d50b5..c74ea733a8c 100644 --- a/drivers/video/glamo-fb.c +++ b/drivers/video/glamo-fb.c @@ -134,7 +134,7 @@ static struct glamo_script glamo_regs[] = { * 01 00 0 100 0 000 01 0 0 */ /* The following values assume 640*480@16bpp */ { GLAMO_REG_LCD_A_BASE1, 0x0000 }, /* display A base address 15:0 */ - { GLAMO_REG_LCD_A_BASE2, 0x0000 }, /* display A base address 22:16 */ + { GLAMO_REG_LCD_A_BASE2, 0x4000 }, /* display A base address 22:16 */ { GLAMO_REG_LCD_CURSOR_BASE1, 0xC000 }, /* cursor base address 15:0 */ { GLAMO_REG_LCD_CURSOR_BASE2, 0x0012 }, /* cursor base address 22:16 */ { GLAMO_REG_LCD_COMMAND2, 0x0000 }, /* display page A */ |