summaryrefslogtreecommitdiff
path: root/sys/arch/hpc/stand/hpcboot/boot.cpp
blob: 2e3ffa7fd6ccf772a46c42e67253c21a728d2607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*	$NetBSD: boot.cpp,v 1.7 2008/04/28 20:23:20 martin Exp $	*/

/*-
 * Copyright (c) 2001, 2004 The NetBSD Foundation, Inc.
 * All rights reserved.
 *
 * This code is derived from software contributed to The NetBSD Foundation
 * by UCHIYAMA Yasushi.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <hpcdefs.h>
#include <hpcboot.h>
#include <boot.h>

#include <load.h>
#include <load_elf.h>
#include <load_coff.h>
#undef DPRINTF // trash coff_machdep.h's 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;

	// register bootloader to menu system.
	// (will be invoked by boot button)
	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;

	// file path.
	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);

	// file name.
	wcscpy(args.fileName, pref.kernel_user_file);
	args.loadmfs = (pref.rootfs == 2);
	if (args.loadmfs)
		wcscpy(args.mfsName, pref.rootfs_file);

	// debug options.
	args.loaderDebug	= FALSE;
	args.architectureDebug	= FALSE;
	args.memorymanagerDebug	= FALSE;
	args.fileDebug		= FALSE;

	return TRUE;
}

Boot::Boot()
{
	_arch	= 0;
	_mem	= 0;
	_file	= 0;
	_loader	= 0;
	// set default console
	_cons = Console::Instance();
}

Boot::~Boot()
{

	if (_file)
		delete _file;
	if (_loader)
		delete _loader;
}

BOOL
Boot::create()
{

	// Set this console (setuped by machine dependent part) as default.
	Console::changeConsole(*_cons);

	// File manager.
	_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;
}