summaryrefslogtreecommitdiff
path: root/firmware/export/dm320.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/dm320.h')
-rw-r--r--firmware/export/dm320.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/export/dm320.h b/firmware/export/dm320.h
index 0c84444a66..4dfc55dcd3 100644
--- a/firmware/export/dm320.h
+++ b/firmware/export/dm320.h
@@ -25,7 +25,10 @@
25#define __DM320_H__ 25#define __DM320_H__
26 26
27#define LCD_BUFFER_SIZE (640*480*4) 27#define LCD_BUFFER_SIZE (640*480*4)
28#define FRAME ((short *) (0x4900000-LCD_BUFFER_SIZE)) /* Put the buffer at the end of mem */ 28#define TTB_SIZE (0x4000)
29/* must be 16Kb (0x4000) aligned */
30#define TTB_BASE ((unsigned int *)(0x04900000 - TTB_SIZE)) /* End of memory */
31#define FRAME ((short *) (TTB_BASE - LCD_BUFFER_SIZE)) /* Right before TTB */
29 32
30#define PHY_IO_BASE 0x00030000 33#define PHY_IO_BASE 0x00030000
31#define DM320_REG(addr) (*(volatile unsigned short *)(PHY_IO_BASE + (addr))) 34#define DM320_REG(addr) (*(volatile unsigned short *)(PHY_IO_BASE + (addr)))