blob: 1ca52085a7830214de2a733bd45adaa5a74d73ca [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>
Philipp Deppenwiesec07f8fb2018-02-27 19:40:52 +010015#include <security/vboot/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>
Philipp Deppenwiesec07f8fb2018-02-27 19:40:52 +010034#include <security/tpm/tspi.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);
Youness Alaoui676887d2018-02-07 11:49:35 -0500149
150 /*
151 * Initialize the TPM, unless the TPM was already initialized
152 * in verstage and used to verify romstage.
153 */
Philipp Deppenwiesec07f8fb2018-02-27 19:40:52 +0100154 if ((IS_ENABLED(CONFIG_TPM1) || IS_ENABLED(CONFIG_TPM2)) &&
Youness Alaoui676887d2018-02-07 11:49:35 -0500155 !IS_ENABLED(CONFIG_VBOOT_STARTS_IN_BOOTBLOCK))
Philipp Deppenwiesec07f8fb2018-02-27 19:40:52 +0100156 tpm_setup(s3wake);
Aaron Durbinb4302502016-07-17 17:04:37 -0500157}
158
Furquan Shaikh2db5bac2016-11-07 23:57:48 -0800159static int mrc_cache_verify_tpm_hash(const uint8_t *data, size_t size)
160{
161 uint8_t data_hash[VB2_SHA256_DIGEST_SIZE];
162 uint8_t tpm_hash[VB2_SHA256_DIGEST_SIZE];
163
164 /* We do not store normal mode data hash in TPM. */
165 if (!vboot_recovery_mode_enabled())
166 return 1;
167
168 if (!IS_ENABLED(CONFIG_FSP2_0_USES_TPM_MRC_HASH))
169 return 1;
170
171 /* Calculate hash of data read from RECOVERY_MRC_CACHE. */
172 if (vb2_digest_buffer(data, size, VB2_HASH_SHA256, data_hash,
173 sizeof(data_hash))) {
174 printk(BIOS_ERR, "MRC: SHA-256 calculation failed for data.\n");
175 return 0;
176 }
177
178 /* Initialize TPM driver. */
Furquan Shaikh8b5d04e2016-11-10 09:49:05 -0800179 if (tlcl_lib_init() != VB2_SUCCESS) {
Furquan Shaikh2db5bac2016-11-07 23:57:48 -0800180 printk(BIOS_ERR, "MRC: TPM driver initialization failed.\n");
181 return 0;
182 }
183
184 /* Read hash of MRC data saved in TPM. */
185 if (antirollback_read_space_rec_hash(tpm_hash, sizeof(tpm_hash))
186 != TPM_SUCCESS) {
187 printk(BIOS_ERR, "MRC: Could not read hash from TPM.\n");
188 return 0;
189 }
190
191 if (memcmp(tpm_hash, data_hash, sizeof(tpm_hash))) {
192 printk(BIOS_ERR, "MRC: Hash comparison failed.\n");
193 return 0;
194 }
195
196 printk(BIOS_INFO, "MRC: Hash comparison successful. "
197 "Using data from RECOVERY_MRC_CACHE\n");
198 return 1;
199}
200
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530201static void fsp_fill_mrc_cache(FSPM_ARCH_UPD *arch_upd, uint32_t fsp_version)
Aaron Durbinb4302502016-07-17 17:04:37 -0500202{
Aaron Durbin31be2c92016-12-03 22:08:20 -0600203 struct region_device rdev;
204 void *data;
Aaron Durbinb4302502016-07-17 17:04:37 -0500205
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500206 arch_upd->NvsBufferPtr = NULL;
207
208 if (!IS_ENABLED(CONFIG_CACHE_MRC_SETTINGS))
209 return;
210
Aaron Durbin31be2c92016-12-03 22:08:20 -0600211 /*
212 * In recovery mode, force retraining:
213 * 1. Recovery cache is not supported, or
214 * 2. Memory retrain switch is set.
215 */
216 if (vboot_recovery_mode_enabled()) {
217 if (!IS_ENABLED(CONFIG_HAS_RECOVERY_MRC_CACHE))
218 return;
219 if (vboot_recovery_mode_memory_retrain())
220 return;
221 }
Aaron Durbin98ea6362016-07-18 11:31:53 -0500222
Aaron Durbin31be2c92016-12-03 22:08:20 -0600223 if (mrc_cache_get_current(MRC_TRAINING_DATA, fsp_version, &rdev) < 0)
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500224 return;
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500225
Aaron Durbin31be2c92016-12-03 22:08:20 -0600226 /* Assume boot device is memory mapped. */
227 assert(IS_ENABLED(CONFIG_BOOT_DEVICE_MEMORY_MAPPED));
228 data = rdev_mmap_full(&rdev);
229
230 if (data == NULL)
231 return;
232
233 if (!mrc_cache_verify_tpm_hash(data, region_device_sz(&rdev)))
Furquan Shaikh2db5bac2016-11-07 23:57:48 -0800234 return;
235
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500236 /* MRC cache found */
Aaron Durbin31be2c92016-12-03 22:08:20 -0600237 arch_upd->NvsBufferPtr = data;
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530238
239 printk(BIOS_SPEW, "MRC cache found, size %zx\n",
240 region_device_sz(&rdev));
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500241}
242
Aaron Durbin02e504c2016-07-18 11:53:10 -0500243static enum cb_err check_region_overlap(const struct memranges *ranges,
244 const char *description,
245 uintptr_t begin, uintptr_t end)
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500246{
Aaron Durbin02e504c2016-07-18 11:53:10 -0500247 const struct range_entry *r;
248
249 memranges_each_entry(r, ranges) {
250 if (end <= range_entry_base(r))
251 continue;
252 if (begin >= range_entry_end(r))
253 continue;
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700254 printk(BIOS_CRIT, "'%s' overlaps currently running program: "
Aaron Durbin02e504c2016-07-18 11:53:10 -0500255 "[%p, %p)\n", description, (void *)begin, (void *)end);
256 return CB_ERR;
257 }
258
259 return CB_SUCCESS;
260}
261
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700262static enum cb_err fsp_fill_common_arch_params(FSPM_ARCH_UPD *arch_upd,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500263 bool s3wake, uint32_t fsp_version,
264 const struct memranges *memmap)
265{
266 uintptr_t stack_begin;
267 uintptr_t stack_end;
268
Aaron Durbinb4302502016-07-17 17:04:37 -0500269 /*
270 * FSPM_UPD passed here is populated with default values provided by
271 * the blob itself. We let FSPM use top of CAR region of the size it
272 * requests.
Aaron Durbinb4302502016-07-17 17:04:37 -0500273 */
Aaron Durbin02e504c2016-07-18 11:53:10 -0500274 stack_end = (uintptr_t)_car_region_end;
275 stack_begin = stack_end - arch_upd->StackSize;
276
277 if (check_region_overlap(memmap, "FSPM stack", stack_begin,
278 stack_end) != CB_SUCCESS)
279 return CB_ERR;
280
281 arch_upd->StackBase = (void *)stack_begin;
Aaron Durbinb4302502016-07-17 17:04:37 -0500282
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530283 fsp_fill_mrc_cache(arch_upd, fsp_version);
Aaron Durbinb4302502016-07-17 17:04:37 -0500284
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530285 /* Configure bootmode */
286 if (s3wake) {
287 /*
288 * For S3 resume case, if valid mrc cache data is not found or
289 * RECOVERY_MRC_CACHE hash verification fails, the S3 data
290 * pointer would be null and S3 resume fails with fsp-m
291 * returning error. Invoking a reset here saves time.
292 */
293 if (!arch_upd->NvsBufferPtr)
294 hard_reset();
295 arch_upd->BootMode = FSP_BOOT_ON_S3_RESUME;
296 } else {
297 if (arch_upd->NvsBufferPtr)
298 arch_upd->BootMode =
299 FSP_BOOT_ASSUMING_NO_CONFIGURATION_CHANGES;
300 else
301 arch_upd->BootMode = FSP_BOOT_WITH_FULL_CONFIGURATION;
302 }
Aaron Durbin02e504c2016-07-18 11:53:10 -0500303
Aamir Bohra69cd62c2018-01-08 11:01:34 +0530304 printk(BIOS_SPEW, "bootmode is set to :%d\n", arch_upd->BootMode);
Aamir Bohra276c06a2017-12-26 17:54:45 +0530305
Aaron Durbin02e504c2016-07-18 11:53:10 -0500306 return CB_SUCCESS;
Aaron Durbinb4302502016-07-17 17:04:37 -0500307}
308
Aaron Durbin64031672018-04-21 14:45:32 -0600309__weak
Aaron Durbina3cecb22017-04-25 21:58:10 -0500310uint8_t fsp_memory_mainboard_version(void)
311{
312 return 0;
313}
314
Aaron Durbin64031672018-04-21 14:45:32 -0600315__weak
Aaron Durbina3cecb22017-04-25 21:58:10 -0500316uint8_t fsp_memory_soc_version(void)
317{
318 return 0;
319}
320
321/*
322 * Allow SoC and/or mainboard to bump the revision of the FSP setting
323 * number. The FSP spec uses the low 8 bits as the build number. Take over
324 * bits 3:0 for the SoC setting and bits 7:4 for the mainboard. That way
325 * a tweak in the settings will bump the version used to track the cached
326 * setting which triggers retraining when the FSP version hasn't changed, but
327 * the SoC or mainboard settings have.
328 */
329static uint32_t fsp_memory_settings_version(const struct fsp_header *hdr)
330{
331 /* Use the full FSP version by default. */
332 uint32_t ver = hdr->fsp_revision;
333
334 if (!IS_ENABLED(CONFIG_FSP_PLATFORM_MEMORY_SETTINGS_VERSIONS))
335 return ver;
336
337 ver &= ~0xff;
338 ver |= (0xf & fsp_memory_mainboard_version()) << 4;
339 ver |= (0xf & fsp_memory_soc_version()) << 0;
340
341 return ver;
342}
343
Lee Leahy9671faa2016-07-24 18:18:52 -0700344static void do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500345 const struct memranges *memmap)
Andrey Petrov465fc132016-02-25 14:16:33 -0800346{
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700347 uint32_t status;
Andrey Petrov465fc132016-02-25 14:16:33 -0800348 fsp_memory_init_fn fsp_raminit;
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700349 FSPM_UPD fspm_upd, *upd;
350 FSPM_ARCH_UPD *arch_upd;
Aaron Durbina3cecb22017-04-25 21:58:10 -0500351 uint32_t fsp_version;
Andrey Petrov465fc132016-02-25 14:16:33 -0800352
353 post_code(0x34);
354
Aaron Durbina3cecb22017-04-25 21:58:10 -0500355 fsp_version = fsp_memory_settings_version(hdr);
356
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700357 upd = (FSPM_UPD *)(hdr->cfg_region_offset + hdr->image_base);
Andrey Petrov465fc132016-02-25 14:16:33 -0800358
Lee Leahye686ee82017-03-10 08:45:30 -0800359 if (upd->FspUpdHeader.Signature != FSPM_UPD_SIGNATURE)
Lee Leahy9671faa2016-07-24 18:18:52 -0700360 die("Invalid FSPM signature!\n");
Andrey Petrov465fc132016-02-25 14:16:33 -0800361
362 /* Copy the default values from the UPD area */
363 memcpy(&fspm_upd, upd, sizeof(fspm_upd));
364
Aaron Durbin02e504c2016-07-18 11:53:10 -0500365 arch_upd = &fspm_upd.FspmArchUpd;
366
Aaron Durbin27928682016-07-15 22:32:28 -0500367 /* Reserve enough memory under TOLUD to save CBMEM header */
Aaron Durbin02e504c2016-07-18 11:53:10 -0500368 arch_upd->BootLoaderTolumSize = cbmem_overhead_size();
Aaron Durbin27928682016-07-15 22:32:28 -0500369
Aaron Durbinb4302502016-07-17 17:04:37 -0500370 /* Fill common settings on behalf of chipset. */
Aaron Durbina3cecb22017-04-25 21:58:10 -0500371 if (fsp_fill_common_arch_params(arch_upd, s3wake, fsp_version,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500372 memmap) != CB_SUCCESS)
Lee Leahy9671faa2016-07-24 18:18:52 -0700373 die("FSPM_ARCH_UPD not found!\n");
Aaron Durbinb4302502016-07-17 17:04:37 -0500374
Andrey Petrov465fc132016-02-25 14:16:33 -0800375 /* Give SoC and mainboard a chance to update the UPD */
Aaron Durbina3cecb22017-04-25 21:58:10 -0500376 platform_fsp_memory_init_params_cb(&fspm_upd, fsp_version);
Andrey Petrov465fc132016-02-25 14:16:33 -0800377
Pratik Prajapatiffc934d2016-11-18 14:36:34 -0800378 if (IS_ENABLED(CONFIG_MMA))
379 setup_mma(&fspm_upd.FspmConfig);
380
Andrey Petrov465fc132016-02-25 14:16:33 -0800381 /* Call FspMemoryInit */
382 fsp_raminit = (void *)(hdr->image_base + hdr->memory_init_entry_offset);
Lee Leahyac3b0a62016-07-27 07:40:25 -0700383 fsp_debug_before_memory_init(fsp_raminit, upd, &fspm_upd);
Andrey Petrov465fc132016-02-25 14:16:33 -0800384
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -0700385 post_code(POST_FSP_MEMORY_INIT);
Andrey Petrov465fc132016-02-25 14:16:33 -0800386 timestamp_add_now(TS_FSP_MEMORY_INIT_START);
Lee Leahyac3b0a62016-07-27 07:40:25 -0700387 status = fsp_raminit(&fspm_upd, fsp_get_hob_list_ptr());
Subrata Banik0755ab92017-07-12 15:31:06 +0530388 post_code(POST_FSP_MEMORY_EXIT);
Andrey Petrov465fc132016-02-25 14:16:33 -0800389 timestamp_add_now(TS_FSP_MEMORY_INIT_END);
390
Lee Leahyac3b0a62016-07-27 07:40:25 -0700391 fsp_debug_after_memory_init(status);
Andrey Petrov465fc132016-02-25 14:16:33 -0800392
Lee Leahy9671faa2016-07-24 18:18:52 -0700393 /* Handle any errors returned by FspMemoryInit */
Aaron Durbinf41f2aa2016-07-18 12:03:58 -0500394 fsp_handle_reset(status);
Lee Leahy9671faa2016-07-24 18:18:52 -0700395 if (status != FSP_SUCCESS) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700396 printk(BIOS_CRIT, "FspMemoryInit returned 0x%08x\n", status);
Lee Leahy9671faa2016-07-24 18:18:52 -0700397 die("FspMemoryInit returned an error!\n");
398 }
Aaron Durbinf41f2aa2016-07-18 12:03:58 -0500399
Aaron Durbina3cecb22017-04-25 21:58:10 -0500400 do_fsp_post_memory_init(s3wake, fsp_version);
Andrey Petrov465fc132016-02-25 14:16:33 -0800401}
402
Aaron Durbind04639b2016-07-17 23:23:59 -0500403/* Load the binary into the memory specified by the info header. */
404static enum cb_err load_fspm_mem(struct fsp_header *hdr,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500405 const struct region_device *rdev,
406 const struct memranges *memmap)
Aaron Durbind04639b2016-07-17 23:23:59 -0500407{
Aaron Durbind04639b2016-07-17 23:23:59 -0500408 uintptr_t fspm_begin;
409 uintptr_t fspm_end;
410
411 if (fsp_validate_component(hdr, rdev) != CB_SUCCESS)
412 return CB_ERR;
413
414 fspm_begin = hdr->image_base;
415 fspm_end = fspm_begin + hdr->image_size;
416
Aaron Durbin02e504c2016-07-18 11:53:10 -0500417 if (check_region_overlap(memmap, "FSPM", fspm_begin, fspm_end) !=
418 CB_SUCCESS)
Aaron Durbind04639b2016-07-17 23:23:59 -0500419 return CB_ERR;
Aaron Durbind04639b2016-07-17 23:23:59 -0500420
421 /* Load binary into memory at provided address. */
422 if (rdev_readat(rdev, (void *)fspm_begin, 0, fspm_end - fspm_begin) < 0)
423 return CB_ERR;
424
425 return CB_SUCCESS;
426}
427
428/* Handle the case when FSPM is running XIP. */
429static enum cb_err load_fspm_xip(struct fsp_header *hdr,
430 const struct region_device *rdev)
431{
432 void *base;
433
434 if (fsp_validate_component(hdr, rdev) != CB_SUCCESS)
435 return CB_ERR;
436
437 base = rdev_mmap_full(rdev);
438 if ((uintptr_t)base != hdr->image_base) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700439 printk(BIOS_CRIT, "FSPM XIP base does not match: %p vs %p\n",
Aaron Durbind04639b2016-07-17 23:23:59 -0500440 (void *)(uintptr_t)hdr->image_base, base);
441 return CB_ERR;
442 }
443
444 /*
445 * Since the component is XIP it's already in the address space. Thus,
446 * there's no need to rdev_munmap().
447 */
448 return CB_SUCCESS;
449}
450
Lee Leahy9671faa2016-07-24 18:18:52 -0700451void fsp_memory_init(bool s3wake)
Andrey Petrov465fc132016-02-25 14:16:33 -0800452{
453 struct fsp_header hdr;
Aaron Durbind04639b2016-07-17 23:23:59 -0500454 enum cb_err status;
455 struct cbfsf file_desc;
456 struct region_device file_data;
457 const char *name = CONFIG_FSP_M_CBFS;
Aaron Durbin02e504c2016-07-18 11:53:10 -0500458 struct memranges memmap;
459 struct range_entry freeranges[2];
Andrey Petrov465fc132016-02-25 14:16:33 -0800460
Furquan Shaikh5aea5882016-07-30 18:10:05 -0700461 if (IS_ENABLED(CONFIG_ELOG_BOOT_COUNT) && !s3wake)
462 boot_count_increment();
463
Aaron Durbind04639b2016-07-17 23:23:59 -0500464 if (cbfs_boot_locate(&file_desc, name, NULL)) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700465 printk(BIOS_CRIT, "Could not locate %s in CBFS\n", name);
Lee Leahy9671faa2016-07-24 18:18:52 -0700466 die("FSPM not available!\n");
Aaron Durbind04639b2016-07-17 23:23:59 -0500467 }
468
469 cbfs_file_data(&file_data, &file_desc);
470
Aaron Durbin02e504c2016-07-18 11:53:10 -0500471 /* Build up memory map of romstage address space including CAR. */
472 memranges_init_empty(&memmap, &freeranges[0], ARRAY_SIZE(freeranges));
473 memranges_insert(&memmap, (uintptr_t)_car_region_start,
474 _car_relocatable_data_end - _car_region_start, 0);
475 memranges_insert(&memmap, (uintptr_t)_program, _program_size, 0);
476
Lee Leahy27cd96a2016-07-21 11:16:39 -0700477 if (!IS_ENABLED(CONFIG_FSP_M_XIP))
Aaron Durbin02e504c2016-07-18 11:53:10 -0500478 status = load_fspm_mem(&hdr, &file_data, &memmap);
Aaron Durbind04639b2016-07-17 23:23:59 -0500479 else
480 status = load_fspm_xip(&hdr, &file_data);
481
Lee Leahye686ee82017-03-10 08:45:30 -0800482 if (status != CB_SUCCESS)
Lee Leahy9671faa2016-07-24 18:18:52 -0700483 die("Loading FSPM failed!\n");
Aaron Durbind04639b2016-07-17 23:23:59 -0500484
485 /* Signal that FSP component has been loaded. */
486 prog_segment_loaded(hdr.image_base, hdr.image_size, SEG_FINAL);
Andrey Petrov465fc132016-02-25 14:16:33 -0800487
Lee Leahy9671faa2016-07-24 18:18:52 -0700488 do_fsp_memory_init(&hdr, s3wake, &memmap);
Andrey Petrov465fc132016-02-25 14:16:33 -0800489}