blob: fddada4ba0abb59ad8bfe1dcb0088931c1e1dbb3 [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
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.
Aaron Durbin76c37002012-10-30 09:03:43 -050014 */
15
16#include <console/console.h>
17#include <string.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050018#include <arch/io.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050019#include <cbmem.h>
20#include <arch/cbfs.h>
21#include <cbfs.h>
Elyes HAOUAS82d46422019-04-28 18:01:48 +020022#include <cf9_reset.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010023#include <halt.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050024#include <ip_checksum.h>
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -050025#include <memory_info.h>
Arthur Heymansf300f362018-01-27 13:39:12 +010026#include <mrc_cache.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050027#include <device/pci_def.h>
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -050028#include <device/dram/ddr3.h>
29#include <smbios.h>
30#include <spd.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020031#include <security/vboot/vboot_common.h>
Arthur Heymansf300f362018-01-27 13:39:12 +010032#include <commonlib/region.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050033#include "raminit.h"
34#include "pei_data.h"
35#include "haswell.h"
36
Arthur Heymansf300f362018-01-27 13:39:12 +010037#define MRC_CACHE_VERSION 1
38
Aaron Durbin2ad1dba2013-02-07 00:51:18 -060039void save_mrc_data(struct pei_data *pei_data)
Aaron Durbin76c37002012-10-30 09:03:43 -050040{
Aaron Durbin76c37002012-10-30 09:03:43 -050041 /* Save the MRC S3 restore data to cbmem */
Arthur Heymansf300f362018-01-27 13:39:12 +010042 mrc_cache_stash_data(MRC_TRAINING_DATA, MRC_CACHE_VERSION,
43 pei_data->mrc_output, pei_data->mrc_output_len);
Aaron Durbin76c37002012-10-30 09:03:43 -050044}
45
46static void prepare_mrc_cache(struct pei_data *pei_data)
47{
Arthur Heymansf300f362018-01-27 13:39:12 +010048 struct region_device rdev;
Aaron Durbin76c37002012-10-30 09:03:43 -050049
50 // preset just in case there is an error
51 pei_data->mrc_input = NULL;
52 pei_data->mrc_input_len = 0;
53
Arthur Heymansf300f362018-01-27 13:39:12 +010054 if (mrc_cache_get_current(MRC_TRAINING_DATA, MRC_CACHE_VERSION, &rdev))
Aaron Durbin76c37002012-10-30 09:03:43 -050055 /* error message printed in find_current_mrc_cache */
56 return;
Aaron Durbin76c37002012-10-30 09:03:43 -050057
Arthur Heymansf300f362018-01-27 13:39:12 +010058 pei_data->mrc_input = rdev_mmap_full(&rdev);
59 pei_data->mrc_input_len = region_device_sz(&rdev);
Aaron Durbin76c37002012-10-30 09:03:43 -050060
Arthur Heymansf300f362018-01-27 13:39:12 +010061 printk(BIOS_DEBUG, "%s: at %p, size %x\n",
62 __func__, pei_data->mrc_input, pei_data->mrc_input_len);
Aaron Durbin76c37002012-10-30 09:03:43 -050063}
64
Elyes HAOUAS448d9fb2018-05-22 12:51:27 +020065static const char *ecc_decoder[] = {
Aaron Durbin76c37002012-10-30 09:03:43 -050066 "inactive",
67 "active on IO",
68 "disabled on IO",
69 "active"
70};
71
72/*
73 * Dump in the log memory controller configuration as read from the memory
74 * controller registers.
75 */
76static void report_memory_config(void)
77{
78 u32 addr_decoder_common, addr_decode_ch[2];
79 int i;
80
81 addr_decoder_common = MCHBAR32(0x5000);
82 addr_decode_ch[0] = MCHBAR32(0x5004);
83 addr_decode_ch[1] = MCHBAR32(0x5008);
84
85 printk(BIOS_DEBUG, "memcfg DDR3 clock %d MHz\n",
86 (MCHBAR32(0x5e04) * 13333 * 2 + 50)/100);
87 printk(BIOS_DEBUG, "memcfg channel assignment: A: %d, B % d, C % d\n",
88 addr_decoder_common & 3,
89 (addr_decoder_common >> 2) & 3,
90 (addr_decoder_common >> 4) & 3);
91
92 for (i = 0; i < ARRAY_SIZE(addr_decode_ch); i++) {
93 u32 ch_conf = addr_decode_ch[i];
94 printk(BIOS_DEBUG, "memcfg channel[%d] config (%8.8x):\n",
95 i, ch_conf);
96 printk(BIOS_DEBUG, " ECC %s\n",
97 ecc_decoder[(ch_conf >> 24) & 3]);
98 printk(BIOS_DEBUG, " enhanced interleave mode %s\n",
99 ((ch_conf >> 22) & 1) ? "on" : "off");
100 printk(BIOS_DEBUG, " rank interleave %s\n",
101 ((ch_conf >> 21) & 1) ? "on" : "off");
Duncan Laurie8d774022013-10-22 16:32:49 -0700102 printk(BIOS_DEBUG, " DIMMA %d MB width %s %s rank%s\n",
Aaron Durbin76c37002012-10-30 09:03:43 -0500103 ((ch_conf >> 0) & 0xff) * 256,
Duncan Laurie8d774022013-10-22 16:32:49 -0700104 ((ch_conf >> 19) & 1) ? "x16" : "x8 or x32",
Aaron Durbin76c37002012-10-30 09:03:43 -0500105 ((ch_conf >> 17) & 1) ? "dual" : "single",
106 ((ch_conf >> 16) & 1) ? "" : ", selected");
Duncan Laurie8d774022013-10-22 16:32:49 -0700107 printk(BIOS_DEBUG, " DIMMB %d MB width %s %s rank%s\n",
Aaron Durbin76c37002012-10-30 09:03:43 -0500108 ((ch_conf >> 8) & 0xff) * 256,
Ryan Salsamendidab81a42017-06-30 17:36:41 -0700109 ((ch_conf >> 20) & 1) ? "x16" : "x8 or x32",
Aaron Durbin76c37002012-10-30 09:03:43 -0500110 ((ch_conf >> 18) & 1) ? "dual" : "single",
111 ((ch_conf >> 16) & 1) ? ", selected" : "");
112 }
113}
114
115/**
116 * Find PEI executable in coreboot filesystem and execute it.
117 *
118 * @param pei_data: configuration data for UEFI PEI reference code
119 */
120void sdram_initialize(struct pei_data *pei_data)
121{
Aaron Durbin76c37002012-10-30 09:03:43 -0500122 unsigned long entry;
Arthur Heymans8da2fa02018-06-06 10:35:45 +0200123 uint32_t type = CBFS_TYPE_MRC;
124 struct cbfsf f;
Aaron Durbin76c37002012-10-30 09:03:43 -0500125
Aaron Durbin76c37002012-10-30 09:03:43 -0500126 printk(BIOS_DEBUG, "Starting UEFI PEI System Agent\n");
127
Aaron Durbin76c37002012-10-30 09:03:43 -0500128 /*
129 * Do not pass MRC data in for recovery mode boot,
130 * Always pass it in for S3 resume.
131 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700132 if (!vboot_recovery_mode_enabled() || pei_data->boot_mode == 2)
Aaron Durbin76c37002012-10-30 09:03:43 -0500133 prepare_mrc_cache(pei_data);
134
135 /* If MRC data is not found we cannot continue S3 resume. */
136 if (pei_data->boot_mode == 2 && !pei_data->mrc_input) {
Duncan Laurie727b5452013-08-08 16:28:41 -0700137 post_code(POST_RESUME_FAILURE);
138 printk(BIOS_DEBUG, "Giving up in sdram_initialize: "
139 "No MRC data\n");
Elyes HAOUAS82d46422019-04-28 18:01:48 +0200140 system_reset();
Aaron Durbin76c37002012-10-30 09:03:43 -0500141 }
142
143 /* Pass console handler in pei_data */
Kyösti Mälkki657e0be2014-02-04 19:03:57 +0200144 pei_data->tx_byte = do_putchar;
Aaron Durbin76c37002012-10-30 09:03:43 -0500145
Arthur Heymans8da2fa02018-06-06 10:35:45 +0200146 /*
147 * Locate and call UEFI System Agent binary. The binary needs to be at
148 * a fixed offset in the flash and can therefore only reside in the
149 * COREBOOT fmap region
150 */
151 if (cbfs_locate_file_in_region(&f, "COREBOOT", "mrc.bin", &type) < 0)
152 die("mrc.bin not found!");
153 /* We don't care about leaking the mapping */
154 entry = (unsigned long)rdev_mmap_full(&f.data);
Aaron Durbin76c37002012-10-30 09:03:43 -0500155 if (entry) {
156 int rv;
157 asm volatile (
158 "call *%%ecx\n\t"
159 :"=a" (rv) : "c" (entry), "a" (pei_data));
160 if (rv) {
161 switch (rv) {
162 case -1:
163 printk(BIOS_ERR, "PEI version mismatch.\n");
164 break;
165 case -2:
166 printk(BIOS_ERR, "Invalid memory frequency.\n");
167 break;
168 default:
169 printk(BIOS_ERR, "MRC returned %x.\n", rv);
170 }
171 die("Nonzero MRC return value.\n");
172 }
173 } else {
174 die("UEFI PEI System Agent not found.\n");
175 }
176
177 /* For reference print the System Agent version
178 * after executing the UEFI PEI stage.
179 */
180 u32 version = MCHBAR32(0x5034);
181 printk(BIOS_DEBUG, "System Agent Version %d.%d.%d Build %d\n",
Elyes HAOUASa342f392018-10-17 10:56:26 +0200182 version >> 24, (version >> 16) & 0xff,
Aaron Durbin76c37002012-10-30 09:03:43 -0500183 (version >> 8) & 0xff, version & 0xff);
184
Aaron Durbin76c37002012-10-30 09:03:43 -0500185 report_memory_config();
Aaron Durbin76c37002012-10-30 09:03:43 -0500186}
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500187
188void setup_sdram_meminfo(struct pei_data *pei_data)
189{
190 u32 addr_decoder_common, addr_decode_ch[2];
191 struct memory_info* mem_info;
192 struct dimm_info *dimm;
193 int ddr_frequency;
194 int dimm_size;
195 int ch, d_num;
196 int dimm_cnt = 0;
197
198 mem_info = cbmem_add(CBMEM_ID_MEMINFO, sizeof(struct memory_info));
Nico Huberacac02d2017-06-20 14:49:04 +0200199 if (!mem_info)
200 die("Failed to add memory info to CBMEM.\n");
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500201 memset(mem_info, 0, sizeof(struct memory_info));
202
203 addr_decoder_common = MCHBAR32(0x5000);
204 addr_decode_ch[0] = MCHBAR32(0x5004);
205 addr_decode_ch[1] = MCHBAR32(0x5008);
206
207 ddr_frequency = (MCHBAR32(0x5e04) * 13333 * 2 + 50) / 100;
208
209 for (ch = 0; ch < ARRAY_SIZE(addr_decode_ch); ch++) {
210 u32 ch_conf = addr_decode_ch[ch];
211 /* DIMMs A/B */
212 for (d_num = 0; d_num < 2; d_num++) {
213 dimm_size = ((ch_conf >> (d_num * 8)) & 0xff) * 256;
214 if (dimm_size) {
215 dimm = &mem_info->dimm[dimm_cnt];
216 dimm->dimm_size = dimm_size;
217 dimm->ddr_type = MEMORY_TYPE_DDR3;
218 dimm->ddr_frequency = ddr_frequency;
219 dimm->rank_per_dimm = 1 + ((ch_conf >> (17 + d_num)) & 1);
220 dimm->channel_num = ch;
221 dimm->dimm_num = d_num;
222 dimm->bank_locator = ch * 2;
223 memcpy(dimm->serial,
224 &pei_data->spd_data[dimm_cnt][SPD_DIMM_SERIAL_NUM],
225 SPD_DIMM_SERIAL_LEN);
226 memcpy(dimm->module_part_number,
227 &pei_data->spd_data[dimm_cnt][SPD_DIMM_PART_NUM],
228 SPD_DIMM_PART_LEN);
229 dimm->mod_id =
230 (pei_data->spd_data[dimm_cnt][SPD_DIMM_MOD_ID2] << 8) |
231 (pei_data->spd_data[dimm_cnt][SPD_DIMM_MOD_ID1] & 0xFF);
232 dimm->mod_type = SPD_SODIMM;
233 dimm->bus_width = 0x3; /* 64-bit */
234 dimm_cnt++;
235 }
236 }
237 }
238 mem_info->dimm_cnt = dimm_cnt;
239}