EMILE/second/main.c

112 lines
2.5 KiB
C
Raw Normal View History

2004-02-15 20:46:45 +00:00
/*
*
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <stdio.h>
#include <malloc.h>
2004-02-21 01:43:51 +00:00
#include <string.h>
2004-02-15 20:46:45 +00:00
#include "lowmem.h"
#include "MMU.h"
#include "bank.h"
2004-02-15 20:46:45 +00:00
#include "memory.h"
#include "uncompress.h"
#include "bootinfo.h"
2004-02-21 01:43:51 +00:00
#include "console.h"
2004-02-15 20:46:45 +00:00
extern char _kernel_start;
extern char _kernel_end;
extern char _KERNEL_SIZE;
extern void enter_kernel(char* addr, unsigned long size);
#define BI_ALLOC_SIZE (4096L) // Allocate 4K for bootinfo
int main(int argc, char** argv)
{
char * kernel;
char* kernel_image_start = &_kernel_start;
unsigned long kernel_image_size = &_kernel_end - &_kernel_start;
unsigned long kernel_size = (unsigned long)&_KERNEL_SIZE;
unsigned long physEntry;
2004-02-23 00:20:11 +00:00
typedef void (*entry_t) (unsigned char *physEntry, unsigned long size);
2004-02-21 01:43:51 +00:00
entry_t entry;
int ret;
2004-02-15 20:46:45 +00:00
printf("Early Macintosh Image LoadEr\n");
printf("EMILE v"VERSION" (c) 2004 Laurent Vivier\n");
printf("This is free software, redistribute it under GPL\n");
2004-02-19 13:09:41 +00:00
bank_dump();
2004-02-15 20:46:45 +00:00
printf("Kernel image found at %p\n", kernel_image_start);
printf("Kernel image size is %ld Bytes\n", kernel_image_size);
if (kernel_image_size != 0)
{
/* add KERNEL_ALIGN if we have to align
* and BI_ALLOC_SIZE for bootinfo
*/
kernel = (char*)malloc(kernel_size + 4 + BI_ALLOC_SIZE);
if (kernel == 0)
{
printf("ERROR: cannot allocate %ld bytes\n", kernel_size);
while (1);
}
/* align kernel address to a 4 byte word */
kernel = (unsigned char*)(((unsigned long)kernel + 3) & 0xFFFFFFFC);
uncompress(kernel);
}
else
{
printf("Kernel is missing !!!!\n");
while(1) ;
}
2004-02-23 00:20:11 +00:00
ret = logical2physical((unsigned long)kernel, &physEntry);
2004-02-15 20:46:45 +00:00
set_kernel_bootinfo(kernel + kernel_size);
2004-02-23 00:20:11 +00:00
/* disable interrupt */
asm("ori.w #0x0700,%sr");
/* disable and flush cache */
asm("lea 0x0808, %%a1; movec %%a1, %%cacr"::: "%a1");
/* where is mapped my boot function ? */
2004-02-21 01:43:51 +00:00
ret = logical2physical( (unsigned long)enter_kernel,
(unsigned long*)&entry);
2004-02-23 00:20:11 +00:00
2004-02-21 01:43:51 +00:00
if ( (ret == 0) &&
((unsigned long)enter_kernel != (unsigned long)entry) )
{
extern char end_enter_kernel;
unsigned long logi;
unsigned long size = (unsigned long)&end_enter_kernel -
(unsigned long)&enter_kernel;
logi = console_get_video();
ret = logical2physical(logi, (unsigned long*)&entry);
2004-02-23 00:20:11 +00:00
2004-02-21 01:43:51 +00:00
memcpy((char*)logi, &enter_kernel, size);
memcpy((char*)entry, &enter_kernel, size);
}
2004-02-23 00:20:11 +00:00
printf("\nOk, booting the kernel.\n");
2004-02-21 01:43:51 +00:00
entry((unsigned char*)physEntry, kernel_size + BI_ALLOC_SIZE);
2004-02-15 20:46:45 +00:00
return 0;
}