blob: 44a1f3e71488ccb8ca07e21d40165c795c9e58b1 [file] [log] [blame]
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Google Inc.
5 *
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.
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070014 */
15
16#include <console/console.h>
17#include <console/usb.h>
18#include <bootmode.h>
19#include <string.h>
20#include <arch/io.h>
21#include <cbmem.h>
22#include <arch/cbfs.h>
23#include <cbfs.h>
24#include <ip_checksum.h>
25#include <pc80/mc146818rtc.h>
26#include <device/pci_def.h>
Arthur Heymans7539b8c2017-12-24 10:42:57 +010027#include <mrc_cache.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070028#include <halt.h>
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010029#include <timestamp.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070030#include "raminit.h"
31#include "pei_data.h"
32#include "sandybridge.h"
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020033#include <security/vboot/vboot_common.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070034
35/* Management Engine is in the southbridge */
Elyes HAOUAS21b71ce62018-06-16 18:43:52 +020036#include <southbridge/intel/bd82x6x/me.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070037
38/*
39 * MRC scrambler seed offsets should be reserved in
40 * mainboard cmos.layout and not covered by checksum.
41 */
Martin Roth33232602017-06-24 14:48:50 -060042#if IS_ENABLED(CONFIG_USE_OPTION_TABLE)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070043#include "option_table.h"
44#define CMOS_OFFSET_MRC_SEED (CMOS_VSTART_mrc_scrambler_seed >> 3)
45#define CMOS_OFFSET_MRC_SEED_S3 (CMOS_VSTART_mrc_scrambler_seed_s3 >> 3)
46#define CMOS_OFFSET_MRC_SEED_CHK (CMOS_VSTART_mrc_scrambler_seed_chk >> 3)
47#else
48#define CMOS_OFFSET_MRC_SEED 152
49#define CMOS_OFFSET_MRC_SEED_S3 156
50#define CMOS_OFFSET_MRC_SEED_CHK 160
51#endif
52
Arthur Heymans7539b8c2017-12-24 10:42:57 +010053#define MRC_CACHE_VERSION 0
54
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070055void save_mrc_data(struct pei_data *pei_data)
56{
57 u16 c1, c2, checksum;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070058
59 /* Save the MRC S3 restore data to cbmem */
Arthur Heymans7539b8c2017-12-24 10:42:57 +010060 mrc_cache_stash_data(MRC_TRAINING_DATA, MRC_CACHE_VERSION,
61 pei_data->mrc_output,
62 pei_data->mrc_output_len);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070063
64 /* Save the MRC seed values to CMOS */
65 cmos_write32(CMOS_OFFSET_MRC_SEED, pei_data->scrambler_seed);
66 printk(BIOS_DEBUG, "Save scrambler seed 0x%08x to CMOS 0x%02x\n",
67 pei_data->scrambler_seed, CMOS_OFFSET_MRC_SEED);
68
69 cmos_write32(CMOS_OFFSET_MRC_SEED_S3, pei_data->scrambler_seed_s3);
70 printk(BIOS_DEBUG, "Save s3 scrambler seed 0x%08x to CMOS 0x%02x\n",
71 pei_data->scrambler_seed_s3, CMOS_OFFSET_MRC_SEED_S3);
72
73 /* Save a simple checksum of the seed values */
74 c1 = compute_ip_checksum((u8*)&pei_data->scrambler_seed,
75 sizeof(u32));
76 c2 = compute_ip_checksum((u8*)&pei_data->scrambler_seed_s3,
77 sizeof(u32));
78 checksum = add_ip_checksums(sizeof(u32), c1, c2);
79
80 cmos_write(checksum & 0xff, CMOS_OFFSET_MRC_SEED_CHK);
81 cmos_write((checksum >> 8) & 0xff, CMOS_OFFSET_MRC_SEED_CHK+1);
82}
83
84static void prepare_mrc_cache(struct pei_data *pei_data)
85{
Arthur Heymans7539b8c2017-12-24 10:42:57 +010086 struct region_device rdev;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070087 u16 c1, c2, checksum, seed_checksum;
88
89 // preset just in case there is an error
90 pei_data->mrc_input = NULL;
91 pei_data->mrc_input_len = 0;
92
93 /* Read scrambler seeds from CMOS */
94 pei_data->scrambler_seed = cmos_read32(CMOS_OFFSET_MRC_SEED);
95 printk(BIOS_DEBUG, "Read scrambler seed 0x%08x from CMOS 0x%02x\n",
96 pei_data->scrambler_seed, CMOS_OFFSET_MRC_SEED);
97
98 pei_data->scrambler_seed_s3 = cmos_read32(CMOS_OFFSET_MRC_SEED_S3);
99 printk(BIOS_DEBUG, "Read S3 scrambler seed 0x%08x from CMOS 0x%02x\n",
100 pei_data->scrambler_seed_s3, CMOS_OFFSET_MRC_SEED_S3);
101
102 /* Compute seed checksum and compare */
103 c1 = compute_ip_checksum((u8*)&pei_data->scrambler_seed,
104 sizeof(u32));
105 c2 = compute_ip_checksum((u8*)&pei_data->scrambler_seed_s3,
106 sizeof(u32));
107 checksum = add_ip_checksums(sizeof(u32), c1, c2);
108
109 seed_checksum = cmos_read(CMOS_OFFSET_MRC_SEED_CHK);
110 seed_checksum |= cmos_read(CMOS_OFFSET_MRC_SEED_CHK+1) << 8;
111
112 if (checksum != seed_checksum) {
113 printk(BIOS_ERR, "%s: invalid seed checksum\n", __func__);
114 pei_data->scrambler_seed = 0;
115 pei_data->scrambler_seed_s3 = 0;
116 return;
117 }
118
Arthur Heymans7539b8c2017-12-24 10:42:57 +0100119 if (mrc_cache_get_current(MRC_TRAINING_DATA, MRC_CACHE_VERSION,
120 &rdev)) {
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700121 /* error message printed in find_current_mrc_cache */
122 return;
123 }
124
Arthur Heymans7539b8c2017-12-24 10:42:57 +0100125 pei_data->mrc_input = rdev_mmap_full(&rdev);
126 pei_data->mrc_input_len = region_device_sz(&rdev);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700127
Arthur Heymans7539b8c2017-12-24 10:42:57 +0100128 printk(BIOS_DEBUG, "%s: at %p, size %x\n",
129 __func__, pei_data->mrc_input, pei_data->mrc_input_len);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700130}
131
Elyes HAOUAS448d9fb2018-05-22 12:51:27 +0200132static const char *ecc_decoder[] = {
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700133 "inactive",
134 "active on IO",
135 "disabled on IO",
136 "active"
137};
138
139/*
140 * Dump in the log memory controller configuration as read from the memory
141 * controller registers.
142 */
143static void report_memory_config(void)
144{
145 u32 addr_decoder_common, addr_decode_ch[2];
146 int i;
147
148 addr_decoder_common = MCHBAR32(0x5000);
149 addr_decode_ch[0] = MCHBAR32(0x5004);
150 addr_decode_ch[1] = MCHBAR32(0x5008);
151
152 printk(BIOS_DEBUG, "memcfg DDR3 clock %d MHz\n",
153 (MCHBAR32(0x5e04) * 13333 * 2 + 50)/100);
154 printk(BIOS_DEBUG, "memcfg channel assignment: A: %d, B % d, C % d\n",
155 addr_decoder_common & 3,
156 (addr_decoder_common >> 2) & 3,
157 (addr_decoder_common >> 4) & 3);
158
159 for (i = 0; i < ARRAY_SIZE(addr_decode_ch); i++) {
160 u32 ch_conf = addr_decode_ch[i];
161 printk(BIOS_DEBUG, "memcfg channel[%d] config (%8.8x):\n",
162 i, ch_conf);
163 printk(BIOS_DEBUG, " ECC %s\n",
164 ecc_decoder[(ch_conf >> 24) & 3]);
165 printk(BIOS_DEBUG, " enhanced interleave mode %s\n",
166 ((ch_conf >> 22) & 1) ? "on" : "off");
167 printk(BIOS_DEBUG, " rank interleave %s\n",
168 ((ch_conf >> 21) & 1) ? "on" : "off");
169 printk(BIOS_DEBUG, " DIMMA %d MB width x%d %s rank%s\n",
170 ((ch_conf >> 0) & 0xff) * 256,
171 ((ch_conf >> 19) & 1) ? 16 : 8,
172 ((ch_conf >> 17) & 1) ? "dual" : "single",
173 ((ch_conf >> 16) & 1) ? "" : ", selected");
174 printk(BIOS_DEBUG, " DIMMB %d MB width x%d %s rank%s\n",
175 ((ch_conf >> 8) & 0xff) * 256,
176 ((ch_conf >> 20) & 1) ? 16 : 8,
177 ((ch_conf >> 18) & 1) ? "dual" : "single",
178 ((ch_conf >> 16) & 1) ? ", selected" : "");
179 }
180}
181
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700182/**
183 * Find PEI executable in coreboot filesystem and execute it.
184 *
185 * @param pei_data: configuration data for UEFI PEI reference code
186 */
187void sdram_initialize(struct pei_data *pei_data)
188{
189 struct sys_info sysinfo;
Stefan Reinauer6a001132017-07-13 02:20:27 +0200190 int (*entry) (struct pei_data *pei_data) __attribute__((regparm(1)));
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700191
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700192 /* Wait for ME to be ready */
193 intel_early_me_init();
194 intel_early_me_uma_size();
195
196 printk(BIOS_DEBUG, "Starting UEFI PEI System Agent\n");
197
198 memset(&sysinfo, 0, sizeof(sysinfo));
199
200 sysinfo.boot_path = pei_data->boot_mode;
201
202 /*
203 * Do not pass MRC data in for recovery mode boot,
204 * Always pass it in for S3 resume.
205 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700206 if (!vboot_recovery_mode_enabled() || pei_data->boot_mode == 2)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700207 prepare_mrc_cache(pei_data);
208
209 /* If MRC data is not found we cannot continue S3 resume. */
210 if (pei_data->boot_mode == 2 && !pei_data->mrc_input) {
211 printk(BIOS_DEBUG, "Giving up in sdram_initialize: No MRC data\n");
212 outb(0x6, 0xcf9);
213 halt();
214 }
215
216 /* Pass console handler in pei_data */
217 pei_data->tx_byte = do_putchar;
218
219 /* Locate and call UEFI System Agent binary. */
220 entry = cbfs_boot_map_with_leak("mrc.bin", CBFS_TYPE_MRC, NULL);
221 if (entry) {
222 int rv;
223 rv = entry (pei_data);
224 if (rv) {
225 switch (rv) {
226 case -1:
227 printk(BIOS_ERR, "PEI version mismatch.\n");
228 break;
229 case -2:
230 printk(BIOS_ERR, "Invalid memory frequency.\n");
231 break;
232 default:
233 printk(BIOS_ERR, "MRC returned %x.\n", rv);
234 }
235 die("Nonzero MRC return value.\n");
236 }
237 } else {
238 die("UEFI PEI System Agent not found.\n");
239 }
240
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700241 /* mrc.bin reconfigures USB, so reinit it to have debug */
Kyösti Mälkki63649d22018-12-29 09:40:40 +0200242 if (IS_ENABLED(CONFIG_USBDEBUG_IN_ROMSTAGE))
243 usbdebug_hw_init(true);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700244
245 /* For reference print the System Agent version
246 * after executing the UEFI PEI stage.
247 */
248 u32 version = MCHBAR32(0x5034);
249 printk(BIOS_DEBUG, "System Agent Version %d.%d.%d Build %d\n",
Elyes HAOUASa342f392018-10-17 10:56:26 +0200250 version >> 24, (version >> 16) & 0xff,
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700251 (version >> 8) & 0xff, version & 0xff);
252
253 /* Send ME init done for SandyBridge here. This is done
254 * inside the SystemAgent binary on IvyBridge. */
255 if (BASE_REV_SNB ==
256 (pci_read_config16(PCI_CPU_DEVICE, PCI_DEVICE_ID) & BASE_REV_MASK))
257 intel_early_me_init_done(ME_INIT_STATUS_SUCCESS);
258 else
259 intel_early_me_status();
260
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700261 report_memory_config();
262}
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100263
264void perform_raminit(int s3resume)
265{
266 int cbmem_was_initted;
267 struct pei_data pei_data;
268
269 /* Prepare USB controller early in S3 resume */
270 if (!mainboard_should_reset_usb(s3resume))
271 enable_usb_bar();
272
273 mainboard_fill_pei_data(&pei_data);
274
275 post_code(0x3a);
276 pei_data.boot_mode = s3resume ? 2 : 0;
277 timestamp_add_now(TS_BEFORE_INITRAM);
278 sdram_initialize(&pei_data);
279 cbmem_was_initted = !cbmem_recovery(s3resume);
280 if (!s3resume)
281 save_mrc_data(&pei_data);
282
283 if (s3resume && !cbmem_was_initted) {
284 /* Failed S3 resume, reset to come up cleanly */
285 outb(0x6, 0xcf9);
286 halt();
287 }
288}