blob: 2ef6bdfc32f211bf58d1f878dde60989ad090139 [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
110void run_ramstage(void)
111{
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500112 struct prog ramstage =
Aaron Durbin7e7a4df2015-12-08 14:34:35 -0600113 PROG_INIT(PROG_RAMSTAGE, CONFIG_CBFS_PREFIX "/ramstage");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500114
Subrata Banik4f42eea2019-03-05 16:45:14 +0530115 if (ENV_POSTCAR)
116 timestamp_add_now(TS_END_POSTCAR);
117
Subrata Banik2847e1e2019-02-25 20:31:22 +0530118 /* Call "end of romstage" here if postcar stage doesn't exist */
119 if (ENV_ROMSTAGE)
120 timestamp_add_now(TS_END_ROMSTAGE);
Aaron Durbin9796f602015-09-23 19:54:12 -0500121
Furquan Shaikh1e162bf2016-05-06 09:20:35 -0700122 /*
123 * Only x86 systems using ramstage stage cache currently take the same
124 * firmware path on resume.
125 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800126 if (CONFIG(ARCH_X86) &&
127 !CONFIG(NO_STAGE_CACHE))
Aaron Durbin6c191d82016-11-29 21:22:42 -0600128 run_ramstage_from_resume(&ramstage);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500129
130 if (prog_locate(&ramstage))
131 goto fail;
132
133 timestamp_add_now(TS_START_COPYRAM);
134
Julius Wernercd49cce2019-03-05 16:53:33 -0800135 if (CONFIG(RELOCATABLE_RAMSTAGE)) {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500136 if (load_relocatable_ramstage(&ramstage))
137 goto fail;
Kyösti Mälkki7cd2c072018-06-03 23:04:28 +0300138 } else if (cbfs_prog_stage_load(&ramstage))
Aaron Durbin899d13d2015-05-15 23:39:23 -0500139 goto fail;
140
Subrata Banik90f750b2019-06-11 17:52:06 +0530141 stage_cache_add(STAGE_RAMSTAGE, &ramstage);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500142
143 timestamp_add_now(TS_END_COPYRAM);
144
145 prog_run(&ramstage);
146
147fail:
Keith Short70064582019-05-06 16:12:57 -0600148 die_with_post_code(POST_INVALID_ROM, "Ramstage was not loaded!\n");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500149}
150
Subrata Banik42c44c22019-05-15 20:27:04 +0530151#if ENV_PAYLOAD_LOADER // gc-sections should take care of this
Stefan Reinauereec2db42015-06-18 01:19:50 -0700152
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500153static struct prog global_payload =
Aaron Durbin7e7a4df2015-12-08 14:34:35 -0600154 PROG_INIT(PROG_PAYLOAD, CONFIG_CBFS_PREFIX "/payload");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500155
Aaron Durbin64031672018-04-21 14:45:32 -0600156void __weak mirror_payload(struct prog *payload)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500157{
Aaron Durbin899d13d2015-05-15 23:39:23 -0500158}
159
160void payload_load(void)
161{
162 struct prog *payload = &global_payload;
163
164 timestamp_add_now(TS_LOAD_PAYLOAD);
165
166 if (prog_locate(payload))
167 goto out;
168
169 mirror_payload(payload);
170
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200171 switch (prog_cbfs_type(payload)) {
172 case CBFS_TYPE_SELF: /* Simple ELF */
Ting Shen05532262019-01-28 17:22:22 +0800173 selfload_check(payload, BM_MEM_RAM);
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200174 break;
175 case CBFS_TYPE_FIT: /* Flattened image tree */
Julius Wernercd49cce2019-03-05 16:53:33 -0800176 if (CONFIG(PAYLOAD_FIT_SUPPORT)) {
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200177 fit_payload(payload);
178 break;
179 } /* else fall-through */
180 default:
Keith Short70064582019-05-06 16:12:57 -0600181 die_with_post_code(POST_INVALID_ROM,
182 "Unsupported payload type.\n");
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200183 break;
184 }
Aaron Durbin899d13d2015-05-15 23:39:23 -0500185
186out:
187 if (prog_entry(payload) == NULL)
Keith Short70064582019-05-06 16:12:57 -0600188 die_with_post_code(POST_INVALID_ROM, "Payload not loaded.\n");
Aaron Durbin899d13d2015-05-15 23:39:23 -0500189}
190
191void payload_run(void)
192{
193 struct prog *payload = &global_payload;
194
195 /* Reset to booting from this image as late as possible */
196 boot_successful();
197
198 printk(BIOS_DEBUG, "Jumping to boot code at %p(%p)\n",
199 prog_entry(payload), prog_entry_arg(payload));
200
201 post_code(POST_ENTER_ELF_BOOT);
202
203 timestamp_add_now(TS_SELFBOOT_JUMP);
204
205 /* Before we go off to run the payload, see if
206 * we stayed within our bounds.
207 */
208 checkstack(_estack, 0);
209
210 prog_run(payload);
211}
Stefan Reinauereec2db42015-06-18 01:19:50 -0700212
213#endif