Update of /cvsroot/blob/blob/include
In directory usw-pr-cvs1:/tmp/cvs-serv30577
Modified Files:
linux.h led.h main.h
Log Message:
- added PT System3 board support
Index: linux.h
===================================================================
RCS file: /cvsroot/blob/blob/include/linux.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- linux.h 2001/09/17 00:05:31 1.3
+++ linux.h 2001/10/01 12:43:49 1.4
@@ -46,6 +46,8 @@
# define ARCH_NUMBER (20)
#elif defined SHANNON
# define ARCH_NUMBER (97)
+#elif defined PT_SYSTEM3
+# define ARCH_NUMBER (112)
#else
#warning "FIXME: Calling the kernel with a generic SA1100 architecture code. YMMV!"
#define ARCH_NUMBER (18)
Index: led.h
===================================================================
RCS file: /cvsroot/blob/blob/include/led.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- led.h 2001/08/06 22:44:52 1.2
+++ led.h 2001/10/01 12:43:49 1.3
@@ -34,6 +34,8 @@
# define LED_GPIO 0x00800000 /* GPIO 23 */
#elif defined PLEB
# define LED_GPIO 0x00010000 /* GPIO 16 */
+#elif defined PT_SYSTEM3
+# define LED_GPIO 0x00000400 /* GPIO 10 */
#else
#warning "FIXME: Include code to turn on one of the LEDs on your board"
# define LED_GPIO 0x00000000 /* safe mode: no GPIO, so no LED */
Index: main.h
===================================================================
RCS file: /cvsroot/blob/blob/include/main.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- main.h 2001/08/31 06:26:59 1.4
+++ main.h 2001/10/01 12:43:49 1.5
@@ -41,11 +41,14 @@
/* where does blob live when we download it */
#if defined SHANNON
-#define BLOB_RAM_BASE (0xc0100000)
+# define BLOB_RAM_BASE (0xc0100000)
+#elif defined PT_SYSTEM3
+# define BLOB_RAM_BASE (0xc0100000)
#else
-#define BLOB_RAM_BASE (0xc1000000)
+# define BLOB_RAM_BASE (0xc0100000)
#endif
+
#define BLOB_BLOCK_OFFSET (0x00000000)
/* where does the paramater list live when we download it */
@@ -62,6 +65,8 @@
# define RAMDISK_RAM_BASE (0xC0800000)
#elif defined SHANNON
# define RAMDISK_RAM_BASE (0xC8000000)
+#elif defined PT_SYSTEM3
+# define RAMDISK_RAM_BASE (0xC0800000)
#else
# define RAMDISK_RAM_BASE (0xC0400000)
#endif
@@ -70,6 +75,8 @@
# define RAMDISK_BLOCK_OFFSET (0x00800000)
#elif defined SHANNON
# define RAMDISK_BLOCK_OFFSET (0x00200000)
+#elif defined PT_SYSTEM3
+# define RAMDISK_BLOCK_OFFSET (0x00800000)
#else
# define RAMDISK_BLOCK_OFFSET (0x00400000)
#endif
|