blob: 4b92d18cf070243d37bcaa00064adcd48ea03d8f [file] [log] [blame]
Stefan Reinauer00636b02012-04-04 00:08:51 +02001/*
2 * This file is part of the coreboot project.
3 *
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -07004 * Copyright (C) 2014 Damien Zammit <damien@zamaudio.com>
5 * Copyright (C) 2014 Vladimir Serbinenko <phcoder@gmail.com>
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01006 * Copyright (C) 2016 Patrick Rudolph <siro@das-labor.org>
Stefan Reinauer00636b02012-04-04 00:08:51 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Stefan Reinauer00636b02012-04-04 00:08:51 +020016 */
17
18#include <console/console.h>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020019#include <console/usb.h>
Kyösti Mälkki5687fc92013-11-28 18:11:49 +020020#include <bootmode.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020021#include <string.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020022#include <arch/io.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020023#include <cbmem.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070024#include <halt.h>
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010025#include <timestamp.h>
Alexander Couzens81c5c762016-03-09 03:13:45 +010026#include <northbridge/intel/common/mrc_cache.h>
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010027#include <southbridge/intel/bd82x6x/me.h>
28#include <southbridge/intel/bd82x6x/smbus.h>
29#include <cpu/x86/msr.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070030#include <delay.h>
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010031#include <smbios.h>
32#include <memory_info.h>
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070033#include <lib.h>
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010034#include "raminit_native.h"
35#include "raminit_common.h"
36#include "sandybridge.h"
Stefan Reinauer00636b02012-04-04 00:08:51 +020037
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070038/* FIXME: no ECC support. */
39/* FIXME: no support for 3-channel chipsets. */
Stefan Reinauer00636b02012-04-04 00:08:51 +020040
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070041static const char *ecc_decoder[] = {
Stefan Reinauer00636b02012-04-04 00:08:51 +020042 "inactive",
43 "active on IO",
44 "disabled on IO",
45 "active"
46};
47
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070048static void wait_txt_clear(void)
49{
50 struct cpuid_result cp;
51
52 cp = cpuid_ext(0x1, 0x0);
53 /* Check if TXT is supported? */
54 if (!(cp.ecx & 0x40))
55 return;
56 /* Some TXT public bit. */
57 if (!(read32((void *)0xfed30010) & 1))
58 return;
59 /* Wait for TXT clear. */
Elyes HAOUAS7db506c2016-10-02 11:56:39 +020060 while (!(read8((void *)0xfed40000) & (1 << 7)));
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070061}
62
Stefan Reinauer00636b02012-04-04 00:08:51 +020063/*
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +010064 * Disable a channel in ramctr_timing.
65 */
66static void disable_channel(ramctr_timing *ctrl, int channel) {
67 ctrl->rankmap[channel] = 0;
68 memset(&ctrl->rank_mirror[channel][0], 0, sizeof(ctrl->rank_mirror[0]));
69 ctrl->channel_size_mb[channel] = 0;
70 ctrl->cmd_stretch[channel] = 0;
71 ctrl->mad_dimm[channel] = 0;
72 memset(&ctrl->timings[channel][0], 0, sizeof(ctrl->timings[0]));
Patrick Rudolph74163d62016-11-17 20:02:43 +010073 memset(&ctrl->info.dimm[channel][0], 0, sizeof(ctrl->info.dimm[0]));
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +010074}
75
76/*
Patrick Rudolphb97009e2016-02-28 15:24:04 +010077 * Fill cbmem with information for SMBIOS type 17.
78 */
Patrick Rudolph735ecce2016-03-26 10:42:27 +010079static void fill_smbios17(ramctr_timing *ctrl)
Patrick Rudolphb97009e2016-02-28 15:24:04 +010080{
81 struct memory_info *mem_info;
82 int channel, slot;
83 struct dimm_info *dimm;
Patrick Rudolph735ecce2016-03-26 10:42:27 +010084 uint16_t ddr_freq;
85 dimm_info *info = &ctrl->info;
86
87 ddr_freq = (1000 << 8) / ctrl->tCK;
Patrick Rudolphb97009e2016-02-28 15:24:04 +010088
89 /*
90 * Allocate CBMEM area for DIMM information used to populate SMBIOS
91 * table 17
92 */
93 mem_info = cbmem_add(CBMEM_ID_MEMINFO, sizeof(*mem_info));
94 printk(BIOS_DEBUG, "CBMEM entry for DIMM info: 0x%p\n", mem_info);
95 if (!mem_info)
96 return;
97
98 memset(mem_info, 0, sizeof(*mem_info));
99
Elyes HAOUAS12df9502016-08-23 21:29:48 +0200100 FOR_ALL_CHANNELS for (slot = 0; slot < NUM_SLOTS; slot++) {
Patrick Rudolphb97009e2016-02-28 15:24:04 +0100101 dimm = &mem_info->dimm[mem_info->dimm_cnt];
102 if (info->dimm[channel][slot].size_mb) {
103 dimm->ddr_type = MEMORY_TYPE_DDR3;
104 dimm->ddr_frequency = ddr_freq;
105 dimm->dimm_size = info->dimm[channel][slot].size_mb;
106 dimm->channel_num = channel;
107 dimm->rank_per_dimm = info->dimm[channel][slot].ranks;
108 dimm->dimm_num = slot;
109 memcpy(dimm->module_part_number,
110 info->dimm[channel][slot].part_number, 16);
111 dimm->mod_id = info->dimm[channel][slot].manufacturer_id;
112 dimm->mod_type = info->dimm[channel][slot].dimm_type;
113 dimm->bus_width = info->dimm[channel][slot].width;
114 mem_info->dimm_cnt++;
115 }
116 }
117}
118
119/*
Stefan Reinauer00636b02012-04-04 00:08:51 +0200120 * Dump in the log memory controller configuration as read from the memory
121 * controller registers.
122 */
123static void report_memory_config(void)
124{
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700125 u32 addr_decoder_common, addr_decode_ch[NUM_CHANNELS];
Stefan Reinauer00636b02012-04-04 00:08:51 +0200126 int i;
127
128 addr_decoder_common = MCHBAR32(0x5000);
129 addr_decode_ch[0] = MCHBAR32(0x5004);
130 addr_decode_ch[1] = MCHBAR32(0x5008);
131
132 printk(BIOS_DEBUG, "memcfg DDR3 clock %d MHz\n",
Patrick Rudolph069018d2016-11-12 11:43:59 +0100133 (MCHBAR32(MC_BIOS_DATA) * 13333 * 2 + 50) / 100);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200134 printk(BIOS_DEBUG, "memcfg channel assignment: A: %d, B % d, C % d\n",
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700135 addr_decoder_common & 3, (addr_decoder_common >> 2) & 3,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200136 (addr_decoder_common >> 4) & 3);
137
138 for (i = 0; i < ARRAY_SIZE(addr_decode_ch); i++) {
139 u32 ch_conf = addr_decode_ch[i];
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700140 printk(BIOS_DEBUG, "memcfg channel[%d] config (%8.8x):\n", i,
141 ch_conf);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200142 printk(BIOS_DEBUG, " ECC %s\n",
143 ecc_decoder[(ch_conf >> 24) & 3]);
144 printk(BIOS_DEBUG, " enhanced interleave mode %s\n",
145 ((ch_conf >> 22) & 1) ? "on" : "off");
146 printk(BIOS_DEBUG, " rank interleave %s\n",
147 ((ch_conf >> 21) & 1) ? "on" : "off");
148 printk(BIOS_DEBUG, " DIMMA %d MB width x%d %s rank%s\n",
149 ((ch_conf >> 0) & 0xff) * 256,
150 ((ch_conf >> 19) & 1) ? 16 : 8,
151 ((ch_conf >> 17) & 1) ? "dual" : "single",
152 ((ch_conf >> 16) & 1) ? "" : ", selected");
153 printk(BIOS_DEBUG, " DIMMB %d MB width x%d %s rank%s\n",
154 ((ch_conf >> 8) & 0xff) * 256,
155 ((ch_conf >> 20) & 1) ? 16 : 8,
156 ((ch_conf >> 18) & 1) ? "dual" : "single",
157 ((ch_conf >> 16) & 1) ? ", selected" : "");
158 }
159}
160
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100161/*
162 * Return CRC16 match for all SPDs.
163 */
164static int verify_crc16_spds_ddr3(spd_raw_data *spd, ramctr_timing *ctrl)
165{
166 int channel, slot, spd_slot;
167 int match = 1;
168
169 FOR_ALL_CHANNELS {
170 for (slot = 0; slot < NUM_SLOTS; slot++) {
171 spd_slot = 2 * channel + slot;
172 match &= ctrl->spd_crc[channel][slot] ==
Kyösti Mälkkifc5d85c2016-11-18 18:52:04 +0200173 spd_ddr3_calc_unique_crc(spd[spd_slot], sizeof(spd_raw_data));
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100174 }
175 }
176 return match;
177}
178
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200179void read_spd(spd_raw_data * spd, u8 addr, bool id_only)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200180{
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700181 int j;
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200182 if (id_only) {
183 for (j = 117; j < 128; j++)
184 (*spd)[j] = do_smbus_read_byte(SMBUS_IO_BASE, addr, j);
185 } else {
186 for (j = 0; j < 256; j++)
187 (*spd)[j] = do_smbus_read_byte(SMBUS_IO_BASE, addr, j);
188 }
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700189}
190
Patrick Rudolph735ecce2016-03-26 10:42:27 +0100191static void dram_find_spds_ddr3(spd_raw_data *spd, ramctr_timing *ctrl)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700192{
Patrick Rudolphbd1fdc62016-01-26 08:45:21 +0100193 int dimms = 0, dimms_on_channel;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700194 int channel, slot, spd_slot;
Patrick Rudolph735ecce2016-03-26 10:42:27 +0100195 dimm_info *dimm = &ctrl->info;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700196
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200197 memset (ctrl->rankmap, 0, sizeof(ctrl->rankmap));
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700198
199 ctrl->extended_temperature_range = 1;
200 ctrl->auto_self_refresh = 1;
201
202 FOR_ALL_CHANNELS {
203 ctrl->channel_size_mb[channel] = 0;
204
Patrick Rudolphbd1fdc62016-01-26 08:45:21 +0100205 dimms_on_channel = 0;
206 /* count dimms on channel */
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700207 for (slot = 0; slot < NUM_SLOTS; slot++) {
208 spd_slot = 2 * channel + slot;
209 spd_decode_ddr3(&dimm->dimm[channel][slot], spd[spd_slot]);
Patrick Rudolphbd1fdc62016-01-26 08:45:21 +0100210 if (dimm->dimm[channel][slot].dram_type == SPD_MEMORY_TYPE_SDRAM_DDR3)
211 dimms_on_channel++;
212 }
213
214 for (slot = 0; slot < NUM_SLOTS; slot++) {
215 spd_slot = 2 * channel + slot;
216 /* search for XMP profile */
217 spd_xmp_decode_ddr3(&dimm->dimm[channel][slot],
218 spd[spd_slot],
219 DDR3_XMP_PROFILE_1);
220
221 if (dimm->dimm[channel][slot].dram_type != SPD_MEMORY_TYPE_SDRAM_DDR3) {
222 printram("No valid XMP profile found.\n");
223 spd_decode_ddr3(&dimm->dimm[channel][slot], spd[spd_slot]);
224 } else if (dimms_on_channel > dimm->dimm[channel][slot].dimms_per_channel) {
225 printram("XMP profile supports %u DIMMs, but %u DIMMs are installed.\n",
226 dimm->dimm[channel][slot].dimms_per_channel,
227 dimms_on_channel);
228 spd_decode_ddr3(&dimm->dimm[channel][slot], spd[spd_slot]);
229 } else if (dimm->dimm[channel][slot].voltage != 1500) {
230 /* TODO: support other DDR3 voltage than 1500mV */
231 printram("XMP profile's requested %u mV is unsupported.\n",
232 dimm->dimm[channel][slot].voltage);
233 spd_decode_ddr3(&dimm->dimm[channel][slot], spd[spd_slot]);
234 }
235
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100236 /* fill in CRC16 for MRC cache */
237 ctrl->spd_crc[channel][slot] =
Kyösti Mälkkifc5d85c2016-11-18 18:52:04 +0200238 spd_ddr3_calc_unique_crc(spd[spd_slot], sizeof(spd_raw_data));
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100239
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700240 if (dimm->dimm[channel][slot].dram_type != SPD_MEMORY_TYPE_SDRAM_DDR3) {
241 // set dimm invalid
242 dimm->dimm[channel][slot].ranks = 0;
243 dimm->dimm[channel][slot].size_mb = 0;
244 continue;
245 }
246
247 dram_print_spd_ddr3(&dimm->dimm[channel][slot]);
248 dimms++;
249 ctrl->rank_mirror[channel][slot * 2] = 0;
250 ctrl->rank_mirror[channel][slot * 2 + 1] = dimm->dimm[channel][slot].flags.pins_mirrored;
251 ctrl->channel_size_mb[channel] += dimm->dimm[channel][slot].size_mb;
252
253 ctrl->auto_self_refresh &= dimm->dimm[channel][slot].flags.asr;
254 ctrl->extended_temperature_range &= dimm->dimm[channel][slot].flags.ext_temp_refresh;
255
256 ctrl->rankmap[channel] |= ((1 << dimm->dimm[channel][slot].ranks) - 1) << (2 * slot);
Patrick Rudolpha649a542016-01-17 18:32:06 +0100257 printk(BIOS_DEBUG, "channel[%d] rankmap = 0x%x\n",
258 channel, ctrl->rankmap[channel]);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700259 }
260 if ((ctrl->rankmap[channel] & 3) && (ctrl->rankmap[channel] & 0xc)
261 && dimm->dimm[channel][0].reference_card <= 5 && dimm->dimm[channel][1].reference_card <= 5) {
262 const int ref_card_offset_table[6][6] = {
263 { 0, 0, 0, 0, 2, 2, },
264 { 0, 0, 0, 0, 2, 2, },
265 { 0, 0, 0, 0, 2, 2, },
266 { 0, 0, 0, 0, 1, 1, },
267 { 2, 2, 2, 1, 0, 0, },
268 { 2, 2, 2, 1, 0, 0, },
269 };
270 ctrl->ref_card_offset[channel] = ref_card_offset_table[dimm->dimm[channel][0].reference_card]
271 [dimm->dimm[channel][1].reference_card];
272 } else
273 ctrl->ref_card_offset[channel] = 0;
274 }
275
276 if (!dimms)
277 die("No DIMMs were found");
278}
279
Patrick Rudolphbb9c90a2016-05-29 17:05:06 +0200280static void save_timings(ramctr_timing *ctrl)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700281{
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700282 /* Save the MRC S3 restore data to cbmem */
Patrick Rudolphbb9c90a2016-05-29 17:05:06 +0200283 store_current_mrc_cache(ctrl, sizeof(*ctrl));
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700284}
285
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100286static int try_init_dram_ddr3(ramctr_timing *ctrl, int fast_boot,
Patrick Rudolph588ccaa2016-04-20 18:00:27 +0200287 int s3_resume, int me_uma_size)
Patrick Rudolph27e085a2016-03-26 10:59:02 +0100288{
Patrick Rudolph305035c2016-11-11 18:38:50 +0100289 if (ctrl->sandybridge)
290 return try_init_dram_ddr3_sandy(ctrl, fast_boot, s3_resume, me_uma_size);
291 else
292 return try_init_dram_ddr3_ivy(ctrl, fast_boot, s3_resume, me_uma_size);
Patrick Rudolph27e085a2016-03-26 10:59:02 +0100293}
294
Kyösti Mälkki4cb44e52016-11-18 19:11:24 +0200295static void init_dram_ddr3(int mobile, int min_tck, int s3resume)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700296{
297 int me_uma_size;
298 int cbmem_was_inited;
Patrick Rudolph735ecce2016-03-26 10:42:27 +0100299 ramctr_timing ctrl;
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100300 int fast_boot;
Kyösti Mälkki4cb44e52016-11-18 19:11:24 +0200301 spd_raw_data spds[4];
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100302 struct mrc_data_container *mrc_cache;
303 ramctr_timing *ctrl_cached;
Patrick Rudolph305035c2016-11-11 18:38:50 +0100304 struct cpuid_result cpures;
Patrick Rudolph31d19592016-03-26 12:22:34 +0100305 int err;
Patrick Rudolph305035c2016-11-11 18:38:50 +0100306 u32 cpu;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700307
308 MCHBAR32(0x5f00) |= 1;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200309
Vadim Bendebury7a3f36a2012-04-18 15:47:32 -0700310 report_platform_info();
311
Stefan Reinauer00636b02012-04-04 00:08:51 +0200312 /* Wait for ME to be ready */
313 intel_early_me_init();
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700314 me_uma_size = intel_early_me_uma_size();
Stefan Reinauer00636b02012-04-04 00:08:51 +0200315
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700316 printk(BIOS_DEBUG, "Starting native Platform init\n");
Stefan Reinauer00636b02012-04-04 00:08:51 +0200317
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700318 u32 reg_5d10;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200319
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700320 wait_txt_clear();
Stefan Reinauer00636b02012-04-04 00:08:51 +0200321
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700322 wrmsr(0x000002e6, (msr_t) { .lo = 0, .hi = 0 });
Stefan Reinauer00636b02012-04-04 00:08:51 +0200323
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700324 reg_5d10 = read32(DEFAULT_MCHBAR + 0x5d10); // !!! = 0x00000000
Kyösti Mälkkid45114f2013-07-26 08:53:59 +0300325 if ((pci_read_config16(SOUTHBRIDGE, 0xa2) & 0xa0) == 0x20 /* 0x0004 */
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700326 && reg_5d10 && !s3resume) {
327 write32(DEFAULT_MCHBAR + 0x5d10, 0);
328 /* Need reset. */
Stefan Reinauer00636b02012-04-04 00:08:51 +0200329 outb(0x6, 0xcf9);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700330
Patrick Georgi546953c2014-11-29 10:38:17 +0100331 halt();
Stefan Reinauer00636b02012-04-04 00:08:51 +0200332 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200333
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700334 early_pch_init_native();
335 early_thermal_init();
336
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100337 /* try to find timings in MRC cache */
338 mrc_cache = find_current_mrc_cache();
339 if (!mrc_cache || (mrc_cache->mrc_data_size < sizeof(ctrl))) {
340 if (s3resume) {
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700341 /* Failed S3 resume, reset to come up cleanly */
342 outb(0x6, 0xcf9);
343 halt();
Stefan Reinauer00636b02012-04-04 00:08:51 +0200344 }
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100345 ctrl_cached = NULL;
Patrick Rudolph27e085a2016-03-26 10:59:02 +0100346 } else {
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100347 ctrl_cached = (ramctr_timing *)mrc_cache->mrc_data;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700348 }
349
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100350 /* verify MRC cache for fast boot */
Kyösti Mälkki38cb8222016-11-18 19:25:52 +0200351 if (!s3resume && ctrl_cached) {
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200352 /* Load SPD unique information data. */
353 memset(spds, 0, sizeof(spds));
354 mainboard_get_spd(spds, 1);
355
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100356 /* check SPD CRC16 to make sure the DIMMs haven't been replaced */
357 fast_boot = verify_crc16_spds_ddr3(spds, ctrl_cached);
358 if (!fast_boot)
359 printk(BIOS_DEBUG, "Stored timings CRC16 mismatch.\n");
Kyösti Mälkki38cb8222016-11-18 19:25:52 +0200360 } else {
361 fast_boot = s3resume;
362 }
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100363
364 if (fast_boot) {
365 printk(BIOS_DEBUG, "Trying stored timings.\n");
366 memcpy(&ctrl, ctrl_cached, sizeof(ctrl));
367
Patrick Rudolph588ccaa2016-04-20 18:00:27 +0200368 err = try_init_dram_ddr3(&ctrl, fast_boot, s3resume, me_uma_size);
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100369 if (err) {
Patrick Rudolph588ccaa2016-04-20 18:00:27 +0200370 if (s3resume) {
371 /* Failed S3 resume, reset to come up cleanly */
372 outb(0x6, 0xcf9);
373 halt();
374 }
375 /* no need to erase bad mrc cache here, it gets overwritten on
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100376 * successful boot. */
377 printk(BIOS_ERR, "Stored timings are invalid !\n");
378 fast_boot = 0;
379 }
380 }
381 if (!fast_boot) {
Patrick Rudolphe74ad212016-11-16 18:06:50 +0100382 /* Reset internal state */
383 memset(&ctrl, 0, sizeof(ctrl));
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100384 ctrl.mobile = mobile;
385 ctrl.tCK = min_tck;
386
Patrick Rudolph305035c2016-11-11 18:38:50 +0100387 /* Get architecture */
388 cpures = cpuid(1);
389 cpu = cpures.eax;
390 ctrl.sandybridge = IS_SANDY_CPU(cpu);
391
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100392 /* Get DDR3 SPD data */
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200393 memset(spds, 0, sizeof(spds));
394 mainboard_get_spd(spds, 0);
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100395 dram_find_spds_ddr3(spds, &ctrl);
396
Patrick Rudolph588ccaa2016-04-20 18:00:27 +0200397 err = try_init_dram_ddr3(&ctrl, fast_boot, s3resume, me_uma_size);
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100398 }
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +0100399
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +0100400 if (err) {
401 /* fallback: disable failing channel */
402 printk(BIOS_ERR, "RAM training failed, trying fallback.\n");
403 printram("Disable failing channel.\n");
404
Patrick Rudolphe74ad212016-11-16 18:06:50 +0100405 /* Reset internal state */
406 memset(&ctrl, 0, sizeof(ctrl));
407 ctrl.mobile = mobile;
408 ctrl.tCK = min_tck;
409
Patrick Rudolph305035c2016-11-11 18:38:50 +0100410 /* Get architecture */
411 cpures = cpuid(1);
412 cpu = cpures.eax;
413 ctrl.sandybridge = IS_SANDY_CPU(cpu);
414
Patrick Rudolph2ccb74b2016-03-26 12:16:29 +0100415 /* Reset DDR3 frequency */
416 dram_find_spds_ddr3(spds, &ctrl);
417
418 /* disable failing channel */
419 disable_channel(&ctrl, GET_ERR_CHANNEL(err));
420
421 err = try_init_dram_ddr3(&ctrl, fast_boot, s3resume, me_uma_size);
422 }
423
Patrick Rudolph31d19592016-03-26 12:22:34 +0100424 if (err)
425 die("raminit failed");
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700426
427 /* FIXME: should be hardware revision-dependent. */
428 write32(DEFAULT_MCHBAR + 0x5024, 0x00a030ce);
429
430 set_scrambling_seed(&ctrl);
431
432 set_42a0(&ctrl);
433
434 final_registers(&ctrl);
435
436 /* Zone config */
437 dram_zones(&ctrl, 0);
438
Patrick Rudolph77db3e12016-11-26 10:11:14 +0100439 /* Non intrusive, fast ram check */
440 quick_ram_check();
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700441
442 intel_early_me_status();
443 intel_early_me_init_done(ME_INIT_STATUS_SUCCESS);
444 intel_early_me_status();
445
Stefan Reinauer00636b02012-04-04 00:08:51 +0200446 report_memory_config();
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700447
448 cbmem_was_inited = !cbmem_recovery(s3resume);
Patrick Rudolph56abd4d2016-03-13 11:07:45 +0100449 if (!fast_boot)
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700450 save_timings(&ctrl);
451 if (s3resume && !cbmem_was_inited) {
452 /* Failed S3 resume, reset to come up cleanly */
453 outb(0x6, 0xcf9);
454 halt();
455 }
Patrick Rudolphb97009e2016-02-28 15:24:04 +0100456
Patrick Rudolph735ecce2016-03-26 10:42:27 +0100457 fill_smbios17(&ctrl);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200458}
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100459
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100460void perform_raminit(int s3resume)
461{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100462 post_code(0x3a);
463
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100464 timestamp_add_now(TS_BEFORE_INITRAM);
465
Kyösti Mälkki4cb44e52016-11-18 19:11:24 +0200466 init_dram_ddr3(1, get_mem_min_tck(), s3resume);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100467}