blob: 7c20b258e2baa23bd41a505c97d0dbbd04820fb6 [file] [log] [blame]
Lee Leahy0946ec32015-04-20 15:24:54 -07001/*
2 * This file is part of the coreboot project.
3 *
Lee Leahyb092c9e2016-01-01 18:09:50 -08004 * Copyright (C) 2014-2016 Intel Corporation
Frans Hendriks8f95edc2018-11-06 12:04:34 +01005 * Copyright (C) 2018 Eltan B.V.
Lee Leahy0946ec32015-04-20 15:24:54 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Lee Leahy0946ec32015-04-20 15:24:54 -070015 */
16
Aaron Durbin932e09d2016-07-13 23:09:52 -050017#include <arch/acpi.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070018#include <cbmem.h>
Patrick Rudolphf677d172018-10-01 19:17:11 +020019#include <cf9_reset.h>
Elyes HAOUAS2195f7a2019-06-21 07:20:12 +020020#include <commonlib/helpers.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070021#include <console/console.h>
Lee Leahy94b856e2015-10-15 12:07:03 -070022#include <fsp/memmap.h>
Lee Leahyb092c9e2016-01-01 18:09:50 -080023#include <fsp/romstage.h>
Aaron Durbin789f2b62015-09-09 17:05:06 -050024#include <fsp/util.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070025#include <lib.h> /* hexdump */
Lee Leahy0946ec32015-04-20 15:24:54 -070026#include <string.h>
27#include <timestamp.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020028#include <security/vboot/vboot_common.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070029
30void raminit(struct romstage_params *params)
31{
Nico Huber16895c52019-05-04 16:29:17 +020032 const bool s3wake = params->power_state->prev_sleep_state == ACPI_S3;
Lee Leahy0946ec32015-04-20 15:24:54 -070033 const EFI_GUID bootldr_tolum_guid = FSP_BOOTLOADER_TOLUM_HOB_GUID;
34 EFI_HOB_RESOURCE_DESCRIPTOR *cbmem_root;
35 FSP_INFO_HEADER *fsp_header;
36 EFI_HOB_RESOURCE_DESCRIPTOR *fsp_memory;
37 FSP_MEMORY_INIT fsp_memory_init;
38 FSP_MEMORY_INIT_PARAMS fsp_memory_init_params;
39 const EFI_GUID fsp_reserved_guid =
40 FSP_RESERVED_MEMORY_RESOURCE_HOB_GUID;
41 void *fsp_reserved_memory_area;
42 FSP_INIT_RT_COMMON_BUFFER fsp_rt_common_buffer;
43 void *hob_list_ptr;
44 FSP_SMBIOS_MEMORY_INFO *memory_info_hob;
45 const EFI_GUID memory_info_hob_guid = FSP_SMBIOS_MEMORY_INFO_GUID;
46 MEMORY_INIT_UPD memory_init_params;
47 const EFI_GUID mrc_guid = FSP_NON_VOLATILE_STORAGE_HOB_GUID;
48 u32 *mrc_hob;
49 u32 fsp_reserved_bytes;
50 MEMORY_INIT_UPD *original_params;
Lee Leahy0946ec32015-04-20 15:24:54 -070051 EFI_STATUS status;
52 VPD_DATA_REGION *vpd_ptr;
53 UPD_DATA_REGION *upd_ptr;
54 int fsp_verification_failure = 0;
Julius Wernercd49cce2019-03-05 16:53:33 -080055#if CONFIG(DISPLAY_HOBS)
Lee Leahy0946ec32015-04-20 15:24:54 -070056 unsigned long int data;
57 EFI_PEI_HOB_POINTERS hob_ptr;
58#endif
59
60 /*
61 * Find and copy the UPD region to the stack so the platform can modify
62 * the settings if needed. Modifications to the UPD buffer are done in
63 * the platform callback code. The platform callback code is also
64 * responsible for assigning the UpdDataRngPtr to this buffer if any
65 * updates are made. The default state is to leave the UpdDataRngPtr
66 * set to NULL. This indicates that the FSP code will use the UPD
67 * region in the FSP binary.
68 */
Furquan Shaikh585210a2018-10-16 11:54:37 -070069 post_code(POST_MEM_PREINIT_PREP_START);
Aaron Durbine6af4be2015-09-24 12:26:31 -050070 fsp_header = params->chipset_context;
Lee Leahy0946ec32015-04-20 15:24:54 -070071 vpd_ptr = (VPD_DATA_REGION *)(fsp_header->CfgRegionOffset +
72 fsp_header->ImageBase);
73 printk(BIOS_DEBUG, "VPD Data: 0x%p\n", vpd_ptr);
74 upd_ptr = (UPD_DATA_REGION *)(vpd_ptr->PcdUpdRegionOffset +
75 fsp_header->ImageBase);
76 printk(BIOS_DEBUG, "UPD Data: 0x%p\n", upd_ptr);
77 original_params = (void *)((u8 *)upd_ptr +
78 upd_ptr->MemoryInitUpdOffset);
79 memcpy(&memory_init_params, original_params,
80 sizeof(memory_init_params));
81
82 /* Zero fill RT Buffer data and start populating fields. */
83 memset(&fsp_rt_common_buffer, 0, sizeof(fsp_rt_common_buffer));
Nico Huber16895c52019-05-04 16:29:17 +020084 if (s3wake) {
Lee Leahy0946ec32015-04-20 15:24:54 -070085 fsp_rt_common_buffer.BootMode = BOOT_ON_S3_RESUME;
Nico Huber66318aa2019-05-04 16:59:20 +020086 } else if (params->saved_data != NULL) {
Lee Leahy0946ec32015-04-20 15:24:54 -070087 fsp_rt_common_buffer.BootMode =
88 BOOT_ASSUMING_NO_CONFIGURATION_CHANGES;
89 } else {
90 fsp_rt_common_buffer.BootMode = BOOT_WITH_FULL_CONFIGURATION;
91 }
92 fsp_rt_common_buffer.UpdDataRgnPtr = &memory_init_params;
93 fsp_rt_common_buffer.BootLoaderTolumSize = cbmem_overhead_size();
94
95 /* Get any board specific changes */
Nico Huber66318aa2019-05-04 16:59:20 +020096 fsp_memory_init_params.NvsBufferPtr = (void *)params->saved_data;
Lee Leahy0946ec32015-04-20 15:24:54 -070097 fsp_memory_init_params.RtBufferPtr = &fsp_rt_common_buffer;
98 fsp_memory_init_params.HobListPtr = &hob_list_ptr;
99
100 /* Update the UPD data */
Duncan Laurie9dcd4f02015-08-17 18:09:14 -0700101 soc_memory_init_params(params, &memory_init_params);
Lee Leahy0946ec32015-04-20 15:24:54 -0700102 mainboard_memory_init_params(params, &memory_init_params);
Pratik Prajapatib90b94d2015-09-11 13:51:38 -0700103
Julius Wernercd49cce2019-03-05 16:53:33 -0800104 if (CONFIG(MMA))
Pratik Prajapatib90b94d2015-09-11 13:51:38 -0700105 setup_mma(&memory_init_params);
106
Furquan Shaikh585210a2018-10-16 11:54:37 -0700107 post_code(POST_MEM_PREINIT_PREP_END);
Lee Leahy0946ec32015-04-20 15:24:54 -0700108
109 /* Display the UPD data */
Julius Wernercd49cce2019-03-05 16:53:33 -0800110 if (CONFIG(DISPLAY_UPD_DATA))
Lee Leahy0946ec32015-04-20 15:24:54 -0700111 soc_display_memory_init_params(original_params,
112 &memory_init_params);
113
114 /* Call FspMemoryInit to initialize RAM */
115 fsp_memory_init = (FSP_MEMORY_INIT)(fsp_header->ImageBase
116 + fsp_header->FspMemoryInitEntryOffset);
117 printk(BIOS_DEBUG, "Calling FspMemoryInit: 0x%p\n", fsp_memory_init);
118 printk(BIOS_SPEW, " 0x%p: NvsBufferPtr\n",
119 fsp_memory_init_params.NvsBufferPtr);
120 printk(BIOS_SPEW, " 0x%p: RtBufferPtr\n",
121 fsp_memory_init_params.RtBufferPtr);
122 printk(BIOS_SPEW, " 0x%p: HobListPtr\n",
123 fsp_memory_init_params.HobListPtr);
124
125 timestamp_add_now(TS_FSP_MEMORY_INIT_START);
Duncan Lauriefb509832015-11-22 14:53:57 -0800126 post_code(POST_FSP_MEMORY_INIT);
Lee Leahy0946ec32015-04-20 15:24:54 -0700127 status = fsp_memory_init(&fsp_memory_init_params);
Frans Hendriks1385b7d2019-04-05 13:42:14 +0200128 mainboard_after_memory_init();
Lee Leahy0946ec32015-04-20 15:24:54 -0700129 post_code(0x37);
130 timestamp_add_now(TS_FSP_MEMORY_INIT_END);
131
132 printk(BIOS_DEBUG, "FspMemoryInit returned 0x%08x\n", status);
133 if (status != EFI_SUCCESS)
Keith Short24302632019-05-16 14:08:31 -0600134 die_with_post_code(POST_RAM_FAILURE,
135 "ERROR - FspMemoryInit failed to initialize memory!\n");
Lee Leahy0946ec32015-04-20 15:24:54 -0700136
137 /* Locate the FSP reserved memory area */
138 fsp_reserved_bytes = 0;
139 fsp_memory = get_next_resource_hob(&fsp_reserved_guid, hob_list_ptr);
140 if (fsp_memory == NULL) {
141 fsp_verification_failure = 1;
142 printk(BIOS_DEBUG,
143 "7.2: FSP_RESERVED_MEMORY_RESOURCE_HOB missing!\n");
144 } else {
145 fsp_reserved_bytes = fsp_memory->ResourceLength;
146 printk(BIOS_DEBUG, "Reserving 0x%016lx bytes for FSP\n",
147 (unsigned long int)fsp_reserved_bytes);
148 }
149
150 /* Display SMM area */
Julius Wernercd49cce2019-03-05 16:53:33 -0800151#if CONFIG(HAVE_SMI_HANDLER)
Lee Leahy0946ec32015-04-20 15:24:54 -0700152 char *smm_base;
153 size_t smm_size;
154
155 smm_region((void **)&smm_base, &smm_size);
156 printk(BIOS_DEBUG, "0x%08x: smm_size\n", (unsigned int)smm_size);
157 printk(BIOS_DEBUG, "0x%p: smm_base\n", smm_base);
158#endif
159
160 /* Migrate CAR data */
Lee Leahy0946ec32015-04-20 15:24:54 -0700161 printk(BIOS_DEBUG, "0x%p: cbmem_top\n", cbmem_top());
Nico Huber16895c52019-05-04 16:29:17 +0200162 if (!s3wake) {
Lee Leahy0946ec32015-04-20 15:24:54 -0700163 cbmem_initialize_empty_id_size(CBMEM_ID_FSP_RESERVED_MEMORY,
164 fsp_reserved_bytes);
165 } else if (cbmem_initialize_id_size(CBMEM_ID_FSP_RESERVED_MEMORY,
166 fsp_reserved_bytes)) {
Julius Wernercd49cce2019-03-05 16:53:33 -0800167#if CONFIG(HAVE_ACPI_RESUME)
Lee Leahy0946ec32015-04-20 15:24:54 -0700168 printk(BIOS_DEBUG, "Failed to recover CBMEM in S3 resume.\n");
169 /* Failed S3 resume, reset to come up cleanly */
Patrick Rudolphf677d172018-10-01 19:17:11 +0200170 /* FIXME: A "system" reset is likely enough: */
171 full_reset();
Lee Leahy0946ec32015-04-20 15:24:54 -0700172#endif
173 }
174
175 /* Save the FSP runtime parameters. */
Aaron Durbine1ecfc92015-09-16 15:18:04 -0500176 fsp_set_runtime(fsp_header, hob_list_ptr);
Lee Leahy0946ec32015-04-20 15:24:54 -0700177
178 /* Lookup the FSP_BOOTLOADER_TOLUM_HOB */
179 cbmem_root = get_next_resource_hob(&bootldr_tolum_guid, hob_list_ptr);
180 if (cbmem_root == NULL) {
181 fsp_verification_failure = 1;
182 printk(BIOS_ERR, "7.4: FSP_BOOTLOADER_TOLUM_HOB missing!\n");
183 printk(BIOS_ERR, "BootLoaderTolumSize: 0x%08x bytes\n",
184 fsp_rt_common_buffer.BootLoaderTolumSize);
185 }
186
187 /* Locate the FSP_SMBIOS_MEMORY_INFO HOB */
188 memory_info_hob = get_next_guid_hob(&memory_info_hob_guid,
189 hob_list_ptr);
Lee Leahy216712a2017-03-17 11:23:32 -0700190 if (memory_info_hob == NULL) {
Lee Leahy0946ec32015-04-20 15:24:54 -0700191 printk(BIOS_ERR, "FSP_SMBIOS_MEMORY_INFO HOB missing!\n");
192 fsp_verification_failure = 1;
193 } else {
194 printk(BIOS_DEBUG,
195 "FSP_SMBIOS_MEMORY_INFO HOB: 0x%p\n",
196 memory_info_hob);
197 }
198
Julius Wernercd49cce2019-03-05 16:53:33 -0800199#if CONFIG(DISPLAY_HOBS)
Lee Leahy0946ec32015-04-20 15:24:54 -0700200 /*
201 * Verify that FSP is generating the required HOBs:
202 * 7.1: FSP_BOOTLOADER_TEMP_MEMORY_HOB only produced for FSP 1.0
203 * 7.2: FSP_RESERVED_MEMORY_RESOURCE_HOB verified above
Frans Hendriks8f95edc2018-11-06 12:04:34 +0100204 * 7.3: FSP_NON_VOLATILE_STORAGE_HOB only produced when
205 * new NVS data is generated, verified below
Lee Leahy0946ec32015-04-20 15:24:54 -0700206 * 7.4: FSP_BOOTLOADER_TOLUM_HOB verified above
207 * 7.5: EFI_PEI_GRAPHICS_INFO_HOB produced by SiliconInit
208 * FSP_SMBIOS_MEMORY_INFO HOB verified above
209 */
Lee Leahy216712a2017-03-17 11:23:32 -0700210 if (cbmem_root != NULL) {
Lee Leahy0946ec32015-04-20 15:24:54 -0700211 printk(BIOS_DEBUG,
212 "7.4: FSP_BOOTLOADER_TOLUM_HOB: 0x%p\n",
213 cbmem_root);
214 data = cbmem_root->PhysicalStart;
215 printk(BIOS_DEBUG, " 0x%016lx: PhysicalStart\n", data);
216 data = cbmem_root->ResourceLength;
217 printk(BIOS_DEBUG, " 0x%016lx: ResourceLength\n", data);
218 }
219 hob_ptr.Raw = get_next_guid_hob(&mrc_guid, hob_list_ptr);
Lee Leahy216712a2017-03-17 11:23:32 -0700220 if (hob_ptr.Raw == NULL) {
Nico Huber66318aa2019-05-04 16:59:20 +0200221 if (params->saved_data == NULL) {
Frans Hendriks8f95edc2018-11-06 12:04:34 +0100222 printk(BIOS_ERR, "7.3: FSP_NON_VOLATILE_STORAGE_HOB missing!\n");
223 fsp_verification_failure = 1;
224 }
Lee Leahy0946ec32015-04-20 15:24:54 -0700225 } else {
226 printk(BIOS_DEBUG,
227 "7.3: FSP_NON_VOLATILE_STORAGE_HOB: 0x%p\n",
228 hob_ptr.Raw);
229 }
230 if (fsp_memory != NULL) {
231 printk(BIOS_DEBUG,
232 "7.2: FSP_RESERVED_MEMORY_RESOURCE_HOB: 0x%p\n",
233 fsp_memory);
234 data = fsp_memory->PhysicalStart;
235 printk(BIOS_DEBUG, " 0x%016lx: PhysicalStart\n", data);
236 data = fsp_memory->ResourceLength;
237 printk(BIOS_DEBUG, " 0x%016lx: ResourceLength\n", data);
238 }
239
240 /* Verify all the HOBs are present */
241 if (fsp_verification_failure)
242 printk(BIOS_DEBUG,
243 "ERROR - Missing one or more required FSP HOBs!\n");
244
245 /* Display the HOBs */
Keith Shortbb41aba2019-05-16 14:07:43 -0600246 if (hob_list_ptr != NULL)
247 print_hob_type_structure(0, hob_list_ptr);
248 else
249 printk(BIOS_ERR, "ERROR - HOB pointer is NULL!\n");
Lee Leahy0946ec32015-04-20 15:24:54 -0700250#endif
251
252 /* Get the address of the CBMEM region for the FSP reserved memory */
253 fsp_reserved_memory_area = cbmem_find(CBMEM_ID_FSP_RESERVED_MEMORY);
254 printk(BIOS_DEBUG, "0x%p: fsp_reserved_memory_area\n",
255 fsp_reserved_memory_area);
256
257 /* Verify the order of CBMEM root and FSP memory */
258 if ((fsp_memory != NULL) && (cbmem_root != NULL) &&
259 (cbmem_root->PhysicalStart <= fsp_memory->PhysicalStart)) {
260 fsp_verification_failure = 1;
261 printk(BIOS_DEBUG,
262 "ERROR - FSP reserved memory above CBMEM root!\n");
263 }
264
265 /* Verify that the FSP memory was properly reserved */
266 if ((fsp_memory != NULL) && ((fsp_reserved_memory_area == NULL) ||
267 (fsp_memory->PhysicalStart !=
268 (unsigned int)fsp_reserved_memory_area))) {
269 fsp_verification_failure = 1;
270 printk(BIOS_DEBUG, "ERROR - Reserving FSP memory area!\n");
Julius Wernercd49cce2019-03-05 16:53:33 -0800271#if CONFIG(HAVE_SMI_HANDLER)
Lee Leahy0946ec32015-04-20 15:24:54 -0700272 if (cbmem_root != NULL) {
273 size_t delta_bytes = (unsigned int)smm_base
274 - cbmem_root->PhysicalStart
275 - cbmem_root->ResourceLength;
276 printk(BIOS_DEBUG,
Lee Leahy0946ec32015-04-20 15:24:54 -0700277 "0x%08x: Chipset reserved bytes reported by FSP\n",
278 (unsigned int)delta_bytes);
Keith Shortbb41aba2019-05-16 14:07:43 -0600279 die_with_post_code(POST_INVALID_VENDOR_BINARY,
280 "Please verify the chipset reserved size\n");
Lee Leahy0946ec32015-04-20 15:24:54 -0700281 }
282#endif
283 }
284
285 /* Verify the FSP 1.1 HOB interface */
286 if (fsp_verification_failure)
Keith Shortbb41aba2019-05-16 14:07:43 -0600287 die_with_post_code(POST_INVALID_VENDOR_BINARY,
288 "ERROR - coreboot's requirements not met by FSP binary!\n");
Lee Leahy0946ec32015-04-20 15:24:54 -0700289
290 /* Display the memory configuration */
291 report_memory_config();
292
293 /* Locate the memory configuration data to speed up the next reboot */
294 mrc_hob = get_next_guid_hob(&mrc_guid, hob_list_ptr);
295 if (mrc_hob == NULL)
296 printk(BIOS_DEBUG,
297 "Memory Configuration Data Hob not present\n");
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700298 else if (!vboot_recovery_mode_enabled()) {
haridhar07e9e6f2015-12-18 10:50:46 +0530299 /* Do not save MRC data in recovery path */
Nico Huber66318aa2019-05-04 16:59:20 +0200300 params->data_to_save = GET_GUID_HOB_DATA(mrc_hob);
Felix Held51ff9e82019-06-20 14:49:16 +0200301 params->data_to_save_size = ALIGN_UP(
Lee Leahy0946ec32015-04-20 15:24:54 -0700302 ((u32)GET_HOB_LENGTH(mrc_hob)), 16);
303 }
304}
305
306/* Initialize the UPD parameters for MemoryInit */
Aaron Durbin64031672018-04-21 14:45:32 -0600307__weak void mainboard_memory_init_params(
Lee Leahy0946ec32015-04-20 15:24:54 -0700308 struct romstage_params *params,
309 MEMORY_INIT_UPD *upd_ptr)
310{
311 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
312}
313
314/* Display the UPD parameters for MemoryInit */
Aaron Durbin64031672018-04-21 14:45:32 -0600315__weak void soc_display_memory_init_params(
Lee Leahy0946ec32015-04-20 15:24:54 -0700316 const MEMORY_INIT_UPD *old, MEMORY_INIT_UPD *new)
317{
318 printk(BIOS_SPEW, "UPD values for MemoryInit:\n");
319 hexdump32(BIOS_SPEW, new, sizeof(*new));
320}
321
322/* Initialize the UPD parameters for MemoryInit */
Aaron Durbin64031672018-04-21 14:45:32 -0600323__weak void soc_memory_init_params(
Duncan Laurie9dcd4f02015-08-17 18:09:14 -0700324 struct romstage_params *params,
325 MEMORY_INIT_UPD *upd)
Lee Leahy0946ec32015-04-20 15:24:54 -0700326{
327 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
328}
Frans Hendriks1385b7d2019-04-05 13:42:14 +0200329
330/* Initialize the SoC after MemoryInit */
331__weak void mainboard_after_memory_init(void)
332{
333 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
334}