From: Erik M. <er...@us...> - 2001-07-22 22:54:30
|
Update of /cvsroot/blob/blob/include In directory usw-pr-cvs1:/tmp/cvs-serv28848/include Modified Files: Tag: blob_1_0_9_hack Makefile.am main.h Added Files: Tag: blob_1_0_9_hack led.h memory.h sa1100.h Log Message: - added memory tester - switch off LED just before we jump to RAM and immediately swith it on again in main() so we can see if something went wrong - LED definitions are now in include/led.h - toggle LED at serial input - moved the #define __ASM_ARCH_HARDWARE_H hack to sa1100.h so we have that hack only in one file - minor documentation updates ***** Error reading new file: [Errno 2] No such file or directory: 'led.h' ***** Error reading new file: [Errno 2] No such file or directory: 'memory.h' ***** Error reading new file: [Errno 2] No such file or directory: 'sa1100.h' Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/include/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -u -r1.1.1.1 -r1.1.1.1.2.1 --- Makefile.am 2001/06/27 19:47:41 1.1.1.1 +++ Makefile.am 2001/07/22 22:54:26 1.1.1.1.2.1 @@ -15,8 +15,11 @@ clock.h \ command.h \ flash.h \ + led.h \ main.h \ + memory.h \ registers.h \ + sa1100.h \ serial.h \ time.h \ types.h \ Index: main.h =================================================================== RCS file: /cvsroot/blob/blob/include/main.h,v retrieving revision 1.1.1.1.2.2 retrieving revision 1.1.1.1.2.3 diff -u -r1.1.1.1.2.2 -r1.1.1.1.2.3 --- main.h 2001/07/18 23:49:41 1.1.1.1.2.2 +++ main.h 2001/07/22 22:54:26 1.1.1.1.2.3 @@ -34,19 +34,24 @@ #ifndef BLOB_MAIN_H #define BLOB_MAIN_H -/* were does blob live when we download it */ +/* memory start and end */ +#define MEMORY_START (0xc0000000) +#define MEMORY_END (0xe0000000) + + +/* where does blob live when we download it */ #define BLOB_RAM_BASE (0xC1000000) #define BLOB_BLOCK_OFFSET (0x00000000) -/* were does the kernel live in RAM */ +/* where does the kernel live in RAM */ #define KERNEL_RAM_BASE (0xC0008000) #define KERNEL_BLOCK_OFFSET (0x00008000) -/* were does the ramdisk live in RAM */ +/* where does the ramdisk live in RAM */ #if defined ASSABET # define RAMDISK_RAM_BASE (0xC0800000) #elif defined SHANNON |