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

static void main(unsigned long bist)
{
	unsigned long entry;
	int boot_mode;

	if (boot_cpu()) {
		bootblock_northbridge_init();
		bootblock_southbridge_init();
		bootblock_cpu_init();

#if CONFIG_USE_OPTION_TABLE
		sanitize_cmos();
#endif
		boot_mode = do_normal_boot();
	} else {

		/* Questionable single byte read from CMOS.
		 * Do not add any other CMOS access in the
		 * bootblock for AP CPUs.
		 */
		boot_mode = last_boot_normal();
	}

	if (boot_mode)
		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");
}