blob: 81ec2ec3c4a0db045f721e1400f32285a09dc3a9 [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))
Keith Short70064582019-05-06 16:12:57 -060072 die_with_post_code(POST_INVALID_ROM,
73 "Couldn't load romstage.\n");
Aaron Durbin899d13d2015-05-15 23:39:23 -050074 halt();
75}
76
Aaron Durbin8cd723b2016-10-28 17:32:24 -050077static void ramstage_cache_invalid(void)
78{
79 printk(BIOS_ERR, "ramstage cache invalid.\n");
Julius Wernercd49cce2019-03-05 16:53:33 -080080 if (CONFIG(RESET_ON_INVALID_RAMSTAGE_CACHE)) {
Nico Huber4f32b642018-10-05 23:40:21 +020081 board_reset();
Aaron Durbin8cd723b2016-10-28 17:32:24 -050082 }
83}
Aaron Durbin899d13d2015-05-15 23:39:23 -050084
Aaron Durbin6c191d82016-11-29 21:22:42 -060085static void run_ramstage_from_resume(struct prog *ramstage)
Aaron Durbin899d13d2015-05-15 23:39:23 -050086{
Aaron Durbin6c191d82016-11-29 21:22:42 -060087 if (!romstage_handoff_is_resume())
88 return;
Aaron Durbin899d13d2015-05-15 23:39:23 -050089
Aaron Durbin6c191d82016-11-29 21:22:42 -060090 /* Load the cached ramstage to runtime location. */
91 stage_cache_load_stage(STAGE_RAMSTAGE, ramstage);
92
93 if (prog_entry(ramstage) != NULL) {
94 printk(BIOS_DEBUG, "Jumping to image.\n");
95 prog_run(ramstage);
Aaron Durbin899d13d2015-05-15 23:39:23 -050096 }
Aaron Durbin6c191d82016-11-29 21:22:42 -060097 ramstage_cache_invalid();
Aaron Durbin899d13d2015-05-15 23:39:23 -050098}
99
100static int load_relocatable_ramstage(struct prog *ramstage)
101{
102 struct rmod_stage_load rmod_ram = {
103 .cbmem_id = CBMEM_ID_RAMSTAGE,
104 .prog = ramstage,
105 };
106
107 return rmodule_stage_load(&rmod_ram);
108}
109
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300110static int load_nonrelocatable_ramstage(struct prog *ramstage)
111{
Julius Wernercd49cce2019-03-05 16:53:33 -0800112 if (CONFIG(HAVE_ACPI_RESUME)) {
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300113 uintptr_t base = 0;
114 size_t size = cbfs_prog_stage_section(ramstage, &base);
115 if (size)
116 backup_ramstage_section(base, size);
117 }
118
119 return cbfs_prog_stage_load(ramstage);
120}
121
Aaron Durbin899d13d2015-05-15 23:39:23 -0500122void run_ramstage(void)
123{
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500124 struct prog ramstage =
Aaron Durbin7e7a4df2015-12-08 14:34:35 -0600125 PROG_INIT(PROG_RAMSTAGE, CONFIG_CBFS_PREFIX "/ramstage");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500126
Subrata Banik4f42eea2019-03-05 16:45:14 +0530127 if (ENV_POSTCAR)
128 timestamp_add_now(TS_END_POSTCAR);
129
Subrata Banik2847e1e2019-02-25 20:31:22 +0530130 /* Call "end of romstage" here if postcar stage doesn't exist */
131 if (ENV_ROMSTAGE)
132 timestamp_add_now(TS_END_ROMSTAGE);
Aaron Durbin9796f602015-09-23 19:54:12 -0500133
Furquan Shaikh1e162bf2016-05-06 09:20:35 -0700134 /*
135 * Only x86 systems using ramstage stage cache currently take the same
136 * firmware path on resume.
137 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800138 if (CONFIG(ARCH_X86) &&
139 !CONFIG(NO_STAGE_CACHE))
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
Julius Wernercd49cce2019-03-05 16:53:33 -0800147 if (CONFIG(RELOCATABLE_RAMSTAGE)) {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500148 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
Subrata Banik90f750b2019-06-11 17:52:06 +0530153 stage_cache_add(STAGE_RAMSTAGE, &ramstage);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500154
155 timestamp_add_now(TS_END_COPYRAM);
156
157 prog_run(&ramstage);
158
159fail:
Keith Short70064582019-05-06 16:12:57 -0600160 die_with_post_code(POST_INVALID_ROM, "Ramstage was not loaded!\n");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500161}
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
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200183 switch (prog_cbfs_type(payload)) {
184 case CBFS_TYPE_SELF: /* Simple ELF */
Ting Shen05532262019-01-28 17:22:22 +0800185 selfload_check(payload, BM_MEM_RAM);
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200186 break;
187 case CBFS_TYPE_FIT: /* Flattened image tree */
Julius Wernercd49cce2019-03-05 16:53:33 -0800188 if (CONFIG(PAYLOAD_FIT_SUPPORT)) {
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200189 fit_payload(payload);
190 break;
191 } /* else fall-through */
192 default:
Keith Short70064582019-05-06 16:12:57 -0600193 die_with_post_code(POST_INVALID_ROM,
194 "Unsupported payload type.\n");
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200195 break;
196 }
Aaron Durbin899d13d2015-05-15 23:39:23 -0500197
198out:
199 if (prog_entry(payload) == NULL)
Keith Short70064582019-05-06 16:12:57 -0600200 die_with_post_code(POST_INVALID_ROM, "Payload not loaded.\n");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500201}
202
203void payload_run(void)
204{
205 struct prog *payload = &global_payload;
206
207 /* Reset to booting from this image as late as possible */
208 boot_successful();
209
210 printk(BIOS_DEBUG, "Jumping to boot code at %p(%p)\n",
211 prog_entry(payload), prog_entry_arg(payload));
212
213 post_code(POST_ENTER_ELF_BOOT);
214
215 timestamp_add_now(TS_SELFBOOT_JUMP);
216
217 /* Before we go off to run the payload, see if
218 * we stayed within our bounds.
219 */
220 checkstack(_estack, 0);
221
222 prog_run(payload);
223}
Stefan Reinauereec2db42015-06-18 01:19:50 -0700224
225#endif