blob: 67bea32eff293740930151dccfed48e7f5660460 [file] [log] [blame]
Lee Leahy0946ec32015-04-20 15:24:54 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Google Inc.
Lee Leahya6089692016-01-05 16:34:58 -08005 * Copyright (C) 2015-2016 Intel Corporation.
Frans Hendriks44d2c852018-12-03 10:40:06 +01006 * Copyright (C) 2018 Eltan B.V.
Lee Leahy0946ec32015-04-20 15:24:54 -07007 *
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; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Lee Leahy0946ec32015-04-20 15:24:54 -070016 */
17
18#include <stddef.h>
Aaron Durbin932e09d2016-07-13 23:09:52 -050019#include <arch/acpi.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070020#include <arch/cbfs.h>
Aaron Durbin31be2c92016-12-03 22:08:20 -060021#include <assert.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070022#include <console/console.h>
23#include <cbmem.h>
Patrick Rudolphf677d172018-10-01 19:17:11 +020024#include <cf9_reset.h>
robbie zhang13a2e942016-02-10 11:40:11 -080025#include <cpu/intel/microcode.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070026#include <cpu/x86/mtrr.h>
27#include <ec/google/chromeec/ec.h>
28#include <ec/google/chromeec/ec_commands.h>
29#include <elog.h>
Lee Leahyb092c9e2016-01-01 18:09:50 -080030#include <fsp/romstage.h>
Aaron Durbindecd0622017-12-15 12:26:40 -070031#include <mrc_cache.h>
Kyösti Mälkki65e8f642016-06-27 11:27:56 +030032#include <program_loading.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070033#include <romstage_handoff.h>
Lee Leahy0be6d932015-06-26 11:15:42 -070034#include <smbios.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070035#include <stage_cache.h>
Aaron Durbinafe8aee2016-11-29 21:37:42 -060036#include <string.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070037#include <timestamp.h>
Lee Leahy0946ec32015-04-20 15:24:54 -070038#include <vendorcode/google/chromeos/chromeos.h>
39
Arthur Heymans73ac1212019-05-23 14:41:19 +020040static void raminit_common(struct romstage_params *params)
Lee Leahy0946ec32015-04-20 15:24:54 -070041{
Subrata Banik0beac812017-07-12 15:13:53 +053042 bool s3wake;
Aaron Durbin31be2c92016-12-03 22:08:20 -060043 struct region_device rdev;
Lee Leahy0946ec32015-04-20 15:24:54 -070044
45 post_code(0x32);
46
47 timestamp_add_now(TS_BEFORE_INITRAM);
48
Subrata Banik0beac812017-07-12 15:13:53 +053049 s3wake = params->power_state->prev_sleep_state == ACPI_S3;
Lee Leahy0946ec32015-04-20 15:24:54 -070050
Kyösti Mälkki7f50afb2019-09-11 17:12:26 +030051 elog_boot_notify(s3wake);
Lee Leahy0946ec32015-04-20 15:24:54 -070052
53 /* Perform remaining SOC initialization */
54 soc_pre_ram_init(params);
55 post_code(0x33);
56
57 /* Check recovery and MRC cache */
Nico Huber66318aa2019-05-04 16:59:20 +020058 params->saved_data_size = 0;
59 params->saved_data = NULL;
60 if (!params->disable_saved_data) {
Furquan Shaikh0325dc62016-07-25 13:02:36 -070061 if (vboot_recovery_mode_enabled()) {
Lee Leahy0946ec32015-04-20 15:24:54 -070062 /* Recovery mode does not use MRC cache */
63 printk(BIOS_DEBUG,
64 "Recovery mode: not using MRC cache.\n");
Julius Wernercd49cce2019-03-05 16:53:33 -080065 } else if (CONFIG(CACHE_MRC_SETTINGS)
Aaron Durbin31be2c92016-12-03 22:08:20 -060066 && (!mrc_cache_get_current(MRC_TRAINING_DATA,
67 params->fsp_version,
68 &rdev))) {
Lee Leahy0946ec32015-04-20 15:24:54 -070069 /* MRC cache found */
Nico Huber66318aa2019-05-04 16:59:20 +020070 params->saved_data_size = region_device_sz(&rdev);
71 params->saved_data = rdev_mmap_full(&rdev);
Elyes HAOUAS18958382018-08-07 12:23:16 +020072 /* Assume boot device is memory mapped. */
Julius Wernercd49cce2019-03-05 16:53:33 -080073 assert(CONFIG(BOOT_DEVICE_MEMORY_MAPPED));
Nico Huber16895c52019-05-04 16:29:17 +020074 } else if (s3wake) {
Lee Leahy0946ec32015-04-20 15:24:54 -070075 /* Waking from S3 and no cache. */
76 printk(BIOS_DEBUG,
77 "No MRC cache found in S3 resume path.\n");
78 post_code(POST_RESUME_FAILURE);
Patrick Rudolphf677d172018-10-01 19:17:11 +020079 /* FIXME: A "system" reset is likely enough: */
80 full_reset();
Lee Leahy0946ec32015-04-20 15:24:54 -070081 } else {
82 printk(BIOS_DEBUG, "No MRC cache found.\n");
Lee Leahy0946ec32015-04-20 15:24:54 -070083 }
84 }
85
86 /* Initialize RAM */
87 raminit(params);
88 timestamp_add_now(TS_AFTER_INITRAM);
89
90 /* Save MRC output */
Julius Wernercd49cce2019-03-05 16:53:33 -080091 if (CONFIG(CACHE_MRC_SETTINGS)) {
Nico Huber66318aa2019-05-04 16:59:20 +020092 printk(BIOS_DEBUG, "MRC data at %p %zu bytes\n",
93 params->data_to_save, params->data_to_save_size);
Nico Huber16895c52019-05-04 16:29:17 +020094 if (!s3wake
Nico Huber66318aa2019-05-04 16:59:20 +020095 && (params->data_to_save_size != 0)
96 && (params->data_to_save != NULL))
Lee Leahy216712a2017-03-17 11:23:32 -070097 mrc_cache_stash_data(MRC_TRAINING_DATA,
98 params->fsp_version,
Nico Huber66318aa2019-05-04 16:59:20 +020099 params->data_to_save,
100 params->data_to_save_size);
Lee Leahy0946ec32015-04-20 15:24:54 -0700101 }
102
103 /* Save DIMM information */
Subrata Banik0beac812017-07-12 15:13:53 +0530104 if (!s3wake)
105 mainboard_save_dimm_info(params);
Lee Leahy0946ec32015-04-20 15:24:54 -0700106
107 /* Create romstage handof information */
Aaron Durbin77e13992016-11-29 17:43:04 -0600108 if (romstage_handoff_init(
109 params->power_state->prev_sleep_state == ACPI_S3) < 0)
Patrick Rudolphf677d172018-10-01 19:17:11 +0200110 /* FIXME: A "system" reset is likely enough: */
111 full_reset();
Lee Leahy0946ec32015-04-20 15:24:54 -0700112}
113
Arthur Heymans73ac1212019-05-23 14:41:19 +0200114void cache_as_ram_stage_main(FSP_INFO_HEADER *fih)
115{
116 struct romstage_params params = {
117 .chipset_context = fih,
118 };
119
120 post_code(0x30);
121
122 timestamp_add_now(TS_START_ROMSTAGE);
123
124 /* Load microcode before RAM init */
125 if (CONFIG(SUPPORT_CPU_UCODE_IN_CBFS))
126 intel_update_microcode_from_cbfs();
127
128 /* Display parameters */
129 if (!CONFIG(NO_MMCONF_SUPPORT))
130 printk(BIOS_SPEW, "CONFIG_MMCONF_BASE_ADDRESS: 0x%08x\n",
131 CONFIG_MMCONF_BASE_ADDRESS);
132 printk(BIOS_INFO, "Using FSP 1.1\n");
133
134 /* Display FSP banner */
135 print_fsp_info(fih);
136
137 /* Stash FSP version. */
138 params.fsp_version = fsp_version(fih);
139
140 /* Get power state */
141 params.power_state = fill_power_state();
142
143 /* Board initialization before and after RAM is enabled */
144 mainboard_pre_raminit(&params);
145
146 post_code(0x31);
147
148 /* Initialize memory */
149 raminit_common(&params);
150
151 soc_after_ram_init(&params);
152 post_code(0x38);
153}
154
Lee Leahy0946ec32015-04-20 15:24:54 -0700155/* Initialize the power state */
Aaron Durbin64031672018-04-21 14:45:32 -0600156__weak struct chipset_power_state *fill_power_state(void)
Lee Leahy0946ec32015-04-20 15:24:54 -0700157{
Lee Leahy0946ec32015-04-20 15:24:54 -0700158 return NULL;
159}
160
Lee Leahy0946ec32015-04-20 15:24:54 -0700161/* Board initialization before and after RAM is enabled */
Arthur Heymans73ac1212019-05-23 14:41:19 +0200162__weak void mainboard_pre_raminit(struct romstage_params *params)
Lee Leahy0946ec32015-04-20 15:24:54 -0700163{
Lee Leahy0946ec32015-04-20 15:24:54 -0700164}
165
166/* Save the DIMM information for SMBIOS table 17 */
Aaron Durbin64031672018-04-21 14:45:32 -0600167__weak void mainboard_save_dimm_info(
Lee Leahy0946ec32015-04-20 15:24:54 -0700168 struct romstage_params *params)
169{
170 int channel;
171 CHANNEL_INFO *channel_info;
172 int dimm;
173 DIMM_INFO *dimm_info;
174 int dimm_max;
175 void *hob_list_ptr;
176 EFI_HOB_GUID_TYPE *hob_ptr;
177 int index;
178 struct memory_info *mem_info;
179 FSP_SMBIOS_MEMORY_INFO *memory_info_hob;
180 const EFI_GUID memory_info_hob_guid = FSP_SMBIOS_MEMORY_INFO_GUID;
181
182 /* Locate the memory info HOB, presence validated by raminit */
183 hob_list_ptr = fsp_get_hob_list();
184 hob_ptr = get_next_guid_hob(&memory_info_hob_guid, hob_list_ptr);
185 memory_info_hob = (FSP_SMBIOS_MEMORY_INFO *)(hob_ptr + 1);
186
187 /* Display the data in the FSP_SMBIOS_MEMORY_INFO HOB */
Julius Wernercd49cce2019-03-05 16:53:33 -0800188 if (CONFIG(DISPLAY_HOBS)) {
Lee Leahy0946ec32015-04-20 15:24:54 -0700189 printk(BIOS_DEBUG, "FSP_SMBIOS_MEMORY_INFO HOB\n");
190 printk(BIOS_DEBUG, " 0x%02x: Revision\n",
191 memory_info_hob->Revision);
192 printk(BIOS_DEBUG, " 0x%02x: MemoryType\n",
193 memory_info_hob->MemoryType);
Lee Leahy0be6d932015-06-26 11:15:42 -0700194 printk(BIOS_DEBUG, " %d: MemoryFrequencyInMHz\n",
Lee Leahy0946ec32015-04-20 15:24:54 -0700195 memory_info_hob->MemoryFrequencyInMHz);
Lee Leahy0be6d932015-06-26 11:15:42 -0700196 printk(BIOS_DEBUG, " %d: DataWidth in bits\n",
197 memory_info_hob->DataWidth);
Lee Leahy0946ec32015-04-20 15:24:54 -0700198 printk(BIOS_DEBUG, " 0x%02x: ErrorCorrectionType\n",
199 memory_info_hob->ErrorCorrectionType);
200 printk(BIOS_DEBUG, " 0x%02x: ChannelCount\n",
201 memory_info_hob->ChannelCount);
202 for (channel = 0; channel < memory_info_hob->ChannelCount;
203 channel++) {
204 channel_info = &memory_info_hob->ChannelInfo[channel];
205 printk(BIOS_DEBUG, " Channel %d\n", channel);
206 printk(BIOS_DEBUG, " 0x%02x: ChannelId\n",
207 channel_info->ChannelId);
208 printk(BIOS_DEBUG, " 0x%02x: DimmCount\n",
209 channel_info->DimmCount);
210 for (dimm = 0; dimm < channel_info->DimmCount;
211 dimm++) {
212 dimm_info = &channel_info->DimmInfo[dimm];
213 printk(BIOS_DEBUG, " DIMM %d\n", dimm);
214 printk(BIOS_DEBUG, " 0x%02x: DimmId\n",
215 dimm_info->DimmId);
Lee Leahy0be6d932015-06-26 11:15:42 -0700216 printk(BIOS_DEBUG, " %d: SizeInMb\n",
Lee Leahy0946ec32015-04-20 15:24:54 -0700217 dimm_info->SizeInMb);
218 }
219 }
220 }
221
222 /*
223 * Allocate CBMEM area for DIMM information used to populate SMBIOS
224 * table 17
225 */
226 mem_info = cbmem_add(CBMEM_ID_MEMINFO, sizeof(*mem_info));
227 printk(BIOS_DEBUG, "CBMEM entry for DIMM info: 0x%p\n", mem_info);
228 if (mem_info == NULL)
229 return;
230 memset(mem_info, 0, sizeof(*mem_info));
231
232 /* Describe the first N DIMMs in the system */
233 index = 0;
234 dimm_max = ARRAY_SIZE(mem_info->dimm);
235 for (channel = 0; channel < memory_info_hob->ChannelCount; channel++) {
236 if (index >= dimm_max)
237 break;
238 channel_info = &memory_info_hob->ChannelInfo[channel];
239 for (dimm = 0; dimm < channel_info->DimmCount; dimm++) {
240 if (index >= dimm_max)
241 break;
242 dimm_info = &channel_info->DimmInfo[dimm];
243
244 /* Populate the DIMM information */
245 if (dimm_info->SizeInMb) {
246 mem_info->dimm[index].dimm_size =
247 dimm_info->SizeInMb;
248 mem_info->dimm[index].ddr_type =
249 memory_info_hob->MemoryType;
250 mem_info->dimm[index].ddr_frequency =
251 memory_info_hob->MemoryFrequencyInMHz;
252 mem_info->dimm[index].channel_num =
253 channel_info->ChannelId;
254 mem_info->dimm[index].dimm_num =
255 dimm_info->DimmId;
Lee Leahy0be6d932015-06-26 11:15:42 -0700256 switch (memory_info_hob->DataWidth) {
257 default:
258 case 8:
259 mem_info->dimm[index].bus_width =
260 MEMORY_BUS_WIDTH_8;
261 break;
262
263 case 16:
264 mem_info->dimm[index].bus_width =
265 MEMORY_BUS_WIDTH_16;
266 break;
267
268 case 32:
269 mem_info->dimm[index].bus_width =
270 MEMORY_BUS_WIDTH_32;
271 break;
272
273 case 64:
274 mem_info->dimm[index].bus_width =
275 MEMORY_BUS_WIDTH_64;
276 break;
277
278 case 128:
279 mem_info->dimm[index].bus_width =
280 MEMORY_BUS_WIDTH_128;
281 break;
282 }
Duncan Laurie46a2c772015-07-20 16:48:55 -0700283
284 /* Add any mainboard specific information */
285 mainboard_add_dimm_info(params, mem_info,
286 channel, dimm, index);
Lee Leahy0946ec32015-04-20 15:24:54 -0700287 index++;
288 }
289 }
290 }
291 mem_info->dimm_cnt = index;
292 printk(BIOS_DEBUG, "%d DIMMs found\n", mem_info->dimm_cnt);
293}
Lee Leahy0946ec32015-04-20 15:24:54 -0700294
Duncan Laurie46a2c772015-07-20 16:48:55 -0700295/* Add any mainboard specific information */
Aaron Durbin64031672018-04-21 14:45:32 -0600296__weak void mainboard_add_dimm_info(
Duncan Laurie46a2c772015-07-20 16:48:55 -0700297 struct romstage_params *params,
298 struct memory_info *mem_info,
299 int channel, int dimm, int index)
300{
Duncan Laurie46a2c772015-07-20 16:48:55 -0700301}
302
Lee Leahy0946ec32015-04-20 15:24:54 -0700303/* Get the memory configuration data */
Aaron Durbin64031672018-04-21 14:45:32 -0600304__weak int mrc_cache_get_current(int type, uint32_t version,
Aaron Durbin31be2c92016-12-03 22:08:20 -0600305 struct region_device *rdev)
Lee Leahy0946ec32015-04-20 15:24:54 -0700306{
Lee Leahy0946ec32015-04-20 15:24:54 -0700307 return -1;
308}
309
310/* Save the memory configuration data */
Aaron Durbin64031672018-04-21 14:45:32 -0600311__weak int mrc_cache_stash_data(int type, uint32_t version,
Aaron Durbin31be2c92016-12-03 22:08:20 -0600312 const void *data, size_t size)
Lee Leahy0946ec32015-04-20 15:24:54 -0700313{
Lee Leahy0946ec32015-04-20 15:24:54 -0700314 return -1;
315}
316
Lee Leahy0946ec32015-04-20 15:24:54 -0700317/* Display the memory configuration */
Aaron Durbin64031672018-04-21 14:45:32 -0600318__weak void report_memory_config(void)
Lee Leahy0946ec32015-04-20 15:24:54 -0700319{
Lee Leahy0946ec32015-04-20 15:24:54 -0700320}
321
Lee Leahy0946ec32015-04-20 15:24:54 -0700322/* SOC initialization after RAM is enabled */
Aaron Durbin64031672018-04-21 14:45:32 -0600323__weak void soc_after_ram_init(struct romstage_params *params)
Lee Leahy0946ec32015-04-20 15:24:54 -0700324{
Lee Leahy0946ec32015-04-20 15:24:54 -0700325}
326
Lee Leahy0946ec32015-04-20 15:24:54 -0700327/* SOC initialization before RAM is enabled */
Aaron Durbin64031672018-04-21 14:45:32 -0600328__weak void soc_pre_ram_init(struct romstage_params *params)
Lee Leahy0946ec32015-04-20 15:24:54 -0700329{
Lee Leahy0946ec32015-04-20 15:24:54 -0700330}