aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/init/bootblock_normal.c
blob: 99551484aaadf0f2d680e349e29b718532313e8a (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
#include <bootblock_common.h>
#include <pc80/mc146818rtc.h>

static void main(unsigned long bist)
{
	if (boot_cpu()) {
		bootblock_northbridge_init();
		bootblock_southbridge_init();
	}

#if CONFIG_USE_OPTION_TABLE
	sanitize_cmos();
#endif

	unsigned long entry;
	if (do_normal_boot())
		entry = findstage("normal/romstage");
	else
		entry = findstage("fallback/romstage");

	if (entry) call(entry, bist);

	/* run fallback if normal can't be found */
	entry = findstage("fallback/romstage");
	if (entry) call(entry, bist);

	/* duh. we're stuck */
	asm volatile ("1:\n\thlt\n\tjmp 1b\n\t");
}