blob: b7ccdecdad2fae47757060a1802a59ee48ced18d [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 secunet Security Networks AG
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Patrick Georgi2efc8802012-11-06 11:03:53 +010015 */
16
17#include <stdint.h>
Kyösti Mälkki931c1dc2014-06-30 09:40:19 +030018#include <stdlib.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010019#include <arch/cpu.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020020#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020021#include <device/pci_ops.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010022#include <device/pci_def.h>
Patrick Rudolph266a1f72016-06-09 18:13:34 +020023#include <device/device.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010024#include <spd.h>
25#include <console/console.h>
26#include <lib.h>
Arthur Heymans10141c32016-10-27 00:31:41 +020027#include <delay.h>
Arthur Heymans049347f2017-05-12 11:54:08 +020028#include <timestamp.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010029#include "gm45.h"
Patrick Rudolph266a1f72016-06-09 18:13:34 +020030#include "chip.h"
Patrick Georgi2efc8802012-11-06 11:03:53 +010031
32static const gmch_gfx_t gmch_gfx_types[][5] = {
33/* MAX_667MHz MAX_533MHz MAX_400MHz MAX_333MHz MAX_800MHz */
34 { GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_UNKNOWN },
35 { GMCH_GM47, GMCH_GM45, GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_GM49 },
36 { GMCH_GE45, GMCH_GE45, GMCH_GE45, GMCH_GE45, GMCH_GE45 },
37 { GMCH_UNKNOWN, GMCH_GL43, GMCH_GL40, GMCH_UNKNOWN, GMCH_UNKNOWN },
38 { GMCH_UNKNOWN, GMCH_GS45, GMCH_GS40, GMCH_UNKNOWN, GMCH_UNKNOWN },
39 { GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_UNKNOWN },
40 { GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_UNKNOWN, GMCH_UNKNOWN },
41 { GMCH_PM45, GMCH_PM45, GMCH_PM45, GMCH_PM45, GMCH_PM45 },
42};
43
44void get_gmch_info(sysinfo_t *sysinfo)
45{
46 sysinfo->stepping = pci_read_config8(PCI_DEV(0, 0, 0), PCI_CLASS_REVISION);
47 if ((sysinfo->stepping > STEPPING_B3) &&
48 (sysinfo->stepping != STEPPING_CONVERSION_A1))
49 die("Unknown stepping.\n");
50 if (sysinfo->stepping <= STEPPING_B3)
51 printk(BIOS_DEBUG, "Stepping %c%d\n", 'A' + sysinfo->stepping / 4, sysinfo->stepping % 4);
52 else
53 printk(BIOS_DEBUG, "Conversion stepping A1\n");
54
55 const u32 eax = cpuid_ext(0x04, 0).eax;
56 sysinfo->cores = ((eax >> 26) & 0x3f) + 1;
57 printk(BIOS_SPEW, "%d CPU cores\n", sysinfo->cores);
58
59 u32 capid = pci_read_config16(PCI_DEV(0, 0, 0), D0F0_CAPID0+8);
60 if (!(capid & (1<<(79-64)))) {
61 printk(BIOS_SPEW, "iTPM enabled\n");
62 }
63
64 capid = pci_read_config32(PCI_DEV(0, 0, 0), D0F0_CAPID0+4);
65 if (!(capid & (1<<(57-32)))) {
66 printk(BIOS_SPEW, "ME enabled\n");
67 }
68
69 if (!(capid & (1<<(56-32)))) {
70 printk(BIOS_SPEW, "AMT enabled\n");
71 }
72
73 sysinfo->max_ddr2_mhz = (capid & (1<<(53-32)))?667:800;
74 printk(BIOS_SPEW, "capable of DDR2 of %d MHz or lower\n", sysinfo->max_ddr2_mhz);
75
76 if (!(capid & (1<<(48-32)))) {
77 printk(BIOS_SPEW, "VT-d enabled\n");
78 }
79
80 const u32 gfx_variant = (capid>>(42-32)) & 0x7;
81 const u32 render_freq = ((capid>>(50-32) & 0x1) << 2) | ((capid>>(35-32)) & 0x3);
82 if (render_freq <= 4)
83 sysinfo->gfx_type = gmch_gfx_types[gfx_variant][render_freq];
84 else
85 sysinfo->gfx_type = GMCH_UNKNOWN;
Patrick Georgi2efc8802012-11-06 11:03:53 +010086 switch (sysinfo->gfx_type) {
87 case GMCH_GM45:
88 printk(BIOS_SPEW, "GMCH: GM45\n");
89 break;
90 case GMCH_GM47:
91 printk(BIOS_SPEW, "GMCH: GM47\n");
92 break;
93 case GMCH_GM49:
94 printk(BIOS_SPEW, "GMCH: GM49\n");
95 break;
96 case GMCH_GE45:
97 printk(BIOS_SPEW, "GMCH: GE45\n");
98 break;
99 case GMCH_GL40:
100 printk(BIOS_SPEW, "GMCH: GL40\n");
101 break;
102 case GMCH_GL43:
103 printk(BIOS_SPEW, "GMCH: GL43\n");
104 break;
105 case GMCH_GS40:
106 printk(BIOS_SPEW, "GMCH: GS40\n");
107 break;
108 case GMCH_GS45:
Nico Huber5aaeb272015-12-30 00:17:27 +0100109 printk(BIOS_SPEW, "GMCH: GS45, using %s-power mode\n",
110 sysinfo->gs45_low_power_mode ? "low" : "high");
Patrick Georgi2efc8802012-11-06 11:03:53 +0100111 break;
112 case GMCH_PM45:
113 printk(BIOS_SPEW, "GMCH: PM45\n");
114 break;
115 case GMCH_UNKNOWN:
116 printk(BIOS_SPEW, "unknown GMCH\n");
117 break;
118 }
119
120 sysinfo->txt_enabled = !(capid & (1 << (37-32)));
121 if (sysinfo->txt_enabled) {
122 printk(BIOS_SPEW, "TXT enabled\n");
123 }
124
125 switch (render_freq) {
126 case 4:
127 sysinfo->max_render_mhz = 800;
128 break;
129 case 0:
130 sysinfo->max_render_mhz = 667;
131 break;
132 case 1:
133 sysinfo->max_render_mhz = 533;
134 break;
135 case 2:
136 sysinfo->max_render_mhz = 400;
137 break;
138 case 3:
139 sysinfo->max_render_mhz = 333;
140 break;
141 default:
142 printk(BIOS_SPEW, "Unknown render frequency\n");
143 sysinfo->max_render_mhz = 0;
144 break;
145 }
146 if (sysinfo->max_render_mhz != 0) {
147 printk(BIOS_SPEW, "Render frequency: %d MHz\n", sysinfo->max_render_mhz);
148 }
149
150 if (!(capid & (1<<(33-32)))) {
151 printk(BIOS_SPEW, "IGD enabled\n");
152 }
153
154 if (!(capid & (1<<(32-32)))) {
155 printk(BIOS_SPEW, "PCIe-to-GMCH enabled\n");
156 }
157
158 capid = pci_read_config32(PCI_DEV(0, 0, 0), D0F0_CAPID0);
159
160 u32 ddr_cap = capid>>30 & 0x3;
161 switch (ddr_cap) {
162 case 0:
163 sysinfo->max_ddr3_mt = 1067;
164 break;
165 case 1:
166 sysinfo->max_ddr3_mt = 800;
167 break;
168 case 2:
169 case 3:
170 printk(BIOS_SPEW, "GMCH not DDR3 capable\n");
171 sysinfo->max_ddr3_mt = 0;
172 break;
173 }
174 if (sysinfo->max_ddr3_mt != 0) {
175 printk(BIOS_SPEW, "GMCH supports DDR3 with %d MT or less\n", sysinfo->max_ddr3_mt);
176 }
177
178 const unsigned max_fsb = (capid >> 28) & 0x3;
179 switch (max_fsb) {
180 case 1:
181 sysinfo->max_fsb_mhz = 1067;
182 break;
183 case 2:
184 sysinfo->max_fsb_mhz = 800;
185 break;
186 case 3:
187 sysinfo->max_fsb_mhz = 667;
188 break;
189 default:
190 die("unknown FSB capability\n");
191 break;
192 }
193 if (sysinfo->max_fsb_mhz != 0) {
194 printk(BIOS_SPEW, "GMCH supports FSB with up to %d MHz\n", sysinfo->max_fsb_mhz);
195 }
196 sysinfo->max_fsb = max_fsb - 1;
197}
198
199/*
200 * Detect if the system went through an interrupted RAM init or is incon-
201 * sistent. If so, initiate a cold reboot. Otherwise mark the system to be
Martin Roth128c1042016-11-18 09:29:03 -0700202 * in RAM init, so this function would detect it on an erroneous reboot.
Patrick Georgi2efc8802012-11-06 11:03:53 +0100203 */
204void enter_raminit_or_reset(void)
205{
206 /* Interrupted RAM init or inconsistent system? */
207 u8 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa2);
208
209 if (reg8 & (1 << 2)) { /* S4-assertion-width violation */
210 /* Ignore S4-assertion-width violation like original BIOS. */
211 printk(BIOS_WARNING,
212 "WARNING: Ignoring S4-assertion-width violation.\n");
213 /* Bit2 is R/WC, so it will clear itself below. */
214 }
215
216 if (reg8 & (1 << 7)) { /* interrupted RAM init */
217 /* Don't enable S4-assertion stretch. Makes trouble on roda/rk9.
218 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
219 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8 | 0x08);
220 */
221
222 /* Clear bit7. */
223 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa2, reg8 & ~(1 << 7));
224
225 printk(BIOS_INFO, "Interrupted RAM init, reset required.\n");
226 gm45_early_reset();
227 }
228 /* Mark system to be in RAM init. */
229 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa2, reg8 | (1 << 7));
230}
231
232
233/* For a detected DIMM, test the value of an SPD byte to
234 match the expected value after masking some bits. */
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200235static int test_dimm(sysinfo_t *const sysinfo,
236 int dimm, int addr, int bitmask, int expected)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100237{
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200238 return (smbus_read_byte(sysinfo->spd_map[dimm], addr) & bitmask) == expected;
Patrick Georgi2efc8802012-11-06 11:03:53 +0100239}
240
241/* This function dies if dimm is unsuitable for the chipset. */
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200242static void verify_ddr3_dimm(sysinfo_t *const sysinfo, int dimm)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100243{
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200244 if (!test_dimm(sysinfo, dimm, 3, 15, 3))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100245 die("Chipset only supports SO-DIMM\n");
246
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200247 if (!test_dimm(sysinfo, dimm, 8, 0x18, 0))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100248 die("Chipset doesn't support ECC RAM\n");
249
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200250 if (!test_dimm(sysinfo, dimm, 7, 0x38, 0) &&
251 !test_dimm(sysinfo, dimm, 7, 0x38, 8))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100252 die("Chipset wants single or double sided DIMMs\n");
253
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200254 if (!test_dimm(sysinfo, dimm, 7, 7, 1) &&
255 !test_dimm(sysinfo, dimm, 7, 7, 2))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100256 die("Chipset requires x8 or x16 width\n");
257
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200258 if (!test_dimm(sysinfo, dimm, 4, 0x0f, 0) &&
259 !test_dimm(sysinfo, dimm, 4, 0x0f, 1) &&
260 !test_dimm(sysinfo, dimm, 4, 0x0f, 2) &&
261 !test_dimm(sysinfo, dimm, 4, 0x0f, 3))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100262 die("Chipset requires 256Mb, 512Mb, 1Gb or 2Gb chips.");
263
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200264 if (!test_dimm(sysinfo, dimm, 4, 0x70, 0))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100265 die("Chipset requires 8 banks on DDR3\n");
266
267 /* How to check if burst length is 8?
268 Other values are not supported, are they even possible? */
269
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200270 if (!test_dimm(sysinfo, dimm, 10, 0xff, 1))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100271 die("Code assumes 1/8ns MTB\n");
272
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200273 if (!test_dimm(sysinfo, dimm, 11, 0xff, 8))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100274 die("Code assumes 1/8ns MTB\n");
275
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200276 if (!test_dimm(sysinfo, dimm, 62, 0x9f, 0) &&
277 !test_dimm(sysinfo, dimm, 62, 0x9f, 1) &&
278 !test_dimm(sysinfo, dimm, 62, 0x9f, 2) &&
279 !test_dimm(sysinfo, dimm, 62, 0x9f, 3) &&
280 !test_dimm(sysinfo, dimm, 62, 0x9f, 5))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100281 die("Only raw card types A, B, C, D and F are supported.\n");
282}
283
284/* For every detected DIMM, test if it's suitable for the chipset. */
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200285static void verify_ddr3(sysinfo_t *const sysinfo, int mask)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100286{
287 int cur = 0;
288 while (mask) {
289 if (mask & 1) {
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200290 verify_ddr3_dimm(sysinfo, cur);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100291 }
292 mask >>= 1;
293 cur++;
294 }
295}
296
297
298typedef struct {
299 int dimm_mask;
300 struct {
301 unsigned int rows;
302 unsigned int cols;
303 unsigned int chip_capacity;
304 unsigned int banks;
305 unsigned int ranks;
306 unsigned int cas_latencies;
307 unsigned int tAAmin;
308 unsigned int tCKmin;
309 unsigned int width;
310 unsigned int tRAS;
311 unsigned int tRP;
312 unsigned int tRCD;
313 unsigned int tWR;
314 unsigned int page_size;
315 unsigned int raw_card;
316 } channel[2];
317} spdinfo_t;
318/*
319 * This function collects RAM characteristics from SPD, assuming that RAM
320 * is generally within chipset's requirements, since verify_ddr3() passed.
321 */
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200322static void collect_ddr3(sysinfo_t *const sysinfo, spdinfo_t *const config)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100323{
324 int mask = config->dimm_mask;
325 int cur = 0;
326 while (mask != 0) {
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200327 /* FIXME: support several dimms on same channel. */
328 if ((mask & 1) && sysinfo->spd_map[2 * cur]) {
Patrick Georgi2efc8802012-11-06 11:03:53 +0100329 int tmp;
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200330 const int smb_addr = sysinfo->spd_map[2 * cur];
Patrick Georgi2efc8802012-11-06 11:03:53 +0100331
332 config->channel[cur].rows = ((smbus_read_byte(smb_addr, 5) >> 3) & 7) + 12;
333 config->channel[cur].cols = (smbus_read_byte(smb_addr, 5) & 7) + 9;
334
335 config->channel[cur].chip_capacity = smbus_read_byte(smb_addr, 4) & 0xf;
336
337 config->channel[cur].banks = 8; /* GM45 only accepts this for DDR3.
338 verify_ddr3() fails for other values. */
339 config->channel[cur].ranks = ((smbus_read_byte(smb_addr, 7) >> 3) & 7) + 1;
340
341 config->channel[cur].cas_latencies =
342 ((smbus_read_byte(smb_addr, 15) << 8) | smbus_read_byte(smb_addr, 14))
343 << 4; /* so bit x is CAS x */
344 config->channel[cur].tAAmin = smbus_read_byte(smb_addr, 16); /* in MTB */
345 config->channel[cur].tCKmin = smbus_read_byte(smb_addr, 12); /* in MTB */
346
347 config->channel[cur].width = smbus_read_byte(smb_addr, 7) & 7;
348 config->channel[cur].page_size = config->channel[cur].width *
349 (1 << config->channel[cur].cols); /* in Bytes */
350
351 tmp = smbus_read_byte(smb_addr, 21);
352 config->channel[cur].tRAS = smbus_read_byte(smb_addr, 22) | ((tmp & 0xf) << 8);
353 config->channel[cur].tRP = smbus_read_byte(smb_addr, 20);
354 config->channel[cur].tRCD = smbus_read_byte(smb_addr, 18);
355 config->channel[cur].tWR = smbus_read_byte(smb_addr, 17);
356
357 config->channel[cur].raw_card = smbus_read_byte(smb_addr, 62) & 0x1f;
358 }
359 cur++;
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200360 mask >>= 2;
Patrick Georgi2efc8802012-11-06 11:03:53 +0100361 }
362}
363
Patrick Georgi2efc8802012-11-06 11:03:53 +0100364static fsb_clock_t read_fsb_clock(void)
365{
366 switch (MCHBAR32(CLKCFG_MCHBAR) & CLKCFG_FSBCLK_MASK) {
367 case 6:
368 return FSB_CLOCK_1067MHz;
369 case 2:
370 return FSB_CLOCK_800MHz;
371 case 3:
372 return FSB_CLOCK_667MHz;
373 default:
374 die("Unsupported FSB clock.\n");
375 }
376}
377static mem_clock_t clock_index(const unsigned int clock)
378{
379 switch (clock) {
380 case 533: return MEM_CLOCK_533MHz;
381 case 400: return MEM_CLOCK_400MHz;
382 case 333: return MEM_CLOCK_333MHz;
383 default: die("Unknown clock value.\n");
384 }
385 return -1; /* Won't be reached. */
386}
387static void normalize_clock(unsigned int *const clock)
388{
389 if (*clock >= 533)
390 *clock = 533;
391 else if (*clock >= 400)
392 *clock = 400;
393 else if (*clock >= 333)
394 *clock = 333;
395 else
396 *clock = 0;
397}
398static void lower_clock(unsigned int *const clock)
399{
400 --*clock;
401 normalize_clock(clock);
402}
403static unsigned int find_common_clock_cas(sysinfo_t *const sysinfo,
404 const spdinfo_t *const spdinfo)
405{
406 /* various constraints must be fulfilled:
407 CAS * tCK < 20ns == 160MTB
408 tCK_max >= tCK >= tCK_min
409 CAS >= roundup(tAA_min/tCK)
410 CAS supported
411 Clock(MHz) = 1000 / tCK(ns)
412 Clock(MHz) = 8000 / tCK(MTB)
413 AND BTW: Clock(MT) = 2000 / tCK(ns) - intel uses MTs but calls them MHz
414 */
415 int i;
416
417 /* Calculate common cas_latencies mask, tCKmin and tAAmin. */
418 unsigned int cas_latencies = (unsigned int)-1;
419 unsigned int tCKmin = 0, tAAmin = 0;
420 FOR_EACH_POPULATED_CHANNEL(sysinfo->dimms, i) {
421 cas_latencies &= spdinfo->channel[i].cas_latencies;
422 if (spdinfo->channel[i].tCKmin > tCKmin)
423 tCKmin = spdinfo->channel[i].tCKmin;
424 if (spdinfo->channel[i].tAAmin > tAAmin)
425 tAAmin = spdinfo->channel[i].tAAmin;
426 }
427
428 /* Get actual value of fsb clock. */
429 sysinfo->selected_timings.fsb_clock = read_fsb_clock();
430 unsigned int fsb_mhz = 0;
431 switch (sysinfo->selected_timings.fsb_clock) {
432 case FSB_CLOCK_1067MHz: fsb_mhz = 1067; break;
433 case FSB_CLOCK_800MHz: fsb_mhz = 800; break;
434 case FSB_CLOCK_667MHz: fsb_mhz = 667; break;
435 }
436
437 unsigned int clock = 8000 / tCKmin;
438 if ((clock > sysinfo->max_ddr3_mt / 2) || (clock > fsb_mhz / 2)) {
439 int new_clock = min(sysinfo->max_ddr3_mt / 2, fsb_mhz / 2);
440 printk(BIOS_SPEW, "DIMMs support %d MHz, but chipset only runs at up to %d. Limiting...\n",
441 clock, new_clock);
442 clock = new_clock;
443 }
444 normalize_clock(&clock);
445
446 /* Find compatible clock / CAS pair. */
447 unsigned int tCKproposed;
448 unsigned int CAS;
449 while (1) {
450 if (!clock)
451 die("Couldn't find compatible clock / CAS settings.\n");
452 tCKproposed = 8000 / clock;
Elyes HAOUAS6df3b642018-11-26 22:53:49 +0100453 CAS = DIV_ROUND_UP(tAAmin, tCKproposed);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100454 printk(BIOS_SPEW, "Trying CAS %u, tCK %u.\n", CAS, tCKproposed);
455 for (; CAS <= DDR3_MAX_CAS; ++CAS)
456 if (cas_latencies & (1 << CAS))
457 break;
458 if ((CAS <= DDR3_MAX_CAS) && (CAS * tCKproposed < 160)) {
459 /* Found good CAS. */
460 printk(BIOS_SPEW, "Found compatible clock / CAS pair: %u / %u.\n", clock, CAS);
461 break;
462 }
463 lower_clock(&clock);
464 }
465 sysinfo->selected_timings.CAS = CAS;
466 sysinfo->selected_timings.mem_clock = clock_index(clock);
467
468 return tCKproposed;
469}
470
471static void calculate_derived_timings(sysinfo_t *const sysinfo,
472 const unsigned int tCLK,
473 const spdinfo_t *const spdinfo)
474{
475 int i;
476
477 /* Calculate common tRASmin, tRPmin, tRCDmin and tWRmin. */
478 unsigned int tRASmin = 0, tRPmin = 0, tRCDmin = 0, tWRmin = 0;
479 FOR_EACH_POPULATED_CHANNEL(sysinfo->dimms, i) {
480 if (spdinfo->channel[i].tRAS > tRASmin)
481 tRASmin = spdinfo->channel[i].tRAS;
482 if (spdinfo->channel[i].tRP > tRPmin)
483 tRPmin = spdinfo->channel[i].tRP;
484 if (spdinfo->channel[i].tRCD > tRCDmin)
485 tRCDmin = spdinfo->channel[i].tRCD;
486 if (spdinfo->channel[i].tWR > tWRmin)
487 tWRmin = spdinfo->channel[i].tWR;
488 }
Elyes HAOUAS6df3b642018-11-26 22:53:49 +0100489 tRASmin = DIV_ROUND_UP(tRASmin, tCLK);
490 tRPmin = DIV_ROUND_UP(tRPmin, tCLK);
491 tRCDmin = DIV_ROUND_UP(tRCDmin, tCLK);
492 tWRmin = DIV_ROUND_UP(tWRmin, tCLK);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100493
494 /* Lookup tRFC and calculate common tRFCmin. */
495 const unsigned int tRFC_from_clock_and_cap[][4] = {
496 /* CAP_256M CAP_512M CAP_1G CAP_2G */
497 /* 533MHz */ { 40, 56, 68, 104 },
498 /* 400MHz */ { 30, 42, 51, 78 },
499 /* 333MHz */ { 25, 35, 43, 65 },
500 };
501 unsigned int tRFCmin = 0;
502 FOR_EACH_POPULATED_CHANNEL(sysinfo->dimms, i) {
503 const unsigned int tRFC = tRFC_from_clock_and_cap
504 [sysinfo->selected_timings.mem_clock][spdinfo->channel[i].chip_capacity];
505 if (tRFC > tRFCmin)
506 tRFCmin = tRFC;
507 }
508
509 /* Calculate common tRD from CAS and FSB and DRAM clocks. */
510 unsigned int tRDmin = sysinfo->selected_timings.CAS;
511 switch (sysinfo->selected_timings.fsb_clock) {
512 case FSB_CLOCK_667MHz:
513 tRDmin += 1;
514 break;
515 case FSB_CLOCK_800MHz:
516 tRDmin += 2;
517 break;
518 case FSB_CLOCK_1067MHz:
519 tRDmin += 3;
520 if (sysinfo->selected_timings.mem_clock == MEM_CLOCK_1067MT)
521 tRDmin += 1;
522 break;
523 }
524
525 /* Calculate common tRRDmin. */
526 unsigned int tRRDmin = 0;
527 FOR_EACH_POPULATED_CHANNEL(sysinfo->dimms, i) {
528 unsigned int tRRD = 2 + (spdinfo->channel[i].page_size / 1024);
529 if (sysinfo->selected_timings.mem_clock == MEM_CLOCK_1067MT)
530 tRRD += (spdinfo->channel[i].page_size / 1024);
531 if (tRRD > tRRDmin)
532 tRRDmin = tRRD;
533 }
534
535 /* Lookup and calculate common tFAWmin. */
536 unsigned int tFAW_from_pagesize_and_clock[][3] = {
537 /* 533MHz 400MHz 333MHz */
538 /* 1K */ { 20, 15, 13 },
539 /* 2K */ { 27, 20, 17 },
540 };
541 unsigned int tFAWmin = 0;
542 FOR_EACH_POPULATED_CHANNEL(sysinfo->dimms, i) {
543 const unsigned int tFAW = tFAW_from_pagesize_and_clock
544 [spdinfo->channel[i].page_size / 1024 - 1]
545 [sysinfo->selected_timings.mem_clock];
546 if (tFAW > tFAWmin)
547 tFAWmin = tFAW;
548 }
549
550 /* Refresh rate is fixed. */
551 unsigned int tWL;
552 if (sysinfo->selected_timings.mem_clock == MEM_CLOCK_1067MT) {
553 tWL = 6;
554 } else {
555 tWL = 5;
556 }
557
558 printk(BIOS_SPEW, "Timing values:\n"
559 " tCLK: %3u\n"
560 " tRAS: %3u\n"
561 " tRP: %3u\n"
562 " tRCD: %3u\n"
563 " tRFC: %3u\n"
564 " tWR: %3u\n"
565 " tRD: %3u\n"
566 " tRRD: %3u\n"
567 " tFAW: %3u\n"
568 " tWL: %3u\n",
569 tCLK, tRASmin, tRPmin, tRCDmin, tRFCmin, tWRmin, tRDmin, tRRDmin, tFAWmin, tWL);
570
571 sysinfo->selected_timings.tRAS = tRASmin;
572 sysinfo->selected_timings.tRP = tRPmin;
573 sysinfo->selected_timings.tRCD = tRCDmin;
574 sysinfo->selected_timings.tRFC = tRFCmin;
575 sysinfo->selected_timings.tWR = tWRmin;
576 sysinfo->selected_timings.tRD = tRDmin;
577 sysinfo->selected_timings.tRRD = tRRDmin;
578 sysinfo->selected_timings.tFAW = tFAWmin;
579 sysinfo->selected_timings.tWL = tWL;
580}
581
582static void collect_dimm_config(sysinfo_t *const sysinfo)
583{
584 int i;
585 spdinfo_t spdinfo;
586
587 spdinfo.dimm_mask = 0;
588 sysinfo->spd_type = 0;
589
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200590 for (i = 0; i < 4; i++)
591 if (sysinfo->spd_map[i]) {
592 const u8 spd = smbus_read_byte(sysinfo->spd_map[i], 2);
593 printk (BIOS_DEBUG, "%x:%x:%x\n",
594 i, sysinfo->spd_map[i],
595 spd);
596 if ((spd == 7) || (spd == 8) || (spd == 0xb)) {
597 spdinfo.dimm_mask |= 1 << i;
598 if (sysinfo->spd_type && sysinfo->spd_type != spd) {
599 die("Multiple types of DIMM installed in the system, don't do that!\n");
600 }
601 sysinfo->spd_type = spd;
Patrick Georgi2efc8802012-11-06 11:03:53 +0100602 }
Patrick Georgi2efc8802012-11-06 11:03:53 +0100603 }
Patrick Georgi2efc8802012-11-06 11:03:53 +0100604 if (spdinfo.dimm_mask == 0) {
605 die("Could not find any DIMM.\n");
606 }
607
608 /* Normalize spd_type to 1, 2, 3. */
609 sysinfo->spd_type = (sysinfo->spd_type & 1) | ((sysinfo->spd_type & 8) >> 2);
610 printk(BIOS_SPEW, "DDR mask %x, DDR %d\n", spdinfo.dimm_mask, sysinfo->spd_type);
611
612 if (sysinfo->spd_type == DDR2) {
613 die("DDR2 not supported at this time.\n");
614 } else if (sysinfo->spd_type == DDR3) {
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200615 verify_ddr3(sysinfo, spdinfo.dimm_mask);
616 collect_ddr3(sysinfo, &spdinfo);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100617 } else {
618 die("Will never support DDR1.\n");
619 }
620
621 for (i = 0; i < 2; i++) {
622 if ((spdinfo.dimm_mask >> (i*2)) & 1) {
623 printk(BIOS_SPEW, "Bank %d populated:\n"
624 " Raw card type: %4c\n"
625 " Row addr bits: %4u\n"
626 " Col addr bits: %4u\n"
627 " byte width: %4u\n"
628 " page size: %4u\n"
629 " banks: %4u\n"
630 " ranks: %4u\n"
631 " tAAmin: %3u\n"
632 " tCKmin: %3u\n"
633 " Max clock: %3u MHz\n"
634 " CAS: 0x%04x\n",
635 i, spdinfo.channel[i].raw_card + 'A',
636 spdinfo.channel[i].rows, spdinfo.channel[i].cols,
637 spdinfo.channel[i].width, spdinfo.channel[i].page_size,
638 spdinfo.channel[i].banks, spdinfo.channel[i].ranks,
639 spdinfo.channel[i].tAAmin, spdinfo.channel[i].tCKmin,
640 8000 / spdinfo.channel[i].tCKmin, spdinfo.channel[i].cas_latencies);
641 }
642 }
643
644 FOR_EACH_CHANNEL(i) {
645 sysinfo->dimms[i].card_type =
646 (spdinfo.dimm_mask & (1 << (i * 2))) ? spdinfo.channel[i].raw_card + 0xa : 0;
647 }
648
649 /* Find common memory clock and CAS. */
650 const unsigned int tCLK = find_common_clock_cas(sysinfo, &spdinfo);
651
652 /* Calculate other timings from clock and CAS. */
653 calculate_derived_timings(sysinfo, tCLK, &spdinfo);
654
655 /* Initialize DIMM infos. */
656 /* Always prefer interleaved over async channel mode. */
657 FOR_EACH_CHANNEL(i) {
658 IF_CHANNEL_POPULATED(sysinfo->dimms, i) {
659 sysinfo->dimms[i].banks = spdinfo.channel[i].banks;
660 sysinfo->dimms[i].ranks = spdinfo.channel[i].ranks;
661
662 /* .width is 1 for x8 or 2 for x16, bus width is 8 bytes. */
663 const unsigned int chips_per_rank = 8 / spdinfo.channel[i].width;
664
665 sysinfo->dimms[i].chip_width = spdinfo.channel[i].width;
666 sysinfo->dimms[i].chip_capacity = spdinfo.channel[i].chip_capacity;
667 sysinfo->dimms[i].page_size = spdinfo.channel[i].page_size * chips_per_rank;
668 sysinfo->dimms[i].rank_capacity_mb =
669 /* offset of chip_capacity is 8 (256M), therefore, add 8
670 chip_capacity is in Mbit, we want MByte, therefore, subtract 3 */
671 (1 << (spdinfo.channel[i].chip_capacity + 8 - 3)) * chips_per_rank;
672 }
673 }
674 if (CHANNEL_IS_POPULATED(sysinfo->dimms, 0) &&
675 CHANNEL_IS_POPULATED(sysinfo->dimms, 1))
676 sysinfo->selected_timings.channel_mode = CHANNEL_MODE_DUAL_INTERLEAVED;
677 else
678 sysinfo->selected_timings.channel_mode = CHANNEL_MODE_SINGLE;
679}
680
681static void reset_on_bad_warmboot(void)
682{
683 /* Check self refresh channel status. */
684 const u32 reg = MCHBAR32(PMSTS_MCHBAR);
685 /* Clear status bits. R/WC */
686 MCHBAR32(PMSTS_MCHBAR) = reg;
687 if ((reg & PMSTS_WARM_RESET) && !(reg & PMSTS_BOTH_SELFREFRESH)) {
688 printk(BIOS_INFO, "DRAM was not in self refresh "
689 "during warm boot, reset required.\n");
690 gm45_early_reset();
691 }
692}
693
694static void set_system_memory_frequency(const timings_t *const timings)
695{
696 MCHBAR16(CLKCFG_MCHBAR + 0x60) &= ~(1 << 15);
697 MCHBAR16(CLKCFG_MCHBAR + 0x48) &= ~(1 << 15);
698
699 /* Calculate wanted frequency setting. */
700 const int want_freq = 6 - timings->mem_clock;
701
702 /* Read current memory frequency. */
703 const u32 clkcfg = MCHBAR32(CLKCFG_MCHBAR);
704 int cur_freq = (clkcfg & CLKCFG_MEMCLK_MASK) >> CLKCFG_MEMCLK_SHIFT;
705 if (0 == cur_freq) {
706 /* Try memory frequency from scratchpad. */
707 printk(BIOS_DEBUG, "Reading current memory frequency from scratchpad.\n");
708 cur_freq = (MCHBAR16(SSKPD_MCHBAR) & SSKPD_CLK_MASK) >> SSKPD_CLK_SHIFT;
709 }
710
711 if (cur_freq != want_freq) {
712 printk(BIOS_DEBUG, "Changing memory frequency: old %x, new %x.\n", cur_freq, want_freq);
713 /* When writing new frequency setting, reset, then set update bit. */
714 MCHBAR32(CLKCFG_MCHBAR) = (MCHBAR32(CLKCFG_MCHBAR) & ~(CLKCFG_UPDATE | CLKCFG_MEMCLK_MASK)) |
715 (want_freq << CLKCFG_MEMCLK_SHIFT);
716 MCHBAR32(CLKCFG_MCHBAR) = (MCHBAR32(CLKCFG_MCHBAR) & ~CLKCFG_MEMCLK_MASK) |
717 (want_freq << CLKCFG_MEMCLK_SHIFT) | CLKCFG_UPDATE;
718 /* Reset update bit. */
719 MCHBAR32(CLKCFG_MCHBAR) &= ~CLKCFG_UPDATE;
720 }
721
722 if ((timings->fsb_clock == FSB_CLOCK_1067MHz) && (timings->mem_clock == MEM_CLOCK_667MT)) {
723 MCHBAR32(CLKCFG_MCHBAR + 0x16) = 0x000030f0;
724 MCHBAR32(CLKCFG_MCHBAR + 0x64) = 0x000050c1;
725
726 MCHBAR32(CLKCFG_MCHBAR) = (MCHBAR32(CLKCFG_MCHBAR) & ~(1 << 12)) | (1 << 17);
727 MCHBAR32(CLKCFG_MCHBAR) |= (1 << 17) | (1 << 12);
728 MCHBAR32(CLKCFG_MCHBAR) &= ~(1 << 12);
729
730 MCHBAR32(CLKCFG_MCHBAR + 0x04) = 0x9bad1f1f;
731 MCHBAR8(CLKCFG_MCHBAR + 0x08) = 0xf4;
732 MCHBAR8(CLKCFG_MCHBAR + 0x0a) = 0x43;
733 MCHBAR8(CLKCFG_MCHBAR + 0x0c) = 0x10;
734 MCHBAR8(CLKCFG_MCHBAR + 0x0d) = 0x80;
735 MCHBAR32(CLKCFG_MCHBAR + 0x50) = 0x0b0e151b;
736 MCHBAR8(CLKCFG_MCHBAR + 0x54) = 0xb4;
737 MCHBAR8(CLKCFG_MCHBAR + 0x55) = 0x10;
738 MCHBAR8(CLKCFG_MCHBAR + 0x56) = 0x08;
739
740 MCHBAR32(CLKCFG_MCHBAR) |= (1 << 10);
741 MCHBAR32(CLKCFG_MCHBAR) |= (1 << 11);
742 MCHBAR32(CLKCFG_MCHBAR) &= ~(1 << 10);
743 MCHBAR32(CLKCFG_MCHBAR) &= ~(1 << 11);
744 }
745
746 MCHBAR32(CLKCFG_MCHBAR + 0x48) |= 0x3f << 24;
747}
748
749int raminit_read_vco_index(void)
750{
Nico Huberd85a71a2016-11-27 14:43:12 +0100751 switch (MCHBAR8(HPLLVCO_MCHBAR) & 0x7) {
Patrick Georgi2efc8802012-11-06 11:03:53 +0100752 case VCO_2666:
753 return 0;
754 case VCO_3200:
755 return 1;
756 case VCO_4000:
757 return 2;
758 case VCO_5333:
759 return 3;
760 default:
761 die("Unknown VCO frequency.\n");
762 return 0;
763 }
764}
765static void set_igd_memory_frequencies(const sysinfo_t *const sysinfo)
766{
767 const int gfx_idx = ((sysinfo->gfx_type == GMCH_GS45) &&
768 !sysinfo->gs45_low_power_mode)
769 ? (GMCH_GS45 + 1) : sysinfo->gfx_type;
770
771 /* Render and sampler frequency values seem to be some kind of factor. */
772 const u16 render_freq_from_vco_and_gfxtype[][10] = {
773 /* GM45 GM47 GM49 GE45 GL40 GL43 GS40 GS45 (perf) */
774 /* VCO 2666 */ { 0xd, 0xd, 0xe, 0xd, 0xb, 0xd, 0xb, 0xa, 0xd },
775 /* VCO 3200 */ { 0xd, 0xe, 0xf, 0xd, 0xb, 0xd, 0xb, 0x9, 0xd },
776 /* VCO 4000 */ { 0xc, 0xd, 0xf, 0xc, 0xa, 0xc, 0xa, 0x9, 0xc },
777 /* VCO 5333 */ { 0xb, 0xc, 0xe, 0xb, 0x9, 0xb, 0x9, 0x8, 0xb },
778 };
779 const u16 sampler_freq_from_vco_and_gfxtype[][10] = {
780 /* GM45 GM47 GM49 GE45 GL40 GL43 GS40 GS45 (perf) */
781 /* VCO 2666 */ { 0xc, 0xc, 0xd, 0xc, 0x9, 0xc, 0x9, 0x8, 0xc },
782 /* VCO 3200 */ { 0xc, 0xd, 0xe, 0xc, 0x9, 0xc, 0x9, 0x8, 0xc },
783 /* VCO 4000 */ { 0xa, 0xc, 0xd, 0xa, 0x8, 0xa, 0x8, 0x8, 0xa },
784 /* VCO 5333 */ { 0xa, 0xa, 0xc, 0xa, 0x7, 0xa, 0x7, 0x6, 0xa },
785 };
786 const u16 display_clock_select_from_gfxtype[] = {
787 /* GM45 GM47 GM49 GE45 GL40 GL43 GS40 GS45 (perf) */
788 1, 1, 1, 1, 1, 1, 1, 0, 1
789 };
790
791 if (pci_read_config16(GCFGC_PCIDEV, 0) != 0x8086) {
792 printk(BIOS_DEBUG, "Skipping IGD memory frequency setting.\n");
793 return;
794 }
795
796 MCHBAR16(0x119e) = 0xa800;
797 MCHBAR16(0x11c0) = (MCHBAR16(0x11c0) & ~0xff00) | (0x01 << 8);
798 MCHBAR16(0x119e) = 0xb800;
799 MCHBAR8(0x0f10) |= 1 << 7;
800
801 /* Read VCO. */
802 const int vco_idx = raminit_read_vco_index();
803 printk(BIOS_DEBUG, "Setting IGD memory frequencies for VCO #%d.\n", vco_idx);
804
805 const u32 freqcfg =
806 ((render_freq_from_vco_and_gfxtype[vco_idx][gfx_idx]
807 << GCFGC_CR_SHIFT) & GCFGC_CR_MASK) |
808 ((sampler_freq_from_vco_and_gfxtype[vco_idx][gfx_idx]
809 << GCFGC_CS_SHIFT) & GCFGC_CS_MASK);
810
811 /* Set frequencies, clear update bit. */
812 u32 gcfgc = pci_read_config16(GCFGC_PCIDEV, GCFGC_OFFSET);
813 gcfgc &= ~(GCFGC_CS_MASK | GCFGC_UPDATE | GCFGC_CR_MASK);
814 gcfgc |= freqcfg;
815 pci_write_config16(GCFGC_PCIDEV, GCFGC_OFFSET, gcfgc);
816
817 /* Set frequencies, set update bit. */
818 gcfgc = pci_read_config16(GCFGC_PCIDEV, GCFGC_OFFSET);
819 gcfgc &= ~(GCFGC_CS_MASK | GCFGC_CR_MASK);
820 gcfgc |= freqcfg | GCFGC_UPDATE;
821 pci_write_config16(GCFGC_PCIDEV, GCFGC_OFFSET, gcfgc);
822
823 /* Clear update bit. */
824 pci_write_config16(GCFGC_PCIDEV, GCFGC_OFFSET,
825 pci_read_config16(GCFGC_PCIDEV, GCFGC_OFFSET) & ~GCFGC_UPDATE);
826
827 /* Set display clock select bit. */
828 pci_write_config16(GCFGC_PCIDEV, GCFGC_OFFSET,
829 (pci_read_config16(GCFGC_PCIDEV, GCFGC_OFFSET) & ~GCFGC_CD_MASK) |
830 (display_clock_select_from_gfxtype[gfx_idx] << GCFGC_CD_SHIFT));
831}
832
833static void configure_dram_control_mode(const timings_t *const timings, const dimminfo_t *const dimms)
834{
835 int ch, r;
836
837 FOR_EACH_CHANNEL(ch) {
838 unsigned int mchbar = CxDRC0_MCHBAR(ch);
839 u32 cxdrc = MCHBAR32(mchbar);
840 cxdrc &= ~CxDRC0_RANKEN_MASK;
841 FOR_EACH_POPULATED_RANK_IN_CHANNEL(dimms, ch, r)
842 cxdrc |= CxDRC0_RANKEN(r);
843 cxdrc = (cxdrc & ~CxDRC0_RMS_MASK) |
844 /* Always 7.8us for DDR3: */
845 CxDRC0_RMS_78US;
846 MCHBAR32(mchbar) = cxdrc;
847
848 mchbar = CxDRC1_MCHBAR(ch);
849 cxdrc = MCHBAR32(mchbar);
850 cxdrc |= CxDRC1_NOTPOP_MASK;
851 FOR_EACH_POPULATED_RANK_IN_CHANNEL(dimms, ch, r)
852 cxdrc &= ~CxDRC1_NOTPOP(r);
853 cxdrc |= CxDRC1_MUSTWR;
854 MCHBAR32(mchbar) = cxdrc;
855
856 mchbar = CxDRC2_MCHBAR(ch);
857 cxdrc = MCHBAR32(mchbar);
858 cxdrc |= CxDRC2_NOTPOP_MASK;
859 FOR_EACH_POPULATED_RANK_IN_CHANNEL(dimms, ch, r)
860 cxdrc &= ~CxDRC2_NOTPOP(r);
861 cxdrc |= CxDRC2_MUSTWR;
862 if (timings->mem_clock == MEM_CLOCK_1067MT)
863 cxdrc |= CxDRC2_CLK1067MT;
864 MCHBAR32(mchbar) = cxdrc;
865 }
866}
867
868static void rcomp_initialization(const stepping_t stepping, const int sff)
869{
Elyes HAOUAS3d450002018-08-09 18:55:58 +0200870 /* Program RCOMP codes. */
Patrick Georgi2efc8802012-11-06 11:03:53 +0100871 if (sff)
872 die("SFF platform unsupported in RCOMP initialization.\n");
873 /* Values are for DDR3. */
874 MCHBAR8(0x6ac) &= ~0x0f;
875 MCHBAR8(0x6b0) = 0x55;
876 MCHBAR8(0x6ec) &= ~0x0f;
877 MCHBAR8(0x6f0) = 0x66;
878 MCHBAR8(0x72c) &= ~0x0f;
879 MCHBAR8(0x730) = 0x66;
880 MCHBAR8(0x76c) &= ~0x0f;
881 MCHBAR8(0x770) = 0x66;
882 MCHBAR8(0x7ac) &= ~0x0f;
883 MCHBAR8(0x7b0) = 0x66;
884 MCHBAR8(0x7ec) &= ~0x0f;
885 MCHBAR8(0x7f0) = 0x66;
886 MCHBAR8(0x86c) &= ~0x0f;
887 MCHBAR8(0x870) = 0x55;
888 MCHBAR8(0x8ac) &= ~0x0f;
889 MCHBAR8(0x8b0) = 0x66;
890 /* ODT multiplier bits. */
891 MCHBAR32(0x04d0) = (MCHBAR32(0x04d0) & ~((7 << 3) | (7 << 0))) | (2 << 3) | (2 << 0);
892
893 /* Perform RCOMP calibration for DDR3. */
894 raminit_rcomp_calibration(stepping);
895
896 /* Run initial RCOMP. */
897 MCHBAR32(0x418) |= 1 << 17;
898 MCHBAR32(0x40c) &= ~(1 << 23);
899 MCHBAR32(0x41c) &= ~((1 << 7) | (1 << 3));
900 MCHBAR32(0x400) |= 1;
901 while (MCHBAR32(0x400) & 1) {}
902
903 /* Run second RCOMP. */
904 MCHBAR32(0x40c) |= 1 << 19;
905 MCHBAR32(0x400) |= 1;
906 while (MCHBAR32(0x400) & 1) {}
907
908 /* Cleanup and start periodic RCOMP. */
909 MCHBAR32(0x40c) &= ~(1 << 19);
910 MCHBAR32(0x40c) |= 1 << 23;
911 MCHBAR32(0x418) &= ~(1 << 17);
912 MCHBAR32(0x41c) |= (1 << 7) | (1 << 3);
913 MCHBAR32(0x400) |= (1 << 1);
914}
915
916static void dram_powerup(const int resume)
917{
Arthur Heymans10141c32016-10-27 00:31:41 +0200918 udelay(200);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100919 MCHBAR32(CLKCFG_MCHBAR) = (MCHBAR32(CLKCFG_MCHBAR) & ~(1 << 3)) | (3 << 21);
920 if (!resume) {
921 MCHBAR32(0x1434) |= (1 << 10);
Arthur Heymans10141c32016-10-27 00:31:41 +0200922 udelay(1);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100923 }
924 MCHBAR32(0x1434) |= (1 << 6);
925 if (!resume) {
Arthur Heymans10141c32016-10-27 00:31:41 +0200926 udelay(1);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100927 MCHBAR32(0x1434) |= (1 << 9);
928 MCHBAR32(0x1434) &= ~(1 << 10);
929 udelay(500);
930 }
931}
932static void dram_program_timings(const timings_t *const timings)
933{
934 /* Values are for DDR3. */
935 const int burst_length = 8;
936 const int tWTR = 4, tRTP = 1;
937 int i;
938
939 FOR_EACH_CHANNEL(i) {
940 u32 reg = MCHBAR32(CxDRT0_MCHBAR(i));
941 const int btb_wtp = timings->tWL + burst_length/2 + timings->tWR;
942 const int btb_wtr = timings->tWL + burst_length/2 + tWTR;
943 reg = (reg & ~(CxDRT0_BtB_WtP_MASK | CxDRT0_BtB_WtR_MASK)) |
944 ((btb_wtp << CxDRT0_BtB_WtP_SHIFT) & CxDRT0_BtB_WtP_MASK) |
945 ((btb_wtr << CxDRT0_BtB_WtR_SHIFT) & CxDRT0_BtB_WtR_MASK);
946 if (timings->mem_clock != MEM_CLOCK_1067MT) {
947 reg = (reg & ~(0x7 << 15)) | ((9 - timings->CAS) << 15);
948 reg = (reg & ~(0xf << 10)) | ((timings->CAS - 3) << 10);
949 } else {
950 reg = (reg & ~(0x7 << 15)) | ((10 - timings->CAS) << 15);
951 reg = (reg & ~(0xf << 10)) | ((timings->CAS - 4) << 10);
952 }
953 reg = (reg & ~(0x7 << 5)) | (3 << 5);
954 reg = (reg & ~(0x7 << 0)) | (1 << 0);
955 MCHBAR32(CxDRT0_MCHBAR(i)) = reg;
956
957 reg = MCHBAR32(CxDRT1_MCHBAR(i));
958 reg = (reg & ~(0x03 << 28)) | ((tRTP & 0x03) << 28);
959 reg = (reg & ~(0x1f << 21)) | ((timings->tRAS & 0x1f) << 21);
960 reg = (reg & ~(0x07 << 10)) | (((timings->tRRD - 2) & 0x07) << 10);
961 reg = (reg & ~(0x07 << 5)) | (((timings->tRCD - 2) & 0x07) << 5);
962 reg = (reg & ~(0x07 << 0)) | (((timings->tRP - 2) & 0x07) << 0);
963 MCHBAR32(CxDRT1_MCHBAR(i)) = reg;
964
965 reg = MCHBAR32(CxDRT2_MCHBAR(i));
966 reg = (reg & ~(0x1f << 17)) | ((timings->tFAW & 0x1f) << 17);
967 if (timings->mem_clock != MEM_CLOCK_1067MT) {
968 reg = (reg & ~(0x7 << 12)) | (0x2 << 12);
969 reg = (reg & ~(0xf << 6)) | (0x9 << 6);
970 } else {
971 reg = (reg & ~(0x7 << 12)) | (0x3 << 12);
972 reg = (reg & ~(0xf << 6)) | (0xc << 6);
973 }
974 reg = (reg & ~(0x1f << 0)) | (0x13 << 0);
975 MCHBAR32(CxDRT2_MCHBAR(i)) = reg;
976
977 reg = MCHBAR32(CxDRT3_MCHBAR(i));
978 reg |= 0x3 << 28;
979 reg = (reg & ~(0x03 << 26));
980 reg = (reg & ~(0x07 << 23)) | (((timings->CAS - 3) & 0x07) << 23);
981 reg = (reg & ~(0xff << 13)) | ((timings->tRFC & 0xff) << 13);
982 reg = (reg & ~(0x07 << 0)) | (((timings->tWL - 2) & 0x07) << 0);
983 MCHBAR32(CxDRT3_MCHBAR(i)) = reg;
984
985 reg = MCHBAR32(CxDRT4_MCHBAR(i));
986 static const u8 timings_by_clock[4][3] = {
987 /* 333MHz 400MHz 533MHz
988 667MT 800MT 1067MT */
989 { 0x07, 0x0a, 0x0d },
990 { 0x3a, 0x46, 0x5d },
991 { 0x0c, 0x0e, 0x18 },
992 { 0x21, 0x28, 0x35 },
993 };
994 const int clk_idx = 2 - timings->mem_clock;
995 reg = (reg & ~(0x01f << 27)) | (timings_by_clock[0][clk_idx] << 27);
996 reg = (reg & ~(0x3ff << 17)) | (timings_by_clock[1][clk_idx] << 17);
997 reg = (reg & ~(0x03f << 10)) | (timings_by_clock[2][clk_idx] << 10);
998 reg = (reg & ~(0x1ff << 0)) | (timings_by_clock[3][clk_idx] << 0);
999 MCHBAR32(CxDRT4_MCHBAR(i)) = reg;
1000
1001 reg = MCHBAR32(CxDRT5_MCHBAR(i));
1002 if (timings->mem_clock == MEM_CLOCK_1067MT)
1003 reg = (reg & ~(0xf << 28)) | (0x8 << 28);
1004 reg = (reg & ~(0x00f << 22)) | ((burst_length/2 + timings->CAS + 2) << 22);
1005 reg = (reg & ~(0x3ff << 12)) | (0x190 << 12);
1006 reg = (reg & ~(0x00f << 4)) | ((timings->CAS - 2) << 4);
1007 reg = (reg & ~(0x003 << 2)) | (0x001 << 2);
1008 reg = (reg & ~(0x003 << 0));
1009 MCHBAR32(CxDRT5_MCHBAR(i)) = reg;
1010
1011 reg = MCHBAR32(CxDRT6_MCHBAR(i));
1012 reg = (reg & ~(0xffff << 16)) | (0x066a << 16); /* always 7.8us refresh rate for DDR3 */
1013 reg |= (1 << 2);
1014 MCHBAR32(CxDRT6_MCHBAR(i)) = reg;
1015 }
1016}
1017
1018static void dram_program_banks(const dimminfo_t *const dimms)
1019{
1020 int ch, r;
1021
1022 FOR_EACH_CHANNEL(ch) {
1023 const int tRPALL = dimms[ch].banks == 8;
1024
1025 u32 reg = MCHBAR32(CxDRT1_MCHBAR(ch)) & ~(0x01 << 15);
1026 IF_CHANNEL_POPULATED(dimms, ch)
1027 reg |= tRPALL << 15;
1028 MCHBAR32(CxDRT1_MCHBAR(ch)) = reg;
1029
1030 reg = MCHBAR32(CxDRA_MCHBAR(ch)) & ~CxDRA_BANKS_MASK;
1031 FOR_EACH_POPULATED_RANK_IN_CHANNEL(dimms, ch, r) {
1032 reg |= CxDRA_BANKS(r, dimms[ch].banks);
1033 }
1034 MCHBAR32(CxDRA_MCHBAR(ch)) = reg;
1035 }
1036}
1037
1038static void odt_setup(const timings_t *const timings, const int sff)
1039{
1040 /* Values are for DDR3. */
1041 int ch;
1042
1043 FOR_EACH_CHANNEL(ch) {
1044 u32 reg = MCHBAR32(CxODT_HIGH(ch));
1045 if (sff && (timings->mem_clock != MEM_CLOCK_1067MT))
1046 reg &= ~(0x3 << (61 - 32));
1047 else
1048 reg |= 0x3 << (61 - 32);
1049 reg = (reg & ~(0x3 << (52 - 32))) | (0x2 << (52 - 32));
1050 reg = (reg & ~(0x7 << (48 - 32))) | ((timings->CAS - 3) << (48 - 32));
1051 reg = (reg & ~(0xf << (44 - 32))) | (0x7 << (44 - 32));
1052 if (timings->mem_clock != MEM_CLOCK_1067MT) {
1053 reg = (reg & ~(0xf << (40 - 32))) | ((12 - timings->CAS) << (40 - 32));
1054 reg = (reg & ~(0xf << (36 - 32))) | (( 2 + timings->CAS) << (36 - 32));
1055 } else {
1056 reg = (reg & ~(0xf << (40 - 32))) | ((13 - timings->CAS) << (40 - 32));
1057 reg = (reg & ~(0xf << (36 - 32))) | (( 1 + timings->CAS) << (36 - 32));
1058 }
1059 reg = (reg & ~(0xf << (32 - 32))) | (0x7 << (32 - 32));
1060 MCHBAR32(CxODT_HIGH(ch)) = reg;
1061
1062 reg = MCHBAR32(CxODT_LOW(ch));
1063 reg = (reg & ~(0x7 << 28)) | (0x2 << 28);
1064 reg = (reg & ~(0x3 << 22)) | (0x2 << 22);
1065 reg = (reg & ~(0x7 << 12)) | (0x2 << 12);
1066 reg = (reg & ~(0x7 << 4)) | (0x2 << 4);
1067 switch (timings->mem_clock) {
1068 case MEM_CLOCK_667MT:
1069 reg = (reg & ~0x7);
1070 break;
1071 case MEM_CLOCK_800MT:
1072 reg = (reg & ~0x7) | 0x2;
1073 break;
1074 case MEM_CLOCK_1067MT:
1075 reg = (reg & ~0x7) | 0x5;
1076 break;
1077 }
1078 MCHBAR32(CxODT_LOW(ch)) = reg;
1079 }
1080}
1081
1082static void misc_settings(const timings_t *const timings,
1083 const stepping_t stepping)
1084{
1085 MCHBAR32(0x1260) = (MCHBAR32(0x1260) & ~((1 << 24) | 0x1f)) | timings->tRD;
1086 MCHBAR32(0x1360) = (MCHBAR32(0x1360) & ~((1 << 24) | 0x1f)) | timings->tRD;
1087
1088 MCHBAR8(0x1268) = (MCHBAR8(0x1268) & ~(0xf)) | timings->tWL;
1089 MCHBAR8(0x1368) = (MCHBAR8(0x1368) & ~(0xf)) | timings->tWL;
1090 MCHBAR8(0x12a0) = (MCHBAR8(0x12a0) & ~(0xf)) | 0xa;
1091 MCHBAR8(0x13a0) = (MCHBAR8(0x13a0) & ~(0xf)) | 0xa;
1092
1093 MCHBAR32(0x218) = (MCHBAR32(0x218) & ~((7 << 29) | (7 << 25) | (3 << 22) | (3 << 10))) |
1094 (4 << 29) | (3 << 25) | (0 << 22) | (1 << 10);
1095 MCHBAR32(0x220) = (MCHBAR32(0x220) & ~(7 << 16)) | (1 << 21) | (1 << 16);
1096 MCHBAR32(0x224) = (MCHBAR32(0x224) & ~(7 << 8)) | (3 << 8);
1097 if (stepping >= STEPPING_B1)
1098 MCHBAR8(0x234) |= (1 << 3);
1099}
1100
1101static void clock_crossing_setup(const fsb_clock_t fsb,
1102 const mem_clock_t ddr3clock,
1103 const dimminfo_t *const dimms)
1104{
1105 int ch;
1106
1107 static const u32 values_from_fsb_and_mem[][3][4] = {
1108 /* FSB 1067MHz */{
1109 /* DDR3-1067 */ { 0x00000000, 0x00000000, 0x00180006, 0x00810060 },
1110 /* DDR3-800 */ { 0x00000000, 0x00000000, 0x0000001c, 0x000300e0 },
1111 /* DDR3-667 */ { 0x00000000, 0x00001c00, 0x03c00038, 0x0007e000 },
1112 },
1113 /* FSB 800MHz */{
1114 /* DDR3-1067 */ { 0, 0, 0, 0 },
1115 /* DDR3-800 */ { 0x00000000, 0x00000000, 0x0030000c, 0x000300c0 },
1116 /* DDR3-667 */ { 0x00000000, 0x00000380, 0x0060001c, 0x00030c00 },
1117 },
1118 /* FSB 667MHz */{
1119 /* DDR3-1067 */ { 0, 0, 0, 0 },
1120 /* DDR3-800 */ { 0, 0, 0, 0 },
1121 /* DDR3-667 */ { 0x00000000, 0x00000000, 0x0030000c, 0x000300c0 },
1122 },
1123 };
1124
1125 const u32 *data = values_from_fsb_and_mem[fsb][ddr3clock];
1126 MCHBAR32(0x0208) = data[3];
1127 MCHBAR32(0x020c) = data[2];
1128 if (((fsb == FSB_CLOCK_1067MHz) || (fsb == FSB_CLOCK_800MHz)) && (ddr3clock == MEM_CLOCK_667MT))
1129 MCHBAR32(0x0210) = data[1];
1130
1131 static const u32 from_fsb_and_mem[][3] = {
1132 /* DDR3-1067 DDR3-800 DDR3-667 */
1133 /* FSB 1067MHz */{ 0x40100401, 0x10040220, 0x08040110, },
1134 /* FSB 800MHz */{ 0x00000000, 0x40100401, 0x00080201, },
1135 /* FSB 667MHz */{ 0x00000000, 0x00000000, 0x40100401, },
1136 };
1137 FOR_EACH_CHANNEL(ch) {
1138 const unsigned int mchbar = 0x1258 + (ch * 0x0100);
1139 if ((fsb == FSB_CLOCK_1067MHz) && (ddr3clock == MEM_CLOCK_800MT) && CHANNEL_IS_CARDF(dimms, ch))
1140 MCHBAR32(mchbar) = 0x08040120;
1141 else
1142 MCHBAR32(mchbar) = from_fsb_and_mem[fsb][ddr3clock];
1143 MCHBAR32(mchbar + 4) = 0x00000000;
1144 }
1145}
1146
1147/* Program egress VC1 timings. */
1148static void vc1_program_timings(const fsb_clock_t fsb)
1149{
1150 const u32 timings_by_fsb[][2] = {
1151 /* FSB 1067MHz */ { 0x1a, 0x01380138 },
1152 /* FSB 800MHz */ { 0x14, 0x00f000f0 },
1153 /* FSB 667MHz */ { 0x10, 0x00c000c0 },
1154 };
1155 EPBAR8(0x2c) = timings_by_fsb[fsb][0];
1156 EPBAR32(0x38) = timings_by_fsb[fsb][1];
1157 EPBAR32(0x3c) = timings_by_fsb[fsb][1];
1158}
1159
Patrick Rudolph266a1f72016-06-09 18:13:34 +02001160#define DEFAULT_PCI_MMIO_SIZE 2048
1161#define HOST_BRIDGE PCI_DEVFN(0, 0)
1162
1163static unsigned int get_mmio_size(void)
1164{
1165 const struct device *dev;
1166 const struct northbridge_intel_gm45_config *cfg = NULL;
1167
Kyösti Mälkkie7377552018-06-21 16:20:55 +03001168 dev = pcidev_path_on_root(HOST_BRIDGE);
Patrick Rudolph266a1f72016-06-09 18:13:34 +02001169 if (dev)
1170 cfg = dev->chip_info;
1171
1172 /* If this is zero, it just means devicetree.cb didn't set it */
1173 if (!cfg || cfg->pci_mmio_size == 0)
1174 return DEFAULT_PCI_MMIO_SIZE;
1175 else
1176 return cfg->pci_mmio_size;
1177}
1178
Patrick Georgi2efc8802012-11-06 11:03:53 +01001179/* @prejedec if not zero, set rank size to 128MB and page size to 4KB. */
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +02001180static void program_memory_map(const dimminfo_t *const dimms, const channel_mode_t mode, const int prejedec, u16 ggc)
Patrick Georgi2efc8802012-11-06 11:03:53 +01001181{
1182 int ch, r;
1183
1184 /* Program rank boundaries (CxDRBy). */
1185 unsigned int base = 0; /* start of next rank in MB */
1186 unsigned int total_mb[2] = { 0, 0 }; /* total memory per channel in MB */
1187 FOR_EACH_CHANNEL(ch) {
1188 if (mode == CHANNEL_MODE_DUAL_INTERLEAVED)
1189 /* In interleaved mode, start every channel from 0. */
1190 base = 0;
1191 for (r = 0; r < RANKS_PER_CHANNEL; r += 2) {
1192 /* Fixed capacity for pre-jedec config. */
1193 const unsigned int rank_capacity_mb =
1194 prejedec ? 128 : dimms[ch].rank_capacity_mb;
1195 u32 reg = 0;
1196
1197 /* Program bounds in CxDRBy. */
1198 IF_RANK_POPULATED(dimms, ch, r) {
1199 base += rank_capacity_mb;
1200 total_mb[ch] += rank_capacity_mb;
1201 }
1202 reg |= CxDRBy_BOUND_MB(r, base);
1203 IF_RANK_POPULATED(dimms, ch, r+1) {
1204 base += rank_capacity_mb;
1205 total_mb[ch] += rank_capacity_mb;
1206 }
1207 reg |= CxDRBy_BOUND_MB(r+1, base);
1208
1209 MCHBAR32(CxDRBy_MCHBAR(ch, r)) = reg;
1210 }
1211 }
1212
1213 /* Program page size (CxDRA). */
1214 FOR_EACH_CHANNEL(ch) {
1215 u32 reg = MCHBAR32(CxDRA_MCHBAR(ch)) & ~CxDRA_PAGESIZE_MASK;
1216 FOR_EACH_POPULATED_RANK_IN_CHANNEL(dimms, ch, r) {
1217 /* Fixed page size for pre-jedec config. */
1218 const unsigned int page_size = /* dimm page size in bytes */
1219 prejedec ? 4096 : dimms[ch].page_size;
1220 reg |= CxDRA_PAGESIZE(r, log2(page_size));
1221 /* deferred to f5_27: reg |= CxDRA_BANKS(r, dimms[ch].banks); */
1222 }
1223 MCHBAR32(CxDRA_MCHBAR(ch)) = reg;
1224 }
1225
1226 /* Calculate memory mapping, all values in MB. */
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +02001227
1228 u32 uma_sizem = 0;
1229 if (!prejedec) {
1230 if (!(ggc & 2)) {
1231 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
1232
1233 /* Graphics memory */
1234 const u32 gms_sizek = decode_igd_memory_size((ggc >> 4) & 0xf);
1235 printk(BIOS_DEBUG, "%uM UMA", gms_sizek >> 10);
1236
1237 /* GTT Graphics Stolen Memory Size (GGMS) */
1238 const u32 gsm_sizek = decode_igd_gtt_size((ggc >> 8) & 0xf);
1239 printk(BIOS_DEBUG, " and %uM GTT\n", gsm_sizek >> 10);
1240
1241 uma_sizem = (gms_sizek + gsm_sizek) >> 10;
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +02001242 }
Arthur Heymansd522db02018-08-06 15:50:54 +02001243 /* TSEG 2M, This amount can easily be covered by SMRR MTRR's,
1244 which requires to have TSEG_BASE aligned to TSEG_SIZE. */
Arthur Heymans8b766052018-01-24 23:25:13 +01001245 u8 reg8 = pci_read_config8(PCI_DEV(0, 0, 0), D0F0_ESMRAMC);
1246 reg8 &= ~0x7;
Arthur Heymansd522db02018-08-06 15:50:54 +02001247 reg8 |= (1 << 1) | (1 << 0); /* 2M and TSEG_Enable */
Arthur Heymans8b766052018-01-24 23:25:13 +01001248 pci_write_config8(PCI_DEV(0, 0, 0), D0F0_ESMRAMC, reg8);
Arthur Heymansd522db02018-08-06 15:50:54 +02001249 uma_sizem += 2;
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +02001250 }
1251
Patrick Rudolph266a1f72016-06-09 18:13:34 +02001252 const unsigned int mmio_size = get_mmio_size();
1253 const unsigned int MMIOstart = 4096 - mmio_size + uma_sizem;
Vladimir Serbinenko9907be42014-08-12 21:51:28 +02001254 const int me_active = pci_read_config8(PCI_DEV(0, 3, 0), PCI_CLASS_REVISION) != 0xff;
1255 const unsigned int ME_SIZE = prejedec || !me_active ? 0 : 32;
Patrick Georgi2efc8802012-11-06 11:03:53 +01001256 const unsigned int usedMEsize = (total_mb[0] != total_mb[1]) ? ME_SIZE : 2 * ME_SIZE;
1257 const unsigned int claimCapable =
1258 !(pci_read_config32(PCI_DEV(0, 0, 0), D0F0_CAPID0 + 4) & (1 << (47 - 32)));
1259
1260 const unsigned int TOM = total_mb[0] + total_mb[1];
1261 unsigned int TOMminusME = TOM - usedMEsize;
1262 unsigned int TOLUD = (TOMminusME < MMIOstart) ? TOMminusME : MMIOstart;
1263 unsigned int TOUUD = TOMminusME;
1264 unsigned int REMAPbase = 0xffff, REMAPlimit = 0;
1265
1266 if (claimCapable && (TOMminusME >= (MMIOstart + 64))) {
1267 /* 64MB alignment: We'll lose some MBs here, if ME is on. */
1268 TOMminusME &= ~(64 - 1);
1269 /* 64MB alignment: Loss will be reclaimed. */
1270 TOLUD &= ~(64 - 1);
1271 if (TOMminusME > 4096) {
1272 REMAPbase = TOMminusME;
1273 REMAPlimit = REMAPbase + (4096 - TOLUD);
1274 } else {
1275 REMAPbase = 4096;
1276 REMAPlimit = REMAPbase + (TOMminusME - TOLUD);
1277 }
1278 TOUUD = REMAPlimit;
1279 /* REMAPlimit is an inclusive bound, all others exclusive. */
1280 REMAPlimit -= 64;
1281 }
1282
1283 pci_write_config16(PCI_DEV(0, 0, 0), D0F0_TOM, (TOM >> 7) & 0x1ff);
1284 pci_write_config16(PCI_DEV(0, 0, 0), D0F0_TOLUD, TOLUD << 4);
1285 pci_write_config16(PCI_DEV(0, 0, 0), D0F0_TOUUD, TOUUD);
1286 pci_write_config16(PCI_DEV(0, 0, 0), D0F0_REMAPBASE, (REMAPbase >> 6) & 0x03ff);
1287 pci_write_config16(PCI_DEV(0, 0, 0), D0F0_REMAPLIMIT, (REMAPlimit >> 6) & 0x03ff);
1288
1289 /* Program channel mode. */
1290 switch (mode) {
1291 case CHANNEL_MODE_SINGLE:
1292 printk(BIOS_DEBUG, "Memory configured in single-channel mode.\n");
1293 MCHBAR32(DCC_MCHBAR) &= ~DCC_INTERLEAVED;
1294 break;
1295 case CHANNEL_MODE_DUAL_ASYNC:
1296 printk(BIOS_DEBUG, "Memory configured in dual-channel assymetric mode.\n");
1297 MCHBAR32(DCC_MCHBAR) &= ~DCC_INTERLEAVED;
1298 break;
1299 case CHANNEL_MODE_DUAL_INTERLEAVED:
1300 printk(BIOS_DEBUG, "Memory configured in dual-channel interleaved mode.\n");
1301 MCHBAR32(DCC_MCHBAR) &= ~(DCC_NO_CHANXOR | (1 << 9));
1302 MCHBAR32(DCC_MCHBAR) |= DCC_INTERLEAVED;
1303 break;
1304 }
1305
1306 printk(BIOS_SPEW, "Memory map:\n"
1307 "TOM = %5uMB\n"
1308 "TOLUD = %5uMB\n"
1309 "TOUUD = %5uMB\n"
1310 "REMAP:\t base = %5uMB\n"
Vladimir Serbinenko9907be42014-08-12 21:51:28 +02001311 "\t limit = %5uMB\n"
1312 "usedMEsize: %dMB\n",
1313 TOM, TOLUD, TOUUD, REMAPbase, REMAPlimit, usedMEsize);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001314}
1315static void prejedec_memory_map(const dimminfo_t *const dimms, channel_mode_t mode)
1316{
1317 /* Never use dual-interleaved mode in pre-jedec config. */
1318 if (CHANNEL_MODE_DUAL_INTERLEAVED == mode)
1319 mode = CHANNEL_MODE_DUAL_ASYNC;
1320
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +02001321 program_memory_map(dimms, mode, 1, 0);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001322 MCHBAR32(DCC_MCHBAR) |= DCC_NO_CHANXOR;
1323}
1324
1325static void ddr3_select_clock_mux(const mem_clock_t ddr3clock,
1326 const dimminfo_t *const dimms,
1327 const stepping_t stepping)
1328{
1329 const int clk1067 = (ddr3clock == MEM_CLOCK_1067MT);
1330 const int cardF[] = { CHANNEL_IS_CARDF(dimms, 0), CHANNEL_IS_CARDF(dimms, 1) };
1331
1332 int ch;
1333
1334 if (stepping < STEPPING_B1)
1335 die("Stepping <B1 unsupported in clock-multiplexer selection.\n");
1336
1337 FOR_EACH_POPULATED_CHANNEL(dimms, ch) {
1338 int mixed = 0;
1339 if ((1 == ch) && (!CHANNEL_IS_POPULATED(dimms, 0) || (cardF[0] != cardF[1])))
1340 mixed = 4 << 11;
1341 const unsigned int b = 0x14b0 + (ch * 0x0100);
1342 MCHBAR32(b+0x1c) = (MCHBAR32(b+0x1c) & ~(7 << 11)) |
1343 ((( cardF[ch])?1:0) << 11) | mixed;
1344 MCHBAR32(b+0x18) = (MCHBAR32(b+0x18) & ~(7 << 11)) | mixed;
1345 MCHBAR32(b+0x14) = (MCHBAR32(b+0x14) & ~(7 << 11)) |
1346 (((!clk1067 && !cardF[ch])?0:1) << 11) | mixed;
1347 MCHBAR32(b+0x10) = (MCHBAR32(b+0x10) & ~(7 << 11)) |
1348 ((( clk1067 && !cardF[ch])?1:0) << 11) | mixed;
1349 MCHBAR32(b+0x0c) = (MCHBAR32(b+0x0c) & ~(7 << 11)) |
1350 ((( cardF[ch])?3:2) << 11) | mixed;
1351 MCHBAR32(b+0x08) = (MCHBAR32(b+0x08) & ~(7 << 11)) |
1352 (2 << 11) | mixed;
1353 MCHBAR32(b+0x04) = (MCHBAR32(b+0x04) & ~(7 << 11)) |
1354 (((!clk1067 && !cardF[ch])?2:3) << 11) | mixed;
1355 MCHBAR32(b+0x00) = (MCHBAR32(b+0x00) & ~(7 << 11)) |
1356 ((( clk1067 && !cardF[ch])?3:2) << 11) | mixed;
1357 }
1358}
1359static void ddr3_write_io_init(const mem_clock_t ddr3clock,
1360 const dimminfo_t *const dimms,
1361 const stepping_t stepping,
1362 const int sff)
1363{
1364 const int a1step = stepping >= STEPPING_CONVERSION_A1;
1365 const int cardF[] = { CHANNEL_IS_CARDF(dimms, 0), CHANNEL_IS_CARDF(dimms, 1) };
1366
1367 int ch;
1368
1369 if (stepping < STEPPING_B1)
1370 die("Stepping <B1 unsupported in write i/o initialization.\n");
1371 if (sff)
1372 die("SFF platform unsupported in write i/o initialization.\n");
1373
1374 static const u32 ddr3_667_800_by_stepping_ddr3_and_card[][2][2][4] = {
1375 { /* Stepping B3 and below */
1376 { /* 667 MHz */
1377 { 0xa3255008, 0x26888209, 0x26288208, 0x6188040f },
1378 { 0x7524240b, 0xa5255608, 0x232b8508, 0x5528040f },
1379 },
1380 { /* 800 MHz */
1381 { 0xa6255308, 0x26888209, 0x212b7508, 0x6188040f },
1382 { 0x7524240b, 0xa6255708, 0x132b7508, 0x5528040f },
1383 },
1384 },
1385 { /* Conversion stepping A1 and above */
1386 { /* 667 MHz */
1387 { 0xc5257208, 0x26888209, 0x26288208, 0x6188040f },
1388 { 0x7524240b, 0xc5257608, 0x232b8508, 0x5528040f },
1389 },
1390 { /* 800 MHz */
1391 { 0xb6256308, 0x26888209, 0x212b7508, 0x6188040f },
1392 { 0x7524240b, 0xb6256708, 0x132b7508, 0x5528040f },
1393 }
1394 }};
1395
1396 static const u32 ddr3_1067_by_channel_and_card[][2][4] = {
1397 { /* Channel A */
1398 { 0xb2254708, 0x002b7408, 0x132b8008, 0x7228060f },
1399 { 0xb0255008, 0xa4254108, 0x4528b409, 0x9428230f },
1400 },
1401 { /* Channel B */
1402 { 0xa4254208, 0x022b6108, 0x132b8208, 0x9228210f },
1403 { 0x6024140b, 0x92244408, 0x252ba409, 0x9328360c },
1404 },
1405 };
1406
1407 FOR_EACH_POPULATED_CHANNEL(dimms, ch) {
1408 if ((1 == ch) && CHANNEL_IS_POPULATED(dimms, 0) && (cardF[0] == cardF[1]))
1409 /* Only write if second channel population differs. */
1410 continue;
1411 const u32 *const data = (ddr3clock != MEM_CLOCK_1067MT)
1412 ? ddr3_667_800_by_stepping_ddr3_and_card[a1step][2 - ddr3clock][cardF[ch]]
1413 : ddr3_1067_by_channel_and_card[ch][cardF[ch]];
1414 MCHBAR32(CxWRTy_MCHBAR(ch, 0)) = data[0];
1415 MCHBAR32(CxWRTy_MCHBAR(ch, 1)) = data[1];
1416 MCHBAR32(CxWRTy_MCHBAR(ch, 2)) = data[2];
1417 MCHBAR32(CxWRTy_MCHBAR(ch, 3)) = data[3];
1418 }
1419
1420 MCHBAR32(0x1490) = 0x00e70067;
1421 MCHBAR32(0x1494) = 0x000d8000;
1422 MCHBAR32(0x1590) = 0x00e70067;
1423 MCHBAR32(0x1594) = 0x000d8000;
1424}
1425static void ddr3_read_io_init(const mem_clock_t ddr3clock,
1426 const dimminfo_t *const dimms,
1427 const int sff)
1428{
1429 int ch;
1430
1431 FOR_EACH_POPULATED_CHANNEL(dimms, ch) {
1432 u32 addr, tmp;
1433 const unsigned int base = 0x14b0 + (ch * 0x0100);
1434 for (addr = base + 0x1c; addr >= base; addr -= 4) {
1435 tmp = MCHBAR32(addr);
1436 tmp &= ~((3 << 25) | (1 << 8) | (7 << 16) | (0xf << 20) | (1 << 27));
1437 tmp |= (1 << 27);
1438 switch (ddr3clock) {
1439 case MEM_CLOCK_667MT:
1440 tmp |= (1 << 16) | (4 << 20);
1441 break;
1442 case MEM_CLOCK_800MT:
1443 tmp |= (2 << 16) | (3 << 20);
1444 break;
1445 case MEM_CLOCK_1067MT:
1446 if (!sff)
1447 tmp |= (2 << 16) | (1 << 20);
1448 else
1449 tmp |= (2 << 16) | (2 << 20);
1450 break;
1451 default:
1452 die("Wrong clock");
1453 }
1454 MCHBAR32(addr) = tmp;
1455 }
1456 }
1457}
1458
1459static void memory_io_init(const mem_clock_t ddr3clock,
1460 const dimminfo_t *const dimms,
1461 const stepping_t stepping,
1462 const int sff)
1463{
1464 u32 tmp;
1465
1466 if (stepping < STEPPING_B1)
1467 die("Stepping <B1 unsupported in "
1468 "system-memory i/o initialization.\n");
1469
1470 tmp = MCHBAR32(0x1400);
1471 tmp &= ~(3<<13);
1472 tmp |= (1<<9) | (1<<13);
1473 MCHBAR32(0x1400) = tmp;
1474
1475 tmp = MCHBAR32(0x140c);
1476 tmp &= ~(0xff | (1<<11) | (1<<12) |
1477 (1<<16) | (1<<18) | (1<<27) | (0xf<<28));
1478 tmp |= (1<<7) | (1<<11) | (1<<16);
1479 switch (ddr3clock) {
1480 case MEM_CLOCK_667MT:
1481 tmp |= 9 << 28;
1482 break;
1483 case MEM_CLOCK_800MT:
1484 tmp |= 7 << 28;
1485 break;
1486 case MEM_CLOCK_1067MT:
1487 tmp |= 8 << 28;
1488 break;
1489 }
1490 MCHBAR32(0x140c) = tmp;
1491
1492 MCHBAR32(0x1440) &= ~1;
1493
1494 tmp = MCHBAR32(0x1414);
1495 tmp &= ~((1<<20) | (7<<11) | (0xf << 24) | (0xf << 16));
1496 tmp |= (3<<11);
1497 switch (ddr3clock) {
1498 case MEM_CLOCK_667MT:
1499 tmp |= (2 << 24) | (10 << 16);
1500 break;
1501 case MEM_CLOCK_800MT:
1502 tmp |= (3 << 24) | (7 << 16);
1503 break;
1504 case MEM_CLOCK_1067MT:
1505 tmp |= (4 << 24) | (4 << 16);
1506 break;
1507 }
1508 MCHBAR32(0x1414) = tmp;
1509
1510 MCHBAR32(0x1418) &= ~((1<<3) | (1<<11) | (1<<19) | (1<<27));
1511
1512 MCHBAR32(0x141c) &= ~((1<<3) | (1<<11) | (1<<19) | (1<<27));
1513
1514 MCHBAR32(0x1428) |= 1<<14;
1515
1516 tmp = MCHBAR32(0x142c);
1517 tmp &= ~((0xf << 8) | (0x7 << 20) | 0xf | (0xf << 24));
1518 tmp |= (0x3 << 20) | (5 << 24);
1519 switch (ddr3clock) {
1520 case MEM_CLOCK_667MT:
1521 tmp |= (2 << 8) | 0xc;
1522 break;
1523 case MEM_CLOCK_800MT:
1524 tmp |= (3 << 8) | 0xa;
1525 break;
1526 case MEM_CLOCK_1067MT:
1527 tmp |= (4 << 8) | 0x7;
1528 break;
1529 }
1530 MCHBAR32(0x142c) = tmp;
1531
1532 tmp = MCHBAR32(0x400);
1533 tmp &= ~((3 << 4) | (3 << 16) | (3 << 30));
1534 tmp |= (2 << 4) | (2 << 16);
1535 MCHBAR32(0x400) = tmp;
1536
1537 MCHBAR32(0x404) &= ~(0xf << 20);
1538
1539 MCHBAR32(0x40c) &= ~(1 << 6);
1540
1541 tmp = MCHBAR32(0x410);
1542 tmp &= ~(7 << 28);
1543 tmp |= 2 << 28;
1544 MCHBAR32(0x410) = tmp;
1545
1546 tmp = MCHBAR32(0x41c);
1547 tmp &= ~0x77;
1548 tmp |= 0x11;
1549 MCHBAR32(0x41c) = tmp;
1550
1551 ddr3_select_clock_mux(ddr3clock, dimms, stepping);
1552
1553 ddr3_write_io_init(ddr3clock, dimms, stepping, sff);
1554
1555 ddr3_read_io_init(ddr3clock, dimms, sff);
1556}
1557
1558static void jedec_init(const timings_t *const timings,
1559 const dimminfo_t *const dimms)
1560{
1561 if ((timings->tWR < 5) || (timings->tWR > 12))
1562 die("tWR value unsupported in Jedec initialization.\n");
1563
1564 /* Pre-jedec settings */
1565 MCHBAR32(0x40) |= (1 << 1);
1566 MCHBAR32(0x230) |= (3 << 1);
1567 MCHBAR32(0x238) |= (3 << 24);
1568 MCHBAR32(0x23c) |= (3 << 24);
1569
1570 /* Normal write pointer operation */
1571 MCHBAR32(0x14f0) |= (1 << 9);
1572 MCHBAR32(0x15f0) |= (1 << 9);
1573
1574 MCHBAR32(DCC_MCHBAR) = (MCHBAR32(DCC_MCHBAR) & ~DCC_CMD_MASK) | DCC_CMD_NOP;
1575
1576 u8 reg8 = pci_read_config8(PCI_DEV(0, 0, 0), 0xf0);
1577 pci_write_config8(PCI_DEV(0, 0, 0), 0xf0, reg8 & ~(1 << 2));
1578 reg8 = pci_read_config8(PCI_DEV(0, 0, 0), 0xf0);
1579 pci_write_config8(PCI_DEV(0, 0, 0), 0xf0, reg8 | (1 << 2));
1580 udelay(2);
1581
1582 /* 5 6 7 8 9 10 11 12 */
1583 static const u8 wr_lut[] = { 1, 2, 3, 4, 5, 5, 6, 6 };
1584
1585 const int WL = ((timings->tWL - 5) & 7) << 6;
1586 const int ODT_120OHMS = (1 << 9);
1587 const int ODS_34OHMS = (1 << 4);
1588 const int WR = (wr_lut[timings->tWR - 5] & 7) << 12;
1589 const int DLL1 = 1 << 11;
1590 const int CAS = ((timings->CAS - 4) & 7) << 7;
1591 const int INTERLEAVED = 1 << 6;/* This is READ Burst Type == interleaved. */
1592
1593 int ch, r;
1594 FOR_EACH_POPULATED_RANK(dimms, ch, r) {
1595 /* We won't do this in dual-interleaved mode,
Felix Held7f9f3d02019-06-07 14:47:28 +02001596 so don't care about the offset.
1597 Mirrored ranks aren't taken into account here. */
Patrick Georgi2efc8802012-11-06 11:03:53 +01001598 const u32 rankaddr = raminit_get_rank_addr(ch, r);
Nico Huber0624f922017-04-15 15:57:28 +02001599 printk(BIOS_DEBUG, "JEDEC init @0x%08x\n", rankaddr);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001600 MCHBAR32(DCC_MCHBAR) = (MCHBAR32(DCC_MCHBAR) & ~DCC_SET_EREG_MASK) | DCC_SET_EREGx(2);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -08001601 read32((u32 *)(rankaddr | WL));
Patrick Georgi2efc8802012-11-06 11:03:53 +01001602 MCHBAR32(DCC_MCHBAR) = (MCHBAR32(DCC_MCHBAR) & ~DCC_SET_EREG_MASK) | DCC_SET_EREGx(3);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -08001603 read32((u32 *)rankaddr);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001604 MCHBAR32(DCC_MCHBAR) = (MCHBAR32(DCC_MCHBAR) & ~DCC_SET_EREG_MASK) | DCC_SET_EREGx(1);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -08001605 read32((u32 *)(rankaddr | ODT_120OHMS | ODS_34OHMS));
Patrick Georgi2efc8802012-11-06 11:03:53 +01001606 MCHBAR32(DCC_MCHBAR) = (MCHBAR32(DCC_MCHBAR) & ~DCC_CMD_MASK) | DCC_SET_MREG;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -08001607 read32((u32 *)(rankaddr | WR | DLL1 | CAS | INTERLEAVED));
Patrick Georgi2efc8802012-11-06 11:03:53 +01001608 MCHBAR32(DCC_MCHBAR) = (MCHBAR32(DCC_MCHBAR) & ~DCC_CMD_MASK) | DCC_SET_MREG;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -08001609 read32((u32 *)(rankaddr | WR | CAS | INTERLEAVED));
Patrick Georgi2efc8802012-11-06 11:03:53 +01001610 }
1611}
1612
1613static void ddr3_calibrate_zq(void) {
1614 udelay(2);
1615
1616 u32 tmp = MCHBAR32(DCC_MCHBAR);
1617 tmp &= ~(7 << 16);
1618 tmp |= (5 << 16); /* ZQ calibration mode */
1619 MCHBAR32(DCC_MCHBAR) = tmp;
1620
1621 MCHBAR32(CxDRT6_MCHBAR(0)) |= (1 << 3);
1622 MCHBAR32(CxDRT6_MCHBAR(1)) |= (1 << 3);
1623
1624 udelay(1);
1625
1626 MCHBAR32(CxDRT6_MCHBAR(0)) &= ~(1 << 3);
1627 MCHBAR32(CxDRT6_MCHBAR(1)) &= ~(1 << 3);
1628
1629 MCHBAR32(DCC_MCHBAR) |= (7 << 16); /* Normal operation */
1630}
1631
1632static void post_jedec_sequence(const int cores) {
1633 const int quadcore = cores == 4;
1634
1635 MCHBAR32(0x0040) &= ~(1 << 1);
1636 MCHBAR32(0x0230) &= ~(3 << 1);
1637 MCHBAR32(0x0230) |= 1 << 15;
1638 MCHBAR32(0x0230) &= ~(1 << 19);
1639 MCHBAR32(0x1250) = 0x6c4;
1640 MCHBAR32(0x1350) = 0x6c4;
1641 MCHBAR32(0x1254) = 0x871a066d;
1642 MCHBAR32(0x1354) = 0x871a066d;
1643 MCHBAR32(0x0238) |= 1 << 26;
1644 MCHBAR32(0x0238) &= ~(3 << 24);
1645 MCHBAR32(0x0238) |= 1 << 23;
1646 MCHBAR32(0x0238) = (MCHBAR32(0x238) & ~(7 << 20)) | (3 << 20);
1647 MCHBAR32(0x0238) = (MCHBAR32(0x238) & ~(7 << 17)) | (6 << 17);
1648 MCHBAR32(0x0238) = (MCHBAR32(0x238) & ~(7 << 14)) | (6 << 14);
1649 MCHBAR32(0x0238) = (MCHBAR32(0x238) & ~(7 << 11)) | (6 << 11);
1650 MCHBAR32(0x0238) = (MCHBAR32(0x238) & ~(7 << 8)) | (6 << 8);
1651 MCHBAR32(0x023c) &= ~(3 << 24);
1652 MCHBAR32(0x023c) &= ~(1 << 23);
1653 MCHBAR32(0x023c) = (MCHBAR32(0x23c) & ~(7 << 20)) | (3 << 20);
1654 MCHBAR32(0x023c) = (MCHBAR32(0x23c) & ~(7 << 17)) | (6 << 17);
1655 MCHBAR32(0x023c) = (MCHBAR32(0x23c) & ~(7 << 14)) | (6 << 14);
1656 MCHBAR32(0x023c) = (MCHBAR32(0x23c) & ~(7 << 11)) | (6 << 11);
1657 MCHBAR32(0x023c) = (MCHBAR32(0x23c) & ~(7 << 8)) | (6 << 8);
1658
1659 if (quadcore) {
1660 MCHBAR32(0xb14) |= (0xbfbf << 16);
1661 }
1662}
1663
1664static void dram_optimizations(const timings_t *const timings,
1665 const dimminfo_t *const dimms)
1666{
1667 int ch;
1668
1669 FOR_EACH_POPULATED_CHANNEL(dimms, ch) {
1670 const unsigned int mchbar = CxDRC1_MCHBAR(ch);
1671 u32 cxdrc1 = MCHBAR32(mchbar);
1672 cxdrc1 &= ~CxDRC1_SSDS_MASK;
1673 if (dimms[ch].ranks == 1)
1674 cxdrc1 |= CxDRC1_SS;
1675 else
1676 cxdrc1 |= CxDRC1_DS;
1677 MCHBAR32(mchbar) = cxdrc1;
1678 }
1679}
1680
1681u32 raminit_get_rank_addr(unsigned int channel, unsigned int rank)
1682{
1683 if (!channel && !rank)
1684 return 0; /* Address of first rank */
1685
1686 /* Read the bound of the previous rank. */
1687 if (rank > 0) {
1688 rank--;
1689 } else {
1690 rank = 3; /* Highest rank per channel */
1691 channel--;
1692 }
1693 const u32 reg = MCHBAR32(CxDRBy_MCHBAR(channel, rank));
1694 /* Bound is in 32MB. */
1695 return ((reg & CxDRBy_BOUND_MASK(rank)) >> CxDRBy_BOUND_SHIFT(rank)) << 25;
1696}
1697
1698void raminit_reset_readwrite_pointers(void) {
1699 MCHBAR32(0x1234) |= (1 << 6);
1700 MCHBAR32(0x1234) &= ~(1 << 6);
1701 MCHBAR32(0x1334) |= (1 << 6);
1702 MCHBAR32(0x1334) &= ~(1 << 6);
1703 MCHBAR32(0x14f0) &= ~(1 << 9);
1704 MCHBAR32(0x14f0) |= (1 << 9);
1705 MCHBAR32(0x14f0) |= (1 << 10);
1706 MCHBAR32(0x15f0) &= ~(1 << 9);
1707 MCHBAR32(0x15f0) |= (1 << 9);
1708 MCHBAR32(0x15f0) |= (1 << 10);
1709}
1710
1711void raminit(sysinfo_t *const sysinfo, const int s3resume)
1712{
1713 const dimminfo_t *const dimms = sysinfo->dimms;
1714 const timings_t *const timings = &sysinfo->selected_timings;
Patrick Georgi2efc8802012-11-06 11:03:53 +01001715
1716 int ch;
1717 u8 reg8;
1718
Arthur Heymans049347f2017-05-12 11:54:08 +02001719 timestamp_add_now(TS_BEFORE_INITRAM);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001720
1721 /* Wait for some bit, maybe TXT clear. */
1722 if (sysinfo->txt_enabled) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -08001723 while (!(read8((u8 *)0xfed40000) & (1 << 7))) {}
Patrick Georgi2efc8802012-11-06 11:03:53 +01001724 }
1725
1726 /* Enable SMBUS. */
1727 enable_smbus();
1728
1729 /* Collect information about DIMMs and find common settings. */
1730 collect_dimm_config(sysinfo);
1731
1732 /* Check for bad warm boot. */
1733 reset_on_bad_warmboot();
1734
1735
1736 /***** From now on, program according to collected infos: *****/
1737
1738 /* Program DRAM type. */
1739 switch (sysinfo->spd_type) {
1740 case DDR2:
1741 MCHBAR8(0x1434) |= (1 << 7);
1742 break;
1743 case DDR3:
1744 MCHBAR8(0x1434) |= (3 << 0);
1745 break;
1746 }
1747
1748 /* Program system memory frequency. */
1749 set_system_memory_frequency(timings);
1750 /* Program IGD memory frequency. */
1751 set_igd_memory_frequencies(sysinfo);
1752
1753 /* Configure DRAM control mode for populated channels. */
1754 configure_dram_control_mode(timings, dimms);
1755
1756 /* Initialize RCOMP. */
Nico Huber5aaeb272015-12-30 00:17:27 +01001757 rcomp_initialization(sysinfo->stepping, sysinfo->sff);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001758
1759 /* Power-up DRAM. */
1760 dram_powerup(s3resume);
1761 /* Program DRAM timings. */
1762 dram_program_timings(timings);
1763 /* Program number of banks. */
1764 dram_program_banks(dimms);
1765 /* Enable DRAM clock pairs for populated DIMMs. */
1766 FOR_EACH_POPULATED_CHANNEL(dimms, ch)
1767 MCHBAR32(CxDCLKDIS_MCHBAR(ch)) |= CxDCLKDIS_ENABLE;
1768
1769 /* Enable On-Die Termination. */
Nico Huber5aaeb272015-12-30 00:17:27 +01001770 odt_setup(timings, sysinfo->sff);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001771 /* Miscellaneous settings. */
1772 misc_settings(timings, sysinfo->stepping);
1773 /* Program clock crossing registers. */
1774 clock_crossing_setup(timings->fsb_clock, timings->mem_clock, dimms);
1775 /* Program egress VC1 timings. */
1776 vc1_program_timings(timings->fsb_clock);
1777 /* Perform system-memory i/o initialization. */
Nico Huber5aaeb272015-12-30 00:17:27 +01001778 memory_io_init(timings->mem_clock, dimms,
1779 sysinfo->stepping, sysinfo->sff);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001780
1781 /* Initialize memory map with dummy values of 128MB per rank with a
1782 page size of 4KB. This makes the JEDEC initialization code easier. */
1783 prejedec_memory_map(dimms, timings->channel_mode);
1784 if (!s3resume)
1785 /* Perform JEDEC initialization of DIMMS. */
1786 jedec_init(timings, dimms);
1787 /* Some programming steps after JEDEC initialization. */
1788 post_jedec_sequence(sysinfo->cores);
1789
1790 /* Announce normal operation, initialization completed. */
1791 MCHBAR32(DCC_MCHBAR) |= (0x7 << 16) | (0x1 << 19);
1792 reg8 = pci_read_config8(PCI_DEV(0, 0, 0), 0xf0);
1793 pci_write_config8(PCI_DEV(0, 0, 0), 0xf0, reg8 | (1 << 2));
1794 reg8 = pci_read_config8(PCI_DEV(0, 0, 0), 0xf0);
1795 pci_write_config8(PCI_DEV(0, 0, 0), 0xf0, reg8 & ~(1 << 2));
1796
1797
1798 /* Take a breath (the reader). */
1799
1800
1801 /* Perform ZQ calibration for DDR3. */
1802 ddr3_calibrate_zq();
1803
1804 /* Perform receive-enable calibration. */
1805 raminit_receive_enable_calibration(timings, dimms);
1806 /* Lend clock values from receive-enable calibration. */
Jonathan Neuschäfer2f828eb2018-02-12 12:00:44 +01001807 MCHBAR32(CxDRT5_MCHBAR(0)) =
1808 (MCHBAR32(CxDRT5_MCHBAR(0)) & ~(0xf0)) |
1809 ((((MCHBAR32(CxDRT3_MCHBAR(0)) >> 7) - 1) & 0xf) << 4);
1810 MCHBAR32(CxDRT5_MCHBAR(1)) =
1811 (MCHBAR32(CxDRT5_MCHBAR(1)) & ~(0xf0)) |
1812 ((((MCHBAR32(CxDRT3_MCHBAR(1)) >> 7) - 1) & 0xf) << 4);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001813
1814 /* Perform read/write training for high clock rate. */
1815 if (timings->mem_clock == MEM_CLOCK_1067MT) {
1816 raminit_read_training(dimms, s3resume);
1817 raminit_write_training(timings->mem_clock, dimms, s3resume);
1818 }
1819
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +02001820 igd_compute_ggc(sysinfo);
1821
Patrick Georgi2efc8802012-11-06 11:03:53 +01001822 /* Program final memory map (with real values). */
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +02001823 program_memory_map(dimms, timings->channel_mode, 0, sysinfo->ggc);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001824
1825 /* Some last optimizations. */
1826 dram_optimizations(timings, dimms);
1827
Elyes HAOUAS3d450002018-08-09 18:55:58 +02001828 /* Mark raminit being finished. :-) */
Patrick Georgi2efc8802012-11-06 11:03:53 +01001829 u8 tmp8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa2) & ~(1 << 7);
1830 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa2, tmp8);
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +02001831
1832 raminit_thermal(sysinfo);
1833 init_igd(sysinfo);
Arthur Heymans049347f2017-05-12 11:54:08 +02001834
1835 timestamp_add_now(TS_AFTER_INITRAM);
Patrick Georgi2efc8802012-11-06 11:03:53 +01001836}