blob: 96e6a2aeffa6e5b2c9675e3f90e6366c562c9592 [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>
Elyes HAOUAS030d3382021-02-12 08:17:35 +010019#include <types.h>
20
Aaron Durbin76c37002012-10-30 09:03:43 -050021#include "raminit.h"
22#include "pei_data.h"
23#include "haswell.h"
24
Arthur Heymansf300f362018-01-27 13:39:12 +010025#define MRC_CACHE_VERSION 1
26
Aaron Durbin2ad1dba2013-02-07 00:51:18 -060027void save_mrc_data(struct pei_data *pei_data)
Aaron Durbin76c37002012-10-30 09:03:43 -050028{
Aaron Durbin76c37002012-10-30 09:03:43 -050029 /* Save the MRC S3 restore data to cbmem */
Angel Pons1db5bc72020-01-15 00:49:03 +010030 mrc_cache_stash_data(MRC_TRAINING_DATA, MRC_CACHE_VERSION, pei_data->mrc_output,
31 pei_data->mrc_output_len);
Aaron Durbin76c37002012-10-30 09:03:43 -050032}
33
34static void prepare_mrc_cache(struct pei_data *pei_data)
35{
Shelley Chenad9cd682020-07-23 16:10:52 -070036 size_t mrc_size;
Aaron Durbin76c37002012-10-30 09:03:43 -050037
Angel Pons1db5bc72020-01-15 00:49:03 +010038 /* Preset just in case there is an error */
Aaron Durbin76c37002012-10-30 09:03:43 -050039 pei_data->mrc_input = NULL;
40 pei_data->mrc_input_len = 0;
41
Shelley Chenad9cd682020-07-23 16:10:52 -070042 pei_data->mrc_input =
43 mrc_cache_current_mmap_leak(MRC_TRAINING_DATA,
44 MRC_CACHE_VERSION,
45 &mrc_size);
46 if (!pei_data->mrc_input)
Angel Pons1db5bc72020-01-15 00:49:03 +010047 /* Error message printed in find_current_mrc_cache */
Aaron Durbin76c37002012-10-30 09:03:43 -050048 return;
Aaron Durbin76c37002012-10-30 09:03:43 -050049
Shelley Chenad9cd682020-07-23 16:10:52 -070050 pei_data->mrc_input_len = mrc_size;
Aaron Durbin76c37002012-10-30 09:03:43 -050051
Shelley Chenad9cd682020-07-23 16:10:52 -070052 printk(BIOS_DEBUG, "%s: at %p, size %zx\n", __func__,
53 pei_data->mrc_input, mrc_size);
Aaron Durbin76c37002012-10-30 09:03:43 -050054}
55
Angel Pons0117e4e2020-10-13 23:34:27 +020056static const char *const ecc_decoder[] = {
Aaron Durbin76c37002012-10-30 09:03:43 -050057 "inactive",
58 "active on IO",
59 "disabled on IO",
Angel Pons1db5bc72020-01-15 00:49:03 +010060 "active",
Aaron Durbin76c37002012-10-30 09:03:43 -050061};
62
Angel Pons1db5bc72020-01-15 00:49:03 +010063/* Print out the memory controller configuration, as per the values in its registers. */
Aaron Durbin76c37002012-10-30 09:03:43 -050064static void report_memory_config(void)
65{
Aaron Durbin76c37002012-10-30 09:03:43 -050066 int i;
67
Angel Pons82654b32020-10-13 21:45:45 +020068 const u32 addr_decoder_common = MCHBAR32(MAD_CHNL);
Aaron Durbin76c37002012-10-30 09:03:43 -050069
70 printk(BIOS_DEBUG, "memcfg DDR3 clock %d MHz\n",
Angel Pons1db5bc72020-01-15 00:49:03 +010071 (MCHBAR32(MC_BIOS_DATA) * 13333 * 2 + 50) / 100);
72
Aaron Durbin76c37002012-10-30 09:03:43 -050073 printk(BIOS_DEBUG, "memcfg channel assignment: A: %d, B % d, C % d\n",
Angel Pons1db5bc72020-01-15 00:49:03 +010074 (addr_decoder_common >> 0) & 3,
Aaron Durbin76c37002012-10-30 09:03:43 -050075 (addr_decoder_common >> 2) & 3,
76 (addr_decoder_common >> 4) & 3);
77
Angel Pons82654b32020-10-13 21:45:45 +020078 for (i = 0; i < NUM_CHANNELS; i++) {
79 const u32 ch_conf = MCHBAR32(MAD_DIMM(i));
Angel Pons1db5bc72020-01-15 00:49:03 +010080
81 printk(BIOS_DEBUG, "memcfg channel[%d] config (%8.8x):\n", i, ch_conf);
82 printk(BIOS_DEBUG, " ECC %s\n", ecc_decoder[(ch_conf >> 24) & 3]);
Aaron Durbin76c37002012-10-30 09:03:43 -050083 printk(BIOS_DEBUG, " enhanced interleave mode %s\n",
84 ((ch_conf >> 22) & 1) ? "on" : "off");
Angel Pons1db5bc72020-01-15 00:49:03 +010085
Aaron Durbin76c37002012-10-30 09:03:43 -050086 printk(BIOS_DEBUG, " rank interleave %s\n",
87 ((ch_conf >> 21) & 1) ? "on" : "off");
Angel Pons1db5bc72020-01-15 00:49:03 +010088
Duncan Laurie8d774022013-10-22 16:32:49 -070089 printk(BIOS_DEBUG, " DIMMA %d MB width %s %s rank%s\n",
Aaron Durbin76c37002012-10-30 09:03:43 -050090 ((ch_conf >> 0) & 0xff) * 256,
Duncan Laurie8d774022013-10-22 16:32:49 -070091 ((ch_conf >> 19) & 1) ? "x16" : "x8 or x32",
Aaron Durbin76c37002012-10-30 09:03:43 -050092 ((ch_conf >> 17) & 1) ? "dual" : "single",
93 ((ch_conf >> 16) & 1) ? "" : ", selected");
Angel Pons1db5bc72020-01-15 00:49:03 +010094
Duncan Laurie8d774022013-10-22 16:32:49 -070095 printk(BIOS_DEBUG, " DIMMB %d MB width %s %s rank%s\n",
Aaron Durbin76c37002012-10-30 09:03:43 -050096 ((ch_conf >> 8) & 0xff) * 256,
Ryan Salsamendidab81a42017-06-30 17:36:41 -070097 ((ch_conf >> 20) & 1) ? "x16" : "x8 or x32",
Aaron Durbin76c37002012-10-30 09:03:43 -050098 ((ch_conf >> 18) & 1) ? "dual" : "single",
99 ((ch_conf >> 16) & 1) ? ", selected" : "");
100 }
101}
102
103/**
104 * Find PEI executable in coreboot filesystem and execute it.
105 *
106 * @param pei_data: configuration data for UEFI PEI reference code
107 */
108void sdram_initialize(struct pei_data *pei_data)
109{
Angel Pons1ca6b532020-10-13 23:43:00 +0200110 int (*entry)(struct pei_data *pei_data) __attribute__((regparm(1)));
111
Aaron Durbin76c37002012-10-30 09:03:43 -0500112 printk(BIOS_DEBUG, "Starting UEFI PEI System Agent\n");
113
Shelley Chen6615c6e2020-10-27 15:58:31 -0700114 /*
115 * Always pass in mrc_cache data. The driver will determine
116 * whether to use the data or not.
117 */
118 prepare_mrc_cache(pei_data);
Aaron Durbin76c37002012-10-30 09:03:43 -0500119
Angel Pons1db5bc72020-01-15 00:49:03 +0100120 /* If MRC data is not found, we cannot continue S3 resume */
Aaron Durbin76c37002012-10-30 09:03:43 -0500121 if (pei_data->boot_mode == 2 && !pei_data->mrc_input) {
Duncan Laurie727b5452013-08-08 16:28:41 -0700122 post_code(POST_RESUME_FAILURE);
Elyes HAOUAS3cd43272020-03-05 22:01:17 +0100123 printk(BIOS_DEBUG, "Giving up in %s: No MRC data\n", __func__);
Elyes HAOUAS82d46422019-04-28 18:01:48 +0200124 system_reset();
Aaron Durbin76c37002012-10-30 09:03:43 -0500125 }
126
127 /* Pass console handler in pei_data */
Kyösti Mälkki657e0be2014-02-04 19:03:57 +0200128 pei_data->tx_byte = do_putchar;
Aaron Durbin76c37002012-10-30 09:03:43 -0500129
Arthur Heymans8da2fa02018-06-06 10:35:45 +0200130 /*
Angel Pons1db5bc72020-01-15 00:49:03 +0100131 * Locate and call UEFI System Agent binary. The binary needs to be at a fixed offset
Julius Werner9d0cc2a2020-01-22 18:00:18 -0800132 * in the flash and can therefore only reside in the COREBOOT fmap region. We don't care
133 * about leaking the mapping.
Arthur Heymans8da2fa02018-06-06 10:35:45 +0200134 */
Julius Werner9d0cc2a2020-01-22 18:00:18 -0800135 entry = cbfs_ro_map("mrc.bin", NULL);
Aaron Durbin76c37002012-10-30 09:03:43 -0500136 if (entry) {
Angel Pons1ca6b532020-10-13 23:43:00 +0200137 int rv = entry(pei_data);
Iru Cai33642032019-06-11 14:24:43 +0800138
Angel Pons1db5bc72020-01-15 00:49:03 +0100139 /* The mrc.bin reconfigures USB, so usbdebug needs to be reinitialized */
Iru Cai33642032019-06-11 14:24:43 +0800140 if (CONFIG(USBDEBUG_IN_PRE_RAM))
141 usbdebug_hw_init(true);
142
Aaron Durbin76c37002012-10-30 09:03:43 -0500143 if (rv) {
144 switch (rv) {
145 case -1:
146 printk(BIOS_ERR, "PEI version mismatch.\n");
147 break;
148 case -2:
149 printk(BIOS_ERR, "Invalid memory frequency.\n");
150 break;
151 default:
152 printk(BIOS_ERR, "MRC returned %x.\n", rv);
153 }
Keith Shortbb41aba2019-05-16 14:07:43 -0600154 die_with_post_code(POST_INVALID_VENDOR_BINARY,
155 "Nonzero MRC return value.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500156 }
157 } else {
158 die("UEFI PEI System Agent not found.\n");
159 }
160
Angel Pons7f454e42020-10-13 23:49:03 +0200161 /* Print the MRC version after executing the UEFI PEI stage */
Angel Pons1db5bc72020-01-15 00:49:03 +0100162 u32 version = MCHBAR32(MRC_REVISION);
Angel Pons7f454e42020-10-13 23:49:03 +0200163 printk(BIOS_DEBUG, "MRC Version %d.%d.%d Build %d\n",
164 (version >> 24) & 0xff, (version >> 16) & 0xff,
165 (version >> 8) & 0xff, (version >> 0) & 0xff);
Aaron Durbin76c37002012-10-30 09:03:43 -0500166
Aaron Durbin76c37002012-10-30 09:03:43 -0500167 report_memory_config();
Aaron Durbin76c37002012-10-30 09:03:43 -0500168}
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500169
Patrick Rudolph42609d82020-07-27 16:23:36 +0200170static bool nb_supports_ecc(const uint32_t capid0_a)
171{
172 return !(capid0_a & CAPID_ECCDIS);
173}
174
175static uint16_t nb_slots_per_channel(const uint32_t capid0_a)
176{
177 return !(capid0_a & CAPID_DDPCD) + 1;
178}
179
180static uint16_t nb_number_of_channels(const uint32_t capid0_a)
181{
182 return !(capid0_a & CAPID_PDCD) + 1;
183}
184
185static uint32_t nb_max_chan_capacity_mib(const uint32_t capid0_a)
186{
187 uint32_t ddrsz;
188
189 /* Values from documentation, which assume two DIMMs per channel */
190 switch (CAPID_DDRSZ(capid0_a)) {
191 case 1:
192 ddrsz = 8192;
193 break;
194 case 2:
195 ddrsz = 2048;
196 break;
197 case 3:
198 ddrsz = 512;
199 break;
200 default:
201 ddrsz = 16384;
202 break;
203 }
204
205 /* Account for the maximum number of DIMMs per channel */
206 return (ddrsz / 2) * nb_slots_per_channel(capid0_a);
207}
208
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500209void setup_sdram_meminfo(struct pei_data *pei_data)
210{
Angel Pons1db5bc72020-01-15 00:49:03 +0100211 struct memory_info *mem_info;
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500212 struct dimm_info *dimm;
Angel Pons82654b32020-10-13 21:45:45 +0200213 int ch, d_num;
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500214 int dimm_cnt = 0;
215
216 mem_info = cbmem_add(CBMEM_ID_MEMINFO, sizeof(struct memory_info));
Nico Huberacac02d2017-06-20 14:49:04 +0200217 if (!mem_info)
218 die("Failed to add memory info to CBMEM.\n");
Angel Pons1db5bc72020-01-15 00:49:03 +0100219
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500220 memset(mem_info, 0, sizeof(struct memory_info));
221
Angel Pons82654b32020-10-13 21:45:45 +0200222 const u32 ddr_frequency = (MCHBAR32(MC_BIOS_DATA) * 13333 * 2 + 50) / 100;
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500223
Angel Pons82654b32020-10-13 21:45:45 +0200224 for (ch = 0; ch < NUM_CHANNELS; ch++) {
225 const u32 ch_conf = MCHBAR32(MAD_DIMM(ch));
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500226 /* DIMMs A/B */
Angel Pons82654b32020-10-13 21:45:45 +0200227 for (d_num = 0; d_num < NUM_SLOTS; d_num++) {
228 const u32 dimm_size = ((ch_conf >> (d_num * 8)) & 0xff) * 256;
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500229 if (dimm_size) {
230 dimm = &mem_info->dimm[dimm_cnt];
231 dimm->dimm_size = dimm_size;
232 dimm->ddr_type = MEMORY_TYPE_DDR3;
233 dimm->ddr_frequency = ddr_frequency;
234 dimm->rank_per_dimm = 1 + ((ch_conf >> (17 + d_num)) & 1);
235 dimm->channel_num = ch;
236 dimm->dimm_num = d_num;
237 dimm->bank_locator = ch * 2;
238 memcpy(dimm->serial,
239 &pei_data->spd_data[dimm_cnt][SPD_DIMM_SERIAL_NUM],
240 SPD_DIMM_SERIAL_LEN);
241 memcpy(dimm->module_part_number,
242 &pei_data->spd_data[dimm_cnt][SPD_DIMM_PART_NUM],
243 SPD_DIMM_PART_LEN);
244 dimm->mod_id =
245 (pei_data->spd_data[dimm_cnt][SPD_DIMM_MOD_ID2] << 8) |
Angel Pons1db5bc72020-01-15 00:49:03 +0100246 (pei_data->spd_data[dimm_cnt][SPD_DIMM_MOD_ID1] & 0xff);
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500247 dimm->mod_type = SPD_SODIMM;
Elyes HAOUAS7d964ae2020-07-19 09:19:59 +0200248 dimm->bus_width = MEMORY_BUS_WIDTH_64;
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500249 dimm_cnt++;
250 }
251 }
252 }
253 mem_info->dimm_cnt = dimm_cnt;
Patrick Rudolph42609d82020-07-27 16:23:36 +0200254
255 const uint32_t capid0_a = pci_read_config32(HOST_BRIDGE, CAPID0_A);
256
257 const uint16_t channels = nb_number_of_channels(capid0_a);
258
259 mem_info->ecc_capable = nb_supports_ecc(capid0_a);
260 mem_info->max_capacity_mib = channels * nb_max_chan_capacity_mib(capid0_a);
261 mem_info->number_of_devices = channels * nb_slots_per_channel(capid0_a);
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500262}