#include <hpcdefs.h>
#include <hpcboot.h>
#include <boot.h>
#include <load.h>
#include <load_elf.h>
#include <load_coff.h>
#undef DPRINTF
#include <console.h>
#include <file.h>
#ifdef ARM
#include <arm/arm_boot.h>
#endif
#ifdef MIPS
#include <mips/mips_boot.h>
#endif
#ifdef SHx
#include <sh3/sh_boot.h>
#endif
Boot *Boot::_instance = 0;
Boot &
Boot::Instance()
{
if (_instance)
return *_instance;
struct HpcMenuInterface::boot_hook_args bha;
bha.func = hpcboot;
bha.arg = 0;
HPC_MENU.register_boot_hook(bha);
#ifdef ARM
_instance = new ARMBoot();
#endif
#ifdef MIPS
_instance = new MIPSBoot();
#endif
#ifdef SHx
_instance = new SHBoot();
#endif
memset(&_instance->args, 0, sizeof(struct BootSetupArgs));
_instance->args.consoleEnable = TRUE;
return *_instance;
}
void
Boot::Destroy()
{
if (_instance)
delete _instance;
}
BOOL
Boot::setup()
{
struct HpcMenuInterface::HpcMenuPreferences &pref = HPC_PREFERENCE;
args.console = pref.boot_serial ? CONSOLE_SERIAL : CONSOLE_LCD;
TCHAR *dir = pref.dir_user_path;
if (wcsstr(dir, TEXT("http://")))
args.file = FILE_HTTP;
else
args.file = wcschr(dir, TEXT('/')) ? FILE_UFS : FILE_FAT;
wcscpy(args.fileRoot, dir);
wcscpy(args.fileName, pref.kernel_user_file);
args.loadmfs = (pref.rootfs == 2);
if (args.loadmfs)
wcscpy(args.mfsName, pref.rootfs_file);
args.loaderDebug = FALSE;
args.architectureDebug = FALSE;
args.memorymanagerDebug = FALSE;
args.fileDebug = FALSE;
return TRUE;
}
Boot::Boot()
{
_arch = 0;
_mem = 0;
_file = 0;
_loader = 0;
_cons = Console::Instance();
}
Boot::~Boot()
{
if (_file)
delete _file;
if (_loader)
delete _loader;
}
BOOL
Boot::create()
{
Console::changeConsole(*_cons);
_file = new FileManager(_cons, args.file);
_file->setDebug() = args.fileDebug;
return TRUE;
}
BOOL
Boot::attachLoader()
{
switch (Loader::objectFormat(*_file)) {
case LOADER_ELF:
_loader = new ElfLoader(_cons, _mem);
break;
case LOADER_COFF:
_loader = new CoffLoader(_cons, _mem);
break;
default:
DPRINTF((TEXT("unknown file format.\n")));
return FALSE;
}
return TRUE;
}