blob: bca9f71f1964fcb69fd3503257a7a99f8c9a64e9 [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
Lee Leahy0946ec32015-04-20 15:24:54 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Lee Leahy0946ec32015-04-20 15:24:54 -070014 */
15
Aaron Durbin932e09d2016-07-13 23:09:52 -050016#include <arch/acpi.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070017#include <cbmem.h>
18#include <console/console.h>
Lee Leahy94b856e2015-10-15 12:07:03 -070019#include <fsp/memmap.h>
Lee Leahyb092c9e2016-01-01 18:09:50 -080020#include <fsp/romstage.h>
Aaron Durbin789f2b62015-09-09 17:05:06 -050021#include <fsp/util.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070022#include <lib.h> /* hexdump */
23#include <reset.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070024#include <string.h>
25#include <timestamp.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020026#include <security/vboot/vboot_common.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070027
28void raminit(struct romstage_params *params)
29{
30 const EFI_GUID bootldr_tolum_guid = FSP_BOOTLOADER_TOLUM_HOB_GUID;
31 EFI_HOB_RESOURCE_DESCRIPTOR *cbmem_root;
32 FSP_INFO_HEADER *fsp_header;
33 EFI_HOB_RESOURCE_DESCRIPTOR *fsp_memory;
34 FSP_MEMORY_INIT fsp_memory_init;
35 FSP_MEMORY_INIT_PARAMS fsp_memory_init_params;
36 const EFI_GUID fsp_reserved_guid =
37 FSP_RESERVED_MEMORY_RESOURCE_HOB_GUID;
38 void *fsp_reserved_memory_area;
39 FSP_INIT_RT_COMMON_BUFFER fsp_rt_common_buffer;
40 void *hob_list_ptr;
41 FSP_SMBIOS_MEMORY_INFO *memory_info_hob;
42 const EFI_GUID memory_info_hob_guid = FSP_SMBIOS_MEMORY_INFO_GUID;
43 MEMORY_INIT_UPD memory_init_params;
44 const EFI_GUID mrc_guid = FSP_NON_VOLATILE_STORAGE_HOB_GUID;
45 u32 *mrc_hob;
46 u32 fsp_reserved_bytes;
47 MEMORY_INIT_UPD *original_params;
48 struct pei_data *pei_ptr;
49 EFI_STATUS status;
50 VPD_DATA_REGION *vpd_ptr;
51 UPD_DATA_REGION *upd_ptr;
52 int fsp_verification_failure = 0;
53#if IS_ENABLED(CONFIG_DISPLAY_HOBS)
54 unsigned long int data;
55 EFI_PEI_HOB_POINTERS hob_ptr;
56#endif
57
58 /*
59 * Find and copy the UPD region to the stack so the platform can modify
60 * the settings if needed. Modifications to the UPD buffer are done in
61 * the platform callback code. The platform callback code is also
62 * responsible for assigning the UpdDataRngPtr to this buffer if any
63 * updates are made. The default state is to leave the UpdDataRngPtr
64 * set to NULL. This indicates that the FSP code will use the UPD
65 * region in the FSP binary.
66 */
Furquan Shaikh585210a2018-10-16 11:54:37 -070067 post_code(POST_MEM_PREINIT_PREP_START);
Aaron Durbine6af4be2015-09-24 12:26:31 -050068 fsp_header = params->chipset_context;
Lee Leahy0946ec32015-04-20 15:24:54 -070069 vpd_ptr = (VPD_DATA_REGION *)(fsp_header->CfgRegionOffset +
70 fsp_header->ImageBase);
71 printk(BIOS_DEBUG, "VPD Data: 0x%p\n", vpd_ptr);
72 upd_ptr = (UPD_DATA_REGION *)(vpd_ptr->PcdUpdRegionOffset +
73 fsp_header->ImageBase);
74 printk(BIOS_DEBUG, "UPD Data: 0x%p\n", upd_ptr);
75 original_params = (void *)((u8 *)upd_ptr +
76 upd_ptr->MemoryInitUpdOffset);
77 memcpy(&memory_init_params, original_params,
78 sizeof(memory_init_params));
79
80 /* Zero fill RT Buffer data and start populating fields. */
81 memset(&fsp_rt_common_buffer, 0, sizeof(fsp_rt_common_buffer));
82 pei_ptr = params->pei_data;
Aaron Durbin932e09d2016-07-13 23:09:52 -050083 if (pei_ptr->boot_mode == ACPI_S3) {
Lee Leahy0946ec32015-04-20 15:24:54 -070084 fsp_rt_common_buffer.BootMode = BOOT_ON_S3_RESUME;
85 } else if (pei_ptr->saved_data != NULL) {
86 fsp_rt_common_buffer.BootMode =
87 BOOT_ASSUMING_NO_CONFIGURATION_CHANGES;
88 } else {
89 fsp_rt_common_buffer.BootMode = BOOT_WITH_FULL_CONFIGURATION;
90 }
91 fsp_rt_common_buffer.UpdDataRgnPtr = &memory_init_params;
92 fsp_rt_common_buffer.BootLoaderTolumSize = cbmem_overhead_size();
93
94 /* Get any board specific changes */
95 fsp_memory_init_params.NvsBufferPtr = (void *)pei_ptr->saved_data;
96 fsp_memory_init_params.RtBufferPtr = &fsp_rt_common_buffer;
97 fsp_memory_init_params.HobListPtr = &hob_list_ptr;
98
99 /* Update the UPD data */
Duncan Laurie9dcd4f02015-08-17 18:09:14 -0700100 soc_memory_init_params(params, &memory_init_params);
Lee Leahy0946ec32015-04-20 15:24:54 -0700101 mainboard_memory_init_params(params, &memory_init_params);
Pratik Prajapatib90b94d2015-09-11 13:51:38 -0700102
103 if (IS_ENABLED(CONFIG_MMA))
104 setup_mma(&memory_init_params);
105
Furquan Shaikh585210a2018-10-16 11:54:37 -0700106 post_code(POST_MEM_PREINIT_PREP_END);
Lee Leahy0946ec32015-04-20 15:24:54 -0700107
108 /* Display the UPD data */
109 if (IS_ENABLED(CONFIG_DISPLAY_UPD_DATA))
110 soc_display_memory_init_params(original_params,
111 &memory_init_params);
112
113 /* Call FspMemoryInit to initialize RAM */
114 fsp_memory_init = (FSP_MEMORY_INIT)(fsp_header->ImageBase
115 + fsp_header->FspMemoryInitEntryOffset);
116 printk(BIOS_DEBUG, "Calling FspMemoryInit: 0x%p\n", fsp_memory_init);
117 printk(BIOS_SPEW, " 0x%p: NvsBufferPtr\n",
118 fsp_memory_init_params.NvsBufferPtr);
119 printk(BIOS_SPEW, " 0x%p: RtBufferPtr\n",
120 fsp_memory_init_params.RtBufferPtr);
121 printk(BIOS_SPEW, " 0x%p: HobListPtr\n",
122 fsp_memory_init_params.HobListPtr);
123
124 timestamp_add_now(TS_FSP_MEMORY_INIT_START);
Duncan Lauriefb509832015-11-22 14:53:57 -0800125 post_code(POST_FSP_MEMORY_INIT);
Lee Leahy0946ec32015-04-20 15:24:54 -0700126 status = fsp_memory_init(&fsp_memory_init_params);
127 post_code(0x37);
128 timestamp_add_now(TS_FSP_MEMORY_INIT_END);
129
130 printk(BIOS_DEBUG, "FspMemoryInit returned 0x%08x\n", status);
131 if (status != EFI_SUCCESS)
132 die("ERROR - FspMemoryInit failed to initialize memory!\n");
133
134 /* Locate the FSP reserved memory area */
135 fsp_reserved_bytes = 0;
136 fsp_memory = get_next_resource_hob(&fsp_reserved_guid, hob_list_ptr);
137 if (fsp_memory == NULL) {
138 fsp_verification_failure = 1;
139 printk(BIOS_DEBUG,
140 "7.2: FSP_RESERVED_MEMORY_RESOURCE_HOB missing!\n");
141 } else {
142 fsp_reserved_bytes = fsp_memory->ResourceLength;
143 printk(BIOS_DEBUG, "Reserving 0x%016lx bytes for FSP\n",
144 (unsigned long int)fsp_reserved_bytes);
145 }
146
147 /* Display SMM area */
148#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
149 char *smm_base;
150 size_t smm_size;
151
152 smm_region((void **)&smm_base, &smm_size);
153 printk(BIOS_DEBUG, "0x%08x: smm_size\n", (unsigned int)smm_size);
154 printk(BIOS_DEBUG, "0x%p: smm_base\n", smm_base);
155#endif
156
157 /* Migrate CAR data */
Lee Leahy0946ec32015-04-20 15:24:54 -0700158 printk(BIOS_DEBUG, "0x%p: cbmem_top\n", cbmem_top());
Aaron Durbin932e09d2016-07-13 23:09:52 -0500159 if (pei_ptr->boot_mode != ACPI_S3) {
Lee Leahy0946ec32015-04-20 15:24:54 -0700160 cbmem_initialize_empty_id_size(CBMEM_ID_FSP_RESERVED_MEMORY,
161 fsp_reserved_bytes);
162 } else if (cbmem_initialize_id_size(CBMEM_ID_FSP_RESERVED_MEMORY,
163 fsp_reserved_bytes)) {
164#if IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)
165 printk(BIOS_DEBUG, "Failed to recover CBMEM in S3 resume.\n");
166 /* Failed S3 resume, reset to come up cleanly */
167 hard_reset();
168#endif
169 }
170
171 /* Save the FSP runtime parameters. */
Aaron Durbine1ecfc92015-09-16 15:18:04 -0500172 fsp_set_runtime(fsp_header, hob_list_ptr);
Lee Leahy0946ec32015-04-20 15:24:54 -0700173
174 /* Lookup the FSP_BOOTLOADER_TOLUM_HOB */
175 cbmem_root = get_next_resource_hob(&bootldr_tolum_guid, hob_list_ptr);
176 if (cbmem_root == NULL) {
177 fsp_verification_failure = 1;
178 printk(BIOS_ERR, "7.4: FSP_BOOTLOADER_TOLUM_HOB missing!\n");
179 printk(BIOS_ERR, "BootLoaderTolumSize: 0x%08x bytes\n",
180 fsp_rt_common_buffer.BootLoaderTolumSize);
181 }
182
183 /* Locate the FSP_SMBIOS_MEMORY_INFO HOB */
184 memory_info_hob = get_next_guid_hob(&memory_info_hob_guid,
185 hob_list_ptr);
Lee Leahy216712a2017-03-17 11:23:32 -0700186 if (memory_info_hob == NULL) {
Lee Leahy0946ec32015-04-20 15:24:54 -0700187 printk(BIOS_ERR, "FSP_SMBIOS_MEMORY_INFO HOB missing!\n");
188 fsp_verification_failure = 1;
189 } else {
190 printk(BIOS_DEBUG,
191 "FSP_SMBIOS_MEMORY_INFO HOB: 0x%p\n",
192 memory_info_hob);
193 }
194
195#if IS_ENABLED(CONFIG_DISPLAY_HOBS)
196 if (hob_list_ptr == NULL)
197 die("ERROR - HOB pointer is NULL!\n");
198
199 /*
200 * Verify that FSP is generating the required HOBs:
201 * 7.1: FSP_BOOTLOADER_TEMP_MEMORY_HOB only produced for FSP 1.0
202 * 7.2: FSP_RESERVED_MEMORY_RESOURCE_HOB verified above
203 * 7.3: FSP_NON_VOLATILE_STORAGE_HOB verified below
204 * 7.4: FSP_BOOTLOADER_TOLUM_HOB verified above
205 * 7.5: EFI_PEI_GRAPHICS_INFO_HOB produced by SiliconInit
206 * FSP_SMBIOS_MEMORY_INFO HOB verified above
207 */
Lee Leahy216712a2017-03-17 11:23:32 -0700208 if (cbmem_root != NULL) {
Lee Leahy0946ec32015-04-20 15:24:54 -0700209 printk(BIOS_DEBUG,
210 "7.4: FSP_BOOTLOADER_TOLUM_HOB: 0x%p\n",
211 cbmem_root);
212 data = cbmem_root->PhysicalStart;
213 printk(BIOS_DEBUG, " 0x%016lx: PhysicalStart\n", data);
214 data = cbmem_root->ResourceLength;
215 printk(BIOS_DEBUG, " 0x%016lx: ResourceLength\n", data);
216 }
217 hob_ptr.Raw = get_next_guid_hob(&mrc_guid, hob_list_ptr);
Lee Leahy216712a2017-03-17 11:23:32 -0700218 if (hob_ptr.Raw == NULL) {
Lee Leahy0946ec32015-04-20 15:24:54 -0700219 printk(BIOS_ERR, "7.3: FSP_NON_VOLATILE_STORAGE_HOB missing!\n");
220 fsp_verification_failure =
221 (params->pei_data->saved_data == NULL) ? 1 : 0;
222 } else {
223 printk(BIOS_DEBUG,
224 "7.3: FSP_NON_VOLATILE_STORAGE_HOB: 0x%p\n",
225 hob_ptr.Raw);
226 }
227 if (fsp_memory != NULL) {
228 printk(BIOS_DEBUG,
229 "7.2: FSP_RESERVED_MEMORY_RESOURCE_HOB: 0x%p\n",
230 fsp_memory);
231 data = fsp_memory->PhysicalStart;
232 printk(BIOS_DEBUG, " 0x%016lx: PhysicalStart\n", data);
233 data = fsp_memory->ResourceLength;
234 printk(BIOS_DEBUG, " 0x%016lx: ResourceLength\n", data);
235 }
236
237 /* Verify all the HOBs are present */
238 if (fsp_verification_failure)
239 printk(BIOS_DEBUG,
240 "ERROR - Missing one or more required FSP HOBs!\n");
241
242 /* Display the HOBs */
243 print_hob_type_structure(0, hob_list_ptr);
244#endif
245
246 /* Get the address of the CBMEM region for the FSP reserved memory */
247 fsp_reserved_memory_area = cbmem_find(CBMEM_ID_FSP_RESERVED_MEMORY);
248 printk(BIOS_DEBUG, "0x%p: fsp_reserved_memory_area\n",
249 fsp_reserved_memory_area);
250
251 /* Verify the order of CBMEM root and FSP memory */
252 if ((fsp_memory != NULL) && (cbmem_root != NULL) &&
253 (cbmem_root->PhysicalStart <= fsp_memory->PhysicalStart)) {
254 fsp_verification_failure = 1;
255 printk(BIOS_DEBUG,
256 "ERROR - FSP reserved memory above CBMEM root!\n");
257 }
258
259 /* Verify that the FSP memory was properly reserved */
260 if ((fsp_memory != NULL) && ((fsp_reserved_memory_area == NULL) ||
261 (fsp_memory->PhysicalStart !=
262 (unsigned int)fsp_reserved_memory_area))) {
263 fsp_verification_failure = 1;
264 printk(BIOS_DEBUG, "ERROR - Reserving FSP memory area!\n");
265#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
266 if (cbmem_root != NULL) {
267 size_t delta_bytes = (unsigned int)smm_base
268 - cbmem_root->PhysicalStart
269 - cbmem_root->ResourceLength;
270 printk(BIOS_DEBUG,
Lee Leahy0946ec32015-04-20 15:24:54 -0700271 "0x%08x: Chipset reserved bytes reported by FSP\n",
272 (unsigned int)delta_bytes);
273 die("Please verify the chipset reserved size\n");
274 }
275#endif
276 }
277
278 /* Verify the FSP 1.1 HOB interface */
279 if (fsp_verification_failure)
Martin Rothe18e6422017-06-03 20:03:18 -0600280 die("ERROR - coreboot's requirements not met by FSP binary!\n");
Lee Leahy0946ec32015-04-20 15:24:54 -0700281
282 /* Display the memory configuration */
283 report_memory_config();
284
285 /* Locate the memory configuration data to speed up the next reboot */
286 mrc_hob = get_next_guid_hob(&mrc_guid, hob_list_ptr);
287 if (mrc_hob == NULL)
288 printk(BIOS_DEBUG,
289 "Memory Configuration Data Hob not present\n");
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700290 else if (!vboot_recovery_mode_enabled()) {
haridhar07e9e6f2015-12-18 10:50:46 +0530291 /* Do not save MRC data in recovery path */
Lee Leahy0946ec32015-04-20 15:24:54 -0700292 pei_ptr->data_to_save = GET_GUID_HOB_DATA(mrc_hob);
293 pei_ptr->data_to_save_size = ALIGN(
294 ((u32)GET_HOB_LENGTH(mrc_hob)), 16);
295 }
296}
297
298/* Initialize the UPD parameters for MemoryInit */
Aaron Durbin64031672018-04-21 14:45:32 -0600299__weak void mainboard_memory_init_params(
Lee Leahy0946ec32015-04-20 15:24:54 -0700300 struct romstage_params *params,
301 MEMORY_INIT_UPD *upd_ptr)
302{
303 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
304}
305
306/* Display the UPD parameters for MemoryInit */
Aaron Durbin64031672018-04-21 14:45:32 -0600307__weak void soc_display_memory_init_params(
Lee Leahy0946ec32015-04-20 15:24:54 -0700308 const MEMORY_INIT_UPD *old, MEMORY_INIT_UPD *new)
309{
310 printk(BIOS_SPEW, "UPD values for MemoryInit:\n");
311 hexdump32(BIOS_SPEW, new, sizeof(*new));
312}
313
314/* Initialize the UPD parameters for MemoryInit */
Aaron Durbin64031672018-04-21 14:45:32 -0600315__weak void soc_memory_init_params(
Duncan Laurie9dcd4f02015-08-17 18:09:14 -0700316 struct romstage_params *params,
317 MEMORY_INIT_UPD *upd)
Lee Leahy0946ec32015-04-20 15:24:54 -0700318{
319 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
320}