Update of /cvsroot/blob/blob/include/blob/arch
In directory usw-pr-cvs1:/tmp/cvs-serv30752
Modified Files:
system3.h
Log Message:
- RAM pool for newer revision boards
Index: system3.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/arch/system3.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- system3.h 8 May 2002 19:14:10 -0000 1.16
+++ system3.h 13 May 2002 09:38:59 -0000 1.17
@@ -30,8 +30,8 @@
#undef CPU_SPEED_133
/* SYSTEM3 with 64 MB SDRAM, all on bank0 */
-#undef CONFIG_SYSTEM3_REV0802
-//#define CONFIG_SYSTEM3_REV0802
+//#undef CONFIG_SYSTEM3_REV0802
+#define CONFIG_SYSTEM3_REV0802
/* boot CPU speed */
#ifdef CPU_SPEED_133
@@ -73,6 +73,15 @@
#define RAMDISK_FLASH_LEN (1536 * 1024)
#define CRAMFS_FLASH_BASE (0x00300000)
#define CRAMFS_FLASH_LEN (13312 * 1024)
+
+/* system3 RAM pool for up/downloading */
+#if !defined(CONFIG_SYSTEM3_REV0802)
+#define RAM_START (0xd0000000)
+#define RAM_SIZE (16*1024*1024)
+#else
+#define RAM_START (0xc1000000)
+#define RAM_SIZE (16*1024*1024)
+#endif
/* the position of the kernel boot parameters */
|