summaryrefslogtreecommitdiff
path: root/src/lib/loaders/cbfs_ramstage_loader.c
blob: 5d5cc0b0ecc2e8b41a70a5271044492f4a10f3c6 (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
/*
 * This file is part of the coreboot project.
 *
 * Copyright (C) 2008-2009 coresystems GmbH
 * 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 <console/console.h>
#include <cbfs.h>
#include <arch/stages.h>
#include <ramstage_loader.h>
#include <timestamp.h>

#if CONFIG_RELOCATABLE_RAMSTAGE
#include <rmodule.h>

static void *cbfs_load_ramstage(uint32_t cbmem_id, const char *name,
				const struct cbmem_entry **cbmem_entry)
{
	struct rmod_stage_load rmod_ram = {
		.cbmem_id = cbmem_id,
		.name = name,
	};

	if (rmodule_stage_load_from_cbfs(&rmod_ram)) {
		printk(BIOS_DEBUG, "Could not load ramstage.\n");
		return NULL;
	}

	*cbmem_entry = rmod_ram.cbmem_entry;

	return rmod_ram.entry;
}

#else /* CONFIG_RELOCATABLE_RAMSTAGE */

static void *cbfs_load_ramstage(uint32_t cbmem_id, const char *name,
				const struct cbmem_entry **cbmem_entry)
{
	void *entry;

	entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, name);

	if ((void *)entry == (void *) -1)
		entry = NULL;

	return entry;
}

#endif /* CONFIG_RELOCATABLE_RAMSTAGE */

const struct ramstage_loader_ops cbfs_ramstage_loader = {
	.name = "CBFS",
	.load = cbfs_load_ramstage,
};