blob: 7fd6b3f83ed2f1fca538c909b38700946fdd15a6 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin76c37002012-10-30 09:03:43 -05002
3#include <console/console.h>
Iru Cai33642032019-06-11 14:24:43 +08004#include <console/usb.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05005#include <string.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05006#include <cbmem.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05007#include <cbfs.h>
Elyes HAOUAS82d46422019-04-28 18:01:48 +02008#include <cf9_reset.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05009#include <ip_checksum.h>
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -050010#include <memory_info.h>
Arthur Heymansf300f362018-01-27 13:39:12 +010011#include <mrc_cache.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050012#include <device/pci_def.h>
Patrick Rudolph42609d82020-07-27 16:23:36 +020013#include <device/pci_ops.h>
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -050014#include <device/dram/ddr3.h>
15#include <smbios.h>
16#include <spd.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020017#include <security/vboot/vboot_common.h>
Arthur Heymansf300f362018-01-27 13:39:12 +010018#include <commonlib/region.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050019#include "raminit.h"
20#include "pei_data.h"
21#include "haswell.h"
22
Arthur Heymansf300f362018-01-27 13:39:12 +010023#define MRC_CACHE_VERSION 1
24
Aaron Durbin2ad1dba2013-02-07 00:51:18 -060025void save_mrc_data(struct pei_data *pei_data)
Aaron Durbin76c37002012-10-30 09:03:43 -050026{
Aaron Durbin76c37002012-10-30 09:03:43 -050027 /* Save the MRC S3 restore data to cbmem */
Angel Pons1db5bc72020-01-15 00:49:03 +010028 mrc_cache_stash_data(MRC_TRAINING_DATA, MRC_CACHE_VERSION, pei_data->mrc_output,
29 pei_data->mrc_output_len);
Aaron Durbin76c37002012-10-30 09:03:43 -050030}
31
32static void prepare_mrc_cache(struct pei_data *pei_data)
33{
Shelley Chenad9cd682020-07-23 16:10:52 -070034 size_t mrc_size;
Aaron Durbin76c37002012-10-30 09:03:43 -050035
Angel Pons1db5bc72020-01-15 00:49:03 +010036 /* Preset just in case there is an error */
Aaron Durbin76c37002012-10-30 09:03:43 -050037 pei_data->mrc_input = NULL;
38 pei_data->mrc_input_len = 0;
39
Shelley Chenad9cd682020-07-23 16:10:52 -070040 pei_data->mrc_input =
41 mrc_cache_current_mmap_leak(MRC_TRAINING_DATA,
42 MRC_CACHE_VERSION,
43 &mrc_size);
44 if (!pei_data->mrc_input)
Angel Pons1db5bc72020-01-15 00:49:03 +010045 /* Error message printed in find_current_mrc_cache */
Aaron Durbin76c37002012-10-30 09:03:43 -050046 return;
Aaron Durbin76c37002012-10-30 09:03:43 -050047
Shelley Chenad9cd682020-07-23 16:10:52 -070048 pei_data->mrc_input_len = mrc_size;
Aaron Durbin76c37002012-10-30 09:03:43 -050049
Shelley Chenad9cd682020-07-23 16:10:52 -070050 printk(BIOS_DEBUG, "%s: at %p, size %zx\n", __func__,
51 pei_data->mrc_input, mrc_size);
Aaron Durbin76c37002012-10-30 09:03:43 -050052}
53
Elyes HAOUAS448d9fb2018-05-22 12:51:27 +020054static const char *ecc_decoder[] = {
Aaron Durbin76c37002012-10-30 09:03:43 -050055 "inactive",
56 "active on IO",
57 "disabled on IO",
Angel Pons1db5bc72020-01-15 00:49:03 +010058 "active",
Aaron Durbin76c37002012-10-30 09:03:43 -050059};
60
Angel Pons1db5bc72020-01-15 00:49:03 +010061/* Print out the memory controller configuration, as per the values in its registers. */
Aaron Durbin76c37002012-10-30 09:03:43 -050062static void report_memory_config(void)
63{
Angel Pons1db5bc72020-01-15 00:49:03 +010064 u32 addr_decoder_common, addr_decode_chan[2];
Aaron Durbin76c37002012-10-30 09:03:43 -050065 int i;
66
Angel Pons1db5bc72020-01-15 00:49:03 +010067 addr_decoder_common = MCHBAR32(MAD_CHNL);
Angel Pons6791ad22020-10-13 21:44:08 +020068 addr_decode_chan[0] = MCHBAR32(MAD_DIMM(0));
69 addr_decode_chan[1] = MCHBAR32(MAD_DIMM(1));
Aaron Durbin76c37002012-10-30 09:03:43 -050070
71 printk(BIOS_DEBUG, "memcfg DDR3 clock %d MHz\n",
Angel Pons1db5bc72020-01-15 00:49:03 +010072 (MCHBAR32(MC_BIOS_DATA) * 13333 * 2 + 50) / 100);
73
Aaron Durbin76c37002012-10-30 09:03:43 -050074 printk(BIOS_DEBUG, "memcfg channel assignment: A: %d, B % d, C % d\n",
Angel Pons1db5bc72020-01-15 00:49:03 +010075 (addr_decoder_common >> 0) & 3,
Aaron Durbin76c37002012-10-30 09:03:43 -050076 (addr_decoder_common >> 2) & 3,
77 (addr_decoder_common >> 4) & 3);
78
Angel Pons1db5bc72020-01-15 00:49:03 +010079 for (i = 0; i < ARRAY_SIZE(addr_decode_chan); i++) {
80 u32 ch_conf = addr_decode_chan[i];
81
82 printk(BIOS_DEBUG, "memcfg channel[%d] config (%8.8x):\n", i, ch_conf);
83 printk(BIOS_DEBUG, " ECC %s\n", ecc_decoder[(ch_conf >> 24) & 3]);
Aaron Durbin76c37002012-10-30 09:03:43 -050084 printk(BIOS_DEBUG, " enhanced interleave mode %s\n",
85 ((ch_conf >> 22) & 1) ? "on" : "off");
Angel Pons1db5bc72020-01-15 00:49:03 +010086
Aaron Durbin76c37002012-10-30 09:03:43 -050087 printk(BIOS_DEBUG, " rank interleave %s\n",
88 ((ch_conf >> 21) & 1) ? "on" : "off");
Angel Pons1db5bc72020-01-15 00:49:03 +010089
Duncan Laurie8d774022013-10-22 16:32:49 -070090 printk(BIOS_DEBUG, " DIMMA %d MB width %s %s rank%s\n",
Aaron Durbin76c37002012-10-30 09:03:43 -050091 ((ch_conf >> 0) & 0xff) * 256,
Duncan Laurie8d774022013-10-22 16:32:49 -070092 ((ch_conf >> 19) & 1) ? "x16" : "x8 or x32",
Aaron Durbin76c37002012-10-30 09:03:43 -050093 ((ch_conf >> 17) & 1) ? "dual" : "single",
94 ((ch_conf >> 16) & 1) ? "" : ", selected");
Angel Pons1db5bc72020-01-15 00:49:03 +010095
Duncan Laurie8d774022013-10-22 16:32:49 -070096 printk(BIOS_DEBUG, " DIMMB %d MB width %s %s rank%s\n",
Aaron Durbin76c37002012-10-30 09:03:43 -050097 ((ch_conf >> 8) & 0xff) * 256,
Ryan Salsamendidab81a42017-06-30 17:36:41 -070098 ((ch_conf >> 20) & 1) ? "x16" : "x8 or x32",
Aaron Durbin76c37002012-10-30 09:03:43 -050099 ((ch_conf >> 18) & 1) ? "dual" : "single",
100 ((ch_conf >> 16) & 1) ? ", selected" : "");
101 }
102}
103
104/**
105 * Find PEI executable in coreboot filesystem and execute it.
106 *
107 * @param pei_data: configuration data for UEFI PEI reference code
108 */
109void sdram_initialize(struct pei_data *pei_data)
110{
Aaron Durbin76c37002012-10-30 09:03:43 -0500111 unsigned long entry;
Arthur Heymans8da2fa02018-06-06 10:35:45 +0200112 uint32_t type = CBFS_TYPE_MRC;
113 struct cbfsf f;
Aaron Durbin76c37002012-10-30 09:03:43 -0500114
Aaron Durbin76c37002012-10-30 09:03:43 -0500115 printk(BIOS_DEBUG, "Starting UEFI PEI System Agent\n");
116
Angel Pons1db5bc72020-01-15 00:49:03 +0100117 /* Do not pass MRC data in for recovery mode boot, always pass it in for S3 resume */
Julius Werner29fbfcc2020-03-02 15:54:43 -0800118 if (!(CONFIG(HASWELL_VBOOT_IN_BOOTBLOCK) && vboot_recovery_mode_enabled())
119 || pei_data->boot_mode == 2)
Aaron Durbin76c37002012-10-30 09:03:43 -0500120 prepare_mrc_cache(pei_data);
121
Angel Pons1db5bc72020-01-15 00:49:03 +0100122 /* If MRC data is not found, we cannot continue S3 resume */
Aaron Durbin76c37002012-10-30 09:03:43 -0500123 if (pei_data->boot_mode == 2 && !pei_data->mrc_input) {
Duncan Laurie727b5452013-08-08 16:28:41 -0700124 post_code(POST_RESUME_FAILURE);
Elyes HAOUAS3cd43272020-03-05 22:01:17 +0100125 printk(BIOS_DEBUG, "Giving up in %s: No MRC data\n", __func__);
Elyes HAOUAS82d46422019-04-28 18:01:48 +0200126 system_reset();
Aaron Durbin76c37002012-10-30 09:03:43 -0500127 }
128
129 /* Pass console handler in pei_data */
Kyösti Mälkki657e0be2014-02-04 19:03:57 +0200130 pei_data->tx_byte = do_putchar;
Aaron Durbin76c37002012-10-30 09:03:43 -0500131
Arthur Heymans8da2fa02018-06-06 10:35:45 +0200132 /*
Angel Pons1db5bc72020-01-15 00:49:03 +0100133 * Locate and call UEFI System Agent binary. The binary needs to be at a fixed offset
134 * in the flash and can therefore only reside in the COREBOOT fmap region.
Arthur Heymans8da2fa02018-06-06 10:35:45 +0200135 */
136 if (cbfs_locate_file_in_region(&f, "COREBOOT", "mrc.bin", &type) < 0)
137 die("mrc.bin not found!");
Angel Pons1db5bc72020-01-15 00:49:03 +0100138
Arthur Heymans8da2fa02018-06-06 10:35:45 +0200139 /* We don't care about leaking the mapping */
140 entry = (unsigned long)rdev_mmap_full(&f.data);
Aaron Durbin76c37002012-10-30 09:03:43 -0500141 if (entry) {
142 int rv;
Angel Pons1db5bc72020-01-15 00:49:03 +0100143 asm volatile ("call *%%ecx\n\t"
Aaron Durbin76c37002012-10-30 09:03:43 -0500144 :"=a" (rv) : "c" (entry), "a" (pei_data));
Iru Cai33642032019-06-11 14:24:43 +0800145
Angel Pons1db5bc72020-01-15 00:49:03 +0100146 /* The mrc.bin reconfigures USB, so usbdebug needs to be reinitialized */
Iru Cai33642032019-06-11 14:24:43 +0800147 if (CONFIG(USBDEBUG_IN_PRE_RAM))
148 usbdebug_hw_init(true);
149
Aaron Durbin76c37002012-10-30 09:03:43 -0500150 if (rv) {
151 switch (rv) {
152 case -1:
153 printk(BIOS_ERR, "PEI version mismatch.\n");
154 break;
155 case -2:
156 printk(BIOS_ERR, "Invalid memory frequency.\n");
157 break;
158 default:
159 printk(BIOS_ERR, "MRC returned %x.\n", rv);
160 }
Keith Shortbb41aba2019-05-16 14:07:43 -0600161 die_with_post_code(POST_INVALID_VENDOR_BINARY,
162 "Nonzero MRC return value.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500163 }
164 } else {
165 die("UEFI PEI System Agent not found.\n");
166 }
167
Angel Pons1db5bc72020-01-15 00:49:03 +0100168 /* For reference, print the System Agent version after executing the UEFI PEI stage */
169 u32 version = MCHBAR32(MRC_REVISION);
Aaron Durbin76c37002012-10-30 09:03:43 -0500170 printk(BIOS_DEBUG, "System Agent Version %d.%d.%d Build %d\n",
Angel Pons1db5bc72020-01-15 00:49:03 +0100171 (version >> 24) & 0xff, (version >> 16) & 0xff,
172 (version >> 8) & 0xff, (version >> 0) & 0xff);
Aaron Durbin76c37002012-10-30 09:03:43 -0500173
Aaron Durbin76c37002012-10-30 09:03:43 -0500174 report_memory_config();
Aaron Durbin76c37002012-10-30 09:03:43 -0500175}
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500176
Patrick Rudolph42609d82020-07-27 16:23:36 +0200177static bool nb_supports_ecc(const uint32_t capid0_a)
178{
179 return !(capid0_a & CAPID_ECCDIS);
180}
181
182static uint16_t nb_slots_per_channel(const uint32_t capid0_a)
183{
184 return !(capid0_a & CAPID_DDPCD) + 1;
185}
186
187static uint16_t nb_number_of_channels(const uint32_t capid0_a)
188{
189 return !(capid0_a & CAPID_PDCD) + 1;
190}
191
192static uint32_t nb_max_chan_capacity_mib(const uint32_t capid0_a)
193{
194 uint32_t ddrsz;
195
196 /* Values from documentation, which assume two DIMMs per channel */
197 switch (CAPID_DDRSZ(capid0_a)) {
198 case 1:
199 ddrsz = 8192;
200 break;
201 case 2:
202 ddrsz = 2048;
203 break;
204 case 3:
205 ddrsz = 512;
206 break;
207 default:
208 ddrsz = 16384;
209 break;
210 }
211
212 /* Account for the maximum number of DIMMs per channel */
213 return (ddrsz / 2) * nb_slots_per_channel(capid0_a);
214}
215
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500216void setup_sdram_meminfo(struct pei_data *pei_data)
217{
Elyes HAOUASce83f312019-05-20 18:31:38 +0200218 u32 addr_decode_ch[2];
Angel Pons1db5bc72020-01-15 00:49:03 +0100219 struct memory_info *mem_info;
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500220 struct dimm_info *dimm;
Angel Pons1db5bc72020-01-15 00:49:03 +0100221 int ddr_frequency, dimm_size, ch, d_num;
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500222 int dimm_cnt = 0;
223
224 mem_info = cbmem_add(CBMEM_ID_MEMINFO, sizeof(struct memory_info));
Nico Huberacac02d2017-06-20 14:49:04 +0200225 if (!mem_info)
226 die("Failed to add memory info to CBMEM.\n");
Angel Pons1db5bc72020-01-15 00:49:03 +0100227
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500228 memset(mem_info, 0, sizeof(struct memory_info));
229
Angel Pons6791ad22020-10-13 21:44:08 +0200230 addr_decode_ch[0] = MCHBAR32(MAD_DIMM(0));
231 addr_decode_ch[1] = MCHBAR32(MAD_DIMM(1));
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500232
Angel Pons1db5bc72020-01-15 00:49:03 +0100233 ddr_frequency = (MCHBAR32(MC_BIOS_DATA) * 13333 * 2 + 50) / 100;
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500234
235 for (ch = 0; ch < ARRAY_SIZE(addr_decode_ch); ch++) {
236 u32 ch_conf = addr_decode_ch[ch];
237 /* DIMMs A/B */
238 for (d_num = 0; d_num < 2; d_num++) {
239 dimm_size = ((ch_conf >> (d_num * 8)) & 0xff) * 256;
240 if (dimm_size) {
241 dimm = &mem_info->dimm[dimm_cnt];
242 dimm->dimm_size = dimm_size;
243 dimm->ddr_type = MEMORY_TYPE_DDR3;
244 dimm->ddr_frequency = ddr_frequency;
245 dimm->rank_per_dimm = 1 + ((ch_conf >> (17 + d_num)) & 1);
246 dimm->channel_num = ch;
247 dimm->dimm_num = d_num;
248 dimm->bank_locator = ch * 2;
249 memcpy(dimm->serial,
250 &pei_data->spd_data[dimm_cnt][SPD_DIMM_SERIAL_NUM],
251 SPD_DIMM_SERIAL_LEN);
252 memcpy(dimm->module_part_number,
253 &pei_data->spd_data[dimm_cnt][SPD_DIMM_PART_NUM],
254 SPD_DIMM_PART_LEN);
255 dimm->mod_id =
256 (pei_data->spd_data[dimm_cnt][SPD_DIMM_MOD_ID2] << 8) |
Angel Pons1db5bc72020-01-15 00:49:03 +0100257 (pei_data->spd_data[dimm_cnt][SPD_DIMM_MOD_ID1] & 0xff);
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500258 dimm->mod_type = SPD_SODIMM;
Elyes HAOUAS7d964ae2020-07-19 09:19:59 +0200259 dimm->bus_width = MEMORY_BUS_WIDTH_64;
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500260 dimm_cnt++;
261 }
262 }
263 }
264 mem_info->dimm_cnt = dimm_cnt;
Patrick Rudolph42609d82020-07-27 16:23:36 +0200265
266 const uint32_t capid0_a = pci_read_config32(HOST_BRIDGE, CAPID0_A);
267
268 const uint16_t channels = nb_number_of_channels(capid0_a);
269
270 mem_info->ecc_capable = nb_supports_ecc(capid0_a);
271 mem_info->max_capacity_mib = channels * nb_max_chan_capacity_mib(capid0_a);
272 mem_info->number_of_devices = channels * nb_slots_per_channel(capid0_a);
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500273}