blob: 7b031040c8e54d935cc7035d12c53cf4cdfc1c9b [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
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700193static void fsp_fill_mrc_cache(FSPM_ARCH_UPD *arch_upd, bool s3wake,
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500194 uint32_t fsp_version)
Aaron Durbinb4302502016-07-17 17:04:37 -0500195{
Aaron Durbin31be2c92016-12-03 22:08:20 -0600196 struct region_device rdev;
197 void *data;
Aaron Durbinb4302502016-07-17 17:04:37 -0500198
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500199 arch_upd->NvsBufferPtr = NULL;
200
201 if (!IS_ENABLED(CONFIG_CACHE_MRC_SETTINGS))
202 return;
203
Aaron Durbin31be2c92016-12-03 22:08:20 -0600204 /*
205 * In recovery mode, force retraining:
206 * 1. Recovery cache is not supported, or
207 * 2. Memory retrain switch is set.
208 */
209 if (vboot_recovery_mode_enabled()) {
210 if (!IS_ENABLED(CONFIG_HAS_RECOVERY_MRC_CACHE))
211 return;
212 if (vboot_recovery_mode_memory_retrain())
213 return;
214 }
Aaron Durbin98ea6362016-07-18 11:31:53 -0500215
Aaron Durbin31be2c92016-12-03 22:08:20 -0600216 if (mrc_cache_get_current(MRC_TRAINING_DATA, fsp_version, &rdev) < 0)
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500217 return;
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500218
Aaron Durbin31be2c92016-12-03 22:08:20 -0600219 /* Assume boot device is memory mapped. */
220 assert(IS_ENABLED(CONFIG_BOOT_DEVICE_MEMORY_MAPPED));
221 data = rdev_mmap_full(&rdev);
222
223 if (data == NULL)
224 return;
225
226 if (!mrc_cache_verify_tpm_hash(data, region_device_sz(&rdev)))
Furquan Shaikh2db5bac2016-11-07 23:57:48 -0800227 return;
228
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500229 /* MRC cache found */
Aaron Durbin31be2c92016-12-03 22:08:20 -0600230 arch_upd->NvsBufferPtr = data;
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500231 arch_upd->BootMode = s3wake ?
Lee Leahyb2b97a52017-03-10 08:40:18 -0800232 FSP_BOOT_ON_S3_RESUME :
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500233 FSP_BOOT_ASSUMING_NO_CONFIGURATION_CHANGES;
Aaron Durbin31be2c92016-12-03 22:08:20 -0600234 printk(BIOS_SPEW, "MRC cache found, size %zx bootmode:%d\n",
235 region_device_sz(&rdev), arch_upd->BootMode);
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500236}
237
Aaron Durbin02e504c2016-07-18 11:53:10 -0500238static enum cb_err check_region_overlap(const struct memranges *ranges,
239 const char *description,
240 uintptr_t begin, uintptr_t end)
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500241{
Aaron Durbin02e504c2016-07-18 11:53:10 -0500242 const struct range_entry *r;
243
244 memranges_each_entry(r, ranges) {
245 if (end <= range_entry_base(r))
246 continue;
247 if (begin >= range_entry_end(r))
248 continue;
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700249 printk(BIOS_CRIT, "'%s' overlaps currently running program: "
Aaron Durbin02e504c2016-07-18 11:53:10 -0500250 "[%p, %p)\n", description, (void *)begin, (void *)end);
251 return CB_ERR;
252 }
253
254 return CB_SUCCESS;
255}
256
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700257static enum cb_err fsp_fill_common_arch_params(FSPM_ARCH_UPD *arch_upd,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500258 bool s3wake, uint32_t fsp_version,
259 const struct memranges *memmap)
260{
261 uintptr_t stack_begin;
262 uintptr_t stack_end;
263
Aaron Durbinb4302502016-07-17 17:04:37 -0500264 /*
265 * FSPM_UPD passed here is populated with default values provided by
266 * the blob itself. We let FSPM use top of CAR region of the size it
267 * requests.
Aaron Durbinb4302502016-07-17 17:04:37 -0500268 */
Aaron Durbin02e504c2016-07-18 11:53:10 -0500269 stack_end = (uintptr_t)_car_region_end;
270 stack_begin = stack_end - arch_upd->StackSize;
271
272 if (check_region_overlap(memmap, "FSPM stack", stack_begin,
273 stack_end) != CB_SUCCESS)
274 return CB_ERR;
275
276 arch_upd->StackBase = (void *)stack_begin;
Aaron Durbinb4302502016-07-17 17:04:37 -0500277
278 arch_upd->BootMode = FSP_BOOT_WITH_FULL_CONFIGURATION;
279
Aaron Durbinf0ec8242016-07-18 11:24:36 -0500280 fsp_fill_mrc_cache(arch_upd, s3wake, fsp_version);
Aaron Durbin02e504c2016-07-18 11:53:10 -0500281
Aamir Bohra276c06a2017-12-26 17:54:45 +0530282 /*
283 * For S3 resume case, if valid mrc cache data is not found
284 * or RECOVERY_MRC_CACHE hash verification fails, the S3 data
285 * pointer would be null and Bootmode is set to
286 * BOOT_WITH_FULL_CONFIGURATION. This gets memory to be retrained
287 * in S3 flow. Data context including that of imdr root pointer would
288 * be lost, invoking a hard reset in romstage post memory init.
289 * Issuing hard reset here, saves fsp memory initialization and
290 * training overhead.
291 */
292 if (s3wake && !arch_upd->NvsBufferPtr)
293 hard_reset();
294
Aaron Durbin02e504c2016-07-18 11:53:10 -0500295 return CB_SUCCESS;
Aaron Durbinb4302502016-07-17 17:04:37 -0500296}
297
Stefan Reinauer6a001132017-07-13 02:20:27 +0200298__attribute__((weak))
Aaron Durbina3cecb22017-04-25 21:58:10 -0500299uint8_t fsp_memory_mainboard_version(void)
300{
301 return 0;
302}
303
Stefan Reinauer6a001132017-07-13 02:20:27 +0200304__attribute__((weak))
Aaron Durbina3cecb22017-04-25 21:58:10 -0500305uint8_t fsp_memory_soc_version(void)
306{
307 return 0;
308}
309
310/*
311 * Allow SoC and/or mainboard to bump the revision of the FSP setting
312 * number. The FSP spec uses the low 8 bits as the build number. Take over
313 * bits 3:0 for the SoC setting and bits 7:4 for the mainboard. That way
314 * a tweak in the settings will bump the version used to track the cached
315 * setting which triggers retraining when the FSP version hasn't changed, but
316 * the SoC or mainboard settings have.
317 */
318static uint32_t fsp_memory_settings_version(const struct fsp_header *hdr)
319{
320 /* Use the full FSP version by default. */
321 uint32_t ver = hdr->fsp_revision;
322
323 if (!IS_ENABLED(CONFIG_FSP_PLATFORM_MEMORY_SETTINGS_VERSIONS))
324 return ver;
325
326 ver &= ~0xff;
327 ver |= (0xf & fsp_memory_mainboard_version()) << 4;
328 ver |= (0xf & fsp_memory_soc_version()) << 0;
329
330 return ver;
331}
332
Lee Leahy9671faa2016-07-24 18:18:52 -0700333static void do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500334 const struct memranges *memmap)
Andrey Petrov465fc132016-02-25 14:16:33 -0800335{
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700336 uint32_t status;
Andrey Petrov465fc132016-02-25 14:16:33 -0800337 fsp_memory_init_fn fsp_raminit;
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700338 FSPM_UPD fspm_upd, *upd;
339 FSPM_ARCH_UPD *arch_upd;
Aaron Durbina3cecb22017-04-25 21:58:10 -0500340 uint32_t fsp_version;
Andrey Petrov465fc132016-02-25 14:16:33 -0800341
342 post_code(0x34);
343
Aaron Durbina3cecb22017-04-25 21:58:10 -0500344 fsp_version = fsp_memory_settings_version(hdr);
345
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700346 upd = (FSPM_UPD *)(hdr->cfg_region_offset + hdr->image_base);
Andrey Petrov465fc132016-02-25 14:16:33 -0800347
Lee Leahye686ee82017-03-10 08:45:30 -0800348 if (upd->FspUpdHeader.Signature != FSPM_UPD_SIGNATURE)
Lee Leahy9671faa2016-07-24 18:18:52 -0700349 die("Invalid FSPM signature!\n");
Andrey Petrov465fc132016-02-25 14:16:33 -0800350
351 /* Copy the default values from the UPD area */
352 memcpy(&fspm_upd, upd, sizeof(fspm_upd));
353
Aaron Durbin02e504c2016-07-18 11:53:10 -0500354 arch_upd = &fspm_upd.FspmArchUpd;
355
Aaron Durbin27928682016-07-15 22:32:28 -0500356 /* Reserve enough memory under TOLUD to save CBMEM header */
Aaron Durbin02e504c2016-07-18 11:53:10 -0500357 arch_upd->BootLoaderTolumSize = cbmem_overhead_size();
Aaron Durbin27928682016-07-15 22:32:28 -0500358
Aaron Durbinb4302502016-07-17 17:04:37 -0500359 /* Fill common settings on behalf of chipset. */
Aaron Durbina3cecb22017-04-25 21:58:10 -0500360 if (fsp_fill_common_arch_params(arch_upd, s3wake, fsp_version,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500361 memmap) != CB_SUCCESS)
Lee Leahy9671faa2016-07-24 18:18:52 -0700362 die("FSPM_ARCH_UPD not found!\n");
Aaron Durbinb4302502016-07-17 17:04:37 -0500363
Andrey Petrov465fc132016-02-25 14:16:33 -0800364 /* Give SoC and mainboard a chance to update the UPD */
Aaron Durbina3cecb22017-04-25 21:58:10 -0500365 platform_fsp_memory_init_params_cb(&fspm_upd, fsp_version);
Andrey Petrov465fc132016-02-25 14:16:33 -0800366
Pratik Prajapatiffc934d2016-11-18 14:36:34 -0800367 if (IS_ENABLED(CONFIG_MMA))
368 setup_mma(&fspm_upd.FspmConfig);
369
Andrey Petrov465fc132016-02-25 14:16:33 -0800370 /* Call FspMemoryInit */
371 fsp_raminit = (void *)(hdr->image_base + hdr->memory_init_entry_offset);
Lee Leahyac3b0a62016-07-27 07:40:25 -0700372 fsp_debug_before_memory_init(fsp_raminit, upd, &fspm_upd);
Andrey Petrov465fc132016-02-25 14:16:33 -0800373
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -0700374 post_code(POST_FSP_MEMORY_INIT);
Andrey Petrov465fc132016-02-25 14:16:33 -0800375 timestamp_add_now(TS_FSP_MEMORY_INIT_START);
Lee Leahyac3b0a62016-07-27 07:40:25 -0700376 status = fsp_raminit(&fspm_upd, fsp_get_hob_list_ptr());
Subrata Banik0755ab92017-07-12 15:31:06 +0530377 post_code(POST_FSP_MEMORY_EXIT);
Andrey Petrov465fc132016-02-25 14:16:33 -0800378 timestamp_add_now(TS_FSP_MEMORY_INIT_END);
379
Lee Leahyac3b0a62016-07-27 07:40:25 -0700380 fsp_debug_after_memory_init(status);
Andrey Petrov465fc132016-02-25 14:16:33 -0800381
Lee Leahy9671faa2016-07-24 18:18:52 -0700382 /* Handle any errors returned by FspMemoryInit */
Aaron Durbinf41f2aa2016-07-18 12:03:58 -0500383 fsp_handle_reset(status);
Lee Leahy9671faa2016-07-24 18:18:52 -0700384 if (status != FSP_SUCCESS) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700385 printk(BIOS_CRIT, "FspMemoryInit returned 0x%08x\n", status);
Lee Leahy9671faa2016-07-24 18:18:52 -0700386 die("FspMemoryInit returned an error!\n");
387 }
Aaron Durbinf41f2aa2016-07-18 12:03:58 -0500388
Aaron Durbina3cecb22017-04-25 21:58:10 -0500389 do_fsp_post_memory_init(s3wake, fsp_version);
Andrey Petrov465fc132016-02-25 14:16:33 -0800390}
391
Aaron Durbind04639b2016-07-17 23:23:59 -0500392/* Load the binary into the memory specified by the info header. */
393static enum cb_err load_fspm_mem(struct fsp_header *hdr,
Aaron Durbin02e504c2016-07-18 11:53:10 -0500394 const struct region_device *rdev,
395 const struct memranges *memmap)
Aaron Durbind04639b2016-07-17 23:23:59 -0500396{
Aaron Durbind04639b2016-07-17 23:23:59 -0500397 uintptr_t fspm_begin;
398 uintptr_t fspm_end;
399
400 if (fsp_validate_component(hdr, rdev) != CB_SUCCESS)
401 return CB_ERR;
402
403 fspm_begin = hdr->image_base;
404 fspm_end = fspm_begin + hdr->image_size;
405
Aaron Durbin02e504c2016-07-18 11:53:10 -0500406 if (check_region_overlap(memmap, "FSPM", fspm_begin, fspm_end) !=
407 CB_SUCCESS)
Aaron Durbind04639b2016-07-17 23:23:59 -0500408 return CB_ERR;
Aaron Durbind04639b2016-07-17 23:23:59 -0500409
410 /* Load binary into memory at provided address. */
411 if (rdev_readat(rdev, (void *)fspm_begin, 0, fspm_end - fspm_begin) < 0)
412 return CB_ERR;
413
414 return CB_SUCCESS;
415}
416
417/* Handle the case when FSPM is running XIP. */
418static enum cb_err load_fspm_xip(struct fsp_header *hdr,
419 const struct region_device *rdev)
420{
421 void *base;
422
423 if (fsp_validate_component(hdr, rdev) != CB_SUCCESS)
424 return CB_ERR;
425
426 base = rdev_mmap_full(rdev);
427 if ((uintptr_t)base != hdr->image_base) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700428 printk(BIOS_CRIT, "FSPM XIP base does not match: %p vs %p\n",
Aaron Durbind04639b2016-07-17 23:23:59 -0500429 (void *)(uintptr_t)hdr->image_base, base);
430 return CB_ERR;
431 }
432
433 /*
434 * Since the component is XIP it's already in the address space. Thus,
435 * there's no need to rdev_munmap().
436 */
437 return CB_SUCCESS;
438}
439
Lee Leahy9671faa2016-07-24 18:18:52 -0700440void fsp_memory_init(bool s3wake)
Andrey Petrov465fc132016-02-25 14:16:33 -0800441{
442 struct fsp_header hdr;
Aaron Durbind04639b2016-07-17 23:23:59 -0500443 enum cb_err status;
444 struct cbfsf file_desc;
445 struct region_device file_data;
446 const char *name = CONFIG_FSP_M_CBFS;
Aaron Durbin02e504c2016-07-18 11:53:10 -0500447 struct memranges memmap;
448 struct range_entry freeranges[2];
Andrey Petrov465fc132016-02-25 14:16:33 -0800449
Furquan Shaikh5aea5882016-07-30 18:10:05 -0700450 if (IS_ENABLED(CONFIG_ELOG_BOOT_COUNT) && !s3wake)
451 boot_count_increment();
452
Aaron Durbind04639b2016-07-17 23:23:59 -0500453 if (cbfs_boot_locate(&file_desc, name, NULL)) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700454 printk(BIOS_CRIT, "Could not locate %s in CBFS\n", name);
Lee Leahy9671faa2016-07-24 18:18:52 -0700455 die("FSPM not available!\n");
Aaron Durbind04639b2016-07-17 23:23:59 -0500456 }
457
458 cbfs_file_data(&file_data, &file_desc);
459
Aaron Durbin02e504c2016-07-18 11:53:10 -0500460 /* Build up memory map of romstage address space including CAR. */
461 memranges_init_empty(&memmap, &freeranges[0], ARRAY_SIZE(freeranges));
462 memranges_insert(&memmap, (uintptr_t)_car_region_start,
463 _car_relocatable_data_end - _car_region_start, 0);
464 memranges_insert(&memmap, (uintptr_t)_program, _program_size, 0);
465
Lee Leahy27cd96a2016-07-21 11:16:39 -0700466 if (!IS_ENABLED(CONFIG_FSP_M_XIP))
Aaron Durbin02e504c2016-07-18 11:53:10 -0500467 status = load_fspm_mem(&hdr, &file_data, &memmap);
Aaron Durbind04639b2016-07-17 23:23:59 -0500468 else
469 status = load_fspm_xip(&hdr, &file_data);
470
Lee Leahye686ee82017-03-10 08:45:30 -0800471 if (status != CB_SUCCESS)
Lee Leahy9671faa2016-07-24 18:18:52 -0700472 die("Loading FSPM failed!\n");
Aaron Durbind04639b2016-07-17 23:23:59 -0500473
474 /* Signal that FSP component has been loaded. */
475 prog_segment_loaded(hdr.image_base, hdr.image_size, SEG_FINAL);
Andrey Petrov465fc132016-02-25 14:16:33 -0800476
Lee Leahy9671faa2016-07-24 18:18:52 -0700477 do_fsp_memory_init(&hdr, s3wake, &memmap);
Andrey Petrov465fc132016-02-25 14:16:33 -0800478}