blob: 8a6d6afafaec2b2c9a424ea10315b434a95b620a [file] [log] [blame]
Aaron Durbin899d13d2015-05-15 23:39:23 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2015 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbin899d13d2015-05-15 23:39:23 -050014 */
15
16
17#include <stdlib.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050018#include <cbfs.h>
19#include <cbmem.h>
Aaron Durbin64031672018-04-21 14:45:32 -060020#include <compiler.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050021#include <console/console.h>
22#include <fallback.h>
23#include <halt.h>
24#include <lib.h>
25#include <program_loading.h>
Aaron Durbin8cd723b2016-10-28 17:32:24 -050026#include <reset.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050027#include <romstage_handoff.h>
28#include <rmodule.h>
29#include <rules.h>
30#include <stage_cache.h>
31#include <symbols.h>
32#include <timestamp.h>
33
Aaron Durbin6a452ef2015-05-19 16:25:20 -050034/* Only can represent up to 1 byte less than size_t. */
Antonello Dettorie5f48d22016-06-22 21:09:08 +020035const struct mem_region_device addrspace_32bit =
36 MEM_REGION_DEV_RO_INIT(0, ~0UL);
Aaron Durbin6a452ef2015-05-19 16:25:20 -050037
Aaron Durbin6d720f32015-12-08 17:00:23 -060038int prog_locate(struct prog *prog)
39{
40 struct cbfsf file;
41
42 cbfs_prepare_program_locate();
43
44 if (cbfs_boot_locate(&file, prog_name(prog), NULL))
45 return -1;
46
47 cbfs_file_data(prog_rdev(prog), &file);
48
49 return 0;
50}
51
Aaron Durbin899d13d2015-05-15 23:39:23 -050052void run_romstage(void)
53{
Aaron Durbinac12c66c2015-05-20 12:08:55 -050054 struct prog romstage =
Aaron Durbin7e7a4df2015-12-08 14:34:35 -060055 PROG_INIT(PROG_ROMSTAGE, CONFIG_CBFS_PREFIX "/romstage");
Aaron Durbin899d13d2015-05-15 23:39:23 -050056
57 if (prog_locate(&romstage))
58 goto fail;
59
60 timestamp_add_now(TS_START_COPYROM);
61
62 if (cbfs_prog_stage_load(&romstage))
63 goto fail;
64
65 timestamp_add_now(TS_END_COPYROM);
66
67 prog_run(&romstage);
68
69fail:
70 if (IS_ENABLED(CONFIG_BOOTBLOCK_CONSOLE))
71 die("Couldn't load romstage.\n");
72 halt();
73}
74
Aaron Durbin64031672018-04-21 14:45:32 -060075void __weak stage_cache_add(int stage_id,
Aaron Durbin54546c92015-08-05 00:52:13 -050076 const struct prog *stage) {}
Aaron Durbin64031672018-04-21 14:45:32 -060077void __weak stage_cache_load_stage(int stage_id,
Aaron Durbin899d13d2015-05-15 23:39:23 -050078 struct prog *stage) {}
Aaron Durbin8cd723b2016-10-28 17:32:24 -050079
80static void ramstage_cache_invalid(void)
81{
82 printk(BIOS_ERR, "ramstage cache invalid.\n");
83 if (IS_ENABLED(CONFIG_RESET_ON_INVALID_RAMSTAGE_CACHE)) {
84 hard_reset();
85 halt();
86 }
87}
Aaron Durbin899d13d2015-05-15 23:39:23 -050088
Aaron Durbin6c191d82016-11-29 21:22:42 -060089static void run_ramstage_from_resume(struct prog *ramstage)
Aaron Durbin899d13d2015-05-15 23:39:23 -050090{
Aaron Durbin6c191d82016-11-29 21:22:42 -060091 if (!romstage_handoff_is_resume())
92 return;
Aaron Durbin899d13d2015-05-15 23:39:23 -050093
Aaron Durbin6c191d82016-11-29 21:22:42 -060094 /* Load the cached ramstage to runtime location. */
95 stage_cache_load_stage(STAGE_RAMSTAGE, ramstage);
96
97 if (prog_entry(ramstage) != NULL) {
98 printk(BIOS_DEBUG, "Jumping to image.\n");
99 prog_run(ramstage);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500100 }
Aaron Durbin6c191d82016-11-29 21:22:42 -0600101 ramstage_cache_invalid();
Aaron Durbin899d13d2015-05-15 23:39:23 -0500102}
103
104static int load_relocatable_ramstage(struct prog *ramstage)
105{
106 struct rmod_stage_load rmod_ram = {
107 .cbmem_id = CBMEM_ID_RAMSTAGE,
108 .prog = ramstage,
109 };
110
111 return rmodule_stage_load(&rmod_ram);
112}
113
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300114static int load_nonrelocatable_ramstage(struct prog *ramstage)
115{
116 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
117 uintptr_t base = 0;
118 size_t size = cbfs_prog_stage_section(ramstage, &base);
119 if (size)
120 backup_ramstage_section(base, size);
121 }
122
123 return cbfs_prog_stage_load(ramstage);
124}
125
Aaron Durbin899d13d2015-05-15 23:39:23 -0500126void run_ramstage(void)
127{
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500128 struct prog ramstage =
Aaron Durbin7e7a4df2015-12-08 14:34:35 -0600129 PROG_INIT(PROG_RAMSTAGE, CONFIG_CBFS_PREFIX "/ramstage");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500130
Aaron Durbin9796f602015-09-23 19:54:12 -0500131 timestamp_add_now(TS_END_ROMSTAGE);
132
Furquan Shaikh1e162bf2016-05-06 09:20:35 -0700133 /*
134 * Only x86 systems using ramstage stage cache currently take the same
135 * firmware path on resume.
136 */
137 if (IS_ENABLED(CONFIG_ARCH_X86) &&
138 !IS_ENABLED(CONFIG_NO_STAGE_CACHE) &&
139 IS_ENABLED(CONFIG_EARLY_CBMEM_INIT))
Aaron Durbin6c191d82016-11-29 21:22:42 -0600140 run_ramstage_from_resume(&ramstage);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500141
142 if (prog_locate(&ramstage))
143 goto fail;
144
145 timestamp_add_now(TS_START_COPYRAM);
146
147 if (IS_ENABLED(CONFIG_RELOCATABLE_RAMSTAGE)) {
148 if (load_relocatable_ramstage(&ramstage))
149 goto fail;
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300150 } else if (load_nonrelocatable_ramstage(&ramstage))
Aaron Durbin899d13d2015-05-15 23:39:23 -0500151 goto fail;
152
153 stage_cache_add(STAGE_RAMSTAGE, &ramstage);
154
155 timestamp_add_now(TS_END_COPYRAM);
156
157 prog_run(&ramstage);
158
159fail:
160 die("Ramstage was not loaded!\n");
161}
162
Stefan Reinauereec2db42015-06-18 01:19:50 -0700163#ifdef __RAMSTAGE__ // gc-sections should take care of this
164
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500165static struct prog global_payload =
Aaron Durbin7e7a4df2015-12-08 14:34:35 -0600166 PROG_INIT(PROG_PAYLOAD, CONFIG_CBFS_PREFIX "/payload");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500167
Aaron Durbin64031672018-04-21 14:45:32 -0600168void __weak mirror_payload(struct prog *payload)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500169{
Aaron Durbin899d13d2015-05-15 23:39:23 -0500170}
171
172void payload_load(void)
173{
174 struct prog *payload = &global_payload;
175
176 timestamp_add_now(TS_LOAD_PAYLOAD);
177
178 if (prog_locate(payload))
179 goto out;
180
181 mirror_payload(payload);
182
183 /* Pass cbtables to payload if architecture desires it. */
Simon Glass7ae73fc2016-08-27 12:18:38 -0600184 prog_set_entry(payload, selfload(payload, true),
Aaron Durbin899d13d2015-05-15 23:39:23 -0500185 cbmem_find(CBMEM_ID_CBTABLE));
186
187out:
188 if (prog_entry(payload) == NULL)
189 die("Payload not loaded.\n");
190}
191
192void payload_run(void)
193{
194 struct prog *payload = &global_payload;
195
196 /* Reset to booting from this image as late as possible */
197 boot_successful();
198
199 printk(BIOS_DEBUG, "Jumping to boot code at %p(%p)\n",
200 prog_entry(payload), prog_entry_arg(payload));
201
202 post_code(POST_ENTER_ELF_BOOT);
203
204 timestamp_add_now(TS_SELFBOOT_JUMP);
205
206 /* Before we go off to run the payload, see if
207 * we stayed within our bounds.
208 */
209 checkstack(_estack, 0);
210
211 prog_run(payload);
212}
Stefan Reinauereec2db42015-06-18 01:19:50 -0700213
214#endif