aboutsummaryrefslogtreecommitdiff
path: root/src/arch/i386/init/bootblock_normal.c
blob: 1f3f6c2ea58a3902e10b176452844774c1e3cb71 (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
#include <bootblock_common.h>

#include <arch/io.h>
#include "arch/romcc_io.h"
#include <pc80/mc146818rtc.h>

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

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