--- linux/drivers/mtd/maps/cdb89712.c Fri May 17 17:20:55 2002 +++ linux.boot/drivers/mtd/maps/cdb89712.c Fri May 17 17:18:45 2002 @@ -15,10 +15,9 @@ #include /* TESTASECCA THOMAS ETIC 06/03/2002 - these defines the size of partitions */ -#define BOOT_PARTITION_SIZE 128 -#define KERNEL_PARTITION_SIZE 640 -#define ROOT_PARTITION_SIZE 1024 /* starting at 0x0c0000 */ -#define DATA_PARTITION_SIZE 2304 /* starting at 0x1c0000 */ +#define KERNEL_PARTITION_SIZE 640 /* starting at 0 */ +#define ROOT_PARTITION_SIZE 2048 /* starting at 0x0A0000 */ +#define DATA_PARTITION_SIZE 1408 /* starting at 0x2A0000 */ #define FREE_PARTITION_SIZE 4096 /* starting at 0x400000 */ #define NUM_PARTITIONS 5 @@ -27,24 +26,20 @@ * single flash device into. If the size if zero we use up to the end of the * device. */ static struct mtd_partition partition_info[]={ - { name: "cdb89712 flash boot partition", - offset: 0, - size: BOOT_PARTITION_SIZE*1024 }, - { name: "cdb89712 flash linux kernel partition", - offset: BOOT_PARTITION_SIZE*1024, + offset: 0, size: (KERNEL_PARTITION_SIZE)*1024 }, { name: "cdb89712 flash root partition", - offset: (BOOT_PARTITION_SIZE+KERNEL_PARTITION_SIZE)*1024, + offset: (KERNEL_PARTITION_SIZE)*1024, size: (ROOT_PARTITION_SIZE)*1024 }, { name: "cdb89712 flash data partition", - offset: (BOOT_PARTITION_SIZE+KERNEL_PARTITION_SIZE+ROOT_PARTITION_SIZE)*1024, + offset: (KERNEL_PARTITION_SIZE+ROOT_PARTITION_SIZE)*1024, size: (DATA_PARTITION_SIZE)*1024 }, { name: "cdb89712 flash free partition", - offset: (BOOT_PARTITION_SIZE+KERNEL_PARTITION_SIZE+ROOT_PARTITION_SIZE+DATA_PARTITION_SIZE)*1024 } + offset: (KERNEL_PARTITION_SIZE+ROOT_PARTITION_SIZE+DATA_PARTITION_SIZE)*1024 } }; --- linux/arch/arm/boot/Makefile_original Thu May 16 17:46:31 2002 +++ linux/arch/arm/boot/Makefile Thu May 16 17:26:28 2002 @@ -83,7 +83,7 @@ # ZTEXTADDR = 0xc0028000 PARAMS_PHYS = 0xc0000100 -ZTEXTADDR = 0x00020000 +ZTEXTADDR = 0x00000000 ZRELADDR = 0xc0028000 ZBSSADDR = 0xc0300000 --- linux/arch/arm/boot/compressed/head_original.S Thu May 16 18:14:21 2002 +++ linux/arch/arm/boot/compressed/head.S Thu May 16 18:11:53 2002 @@ -9,6 +9,9 @@ */ #include #include +#define SRAM_START 0x60000000 +#define SRAM_SIZE 0x0000c000 + /* * Debugging stuff @@ -102,10 +105,52 @@ */ .align start: - .type start,#function - .rept 8 - mov r0, r0 - .endr + .type start,#function + .rept 8 + mov r0, r0 + .endr + /* START OF LOADER */ + mov r0, #0x70 /* 32-bit code + data, MMU mandatory */ + mcr p15, 0, r0, c1, c0, 0 /* MMU init */ + + mov r0, #0 + mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */ + mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */ + + mov r0, #0x80000000 /* I/O base */ + + mov r1, #0x100 /* UART enable bit in SYSCON[1|2] */ + str r1, [r0, #0x100] /* enable UART1 in SYSCON1 */ + add r2, r0, #0x1100 /* load address of SYSCON2 in r2 */ + str r1, [r2] /* enable UART2 in SYSCON2 */ + + mov r1, #0x00060000 /* UART 8-bit data length */ + orr r1, r1, #1 /* UART 115200 bps */ + str r1, [r0, #0x4C0] /* set UART1 bit rate/line control */ + add r2, r0, #0x14C0 /* load address of UBRLCR2 in r2 */ + str r1, [r2] /* set UART2 bit rate/line control */ + + mov r1, #0x6 /* CLKCTL_73 in SYSCON3 */ + add r2, r0, #0x2200 /* address of SYSCON3 in r2 */ + str r1, [r2] /* set clock speed to 73.728 MHz */ + + mov r1, #0x81 /* 64KHz DRAM refresh period */ + str r1, [r0, #0x200] /* set DRFPR */ + + mov r1, #0x500 /* CAS lat = 2, permanent enable, 16 bit wide, 64Mbit SDRAM */ + add r1, r1, #0x22 + add r2, r0, #0x2300 /* load address in r2 */ + str r1, [r2] + + mov r1, #0x100 /* SDRAM refresh rate */ + add r2, r0, #0x2340 /* load address in r2 */ + str r1, [r2] + + mov sp, #SRAM_START /* init stack pointer */ + add sp, sp, #SRAM_SIZE + + bl hermit_entry /* see entry.c */ + /* END OF LOADER */ b 1f .word 0x016f2818 @ Magic numbers to help the loader --- linux/arch/arm/boot/compressed/misc_original.c Thu May 16 16:08:25 2002 +++ linux/arch/arm/boot/compressed/misc.c Thu May 16 17:49:11 2002 @@ -23,6 +23,7 @@ #include #include #include +#include "tags.h" #ifdef STANDALONE_DEBUG #define puts printf @@ -30,6 +31,93 @@ #define __ptr_t void * +void hermit_entry(void) +{ +// unsigned char *dst=0; + + /* clear .bss */ +/* dst = &__bss_start; + while (dst < &__bss_end) + *dst++ = 0; +*/ + IO_LEDFLSH = 0x7c; + hermit_linux_cmdfunc(0,0); +} + + +int hermit_linux_cmdfunc(int argc, char *argv[]) { + struct tag *tag = (struct tag *) LINUX_PARAM_ADDRESS; + + /* zero param block */ + memzero (tag, LINUX_PARAM_SIZE); + + /* set up core tag */ + tag->hdr.tag = ATAG_CORE; + tag->hdr.size = tag_size(tag_core); + tag->u.core.flags = 0; + tag->u.core.pagesize = 0x1000; + tag->u.core.rootdev = MKDEV(MTD_MAJOR, MTD_MINOR); + + /* 16 MB of SDRAM at 0xc0000000 */ + tag = tag_next(tag); + tag->hdr.tag = ATAG_MEM; + tag->hdr.size = tag_size(tag_mem32); + tag->u.mem.size = DRAM1_SIZE >> 12; + tag->u.mem.start = DRAM1_START; + + /* an initial ramdisk image in flash at 0x00700000 */ +/* tag = tag_next(tag); + tag->hdr.tag = ATAG_INITRD; + tag->hdr.size = tag_size(tag_initrd); + tag->u.initrd.start = INITRD_LOAD_ADDRESS; + tag->u.initrd.size = INITRD_SIZE; */ + /* the command line arguments */ + +/* if (argc > 1) { + tag = tag_next(tag); + tag->hdr.tag = ATAG_CMDLINE; + tag->hdr.size = (COMMAND_LINE_SIZE + 3 + + sizeof(struct tag_header)) >> 2; + + { + const unsigned char *src; + unsigned char *dst; + dst = tag->u.cmdline.cmdline; + memzero (dst, COMMAND_LINE_SIZE); + while (--argc > 0) { + src = *++argv; + hprintf ("Doing %s\n", src); + while (*src) + *dst++ = *src++; + *dst++ = ' '; + } + *--dst = '\0'; + } + } +*/ + + + tag = tag_next(tag); + tag->hdr.tag = 0; + tag->hdr.size = 0; + + /* branch to kernel image */ + __asm__ volatile ( + " mov r4, #0x00000000\n" /* start of flash */ + " add r4, r4, #0x00020000\n" /* kernel offset in flash*/ + " mov r0, #0\n" /* kernel sanity check */ + " mov r1, #107\n" /* CDB89712 arch. number */ + " mov r2, #0\n" + " mov r3, #0\n" +// " mov pc, r4" /* go there! */ + ); + + /* never get here */ + return 0; +} + + + /* * Optimised C version of memzero for the ARM. */