blob: 3b77712550acbe41aa943c1f9cdfd1a391d902ea [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>
20#include <console/console.h>
21#include <fallback.h>
22#include <halt.h>
23#include <lib.h>
24#include <program_loading.h>
Aaron Durbin8cd723b2016-10-28 17:32:24 -050025#include <reset.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050026#include <romstage_handoff.h>
27#include <rmodule.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050028#include <stage_cache.h>
29#include <symbols.h>
30#include <timestamp.h>
Patrick Rudolpha892cde2018-04-19 14:39:07 +020031#include <fit_payload.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050032
Aaron Durbin6a452ef2015-05-19 16:25:20 -050033/* Only can represent up to 1 byte less than size_t. */
Antonello Dettorie5f48d22016-06-22 21:09:08 +020034const struct mem_region_device addrspace_32bit =
35 MEM_REGION_DEV_RO_INIT(0, ~0UL);
Aaron Durbin6a452ef2015-05-19 16:25:20 -050036
Aaron Durbin6d720f32015-12-08 17:00:23 -060037int prog_locate(struct prog *prog)
38{
39 struct cbfsf file;
40
41 cbfs_prepare_program_locate();
42
43 if (cbfs_boot_locate(&file, prog_name(prog), NULL))
44 return -1;
45
Patrick Rudolph71327fb2018-05-03 10:35:26 +020046 cbfsf_file_type(&file, &prog->cbfs_type);
47
Aaron Durbin6d720f32015-12-08 17:00:23 -060048 cbfs_file_data(prog_rdev(prog), &file);
49
50 return 0;
51}
52
Aaron Durbin899d13d2015-05-15 23:39:23 -050053void run_romstage(void)
54{
Aaron Durbinac12c66c2015-05-20 12:08:55 -050055 struct prog romstage =
Aaron Durbin7e7a4df2015-12-08 14:34:35 -060056 PROG_INIT(PROG_ROMSTAGE, CONFIG_CBFS_PREFIX "/romstage");
Aaron Durbin899d13d2015-05-15 23:39:23 -050057
58 if (prog_locate(&romstage))
59 goto fail;
60
61 timestamp_add_now(TS_START_COPYROM);
62
63 if (cbfs_prog_stage_load(&romstage))
64 goto fail;
65
66 timestamp_add_now(TS_END_COPYROM);
67
68 prog_run(&romstage);
69
70fail:
Julius Wernercd49cce2019-03-05 16:53:33 -080071 if (CONFIG(BOOTBLOCK_CONSOLE))
Aaron Durbin899d13d2015-05-15 23:39:23 -050072 die("Couldn't load romstage.\n");
73 halt();
74}
75
Aaron Durbin64031672018-04-21 14:45:32 -060076void __weak stage_cache_add(int stage_id,
Aaron Durbin54546c92015-08-05 00:52:13 -050077 const struct prog *stage) {}
Aaron Durbin64031672018-04-21 14:45:32 -060078void __weak stage_cache_load_stage(int stage_id,
Aaron Durbin899d13d2015-05-15 23:39:23 -050079 struct prog *stage) {}
Aaron Durbin8cd723b2016-10-28 17:32:24 -050080
81static void ramstage_cache_invalid(void)
82{
83 printk(BIOS_ERR, "ramstage cache invalid.\n");
Julius Wernercd49cce2019-03-05 16:53:33 -080084 if (CONFIG(RESET_ON_INVALID_RAMSTAGE_CACHE)) {
Nico Huber4f32b642018-10-05 23:40:21 +020085 board_reset();
Aaron Durbin8cd723b2016-10-28 17:32:24 -050086 }
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{
Julius Wernercd49cce2019-03-05 16:53:33 -0800116 if (CONFIG(HAVE_ACPI_RESUME)) {
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300117 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
Subrata Banik4f42eea2019-03-05 16:45:14 +0530131 if (ENV_POSTCAR)
132 timestamp_add_now(TS_END_POSTCAR);
133
Subrata Banik2847e1e2019-02-25 20:31:22 +0530134 /* Call "end of romstage" here if postcar stage doesn't exist */
135 if (ENV_ROMSTAGE)
136 timestamp_add_now(TS_END_ROMSTAGE);
Aaron Durbin9796f602015-09-23 19:54:12 -0500137
Furquan Shaikh1e162bf2016-05-06 09:20:35 -0700138 /*
139 * Only x86 systems using ramstage stage cache currently take the same
140 * firmware path on resume.
141 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800142 if (CONFIG(ARCH_X86) &&
143 !CONFIG(NO_STAGE_CACHE))
Aaron Durbin6c191d82016-11-29 21:22:42 -0600144 run_ramstage_from_resume(&ramstage);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500145
146 if (prog_locate(&ramstage))
147 goto fail;
148
149 timestamp_add_now(TS_START_COPYRAM);
150
Julius Wernercd49cce2019-03-05 16:53:33 -0800151 if (CONFIG(RELOCATABLE_RAMSTAGE)) {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500152 if (load_relocatable_ramstage(&ramstage))
153 goto fail;
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300154 } else if (load_nonrelocatable_ramstage(&ramstage))
Aaron Durbin899d13d2015-05-15 23:39:23 -0500155 goto fail;
156
Julius Wernercd49cce2019-03-05 16:53:33 -0800157 if (!CONFIG(NO_STAGE_CACHE))
Kyösti Mälkkia8c0cb32018-06-25 15:38:45 +0300158 stage_cache_add(STAGE_RAMSTAGE, &ramstage);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500159
160 timestamp_add_now(TS_END_COPYRAM);
161
162 prog_run(&ramstage);
163
164fail:
165 die("Ramstage was not loaded!\n");
166}
167
Stefan Reinauereec2db42015-06-18 01:19:50 -0700168#ifdef __RAMSTAGE__ // gc-sections should take care of this
169
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500170static struct prog global_payload =
Aaron Durbin7e7a4df2015-12-08 14:34:35 -0600171 PROG_INIT(PROG_PAYLOAD, CONFIG_CBFS_PREFIX "/payload");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500172
Aaron Durbin64031672018-04-21 14:45:32 -0600173void __weak mirror_payload(struct prog *payload)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500174{
Aaron Durbin899d13d2015-05-15 23:39:23 -0500175}
176
177void payload_load(void)
178{
179 struct prog *payload = &global_payload;
180
181 timestamp_add_now(TS_LOAD_PAYLOAD);
182
183 if (prog_locate(payload))
184 goto out;
185
186 mirror_payload(payload);
187
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200188 switch (prog_cbfs_type(payload)) {
189 case CBFS_TYPE_SELF: /* Simple ELF */
Ting Shen05532262019-01-28 17:22:22 +0800190 selfload_check(payload, BM_MEM_RAM);
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200191 break;
192 case CBFS_TYPE_FIT: /* Flattened image tree */
Julius Wernercd49cce2019-03-05 16:53:33 -0800193 if (CONFIG(PAYLOAD_FIT_SUPPORT)) {
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200194 fit_payload(payload);
195 break;
196 } /* else fall-through */
197 default:
198 die("Unsupported payload type.\n");
199 break;
200 }
Aaron Durbin899d13d2015-05-15 23:39:23 -0500201
202out:
203 if (prog_entry(payload) == NULL)
204 die("Payload not loaded.\n");
205}
206
207void payload_run(void)
208{
209 struct prog *payload = &global_payload;
210
211 /* Reset to booting from this image as late as possible */
212 boot_successful();
213
214 printk(BIOS_DEBUG, "Jumping to boot code at %p(%p)\n",
215 prog_entry(payload), prog_entry_arg(payload));
216
217 post_code(POST_ENTER_ELF_BOOT);
218
219 timestamp_add_now(TS_SELFBOOT_JUMP);
220
221 /* Before we go off to run the payload, see if
222 * we stayed within our bounds.
223 */
224 checkstack(_estack, 0);
225
226 prog_run(payload);
227}
Stefan Reinauereec2db42015-06-18 01:19:50 -0700228
229#endif