blob: 368fafa5d78d9ac99b581cd9a305702a601a2d8a [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
Stefan Reinauer6a001132017-07-13 02:20:27 +020014#include <compiler.h>
Furquan Shaikh2db5bac2016-11-07 23:57:48 -080015#include <antirollback.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080016#include <arch/io.h>
17#include <arch/cpu.h>
Aaron Durbinb4302502016-07-17 17:04:37 -050018#include <arch/symbols.h>
Aaron Durbin31be2c92016-12-03 22:08:20 -060019#include <assert.h>
Aaron Durbind04639b2016-07-17 23:23:59 -050020#include <cbfs.h>
Aaron Durbin27928682016-07-15 22:32:28 -050021#include <cbmem.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080022#include <console/console.h>
Furquan Shaikh5aea5882016-07-30 18:10:05 -070023#include <elog.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080024#include <fsp/api.h>
25#include <fsp/util.h>
26#include <memrange.h>
Aaron Durbindecd0622017-12-15 12:26:40 -070027#include <mrc_cache.h>
Aaron Durbind04639b2016-07-17 23:23:59 -050028#include <program_loading.h>
Aaron Durbinb4302502016-07-17 17:04:37 -050029#include <reset.h>
30#include <romstage_handoff.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080031#include <string.h>
Aaron Durbind04639b2016-07-17 23:23:59 -050032#include <symbols.h>
Andrey Petrov465fc132016-02-25 14:16:33 -080033#include <timestamp.h>
Furquan Shaikh2db5bac2016-11-07 23:57:48 -080034#include <tpm_lite/tlcl.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020035#include <security/vboot/vboot_common.h>
Furquan Shaikh2db5bac2016-11-07 23:57:48 -080036#include <vb2_api.h>
37
Furquan Shaikh2db5bac2016-11-07 23:57:48 -080038static void mrc_cache_update_tpm_hash(const uint8_t *data, size_t size)
39{
40 uint8_t data_hash[VB2_SHA256_DIGEST_SIZE];
41 static const uint8_t dead_hash[VB2_SHA256_DIGEST_SIZE] = {
42 0xba, 0xad, 0xda, 0x1a, /* BAADDA1A */
43 0xde, 0xad, 0xde, 0xad, /* DEADDEAD */
44 0xde, 0xad, 0xda, 0x1a, /* DEADDA1A */
45 0xba, 0xad, 0xba, 0xad, /* BAADBAAD */
46 0xba, 0xad, 0xda, 0x1a, /* BAADDA1A */
47 0xde, 0xad, 0xde, 0xad, /* DEADDEAD */
48 0xde, 0xad, 0xda, 0x1a, /* DEADDA1A */
49 0xba, 0xad, 0xba, 0xad, /* BAADBAAD */
50 };
51 const uint8_t *hash_ptr = data_hash;
52
53 /* We do not store normal mode data hash in TPM. */
54 if (!vboot_recovery_mode_enabled())
55 return;
56
57 /* Bail out early if no mrc hash space is supported in TPM. */
58 if (!IS_ENABLED(CONFIG_FSP2_0_USES_TPM_MRC_HASH))
59 return;
60
61 /* Initialize TPM driver. */
Furquan Shaikh8b5d04e2016-11-10 09:49:05 -080062 if (tlcl_lib_init() != VB2_SUCCESS) {
Furquan Shaikh2db5bac2016-11-07 23:57:48 -080063 printk(BIOS_ERR, "MRC: TPM driver initialization failed.\n");
64 return;
65 }
66
67 /* Calculate hash of data generated by MRC. */
68 if (vb2_digest_buffer(data, size, VB2_HASH_SHA256, data_hash,
69 sizeof(data_hash))) {
70 printk(BIOS_ERR, "MRC: SHA-256 calculation failed for data. "
71 "Not updating TPM hash space.\n");
72 /*
73 * Since data is being updated in recovery cache, the hash
74 * currently stored in TPM recovery hash space is no longer
75 * valid. If we are not able to calculate hash of the data being
76 * updated, reset all the bits in TPM recovery hash space to
77 * pre-defined hash pattern.
78 */
79 hash_ptr = dead_hash;
80 }
81
82 /* Write hash of data to TPM space. */
83 if (antirollback_write_space_rec_hash(hash_ptr, VB2_SHA256_DIGEST_SIZE)
84 != TPM_SUCCESS) {
85 printk(BIOS_ERR, "MRC: Could not save hash to TPM.\n");
86 return;
87 }
88
89 printk(BIOS_INFO, "MRC: TPM MRC hash updated successfully.\n");
90}
Andrey Petrov465fc132016-02-25 14:16:33 -080091
Aaron Durbinf0ec8242016-07-18 11:24:36 -050092static void save_memory_training_data(bool s3wake, uint32_t fsp_version)
Aaron Durbinb4302502016-07-17 17:04:37 -050093{
Aaron Durbinb4302502016-07-17 17:04:37 -050094 size_t mrc_data_size;
95 const void *mrc_data;
Aaron Durbinf0ec8242016-07-18 11:24:36 -050096
97 if (!IS_ENABLED(CONFIG_CACHE_MRC_SETTINGS) || s3wake)
98 return;
99
100 mrc_data = fsp_find_nv_storage_data(&mrc_data_size);
101 if (!mrc_data) {
102 printk(BIOS_ERR, "Couldn't find memory training data HOB.\n");
103 return;
104 }
105
106 /*
107 * Save MRC Data to CBMEM. By always saving the data this forces
108 * a retrain after a trip through Chrome OS recovery path. The
109 * code which saves the data to flash doesn't write if the latest
110 * training data matches this one.
111 */
Aaron Durbin31be2c92016-12-03 22:08:20 -0600112 if (mrc_cache_stash_data(MRC_TRAINING_DATA, fsp_version, mrc_data,
113 mrc_data_size) < 0)
114 printk(BIOS_ERR, "Failed to stash MRC data\n");
Furquan Shaikh2db5bac2016-11-07 23:57:48 -0800115
116 mrc_cache_update_tpm_hash(mrc_data, mrc_data_size);
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500117}
118
Lee Leahy9671faa2016-07-24 18:18:52 -0700119static void do_fsp_post_memory_init(bool s3wake, uint32_t fsp_version)
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500120{
121 struct range_entry fsp_mem;
Aaron Durbinb4302502016-07-17 17:04:37 -0500122
Lee Leahy52d0c682016-08-01 15:47:42 -0700123 if (fsp_find_reserved_memory(&fsp_mem))
124 die("Failed to find FSP_RESERVED_MEMORY_RESOURCE_HOB!\n");
Aaron Durbinb4302502016-07-17 17:04:37 -0500125
126 /* initialize cbmem by adding FSP reserved memory first thing */
127 if (!s3wake) {
128 cbmem_initialize_empty_id_size(CBMEM_ID_FSP_RESERVED_MEMORY,
129 range_entry_size(&fsp_mem));
130 } else if (cbmem_initialize_id_size(CBMEM_ID_FSP_RESERVED_MEMORY,
131 range_entry_size(&fsp_mem))) {
132 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700133 printk(BIOS_ERR,
Lee Leahyac3b0a62016-07-27 07:40:25 -0700134 "Failed to recover CBMEM in S3 resume.\n");
Aaron Durbinb4302502016-07-17 17:04:37 -0500135 /* Failed S3 resume, reset to come up cleanly */
136 hard_reset();
137 }
138 }
139
140 /* make sure FSP memory is reserved in cbmem */
141 if (range_entry_base(&fsp_mem) !=
142 (uintptr_t)cbmem_find(CBMEM_ID_FSP_RESERVED_MEMORY))
Lee Leahy9671faa2016-07-24 18:18:52 -0700143 die("Failed to accommodate FSP reserved memory request!\n");
Aaron Durbinb4302502016-07-17 17:04:37 -0500144
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500145 save_memory_training_data(s3wake, fsp_version);
Aaron Durbinb4302502016-07-17 17:04:37 -0500146
147 /* Create romstage handof information */
Aaron Durbin77e13992016-11-29 17:43:04 -0600148 romstage_handoff_init(s3wake);
Aaron Durbinb4302502016-07-17 17:04:37 -0500149}
150
Furquan Shaikh2db5bac2016-11-07 23:57:48 -0800151static int mrc_cache_verify_tpm_hash(const uint8_t *data, size_t size)
152{
153 uint8_t data_hash[VB2_SHA256_DIGEST_SIZE];
154 uint8_t tpm_hash[VB2_SHA256_DIGEST_SIZE];
155
156 /* We do not store normal mode data hash in TPM. */
157 if (!vboot_recovery_mode_enabled())
158 return 1;
159
160 if (!IS_ENABLED(CONFIG_FSP2_0_USES_TPM_MRC_HASH))
161 return 1;
162
163 /* Calculate hash of data read from RECOVERY_MRC_CACHE. */
164 if (vb2_digest_buffer(data, size, VB2_HASH_SHA256, data_hash,
165 sizeof(data_hash))) {
166 printk(BIOS_ERR, "MRC: SHA-256 calculation failed for data.\n");
167 return 0;
168 }
169
170 /* Initialize TPM driver. */
Furquan Shaikh8b5d04e2016-11-10 09:49:05 -0800171 if (tlcl_lib_init() != VB2_SUCCESS) {
Furquan Shaikh2db5bac2016-11-07 23:57:48 -0800172 printk(BIOS_ERR, "MRC: TPM driver initialization failed.\n");
173 return 0;
174 }
175
176 /* Read hash of MRC data saved in TPM. */
177 if (antirollback_read_space_rec_hash(tpm_hash, sizeof(tpm_hash))
178 != TPM_SUCCESS) {
179 printk(BIOS_ERR, "MRC: Could not read hash from TPM.\n");
180 return 0;
181 }
182
183 if (memcmp(tpm_hash, data_hash, sizeof(tpm_hash))) {
184 printk(BIOS_ERR, "MRC: Hash comparison failed.\n");
185 return 0;
186 }
187
188 printk(BIOS_INFO, "MRC: Hash comparison successful. "
189 "Using data from RECOVERY_MRC_CACHE\n");
190 return 1;
191}
192
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530193static void fsp_fill_mrc_cache(FSPM_ARCH_UPD *arch_upd, uint32_t fsp_version)
Aaron Durbinb4302502016-07-17 17:04:37 -0500194{
Aaron Durbin31be2c92016-12-03 22:08:20 -0600195 struct region_device rdev;
196 void *data;
Aaron Durbinb4302502016-07-17 17:04:37 -0500197
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500198 arch_upd->NvsBufferPtr = NULL;
199
200 if (!IS_ENABLED(CONFIG_CACHE_MRC_SETTINGS))
201 return;
202
Aaron Durbin31be2c92016-12-03 22:08:20 -0600203 /*
204 * In recovery mode, force retraining:
205 * 1. Recovery cache is not supported, or
206 * 2. Memory retrain switch is set.
207 */
208 if (vboot_recovery_mode_enabled()) {
209 if (!IS_ENABLED(CONFIG_HAS_RECOVERY_MRC_CACHE))
210 return;
211 if (vboot_recovery_mode_memory_retrain())
212 return;
213 }
Aaron Durbin98ea6362016-07-18 11:31:53 -0500214
Aaron Durbin31be2c92016-12-03 22:08:20 -0600215 if (mrc_cache_get_current(MRC_TRAINING_DATA, fsp_version, &rdev) < 0)
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500216 return;
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500217
Aaron Durbin31be2c92016-12-03 22:08:20 -0600218 /* Assume boot device is memory mapped. */
219 assert(IS_ENABLED(CONFIG_BOOT_DEVICE_MEMORY_MAPPED));
220 data = rdev_mmap_full(&rdev);
221
222 if (data == NULL)
223 return;
224
225 if (!mrc_cache_verify_tpm_hash(data, region_device_sz(&rdev)))
Furquan Shaikh2db5bac2016-11-07 23:57:48 -0800226 return;
227
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500228 /* MRC cache found */
Aaron Durbin31be2c92016-12-03 22:08:20 -0600229 arch_upd->NvsBufferPtr = data;
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530230
231 printk(BIOS_SPEW, "MRC cache found, size %zx\n",
232 region_device_sz(&rdev));
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500233}
234
Aaron Durbin02e504c2016-07-18 11:53:10 -0500235static enum cb_err check_region_overlap(const struct memranges *ranges,
236 const char *description,
237 uintptr_t begin, uintptr_t end)
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500238{
Aaron Durbin02e504c2016-07-18 11:53:10 -0500239 const struct range_entry *r;
240
241 memranges_each_entry(r, ranges) {
242 if (end <= range_entry_base(r))
243 continue;
244 if (begin >= range_entry_end(r))
245 continue;
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700246 printk(BIOS_CRIT, "'%s' overlaps currently running program: "
Aaron Durbin02e504c2016-07-18 11:53:10 -0500247 "[%p, %p)\n", description, (void *)begin, (void *)end);
248 return CB_ERR;
249 }
250
251 return CB_SUCCESS;
252}
253
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700254static enum cb_err fsp_fill_common_arch_params(FSPM_ARCH_UPD *arch_upd,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500255 bool s3wake, uint32_t fsp_version,
256 const struct memranges *memmap)
257{
258 uintptr_t stack_begin;
259 uintptr_t stack_end;
260
Aaron Durbinb4302502016-07-17 17:04:37 -0500261 /*
262 * FSPM_UPD passed here is populated with default values provided by
263 * the blob itself. We let FSPM use top of CAR region of the size it
264 * requests.
Aaron Durbinb4302502016-07-17 17:04:37 -0500265 */
Aaron Durbin02e504c2016-07-18 11:53:10 -0500266 stack_end = (uintptr_t)_car_region_end;
267 stack_begin = stack_end - arch_upd->StackSize;
268
269 if (check_region_overlap(memmap, "FSPM stack", stack_begin,
270 stack_end) != CB_SUCCESS)
271 return CB_ERR;
272
273 arch_upd->StackBase = (void *)stack_begin;
Aaron Durbinb4302502016-07-17 17:04:37 -0500274
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530275 fsp_fill_mrc_cache(arch_upd, fsp_version);
Aaron Durbinb4302502016-07-17 17:04:37 -0500276
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530277 /* Configure bootmode */
278 if (s3wake) {
279 /*
280 * For S3 resume case, if valid mrc cache data is not found or
281 * RECOVERY_MRC_CACHE hash verification fails, the S3 data
282 * pointer would be null and S3 resume fails with fsp-m
283 * returning error. Invoking a reset here saves time.
284 */
285 if (!arch_upd->NvsBufferPtr)
286 hard_reset();
287 arch_upd->BootMode = FSP_BOOT_ON_S3_RESUME;
288 } else {
289 if (arch_upd->NvsBufferPtr)
290 arch_upd->BootMode =
291 FSP_BOOT_ASSUMING_NO_CONFIGURATION_CHANGES;
292 else
293 arch_upd->BootMode = FSP_BOOT_WITH_FULL_CONFIGURATION;
294 }
Aaron Durbin02e504c2016-07-18 11:53:10 -0500295
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530296 printk(BIOS_SPEW, "bootmode is set to :%d\n", arch_upd->BootMode);
Aamir Bohra276c06a2017-12-26 17:54:45 +0530297
Aaron Durbin02e504c2016-07-18 11:53:10 -0500298 return CB_SUCCESS;
Aaron Durbinb4302502016-07-17 17:04:37 -0500299}
300
Stefan Reinauer6a001132017-07-13 02:20:27 +0200301__attribute__((weak))
Aaron Durbina3cecb22017-04-25 21:58:10 -0500302uint8_t fsp_memory_mainboard_version(void)
303{
304 return 0;
305}
306
Stefan Reinauer6a001132017-07-13 02:20:27 +0200307__attribute__((weak))
Aaron Durbina3cecb22017-04-25 21:58:10 -0500308uint8_t fsp_memory_soc_version(void)
309{
310 return 0;
311}
312
313/*
314 * Allow SoC and/or mainboard to bump the revision of the FSP setting
315 * number. The FSP spec uses the low 8 bits as the build number. Take over
316 * bits 3:0 for the SoC setting and bits 7:4 for the mainboard. That way
317 * a tweak in the settings will bump the version used to track the cached
318 * setting which triggers retraining when the FSP version hasn't changed, but
319 * the SoC or mainboard settings have.
320 */
321static uint32_t fsp_memory_settings_version(const struct fsp_header *hdr)
322{
323 /* Use the full FSP version by default. */
324 uint32_t ver = hdr->fsp_revision;
325
326 if (!IS_ENABLED(CONFIG_FSP_PLATFORM_MEMORY_SETTINGS_VERSIONS))
327 return ver;
328
329 ver &= ~0xff;
330 ver |= (0xf & fsp_memory_mainboard_version()) << 4;
331 ver |= (0xf & fsp_memory_soc_version()) << 0;
332
333 return ver;
334}
335
Lee Leahy9671faa2016-07-24 18:18:52 -0700336static void do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500337 const struct memranges *memmap)
Andrey Petrov465fc132016-02-25 14:16:33 -0800338{
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700339 uint32_t status;
Andrey Petrov465fc132016-02-25 14:16:33 -0800340 fsp_memory_init_fn fsp_raminit;
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700341 FSPM_UPD fspm_upd, *upd;
342 FSPM_ARCH_UPD *arch_upd;
Aaron Durbina3cecb22017-04-25 21:58:10 -0500343 uint32_t fsp_version;
Andrey Petrov465fc132016-02-25 14:16:33 -0800344
345 post_code(0x34);
346
Aaron Durbina3cecb22017-04-25 21:58:10 -0500347 fsp_version = fsp_memory_settings_version(hdr);
348
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700349 upd = (FSPM_UPD *)(hdr->cfg_region_offset + hdr->image_base);
Andrey Petrov465fc132016-02-25 14:16:33 -0800350
Lee Leahye686ee82017-03-10 08:45:30 -0800351 if (upd->FspUpdHeader.Signature != FSPM_UPD_SIGNATURE)
Lee Leahy9671faa2016-07-24 18:18:52 -0700352 die("Invalid FSPM signature!\n");
Andrey Petrov465fc132016-02-25 14:16:33 -0800353
354 /* Copy the default values from the UPD area */
355 memcpy(&fspm_upd, upd, sizeof(fspm_upd));
356
Aaron Durbin02e504c2016-07-18 11:53:10 -0500357 arch_upd = &fspm_upd.FspmArchUpd;
358
Aaron Durbin27928682016-07-15 22:32:28 -0500359 /* Reserve enough memory under TOLUD to save CBMEM header */
Aaron Durbin02e504c2016-07-18 11:53:10 -0500360 arch_upd->BootLoaderTolumSize = cbmem_overhead_size();
Aaron Durbin27928682016-07-15 22:32:28 -0500361
Aaron Durbinb4302502016-07-17 17:04:37 -0500362 /* Fill common settings on behalf of chipset. */
Aaron Durbina3cecb22017-04-25 21:58:10 -0500363 if (fsp_fill_common_arch_params(arch_upd, s3wake, fsp_version,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500364 memmap) != CB_SUCCESS)
Lee Leahy9671faa2016-07-24 18:18:52 -0700365 die("FSPM_ARCH_UPD not found!\n");
Aaron Durbinb4302502016-07-17 17:04:37 -0500366
Andrey Petrov465fc132016-02-25 14:16:33 -0800367 /* Give SoC and mainboard a chance to update the UPD */
Aaron Durbina3cecb22017-04-25 21:58:10 -0500368 platform_fsp_memory_init_params_cb(&fspm_upd, fsp_version);
Andrey Petrov465fc132016-02-25 14:16:33 -0800369
Pratik Prajapatiffc934d2016-11-18 14:36:34 -0800370 if (IS_ENABLED(CONFIG_MMA))
371 setup_mma(&fspm_upd.FspmConfig);
372
Andrey Petrov465fc132016-02-25 14:16:33 -0800373 /* Call FspMemoryInit */
374 fsp_raminit = (void *)(hdr->image_base + hdr->memory_init_entry_offset);
Lee Leahyac3b0a62016-07-27 07:40:25 -0700375 fsp_debug_before_memory_init(fsp_raminit, upd, &fspm_upd);
Andrey Petrov465fc132016-02-25 14:16:33 -0800376
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -0700377 post_code(POST_FSP_MEMORY_INIT);
Andrey Petrov465fc132016-02-25 14:16:33 -0800378 timestamp_add_now(TS_FSP_MEMORY_INIT_START);
Lee Leahyac3b0a62016-07-27 07:40:25 -0700379 status = fsp_raminit(&fspm_upd, fsp_get_hob_list_ptr());
Subrata Banik0755ab92017-07-12 15:31:06 +0530380 post_code(POST_FSP_MEMORY_EXIT);
Andrey Petrov465fc132016-02-25 14:16:33 -0800381 timestamp_add_now(TS_FSP_MEMORY_INIT_END);
382
Lee Leahyac3b0a62016-07-27 07:40:25 -0700383 fsp_debug_after_memory_init(status);
Andrey Petrov465fc132016-02-25 14:16:33 -0800384
Lee Leahy9671faa2016-07-24 18:18:52 -0700385 /* Handle any errors returned by FspMemoryInit */
Aaron Durbinf41f2aa2016-07-18 12:03:58 -0500386 fsp_handle_reset(status);
Lee Leahy9671faa2016-07-24 18:18:52 -0700387 if (status != FSP_SUCCESS) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700388 printk(BIOS_CRIT, "FspMemoryInit returned 0x%08x\n", status);
Lee Leahy9671faa2016-07-24 18:18:52 -0700389 die("FspMemoryInit returned an error!\n");
390 }
Aaron Durbinf41f2aa2016-07-18 12:03:58 -0500391
Aaron Durbina3cecb22017-04-25 21:58:10 -0500392 do_fsp_post_memory_init(s3wake, fsp_version);
Andrey Petrov465fc132016-02-25 14:16:33 -0800393}
394
Aaron Durbind04639b2016-07-17 23:23:59 -0500395/* Load the binary into the memory specified by the info header. */
396static enum cb_err load_fspm_mem(struct fsp_header *hdr,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500397 const struct region_device *rdev,
398 const struct memranges *memmap)
Aaron Durbind04639b2016-07-17 23:23:59 -0500399{
Aaron Durbind04639b2016-07-17 23:23:59 -0500400 uintptr_t fspm_begin;
401 uintptr_t fspm_end;
402
403 if (fsp_validate_component(hdr, rdev) != CB_SUCCESS)
404 return CB_ERR;
405
406 fspm_begin = hdr->image_base;
407 fspm_end = fspm_begin + hdr->image_size;
408
Aaron Durbin02e504c2016-07-18 11:53:10 -0500409 if (check_region_overlap(memmap, "FSPM", fspm_begin, fspm_end) !=
410 CB_SUCCESS)
Aaron Durbind04639b2016-07-17 23:23:59 -0500411 return CB_ERR;
Aaron Durbind04639b2016-07-17 23:23:59 -0500412
413 /* Load binary into memory at provided address. */
414 if (rdev_readat(rdev, (void *)fspm_begin, 0, fspm_end - fspm_begin) < 0)
415 return CB_ERR;
416
417 return CB_SUCCESS;
418}
419
420/* Handle the case when FSPM is running XIP. */
421static enum cb_err load_fspm_xip(struct fsp_header *hdr,
422 const struct region_device *rdev)
423{
424 void *base;
425
426 if (fsp_validate_component(hdr, rdev) != CB_SUCCESS)
427 return CB_ERR;
428
429 base = rdev_mmap_full(rdev);
430 if ((uintptr_t)base != hdr->image_base) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700431 printk(BIOS_CRIT, "FSPM XIP base does not match: %p vs %p\n",
Aaron Durbind04639b2016-07-17 23:23:59 -0500432 (void *)(uintptr_t)hdr->image_base, base);
433 return CB_ERR;
434 }
435
436 /*
437 * Since the component is XIP it's already in the address space. Thus,
438 * there's no need to rdev_munmap().
439 */
440 return CB_SUCCESS;
441}
442
Lee Leahy9671faa2016-07-24 18:18:52 -0700443void fsp_memory_init(bool s3wake)
Andrey Petrov465fc132016-02-25 14:16:33 -0800444{
445 struct fsp_header hdr;
Aaron Durbind04639b2016-07-17 23:23:59 -0500446 enum cb_err status;
447 struct cbfsf file_desc;
448 struct region_device file_data;
449 const char *name = CONFIG_FSP_M_CBFS;
Aaron Durbin02e504c2016-07-18 11:53:10 -0500450 struct memranges memmap;
451 struct range_entry freeranges[2];
Andrey Petrov465fc132016-02-25 14:16:33 -0800452
Furquan Shaikh5aea5882016-07-30 18:10:05 -0700453 if (IS_ENABLED(CONFIG_ELOG_BOOT_COUNT) && !s3wake)
454 boot_count_increment();
455
Aaron Durbind04639b2016-07-17 23:23:59 -0500456 if (cbfs_boot_locate(&file_desc, name, NULL)) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700457 printk(BIOS_CRIT, "Could not locate %s in CBFS\n", name);
Lee Leahy9671faa2016-07-24 18:18:52 -0700458 die("FSPM not available!\n");
Aaron Durbind04639b2016-07-17 23:23:59 -0500459 }
460
461 cbfs_file_data(&file_data, &file_desc);
462
Aaron Durbin02e504c2016-07-18 11:53:10 -0500463 /* Build up memory map of romstage address space including CAR. */
464 memranges_init_empty(&memmap, &freeranges[0], ARRAY_SIZE(freeranges));
465 memranges_insert(&memmap, (uintptr_t)_car_region_start,
466 _car_relocatable_data_end - _car_region_start, 0);
467 memranges_insert(&memmap, (uintptr_t)_program, _program_size, 0);
468
Lee Leahy27cd96a2016-07-21 11:16:39 -0700469 if (!IS_ENABLED(CONFIG_FSP_M_XIP))
Aaron Durbin02e504c2016-07-18 11:53:10 -0500470 status = load_fspm_mem(&hdr, &file_data, &memmap);
Aaron Durbind04639b2016-07-17 23:23:59 -0500471 else
472 status = load_fspm_xip(&hdr, &file_data);
473
Lee Leahye686ee82017-03-10 08:45:30 -0800474 if (status != CB_SUCCESS)
Lee Leahy9671faa2016-07-24 18:18:52 -0700475 die("Loading FSPM failed!\n");
Aaron Durbind04639b2016-07-17 23:23:59 -0500476
477 /* Signal that FSP component has been loaded. */
478 prog_segment_loaded(hdr.image_base, hdr.image_size, SEG_FINAL);
Andrey Petrov465fc132016-02-25 14:16:33 -0800479
Lee Leahy9671faa2016-07-24 18:18:52 -0700480 do_fsp_memory_init(&hdr, s3wake, &memmap);
Andrey Petrov465fc132016-02-25 14:16:33 -0800481}