aboutsummaryrefslogtreecommitdiff
path: root/src/lib/loaders/load_and_run_ramstage.c
blob: 71eb22cef73aa31123535093604fb652e3086dee (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
/*
 * This file is part of the coreboot project.
 *
 * Copyright (C) 2014 Google Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include <stdlib.h>
#include <console/console.h>
#include <arch/stages.h>
#include <cbfs.h>
#include <cbmem.h>
#include <ramstage_loader.h>
#include <romstage_handoff.h>
#include <timestamp.h>

extern const struct ramstage_loader_ops cbfs_ramstage_loader;
extern const struct ramstage_loader_ops vboot_ramstage_loader;

static const struct ramstage_loader_ops *loaders[] = {
#if CONFIG_VBOOT_VERIFY_FIRMWARE
	&vboot_ramstage_loader,
#endif
	&cbfs_ramstage_loader,
};

static const char *ramstage_name = CONFIG_CBFS_PREFIX "/ramstage";
static const uint32_t ramstage_id = CBMEM_ID_RAMSTAGE;

static void
load_ramstage(const struct ramstage_loader_ops *ops, struct romstage_handoff *handoff)
{
	const struct cbmem_entry *cbmem_entry;
	void *entry_point;

	timestamp_add_now(TS_START_COPYRAM);
	entry_point = ops->load(ramstage_id, ramstage_name, &cbmem_entry);

	if (entry_point == NULL)
		return;

	cache_loaded_ramstage(handoff, cbmem_entry, entry_point);

	timestamp_add_now(TS_END_COPYRAM);

	stage_exit(entry_point);
}

static void run_ramstage_from_resume(struct romstage_handoff *handoff)
{
	void *entry;
	const struct cbmem_entry *cbmem_entry;

	if (handoff != NULL && handoff->s3_resume) {
		cbmem_entry = cbmem_entry_find(ramstage_id);

		/* No place to load ramstage. */
		if (cbmem_entry == NULL)
			return;

		/* Load the cached ramstage to runtime location. */
		entry = load_cached_ramstage(handoff, cbmem_entry);

		if (entry != NULL) {
			print_debug("Jumping to image.\n");
			stage_exit(entry);
		}
	}
}

void run_ramstage(void)
{
	struct romstage_handoff *handoff;
	const struct ramstage_loader_ops *ops;
	int i;

	handoff = romstage_handoff_find_or_add();

	run_ramstage_from_resume(handoff);

	for (i = 0; i < ARRAY_SIZE(loaders); i++) {
		ops = loaders[i];
		printk(BIOS_DEBUG, "Trying %s ramstage loader.\n", ops->name);
		load_ramstage(ops, handoff);
	}

	die("Ramstage was not loaded!\n");
}