blob: 21de0b2ea4b3e404780f6688cd3565a055e7fea9 [file] [log] [blame]
Angel Pons6e5aabd2020-03-23 23:44:42 +01001/* SPDX-License-Identifier: GPL-2.0-only */
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -07002
3#include <console/console.h>
4#include <console/usb.h>
Elyes HAOUASc0567292019-04-28 17:57:47 +02005#include <cf9_reset.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -07006#include <string.h>
Nico Huber47bf4982019-11-17 02:58:00 +01007#include <device/device.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02008#include <device/pci_ops.h>
Patrick Rudolph5709e032019-03-25 10:12:14 +01009#include <arch/cpu.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070010#include <cbmem.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070011#include <cbfs.h>
12#include <ip_checksum.h>
13#include <pc80/mc146818rtc.h>
14#include <device/pci_def.h>
Kyösti Mälkkib697c902019-01-30 08:19:49 +020015#include <lib.h>
Arthur Heymans7539b8c2017-12-24 10:42:57 +010016#include <mrc_cache.h>
Elyes HAOUAS1d6484a2020-07-10 11:18:11 +020017#include <stddef.h>
18#include <stdint.h>
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010019#include <timestamp.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070020#include "raminit.h"
21#include "pei_data.h"
22#include "sandybridge.h"
Patrick Rudolph5709e032019-03-25 10:12:14 +010023#include "chip.h"
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020024#include <security/vboot/vboot_common.h>
Patrick Georgi27fbbcf2019-04-23 12:33:23 +020025#include <southbridge/intel/bd82x6x/pch.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070026
27/* Management Engine is in the southbridge */
Elyes HAOUAS21b71ce62018-06-16 18:43:52 +020028#include <southbridge/intel/bd82x6x/me.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070029
30/*
31 * MRC scrambler seed offsets should be reserved in
32 * mainboard cmos.layout and not covered by checksum.
33 */
Julius Wernercd49cce2019-03-05 16:53:33 -080034#if CONFIG(USE_OPTION_TABLE)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070035#include "option_table.h"
Angel Pons7c49cb82020-03-16 23:17:32 +010036#define CMOS_OFFSET_MRC_SEED (CMOS_VSTART_mrc_scrambler_seed >> 3)
37#define CMOS_OFFSET_MRC_SEED_S3 (CMOS_VSTART_mrc_scrambler_seed_s3 >> 3)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070038#define CMOS_OFFSET_MRC_SEED_CHK (CMOS_VSTART_mrc_scrambler_seed_chk >> 3)
39#else
40#define CMOS_OFFSET_MRC_SEED 152
41#define CMOS_OFFSET_MRC_SEED_S3 156
42#define CMOS_OFFSET_MRC_SEED_CHK 160
43#endif
44
Arthur Heymans7539b8c2017-12-24 10:42:57 +010045#define MRC_CACHE_VERSION 0
46
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070047void save_mrc_data(struct pei_data *pei_data)
48{
49 u16 c1, c2, checksum;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070050
51 /* Save the MRC S3 restore data to cbmem */
Angel Pons7c49cb82020-03-16 23:17:32 +010052 mrc_cache_stash_data(MRC_TRAINING_DATA, MRC_CACHE_VERSION, pei_data->mrc_output,
Arthur Heymans7539b8c2017-12-24 10:42:57 +010053 pei_data->mrc_output_len);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070054
55 /* Save the MRC seed values to CMOS */
Kyösti Mälkki28791072020-01-04 12:58:53 +020056 cmos_write32(pei_data->scrambler_seed, CMOS_OFFSET_MRC_SEED);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070057 printk(BIOS_DEBUG, "Save scrambler seed 0x%08x to CMOS 0x%02x\n",
58 pei_data->scrambler_seed, CMOS_OFFSET_MRC_SEED);
59
Kyösti Mälkki28791072020-01-04 12:58:53 +020060 cmos_write32(pei_data->scrambler_seed_s3, CMOS_OFFSET_MRC_SEED_S3);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070061 printk(BIOS_DEBUG, "Save s3 scrambler seed 0x%08x to CMOS 0x%02x\n",
62 pei_data->scrambler_seed_s3, CMOS_OFFSET_MRC_SEED_S3);
63
64 /* Save a simple checksum of the seed values */
Angel Pons7c49cb82020-03-16 23:17:32 +010065 c1 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed, sizeof(u32));
66 c2 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed_s3, sizeof(u32));
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070067 checksum = add_ip_checksums(sizeof(u32), c1, c2);
68
Angel Pons7c49cb82020-03-16 23:17:32 +010069 cmos_write((checksum >> 0) & 0xff, CMOS_OFFSET_MRC_SEED_CHK);
70 cmos_write((checksum >> 8) & 0xff, CMOS_OFFSET_MRC_SEED_CHK + 1);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070071}
72
73static void prepare_mrc_cache(struct pei_data *pei_data)
74{
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070075 u16 c1, c2, checksum, seed_checksum;
Shelley Chenad9cd682020-07-23 16:10:52 -070076 size_t mrc_size;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070077
Angel Pons7c49cb82020-03-16 23:17:32 +010078 /* Preset just in case there is an error */
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070079 pei_data->mrc_input = NULL;
80 pei_data->mrc_input_len = 0;
81
82 /* Read scrambler seeds from CMOS */
83 pei_data->scrambler_seed = cmos_read32(CMOS_OFFSET_MRC_SEED);
84 printk(BIOS_DEBUG, "Read scrambler seed 0x%08x from CMOS 0x%02x\n",
85 pei_data->scrambler_seed, CMOS_OFFSET_MRC_SEED);
86
87 pei_data->scrambler_seed_s3 = cmos_read32(CMOS_OFFSET_MRC_SEED_S3);
88 printk(BIOS_DEBUG, "Read S3 scrambler seed 0x%08x from CMOS 0x%02x\n",
89 pei_data->scrambler_seed_s3, CMOS_OFFSET_MRC_SEED_S3);
90
91 /* Compute seed checksum and compare */
Angel Pons7c49cb82020-03-16 23:17:32 +010092 c1 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed, sizeof(u32));
93 c2 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed_s3, sizeof(u32));
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070094 checksum = add_ip_checksums(sizeof(u32), c1, c2);
95
Angel Pons7c49cb82020-03-16 23:17:32 +010096 seed_checksum = cmos_read(CMOS_OFFSET_MRC_SEED_CHK);
97 seed_checksum |= cmos_read(CMOS_OFFSET_MRC_SEED_CHK + 1) << 8;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070098
99 if (checksum != seed_checksum) {
100 printk(BIOS_ERR, "%s: invalid seed checksum\n", __func__);
101 pei_data->scrambler_seed = 0;
102 pei_data->scrambler_seed_s3 = 0;
103 return;
104 }
105
Shelley Chenad9cd682020-07-23 16:10:52 -0700106 pei_data->mrc_input = mrc_cache_current_mmap_leak(MRC_TRAINING_DATA,
107 MRC_CACHE_VERSION,
108 &mrc_size);
109 if (pei_data->mrc_input == NULL) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100110 /* Error message printed in find_current_mrc_cache */
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700111 return;
112 }
113
Shelley Chenad9cd682020-07-23 16:10:52 -0700114 pei_data->mrc_input_len = mrc_size;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700115
Shelley Chenad9cd682020-07-23 16:10:52 -0700116 printk(BIOS_DEBUG, "%s: at %p, size %zx\n", __func__,
117 pei_data->mrc_input, mrc_size);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700118}
119
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700120/**
121 * Find PEI executable in coreboot filesystem and execute it.
122 *
123 * @param pei_data: configuration data for UEFI PEI reference code
124 */
125void sdram_initialize(struct pei_data *pei_data)
126{
Angel Pons7c49cb82020-03-16 23:17:32 +0100127 int (*entry)(struct pei_data *pei_data) __attribute__((regparm(1)));
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700128
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700129 /* Wait for ME to be ready */
130 intel_early_me_init();
131 intel_early_me_uma_size();
132
133 printk(BIOS_DEBUG, "Starting UEFI PEI System Agent\n");
134
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700135 /*
Shelley Chen6615c6e2020-10-27 15:58:31 -0700136 * Always pass in mrc_cache data. The driver will determine
137 * whether to use the data or not.
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700138 */
Shelley Chen6615c6e2020-10-27 15:58:31 -0700139 prepare_mrc_cache(pei_data);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700140
141 /* If MRC data is not found we cannot continue S3 resume. */
142 if (pei_data->boot_mode == 2 && !pei_data->mrc_input) {
Elyes HAOUAS3cd43272020-03-05 22:01:17 +0100143 printk(BIOS_DEBUG, "Giving up in %s: No MRC data\n", __func__);
Elyes HAOUASc0567292019-04-28 17:57:47 +0200144 system_reset();
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700145 }
146
147 /* Pass console handler in pei_data */
148 pei_data->tx_byte = do_putchar;
149
150 /* Locate and call UEFI System Agent binary. */
Julius Werner834b3ec2020-03-04 16:52:08 -0800151 entry = cbfs_map("mrc.bin", NULL);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700152 if (entry) {
153 int rv;
154 rv = entry (pei_data);
155 if (rv) {
156 switch (rv) {
157 case -1:
158 printk(BIOS_ERR, "PEI version mismatch.\n");
159 break;
160 case -2:
161 printk(BIOS_ERR, "Invalid memory frequency.\n");
162 break;
163 default:
164 printk(BIOS_ERR, "MRC returned %x.\n", rv);
165 }
Keith Shortbb41aba2019-05-16 14:07:43 -0600166 die_with_post_code(POST_INVALID_VENDOR_BINARY,
167 "Nonzero MRC return value.\n");
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700168 }
169 } else {
170 die("UEFI PEI System Agent not found.\n");
171 }
172
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700173 /* mrc.bin reconfigures USB, so reinit it to have debug */
Julius Wernercd49cce2019-03-05 16:53:33 -0800174 if (CONFIG(USBDEBUG_IN_PRE_RAM))
Kyösti Mälkki63649d22018-12-29 09:40:40 +0200175 usbdebug_hw_init(true);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700176
Angel Pons9f3bc3712020-10-13 23:57:10 +0200177 /* Print the MRC version after executing the UEFI PEI stage */
Angel Pons66780a02021-03-26 13:33:22 +0100178 u32 version = mchbar_read32(MRC_REVISION);
Angel Pons9f3bc3712020-10-13 23:57:10 +0200179 printk(BIOS_DEBUG, "MRC Version %d.%d.%d Build %d\n",
Angel Pons7c49cb82020-03-16 23:17:32 +0100180 (version >> 24) & 0xff, (version >> 16) & 0xff,
181 (version >> 8) & 0xff, (version >> 0) & 0xff);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700182
Angel Pons7c49cb82020-03-16 23:17:32 +0100183 /*
184 * Send ME init done for SandyBridge here.
185 * This is done inside the SystemAgent binary on IvyBridge.
186 */
187 if (BASE_REV_SNB == (pci_read_config16(PCI_CPU_DEVICE, PCI_DEVICE_ID) & BASE_REV_MASK))
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700188 intel_early_me_init_done(ME_INIT_STATUS_SUCCESS);
189 else
190 intel_early_me_status();
191
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700192 report_memory_config();
193}
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100194
Angel Pons7c49cb82020-03-16 23:17:32 +0100195/*
196 * These are the location and structure of MRC_VAR data in CAR.
197 * The CAR region looks like this:
198 * +------------------+ -> DCACHE_RAM_BASE
199 * | |
200 * | |
201 * | COREBOOT STACK |
202 * | |
203 * | |
204 * +------------------+ -> DCACHE_RAM_BASE + DCACHE_RAM_SIZE
205 * | |
206 * | MRC HEAP |
207 * | size = 0x5000 |
208 * | |
209 * +------------------+
210 * | |
211 * | MRC VAR |
212 * | size = 0x4000 |
213 * | |
214 * +------------------+ -> DACHE_RAM_BASE + DACHE_RAM_SIZE
215 * + DCACHE_RAM_MRC_VAR_SIZE
Arthur Heymans01c83a22019-06-05 13:36:55 +0200216 */
Angel Pons7c49cb82020-03-16 23:17:32 +0100217#define DCACHE_RAM_MRC_VAR_BASE (CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE \
218 + CONFIG_DCACHE_RAM_MRC_VAR_SIZE - 0x4000)
Kyösti Mälkkib697c902019-01-30 08:19:49 +0200219
220struct mrc_var_data {
221 u32 acpi_timer_flag;
222 u32 pool_used;
223 u32 pool_base;
224 u32 tx_byte;
225 u32 reserved[4];
226} __packed;
227
Patrick Rudolph5709e032019-03-25 10:12:14 +0100228static void northbridge_fill_pei_data(struct pei_data *pei_data)
229{
Angel Ponsd9e58dc2021-01-20 01:22:20 +0100230 pei_data->mchbar = CONFIG_FIXED_MCHBAR_MMIO_BASE;
231 pei_data->dmibar = CONFIG_FIXED_DMIBAR_MMIO_BASE;
232 pei_data->epbar = CONFIG_FIXED_EPBAR_MMIO_BASE;
Angel Pons7c49cb82020-03-16 23:17:32 +0100233 pei_data->pciexbar = CONFIG_MMCONF_BASE_ADDRESS;
Patrick Rudolph5709e032019-03-25 10:12:14 +0100234 pei_data->hpet_address = CONFIG_HPET_ADDRESS;
Angel Pons7c49cb82020-03-16 23:17:32 +0100235 pei_data->thermalbase = 0xfed08000;
236 pei_data->system_type = !(get_platform_type() == PLATFORM_MOBILE);
237 pei_data->tseg_size = CONFIG_SMM_TSEG_SIZE;
Patrick Rudolph5709e032019-03-25 10:12:14 +0100238
239 if ((cpu_get_cpuid() & 0xffff0) == 0x306a0) {
240 const struct device *dev = pcidev_on_root(1, 0);
241 pei_data->pcie_init = dev && dev->enabled;
242 } else {
243 pei_data->pcie_init = 0;
244 }
245}
246
247static void southbridge_fill_pei_data(struct pei_data *pei_data)
248{
249 const struct device *dev = pcidev_on_root(0x19, 0);
250
Angel Ponsb21bffa2020-07-03 01:02:28 +0200251 pei_data->smbusbar = CONFIG_FIXED_SMBUS_IO_BASE;
Angel Pons7c49cb82020-03-16 23:17:32 +0100252 pei_data->wdbbar = 0x04000000;
253 pei_data->wdbsize = 0x1000;
Angel Pons92717ff2020-09-14 16:22:22 +0200254 pei_data->rcba = (uintptr_t)DEFAULT_RCBA;
Angel Pons7c49cb82020-03-16 23:17:32 +0100255 pei_data->pmbase = DEFAULT_PMBASE;
256 pei_data->gpiobase = DEFAULT_GPIOBASE;
Patrick Rudolph5709e032019-03-25 10:12:14 +0100257 pei_data->gbe_enable = dev && dev->enabled;
258}
259
260static void devicetree_fill_pei_data(struct pei_data *pei_data)
261{
262 const struct northbridge_intel_sandybridge_config *cfg;
263
264 const struct device *dev = pcidev_on_root(0, 0);
265 if (!dev || !dev->chip_info)
266 return;
267
268 cfg = dev->chip_info;
269
270 switch (cfg->max_mem_clock_mhz) {
271 /* MRC only supports fixed numbers of frequencies */
272 default:
273 printk(BIOS_WARNING, "RAMINIT: Limiting DDR3 clock to 800 Mhz\n");
274 /* fallthrough */
275 case 400:
276 pei_data->max_ddr3_freq = 800;
277 break;
278 case 533:
279 pei_data->max_ddr3_freq = 1066;
280 break;
281 case 666:
282 pei_data->max_ddr3_freq = 1333;
283 break;
284 case 800:
285 pei_data->max_ddr3_freq = 1600;
286 break;
287
288 }
289
Angel Pons7c49cb82020-03-16 23:17:32 +0100290 memcpy(pei_data->spd_addresses, cfg->spd_addresses, sizeof(pei_data->spd_addresses));
291 memcpy(pei_data->ts_addresses, cfg->ts_addresses, sizeof(pei_data->ts_addresses));
Patrick Rudolph5709e032019-03-25 10:12:14 +0100292
Angel Pons7c49cb82020-03-16 23:17:32 +0100293 pei_data->ec_present = cfg->ec_present;
Patrick Rudolph5709e032019-03-25 10:12:14 +0100294 pei_data->ddr3lv_support = cfg->ddr3lv_support;
295
296 pei_data->nmode = cfg->nmode;
297 pei_data->ddr_refresh_rate_config = cfg->ddr_refresh_rate_config;
298
299 memcpy(pei_data->usb_port_config, cfg->usb_port_config,
300 sizeof(pei_data->usb_port_config));
301
Angel Pons7c49cb82020-03-16 23:17:32 +0100302 pei_data->usb3.mode = cfg->usb3.mode;
Patrick Rudolph5709e032019-03-25 10:12:14 +0100303 pei_data->usb3.hs_port_switch_mask = cfg->usb3.hs_port_switch_mask;
Angel Pons7c49cb82020-03-16 23:17:32 +0100304 pei_data->usb3.preboot_support = cfg->usb3.preboot_support;
305 pei_data->usb3.xhci_streams = cfg->usb3.xhci_streams;
Patrick Rudolph5709e032019-03-25 10:12:14 +0100306}
307
Nico Huber47bf4982019-11-17 02:58:00 +0100308static void disable_p2p(void)
309{
Angel Pons7c49cb82020-03-16 23:17:32 +0100310 /* Disable PCI-to-PCI bridge early to prevent probing by MRC */
Nico Huber47bf4982019-11-17 02:58:00 +0100311 const struct device *const p2p = pcidev_on_root(0x1e, 0);
312 if (p2p && p2p->enabled)
313 return;
314
315 RCBA32(FD) |= PCH_DISABLE_P2P;
316}
317
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100318void perform_raminit(int s3resume)
319{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100320 struct pei_data pei_data;
Kyösti Mälkkib697c902019-01-30 08:19:49 +0200321 struct mrc_var_data *mrc_var;
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100322
323 /* Prepare USB controller early in S3 resume */
324 if (!mainboard_should_reset_usb(s3resume))
325 enable_usb_bar();
326
Patrick Rudolph5709e032019-03-25 10:12:14 +0100327 memset(&pei_data, 0, sizeof(pei_data));
328 pei_data.pei_version = PEI_VERSION,
329
330 northbridge_fill_pei_data(&pei_data);
331 southbridge_fill_pei_data(&pei_data);
332 devicetree_fill_pei_data(&pei_data);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100333 mainboard_fill_pei_data(&pei_data);
334
335 post_code(0x3a);
Patrick Rudolph59b42552019-05-08 12:44:15 +0200336
Patrick Rudolph5709e032019-03-25 10:12:14 +0100337 /* Fill after mainboard_fill_pei_data as it might provide spd_data */
338 pei_data.dimm_channel0_disabled =
339 (!pei_data.spd_addresses[0] && !pei_data.spd_data[0][0]) +
340 (!pei_data.spd_addresses[1] && !pei_data.spd_data[1][0]) * 2;
341
342 pei_data.dimm_channel1_disabled =
343 (!pei_data.spd_addresses[2] && !pei_data.spd_data[2][0]) +
344 (!pei_data.spd_addresses[3] && !pei_data.spd_data[3][0]) * 2;
345
Patrick Rudolph59b42552019-05-08 12:44:15 +0200346 /* Fix spd_data. MRC only uses spd_data[0] and ignores the other */
347 for (size_t i = 1; i < ARRAY_SIZE(pei_data.spd_data); i++) {
348 if (pei_data.spd_data[i][0] && !pei_data.spd_data[0][0]) {
349 memcpy(pei_data.spd_data[0], pei_data.spd_data[i],
350 sizeof(pei_data.spd_data[0]));
Angel Pons7c49cb82020-03-16 23:17:32 +0100351
Patrick Rudolph59b42552019-05-08 12:44:15 +0200352 } else if (pei_data.spd_data[i][0] && pei_data.spd_data[0][0]) {
353 if (memcmp(pei_data.spd_data[i], pei_data.spd_data[0],
354 sizeof(pei_data.spd_data[0])) != 0)
355 die("Onboard SPDs must match each other");
356 }
357 }
358
Nico Huber47bf4982019-11-17 02:58:00 +0100359 disable_p2p();
360
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100361 pei_data.boot_mode = s3resume ? 2 : 0;
362 timestamp_add_now(TS_BEFORE_INITRAM);
363 sdram_initialize(&pei_data);
Kyösti Mälkkib33c6fb2021-02-17 20:43:04 +0200364 timestamp_add_now(TS_AFTER_INITRAM);
Kyösti Mälkkib697c902019-01-30 08:19:49 +0200365
Angel Pons7c49cb82020-03-16 23:17:32 +0100366 /* Sanity check mrc_var location by verifying a known field */
Kyösti Mälkkib697c902019-01-30 08:19:49 +0200367 mrc_var = (void *)DCACHE_RAM_MRC_VAR_BASE;
Kyösti Mälkkib697c902019-01-30 08:19:49 +0200368 if (mrc_var->tx_byte == (uintptr_t)pei_data.tx_byte) {
369 printk(BIOS_DEBUG, "MRC_VAR pool occupied [%08x,%08x]\n",
Angel Pons7c49cb82020-03-16 23:17:32 +0100370 mrc_var->pool_base, mrc_var->pool_base + mrc_var->pool_used);
371
Kyösti Mälkkib697c902019-01-30 08:19:49 +0200372 } else {
373 printk(BIOS_ERR, "Could not parse MRC_VAR data\n");
Angel Pons7c49cb82020-03-16 23:17:32 +0100374 hexdump32(BIOS_ERR, mrc_var, sizeof(*mrc_var) / sizeof(u32));
Kyösti Mälkkib697c902019-01-30 08:19:49 +0200375 }
376
Angel Pons7c49cb82020-03-16 23:17:32 +0100377 const int cbmem_was_initted = !cbmem_recovery(s3resume);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100378 if (!s3resume)
379 save_mrc_data(&pei_data);
380
381 if (s3resume && !cbmem_was_initted) {
382 /* Failed S3 resume, reset to come up cleanly */
Elyes HAOUASc0567292019-04-28 17:57:47 +0200383 system_reset();
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100384 }
385}