blob: 1d4354c83d3104a6ca748fff10dfa21995ef5753 [file] [log] [blame]
Angel Pons6e5aabd2020-03-23 23:44:42 +01001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer00636b02012-04-04 00:08:51 +02002
3#include <console/console.h>
Arthur Heymans7539b8c2017-12-24 10:42:57 +01004#include <commonlib/region.h>
Elyes HAOUASc0567292019-04-28 17:57:47 +02005#include <cf9_reset.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +02006#include <string.h>
Subrata Banik53b08c32018-12-10 14:11:35 +05307#include <arch/cpu.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02008#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02009#include <device/pci_ops.h>
Kyösti Mälkki1cae4542020-01-06 12:31:34 +020010#include <device/smbus_host.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020011#include <cbmem.h>
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010012#include <timestamp.h>
Arthur Heymans7539b8c2017-12-24 10:42:57 +010013#include <mrc_cache.h>
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010014#include <southbridge/intel/bd82x6x/me.h>
Patrick Rudolphda9302a2019-03-24 17:01:41 +010015#include <southbridge/intel/bd82x6x/pch.h>
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010016#include <cpu/x86/msr.h>
Elyes HAOUAS51401c32019-05-15 21:09:30 +020017#include <types.h>
Elyes HAOUASbf0970e2019-03-21 11:10:03 +010018
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010019#include "raminit_native.h"
20#include "raminit_common.h"
21#include "sandybridge.h"
Stefan Reinauer00636b02012-04-04 00:08:51 +020022
Angel Pons7c49cb82020-03-16 23:17:32 +010023/* FIXME: no ECC support */
24/* FIXME: no support for 3-channel chipsets */
Stefan Reinauer00636b02012-04-04 00:08:51 +020025
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070026static void wait_txt_clear(void)
27{
Angel Pons7c49cb82020-03-16 23:17:32 +010028 struct cpuid_result cp = cpuid_ext(1, 0);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070029
Angel Pons7c49cb82020-03-16 23:17:32 +010030 /* Check if TXT is supported */
31 if (!(cp.ecx & (1 << 6)))
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070032 return;
Angel Pons7c49cb82020-03-16 23:17:32 +010033
34 /* Some TXT public bit */
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070035 if (!(read32((void *)0xfed30010) & 1))
36 return;
Angel Pons7c49cb82020-03-16 23:17:32 +010037
38 /* Wait for TXT clear */
39 while (!(read8((void *)0xfed40000) & (1 << 7)))
40 ;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070041}
42
Angel Pons7c49cb82020-03-16 23:17:32 +010043/* Disable a channel in ramctr_timing */
44static void disable_channel(ramctr_timing *ctrl, int channel)
45{
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +010046 ctrl->rankmap[channel] = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +010047
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +010048 memset(&ctrl->rank_mirror[channel][0], 0, sizeof(ctrl->rank_mirror[0]));
Angel Pons7c49cb82020-03-16 23:17:32 +010049
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +010050 ctrl->channel_size_mb[channel] = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +010051 ctrl->cmd_stretch[channel] = 0;
52 ctrl->mad_dimm[channel] = 0;
53 memset(&ctrl->timings[channel][0], 0, sizeof(ctrl->timings[0]));
Patrick Rudolph74163d62016-11-17 20:02:43 +010054 memset(&ctrl->info.dimm[channel][0], 0, sizeof(ctrl->info.dimm[0]));
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +010055}
56
Patrick Rudolph42609d82020-07-27 16:23:36 +020057static bool nb_supports_ecc(const uint32_t capid0_a)
58{
59 return !(capid0_a & CAPID_ECCDIS);
60}
61
62static uint16_t nb_slots_per_channel(const uint32_t capid0_a)
63{
64 return !(capid0_a & CAPID_DDPCD) + 1;
65}
66
67static uint16_t nb_number_of_channels(const uint32_t capid0_a)
68{
69 return !(capid0_a & CAPID_PDCD) + 1;
70}
71
72static uint32_t nb_max_chan_capacity_mib(const uint32_t capid0_a)
73{
74 uint32_t ddrsz;
75
76 /* Values from documentation, which assume two DIMMs per channel */
77 switch (CAPID_DDRSZ(capid0_a)) {
78 case 1:
79 ddrsz = 8192;
80 break;
81 case 2:
82 ddrsz = 2048;
83 break;
84 case 3:
85 ddrsz = 512;
86 break;
87 default:
88 ddrsz = 16384;
89 break;
90 }
91
92 /* Account for the maximum number of DIMMs per channel */
93 return (ddrsz / 2) * nb_slots_per_channel(capid0_a);
94}
95
96/* Fill cbmem with information for SMBIOS type 16 and type 17 */
97static void setup_sdram_meminfo(ramctr_timing *ctrl)
Patrick Rudolphb97009e2016-02-28 15:24:04 +010098{
Patrick Rudolphb97009e2016-02-28 15:24:04 +010099 int channel, slot;
Patrick Rudolph24efe732018-08-19 11:06:06 +0200100 const u16 ddr_freq = (1000 << 8) / ctrl->tCK;
Patrick Rudolphb97009e2016-02-28 15:24:04 +0100101
Elyes HAOUAS12df9502016-08-23 21:29:48 +0200102 FOR_ALL_CHANNELS for (slot = 0; slot < NUM_SLOTS; slot++) {
Patrick Rudolph24efe732018-08-19 11:06:06 +0200103 enum cb_err ret = spd_add_smbios17(channel, slot, ddr_freq,
104 &ctrl->info.dimm[channel][slot]);
105 if (ret != CB_SUCCESS)
106 printk(BIOS_ERR, "RAMINIT: Failed to add SMBIOS17\n");
Patrick Rudolphb97009e2016-02-28 15:24:04 +0100107 }
Patrick Rudolph42609d82020-07-27 16:23:36 +0200108
109 /* The 'spd_add_smbios17' function allocates this CBMEM area */
110 struct memory_info *m = cbmem_find(CBMEM_ID_MEMINFO);
111 if (m == NULL)
112 return;
113
114 const uint32_t capid0_a = pci_read_config32(HOST_BRIDGE, CAPID0_A);
115
116 const uint16_t channels = nb_number_of_channels(capid0_a);
117
118 m->ecc_capable = nb_supports_ecc(capid0_a);
119 m->max_capacity_mib = channels * nb_max_chan_capacity_mib(capid0_a);
120 m->number_of_devices = channels * nb_slots_per_channel(capid0_a);
Patrick Rudolphb97009e2016-02-28 15:24:04 +0100121}
122
Angel Pons7c49cb82020-03-16 23:17:32 +0100123/* Return CRC16 match for all SPDs */
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100124static int verify_crc16_spds_ddr3(spd_raw_data *spd, ramctr_timing *ctrl)
125{
126 int channel, slot, spd_slot;
127 int match = 1;
128
129 FOR_ALL_CHANNELS {
130 for (slot = 0; slot < NUM_SLOTS; slot++) {
131 spd_slot = 2 * channel + slot;
132 match &= ctrl->spd_crc[channel][slot] ==
Angel Pons7c49cb82020-03-16 23:17:32 +0100133 spd_ddr3_calc_unique_crc(spd[spd_slot], sizeof(spd_raw_data));
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100134 }
135 }
136 return match;
137}
138
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200139void read_spd(spd_raw_data * spd, u8 addr, bool id_only)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200140{
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700141 int j;
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200142 if (id_only) {
143 for (j = 117; j < 128; j++)
Kyösti Mälkki1a1b04e2020-01-07 22:34:33 +0200144 (*spd)[j] = smbus_read_byte(addr, j);
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200145 } else {
146 for (j = 0; j < 256; j++)
Kyösti Mälkki1a1b04e2020-01-07 22:34:33 +0200147 (*spd)[j] = smbus_read_byte(addr, j);
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200148 }
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700149}
150
Patrick Rudolph735ecce2016-03-26 10:42:27 +0100151static void dram_find_spds_ddr3(spd_raw_data *spd, ramctr_timing *ctrl)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700152{
Angel Pons7c49cb82020-03-16 23:17:32 +0100153 int dimms = 0, ch_dimms;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700154 int channel, slot, spd_slot;
Patrick Rudolphdd662872017-10-28 18:20:11 +0200155 bool can_use_ecc = ctrl->ecc_supported;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700156
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200157 memset (ctrl->rankmap, 0, sizeof(ctrl->rankmap));
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700158
159 ctrl->extended_temperature_range = 1;
160 ctrl->auto_self_refresh = 1;
161
162 FOR_ALL_CHANNELS {
163 ctrl->channel_size_mb[channel] = 0;
164
Angel Pons7c49cb82020-03-16 23:17:32 +0100165 ch_dimms = 0;
166 /* Count dimms on channel */
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700167 for (slot = 0; slot < NUM_SLOTS; slot++) {
168 spd_slot = 2 * channel + slot;
Patrick Rudolph5a061852017-09-22 15:19:26 +0200169
Angel Pons035096c2020-09-17 22:31:19 +0200170 if (spd[spd_slot][SPD_MEMORY_TYPE] == SPD_MEMORY_TYPE_SDRAM_DDR3)
Angel Pons7c49cb82020-03-16 23:17:32 +0100171 ch_dimms++;
Patrick Rudolphbd1fdc62016-01-26 08:45:21 +0100172 }
173
174 for (slot = 0; slot < NUM_SLOTS; slot++) {
175 spd_slot = 2 * channel + slot;
Angel Pons7c49cb82020-03-16 23:17:32 +0100176 printk(BIOS_DEBUG, "SPD probe channel%d, slot%d\n", channel, slot);
Patrick Rudolph5a061852017-09-22 15:19:26 +0200177
Angel Pons323c0ae2020-12-12 16:57:37 +0100178 dimm_attr *const dimm = &ctrl->info.dimm[channel][slot];
179
Angel Pons7c49cb82020-03-16 23:17:32 +0100180 /* Search for XMP profile */
Angel Pons323c0ae2020-12-12 16:57:37 +0100181 spd_xmp_decode_ddr3(dimm, spd[spd_slot],
Patrick Rudolphbd1fdc62016-01-26 08:45:21 +0100182 DDR3_XMP_PROFILE_1);
183
Angel Pons323c0ae2020-12-12 16:57:37 +0100184 if (dimm->dram_type != SPD_MEMORY_TYPE_SDRAM_DDR3) {
Patrick Rudolphbd1fdc62016-01-26 08:45:21 +0100185 printram("No valid XMP profile found.\n");
Angel Pons323c0ae2020-12-12 16:57:37 +0100186 spd_decode_ddr3(dimm, spd[spd_slot]);
Angel Pons7c49cb82020-03-16 23:17:32 +0100187
Angel Pons323c0ae2020-12-12 16:57:37 +0100188 } else if (ch_dimms > dimm->dimms_per_channel) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100189 printram(
190 "XMP profile supports %u DIMMs, but %u DIMMs are installed.\n",
Angel Pons323c0ae2020-12-12 16:57:37 +0100191 dimm->dimms_per_channel, ch_dimms);
Angel Pons7c49cb82020-03-16 23:17:32 +0100192
Julius Wernercd49cce2019-03-05 16:53:33 -0800193 if (CONFIG(NATIVE_RAMINIT_IGNORE_XMP_MAX_DIMMS))
Angel Pons7c49cb82020-03-16 23:17:32 +0100194 printk(BIOS_WARNING,
195 "XMP maximum DIMMs will be ignored.\n");
Vagiz Trakhanov771be482017-10-02 10:02:35 +0000196 else
Angel Pons323c0ae2020-12-12 16:57:37 +0100197 spd_decode_ddr3(dimm, spd[spd_slot]);
Angel Pons7c49cb82020-03-16 23:17:32 +0100198
Angel Pons323c0ae2020-12-12 16:57:37 +0100199 } else if (dimm->voltage != 1500) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100200 /* TODO: Support DDR3 voltages other than 1500mV */
Patrick Rudolphbd1fdc62016-01-26 08:45:21 +0100201 printram("XMP profile's requested %u mV is unsupported.\n",
Angel Pons323c0ae2020-12-12 16:57:37 +0100202 dimm->voltage);
Angel Pons3170e9c2020-12-12 16:22:18 +0100203
204 if (CONFIG(NATIVE_RAMINIT_IGNORE_XMP_REQUESTED_VOLTAGE))
205 printk(BIOS_WARNING,
206 "XMP requested voltage will be ignored.\n");
207 else
208 spd_decode_ddr3(dimm, spd[spd_slot]);
Patrick Rudolphbd1fdc62016-01-26 08:45:21 +0100209 }
210
Angel Pons7c49cb82020-03-16 23:17:32 +0100211 /* Fill in CRC16 for MRC cache */
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100212 ctrl->spd_crc[channel][slot] =
Angel Pons7c49cb82020-03-16 23:17:32 +0100213 spd_ddr3_calc_unique_crc(spd[spd_slot], sizeof(spd_raw_data));
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100214
Angel Pons323c0ae2020-12-12 16:57:37 +0100215 if (dimm->dram_type != SPD_MEMORY_TYPE_SDRAM_DDR3) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100216 /* Mark DIMM as invalid */
Angel Pons323c0ae2020-12-12 16:57:37 +0100217 dimm->ranks = 0;
218 dimm->size_mb = 0;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700219 continue;
220 }
221
Angel Pons323c0ae2020-12-12 16:57:37 +0100222 dram_print_spd_ddr3(dimm);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700223 dimms++;
224 ctrl->rank_mirror[channel][slot * 2] = 0;
Angel Pons323c0ae2020-12-12 16:57:37 +0100225 ctrl->rank_mirror[channel][slot * 2 + 1] = dimm->flags.pins_mirrored;
Angel Pons7c49cb82020-03-16 23:17:32 +0100226
Angel Pons323c0ae2020-12-12 16:57:37 +0100227 ctrl->channel_size_mb[channel] += dimm->size_mb;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700228
Angel Pons323c0ae2020-12-12 16:57:37 +0100229 if (!dimm->flags.is_ecc)
Patrick Rudolphdd662872017-10-28 18:20:11 +0200230 can_use_ecc = false;
231
Angel Pons323c0ae2020-12-12 16:57:37 +0100232 ctrl->auto_self_refresh &= dimm->flags.asr;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700233
Angel Pons323c0ae2020-12-12 16:57:37 +0100234 ctrl->extended_temperature_range &= dimm->flags.ext_temp_refresh;
Angel Pons7c49cb82020-03-16 23:17:32 +0100235
Angel Pons323c0ae2020-12-12 16:57:37 +0100236 ctrl->rankmap[channel] |= ((1 << dimm->ranks) - 1) << (2 * slot);
Angel Pons7c49cb82020-03-16 23:17:32 +0100237
238 printk(BIOS_DEBUG, "channel[%d] rankmap = 0x%x\n", channel,
239 ctrl->rankmap[channel]);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700240 }
Angel Pons7c49cb82020-03-16 23:17:32 +0100241
Angel Ponsd4d3ba02020-12-12 17:45:14 +0100242 const u8 rc_0 = ctrl->info.dimm[channel][0].reference_card;
243 const u8 rc_1 = ctrl->info.dimm[channel][1].reference_card;
244
245 if (ch_dimms == NUM_SLOTS && rc_0 < 6 && rc_1 < 6) {
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700246 const int ref_card_offset_table[6][6] = {
Angel Pons7c49cb82020-03-16 23:17:32 +0100247 { 0, 0, 0, 0, 2, 2 },
248 { 0, 0, 0, 0, 2, 2 },
249 { 0, 0, 0, 0, 2, 2 },
250 { 0, 0, 0, 0, 1, 1 },
251 { 2, 2, 2, 1, 0, 0 },
252 { 2, 2, 2, 1, 0, 0 },
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700253 };
Angel Ponsd4d3ba02020-12-12 17:45:14 +0100254 ctrl->ref_card_offset[channel] = ref_card_offset_table[rc_0][rc_1];
Angel Pons7c49cb82020-03-16 23:17:32 +0100255 } else {
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700256 ctrl->ref_card_offset[channel] = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100257 }
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700258 }
259
Patrick Rudolphdd662872017-10-28 18:20:11 +0200260 if (ctrl->ecc_forced || CONFIG(RAMINIT_ENABLE_ECC))
261 ctrl->ecc_enabled = can_use_ecc;
262 if (ctrl->ecc_forced && !ctrl->ecc_enabled)
263 die("ECC mode forced but non-ECC DIMM installed!");
264 printk(BIOS_DEBUG, "ECC is %s\n", ctrl->ecc_enabled ? "enabled" : "disabled");
265
266 ctrl->lanes = ctrl->ecc_enabled ? 9 : 8;
267
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700268 if (!dimms)
269 die("No DIMMs were found");
270}
271
Patrick Rudolphbb9c90a2016-05-29 17:05:06 +0200272static void save_timings(ramctr_timing *ctrl)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700273{
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700274 /* Save the MRC S3 restore data to cbmem */
Angel Pons7c49cb82020-03-16 23:17:32 +0100275 mrc_cache_stash_data(MRC_TRAINING_DATA, MRC_CACHE_VERSION, ctrl, sizeof(*ctrl));
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700276}
277
Angel Ponsfc930242020-03-24 11:12:09 +0100278static void reinit_ctrl(ramctr_timing *ctrl, const u32 cpuid)
Patrick Rudolph05d4bf7e2017-10-28 16:36:09 +0200279{
280 /* Reset internal state */
281 memset(ctrl, 0, sizeof(*ctrl));
Patrick Rudolph05d4bf7e2017-10-28 16:36:09 +0200282
283 /* Get architecture */
284 ctrl->cpu = cpuid;
285
286 /* Get ECC support and mode */
287 ctrl->ecc_forced = get_host_ecc_forced();
288 ctrl->ecc_supported = ctrl->ecc_forced || get_host_ecc_cap();
289 printk(BIOS_DEBUG, "ECC supported: %s ECC forced: %s\n",
290 ctrl->ecc_supported ? "yes" : "no",
291 ctrl->ecc_forced ? "yes" : "no");
292}
293
Angel Ponsfc930242020-03-24 11:12:09 +0100294static void init_dram_ddr3(int s3resume, const u32 cpuid)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700295{
Angel Pons7c49cb82020-03-16 23:17:32 +0100296 int me_uma_size, cbmem_was_inited, fast_boot, err;
Patrick Rudolph735ecce2016-03-26 10:42:27 +0100297 ramctr_timing ctrl;
Kyösti Mälkki4cb44e52016-11-18 19:11:24 +0200298 spd_raw_data spds[4];
Shelley Chenad9cd682020-07-23 16:10:52 -0700299 size_t mrc_size;
Angel Ponsa6a64182020-03-21 18:06:03 +0100300 ramctr_timing *ctrl_cached = NULL;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700301
Angel Pons88521882020-01-05 20:21:20 +0100302 MCHBAR32(SAPMCTL) |= 1;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200303
304 /* Wait for ME to be ready */
305 intel_early_me_init();
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700306 me_uma_size = intel_early_me_uma_size();
Stefan Reinauer00636b02012-04-04 00:08:51 +0200307
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700308 printk(BIOS_DEBUG, "Starting native Platform init\n");
Stefan Reinauer00636b02012-04-04 00:08:51 +0200309
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700310 wait_txt_clear();
Stefan Reinauer00636b02012-04-04 00:08:51 +0200311
Angel Pons5db1b152020-12-13 16:37:53 +0100312 wrmsr(0x2e6, (msr_t) { .lo = 0, .hi = 0 });
Stefan Reinauer00636b02012-04-04 00:08:51 +0200313
Angel Pons7c49cb82020-03-16 23:17:32 +0100314 const u32 sskpd = MCHBAR32(SSKPD); // !!! = 0x00000000
315 if ((pci_read_config16(SOUTHBRIDGE, 0xa2) & 0xa0) == 0x20 && sskpd && !s3resume) {
316 MCHBAR32(SSKPD) = 0;
317 /* Need reset */
Elyes HAOUASc0567292019-04-28 17:57:47 +0200318 system_reset();
Stefan Reinauer00636b02012-04-04 00:08:51 +0200319 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200320
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700321 early_pch_init_native();
Patrick Rudolph6aca7e62019-03-26 18:22:36 +0100322 early_init_dmi();
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700323 early_thermal_init();
324
Angel Pons7c49cb82020-03-16 23:17:32 +0100325 /* Try to find timings in MRC cache */
Shelley Chenad9cd682020-07-23 16:10:52 -0700326 ctrl_cached = mrc_cache_current_mmap_leak(MRC_TRAINING_DATA,
327 MRC_CACHE_VERSION,
328 &mrc_size);
329 if (mrc_size < sizeof(ctrl))
330 ctrl_cached = NULL;
Angel Ponsa6a64182020-03-21 18:06:03 +0100331
332 /* Before reusing training data, assert that the CPU has not been replaced */
333 if (ctrl_cached && cpuid != ctrl_cached->cpu) {
334
335 /* It is not really worrying on a cold boot, but fatal when resuming from S3 */
336 printk(s3resume ? BIOS_ALERT : BIOS_NOTICE,
337 "CPUID %x differs from stored CPUID %x, CPU was replaced!\n",
338 cpuid, ctrl_cached->cpu);
339
340 /* Invalidate the stored data, it likely does not apply to the current CPU */
341 ctrl_cached = NULL;
342 }
343
344 if (s3resume && !ctrl_cached) {
345 /* S3 resume is impossible, reset to come up cleanly */
346 system_reset();
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700347 }
348
Angel Pons7c49cb82020-03-16 23:17:32 +0100349 /* Verify MRC cache for fast boot */
Kyösti Mälkki38cb8222016-11-18 19:25:52 +0200350 if (!s3resume && ctrl_cached) {
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200351 /* Load SPD unique information data. */
352 memset(spds, 0, sizeof(spds));
353 mainboard_get_spd(spds, 1);
354
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100355 /* check SPD CRC16 to make sure the DIMMs haven't been replaced */
356 fast_boot = verify_crc16_spds_ddr3(spds, ctrl_cached);
357 if (!fast_boot)
358 printk(BIOS_DEBUG, "Stored timings CRC16 mismatch.\n");
Kyösti Mälkki38cb8222016-11-18 19:25:52 +0200359 } else {
360 fast_boot = s3resume;
361 }
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100362
363 if (fast_boot) {
364 printk(BIOS_DEBUG, "Trying stored timings.\n");
365 memcpy(&ctrl, ctrl_cached, sizeof(ctrl));
366
Patrick Rudolph588ccaa2016-04-20 18:00:27 +0200367 err = try_init_dram_ddr3(&ctrl, fast_boot, s3resume, me_uma_size);
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100368 if (err) {
Patrick Rudolph588ccaa2016-04-20 18:00:27 +0200369 if (s3resume) {
370 /* Failed S3 resume, reset to come up cleanly */
Elyes HAOUASc0567292019-04-28 17:57:47 +0200371 system_reset();
Patrick Rudolph588ccaa2016-04-20 18:00:27 +0200372 }
Angel Pons7c49cb82020-03-16 23:17:32 +0100373 /* No need to erase bad MRC cache here, it gets overwritten on a
374 successful boot */
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100375 printk(BIOS_ERR, "Stored timings are invalid !\n");
376 fast_boot = 0;
377 }
378 }
379 if (!fast_boot) {
Patrick Rudolphe74ad212016-11-16 18:06:50 +0100380 /* Reset internal state */
Angel Ponsfc930242020-03-24 11:12:09 +0100381 reinit_ctrl(&ctrl, cpuid);
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100382
Patrick Rudolph05d4bf7e2017-10-28 16:36:09 +0200383 printk(BIOS_INFO, "ECC RAM %s.\n", ctrl.ecc_forced ? "required" :
384 ctrl.ecc_supported ? "supported" : "unsupported");
Patrick Rudolph305035c2016-11-11 18:38:50 +0100385
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100386 /* Get DDR3 SPD data */
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200387 memset(spds, 0, sizeof(spds));
388 mainboard_get_spd(spds, 0);
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100389 dram_find_spds_ddr3(spds, &ctrl);
390
Patrick Rudolph588ccaa2016-04-20 18:00:27 +0200391 err = try_init_dram_ddr3(&ctrl, fast_boot, s3resume, me_uma_size);
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100392 }
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +0100393
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +0100394 if (err) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100395 /* Fallback: disable failing channel */
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +0100396 printk(BIOS_ERR, "RAM training failed, trying fallback.\n");
397 printram("Disable failing channel.\n");
398
Patrick Rudolphe74ad212016-11-16 18:06:50 +0100399 /* Reset internal state */
Angel Ponsfc930242020-03-24 11:12:09 +0100400 reinit_ctrl(&ctrl, cpuid);
Patrick Rudolph305035c2016-11-11 18:38:50 +0100401
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +0100402 /* Reset DDR3 frequency */
403 dram_find_spds_ddr3(spds, &ctrl);
404
Angel Pons7c49cb82020-03-16 23:17:32 +0100405 /* Disable failing channel */
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +0100406 disable_channel(&ctrl, GET_ERR_CHANNEL(err));
407
408 err = try_init_dram_ddr3(&ctrl, fast_boot, s3resume, me_uma_size);
409 }
410
Patrick Rudolph31d19592016-03-26 12:22:34 +0100411 if (err)
412 die("raminit failed");
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700413
Angel Pons88521882020-01-05 20:21:20 +0100414 /* FIXME: should be hardware revision-dependent. The register only exists on IVB. */
415 MCHBAR32(CHANNEL_HASH) = 0x00a030ce;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700416
417 set_scrambling_seed(&ctrl);
418
Patrick Rudolphd0581312020-05-01 18:31:48 +0200419 if (!s3resume && ctrl.ecc_enabled)
420 channel_scrub(&ctrl);
421
Angel Pons88521882020-01-05 20:21:20 +0100422 set_normal_operation(&ctrl);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700423
424 final_registers(&ctrl);
425
Patrick Rudolphd0581312020-05-01 18:31:48 +0200426 /* can't do this earlier because it needs to be done in normal operation */
427 if (CONFIG(DEBUG_RAM_SETUP) && !s3resume && ctrl.ecc_enabled) {
428 uint32_t i, tseg = pci_read_config32(HOST_BRIDGE, TSEGMB);
429
430 printk(BIOS_INFO, "RAMINIT: ECC scrub test on first channel up to 0x%x\n",
431 tseg);
432
433 /*
434 * This test helps to debug the ECC scrubbing.
435 * It likely tests every channel/rank, as rank interleave and enhanced
436 * interleave are enabled, but there's no guarantee for it.
437 */
438
439 /* Skip first MB to avoid special case for A-seg and test up to TSEG */
440 for (i = 1; i < tseg >> 20; i++) {
441 for (int j = 0; j < 1 * MiB; j += 4096) {
442 uintptr_t addr = i * MiB + j;
443 if (read32((u32 *)addr) == 0)
444 continue;
445
446 printk(BIOS_ERR, "RAMINIT: ECC scrub: DRAM not cleared at"
447 " addr 0x%lx\n", addr);
448 break;
449 }
450 }
451 printk(BIOS_INFO, "RAMINIT: ECC scrub test done.\n");
452 }
453
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700454 /* Zone config */
455 dram_zones(&ctrl, 0);
456
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700457 intel_early_me_init_done(ME_INIT_STATUS_SUCCESS);
458 intel_early_me_status();
459
Stefan Reinauer00636b02012-04-04 00:08:51 +0200460 report_memory_config();
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700461
462 cbmem_was_inited = !cbmem_recovery(s3resume);
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100463 if (!fast_boot)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700464 save_timings(&ctrl);
465 if (s3resume && !cbmem_was_inited) {
466 /* Failed S3 resume, reset to come up cleanly */
Elyes HAOUASc0567292019-04-28 17:57:47 +0200467 system_reset();
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700468 }
Patrick Rudolphb97009e2016-02-28 15:24:04 +0100469
Nico Huber9ce59742018-09-13 10:52:44 +0200470 if (!s3resume)
Patrick Rudolph42609d82020-07-27 16:23:36 +0200471 setup_sdram_meminfo(&ctrl);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200472}
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100473
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100474void perform_raminit(int s3resume)
475{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100476 post_code(0x3a);
477
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100478 timestamp_add_now(TS_BEFORE_INITRAM);
479
Angel Ponsfc930242020-03-24 11:12:09 +0100480 init_dram_ddr3(s3resume, cpu_get_cpuid());
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100481}