diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-11-26 11:55:33 +0300 |
---|---|---|
committer | Paul Fertser <fercerpav@gmail.com> | 2009-11-26 11:55:33 +0300 |
commit | b90406de472c1aa5371ab593a2bb79136d5de658 (patch) | |
tree | 2378aa5b698566b55c7b5edfbd05161b06a387dd | |
parent | bdaf2752eb06b600098f89661baa3e478cd52105 (diff) |
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/mfd/glamo/glamo-fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/glamo/glamo-fb.c b/drivers/mfd/glamo/glamo-fb.c index 44ab9a39787..21165d97fb2 100644 --- a/drivers/mfd/glamo/glamo-fb.c +++ b/drivers/mfd/glamo/glamo-fb.c @@ -128,7 +128,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_B_BASE1, 0x6000 }, /* display B base address 15:0 */ { GLAMO_REG_LCD_B_BASE2, 0x0009 }, /* display B base address 22:16 */ { GLAMO_REG_LCD_CURSOR_BASE1, 0xC000 }, /* cursor base address 15:0 */ |