blob: f248a58c77485252dc1283224acc392b1025f12e [file] [log] [blame]
Andrey Petrov465fc132016-02-25 14:16:33 -08001/*
2 * This file is part of the coreboot project.
3 *
Lee Leahy47bd2d92016-07-24 18:12:16 -07004 * Copyright (C) 2015-2016 Intel Corp.
Andrey Petrov465fc132016-02-25 14:16:33 -08005 * (Written by Andrey Petrov <andrey.petrov@intel.com> for Intel Corp.)
6 * (Written by Alexandru Gagniuc <alexandrux.gagniuc@intel.com> for Intel Corp.)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
Philipp Deppenwiesec07f8fb2018-02-27 19:40:52 +010014#include <security/vboot/antirollback.h>
Aaron Durbinb4302502016-07-17 17:04:37 -050015#include <arch/symbols.h>
Aaron Durbin31be2c92016-12-03 22:08:20 -060016#include <assert.h>
Aaron Durbind04639b2016-07-17 23:23:59 -050017#include <cbfs.h>
Aaron Durbin27928682016-07-15 22:32:28 -050018#include <cbmem.h>
Patrick Rudolphf677d172018-10-01 19:17:11 +020019#include <cf9_reset.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080020#include <console/console.h>
Furquan Shaikh5aea5882016-07-30 18:10:05 -070021#include <elog.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080022#include <fsp/api.h>
23#include <fsp/util.h>
24#include <memrange.h>
Aaron Durbindecd0622017-12-15 12:26:40 -070025#include <mrc_cache.h>
Aaron Durbind04639b2016-07-17 23:23:59 -050026#include <program_loading.h>
Aaron Durbinb4302502016-07-17 17:04:37 -050027#include <romstage_handoff.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080028#include <string.h>
Aaron Durbind04639b2016-07-17 23:23:59 -050029#include <symbols.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080030#include <timestamp.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020031#include <security/vboot/vboot_common.h>
Philipp Deppenwiese80961af2018-02-27 22:14:34 +010032#include <security/tpm/tspi.h>
Furquan Shaikh2db5bac2016-11-07 23:57:48 -080033#include <vb2_api.h>
Philipp Deppenwiese80961af2018-02-27 22:14:34 +010034#include <fsp/memory_init.h>
Elyes HAOUASbd1683d2019-05-15 21:05:37 +020035#include <types.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080036
Joel Kitching2c8243c2019-03-11 17:47:24 +080037/* TPM MRC hash functionality depends on vboot starting before memory init. */
38_Static_assert(!CONFIG(FSP2_0_USES_TPM_MRC_HASH) ||
39 CONFIG(VBOOT_STARTS_IN_BOOTBLOCK),
40 "for TPM MRC hash functionality, vboot must start in bootblock");
41
Aaron Durbinf0ec8242016-07-18 11:24:36 -050042static void save_memory_training_data(bool s3wake, uint32_t fsp_version)
Aaron Durbinb4302502016-07-17 17:04:37 -050043{
Aaron Durbinb4302502016-07-17 17:04:37 -050044 size_t mrc_data_size;
45 const void *mrc_data;
Aaron Durbinf0ec8242016-07-18 11:24:36 -050046
Julius Wernercd49cce2019-03-05 16:53:33 -080047 if (!CONFIG(CACHE_MRC_SETTINGS) || s3wake)
Aaron Durbinf0ec8242016-07-18 11:24:36 -050048 return;
49
50 mrc_data = fsp_find_nv_storage_data(&mrc_data_size);
51 if (!mrc_data) {
52 printk(BIOS_ERR, "Couldn't find memory training data HOB.\n");
53 return;
54 }
55
56 /*
57 * Save MRC Data to CBMEM. By always saving the data this forces
58 * a retrain after a trip through Chrome OS recovery path. The
59 * code which saves the data to flash doesn't write if the latest
60 * training data matches this one.
61 */
Aaron Durbin31be2c92016-12-03 22:08:20 -060062 if (mrc_cache_stash_data(MRC_TRAINING_DATA, fsp_version, mrc_data,
63 mrc_data_size) < 0)
64 printk(BIOS_ERR, "Failed to stash MRC data\n");
Furquan Shaikh2db5bac2016-11-07 23:57:48 -080065
Julius Wernercd49cce2019-03-05 16:53:33 -080066 if (CONFIG(FSP2_0_USES_TPM_MRC_HASH))
Philipp Deppenwiese80961af2018-02-27 22:14:34 +010067 mrc_cache_update_hash(mrc_data, mrc_data_size);
Aaron Durbinf0ec8242016-07-18 11:24:36 -050068}
69
Lee Leahy9671faa2016-07-24 18:18:52 -070070static void do_fsp_post_memory_init(bool s3wake, uint32_t fsp_version)
Aaron Durbinf0ec8242016-07-18 11:24:36 -050071{
72 struct range_entry fsp_mem;
Aaron Durbinb4302502016-07-17 17:04:37 -050073
Lee Leahy52d0c682016-08-01 15:47:42 -070074 if (fsp_find_reserved_memory(&fsp_mem))
75 die("Failed to find FSP_RESERVED_MEMORY_RESOURCE_HOB!\n");
Aaron Durbinb4302502016-07-17 17:04:37 -050076
77 /* initialize cbmem by adding FSP reserved memory first thing */
78 if (!s3wake) {
79 cbmem_initialize_empty_id_size(CBMEM_ID_FSP_RESERVED_MEMORY,
80 range_entry_size(&fsp_mem));
81 } else if (cbmem_initialize_id_size(CBMEM_ID_FSP_RESERVED_MEMORY,
82 range_entry_size(&fsp_mem))) {
Julius Wernercd49cce2019-03-05 16:53:33 -080083 if (CONFIG(HAVE_ACPI_RESUME)) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -070084 printk(BIOS_ERR,
Lee Leahyac3b0a62016-07-27 07:40:25 -070085 "Failed to recover CBMEM in S3 resume.\n");
Aaron Durbinb4302502016-07-17 17:04:37 -050086 /* Failed S3 resume, reset to come up cleanly */
Patrick Rudolphf677d172018-10-01 19:17:11 +020087 /* FIXME: A "system" reset is likely enough: */
88 full_reset();
Aaron Durbinb4302502016-07-17 17:04:37 -050089 }
90 }
91
92 /* make sure FSP memory is reserved in cbmem */
93 if (range_entry_base(&fsp_mem) !=
94 (uintptr_t)cbmem_find(CBMEM_ID_FSP_RESERVED_MEMORY))
Lee Leahy9671faa2016-07-24 18:18:52 -070095 die("Failed to accommodate FSP reserved memory request!\n");
Aaron Durbinb4302502016-07-17 17:04:37 -050096
Aaron Durbinf0ec8242016-07-18 11:24:36 -050097 save_memory_training_data(s3wake, fsp_version);
Aaron Durbinb4302502016-07-17 17:04:37 -050098
99 /* Create romstage handof information */
Aaron Durbin77e13992016-11-29 17:43:04 -0600100 romstage_handoff_init(s3wake);
Aaron Durbinb4302502016-07-17 17:04:37 -0500101}
102
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530103static void fsp_fill_mrc_cache(FSPM_ARCH_UPD *arch_upd, uint32_t fsp_version)
Aaron Durbinb4302502016-07-17 17:04:37 -0500104{
Aaron Durbin31be2c92016-12-03 22:08:20 -0600105 struct region_device rdev;
106 void *data;
Aaron Durbinb4302502016-07-17 17:04:37 -0500107
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500108 arch_upd->NvsBufferPtr = NULL;
109
Julius Wernercd49cce2019-03-05 16:53:33 -0800110 if (!CONFIG(CACHE_MRC_SETTINGS))
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500111 return;
112
Aaron Durbin31be2c92016-12-03 22:08:20 -0600113 /*
114 * In recovery mode, force retraining:
115 * 1. Recovery cache is not supported, or
116 * 2. Memory retrain switch is set.
117 */
118 if (vboot_recovery_mode_enabled()) {
Julius Wernercd49cce2019-03-05 16:53:33 -0800119 if (!CONFIG(HAS_RECOVERY_MRC_CACHE))
Aaron Durbin31be2c92016-12-03 22:08:20 -0600120 return;
121 if (vboot_recovery_mode_memory_retrain())
122 return;
123 }
Aaron Durbin98ea6362016-07-18 11:31:53 -0500124
Aaron Durbin31be2c92016-12-03 22:08:20 -0600125 if (mrc_cache_get_current(MRC_TRAINING_DATA, fsp_version, &rdev) < 0)
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500126 return;
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500127
Aaron Durbin31be2c92016-12-03 22:08:20 -0600128 /* Assume boot device is memory mapped. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800129 assert(CONFIG(BOOT_DEVICE_MEMORY_MAPPED));
Aaron Durbin31be2c92016-12-03 22:08:20 -0600130 data = rdev_mmap_full(&rdev);
131
132 if (data == NULL)
133 return;
134
Julius Wernercd49cce2019-03-05 16:53:33 -0800135 if (CONFIG(FSP2_0_USES_TPM_MRC_HASH) &&
Philipp Deppenwiese80961af2018-02-27 22:14:34 +0100136 !mrc_cache_verify_hash(data, region_device_sz(&rdev)))
Furquan Shaikh2db5bac2016-11-07 23:57:48 -0800137 return;
138
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500139 /* MRC cache found */
Aaron Durbin31be2c92016-12-03 22:08:20 -0600140 arch_upd->NvsBufferPtr = data;
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530141
142 printk(BIOS_SPEW, "MRC cache found, size %zx\n",
143 region_device_sz(&rdev));
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500144}
145
Aaron Durbin02e504c2016-07-18 11:53:10 -0500146static enum cb_err check_region_overlap(const struct memranges *ranges,
147 const char *description,
148 uintptr_t begin, uintptr_t end)
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500149{
Aaron Durbin02e504c2016-07-18 11:53:10 -0500150 const struct range_entry *r;
151
152 memranges_each_entry(r, ranges) {
153 if (end <= range_entry_base(r))
154 continue;
155 if (begin >= range_entry_end(r))
156 continue;
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700157 printk(BIOS_CRIT, "'%s' overlaps currently running program: "
Aaron Durbin02e504c2016-07-18 11:53:10 -0500158 "[%p, %p)\n", description, (void *)begin, (void *)end);
159 return CB_ERR;
160 }
161
162 return CB_SUCCESS;
163}
Aamir Bohra6d569e0c2018-08-27 13:36:15 +0530164static enum cb_err setup_fsp_stack_frame(FSPM_ARCH_UPD *arch_upd,
165 const struct memranges *memmap)
Aaron Durbin02e504c2016-07-18 11:53:10 -0500166{
167 uintptr_t stack_begin;
168 uintptr_t stack_end;
169
Aaron Durbinb4302502016-07-17 17:04:37 -0500170 /*
Aamir Bohra6d569e0c2018-08-27 13:36:15 +0530171 * FSP 2.1 version would use same stack as coreboot instead of
172 * setting up seprate stack frame. FSP 2.1 would not relocate stack
173 * top and does not reinitialize stack pointer.
174 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800175 if (CONFIG(FSP_USES_CB_STACK)) {
Subrata Banik51c85322019-03-27 18:17:13 +0530176 arch_upd->StackBase = (void *)_car_stack_start;
Aamir Bohra6d569e0c2018-08-27 13:36:15 +0530177 arch_upd->StackSize = CONFIG_DCACHE_BSP_STACK_SIZE;
178 return CB_SUCCESS;
179 }
180
181 /*
182 * FSPM_UPD passed here is populated with default values
183 * provided by the blob itself. We let FSPM use top of CAR
184 * region of the size it requests.
Aaron Durbinb4302502016-07-17 17:04:37 -0500185 */
Aaron Durbin02e504c2016-07-18 11:53:10 -0500186 stack_end = (uintptr_t)_car_region_end;
187 stack_begin = stack_end - arch_upd->StackSize;
Aaron Durbin02e504c2016-07-18 11:53:10 -0500188 if (check_region_overlap(memmap, "FSPM stack", stack_begin,
189 stack_end) != CB_SUCCESS)
190 return CB_ERR;
191
192 arch_upd->StackBase = (void *)stack_begin;
Aamir Bohra6d569e0c2018-08-27 13:36:15 +0530193 return CB_SUCCESS;
194}
195
196static enum cb_err fsp_fill_common_arch_params(FSPM_ARCH_UPD *arch_upd,
197 bool s3wake, uint32_t fsp_version,
198 const struct memranges *memmap)
199{
200 if (setup_fsp_stack_frame(arch_upd, memmap))
201 return CB_ERR;
Aaron Durbinb4302502016-07-17 17:04:37 -0500202
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530203 fsp_fill_mrc_cache(arch_upd, fsp_version);
Aaron Durbinb4302502016-07-17 17:04:37 -0500204
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530205 /* Configure bootmode */
206 if (s3wake) {
207 /*
208 * For S3 resume case, if valid mrc cache data is not found or
209 * RECOVERY_MRC_CACHE hash verification fails, the S3 data
210 * pointer would be null and S3 resume fails with fsp-m
211 * returning error. Invoking a reset here saves time.
212 */
213 if (!arch_upd->NvsBufferPtr)
Patrick Rudolphf677d172018-10-01 19:17:11 +0200214 /* FIXME: A "system" reset is likely enough: */
215 full_reset();
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530216 arch_upd->BootMode = FSP_BOOT_ON_S3_RESUME;
217 } else {
218 if (arch_upd->NvsBufferPtr)
219 arch_upd->BootMode =
220 FSP_BOOT_ASSUMING_NO_CONFIGURATION_CHANGES;
221 else
222 arch_upd->BootMode = FSP_BOOT_WITH_FULL_CONFIGURATION;
223 }
Aaron Durbin02e504c2016-07-18 11:53:10 -0500224
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530225 printk(BIOS_SPEW, "bootmode is set to :%d\n", arch_upd->BootMode);
Aamir Bohra276c06a2017-12-26 17:54:45 +0530226
Aaron Durbin02e504c2016-07-18 11:53:10 -0500227 return CB_SUCCESS;
Aaron Durbinb4302502016-07-17 17:04:37 -0500228}
229
Aaron Durbin64031672018-04-21 14:45:32 -0600230__weak
Aaron Durbina3cecb22017-04-25 21:58:10 -0500231uint8_t fsp_memory_mainboard_version(void)
232{
233 return 0;
234}
235
Aaron Durbin64031672018-04-21 14:45:32 -0600236__weak
Aaron Durbina3cecb22017-04-25 21:58:10 -0500237uint8_t fsp_memory_soc_version(void)
238{
239 return 0;
240}
241
242/*
243 * Allow SoC and/or mainboard to bump the revision of the FSP setting
244 * number. The FSP spec uses the low 8 bits as the build number. Take over
245 * bits 3:0 for the SoC setting and bits 7:4 for the mainboard. That way
246 * a tweak in the settings will bump the version used to track the cached
247 * setting which triggers retraining when the FSP version hasn't changed, but
248 * the SoC or mainboard settings have.
249 */
250static uint32_t fsp_memory_settings_version(const struct fsp_header *hdr)
251{
252 /* Use the full FSP version by default. */
253 uint32_t ver = hdr->fsp_revision;
254
Julius Wernercd49cce2019-03-05 16:53:33 -0800255 if (!CONFIG(FSP_PLATFORM_MEMORY_SETTINGS_VERSIONS))
Aaron Durbina3cecb22017-04-25 21:58:10 -0500256 return ver;
257
258 ver &= ~0xff;
259 ver |= (0xf & fsp_memory_mainboard_version()) << 4;
260 ver |= (0xf & fsp_memory_soc_version()) << 0;
261
262 return ver;
263}
264
Lee Leahy9671faa2016-07-24 18:18:52 -0700265static void do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500266 const struct memranges *memmap)
Andrey Petrov465fc132016-02-25 14:16:33 -0800267{
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700268 uint32_t status;
Andrey Petrov465fc132016-02-25 14:16:33 -0800269 fsp_memory_init_fn fsp_raminit;
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700270 FSPM_UPD fspm_upd, *upd;
271 FSPM_ARCH_UPD *arch_upd;
Aaron Durbina3cecb22017-04-25 21:58:10 -0500272 uint32_t fsp_version;
Andrey Petrov465fc132016-02-25 14:16:33 -0800273
Furquan Shaikh585210a2018-10-16 11:54:37 -0700274 post_code(POST_MEM_PREINIT_PREP_START);
Andrey Petrov465fc132016-02-25 14:16:33 -0800275
Aaron Durbina3cecb22017-04-25 21:58:10 -0500276 fsp_version = fsp_memory_settings_version(hdr);
277
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700278 upd = (FSPM_UPD *)(hdr->cfg_region_offset + hdr->image_base);
Andrey Petrov465fc132016-02-25 14:16:33 -0800279
Lee Leahye686ee82017-03-10 08:45:30 -0800280 if (upd->FspUpdHeader.Signature != FSPM_UPD_SIGNATURE)
Keith Shortbb41aba2019-05-16 14:07:43 -0600281 die_with_post_code(POST_INVALID_VENDOR_BINARY,
282 "Invalid FSPM signature!\n");
Andrey Petrov465fc132016-02-25 14:16:33 -0800283
284 /* Copy the default values from the UPD area */
285 memcpy(&fspm_upd, upd, sizeof(fspm_upd));
286
Aaron Durbin02e504c2016-07-18 11:53:10 -0500287 arch_upd = &fspm_upd.FspmArchUpd;
288
Aaron Durbin27928682016-07-15 22:32:28 -0500289 /* Reserve enough memory under TOLUD to save CBMEM header */
Aaron Durbin02e504c2016-07-18 11:53:10 -0500290 arch_upd->BootLoaderTolumSize = cbmem_overhead_size();
Aaron Durbin27928682016-07-15 22:32:28 -0500291
Aaron Durbinb4302502016-07-17 17:04:37 -0500292 /* Fill common settings on behalf of chipset. */
Aaron Durbina3cecb22017-04-25 21:58:10 -0500293 if (fsp_fill_common_arch_params(arch_upd, s3wake, fsp_version,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500294 memmap) != CB_SUCCESS)
Keith Shortbb41aba2019-05-16 14:07:43 -0600295 die_with_post_code(POST_INVALID_VENDOR_BINARY,
296 "FSPM_ARCH_UPD not found!\n");
Aaron Durbinb4302502016-07-17 17:04:37 -0500297
Andrey Petrov465fc132016-02-25 14:16:33 -0800298 /* Give SoC and mainboard a chance to update the UPD */
Aaron Durbina3cecb22017-04-25 21:58:10 -0500299 platform_fsp_memory_init_params_cb(&fspm_upd, fsp_version);
Andrey Petrov465fc132016-02-25 14:16:33 -0800300
Julius Wernercd49cce2019-03-05 16:53:33 -0800301 if (CONFIG(MMA))
Pratik Prajapatiffc934d2016-11-18 14:36:34 -0800302 setup_mma(&fspm_upd.FspmConfig);
303
Furquan Shaikh585210a2018-10-16 11:54:37 -0700304 post_code(POST_MEM_PREINIT_PREP_END);
305
Andrey Petrov465fc132016-02-25 14:16:33 -0800306 /* Call FspMemoryInit */
307 fsp_raminit = (void *)(hdr->image_base + hdr->memory_init_entry_offset);
Lee Leahyac3b0a62016-07-27 07:40:25 -0700308 fsp_debug_before_memory_init(fsp_raminit, upd, &fspm_upd);
Andrey Petrov465fc132016-02-25 14:16:33 -0800309
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -0700310 post_code(POST_FSP_MEMORY_INIT);
Andrey Petrov465fc132016-02-25 14:16:33 -0800311 timestamp_add_now(TS_FSP_MEMORY_INIT_START);
Lee Leahyac3b0a62016-07-27 07:40:25 -0700312 status = fsp_raminit(&fspm_upd, fsp_get_hob_list_ptr());
Subrata Banik0755ab92017-07-12 15:31:06 +0530313 post_code(POST_FSP_MEMORY_EXIT);
Andrey Petrov465fc132016-02-25 14:16:33 -0800314 timestamp_add_now(TS_FSP_MEMORY_INIT_END);
315
Lee Leahy9671faa2016-07-24 18:18:52 -0700316 /* Handle any errors returned by FspMemoryInit */
Aaron Durbinf41f2aa2016-07-18 12:03:58 -0500317 fsp_handle_reset(status);
Lee Leahy9671faa2016-07-24 18:18:52 -0700318 if (status != FSP_SUCCESS) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700319 printk(BIOS_CRIT, "FspMemoryInit returned 0x%08x\n", status);
Keith Short24302632019-05-16 14:08:31 -0600320 die_with_post_code(POST_RAM_FAILURE,
321 "FspMemoryInit returned an error!\n");
Lee Leahy9671faa2016-07-24 18:18:52 -0700322 }
Aaron Durbinf41f2aa2016-07-18 12:03:58 -0500323
Aaron Durbina3cecb22017-04-25 21:58:10 -0500324 do_fsp_post_memory_init(s3wake, fsp_version);
Matthew Garrett78b58a42018-07-28 16:53:16 -0700325
326 /*
327 * fsp_debug_after_memory_init() checks whether the end of the tolum
328 * region is the same as the top of cbmem, so must be called here
329 * after cbmem has been initialised in do_fsp_post_memory_init().
330 */
331 fsp_debug_after_memory_init(status);
Andrey Petrov465fc132016-02-25 14:16:33 -0800332}
333
Aaron Durbind04639b2016-07-17 23:23:59 -0500334/* Load the binary into the memory specified by the info header. */
335static enum cb_err load_fspm_mem(struct fsp_header *hdr,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500336 const struct region_device *rdev,
337 const struct memranges *memmap)
Aaron Durbind04639b2016-07-17 23:23:59 -0500338{
Aaron Durbind04639b2016-07-17 23:23:59 -0500339 uintptr_t fspm_begin;
340 uintptr_t fspm_end;
341
342 if (fsp_validate_component(hdr, rdev) != CB_SUCCESS)
343 return CB_ERR;
344
345 fspm_begin = hdr->image_base;
346 fspm_end = fspm_begin + hdr->image_size;
347
Aaron Durbin02e504c2016-07-18 11:53:10 -0500348 if (check_region_overlap(memmap, "FSPM", fspm_begin, fspm_end) !=
349 CB_SUCCESS)
Aaron Durbind04639b2016-07-17 23:23:59 -0500350 return CB_ERR;
Aaron Durbind04639b2016-07-17 23:23:59 -0500351
352 /* Load binary into memory at provided address. */
353 if (rdev_readat(rdev, (void *)fspm_begin, 0, fspm_end - fspm_begin) < 0)
354 return CB_ERR;
355
356 return CB_SUCCESS;
357}
358
359/* Handle the case when FSPM is running XIP. */
360static enum cb_err load_fspm_xip(struct fsp_header *hdr,
361 const struct region_device *rdev)
362{
363 void *base;
364
365 if (fsp_validate_component(hdr, rdev) != CB_SUCCESS)
366 return CB_ERR;
367
368 base = rdev_mmap_full(rdev);
369 if ((uintptr_t)base != hdr->image_base) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700370 printk(BIOS_CRIT, "FSPM XIP base does not match: %p vs %p\n",
Aaron Durbind04639b2016-07-17 23:23:59 -0500371 (void *)(uintptr_t)hdr->image_base, base);
372 return CB_ERR;
373 }
374
375 /*
376 * Since the component is XIP it's already in the address space. Thus,
377 * there's no need to rdev_munmap().
378 */
379 return CB_SUCCESS;
380}
381
Lee Leahy9671faa2016-07-24 18:18:52 -0700382void fsp_memory_init(bool s3wake)
Andrey Petrov465fc132016-02-25 14:16:33 -0800383{
384 struct fsp_header hdr;
Aaron Durbind04639b2016-07-17 23:23:59 -0500385 enum cb_err status;
386 struct cbfsf file_desc;
387 struct region_device file_data;
388 const char *name = CONFIG_FSP_M_CBFS;
Aaron Durbin02e504c2016-07-18 11:53:10 -0500389 struct memranges memmap;
390 struct range_entry freeranges[2];
Andrey Petrov465fc132016-02-25 14:16:33 -0800391
Julius Wernercd49cce2019-03-05 16:53:33 -0800392 if (CONFIG(ELOG_BOOT_COUNT) && !s3wake)
Furquan Shaikh5aea5882016-07-30 18:10:05 -0700393 boot_count_increment();
394
Aaron Durbind04639b2016-07-17 23:23:59 -0500395 if (cbfs_boot_locate(&file_desc, name, NULL)) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700396 printk(BIOS_CRIT, "Could not locate %s in CBFS\n", name);
Lee Leahy9671faa2016-07-24 18:18:52 -0700397 die("FSPM not available!\n");
Aaron Durbind04639b2016-07-17 23:23:59 -0500398 }
399
400 cbfs_file_data(&file_data, &file_desc);
401
Aaron Durbin02e504c2016-07-18 11:53:10 -0500402 /* Build up memory map of romstage address space including CAR. */
403 memranges_init_empty(&memmap, &freeranges[0], ARRAY_SIZE(freeranges));
404 memranges_insert(&memmap, (uintptr_t)_car_region_start,
405 _car_relocatable_data_end - _car_region_start, 0);
Julius Werner7e0dea62019-02-20 18:39:22 -0800406 memranges_insert(&memmap, (uintptr_t)_program, REGION_SIZE(program), 0);
Aaron Durbin02e504c2016-07-18 11:53:10 -0500407
Julius Wernercd49cce2019-03-05 16:53:33 -0800408 if (!CONFIG(FSP_M_XIP))
Aaron Durbin02e504c2016-07-18 11:53:10 -0500409 status = load_fspm_mem(&hdr, &file_data, &memmap);
Aaron Durbind04639b2016-07-17 23:23:59 -0500410 else
411 status = load_fspm_xip(&hdr, &file_data);
412
Lee Leahye686ee82017-03-10 08:45:30 -0800413 if (status != CB_SUCCESS)
Lee Leahy9671faa2016-07-24 18:18:52 -0700414 die("Loading FSPM failed!\n");
Aaron Durbind04639b2016-07-17 23:23:59 -0500415
416 /* Signal that FSP component has been loaded. */
417 prog_segment_loaded(hdr.image_base, hdr.image_size, SEG_FINAL);
Andrey Petrov465fc132016-02-25 14:16:33 -0800418
Lee Leahy9671faa2016-07-24 18:18:52 -0700419 do_fsp_memory_init(&hdr, s3wake, &memmap);
Andrey Petrov465fc132016-02-25 14:16:33 -0800420}